@segmentify/ui 0.0.13 → 0.0.15
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/form.d.ts +9 -2
- package/dist/components/atoms/select.d.ts +4 -1
- package/dist/components/molecules/select-field.d.ts +4 -3
- package/dist/components/organisms/form-date-picker.d.ts +11 -0
- package/dist/components/organisms/form-slider.d.ts +21 -0
- package/dist/index.d.ts +2 -0
- package/dist/segmentify-ui.cjs +55 -55
- package/dist/segmentify-ui.js +14116 -13931
- package/dist/ui.css +16 -5
- package/package.json +4 -3
package/dist/ui.css
CHANGED
|
@@ -708,6 +708,9 @@
|
|
|
708
708
|
.ui\:w-\[200px\] {
|
|
709
709
|
width: 200px;
|
|
710
710
|
}
|
|
711
|
+
.ui\:w-\[240px\] {
|
|
712
|
+
width: 240px;
|
|
713
|
+
}
|
|
711
714
|
.ui\:w-\[280px\] {
|
|
712
715
|
width: 280px;
|
|
713
716
|
}
|
|
@@ -1004,6 +1007,13 @@
|
|
|
1004
1007
|
margin-block-end: calc(calc(var(--ui-spacing) * 6) * calc(1 - var(--tw-space-y-reverse)));
|
|
1005
1008
|
}
|
|
1006
1009
|
}
|
|
1010
|
+
.ui\:space-y-8 {
|
|
1011
|
+
:where(& > :not(:last-child)) {
|
|
1012
|
+
--tw-space-y-reverse: 0;
|
|
1013
|
+
margin-block-start: calc(calc(var(--ui-spacing) * 8) * var(--tw-space-y-reverse));
|
|
1014
|
+
margin-block-end: calc(calc(var(--ui-spacing) * 8) * calc(1 - var(--tw-space-y-reverse)));
|
|
1015
|
+
}
|
|
1016
|
+
}
|
|
1007
1017
|
.ui\:space-x-2 {
|
|
1008
1018
|
:where(& > :not(:last-child)) {
|
|
1009
1019
|
--tw-space-x-reverse: 0;
|
|
@@ -1450,6 +1460,9 @@
|
|
|
1450
1460
|
.ui\:pl-2 {
|
|
1451
1461
|
padding-left: calc(var(--ui-spacing) * 2);
|
|
1452
1462
|
}
|
|
1463
|
+
.ui\:pl-3 {
|
|
1464
|
+
padding-left: calc(var(--ui-spacing) * 3);
|
|
1465
|
+
}
|
|
1453
1466
|
.ui\:pl-4 {
|
|
1454
1467
|
padding-left: calc(var(--ui-spacing) * 4);
|
|
1455
1468
|
}
|
|
@@ -1595,6 +1608,9 @@
|
|
|
1595
1608
|
.ui\:text-gray-500 {
|
|
1596
1609
|
color: var(--ui-color-gray-500);
|
|
1597
1610
|
}
|
|
1611
|
+
.ui\:text-gray-600 {
|
|
1612
|
+
color: var(--ui-color-gray-600);
|
|
1613
|
+
}
|
|
1598
1614
|
.ui\:text-muted-foreground {
|
|
1599
1615
|
color: var(--ui-color-muted-foreground);
|
|
1600
1616
|
}
|
|
@@ -2781,11 +2797,6 @@
|
|
|
2781
2797
|
opacity: 50%;
|
|
2782
2798
|
}
|
|
2783
2799
|
}
|
|
2784
|
-
.ui\:data-\[error\=true\]\:text-destructive {
|
|
2785
|
-
&[data-error="true"] {
|
|
2786
|
-
color: var(--ui-color-destructive);
|
|
2787
|
-
}
|
|
2788
|
-
}
|
|
2789
2800
|
.ui\:data-\[inset\]\:pl-8 {
|
|
2790
2801
|
&[data-inset] {
|
|
2791
2802
|
padding-left: calc(var(--ui-spacing) * 8);
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@segmentify/ui",
|
|
3
|
-
"version": "0.0.
|
|
3
|
+
"version": "0.0.15",
|
|
4
4
|
"description": "A collection of reusable React UI components built with Tailwind CSS and Radix UI",
|
|
5
5
|
"repository": {
|
|
6
6
|
"type": "git",
|
|
@@ -25,7 +25,8 @@
|
|
|
25
25
|
],
|
|
26
26
|
"peerDependencies": {
|
|
27
27
|
"react": "^18.0.0 || ^19.0.0",
|
|
28
|
-
"react-dom": "^18.0.0 || ^19.0.0"
|
|
28
|
+
"react-dom": "^18.0.0 || ^19.0.0",
|
|
29
|
+
"react-hook-form": "^7.0.0"
|
|
29
30
|
},
|
|
30
31
|
"dependencies": {
|
|
31
32
|
"@radix-ui/react-accordion": "^1.2.12",
|
|
@@ -57,7 +58,6 @@
|
|
|
57
58
|
"next-themes": "^0.4.6",
|
|
58
59
|
"quill": "^2.0.3",
|
|
59
60
|
"react-day-picker": "^9.13.0",
|
|
60
|
-
"react-hook-form": "7.69.0",
|
|
61
61
|
"react-select": "^5.10.2",
|
|
62
62
|
"recharts": "2.15.4",
|
|
63
63
|
"sonner": "^2.0.7",
|
|
@@ -99,6 +99,7 @@
|
|
|
99
99
|
"prettier": "3.7.4",
|
|
100
100
|
"react": "^19.2.0",
|
|
101
101
|
"react-dom": "^19.2.0",
|
|
102
|
+
"react-hook-form": "7.69.0",
|
|
102
103
|
"storybook": "^10.1.10",
|
|
103
104
|
"tailwindcss": "^4.1.18",
|
|
104
105
|
"ts-toolbelt": "^9.6.0",
|