@eintrek/erp-theme 1.0.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/README.md +135 -0
- package/dist/components/ui/Form.d.ts +25 -0
- package/dist/components/ui/Form.stories.d.ts +8 -0
- package/dist/components/ui/Input.d.ts +17 -0
- package/dist/components/ui/Input.stories.d.ts +10 -0
- package/dist/components/ui/InputDropdown.d.ts +19 -0
- package/dist/components/ui/InputDropdown.stories.d.ts +9 -0
- package/dist/components/ui/Label.d.ts +8 -0
- package/dist/components/ui/Label.stories.d.ts +8 -0
- package/dist/components/ui/Modal.d.ts +12 -0
- package/dist/components/ui/Modal.stories.d.ts +13 -0
- package/dist/components/ui/badge/Badge.d.ts +6 -0
- package/dist/components/ui/button/Button.d.ts +7 -0
- package/dist/components/ui/button.d.ts +14 -0
- package/dist/components/ui/button.stories.d.ts +25 -0
- package/dist/components/ui/card.d.ts +8 -0
- package/dist/components/ui/card.stories.d.ts +8 -0
- package/dist/components/ui/table/Table.d.ts +5 -0
- package/dist/components/ui/table/Table.stories.d.ts +6 -0
- package/dist/components/ui/table/TableBody.d.ts +3 -0
- package/dist/components/ui/table/TableBody.stories.d.ts +7 -0
- package/dist/components/ui/table/TableFilter.d.ts +3 -0
- package/dist/components/ui/table/TableFilter.stories.d.ts +6 -0
- package/dist/components/ui/table/TablePagination.d.ts +10 -0
- package/dist/components/ui/table/TablePagination.stories.d.ts +6 -0
- package/dist/components/ui/table/index.d.ts +13 -0
- package/dist/components/ui/table/types.d.ts +54 -0
- package/dist/components/ui/tabs/Tabs.d.ts +11 -0
- package/dist/index.css +1 -0
- package/dist/index.d.ts +11 -0
- package/dist/index.js +11297 -0
- package/dist/index.js.map +1 -0
- package/dist/lib/utils.d.ts +2 -0
- package/package.json +106 -0
package/package.json
ADDED
|
@@ -0,0 +1,106 @@
|
|
|
1
|
+
{
|
|
2
|
+
"name": "@eintrek/erp-theme",
|
|
3
|
+
"version": "1.0.0",
|
|
4
|
+
"private": false,
|
|
5
|
+
"type": "module",
|
|
6
|
+
"description": "A shadcn/ui component library with Storybook",
|
|
7
|
+
"main": "dist/index.js",
|
|
8
|
+
"module": "dist/index.esm.js",
|
|
9
|
+
"types": "dist/index.d.ts",
|
|
10
|
+
"style": "dist/styles.css",
|
|
11
|
+
"files": [
|
|
12
|
+
"dist"
|
|
13
|
+
],
|
|
14
|
+
"scripts": {
|
|
15
|
+
"build": "NODE_ENV=production rollup -c",
|
|
16
|
+
"dev": "NODE_ENV=production rollup -c -w",
|
|
17
|
+
"storybook": "storybook dev -p 6006",
|
|
18
|
+
"build-storybook": "storybook build",
|
|
19
|
+
"clean": "rimraf dist",
|
|
20
|
+
"prepare": "npm run clean && npm run build",
|
|
21
|
+
"pack": "NODE_ENV=production pnpm build && pnpm pack"
|
|
22
|
+
},
|
|
23
|
+
"keywords": [
|
|
24
|
+
"react",
|
|
25
|
+
"components",
|
|
26
|
+
"ui",
|
|
27
|
+
"shadcn",
|
|
28
|
+
"tailwindcss",
|
|
29
|
+
"typescript"
|
|
30
|
+
],
|
|
31
|
+
"peerDependencies": {
|
|
32
|
+
"next": "^15.0.0",
|
|
33
|
+
"react": "^19.1.0",
|
|
34
|
+
"react-dom": "^19.1.0"
|
|
35
|
+
},
|
|
36
|
+
"devDependencies": {
|
|
37
|
+
"@rollup/plugin-commonjs": "^28.0.5",
|
|
38
|
+
"@rollup/plugin-node-resolve": "^16.0.1",
|
|
39
|
+
"@rollup/plugin-typescript": "^12.1.2",
|
|
40
|
+
"@storybook/addon-docs": "^9.0.9",
|
|
41
|
+
"@storybook/addon-links": "^9.0.9",
|
|
42
|
+
"@storybook/addon-onboarding": "^9.0.9",
|
|
43
|
+
"@storybook/nextjs": "^9.0.9",
|
|
44
|
+
"@types/react": "^19.0.0",
|
|
45
|
+
"@types/react-date-range": "^1.4.10",
|
|
46
|
+
"@types/react-dom": "^19.0.0",
|
|
47
|
+
"autoprefixer": "^10.4.16",
|
|
48
|
+
"postcss": "^8.4.32",
|
|
49
|
+
"postcss-import": "^16.1.0",
|
|
50
|
+
"postcss-prefix-selector": "^1.15.0",
|
|
51
|
+
"react": "^19.1.0",
|
|
52
|
+
"react-dom": "^19.1.0",
|
|
53
|
+
"rimraf": "^5.0.5",
|
|
54
|
+
"rollup": "^4.9.4",
|
|
55
|
+
"rollup-plugin-dts": "^6.1.0",
|
|
56
|
+
"rollup-plugin-postcss": "^4.0.2",
|
|
57
|
+
"rollup-plugin-typescript2": "^0.36.0",
|
|
58
|
+
"storybook": "^9.0.9",
|
|
59
|
+
"tailwindcss": "^3.4.0",
|
|
60
|
+
"typescript": "^5.3.3"
|
|
61
|
+
},
|
|
62
|
+
"dependencies": {
|
|
63
|
+
"@hookform/resolvers": "^5.1.1",
|
|
64
|
+
"@radix-ui/react-accordion": "^1.1.2",
|
|
65
|
+
"@radix-ui/react-alert-dialog": "^1.0.5",
|
|
66
|
+
"@radix-ui/react-aspect-ratio": "^1.0.3",
|
|
67
|
+
"@radix-ui/react-avatar": "^1.0.4",
|
|
68
|
+
"@radix-ui/react-checkbox": "^1.0.4",
|
|
69
|
+
"@radix-ui/react-collapsible": "^1.0.3",
|
|
70
|
+
"@radix-ui/react-context-menu": "^2.1.5",
|
|
71
|
+
"@radix-ui/react-dialog": "^1.0.5",
|
|
72
|
+
"@radix-ui/react-dropdown-menu": "^2.0.6",
|
|
73
|
+
"@radix-ui/react-hover-card": "^1.0.7",
|
|
74
|
+
"@radix-ui/react-label": "^2.1.7",
|
|
75
|
+
"@radix-ui/react-menubar": "^1.0.4",
|
|
76
|
+
"@radix-ui/react-navigation-menu": "^1.1.4",
|
|
77
|
+
"@radix-ui/react-popover": "^1.0.7",
|
|
78
|
+
"@radix-ui/react-progress": "^1.0.3",
|
|
79
|
+
"@radix-ui/react-radio-group": "^1.1.3",
|
|
80
|
+
"@radix-ui/react-scroll-area": "^1.0.5",
|
|
81
|
+
"@radix-ui/react-select": "^2.0.0",
|
|
82
|
+
"@radix-ui/react-separator": "^1.0.3",
|
|
83
|
+
"@radix-ui/react-slider": "^1.1.2",
|
|
84
|
+
"@radix-ui/react-slot": "^1.2.3",
|
|
85
|
+
"@radix-ui/react-switch": "^1.0.3",
|
|
86
|
+
"@radix-ui/react-tabs": "^1.0.4",
|
|
87
|
+
"@radix-ui/react-toast": "^1.1.5",
|
|
88
|
+
"@radix-ui/react-toggle": "^1.0.3",
|
|
89
|
+
"@radix-ui/react-toggle-group": "^1.0.4",
|
|
90
|
+
"@radix-ui/react-tooltip": "^1.0.7",
|
|
91
|
+
"@tanstack/react-table": "^8.21.3",
|
|
92
|
+
"class-variance-authority": "^0.7.1",
|
|
93
|
+
"clsx": "^2.1.1",
|
|
94
|
+
"date-fns": "^4.1.0",
|
|
95
|
+
"lucide-react": "^0.516.0",
|
|
96
|
+
"react-date-range": "^2.0.1",
|
|
97
|
+
"react-hook-form": "^7.58.1",
|
|
98
|
+
"react-tailwindcss-datepicker": "^2.0.0",
|
|
99
|
+
"tailwind-merge": "^2.6.0",
|
|
100
|
+
"tailwindcss-animate": "^1.0.7",
|
|
101
|
+
"zod": "^3.25.64"
|
|
102
|
+
},
|
|
103
|
+
"publishConfig": {
|
|
104
|
+
"registry": "https://registry.npmjs.org/"
|
|
105
|
+
}
|
|
106
|
+
}
|