@croquiscom/pds 6.5.0 → 6.5.1
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/CHANGELOG.md
CHANGED
|
@@ -7,6 +7,7 @@ export declare const caption_text_button_css: import("@emotion/utils").Serialize
|
|
|
7
7
|
export declare const caption_arrow_button_css: import("@emotion/utils").SerializedStyles;
|
|
8
8
|
export declare const range_input_default_style: CSSProperties;
|
|
9
9
|
export declare const range_picker_focus_style: import("@emotion/utils").SerializedStyles;
|
|
10
|
+
export declare const date_picker_input_entered_disabled_style: import("@emotion/utils").SerializedStyles;
|
|
10
11
|
export declare const range_input_disabled_style: import("@emotion/utils").SerializedStyles;
|
|
11
12
|
export declare const year_month_select_panel_css: import("@emotion/utils").SerializedStyles;
|
|
12
13
|
export declare const getRangeFocusInputStyle: (size: InputSize) => import("@emotion/utils").SerializedStyles;
|
|
@@ -24,12 +24,17 @@ export declare const input_focus_style: {
|
|
|
24
24
|
export declare const input_disabled_style: {
|
|
25
25
|
backgroundColor: string;
|
|
26
26
|
border: string;
|
|
27
|
+
'-webkit-text-fill-color': string;
|
|
27
28
|
color: string;
|
|
28
29
|
opacity: number;
|
|
29
30
|
'&:focus, &:hover, &:focus-within': {
|
|
30
31
|
border: string;
|
|
31
32
|
};
|
|
32
33
|
};
|
|
34
|
+
export declare const input_entered_disabled_style: {
|
|
35
|
+
color: string;
|
|
36
|
+
'-webkit-text-fill-color': string;
|
|
37
|
+
};
|
|
33
38
|
export declare const getInputPaddingBySize: (size: InputSize) => string;
|
|
34
39
|
export declare const getInputSpacingBySize: (size: InputSize) => 4 | 8;
|
|
35
40
|
export declare const getInputHeightBySize: (size: InputSize) => number;
|