@everlywell/ui-kit 1.38.0 → 1.39.1-test01
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.d.mts +1 -0
- package/index.d.ts +1 -0
- package/index.js +5 -5
- package/index.mjs +576 -538
- package/lib/theme/actions/Textarea/Textarea.config.d.ts +41 -0
- package/lib/theme/actions/Textarea/Textarea.d.ts +3 -0
- package/lib/theme/index.d.ts +80 -0
- package/package.json +1 -1
|
@@ -0,0 +1,41 @@
|
|
|
1
|
+
declare const Textarea: {
|
|
2
|
+
baseStyle?: {
|
|
3
|
+
fontWeight: string;
|
|
4
|
+
fontSize: ("md" | "lg")[];
|
|
5
|
+
bg: string;
|
|
6
|
+
color: string;
|
|
7
|
+
px: number;
|
|
8
|
+
py: number;
|
|
9
|
+
borderStyle: string;
|
|
10
|
+
borderWidth: string;
|
|
11
|
+
borderColor: string;
|
|
12
|
+
borderRadius: string;
|
|
13
|
+
w: string;
|
|
14
|
+
':focus, &.focus': {
|
|
15
|
+
borderColor: string;
|
|
16
|
+
outline: string;
|
|
17
|
+
};
|
|
18
|
+
':disabled': {
|
|
19
|
+
borderColor: string;
|
|
20
|
+
color: string;
|
|
21
|
+
};
|
|
22
|
+
':read-only': {
|
|
23
|
+
borderColor: string;
|
|
24
|
+
color: string;
|
|
25
|
+
};
|
|
26
|
+
_placeholder: {
|
|
27
|
+
color: string;
|
|
28
|
+
};
|
|
29
|
+
_invalid: {
|
|
30
|
+
borderColor: string;
|
|
31
|
+
};
|
|
32
|
+
} | undefined;
|
|
33
|
+
sizes?: {} | undefined;
|
|
34
|
+
variants?: {} | undefined;
|
|
35
|
+
defaultProps?: {
|
|
36
|
+
size?: undefined;
|
|
37
|
+
variant?: undefined;
|
|
38
|
+
colorScheme?: string | undefined;
|
|
39
|
+
} | undefined;
|
|
40
|
+
};
|
|
41
|
+
export default Textarea;
|
package/lib/theme/index.d.ts
CHANGED
|
@@ -770,6 +770,46 @@ export declare const theme: {
|
|
|
770
770
|
} | undefined;
|
|
771
771
|
parts: ("icon" | "field")[];
|
|
772
772
|
};
|
|
773
|
+
Textarea: {
|
|
774
|
+
baseStyle?: {
|
|
775
|
+
fontWeight: string;
|
|
776
|
+
fontSize: ("md" | "lg")[];
|
|
777
|
+
bg: string;
|
|
778
|
+
color: string;
|
|
779
|
+
px: number;
|
|
780
|
+
py: number;
|
|
781
|
+
borderStyle: string;
|
|
782
|
+
borderWidth: string;
|
|
783
|
+
borderColor: string;
|
|
784
|
+
borderRadius: string;
|
|
785
|
+
w: string;
|
|
786
|
+
':focus, &.focus': {
|
|
787
|
+
borderColor: string;
|
|
788
|
+
outline: string;
|
|
789
|
+
};
|
|
790
|
+
':disabled': {
|
|
791
|
+
borderColor: string;
|
|
792
|
+
color: string;
|
|
793
|
+
};
|
|
794
|
+
':read-only': {
|
|
795
|
+
borderColor: string;
|
|
796
|
+
color: string;
|
|
797
|
+
};
|
|
798
|
+
_placeholder: {
|
|
799
|
+
color: string;
|
|
800
|
+
};
|
|
801
|
+
_invalid: {
|
|
802
|
+
borderColor: string;
|
|
803
|
+
};
|
|
804
|
+
} | undefined;
|
|
805
|
+
sizes?: {} | undefined;
|
|
806
|
+
variants?: {} | undefined;
|
|
807
|
+
defaultProps?: {
|
|
808
|
+
size?: undefined;
|
|
809
|
+
variant?: undefined;
|
|
810
|
+
colorScheme?: string | undefined;
|
|
811
|
+
} | undefined;
|
|
812
|
+
};
|
|
773
813
|
Heading: {
|
|
774
814
|
baseStyle?: {
|
|
775
815
|
fontFamily: string;
|
|
@@ -2752,6 +2792,46 @@ export declare const useTheme: () => import("@chakra-ui/styled-system").WithCSSV
|
|
|
2752
2792
|
} | undefined;
|
|
2753
2793
|
parts: ("icon" | "field")[];
|
|
2754
2794
|
};
|
|
2795
|
+
Textarea: {
|
|
2796
|
+
baseStyle?: {
|
|
2797
|
+
fontWeight: string;
|
|
2798
|
+
fontSize: ("md" | "lg")[];
|
|
2799
|
+
bg: string;
|
|
2800
|
+
color: string;
|
|
2801
|
+
px: number;
|
|
2802
|
+
py: number;
|
|
2803
|
+
borderStyle: string;
|
|
2804
|
+
borderWidth: string;
|
|
2805
|
+
borderColor: string;
|
|
2806
|
+
borderRadius: string;
|
|
2807
|
+
w: string;
|
|
2808
|
+
':focus, &.focus': {
|
|
2809
|
+
borderColor: string;
|
|
2810
|
+
outline: string;
|
|
2811
|
+
};
|
|
2812
|
+
':disabled': {
|
|
2813
|
+
borderColor: string;
|
|
2814
|
+
color: string;
|
|
2815
|
+
};
|
|
2816
|
+
':read-only': {
|
|
2817
|
+
borderColor: string;
|
|
2818
|
+
color: string;
|
|
2819
|
+
};
|
|
2820
|
+
_placeholder: {
|
|
2821
|
+
color: string;
|
|
2822
|
+
};
|
|
2823
|
+
_invalid: {
|
|
2824
|
+
borderColor: string;
|
|
2825
|
+
};
|
|
2826
|
+
} | undefined;
|
|
2827
|
+
sizes?: {} | undefined;
|
|
2828
|
+
variants?: {} | undefined;
|
|
2829
|
+
defaultProps?: {
|
|
2830
|
+
size?: undefined;
|
|
2831
|
+
variant?: undefined;
|
|
2832
|
+
colorScheme?: string | undefined;
|
|
2833
|
+
} | undefined;
|
|
2834
|
+
};
|
|
2755
2835
|
Heading: {
|
|
2756
2836
|
baseStyle?: {
|
|
2757
2837
|
fontFamily: string;
|