@novie/ui 0.1.0
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/LICENSE +21 -0
- package/README.md +2 -0
- package/dist/components/ui/alert.d.ts +13 -0
- package/dist/components/ui/alert.d.ts.map +1 -0
- package/dist/components/ui/avatar.d.ts +14 -0
- package/dist/components/ui/avatar.d.ts.map +1 -0
- package/dist/components/ui/badge.d.ts +16 -0
- package/dist/components/ui/badge.d.ts.map +1 -0
- package/dist/components/ui/button.d.ts +12 -0
- package/dist/components/ui/button.d.ts.map +1 -0
- package/dist/components/ui/card.d.ts +11 -0
- package/dist/components/ui/card.d.ts.map +1 -0
- package/dist/components/ui/checkbox.d.ts +9 -0
- package/dist/components/ui/checkbox.d.ts.map +1 -0
- package/dist/components/ui/dialog.d.ts +12 -0
- package/dist/components/ui/dialog.d.ts.map +1 -0
- package/dist/components/ui/icon-button.d.ts +12 -0
- package/dist/components/ui/icon-button.d.ts.map +1 -0
- package/dist/components/ui/input-field.d.ts +15 -0
- package/dist/components/ui/input-field.d.ts.map +1 -0
- package/dist/components/ui/input.d.ts +3 -0
- package/dist/components/ui/input.d.ts.map +1 -0
- package/dist/components/ui/label.d.ts +3 -0
- package/dist/components/ui/label.d.ts.map +1 -0
- package/dist/components/ui/progress.d.ts +20 -0
- package/dist/components/ui/progress.d.ts.map +1 -0
- package/dist/components/ui/radio-group.d.ts +10 -0
- package/dist/components/ui/radio-group.d.ts.map +1 -0
- package/dist/components/ui/search-input.d.ts +9 -0
- package/dist/components/ui/search-input.d.ts.map +1 -0
- package/dist/components/ui/separator.d.ts +10 -0
- package/dist/components/ui/separator.d.ts.map +1 -0
- package/dist/components/ui/stepper.d.ts +28 -0
- package/dist/components/ui/stepper.d.ts.map +1 -0
- package/dist/components/ui/switch.d.ts +14 -0
- package/dist/components/ui/switch.d.ts.map +1 -0
- package/dist/components/ui/table.d.ts +11 -0
- package/dist/components/ui/table.d.ts.map +1 -0
- package/dist/components/ui/tag.d.ts +13 -0
- package/dist/components/ui/tag.d.ts.map +1 -0
- package/dist/components/ui/toast.d.ts +19 -0
- package/dist/components/ui/toast.d.ts.map +1 -0
- package/dist/components/ui/tooltip.d.ts +11 -0
- package/dist/components/ui/tooltip.d.ts.map +1 -0
- package/dist/index.css +2 -0
- package/dist/index.d.ts +30 -0
- package/dist/index.d.ts.map +1 -0
- package/dist/index.js +6824 -0
- package/dist/index.js.map +1 -0
- package/dist/lib/utils.d.ts +3 -0
- package/dist/lib/utils.d.ts.map +1 -0
- package/package.json +84 -0
- package/src/index.css +986 -0
- package/tailwind.config.ts +149 -0
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"utils.d.ts","sourceRoot":"","sources":["../../src/lib/utils.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,KAAK,UAAU,EAAQ,MAAM,MAAM,CAAA;AAG5C,wBAAgB,EAAE,CAAC,GAAG,MAAM,EAAE,UAAU,EAAE,UAEzC"}
|
package/package.json
ADDED
|
@@ -0,0 +1,84 @@
|
|
|
1
|
+
{
|
|
2
|
+
"name": "@novie/ui",
|
|
3
|
+
"version": "0.1.0",
|
|
4
|
+
"description": "Novie design system component library built on shadcn/ui conventions",
|
|
5
|
+
"repository": {
|
|
6
|
+
"type": "git",
|
|
7
|
+
"url": "https://github.com/Novamind-Labs-Ltd/novie-ui-lib.git"
|
|
8
|
+
},
|
|
9
|
+
"publishConfig": {
|
|
10
|
+
"registry": "https://registry.npmjs.org",
|
|
11
|
+
"access": "public"
|
|
12
|
+
},
|
|
13
|
+
"type": "module",
|
|
14
|
+
"main": "./dist/index.js",
|
|
15
|
+
"module": "./dist/index.js",
|
|
16
|
+
"types": "./dist/index.d.ts",
|
|
17
|
+
"exports": {
|
|
18
|
+
".": {
|
|
19
|
+
"import": {
|
|
20
|
+
"types": "./dist/index.d.ts",
|
|
21
|
+
"default": "./dist/index.js"
|
|
22
|
+
}
|
|
23
|
+
},
|
|
24
|
+
"./styles.css": "./dist/index.css",
|
|
25
|
+
"./tailwind.config": "./tailwind.config.ts"
|
|
26
|
+
},
|
|
27
|
+
"files": [
|
|
28
|
+
"dist",
|
|
29
|
+
"tailwind.config.ts",
|
|
30
|
+
"src/index.css"
|
|
31
|
+
],
|
|
32
|
+
"sideEffects": [
|
|
33
|
+
"**/*.css"
|
|
34
|
+
],
|
|
35
|
+
"scripts": {
|
|
36
|
+
"build": "vite build --config vite.config.lib.ts && tsc -p tsconfig.build.json",
|
|
37
|
+
"prepublishOnly": "npm run build",
|
|
38
|
+
"storybook": "storybook dev -p 6006",
|
|
39
|
+
"build-storybook": "storybook build"
|
|
40
|
+
},
|
|
41
|
+
"peerDependencies": {
|
|
42
|
+
"react": "^18.0.0 || ^19.0.0",
|
|
43
|
+
"react-dom": "^18.0.0 || ^19.0.0",
|
|
44
|
+
"tailwindcss": "^3.4.0"
|
|
45
|
+
},
|
|
46
|
+
"dependencies": {
|
|
47
|
+
"@fontsource-variable/google-sans-flex": "^5.2.1",
|
|
48
|
+
"@radix-ui/react-avatar": "^1.1.0",
|
|
49
|
+
"@radix-ui/react-checkbox": "^1.1.0",
|
|
50
|
+
"@radix-ui/react-dialog": "^1.1.0",
|
|
51
|
+
"@radix-ui/react-separator": "^1.1.0",
|
|
52
|
+
"@radix-ui/react-slot": "^1.1.0",
|
|
53
|
+
"@radix-ui/react-switch": "^1.1.0",
|
|
54
|
+
"class-variance-authority": "^0.7.1",
|
|
55
|
+
"clsx": "^2.1.1",
|
|
56
|
+
"lucide-react": "^0.577.0",
|
|
57
|
+
"radix-ui": "^1.4.3",
|
|
58
|
+
"tailwind-merge": "^3.5.0"
|
|
59
|
+
},
|
|
60
|
+
"devDependencies": {
|
|
61
|
+
"@chromatic-com/storybook": "^5.0.2",
|
|
62
|
+
"@figma/code-connect": "^1.4.2",
|
|
63
|
+
"@storybook/addon-a11y": "^10.3.1",
|
|
64
|
+
"@storybook/addon-docs": "^10.3.1",
|
|
65
|
+
"@storybook/addon-onboarding": "^10.3.1",
|
|
66
|
+
"@storybook/addon-themes": "^10.3.1",
|
|
67
|
+
"@storybook/addon-vitest": "^10.3.1",
|
|
68
|
+
"@storybook/react-vite": "^10.3.1",
|
|
69
|
+
"@types/react": "^19.2.14",
|
|
70
|
+
"@types/react-dom": "^19.2.3",
|
|
71
|
+
"@vitejs/plugin-react": "^4.7.0",
|
|
72
|
+
"@vitest/browser-playwright": "^4.1.0",
|
|
73
|
+
"@vitest/coverage-v8": "^4.1.0",
|
|
74
|
+
"autoprefixer": "^10.4.27",
|
|
75
|
+
"playwright": "^1.58.2",
|
|
76
|
+
"postcss": "^8.5.8",
|
|
77
|
+
"storybook": "^10.3.1",
|
|
78
|
+
"tailwindcss": "^3.4.19",
|
|
79
|
+
"typescript": "^5.9.3",
|
|
80
|
+
"vite": "^8.0.1",
|
|
81
|
+
"vitest": "^4.1.0"
|
|
82
|
+
},
|
|
83
|
+
"license": "MIT"
|
|
84
|
+
}
|