From f2d086426b8106109394972507d9ed9495535fb7 Mon Sep 17 00:00:00 2001 From: jacky Date: Sun, 4 Dec 2022 00:05:47 +0800 Subject: [PATCH] Implement headless listbox --- .gitignore | 8 ++ README.md | 2 +- components/listbox.html | 220 ++++++++++++++++++++++++++++++++++++++++ examples/listbox.html | 109 ++++++++++++++++++++ package.json | 17 ++++ 5 files changed, 355 insertions(+), 1 deletion(-) create mode 100644 .gitignore create mode 100644 components/listbox.html create mode 100644 examples/listbox.html create mode 100644 package.json diff --git a/.gitignore b/.gitignore new file mode 100644 index 0000000..278c18a --- /dev/null +++ b/.gitignore @@ -0,0 +1,8 @@ +*.log +.DS_Store +dev/ +ref/ +node_modules/ +yarn.lock +doc +__tests__ \ No newline at end of file diff --git a/README.md b/README.md index 42f7346..f0ae0b5 100644 --- a/README.md +++ b/README.md @@ -1 +1 @@ -# vimesh-headless \ No newline at end of file +# Vimesh Headless UI \ No newline at end of file diff --git a/components/listbox.html b/components/listbox.html new file mode 100644 index 0000000..ca906b0 --- /dev/null +++ b/components/listbox.html @@ -0,0 +1,220 @@ + + + + + + + + + \ No newline at end of file diff --git a/examples/listbox.html b/examples/listbox.html new file mode 100644 index 0000000..09c18cf --- /dev/null +++ b/examples/listbox.html @@ -0,0 +1,109 @@ + + + + + + + + + + + + + + + +
+ +
+ +
+
+ +
+
+
+ + Assigned to + + +
+ + + + + + + + + + + +
+ + + +
+
+
+
+
+
+ + \ No newline at end of file diff --git a/package.json b/package.json new file mode 100644 index 0000000..70bbcb2 --- /dev/null +++ b/package.json @@ -0,0 +1,17 @@ +{ + "name": "@vimesh/headless", + "version": "0.1.0", + "repository": "https://github.com/vimeshjs/vimesh-headless.git", + "author": "Jacky ZHANG ", + "license": "MIT", + "scripts": { + "dev": "http-server" + }, + "dependencies": {}, + "devDependencies": { + "@vimesh/style": "^1.0.0", + "@vimesh/ui": "^0.9.5", + "alpinejs": "^3.10.5", + "http-server": "^14.1.1" + } +}