@salutejs/sdds-finai 0.323.0-canary.2392.20298160025.0 → 0.323.0-canary.2397.20370453452.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/styled-components/cjs/components/DatePicker/DatePicker.config.js +34 -14
- package/dist/styled-components/cjs/components/Range/Range.config.js +249 -98
- package/dist/styled-components/es/components/DatePicker/DatePicker.config.js +34 -14
- package/dist/styled-components/es/components/Range/Range.config.js +249 -98
- package/package.json +6 -6
- package/types/components/DatePicker/DatePicker.d.ts +19 -5
- package/types/components/InformationWrapper/InformationWrapper.d.ts +2 -0
- package/types/components/Range/Range.config.d.ts +9 -0
- package/types/components/Range/Range.d.ts +562 -3
|
@@ -95,29 +95,43 @@ export declare const DatePickerRange: import("react").FunctionComponent<import("
|
|
|
95
95
|
autoComplete?: string | undefined;
|
|
96
96
|
contentLeft?: React.ReactNode;
|
|
97
97
|
contentRight?: React.ReactNode;
|
|
98
|
+
appearance?: "default" | "clear" | undefined;
|
|
99
|
+
hintText?: string | undefined;
|
|
100
|
+
hintTrigger?: ("hover" | "click") | undefined;
|
|
101
|
+
hintTargetIcon?: React.ReactNode;
|
|
102
|
+
hintPlacement?: (import("@salutejs/plasma-new-hope/styled-components").Placement | Array<import("@salutejs/plasma-new-hope/styled-components").ComputedPlacement>) | undefined;
|
|
103
|
+
hintHasArrow?: boolean | undefined;
|
|
104
|
+
hintOffset?: [number, number] | undefined;
|
|
105
|
+
hintWidth?: string | undefined;
|
|
106
|
+
hintContentLeft?: React.ReactNode;
|
|
107
|
+
hintView?: string | undefined;
|
|
108
|
+
hintSize?: string | undefined;
|
|
109
|
+
titleCaption?: React.ReactNode;
|
|
98
110
|
leftHelper?: string | undefined;
|
|
99
|
-
requiredPlacement?: ("left" | "right") | undefined;
|
|
100
111
|
hasRequiredIndicator?: boolean | undefined;
|
|
112
|
+
hintTargetPlacement?: ("inner" | "outer") | undefined;
|
|
113
|
+
requiredIndicatorPlacement?: ("left" | "right") | undefined;
|
|
101
114
|
firstValueError?: boolean | undefined;
|
|
102
115
|
secondValueError?: boolean | undefined;
|
|
103
116
|
firstValueSuccess?: boolean | undefined;
|
|
104
117
|
secondValueSuccess?: boolean | undefined;
|
|
105
118
|
firstPlaceholder?: string | undefined;
|
|
106
119
|
secondPlaceholder?: string | undefined;
|
|
120
|
+
hasClearDivider?: boolean | undefined;
|
|
107
121
|
firstTextfieldContentLeft?: React.ReactElement | undefined;
|
|
108
122
|
firstTextfieldContentRight?: React.ReactElement | undefined;
|
|
109
123
|
secondTextfieldContentLeft?: React.ReactElement | undefined;
|
|
110
124
|
secondTextfieldContentRight?: React.ReactElement | undefined;
|
|
125
|
+
firstTextfieldTextBefore?: string | undefined;
|
|
126
|
+
secondTextfieldTextBefore?: string | undefined;
|
|
111
127
|
firstTextfieldTextAfter?: string | undefined;
|
|
112
128
|
secondTextfieldTextAfter?: string | undefined;
|
|
129
|
+
dividerVariant?: "none" | "icon" | "dash" | undefined;
|
|
130
|
+
dividerIcon?: React.ReactNode;
|
|
113
131
|
onFocusFirstTextfield?: ((event: import("react").FocusEvent<HTMLInputElement>) => void) | undefined;
|
|
114
132
|
onFocusSecondTextfield?: ((event: import("react").FocusEvent<HTMLInputElement>) => void) | undefined;
|
|
115
133
|
onBlurFirstTextfield?: ((event: import("react").FocusEvent<HTMLInputElement>) => void) | undefined;
|
|
116
134
|
onBlurSecondTextfield?: ((event: import("react").FocusEvent<HTMLInputElement>) => void) | undefined;
|
|
117
|
-
firstTextfieldTextBefore?: string | undefined;
|
|
118
|
-
secondTextfieldTextBefore?: string | undefined;
|
|
119
|
-
dividerVariant?: "none" | "icon" | "dash" | undefined;
|
|
120
|
-
dividerIcon?: React.ReactNode;
|
|
121
135
|
} & import("@salutejs/plasma-new-hope/types/components/DatePicker/DatePickerBase.types.js").DatePickerCalendarProps & Omit<import("@salutejs/plasma-new-hope/types/components/DatePicker/SingleDate/SingleDate.types.js").DatePickerPopoverProps, "placement"> & {
|
|
122
136
|
placement?: import("@salutejs/plasma-new-hope/styled-components").DatePickerRangePlacement | Array<import("@salutejs/plasma-new-hope/types/components/DatePicker/RangeDate/RangeDate.types.js").DatePickerRangePlacementBasic>;
|
|
123
137
|
isDoubleCalendar?: boolean;
|
|
@@ -33,6 +33,7 @@ export declare const InformationWrapper: import("react").FunctionComponent<impor
|
|
|
33
33
|
size?: string;
|
|
34
34
|
view?: string;
|
|
35
35
|
disabled?: boolean;
|
|
36
|
+
readOnly?: boolean;
|
|
36
37
|
} & {
|
|
37
38
|
hintText: string;
|
|
38
39
|
hintTrigger?: "hover" | "click";
|
|
@@ -59,6 +60,7 @@ export declare const InformationWrapper: import("react").FunctionComponent<impor
|
|
|
59
60
|
size?: string;
|
|
60
61
|
view?: string;
|
|
61
62
|
disabled?: boolean;
|
|
63
|
+
readOnly?: boolean;
|
|
62
64
|
} & {
|
|
63
65
|
hintText?: never;
|
|
64
66
|
hintOpened?: never;
|
|
@@ -2,6 +2,8 @@ export declare const config: {
|
|
|
2
2
|
defaults: {
|
|
3
3
|
view: string;
|
|
4
4
|
size: string;
|
|
5
|
+
hintView: string;
|
|
6
|
+
hintSize: string;
|
|
5
7
|
};
|
|
6
8
|
variations: {
|
|
7
9
|
view: {
|
|
@@ -14,6 +16,13 @@ export declare const config: {
|
|
|
14
16
|
s: import("@salutejs/plasma-new-hope/types/engines/types.js").PolymorphicClassName;
|
|
15
17
|
xs: import("@salutejs/plasma-new-hope/types/engines/types.js").PolymorphicClassName;
|
|
16
18
|
};
|
|
19
|
+
hintView: {
|
|
20
|
+
default: import("@salutejs/plasma-new-hope/types/engines/types.js").PolymorphicClassName;
|
|
21
|
+
};
|
|
22
|
+
hintSize: {
|
|
23
|
+
m: import("@salutejs/plasma-new-hope/types/engines/types.js").PolymorphicClassName;
|
|
24
|
+
s: import("@salutejs/plasma-new-hope/types/engines/types.js").PolymorphicClassName;
|
|
25
|
+
};
|
|
17
26
|
disabled: {
|
|
18
27
|
true: import("@salutejs/plasma-new-hope/types/engines/types.js").PolymorphicClassName;
|
|
19
28
|
};
|