@segmentify/ui 0.0.28 → 0.0.31
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/components/atoms/alert-dialog.d.ts +18 -0
- package/dist/components/atoms/combobox.d.ts +24 -0
- package/dist/components/atoms/content-wrapper.d.ts +1 -1
- package/dist/components/atoms/input-group.d.ts +16 -0
- package/dist/components/molecules/combobox-field.d.ts +19 -24
- package/dist/components/molecules/date-range-picker.d.ts +7 -7
- package/dist/components/organisms/data-table/column-visibility.d.ts +1 -2
- package/dist/components/organisms/date-preset/context.d.ts +8 -0
- package/dist/components/organisms/date-preset/date-preset.d.ts +9 -0
- package/dist/components/organisms/date-preset/index.d.ts +8 -0
- package/dist/components/organisms/date-preset/presets.d.ts +21 -0
- package/dist/components/organisms/date-preset/root.d.ts +9 -0
- package/dist/components/organisms/form-combobox.d.ts +9 -14
- package/dist/components/organisms/timeline.d.ts +23 -0
- package/dist/index.d.ts +6 -1
- package/dist/lib/design-variants.d.ts +1 -1
- package/dist/mock.d.ts +3 -0
- package/dist/segmentify-ui.cjs +97 -72
- package/dist/segmentify-ui.js +30886 -24333
- package/dist/ui.css +884 -34
- package/package.json +24 -21
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@segmentify/ui",
|
|
3
|
-
"version": "0.0.
|
|
3
|
+
"version": "0.0.31",
|
|
4
4
|
"description": "A collection of reusable React UI components built with Tailwind CSS and Radix UI",
|
|
5
5
|
"repository": {
|
|
6
6
|
"type": "git",
|
|
@@ -26,12 +26,33 @@
|
|
|
26
26
|
"files": [
|
|
27
27
|
"dist"
|
|
28
28
|
],
|
|
29
|
+
"scripts": {
|
|
30
|
+
"dev": "vite",
|
|
31
|
+
"build:css": "tailwindcss -i src/index.css -o dist/ui.css",
|
|
32
|
+
"build": "pnpm run build:css && vite build --emptyOutDir=false && tsc -p tsconfig.build.json && node scripts/fix-type-aliases.mjs",
|
|
33
|
+
"postbuild": "node ./scripts/verify-dist.mjs",
|
|
34
|
+
"lint": "eslint .",
|
|
35
|
+
"lint:fix": "npm run lint -- --fix",
|
|
36
|
+
"format": "prettier --write \"**/*.{ts,tsx,md,mjs,cjs}\"",
|
|
37
|
+
"type-check": "tsc --noEmit",
|
|
38
|
+
"preview": "vite preview",
|
|
39
|
+
"storybook": "storybook dev -p 6006",
|
|
40
|
+
"build-storybook": "storybook build",
|
|
41
|
+
"test:storybook": "vitest --project=storybook --run",
|
|
42
|
+
"coverage": "vitest --project=storybook --run --coverage",
|
|
43
|
+
"prepare": "husky",
|
|
44
|
+
"knip": "knip",
|
|
45
|
+
"changeset": "changeset",
|
|
46
|
+
"version-packages": "changeset version",
|
|
47
|
+
"release": "changeset publish"
|
|
48
|
+
},
|
|
29
49
|
"peerDependencies": {
|
|
30
50
|
"react": "^18.0.0 || ^19.0.0",
|
|
31
51
|
"react-dom": "^18.0.0 || ^19.0.0",
|
|
32
52
|
"react-hook-form": "^7.0.0"
|
|
33
53
|
},
|
|
34
54
|
"dependencies": {
|
|
55
|
+
"@base-ui/react": "^1.1.0",
|
|
35
56
|
"@radix-ui/react-accordion": "^1.2.12",
|
|
36
57
|
"@radix-ui/react-aspect-ratio": "^1.1.8",
|
|
37
58
|
"@radix-ui/react-avatar": "^1.1.11",
|
|
@@ -62,6 +83,7 @@
|
|
|
62
83
|
"lucide-react": "^0.562.0",
|
|
63
84
|
"next-themes": "^0.4.6",
|
|
64
85
|
"quill": "^2.0.3",
|
|
86
|
+
"radix-ui": "^1.4.3",
|
|
65
87
|
"react-day-picker": "^9.13.0",
|
|
66
88
|
"react-select": "^5.10.2",
|
|
67
89
|
"recharts": "2.15.4",
|
|
@@ -121,24 +143,5 @@
|
|
|
121
143
|
"*.{json,js,ts,jsx,tsx,html}": [
|
|
122
144
|
"prettier --write --ignore-unknown"
|
|
123
145
|
]
|
|
124
|
-
},
|
|
125
|
-
"scripts": {
|
|
126
|
-
"dev": "vite",
|
|
127
|
-
"build:css": "tailwindcss -i src/index.css -o dist/ui.css",
|
|
128
|
-
"build": "pnpm run build:css && vite build --emptyOutDir=false && tsc -p tsconfig.build.json && node scripts/fix-type-aliases.mjs",
|
|
129
|
-
"postbuild": "node ./scripts/verify-dist.mjs",
|
|
130
|
-
"lint": "eslint .",
|
|
131
|
-
"lint:fix": "npm run lint -- --fix",
|
|
132
|
-
"format": "prettier --write \"**/*.{ts,tsx,md,mjs,cjs}\"",
|
|
133
|
-
"type-check": "tsc --noEmit",
|
|
134
|
-
"preview": "vite preview",
|
|
135
|
-
"storybook": "storybook dev -p 6006",
|
|
136
|
-
"build-storybook": "storybook build",
|
|
137
|
-
"test:storybook": "vitest --project=storybook --run",
|
|
138
|
-
"coverage": "vitest --project=storybook --run --coverage",
|
|
139
|
-
"knip": "knip",
|
|
140
|
-
"changeset": "changeset",
|
|
141
|
-
"version-packages": "changeset version",
|
|
142
|
-
"release": "changeset publish"
|
|
143
146
|
}
|
|
144
|
-
}
|
|
147
|
+
}
|