@mks2508/sidebar-headless 0.2.0 → 0.2.1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/index.cjs +53167 -0
- package/dist/index.cjs.map +1 -0
- package/dist/index.js +350 -437
- package/dist/index.js.map +1 -1
- package/package.json +106 -106
package/package.json
CHANGED
|
@@ -1,106 +1,106 @@
|
|
|
1
|
-
{
|
|
2
|
-
"name": "@mks2508/sidebar-headless",
|
|
3
|
-
"version": "0.2.
|
|
4
|
-
"description": "Headless sidebar and mobile bottom navigation components for React with advanced animations, keyboard navigation, and full WAI-ARIA accessibility",
|
|
5
|
-
"type": "module",
|
|
6
|
-
"main": "./dist/index.js",
|
|
7
|
-
"module": "./dist/index.js",
|
|
8
|
-
"types": "./dist/index.d.ts",
|
|
9
|
-
"exports": {
|
|
10
|
-
".": {
|
|
11
|
-
"types": "./dist/index.d.ts",
|
|
12
|
-
"import": "./dist/index.js",
|
|
13
|
-
"require": "./dist/index.
|
|
14
|
-
},
|
|
15
|
-
"./styles.css": "./dist/index.css",
|
|
16
|
-
"./mobile-optimizations.css": "./dist/MobileOptimizations.css",
|
|
17
|
-
"./tooltip-keyframes.css": "./dist/tooltip-keyframes.css"
|
|
18
|
-
},
|
|
19
|
-
"files": [
|
|
20
|
-
"dist",
|
|
21
|
-
"README.md",
|
|
22
|
-
"LICENSE",
|
|
23
|
-
"CHANGELOG.md"
|
|
24
|
-
],
|
|
25
|
-
"sideEffects": [
|
|
26
|
-
"*.css"
|
|
27
|
-
],
|
|
28
|
-
"scripts": {
|
|
29
|
-
"dev": "cd playground && vite",
|
|
30
|
-
"dev:clean": "killall -9 node || true && cd playground && vite",
|
|
31
|
-
"build": "tsup",
|
|
32
|
-
"build:watch": "tsup --watch",
|
|
33
|
-
"preview": "cd playground && vite preview",
|
|
34
|
-
"typecheck": "tsc --noEmit",
|
|
35
|
-
"prepublishOnly": "bun run build && bun run typecheck"
|
|
36
|
-
},
|
|
37
|
-
"keywords": [
|
|
38
|
-
"react",
|
|
39
|
-
"sidebar",
|
|
40
|
-
"mobile-bottom-nav",
|
|
41
|
-
"bottom-navigation",
|
|
42
|
-
"headless",
|
|
43
|
-
"component",
|
|
44
|
-
"navigation",
|
|
45
|
-
"ui",
|
|
46
|
-
"typescript",
|
|
47
|
-
"accessibility",
|
|
48
|
-
"a11y",
|
|
49
|
-
"wai-aria",
|
|
50
|
-
"keyboard-navigation",
|
|
51
|
-
"glassmorphism",
|
|
52
|
-
"fluid-animation",
|
|
53
|
-
"mobile",
|
|
54
|
-
"ios"
|
|
55
|
-
],
|
|
56
|
-
"author": "MKS2508",
|
|
57
|
-
"license": "MIT",
|
|
58
|
-
"repository": {
|
|
59
|
-
"type": "git",
|
|
60
|
-
"url": "git+https://github.com/mks2508/sidebar-headless.git"
|
|
61
|
-
},
|
|
62
|
-
"bugs": {
|
|
63
|
-
"url": "https://github.com/mks2508/sidebar-headless/issues"
|
|
64
|
-
},
|
|
65
|
-
"homepage": "https://github.com/mks2508/sidebar-headless#readme",
|
|
66
|
-
"peerDependencies": {
|
|
67
|
-
"react": ">=18.0.0",
|
|
68
|
-
"react-dom": ">=18.0.0"
|
|
69
|
-
},
|
|
70
|
-
"peerDependenciesMeta": {
|
|
71
|
-
"@liquid-svg-glass/core": {
|
|
72
|
-
"optional": true
|
|
73
|
-
},
|
|
74
|
-
"@liquid-svg-glass/react": {
|
|
75
|
-
"optional": true
|
|
76
|
-
}
|
|
77
|
-
},
|
|
78
|
-
"dependencies": {
|
|
79
|
-
"clsx": "^2.1.1",
|
|
80
|
-
"tailwind-merge": "^3.3.1"
|
|
81
|
-
},
|
|
82
|
-
"devDependencies": {
|
|
83
|
-
"@base-ui-components/react": "^1.0.0-beta.4",
|
|
84
|
-
"@liquid-svg-glass/react": "file:./lib/@liquid-svg-glass/react",
|
|
85
|
-
"@radix-ui/react-label": "^2.1.7",
|
|
86
|
-
"@radix-ui/react-select": "^2.2.6",
|
|
87
|
-
"@radix-ui/react-slider": "^1.3.6",
|
|
88
|
-
"@radix-ui/react-slot": "^1.2.3",
|
|
89
|
-
"@tailwindcss/vite": "^4.1.16",
|
|
90
|
-
"@types/bun": "latest",
|
|
91
|
-
"@types/react": "^19",
|
|
92
|
-
"@types/react-dom": "^19",
|
|
93
|
-
"@vitejs/plugin-react": "^5.1.0",
|
|
94
|
-
"bun-plugin-tailwind": "^0.1.2",
|
|
95
|
-
"class-variance-authority": "^0.7.1",
|
|
96
|
-
"lucide-react": "^0.545.0",
|
|
97
|
-
"motion": "^12.23.24",
|
|
98
|
-
"react": "^19",
|
|
99
|
-
"react-dom": "^19",
|
|
100
|
-
"tailwindcss": "^4.1.11",
|
|
101
|
-
"tsup": "^8.5.1",
|
|
102
|
-
"tw-animate-css": "^1.4.0",
|
|
103
|
-
"typescript": "^5.9.3",
|
|
104
|
-
"vite": "^7.1.12"
|
|
105
|
-
}
|
|
106
|
-
}
|
|
1
|
+
{
|
|
2
|
+
"name": "@mks2508/sidebar-headless",
|
|
3
|
+
"version": "0.2.1",
|
|
4
|
+
"description": "Headless sidebar and mobile bottom navigation components for React with advanced animations, keyboard navigation, and full WAI-ARIA accessibility",
|
|
5
|
+
"type": "module",
|
|
6
|
+
"main": "./dist/index.js",
|
|
7
|
+
"module": "./dist/index.js",
|
|
8
|
+
"types": "./dist/index.d.ts",
|
|
9
|
+
"exports": {
|
|
10
|
+
".": {
|
|
11
|
+
"types": "./dist/index.d.ts",
|
|
12
|
+
"import": "./dist/index.js",
|
|
13
|
+
"require": "./dist/index.cjs"
|
|
14
|
+
},
|
|
15
|
+
"./styles.css": "./dist/index.css",
|
|
16
|
+
"./mobile-optimizations.css": "./dist/MobileOptimizations.css",
|
|
17
|
+
"./tooltip-keyframes.css": "./dist/tooltip-keyframes.css"
|
|
18
|
+
},
|
|
19
|
+
"files": [
|
|
20
|
+
"dist",
|
|
21
|
+
"README.md",
|
|
22
|
+
"LICENSE",
|
|
23
|
+
"CHANGELOG.md"
|
|
24
|
+
],
|
|
25
|
+
"sideEffects": [
|
|
26
|
+
"*.css"
|
|
27
|
+
],
|
|
28
|
+
"scripts": {
|
|
29
|
+
"dev": "cd playground && vite",
|
|
30
|
+
"dev:clean": "killall -9 node || true && cd playground && vite",
|
|
31
|
+
"build": "tsup",
|
|
32
|
+
"build:watch": "tsup --watch",
|
|
33
|
+
"preview": "cd playground && vite preview",
|
|
34
|
+
"typecheck": "tsc --noEmit",
|
|
35
|
+
"prepublishOnly": "bun run build && bun run typecheck"
|
|
36
|
+
},
|
|
37
|
+
"keywords": [
|
|
38
|
+
"react",
|
|
39
|
+
"sidebar",
|
|
40
|
+
"mobile-bottom-nav",
|
|
41
|
+
"bottom-navigation",
|
|
42
|
+
"headless",
|
|
43
|
+
"component",
|
|
44
|
+
"navigation",
|
|
45
|
+
"ui",
|
|
46
|
+
"typescript",
|
|
47
|
+
"accessibility",
|
|
48
|
+
"a11y",
|
|
49
|
+
"wai-aria",
|
|
50
|
+
"keyboard-navigation",
|
|
51
|
+
"glassmorphism",
|
|
52
|
+
"fluid-animation",
|
|
53
|
+
"mobile",
|
|
54
|
+
"ios"
|
|
55
|
+
],
|
|
56
|
+
"author": "MKS2508",
|
|
57
|
+
"license": "MIT",
|
|
58
|
+
"repository": {
|
|
59
|
+
"type": "git",
|
|
60
|
+
"url": "git+https://github.com/mks2508/sidebar-headless.git"
|
|
61
|
+
},
|
|
62
|
+
"bugs": {
|
|
63
|
+
"url": "https://github.com/mks2508/sidebar-headless/issues"
|
|
64
|
+
},
|
|
65
|
+
"homepage": "https://github.com/mks2508/sidebar-headless#readme",
|
|
66
|
+
"peerDependencies": {
|
|
67
|
+
"react": ">=18.0.0",
|
|
68
|
+
"react-dom": ">=18.0.0"
|
|
69
|
+
},
|
|
70
|
+
"peerDependenciesMeta": {
|
|
71
|
+
"@liquid-svg-glass/core": {
|
|
72
|
+
"optional": true
|
|
73
|
+
},
|
|
74
|
+
"@liquid-svg-glass/react": {
|
|
75
|
+
"optional": true
|
|
76
|
+
}
|
|
77
|
+
},
|
|
78
|
+
"dependencies": {
|
|
79
|
+
"clsx": "^2.1.1",
|
|
80
|
+
"tailwind-merge": "^3.3.1"
|
|
81
|
+
},
|
|
82
|
+
"devDependencies": {
|
|
83
|
+
"@base-ui-components/react": "^1.0.0-beta.4",
|
|
84
|
+
"@liquid-svg-glass/react": "file:./lib/@liquid-svg-glass/react",
|
|
85
|
+
"@radix-ui/react-label": "^2.1.7",
|
|
86
|
+
"@radix-ui/react-select": "^2.2.6",
|
|
87
|
+
"@radix-ui/react-slider": "^1.3.6",
|
|
88
|
+
"@radix-ui/react-slot": "^1.2.3",
|
|
89
|
+
"@tailwindcss/vite": "^4.1.16",
|
|
90
|
+
"@types/bun": "latest",
|
|
91
|
+
"@types/react": "^19",
|
|
92
|
+
"@types/react-dom": "^19",
|
|
93
|
+
"@vitejs/plugin-react": "^5.1.0",
|
|
94
|
+
"bun-plugin-tailwind": "^0.1.2",
|
|
95
|
+
"class-variance-authority": "^0.7.1",
|
|
96
|
+
"lucide-react": "^0.545.0",
|
|
97
|
+
"motion": "^12.23.24",
|
|
98
|
+
"react": "^19",
|
|
99
|
+
"react-dom": "^19",
|
|
100
|
+
"tailwindcss": "^4.1.11",
|
|
101
|
+
"tsup": "^8.5.1",
|
|
102
|
+
"tw-animate-css": "^1.4.0",
|
|
103
|
+
"typescript": "^5.9.3",
|
|
104
|
+
"vite": "^7.1.12"
|
|
105
|
+
}
|
|
106
|
+
}
|