@salutejs/sdds-dfa 0.177.1-canary.1577.11970384401.0 → 0.178.0-canary.1556.11973013493.0
Sign up to get free protection for your applications and to get access to all the features.
- package/api/sdds-dfa.api.md +3871 -2568
- package/components/Autocomplete/Autocomplete.d.ts +5 -557
- package/components/Combobox/Combobox.d.ts +501 -45
- package/components/DatePicker/DatePicker.d.ts +47 -1
- package/components/Mask/Mask.d.ts +1238 -70
- package/components/Select/Select.d.ts +282 -20
- package/components/TextField/TextField.d.ts +709 -69
- package/package.json +3 -3
- package/temp/sdds-dfa.api.md +3871 -2568
@@ -15,7 +15,53 @@ export declare const DatePicker: import("react").FunctionComponent<import("@salu
|
|
15
15
|
readOnly: {
|
16
16
|
true: import("@salutejs/plasma-new-hope/types/engines/types").PolymorphicClassName;
|
17
17
|
};
|
18
|
-
}> &
|
18
|
+
}> & ((import("@salutejs/plasma-new-hope/types/components/DatePicker/DatePickerBase.types").DatePickerVariationProps & {
|
19
|
+
defaultDate?: Date | undefined;
|
20
|
+
placeholder?: string | undefined;
|
21
|
+
name?: string | undefined;
|
22
|
+
valueError?: boolean | undefined;
|
23
|
+
valueSuccess?: boolean | undefined;
|
24
|
+
leftHelper?: string | undefined;
|
25
|
+
contentLeft?: import("react").ReactElement<any, string | import("react").JSXElementConstructor<any>> | undefined;
|
26
|
+
contentRight?: import("react").ReactElement<any, string | import("react").JSXElementConstructor<any>> | undefined;
|
27
|
+
textBefore?: string | undefined;
|
28
|
+
textAfter?: string | undefined;
|
29
|
+
onCommitDate?: ((value: string | Date, error?: boolean | undefined, success?: boolean | undefined, dateInfo?: import("@salutejs/plasma-new-hope/types/components/Calendar/Calendar.types").DateInfo | undefined) => void) | undefined;
|
30
|
+
onChangeValue?: ((event: import("react").SyntheticEvent<HTMLInputElement, Event> | null, value?: string | undefined) => void) | undefined;
|
31
|
+
onChange?: ((event: {
|
32
|
+
target: {
|
33
|
+
value?: string | undefined;
|
34
|
+
name?: string | undefined;
|
35
|
+
};
|
36
|
+
}) => void) | undefined;
|
37
|
+
} & {
|
38
|
+
label?: string | undefined;
|
39
|
+
labelPlacement: "inner";
|
40
|
+
hasPlaceholder?: boolean | undefined;
|
41
|
+
} & import("@salutejs/plasma-new-hope/types/components/DatePicker/DatePickerBase.types").DatePickerCalendarProps & import("@salutejs/plasma-new-hope/types/components/DatePicker/SingleDate/SingleDate.types").DatePickerPopoverProps & Omit<import("react").HTMLAttributes<HTMLDivElement>, "defaultValue"> & import("react").RefAttributes<HTMLInputElement>) | (import("@salutejs/plasma-new-hope/types/components/DatePicker/DatePickerBase.types").DatePickerVariationProps & {
|
42
|
+
defaultDate?: Date | undefined;
|
43
|
+
placeholder?: string | undefined;
|
44
|
+
name?: string | undefined;
|
45
|
+
valueError?: boolean | undefined;
|
46
|
+
valueSuccess?: boolean | undefined;
|
47
|
+
leftHelper?: string | undefined;
|
48
|
+
contentLeft?: import("react").ReactElement<any, string | import("react").JSXElementConstructor<any>> | undefined;
|
49
|
+
contentRight?: import("react").ReactElement<any, string | import("react").JSXElementConstructor<any>> | undefined;
|
50
|
+
textBefore?: string | undefined;
|
51
|
+
textAfter?: string | undefined;
|
52
|
+
onCommitDate?: ((value: string | Date, error?: boolean | undefined, success?: boolean | undefined, dateInfo?: import("@salutejs/plasma-new-hope/types/components/Calendar/Calendar.types").DateInfo | undefined) => void) | undefined;
|
53
|
+
onChangeValue?: ((event: import("react").SyntheticEvent<HTMLInputElement, Event> | null, value?: string | undefined) => void) | undefined;
|
54
|
+
onChange?: ((event: {
|
55
|
+
target: {
|
56
|
+
value?: string | undefined;
|
57
|
+
name?: string | undefined;
|
58
|
+
};
|
59
|
+
}) => void) | undefined;
|
60
|
+
} & {
|
61
|
+
label?: string | undefined;
|
62
|
+
labelPlacement?: "outer" | undefined;
|
63
|
+
hasPlaceholder?: undefined;
|
64
|
+
} & import("@salutejs/plasma-new-hope/types/components/DatePicker/DatePickerBase.types").DatePickerCalendarProps & import("@salutejs/plasma-new-hope/types/components/DatePicker/SingleDate/SingleDate.types").DatePickerPopoverProps & Omit<import("react").HTMLAttributes<HTMLDivElement>, "defaultValue"> & import("react").RefAttributes<HTMLInputElement>))>;
|
19
65
|
export declare const DatePickerRange: import("react").FunctionComponent<import("@salutejs/plasma-new-hope/types/engines/types").PropsType<{
|
20
66
|
view: {
|
21
67
|
default: import("@salutejs/plasma-new-hope/types/engines/types").PolymorphicClassName;
|