ics-ui-kit 0.1.0-alpha.75 → 0.1.0-alpha.76
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/{Select-d1VUmFM3.js → Select-DRwv6-eZ.js} +8 -2
- package/dist/{Select-d1VUmFM3.js.map → Select-DRwv6-eZ.js.map} +1 -1
- package/dist/components/search-select/multi-select/MultiSelect.d.ts +2 -0
- package/dist/components/search-select.js +315 -314
- package/dist/components/search-select.js.map +1 -1
- package/dist/components/select.js +1 -1
- package/dist/components/table/Table.d.ts +9 -0
- package/dist/components/table/Table.stories.d.ts +1 -0
- package/dist/components/table/index.d.ts +1 -1
- package/dist/components/table.js +63 -48
- package/dist/components/table.js.map +1 -1
- package/dist/components/tag-input.js +1 -1
- package/dist/styles-scoped.css +25 -0
- package/dist/styles.css +25 -0
- package/package.json +1 -1
package/dist/styles-scoped.css
CHANGED
|
@@ -1315,6 +1315,9 @@
|
|
|
1315
1315
|
.ui-kit .relative {
|
|
1316
1316
|
position: relative;
|
|
1317
1317
|
}
|
|
1318
|
+
.ui-kit .sticky {
|
|
1319
|
+
position: sticky;
|
|
1320
|
+
}
|
|
1318
1321
|
.ui-kit .inset-0 {
|
|
1319
1322
|
inset: 0px;
|
|
1320
1323
|
}
|
|
@@ -1934,6 +1937,9 @@
|
|
|
1934
1937
|
.ui-kit .max-h-32 {
|
|
1935
1938
|
max-height: 8rem;
|
|
1936
1939
|
}
|
|
1940
|
+
.ui-kit .max-h-64 {
|
|
1941
|
+
max-height: 16rem;
|
|
1942
|
+
}
|
|
1937
1943
|
.ui-kit .max-h-8 {
|
|
1938
1944
|
max-height: 2rem;
|
|
1939
1945
|
}
|
|
@@ -2258,6 +2264,9 @@
|
|
|
2258
2264
|
.ui-kit .min-w-full {
|
|
2259
2265
|
min-width: 100%;
|
|
2260
2266
|
}
|
|
2267
|
+
.ui-kit .max-w-2xl {
|
|
2268
|
+
max-width: 42rem;
|
|
2269
|
+
}
|
|
2261
2270
|
.ui-kit .max-w-32 {
|
|
2262
2271
|
max-width: 8rem;
|
|
2263
2272
|
}
|
|
@@ -2482,6 +2491,9 @@
|
|
|
2482
2491
|
.ui-kit .grid-cols-5 {
|
|
2483
2492
|
grid-template-columns: repeat(5, minmax(0, 1fr));
|
|
2484
2493
|
}
|
|
2494
|
+
.ui-kit .grid-cols-\[50px_repeat\(3\2c 1fr\)_80px\] {
|
|
2495
|
+
grid-template-columns: 50px repeat(3,1fr) 80px;
|
|
2496
|
+
}
|
|
2485
2497
|
.ui-kit .grid-cols-\[50px_repeat\(6\2c 1fr\)\] {
|
|
2486
2498
|
grid-template-columns: 50px repeat(6,1fr);
|
|
2487
2499
|
}
|
|
@@ -2774,6 +2786,10 @@
|
|
|
2774
2786
|
border-top-left-radius: 1rem;
|
|
2775
2787
|
border-top-right-radius: 1rem;
|
|
2776
2788
|
}
|
|
2789
|
+
.ui-kit .rounded-t-lg {
|
|
2790
|
+
border-top-left-radius: var(--radius);
|
|
2791
|
+
border-top-right-radius: var(--radius);
|
|
2792
|
+
}
|
|
2777
2793
|
.ui-kit .rounded-t-none {
|
|
2778
2794
|
border-top-left-radius: 0px;
|
|
2779
2795
|
border-top-right-radius: 0px;
|
|
@@ -4722,9 +4738,18 @@
|
|
|
4722
4738
|
.ui-kit :is(.group\/menu-item:hover .group-hover\/menu-item\:opacity-100) {
|
|
4723
4739
|
opacity: 1;
|
|
4724
4740
|
}
|
|
4741
|
+
.ui-kit :is(.group\/search-select-trigger:hover .group-hover\/search-select-trigger\:opacity-100) {
|
|
4742
|
+
opacity: 1;
|
|
4743
|
+
}
|
|
4725
4744
|
.ui-kit :is(.group:hover .group-hover\:opacity-100) {
|
|
4726
4745
|
opacity: 1;
|
|
4727
4746
|
}
|
|
4747
|
+
.ui-kit :is(.group\/search-select-trigger:focus-visible .group-focus-visible\/search-select-trigger\:opacity-100) {
|
|
4748
|
+
opacity: 1;
|
|
4749
|
+
}
|
|
4750
|
+
.ui-kit :is(.group:focus-visible .group-focus-visible\:opacity-100) {
|
|
4751
|
+
opacity: 1;
|
|
4752
|
+
}
|
|
4728
4753
|
.ui-kit :is(.group:disabled .group-disabled\:hidden) {
|
|
4729
4754
|
display: none;
|
|
4730
4755
|
}
|
package/dist/styles.css
CHANGED
|
@@ -1300,6 +1300,9 @@ body {
|
|
|
1300
1300
|
.relative {
|
|
1301
1301
|
position: relative;
|
|
1302
1302
|
}
|
|
1303
|
+
.sticky {
|
|
1304
|
+
position: sticky;
|
|
1305
|
+
}
|
|
1303
1306
|
.inset-0 {
|
|
1304
1307
|
inset: 0px;
|
|
1305
1308
|
}
|
|
@@ -1919,6 +1922,9 @@ body {
|
|
|
1919
1922
|
.max-h-32 {
|
|
1920
1923
|
max-height: 8rem;
|
|
1921
1924
|
}
|
|
1925
|
+
.max-h-64 {
|
|
1926
|
+
max-height: 16rem;
|
|
1927
|
+
}
|
|
1922
1928
|
.max-h-8 {
|
|
1923
1929
|
max-height: 2rem;
|
|
1924
1930
|
}
|
|
@@ -2243,6 +2249,9 @@ body {
|
|
|
2243
2249
|
.min-w-full {
|
|
2244
2250
|
min-width: 100%;
|
|
2245
2251
|
}
|
|
2252
|
+
.max-w-2xl {
|
|
2253
|
+
max-width: 42rem;
|
|
2254
|
+
}
|
|
2246
2255
|
.max-w-32 {
|
|
2247
2256
|
max-width: 8rem;
|
|
2248
2257
|
}
|
|
@@ -2467,6 +2476,9 @@ body {
|
|
|
2467
2476
|
.grid-cols-5 {
|
|
2468
2477
|
grid-template-columns: repeat(5, minmax(0, 1fr));
|
|
2469
2478
|
}
|
|
2479
|
+
.grid-cols-\[50px_repeat\(3\2c 1fr\)_80px\] {
|
|
2480
|
+
grid-template-columns: 50px repeat(3,1fr) 80px;
|
|
2481
|
+
}
|
|
2470
2482
|
.grid-cols-\[50px_repeat\(6\2c 1fr\)\] {
|
|
2471
2483
|
grid-template-columns: 50px repeat(6,1fr);
|
|
2472
2484
|
}
|
|
@@ -2759,6 +2771,10 @@ body {
|
|
|
2759
2771
|
border-top-left-radius: 1rem;
|
|
2760
2772
|
border-top-right-radius: 1rem;
|
|
2761
2773
|
}
|
|
2774
|
+
.rounded-t-lg {
|
|
2775
|
+
border-top-left-radius: var(--radius);
|
|
2776
|
+
border-top-right-radius: var(--radius);
|
|
2777
|
+
}
|
|
2762
2778
|
.rounded-t-none {
|
|
2763
2779
|
border-top-left-radius: 0px;
|
|
2764
2780
|
border-top-right-radius: 0px;
|
|
@@ -4711,9 +4727,18 @@ body {
|
|
|
4711
4727
|
.group\/menu-item:hover .group-hover\/menu-item\:opacity-100 {
|
|
4712
4728
|
opacity: 1;
|
|
4713
4729
|
}
|
|
4730
|
+
.group\/search-select-trigger:hover .group-hover\/search-select-trigger\:opacity-100 {
|
|
4731
|
+
opacity: 1;
|
|
4732
|
+
}
|
|
4714
4733
|
.group:hover .group-hover\:opacity-100 {
|
|
4715
4734
|
opacity: 1;
|
|
4716
4735
|
}
|
|
4736
|
+
.group\/search-select-trigger:focus-visible .group-focus-visible\/search-select-trigger\:opacity-100 {
|
|
4737
|
+
opacity: 1;
|
|
4738
|
+
}
|
|
4739
|
+
.group:focus-visible .group-focus-visible\:opacity-100 {
|
|
4740
|
+
opacity: 1;
|
|
4741
|
+
}
|
|
4717
4742
|
.group:disabled .group-disabled\:hidden {
|
|
4718
4743
|
display: none;
|
|
4719
4744
|
}
|