@segmentify/ui 0.0.36 → 0.0.38
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/index.d.ts +2 -1
- package/dist/segmentify-ui.cjs +73 -73
- package/dist/segmentify-ui.js +15253 -15986
- package/dist/ui.css +10 -8
- package/package.json +4 -3
package/dist/ui.css
CHANGED
|
@@ -365,6 +365,9 @@
|
|
|
365
365
|
.ui\:mb-8 {
|
|
366
366
|
margin-bottom: calc(var(--ui-spacing) * 8);
|
|
367
367
|
}
|
|
368
|
+
.ui\:mb-16 {
|
|
369
|
+
margin-bottom: calc(var(--ui-spacing) * 16);
|
|
370
|
+
}
|
|
368
371
|
.ui\:-ml-1 {
|
|
369
372
|
margin-left: calc(var(--ui-spacing) * -1);
|
|
370
373
|
}
|
|
@@ -532,9 +535,6 @@
|
|
|
532
535
|
.ui\:h-\[calc\(--spacing\(5\.5\)\)\] {
|
|
533
536
|
height: calc(calc(var(--ui-spacing) * 5.5));
|
|
534
537
|
}
|
|
535
|
-
.ui\:h-\[calc\(100\%-1px\)\] {
|
|
536
|
-
height: calc(100% - 1px);
|
|
537
|
-
}
|
|
538
538
|
.ui\:h-auto {
|
|
539
539
|
height: auto;
|
|
540
540
|
}
|
|
@@ -1506,9 +1506,6 @@
|
|
|
1506
1506
|
.ui\:p-8 {
|
|
1507
1507
|
padding: calc(var(--ui-spacing) * 8);
|
|
1508
1508
|
}
|
|
1509
|
-
.ui\:p-\[3px\] {
|
|
1510
|
-
padding: 3px;
|
|
1511
|
-
}
|
|
1512
1509
|
.ui\:p-px {
|
|
1513
1510
|
padding: 1px;
|
|
1514
1511
|
}
|
|
@@ -3626,9 +3623,14 @@
|
|
|
3626
3623
|
}
|
|
3627
3624
|
}
|
|
3628
3625
|
}
|
|
3629
|
-
.ui\:data-\[state\=active\]\:bg-
|
|
3626
|
+
.ui\:data-\[state\=active\]\:bg-segmentify-200 {
|
|
3630
3627
|
&[data-state="active"] {
|
|
3631
|
-
background-color: var(--ui-color-
|
|
3628
|
+
background-color: var(--ui-color-segmentify-200);
|
|
3629
|
+
}
|
|
3630
|
+
}
|
|
3631
|
+
.ui\:data-\[state\=active\]\:text-primary {
|
|
3632
|
+
&[data-state="active"] {
|
|
3633
|
+
color: var(--ui-color-primary);
|
|
3632
3634
|
}
|
|
3633
3635
|
}
|
|
3634
3636
|
.ui\:data-\[state\=active\]\:shadow-sm {
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@segmentify/ui",
|
|
3
|
-
"version": "0.0.
|
|
3
|
+
"version": "0.0.38",
|
|
4
4
|
"description": "A collection of reusable React UI components built with Tailwind CSS and Radix UI",
|
|
5
5
|
"repository": {
|
|
6
6
|
"type": "git",
|
|
@@ -31,7 +31,8 @@
|
|
|
31
31
|
"react-dom": "^18.0.0 || ^19.0.0",
|
|
32
32
|
"react-hook-form": "^7.0.0",
|
|
33
33
|
"@tanstack/react-query": "^5.90.19",
|
|
34
|
-
"lucide-react": ">=0.562.0"
|
|
34
|
+
"lucide-react": ">=0.562.0",
|
|
35
|
+
"sonner": "^2.0.7"
|
|
35
36
|
},
|
|
36
37
|
"dependencies": {
|
|
37
38
|
"@base-ui/react": "^1.1.0",
|
|
@@ -67,7 +68,6 @@
|
|
|
67
68
|
"react-day-picker": "^9.13.0",
|
|
68
69
|
"react-select": "^5.10.2",
|
|
69
70
|
"recharts": "2.15.4",
|
|
70
|
-
"sonner": "^2.0.7",
|
|
71
71
|
"tailwind-merge": "^3.4.0",
|
|
72
72
|
"vaul": "^1.1.2"
|
|
73
73
|
},
|
|
@@ -109,6 +109,7 @@
|
|
|
109
109
|
"react-hook-form": "7.69.0",
|
|
110
110
|
"@tanstack/react-query": "^5.90.19",
|
|
111
111
|
"lucide-react": "^0.562.0",
|
|
112
|
+
"sonner": "^2.0.7",
|
|
112
113
|
"storybook": "^10.1.10",
|
|
113
114
|
"tailwindcss": "^4.1.18",
|
|
114
115
|
"ts-toolbelt": "^9.6.0",
|