@luscii-healthtech/web-ui 42.11.5 → 42.12.0
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.development.js +37 -10
- package/dist/index.development.js.map +1 -1
- package/dist/index.js +1 -1
- package/dist/index.js.map +1 -1
- package/dist/src/components/DetailsDisclosure/DetailsDisclosure.d.ts +6 -0
- package/dist/stories/DetailsDisclosure.stories.d.ts +33 -0
- package/dist/web-ui-tailwind.css +93 -0
- package/dist/web-ui.esm.js +1 -1
- package/dist/web-ui.esm.js.map +1 -1
- package/package.json +1 -1
|
@@ -12,6 +12,12 @@ type Props = Omit<ComponentProps<typeof Box<"details">>, "as"> & {
|
|
|
12
12
|
* @link https://developer.mozilla.org/en-US/docs/Web/HTML/Element/details#name
|
|
13
13
|
*/
|
|
14
14
|
name?: string;
|
|
15
|
+
/**
|
|
16
|
+
* When set to true will omit the border around the DetailsDisclosure component.
|
|
17
|
+
*
|
|
18
|
+
* @default false
|
|
19
|
+
*/
|
|
20
|
+
omitBorder?: boolean;
|
|
15
21
|
/**
|
|
16
22
|
* Called when the details component opens or closes.
|
|
17
23
|
*/
|
|
@@ -15,6 +15,7 @@ declare const meta: {
|
|
|
15
15
|
}, "as"> & ({
|
|
16
16
|
children?: import("react").ReactNode;
|
|
17
17
|
name?: string;
|
|
18
|
+
omitBorder?: boolean;
|
|
18
19
|
onToggleDetails?: (isOpen: boolean) => void;
|
|
19
20
|
} & ({
|
|
20
21
|
open?: never;
|
|
@@ -333,6 +334,7 @@ export declare const OpenByDefault: {
|
|
|
333
334
|
borderRadiusLeft?: keyof typeof import("../src").SIZES;
|
|
334
335
|
borderRadiusRight?: keyof typeof import("../src").SIZES;
|
|
335
336
|
hoverBackgroundColor?: import("../src/types/general.types").BackgroundColor;
|
|
337
|
+
omitBorder?: boolean;
|
|
336
338
|
onToggleDetails?: (isOpen: boolean) => void;
|
|
337
339
|
} | {
|
|
338
340
|
openByDefault: boolean;
|
|
@@ -628,6 +630,7 @@ export declare const OpenByDefault: {
|
|
|
628
630
|
borderRadiusLeft?: keyof typeof import("../src").SIZES;
|
|
629
631
|
borderRadiusRight?: keyof typeof import("../src").SIZES;
|
|
630
632
|
hoverBackgroundColor?: import("../src/types/general.types").BackgroundColor;
|
|
633
|
+
omitBorder?: boolean;
|
|
631
634
|
onToggleDetails?: (isOpen: boolean) => void;
|
|
632
635
|
} | {
|
|
633
636
|
openByDefault: boolean;
|
|
@@ -923,6 +926,7 @@ export declare const OpenByDefault: {
|
|
|
923
926
|
borderRadiusLeft?: keyof typeof import("../src").SIZES;
|
|
924
927
|
borderRadiusRight?: keyof typeof import("../src").SIZES;
|
|
925
928
|
hoverBackgroundColor?: import("../src/types/general.types").BackgroundColor;
|
|
929
|
+
omitBorder?: boolean;
|
|
926
930
|
onToggleDetails?: (isOpen: boolean) => void;
|
|
927
931
|
} | {
|
|
928
932
|
openByDefault: boolean;
|
|
@@ -1218,6 +1222,7 @@ export declare const OpenByDefault: {
|
|
|
1218
1222
|
borderRadiusLeft?: keyof typeof import("../src").SIZES;
|
|
1219
1223
|
borderRadiusRight?: keyof typeof import("../src").SIZES;
|
|
1220
1224
|
hoverBackgroundColor?: import("../src/types/general.types").BackgroundColor;
|
|
1225
|
+
omitBorder?: boolean;
|
|
1221
1226
|
onToggleDetails?: (isOpen: boolean) => void;
|
|
1222
1227
|
};
|
|
1223
1228
|
decorators?: import("storybook/internal/csf").DecoratorFunction<import("@storybook/react").ReactRenderer, {
|
|
@@ -1513,6 +1518,7 @@ export declare const OpenByDefault: {
|
|
|
1513
1518
|
borderRadiusLeft?: keyof typeof import("../src").SIZES | undefined;
|
|
1514
1519
|
borderRadiusRight?: keyof typeof import("../src").SIZES | undefined;
|
|
1515
1520
|
hoverBackgroundColor?: import("../src/types/general.types").BackgroundColor | undefined;
|
|
1521
|
+
omitBorder?: boolean | undefined;
|
|
1516
1522
|
onToggleDetails?: ((isOpen: boolean) => void) | undefined;
|
|
1517
1523
|
openByDefault?: boolean | undefined;
|
|
1518
1524
|
} | {
|
|
@@ -1808,6 +1814,7 @@ export declare const OpenByDefault: {
|
|
|
1808
1814
|
borderRadiusLeft?: keyof typeof import("../src").SIZES | undefined;
|
|
1809
1815
|
borderRadiusRight?: keyof typeof import("../src").SIZES | undefined;
|
|
1810
1816
|
hoverBackgroundColor?: import("../src/types/general.types").BackgroundColor | undefined;
|
|
1817
|
+
omitBorder?: boolean | undefined;
|
|
1811
1818
|
onToggleDetails?: ((isOpen: boolean) => void) | undefined;
|
|
1812
1819
|
openByDefault?: never | undefined;
|
|
1813
1820
|
}> | import("storybook/internal/csf").DecoratorFunction<import("@storybook/react").ReactRenderer, {
|
|
@@ -2103,6 +2110,7 @@ export declare const OpenByDefault: {
|
|
|
2103
2110
|
borderRadiusLeft?: keyof typeof import("../src").SIZES | undefined;
|
|
2104
2111
|
borderRadiusRight?: keyof typeof import("../src").SIZES | undefined;
|
|
2105
2112
|
hoverBackgroundColor?: import("../src/types/general.types").BackgroundColor | undefined;
|
|
2113
|
+
omitBorder?: boolean | undefined;
|
|
2106
2114
|
onToggleDetails?: ((isOpen: boolean) => void) | undefined;
|
|
2107
2115
|
openByDefault?: boolean | undefined;
|
|
2108
2116
|
} | {
|
|
@@ -2398,6 +2406,7 @@ export declare const OpenByDefault: {
|
|
|
2398
2406
|
borderRadiusLeft?: keyof typeof import("../src").SIZES | undefined;
|
|
2399
2407
|
borderRadiusRight?: keyof typeof import("../src").SIZES | undefined;
|
|
2400
2408
|
hoverBackgroundColor?: import("../src/types/general.types").BackgroundColor | undefined;
|
|
2409
|
+
omitBorder?: boolean | undefined;
|
|
2401
2410
|
onToggleDetails?: ((isOpen: boolean) => void) | undefined;
|
|
2402
2411
|
openByDefault?: never | undefined;
|
|
2403
2412
|
}>[] | undefined;
|
|
@@ -2695,6 +2704,7 @@ export declare const OpenByDefault: {
|
|
|
2695
2704
|
borderRadiusLeft?: keyof typeof import("../src").SIZES | undefined;
|
|
2696
2705
|
borderRadiusRight?: keyof typeof import("../src").SIZES | undefined;
|
|
2697
2706
|
hoverBackgroundColor?: import("../src/types/general.types").BackgroundColor | undefined;
|
|
2707
|
+
omitBorder?: boolean | undefined;
|
|
2698
2708
|
onToggleDetails?: ((isOpen: boolean) => void) | undefined;
|
|
2699
2709
|
openByDefault?: boolean | undefined;
|
|
2700
2710
|
} | {
|
|
@@ -2990,6 +3000,7 @@ export declare const OpenByDefault: {
|
|
|
2990
3000
|
borderRadiusLeft?: keyof typeof import("../src").SIZES | undefined;
|
|
2991
3001
|
borderRadiusRight?: keyof typeof import("../src").SIZES | undefined;
|
|
2992
3002
|
hoverBackgroundColor?: import("../src/types/general.types").BackgroundColor | undefined;
|
|
3003
|
+
omitBorder?: boolean | undefined;
|
|
2993
3004
|
onToggleDetails?: ((isOpen: boolean) => void) | undefined;
|
|
2994
3005
|
openByDefault?: never | undefined;
|
|
2995
3006
|
}>> | undefined;
|
|
@@ -3286,6 +3297,7 @@ export declare const OpenByDefault: {
|
|
|
3286
3297
|
borderRadiusLeft?: keyof typeof import("../src").SIZES | undefined;
|
|
3287
3298
|
borderRadiusRight?: keyof typeof import("../src").SIZES | undefined;
|
|
3288
3299
|
hoverBackgroundColor?: import("../src/types/general.types").BackgroundColor | undefined;
|
|
3300
|
+
omitBorder?: boolean | undefined;
|
|
3289
3301
|
onToggleDetails?: ((isOpen: boolean) => void) | undefined;
|
|
3290
3302
|
openByDefault?: boolean | undefined;
|
|
3291
3303
|
} | {
|
|
@@ -3581,6 +3593,7 @@ export declare const OpenByDefault: {
|
|
|
3581
3593
|
borderRadiusLeft?: keyof typeof import("../src").SIZES | undefined;
|
|
3582
3594
|
borderRadiusRight?: keyof typeof import("../src").SIZES | undefined;
|
|
3583
3595
|
hoverBackgroundColor?: import("../src/types/general.types").BackgroundColor | undefined;
|
|
3596
|
+
omitBorder?: boolean | undefined;
|
|
3584
3597
|
onToggleDetails?: ((isOpen: boolean) => void) | undefined;
|
|
3585
3598
|
openByDefault?: never | undefined;
|
|
3586
3599
|
}> | import("storybook/internal/csf").LoaderFunction<import("@storybook/react").ReactRenderer, {
|
|
@@ -3876,6 +3889,7 @@ export declare const OpenByDefault: {
|
|
|
3876
3889
|
borderRadiusLeft?: keyof typeof import("../src").SIZES | undefined;
|
|
3877
3890
|
borderRadiusRight?: keyof typeof import("../src").SIZES | undefined;
|
|
3878
3891
|
hoverBackgroundColor?: import("../src/types/general.types").BackgroundColor | undefined;
|
|
3892
|
+
omitBorder?: boolean | undefined;
|
|
3879
3893
|
onToggleDetails?: ((isOpen: boolean) => void) | undefined;
|
|
3880
3894
|
openByDefault?: boolean | undefined;
|
|
3881
3895
|
} | {
|
|
@@ -4171,6 +4185,7 @@ export declare const OpenByDefault: {
|
|
|
4171
4185
|
borderRadiusLeft?: keyof typeof import("../src").SIZES | undefined;
|
|
4172
4186
|
borderRadiusRight?: keyof typeof import("../src").SIZES | undefined;
|
|
4173
4187
|
hoverBackgroundColor?: import("../src/types/general.types").BackgroundColor | undefined;
|
|
4188
|
+
omitBorder?: boolean | undefined;
|
|
4174
4189
|
onToggleDetails?: ((isOpen: boolean) => void) | undefined;
|
|
4175
4190
|
openByDefault?: never | undefined;
|
|
4176
4191
|
}>[] | undefined;
|
|
@@ -4467,6 +4482,7 @@ export declare const OpenByDefault: {
|
|
|
4467
4482
|
borderRadiusLeft?: keyof typeof import("../src").SIZES | undefined;
|
|
4468
4483
|
borderRadiusRight?: keyof typeof import("../src").SIZES | undefined;
|
|
4469
4484
|
hoverBackgroundColor?: import("../src/types/general.types").BackgroundColor | undefined;
|
|
4485
|
+
omitBorder?: boolean | undefined;
|
|
4470
4486
|
onToggleDetails?: ((isOpen: boolean) => void) | undefined;
|
|
4471
4487
|
openByDefault?: boolean | undefined;
|
|
4472
4488
|
} | {
|
|
@@ -4762,6 +4778,7 @@ export declare const OpenByDefault: {
|
|
|
4762
4778
|
borderRadiusLeft?: keyof typeof import("../src").SIZES | undefined;
|
|
4763
4779
|
borderRadiusRight?: keyof typeof import("../src").SIZES | undefined;
|
|
4764
4780
|
hoverBackgroundColor?: import("../src/types/general.types").BackgroundColor | undefined;
|
|
4781
|
+
omitBorder?: boolean | undefined;
|
|
4765
4782
|
onToggleDetails?: ((isOpen: boolean) => void) | undefined;
|
|
4766
4783
|
openByDefault?: never | undefined;
|
|
4767
4784
|
}> | import("storybook/internal/csf").BeforeEach<import("@storybook/react").ReactRenderer, {
|
|
@@ -5057,6 +5074,7 @@ export declare const OpenByDefault: {
|
|
|
5057
5074
|
borderRadiusLeft?: keyof typeof import("../src").SIZES | undefined;
|
|
5058
5075
|
borderRadiusRight?: keyof typeof import("../src").SIZES | undefined;
|
|
5059
5076
|
hoverBackgroundColor?: import("../src/types/general.types").BackgroundColor | undefined;
|
|
5077
|
+
omitBorder?: boolean | undefined;
|
|
5060
5078
|
onToggleDetails?: ((isOpen: boolean) => void) | undefined;
|
|
5061
5079
|
openByDefault?: boolean | undefined;
|
|
5062
5080
|
} | {
|
|
@@ -5352,6 +5370,7 @@ export declare const OpenByDefault: {
|
|
|
5352
5370
|
borderRadiusLeft?: keyof typeof import("../src").SIZES | undefined;
|
|
5353
5371
|
borderRadiusRight?: keyof typeof import("../src").SIZES | undefined;
|
|
5354
5372
|
hoverBackgroundColor?: import("../src/types/general.types").BackgroundColor | undefined;
|
|
5373
|
+
omitBorder?: boolean | undefined;
|
|
5355
5374
|
onToggleDetails?: ((isOpen: boolean) => void) | undefined;
|
|
5356
5375
|
openByDefault?: never | undefined;
|
|
5357
5376
|
}>[] | undefined;
|
|
@@ -5648,6 +5667,7 @@ export declare const OpenByDefault: {
|
|
|
5648
5667
|
borderRadiusLeft?: keyof typeof import("../src").SIZES | undefined;
|
|
5649
5668
|
borderRadiusRight?: keyof typeof import("../src").SIZES | undefined;
|
|
5650
5669
|
hoverBackgroundColor?: import("../src/types/general.types").BackgroundColor | undefined;
|
|
5670
|
+
omitBorder?: boolean | undefined;
|
|
5651
5671
|
onToggleDetails?: ((isOpen: boolean) => void) | undefined;
|
|
5652
5672
|
openByDefault?: boolean | undefined;
|
|
5653
5673
|
} | {
|
|
@@ -5943,6 +5963,7 @@ export declare const OpenByDefault: {
|
|
|
5943
5963
|
borderRadiusLeft?: keyof typeof import("../src").SIZES | undefined;
|
|
5944
5964
|
borderRadiusRight?: keyof typeof import("../src").SIZES | undefined;
|
|
5945
5965
|
hoverBackgroundColor?: import("../src/types/general.types").BackgroundColor | undefined;
|
|
5966
|
+
omitBorder?: boolean | undefined;
|
|
5946
5967
|
onToggleDetails?: ((isOpen: boolean) => void) | undefined;
|
|
5947
5968
|
openByDefault?: never | undefined;
|
|
5948
5969
|
}> | import("storybook/internal/csf").AfterEach<import("@storybook/react").ReactRenderer, {
|
|
@@ -6238,6 +6259,7 @@ export declare const OpenByDefault: {
|
|
|
6238
6259
|
borderRadiusLeft?: keyof typeof import("../src").SIZES | undefined;
|
|
6239
6260
|
borderRadiusRight?: keyof typeof import("../src").SIZES | undefined;
|
|
6240
6261
|
hoverBackgroundColor?: import("../src/types/general.types").BackgroundColor | undefined;
|
|
6262
|
+
omitBorder?: boolean | undefined;
|
|
6241
6263
|
onToggleDetails?: ((isOpen: boolean) => void) | undefined;
|
|
6242
6264
|
openByDefault?: boolean | undefined;
|
|
6243
6265
|
} | {
|
|
@@ -6533,6 +6555,7 @@ export declare const OpenByDefault: {
|
|
|
6533
6555
|
borderRadiusLeft?: keyof typeof import("../src").SIZES | undefined;
|
|
6534
6556
|
borderRadiusRight?: keyof typeof import("../src").SIZES | undefined;
|
|
6535
6557
|
hoverBackgroundColor?: import("../src/types/general.types").BackgroundColor | undefined;
|
|
6558
|
+
omitBorder?: boolean | undefined;
|
|
6536
6559
|
onToggleDetails?: ((isOpen: boolean) => void) | undefined;
|
|
6537
6560
|
openByDefault?: never | undefined;
|
|
6538
6561
|
}>[] | undefined;
|
|
@@ -6829,6 +6852,7 @@ export declare const OpenByDefault: {
|
|
|
6829
6852
|
borderRadiusLeft?: keyof typeof import("../src").SIZES | undefined;
|
|
6830
6853
|
borderRadiusRight?: keyof typeof import("../src").SIZES | undefined;
|
|
6831
6854
|
hoverBackgroundColor?: import("../src/types/general.types").BackgroundColor | undefined;
|
|
6855
|
+
omitBorder?: boolean | undefined;
|
|
6832
6856
|
onToggleDetails?: ((isOpen: boolean) => void) | undefined;
|
|
6833
6857
|
openByDefault?: boolean | undefined;
|
|
6834
6858
|
} | {
|
|
@@ -7124,6 +7148,7 @@ export declare const OpenByDefault: {
|
|
|
7124
7148
|
borderRadiusLeft?: keyof typeof import("../src").SIZES | undefined;
|
|
7125
7149
|
borderRadiusRight?: keyof typeof import("../src").SIZES | undefined;
|
|
7126
7150
|
hoverBackgroundColor?: import("../src/types/general.types").BackgroundColor | undefined;
|
|
7151
|
+
omitBorder?: boolean | undefined;
|
|
7127
7152
|
onToggleDetails?: ((isOpen: boolean) => void) | undefined;
|
|
7128
7153
|
openByDefault?: never | undefined;
|
|
7129
7154
|
}> | undefined;
|
|
@@ -7421,6 +7446,7 @@ export declare const OpenByDefault: {
|
|
|
7421
7446
|
borderRadiusLeft?: keyof typeof import("../src").SIZES | undefined;
|
|
7422
7447
|
borderRadiusRight?: keyof typeof import("../src").SIZES | undefined;
|
|
7423
7448
|
hoverBackgroundColor?: import("../src/types/general.types").BackgroundColor | undefined;
|
|
7449
|
+
omitBorder?: boolean | undefined;
|
|
7424
7450
|
onToggleDetails?: ((isOpen: boolean) => void) | undefined;
|
|
7425
7451
|
openByDefault?: boolean | undefined;
|
|
7426
7452
|
} | {
|
|
@@ -7716,6 +7742,7 @@ export declare const OpenByDefault: {
|
|
|
7716
7742
|
borderRadiusLeft?: keyof typeof import("../src").SIZES | undefined;
|
|
7717
7743
|
borderRadiusRight?: keyof typeof import("../src").SIZES | undefined;
|
|
7718
7744
|
hoverBackgroundColor?: import("../src/types/general.types").BackgroundColor | undefined;
|
|
7745
|
+
omitBorder?: boolean | undefined;
|
|
7719
7746
|
onToggleDetails?: ((isOpen: boolean) => void) | undefined;
|
|
7720
7747
|
openByDefault?: never | undefined;
|
|
7721
7748
|
}>) => (ui?: import("react").JSX.Element) => Promise<import("storybook/internal/csf").Canvas>) | undefined;
|
|
@@ -8014,6 +8041,7 @@ export declare const OpenByDefault: {
|
|
|
8014
8041
|
borderRadiusLeft?: keyof typeof import("../src").SIZES | undefined;
|
|
8015
8042
|
borderRadiusRight?: keyof typeof import("../src").SIZES | undefined;
|
|
8016
8043
|
hoverBackgroundColor?: import("../src/types/general.types").BackgroundColor | undefined;
|
|
8044
|
+
omitBorder?: boolean | undefined;
|
|
8017
8045
|
onToggleDetails?: ((isOpen: boolean) => void) | undefined;
|
|
8018
8046
|
openByDefault?: boolean | undefined;
|
|
8019
8047
|
} | {
|
|
@@ -8309,6 +8337,7 @@ export declare const OpenByDefault: {
|
|
|
8309
8337
|
borderRadiusLeft?: keyof typeof import("../src").SIZES | undefined;
|
|
8310
8338
|
borderRadiusRight?: keyof typeof import("../src").SIZES | undefined;
|
|
8311
8339
|
hoverBackgroundColor?: import("../src/types/general.types").BackgroundColor | undefined;
|
|
8340
|
+
omitBorder?: boolean | undefined;
|
|
8312
8341
|
onToggleDetails?: ((isOpen: boolean) => void) | undefined;
|
|
8313
8342
|
openByDefault?: never | undefined;
|
|
8314
8343
|
}> | undefined;
|
|
@@ -8606,6 +8635,7 @@ export declare const OpenByDefault: {
|
|
|
8606
8635
|
borderRadiusLeft?: keyof typeof import("../src").SIZES | undefined;
|
|
8607
8636
|
borderRadiusRight?: keyof typeof import("../src").SIZES | undefined;
|
|
8608
8637
|
hoverBackgroundColor?: import("../src/types/general.types").BackgroundColor | undefined;
|
|
8638
|
+
omitBorder?: boolean | undefined;
|
|
8609
8639
|
onToggleDetails?: ((isOpen: boolean) => void) | undefined;
|
|
8610
8640
|
openByDefault?: boolean | undefined;
|
|
8611
8641
|
} | {
|
|
@@ -8901,6 +8931,7 @@ export declare const OpenByDefault: {
|
|
|
8901
8931
|
borderRadiusLeft?: keyof typeof import("../src").SIZES | undefined;
|
|
8902
8932
|
borderRadiusRight?: keyof typeof import("../src").SIZES | undefined;
|
|
8903
8933
|
hoverBackgroundColor?: import("../src/types/general.types").BackgroundColor | undefined;
|
|
8934
|
+
omitBorder?: boolean | undefined;
|
|
8904
8935
|
onToggleDetails?: ((isOpen: boolean) => void) | undefined;
|
|
8905
8936
|
openByDefault?: never | undefined;
|
|
8906
8937
|
}, Partial<{
|
|
@@ -9196,6 +9227,7 @@ export declare const OpenByDefault: {
|
|
|
9196
9227
|
borderRadiusLeft?: keyof typeof import("../src").SIZES | undefined;
|
|
9197
9228
|
borderRadiusRight?: keyof typeof import("../src").SIZES | undefined;
|
|
9198
9229
|
hoverBackgroundColor?: import("../src/types/general.types").BackgroundColor | undefined;
|
|
9230
|
+
omitBorder?: boolean | undefined;
|
|
9199
9231
|
onToggleDetails?: ((isOpen: boolean) => void) | undefined;
|
|
9200
9232
|
openByDefault?: boolean | undefined;
|
|
9201
9233
|
} | {
|
|
@@ -9491,6 +9523,7 @@ export declare const OpenByDefault: {
|
|
|
9491
9523
|
borderRadiusLeft?: keyof typeof import("../src").SIZES | undefined;
|
|
9492
9524
|
borderRadiusRight?: keyof typeof import("../src").SIZES | undefined;
|
|
9493
9525
|
hoverBackgroundColor?: import("../src/types/general.types").BackgroundColor | undefined;
|
|
9526
|
+
omitBorder?: boolean | undefined;
|
|
9494
9527
|
onToggleDetails?: ((isOpen: boolean) => void) | undefined;
|
|
9495
9528
|
openByDefault?: never | undefined;
|
|
9496
9529
|
}>>, "story"> | undefined;
|
package/dist/web-ui-tailwind.css
CHANGED
|
@@ -32,6 +32,7 @@
|
|
|
32
32
|
--ui-color-blue-200: #bfdbfe;
|
|
33
33
|
--ui-color-blue-300: #93c5fd;
|
|
34
34
|
--ui-color-blue-400: #60a5fa;
|
|
35
|
+
--ui-color-blue-500: #3b82f6;
|
|
35
36
|
--ui-color-blue-700: #1d4ed8;
|
|
36
37
|
--ui-color-blue-800: #1e40af;
|
|
37
38
|
--ui-color-blue-900: #1e3a8a;
|
|
@@ -1796,6 +1797,9 @@ button, input:where([type='button'], [type='reset'], [type='submit']), ::file-se
|
|
|
1796
1797
|
.ui\:rounded-2xl {
|
|
1797
1798
|
border-radius: var(--ui-radius-2xl);
|
|
1798
1799
|
}
|
|
1800
|
+
.ui\:rounded-\[inherit\] {
|
|
1801
|
+
border-radius: inherit;
|
|
1802
|
+
}
|
|
1799
1803
|
.ui\:rounded-full {
|
|
1800
1804
|
border-radius: calc(infinity * 1px);
|
|
1801
1805
|
}
|
|
@@ -1934,6 +1938,10 @@ button, input:where([type='button'], [type='reset'], [type='submit']), ::file-se
|
|
|
1934
1938
|
border-style: var(--tw-border-style);
|
|
1935
1939
|
border-width: 1px;
|
|
1936
1940
|
}
|
|
1941
|
+
.ui\:border-0 {
|
|
1942
|
+
border-style: var(--tw-border-style);
|
|
1943
|
+
border-width: 0px;
|
|
1944
|
+
}
|
|
1937
1945
|
.ui\:border-2 {
|
|
1938
1946
|
border-style: var(--tw-border-style);
|
|
1939
1947
|
border-width: 2px;
|
|
@@ -3328,6 +3336,37 @@ button, input:where([type='button'], [type='reset'], [type='submit']), ::file-se
|
|
|
3328
3336
|
animation-duration: 300ms;
|
|
3329
3337
|
}
|
|
3330
3338
|
}
|
|
3339
|
+
.ui\:details-content\:h-0 {
|
|
3340
|
+
&::details-content {
|
|
3341
|
+
height: calc(var(--ui-spacing) * 0);
|
|
3342
|
+
}
|
|
3343
|
+
}
|
|
3344
|
+
.ui\:details-content\:overflow-clip {
|
|
3345
|
+
&::details-content {
|
|
3346
|
+
overflow: clip;
|
|
3347
|
+
}
|
|
3348
|
+
}
|
|
3349
|
+
.ui\:details-content\:opacity-0 {
|
|
3350
|
+
&::details-content {
|
|
3351
|
+
opacity: 0%;
|
|
3352
|
+
}
|
|
3353
|
+
}
|
|
3354
|
+
.ui\:details-content\:transition-discrete {
|
|
3355
|
+
&::details-content {
|
|
3356
|
+
transition-behavior: allow-discrete;
|
|
3357
|
+
}
|
|
3358
|
+
}
|
|
3359
|
+
.ui\:details-content\:duration-300 {
|
|
3360
|
+
&::details-content {
|
|
3361
|
+
--tw-duration: 300ms;
|
|
3362
|
+
transition-duration: 300ms;
|
|
3363
|
+
}
|
|
3364
|
+
}
|
|
3365
|
+
.ui\:details-content\:duration-300 {
|
|
3366
|
+
&::details-content {
|
|
3367
|
+
animation-duration: 300ms;
|
|
3368
|
+
}
|
|
3369
|
+
}
|
|
3331
3370
|
.ui\:before\:absolute {
|
|
3332
3371
|
&::before {
|
|
3333
3372
|
content: var(--tw-content);
|
|
@@ -3647,6 +3686,12 @@ button, input:where([type='button'], [type='reset'], [type='submit']), ::file-se
|
|
|
3647
3686
|
border-top-right-radius: var(--ui-radius-2xl);
|
|
3648
3687
|
}
|
|
3649
3688
|
}
|
|
3689
|
+
.ui\:first\:rounded-t-\[inherit\] {
|
|
3690
|
+
&:first-child {
|
|
3691
|
+
border-top-left-radius: inherit;
|
|
3692
|
+
border-top-right-radius: inherit;
|
|
3693
|
+
}
|
|
3694
|
+
}
|
|
3650
3695
|
.ui\:first\:rounded-l-xl {
|
|
3651
3696
|
&:first-child {
|
|
3652
3697
|
border-top-left-radius: var(--ui-radius-xl);
|
|
@@ -3681,6 +3726,12 @@ button, input:where([type='button'], [type='reset'], [type='submit']), ::file-se
|
|
|
3681
3726
|
border-bottom-left-radius: var(--ui-radius-2xl);
|
|
3682
3727
|
}
|
|
3683
3728
|
}
|
|
3729
|
+
.ui\:last\:rounded-b-\[inherit\] {
|
|
3730
|
+
&:last-child {
|
|
3731
|
+
border-bottom-right-radius: inherit;
|
|
3732
|
+
border-bottom-left-radius: inherit;
|
|
3733
|
+
}
|
|
3734
|
+
}
|
|
3684
3735
|
.ui\:last\:border-r {
|
|
3685
3736
|
&:last-child {
|
|
3686
3737
|
border-right-style: var(--tw-border-style);
|
|
@@ -3753,6 +3804,20 @@ button, input:where([type='button'], [type='reset'], [type='submit']), ::file-se
|
|
|
3753
3804
|
}
|
|
3754
3805
|
}
|
|
3755
3806
|
}
|
|
3807
|
+
.ui\:open\:details-content\:h-auto {
|
|
3808
|
+
&:is([open], :popover-open, :open) {
|
|
3809
|
+
&::details-content {
|
|
3810
|
+
height: auto;
|
|
3811
|
+
}
|
|
3812
|
+
}
|
|
3813
|
+
}
|
|
3814
|
+
.ui\:open\:details-content\:opacity-100 {
|
|
3815
|
+
&:is([open], :popover-open, :open) {
|
|
3816
|
+
&::details-content {
|
|
3817
|
+
opacity: 100%;
|
|
3818
|
+
}
|
|
3819
|
+
}
|
|
3820
|
+
}
|
|
3756
3821
|
.ui\:checked\:grid {
|
|
3757
3822
|
&:checked {
|
|
3758
3823
|
display: grid;
|
|
@@ -4371,6 +4436,21 @@ button, input:where([type='button'], [type='reset'], [type='submit']), ::file-se
|
|
|
4371
4436
|
}
|
|
4372
4437
|
}
|
|
4373
4438
|
}
|
|
4439
|
+
.ui\:motion-reduce\:details-content\:duration-\[0ms\] {
|
|
4440
|
+
@media (prefers-reduced-motion: reduce) {
|
|
4441
|
+
&::details-content {
|
|
4442
|
+
--tw-duration: 0ms;
|
|
4443
|
+
transition-duration: 0ms;
|
|
4444
|
+
}
|
|
4445
|
+
}
|
|
4446
|
+
}
|
|
4447
|
+
.ui\:motion-reduce\:details-content\:duration-\[0ms\] {
|
|
4448
|
+
@media (prefers-reduced-motion: reduce) {
|
|
4449
|
+
&::details-content {
|
|
4450
|
+
animation-duration: 0ms;
|
|
4451
|
+
}
|
|
4452
|
+
}
|
|
4453
|
+
}
|
|
4374
4454
|
.ui\:before\:motion-reduce\:duration-\[0ms\]\! {
|
|
4375
4455
|
&::before {
|
|
4376
4456
|
content: var(--tw-content);
|
|
@@ -4742,6 +4822,16 @@ button, input:where([type='button'], [type='reset'], [type='submit']), ::file-se
|
|
|
4742
4822
|
z-index: 3;
|
|
4743
4823
|
}
|
|
4744
4824
|
}
|
|
4825
|
+
.ui\:\[\&\:has\(summary\:focus\)\]\:border-blue-500 {
|
|
4826
|
+
&:has(summary:focus) {
|
|
4827
|
+
border-color: var(--ui-color-blue-500);
|
|
4828
|
+
}
|
|
4829
|
+
}
|
|
4830
|
+
.ui\:\[\&\:has\(summary\:hover\)\]\:border-blue-500 {
|
|
4831
|
+
&:has(summary:hover) {
|
|
4832
|
+
border-color: var(--ui-color-blue-500);
|
|
4833
|
+
}
|
|
4834
|
+
}
|
|
4745
4835
|
.ui\:\[\&\:not\(\:hover\)\]\:text-black {
|
|
4746
4836
|
&:not(:hover) {
|
|
4747
4837
|
color: var(--ui-color-black);
|
|
@@ -4899,6 +4989,9 @@ button, input:where([type='button'], [type='reset'], [type='submit']), ::file-se
|
|
|
4899
4989
|
border-top-width: 1px;
|
|
4900
4990
|
}
|
|
4901
4991
|
}
|
|
4992
|
+
:root {
|
|
4993
|
+
interpolate-size: allow-keywords;
|
|
4994
|
+
}
|
|
4902
4995
|
*, ::before, ::after {
|
|
4903
4996
|
border-style: solid;
|
|
4904
4997
|
border-color: #edf2f7;
|