@everlywell/ui-kit 1.7.0 → 1.7.2
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/index.js +4 -4
- package/index.mjs +386 -379
- package/lib/theme/actions/Input/Input.config.d.ts +5 -1
- package/lib/theme/actions/Select/Select.config.d.ts +2 -1
- package/lib/theme/index.d.ts +14 -4
- package/package.json +1 -1
|
@@ -4,6 +4,7 @@ declare const _default: {
|
|
|
4
4
|
':has(option[value=""]:checked)': {
|
|
5
5
|
color?: string | undefined;
|
|
6
6
|
};
|
|
7
|
+
':read-only': undefined;
|
|
7
8
|
WebkitAppearance: string;
|
|
8
9
|
MozAppearance: string;
|
|
9
10
|
fontWeight?: string | undefined;
|
|
@@ -21,7 +22,7 @@ declare const _default: {
|
|
|
21
22
|
borderColor: string;
|
|
22
23
|
outline: string;
|
|
23
24
|
} | undefined;
|
|
24
|
-
':disabled
|
|
25
|
+
':disabled'?: {
|
|
25
26
|
borderColor: string;
|
|
26
27
|
color: string;
|
|
27
28
|
} | undefined;
|
package/lib/theme/index.d.ts
CHANGED
|
@@ -706,6 +706,7 @@ export declare const theme: {
|
|
|
706
706
|
':has(option[value=""]:checked)': {
|
|
707
707
|
color?: string | undefined;
|
|
708
708
|
};
|
|
709
|
+
':read-only': undefined;
|
|
709
710
|
WebkitAppearance: string;
|
|
710
711
|
MozAppearance: string;
|
|
711
712
|
fontWeight?: string | undefined;
|
|
@@ -723,7 +724,7 @@ export declare const theme: {
|
|
|
723
724
|
borderColor: string;
|
|
724
725
|
outline: string;
|
|
725
726
|
} | undefined;
|
|
726
|
-
':disabled
|
|
727
|
+
':disabled'?: {
|
|
727
728
|
borderColor: string;
|
|
728
729
|
color: string;
|
|
729
730
|
} | undefined;
|
|
@@ -844,7 +845,11 @@ export declare const theme: {
|
|
|
844
845
|
borderColor: string;
|
|
845
846
|
outline: string;
|
|
846
847
|
};
|
|
847
|
-
':disabled
|
|
848
|
+
':disabled': {
|
|
849
|
+
borderColor: string;
|
|
850
|
+
color: string;
|
|
851
|
+
};
|
|
852
|
+
':read-only': {
|
|
848
853
|
borderColor: string;
|
|
849
854
|
color: string;
|
|
850
855
|
};
|
|
@@ -2662,6 +2667,7 @@ export declare const useTheme: () => import("@chakra-ui/styled-system").WithCSSV
|
|
|
2662
2667
|
':has(option[value=""]:checked)': {
|
|
2663
2668
|
color?: string | undefined;
|
|
2664
2669
|
};
|
|
2670
|
+
':read-only': undefined;
|
|
2665
2671
|
WebkitAppearance: string;
|
|
2666
2672
|
MozAppearance: string;
|
|
2667
2673
|
fontWeight?: string | undefined;
|
|
@@ -2679,7 +2685,7 @@ export declare const useTheme: () => import("@chakra-ui/styled-system").WithCSSV
|
|
|
2679
2685
|
borderColor: string;
|
|
2680
2686
|
outline: string;
|
|
2681
2687
|
} | undefined;
|
|
2682
|
-
':disabled
|
|
2688
|
+
':disabled'?: {
|
|
2683
2689
|
borderColor: string;
|
|
2684
2690
|
color: string;
|
|
2685
2691
|
} | undefined;
|
|
@@ -2800,7 +2806,11 @@ export declare const useTheme: () => import("@chakra-ui/styled-system").WithCSSV
|
|
|
2800
2806
|
borderColor: string;
|
|
2801
2807
|
outline: string;
|
|
2802
2808
|
};
|
|
2803
|
-
':disabled
|
|
2809
|
+
':disabled': {
|
|
2810
|
+
borderColor: string;
|
|
2811
|
+
color: string;
|
|
2812
|
+
};
|
|
2813
|
+
':read-only': {
|
|
2804
2814
|
borderColor: string;
|
|
2805
2815
|
color: string;
|
|
2806
2816
|
};
|