unifyedx-storybook-new 0.1.28 → 0.1.30
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.
|
@@ -78,11 +78,14 @@
|
|
|
78
78
|
--color-blue-700: oklch(48.8% .243 264.376);
|
|
79
79
|
--color-blue-800: oklch(42.4% .199 265.638);
|
|
80
80
|
--color-blue-900: oklch(37.9% .146 265.522);
|
|
81
|
+
--color-indigo-600: oklch(51.1% .262 276.966);
|
|
81
82
|
--color-purple-500: oklch(62.7% .265 303.9);
|
|
82
83
|
--color-gray-50: oklch(98.5% .002 247.839);
|
|
83
84
|
--color-black: #000;
|
|
84
85
|
--color-white: #fff;
|
|
85
86
|
--spacing: .25rem;
|
|
87
|
+
--text-xs: .75rem;
|
|
88
|
+
--text-xs--line-height: calc(1 / .75);
|
|
86
89
|
--text-sm: .875rem;
|
|
87
90
|
--text-sm--line-height: calc(1.25 / .875);
|
|
88
91
|
--text-base: 1rem;
|
|
@@ -387,6 +390,10 @@
|
|
|
387
390
|
position: static;
|
|
388
391
|
}
|
|
389
392
|
|
|
393
|
+
.sticky {
|
|
394
|
+
position: sticky;
|
|
395
|
+
}
|
|
396
|
+
|
|
390
397
|
.inset-y-0 {
|
|
391
398
|
inset-block: calc(var(--spacing) * 0);
|
|
392
399
|
}
|
|
@@ -411,6 +418,10 @@
|
|
|
411
418
|
z-index: 10;
|
|
412
419
|
}
|
|
413
420
|
|
|
421
|
+
.z-20 {
|
|
422
|
+
z-index: 20;
|
|
423
|
+
}
|
|
424
|
+
|
|
414
425
|
.z-50 {
|
|
415
426
|
z-index: 50;
|
|
416
427
|
}
|
|
@@ -527,6 +538,10 @@
|
|
|
527
538
|
max-height: calc(var(--spacing) * 60);
|
|
528
539
|
}
|
|
529
540
|
|
|
541
|
+
.min-h-\[38px\] {
|
|
542
|
+
min-height: 38px;
|
|
543
|
+
}
|
|
544
|
+
|
|
530
545
|
.w-3\/5 {
|
|
531
546
|
width: 60%;
|
|
532
547
|
}
|
|
@@ -619,6 +634,14 @@
|
|
|
619
634
|
animation: var(--animate-pulse);
|
|
620
635
|
}
|
|
621
636
|
|
|
637
|
+
.cursor-default {
|
|
638
|
+
cursor: default;
|
|
639
|
+
}
|
|
640
|
+
|
|
641
|
+
.cursor-not-allowed {
|
|
642
|
+
cursor: not-allowed;
|
|
643
|
+
}
|
|
644
|
+
|
|
622
645
|
.grid-cols-3 {
|
|
623
646
|
grid-template-columns: repeat(3, minmax(0, 1fr));
|
|
624
647
|
}
|
|
@@ -627,6 +650,10 @@
|
|
|
627
650
|
flex-direction: column;
|
|
628
651
|
}
|
|
629
652
|
|
|
653
|
+
.flex-wrap {
|
|
654
|
+
flex-wrap: wrap;
|
|
655
|
+
}
|
|
656
|
+
|
|
630
657
|
.items-center {
|
|
631
658
|
align-items: center;
|
|
632
659
|
}
|
|
@@ -812,6 +839,10 @@
|
|
|
812
839
|
background-color: var(--gray200);
|
|
813
840
|
}
|
|
814
841
|
|
|
842
|
+
.bg-indigo-600 {
|
|
843
|
+
background-color: var(--color-indigo-600);
|
|
844
|
+
}
|
|
845
|
+
|
|
815
846
|
.bg-red-100 {
|
|
816
847
|
background-color: var(--color-red-100);
|
|
817
848
|
}
|
|
@@ -864,6 +895,10 @@
|
|
|
864
895
|
padding-block: calc(var(--spacing) * 1);
|
|
865
896
|
}
|
|
866
897
|
|
|
898
|
+
.py-1\.5 {
|
|
899
|
+
padding-block: calc(var(--spacing) * 1.5);
|
|
900
|
+
}
|
|
901
|
+
|
|
867
902
|
.py-2 {
|
|
868
903
|
padding-block: calc(var(--spacing) * 2);
|
|
869
904
|
}
|
|
@@ -888,6 +923,10 @@
|
|
|
888
923
|
padding-right: calc(var(--spacing) * 4);
|
|
889
924
|
}
|
|
890
925
|
|
|
926
|
+
.pr-9 {
|
|
927
|
+
padding-right: calc(var(--spacing) * 9);
|
|
928
|
+
}
|
|
929
|
+
|
|
891
930
|
.pr-10 {
|
|
892
931
|
padding-right: calc(var(--spacing) * 10);
|
|
893
932
|
}
|
|
@@ -923,11 +962,21 @@
|
|
|
923
962
|
line-height: var(--tw-leading, var(--text-sm--line-height));
|
|
924
963
|
}
|
|
925
964
|
|
|
965
|
+
.text-xs {
|
|
966
|
+
font-size: var(--text-xs);
|
|
967
|
+
line-height: var(--tw-leading, var(--text-xs--line-height));
|
|
968
|
+
}
|
|
969
|
+
|
|
926
970
|
.leading-5 {
|
|
927
971
|
--tw-leading: calc(var(--spacing) * 5);
|
|
928
972
|
line-height: calc(var(--spacing) * 5);
|
|
929
973
|
}
|
|
930
974
|
|
|
975
|
+
.leading-6 {
|
|
976
|
+
--tw-leading: calc(var(--spacing) * 6);
|
|
977
|
+
line-height: calc(var(--spacing) * 6);
|
|
978
|
+
}
|
|
979
|
+
|
|
931
980
|
.font-medium {
|
|
932
981
|
--tw-font-weight: var(--font-weight-medium);
|
|
933
982
|
font-weight: var(--font-weight-medium);
|
|
@@ -955,6 +1004,10 @@
|
|
|
955
1004
|
color: var(--color-blue-700);
|
|
956
1005
|
}
|
|
957
1006
|
|
|
1007
|
+
.text-blue-800 {
|
|
1008
|
+
color: var(--color-blue-800);
|
|
1009
|
+
}
|
|
1010
|
+
|
|
958
1011
|
.text-blue-900 {
|
|
959
1012
|
color: var(--color-blue-900);
|
|
960
1013
|
}
|
|
@@ -987,6 +1040,10 @@
|
|
|
987
1040
|
color: var(--color-green-500);
|
|
988
1041
|
}
|
|
989
1042
|
|
|
1043
|
+
.text-indigo-600 {
|
|
1044
|
+
color: var(--color-indigo-600);
|
|
1045
|
+
}
|
|
1046
|
+
|
|
990
1047
|
.text-purple-500 {
|
|
991
1048
|
color: var(--color-purple-500);
|
|
992
1049
|
}
|
|
@@ -1039,10 +1096,27 @@
|
|
|
1039
1096
|
box-shadow: var(--tw-inset-shadow), var(--tw-inset-ring-shadow), var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow);
|
|
1040
1097
|
}
|
|
1041
1098
|
|
|
1099
|
+
.ring-2 {
|
|
1100
|
+
--tw-ring-shadow: var(--tw-ring-inset, ) 0 0 0 calc(2px + var(--tw-ring-offset-width)) var(--tw-ring-color, currentcolor);
|
|
1101
|
+
box-shadow: var(--tw-inset-shadow), var(--tw-inset-ring-shadow), var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow);
|
|
1102
|
+
}
|
|
1103
|
+
|
|
1042
1104
|
.ring-black {
|
|
1043
1105
|
--tw-ring-color: var(--color-black);
|
|
1044
1106
|
}
|
|
1045
1107
|
|
|
1108
|
+
.ring-gray-300 {
|
|
1109
|
+
--tw-ring-color: var(--gray300);
|
|
1110
|
+
}
|
|
1111
|
+
|
|
1112
|
+
.ring-indigo-600 {
|
|
1113
|
+
--tw-ring-color: var(--color-indigo-600);
|
|
1114
|
+
}
|
|
1115
|
+
|
|
1116
|
+
.ring-red-500 {
|
|
1117
|
+
--tw-ring-color: var(--color-red-500);
|
|
1118
|
+
}
|
|
1119
|
+
|
|
1046
1120
|
.ring-white {
|
|
1047
1121
|
--tw-ring-color: var(--color-white);
|
|
1048
1122
|
}
|
|
@@ -1117,11 +1191,20 @@
|
|
|
1117
1191
|
transition-timing-function: var(--ease-out);
|
|
1118
1192
|
}
|
|
1119
1193
|
|
|
1194
|
+
.outline-none {
|
|
1195
|
+
--tw-outline-style: none;
|
|
1196
|
+
outline-style: none;
|
|
1197
|
+
}
|
|
1198
|
+
|
|
1120
1199
|
.select-none {
|
|
1121
1200
|
-webkit-user-select: none;
|
|
1122
1201
|
user-select: none;
|
|
1123
1202
|
}
|
|
1124
1203
|
|
|
1204
|
+
.ring-inset {
|
|
1205
|
+
--tw-ring-inset: inset;
|
|
1206
|
+
}
|
|
1207
|
+
|
|
1125
1208
|
@media (hover: hover) {
|
|
1126
1209
|
.hover\:cursor-not-allowed:hover {
|
|
1127
1210
|
cursor: not-allowed;
|
|
@@ -2196,7 +2279,7 @@ body {
|
|
|
2196
2279
|
.filter-operator-group {
|
|
2197
2280
|
align-items: center;
|
|
2198
2281
|
gap: .5rem;
|
|
2199
|
-
display:
|
|
2282
|
+
display: none;
|
|
2200
2283
|
}
|
|
2201
2284
|
|
|
2202
2285
|
.filter-label {
|
|
@@ -6158,7 +6241,9 @@ body {
|
|
|
6158
6241
|
}
|
|
6159
6242
|
|
|
6160
6243
|
.filter-operator-group {
|
|
6161
|
-
display
|
|
6244
|
+
/* hid the operator for now, if needed then make display to flex */
|
|
6245
|
+
/* display: flex; */
|
|
6246
|
+
display: none;
|
|
6162
6247
|
align-items: center;
|
|
6163
6248
|
gap: 0.5rem;
|
|
6164
6249
|
}
|