@rafal.lemieszewski/tide-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/README.md +141 -0
- package/dist/avatars/acme.png +0 -0
- package/dist/avatars/rl.png +0 -0
- package/dist/avatars/sea.png +0 -0
- package/dist/components/index.d.ts +48 -0
- package/dist/components/product/app-frame.d.ts +10 -0
- package/dist/components/ui/accordion.d.ts +7 -0
- package/dist/components/ui/alert-dialog.d.ts +22 -0
- package/dist/components/ui/alert.d.ts +15 -0
- package/dist/components/ui/aspect-ratio.d.ts +3 -0
- package/dist/components/ui/avatar.d.ts +21 -0
- package/dist/components/ui/badge.d.ts +11 -0
- package/dist/components/ui/breadcrumb.d.ts +21 -0
- package/dist/components/ui/button.d.ts +18 -0
- package/dist/components/ui/calendar.d.ts +7 -0
- package/dist/components/ui/card.d.ts +8 -0
- package/dist/components/ui/chart.d.ts +33 -0
- package/dist/components/ui/checkbox.d.ts +10 -0
- package/dist/components/ui/collapsible.d.ts +5 -0
- package/dist/components/ui/combobox.d.ts +32 -0
- package/dist/components/ui/command.d.ts +82 -0
- package/dist/components/ui/country-dropdown.d.ts +26 -0
- package/dist/components/ui/custom-icons.d.ts +17 -0
- package/dist/components/ui/dialog.d.ts +19 -0
- package/dist/components/ui/drop-drawer.d.ts +28 -0
- package/dist/components/ui/dropdown-menu.d.ts +28 -0
- package/dist/components/ui/form-field.d.ts +19 -0
- package/dist/components/ui/form.d.ts +37 -0
- package/dist/components/ui/hover-card.d.ts +6 -0
- package/dist/components/ui/icon.d.ts +39 -0
- package/dist/components/ui/input.d.ts +10 -0
- package/dist/components/ui/kbd.d.ts +10 -0
- package/dist/components/ui/label.d.ts +7 -0
- package/dist/components/ui/linked-chart.d.ts +21 -0
- package/dist/components/ui/pagination.d.ts +13 -0
- package/dist/components/ui/popover.d.ts +6 -0
- package/dist/components/ui/radio-group.d.ts +14 -0
- package/dist/components/ui/select.d.ts +24 -0
- package/dist/components/ui/separator.d.ts +8 -0
- package/dist/components/ui/sheet.d.ts +26 -0
- package/dist/components/ui/sidebar.d.ts +67 -0
- package/dist/components/ui/skeleton.d.ts +41 -0
- package/dist/components/ui/slider.d.ts +4 -0
- package/dist/components/ui/switch.d.ts +4 -0
- package/dist/components/ui/table.d.ts +46 -0
- package/dist/components/ui/tabs.d.ts +25 -0
- package/dist/components/ui/text-link.d.ts +17 -0
- package/dist/components/ui/textarea.d.ts +10 -0
- package/dist/components/ui/toast.d.ts +5 -0
- package/dist/components/ui/toggle-group.d.ts +12 -0
- package/dist/components/ui/toggle.d.ts +11 -0
- package/dist/components/ui/tooltip.d.ts +7 -0
- package/dist/index.cjs.js +8168 -0
- package/dist/index.cjs.js.map +1 -0
- package/dist/index.d.ts +2 -0
- package/dist/index.es.js +35984 -0
- package/dist/index.es.js.map +1 -0
- package/dist/lib/utils.d.ts +6 -0
- package/package.json +119 -0
package/package.json
ADDED
|
@@ -0,0 +1,119 @@
|
|
|
1
|
+
{
|
|
2
|
+
"name": "@rafal.lemieszewski/tide-ui",
|
|
3
|
+
"version": "0.1.0",
|
|
4
|
+
"description": "A comprehensive React component library built with Tailwind CSS and Radix UI primitives",
|
|
5
|
+
"type": "module",
|
|
6
|
+
"main": "./dist/index.cjs.js",
|
|
7
|
+
"module": "./dist/index.es.js",
|
|
8
|
+
"types": "./dist/index.d.ts",
|
|
9
|
+
"exports": {
|
|
10
|
+
".": {
|
|
11
|
+
"types": "./dist/index.d.ts",
|
|
12
|
+
"import": "./dist/index.es.js",
|
|
13
|
+
"require": "./dist/index.cjs.js"
|
|
14
|
+
},
|
|
15
|
+
"./styles": "./dist/style.css"
|
|
16
|
+
},
|
|
17
|
+
"files": [
|
|
18
|
+
"dist"
|
|
19
|
+
],
|
|
20
|
+
"sideEffects": [
|
|
21
|
+
"**/*.css"
|
|
22
|
+
],
|
|
23
|
+
"scripts": {
|
|
24
|
+
"dev": "vite",
|
|
25
|
+
"build": "vite build",
|
|
26
|
+
"build:lib": "vite build --config vite.config.lib.ts",
|
|
27
|
+
"lint": "eslint .",
|
|
28
|
+
"preview": "vite preview",
|
|
29
|
+
"storybook": "storybook dev -p 6006",
|
|
30
|
+
"build-storybook": "storybook build",
|
|
31
|
+
"prepublishOnly": "npm run build:lib"
|
|
32
|
+
},
|
|
33
|
+
"keywords": [
|
|
34
|
+
"react",
|
|
35
|
+
"components",
|
|
36
|
+
"ui",
|
|
37
|
+
"tailwind",
|
|
38
|
+
"design-system",
|
|
39
|
+
"radix-ui",
|
|
40
|
+
"typescript"
|
|
41
|
+
],
|
|
42
|
+
"author": "Rafal Lemieszewski",
|
|
43
|
+
"license": "MIT",
|
|
44
|
+
"repository": {
|
|
45
|
+
"type": "git",
|
|
46
|
+
"url": "https://github.com/rafal-lemieszewski/tide-ui"
|
|
47
|
+
},
|
|
48
|
+
"homepage": "https://tide-ui-storybook.vercel.app",
|
|
49
|
+
"peerDependencies": {
|
|
50
|
+
"react": ">=18.0.0",
|
|
51
|
+
"react-dom": ">=18.0.0"
|
|
52
|
+
},
|
|
53
|
+
"dependencies": {
|
|
54
|
+
"@fontsource/inter": "^5.2.6",
|
|
55
|
+
"@hookform/resolvers": "^5.2.1",
|
|
56
|
+
"@radix-ui/react-accordion": "^1.2.11",
|
|
57
|
+
"@radix-ui/react-alert-dialog": "^1.1.14",
|
|
58
|
+
"@radix-ui/react-aspect-ratio": "^1.1.7",
|
|
59
|
+
"@radix-ui/react-avatar": "^1.1.10",
|
|
60
|
+
"@radix-ui/react-checkbox": "^1.3.2",
|
|
61
|
+
"@radix-ui/react-collapsible": "^1.1.11",
|
|
62
|
+
"@radix-ui/react-dialog": "^1.1.14",
|
|
63
|
+
"@radix-ui/react-dropdown-menu": "^2.1.15",
|
|
64
|
+
"@radix-ui/react-hover-card": "^1.1.14",
|
|
65
|
+
"@radix-ui/react-popover": "^1.1.14",
|
|
66
|
+
"@radix-ui/react-radio-group": "^1.3.7",
|
|
67
|
+
"@radix-ui/react-select": "^2.2.5",
|
|
68
|
+
"@radix-ui/react-separator": "^1.1.7",
|
|
69
|
+
"@radix-ui/react-slider": "^1.3.5",
|
|
70
|
+
"@radix-ui/react-slot": "^1.2.3",
|
|
71
|
+
"@radix-ui/react-switch": "^1.2.5",
|
|
72
|
+
"@radix-ui/react-tabs": "^1.1.12",
|
|
73
|
+
"@radix-ui/react-toggle": "^1.1.9",
|
|
74
|
+
"@radix-ui/react-toggle-group": "^1.1.10",
|
|
75
|
+
"@radix-ui/react-tooltip": "^1.2.7",
|
|
76
|
+
"@tailwindcss/vite": "^4.1.11",
|
|
77
|
+
"class-variance-authority": "^0.7.1",
|
|
78
|
+
"clsx": "^2.1.1",
|
|
79
|
+
"cmdk": "^1.1.1",
|
|
80
|
+
"country-data-list": "^1.5.4",
|
|
81
|
+
"date-fns": "^4.1.0",
|
|
82
|
+
"lucide-react": "^0.534.0",
|
|
83
|
+
"react": "^19.1.0",
|
|
84
|
+
"react-day-picker": "^9.8.1",
|
|
85
|
+
"react-dom": "^19.1.0",
|
|
86
|
+
"react-hook-form": "^7.62.0",
|
|
87
|
+
"recharts": "^3.1.2",
|
|
88
|
+
"sonner": "^2.0.7",
|
|
89
|
+
"tailwind-merge": "^3.3.1",
|
|
90
|
+
"tailwindcss": "^4.1.11",
|
|
91
|
+
"zod": "^4.0.16"
|
|
92
|
+
},
|
|
93
|
+
"devDependencies": {
|
|
94
|
+
"@chromatic-com/storybook": "^4.1.0",
|
|
95
|
+
"@eslint/js": "^9.30.1",
|
|
96
|
+
"@storybook/addon-a11y": "^9.1.2",
|
|
97
|
+
"@storybook/addon-docs": "^9.1.2",
|
|
98
|
+
"@storybook/addon-onboarding": "^9.1.2",
|
|
99
|
+
"@storybook/addon-vitest": "^9.1.2",
|
|
100
|
+
"@storybook/react-vite": "^9.1.2",
|
|
101
|
+
"@types/node": "^22.0.0",
|
|
102
|
+
"@types/react": "^19.1.8",
|
|
103
|
+
"@types/react-dom": "^19.1.6",
|
|
104
|
+
"@vitejs/plugin-react": "^4.6.0",
|
|
105
|
+
"@vitest/browser": "^3.2.4",
|
|
106
|
+
"@vitest/coverage-v8": "^3.2.4",
|
|
107
|
+
"eslint": "^9.30.1",
|
|
108
|
+
"eslint-plugin-react-hooks": "^5.2.0",
|
|
109
|
+
"eslint-plugin-react-refresh": "^0.4.20",
|
|
110
|
+
"eslint-plugin-storybook": "^9.1.2",
|
|
111
|
+
"globals": "^16.3.0",
|
|
112
|
+
"playwright": "^1.54.2",
|
|
113
|
+
"storybook": "^9.1.2",
|
|
114
|
+
"typescript": "^5.6.0",
|
|
115
|
+
"vite": "^7.0.4",
|
|
116
|
+
"vite-plugin-dts": "^4.5.4",
|
|
117
|
+
"vitest": "^3.2.4"
|
|
118
|
+
}
|
|
119
|
+
}
|