@salutejs/sdds-cs 0.320.0-canary.2047.15880698675.0 → 0.320.0-canary.2047.15976223953.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/CHANGELOG.md +56 -0
- package/components/Attach/Attach.d.ts +8 -8
- package/components/Autocomplete/Autocomplete.d.ts +8 -8
- package/components/Button/Button.d.ts +4 -4
- package/components/Combobox/Combobox.d.ts +24 -24
- package/components/DatePicker/DatePicker.d.ts +3 -3
- package/components/Dropdown/Dropdown.d.ts +2 -2
- package/components/IconButton/IconButton.d.ts +2 -2
- package/components/Mask/Mask.d.ts +11 -8
- package/components/NumberInput/NumberInput.d.ts +2 -2
- package/components/Radiobox/Radiobox.d.ts +28 -2
- package/components/Select/Select.d.ts +6 -6
- package/components/TextField/TextField.d.ts +8 -8
- package/components/Tokens/Colors/Colors.styles.d.ts +1 -1
- package/components/Tokens/Typography/Typography.styles.d.ts +1 -1
- package/components/Tour/Tour.config.d.ts +14 -0
- package/components/Tour/Tour.config.js +56 -0
- package/components/Tour/Tour.d.ts +8 -0
- package/components/Tour/Tour.js +14 -0
- package/components/Tour/index.d.ts +2 -0
- package/components/Tour/index.js +11 -0
- package/emotion/cjs/components/Tour/Tour.config.js +56 -0
- package/emotion/cjs/components/Tour/Tour.js +14 -0
- package/emotion/cjs/components/Tour/index.js +11 -0
- package/emotion/cjs/index.js +2 -0
- package/emotion/es/components/Mask/Mask.js +3 -1
- package/emotion/es/components/Tour/Tour.config.js +46 -0
- package/emotion/es/components/Tour/Tour.js +4 -0
- package/emotion/es/components/Tour/index.js +1 -0
- package/emotion/es/index.js +2 -0
- package/es/components/Mask/Mask.js +3 -1
- package/es/components/Tour/Tour.config.js +46 -0
- package/es/components/Tour/Tour.js +4 -0
- package/es/components/Tour/index.js +1 -0
- package/es/index.js +2 -0
- package/index.d.ts +2 -0
- package/index.js +2 -0
- package/package.json +8 -8
package/CHANGELOG.md
CHANGED
@@ -1,3 +1,59 @@
|
|
1
|
+
## 0.319.0 (26 июня 2025)
|
2
|
+
|
3
|
+
## Функциональные изменения в компонентах
|
4
|
+
|
5
|
+
### Tree
|
6
|
+
|
7
|
+
* исправлен баг, из-за которого в некоторых случаях не отображался цвет выделенного элемента;
|
8
|
+
|
9
|
+
[PR](https://github.com/salute-developers/plasma/pull/2038)
|
10
|
+
|
11
|
+
### Combobox
|
12
|
+
|
13
|
+
* исправлен баг, из-за которого label в таргете не обновлялся при обновлении списка `items`;
|
14
|
+
|
15
|
+
[PR](https://github.com/salute-developers/plasma/pull/2043)
|
16
|
+
|
17
|
+
### Calendar
|
18
|
+
|
19
|
+
* исправлен функционал по формированию ref на элементы календарной сетки
|
20
|
+
* добавлена возможность динамически менять `type`
|
21
|
+
|
22
|
+
**Before**:
|
23
|
+
|
24
|
+
https://github.com/user-attachments/assets/45c7c426-6d31-4fb9-bc5f-b20a2f8a4105
|
25
|
+
|
26
|
+
**After**:
|
27
|
+
|
28
|
+
https://github.com/user-attachments/assets/8a13d0ec-8d8a-4764-8305-7a3dc33887d2
|
29
|
+
|
30
|
+
[PR](https://github.com/salute-developers/plasma/pull/2024)
|
31
|
+
|
32
|
+
### Popup, Modal, Drawer
|
33
|
+
|
34
|
+
* массив элементов контекста Popup заменен на Map
|
35
|
+
|
36
|
+
* исправлен импорт safeUseId
|
37
|
+
|
38
|
+
[PR](https://github.com/salute-developers/plasma/pull/2022)
|
39
|
+
|
40
|
+
### Carousel
|
41
|
+
|
42
|
+
* появилась возможно настраивать отступ между слайдами через пропс `gap`;
|
43
|
+
|
44
|
+
* незначительные исправления и улучшения;
|
45
|
+
|
46
|
+
[PR](https://github.com/salute-developers/plasma/pull/2018)
|
47
|
+
|
48
|
+
### CodeInput
|
49
|
+
|
50
|
+
* добавлен новый компонент
|
51
|
+
|
52
|
+
<img width="764" src="https://github.com/user-attachments/assets/aaf5c046-9229-475f-aa5d-312533d5d5f6" />
|
53
|
+
|
54
|
+
[PR](https://github.com/salute-developers/plasma/pull/1973)
|
55
|
+
|
56
|
+
|
1
57
|
## 0.318.0 (11 июня 2025)
|
2
58
|
|
3
59
|
## Функциональные изменения в компонентах
|
@@ -21,7 +21,7 @@ export declare const Attach: import("react").FunctionComponent<import("@salutejs
|
|
21
21
|
isLoading?: boolean;
|
22
22
|
loader?: import("react").ReactNode;
|
23
23
|
stretch?: boolean;
|
24
|
-
stretching?: "
|
24
|
+
stretching?: "auto" | "filled" | "fixed";
|
25
25
|
square?: boolean;
|
26
26
|
focused?: boolean;
|
27
27
|
disabled?: boolean;
|
@@ -44,7 +44,7 @@ export declare const Attach: import("react").FunctionComponent<import("@salutejs
|
|
44
44
|
isLoading?: boolean;
|
45
45
|
loader?: import("react").ReactNode;
|
46
46
|
stretch?: boolean;
|
47
|
-
stretching?: "
|
47
|
+
stretching?: "auto" | "filled" | "fixed";
|
48
48
|
square?: boolean;
|
49
49
|
focused?: boolean;
|
50
50
|
disabled?: boolean;
|
@@ -70,7 +70,7 @@ export declare const Attach: import("react").FunctionComponent<import("@salutejs
|
|
70
70
|
isLoading?: boolean;
|
71
71
|
loader?: import("react").ReactNode;
|
72
72
|
stretch?: boolean;
|
73
|
-
stretching?: "
|
73
|
+
stretching?: "auto" | "filled" | "fixed";
|
74
74
|
square?: boolean;
|
75
75
|
focused?: boolean;
|
76
76
|
disabled?: boolean;
|
@@ -94,7 +94,7 @@ export declare const Attach: import("react").FunctionComponent<import("@salutejs
|
|
94
94
|
isLoading?: boolean;
|
95
95
|
loader?: import("react").ReactNode;
|
96
96
|
stretch?: boolean;
|
97
|
-
stretching?: "
|
97
|
+
stretching?: "auto" | "filled" | "fixed";
|
98
98
|
square?: boolean;
|
99
99
|
focused?: boolean;
|
100
100
|
disabled?: boolean;
|
@@ -121,7 +121,7 @@ export declare const Attach: import("react").FunctionComponent<import("@salutejs
|
|
121
121
|
isLoading?: boolean;
|
122
122
|
loader?: import("react").ReactNode;
|
123
123
|
stretch?: boolean;
|
124
|
-
stretching?: "
|
124
|
+
stretching?: "auto" | "filled" | "fixed";
|
125
125
|
square?: boolean;
|
126
126
|
focused?: boolean;
|
127
127
|
disabled?: boolean;
|
@@ -147,7 +147,7 @@ export declare const Attach: import("react").FunctionComponent<import("@salutejs
|
|
147
147
|
isLoading?: boolean;
|
148
148
|
loader?: import("react").ReactNode;
|
149
149
|
stretch?: boolean;
|
150
|
-
stretching?: "
|
150
|
+
stretching?: "auto" | "filled" | "fixed";
|
151
151
|
square?: boolean;
|
152
152
|
focused?: boolean;
|
153
153
|
disabled?: boolean;
|
@@ -170,7 +170,7 @@ export declare const Attach: import("react").FunctionComponent<import("@salutejs
|
|
170
170
|
isLoading?: boolean;
|
171
171
|
loader?: import("react").ReactNode;
|
172
172
|
stretch?: boolean;
|
173
|
-
stretching?: "
|
173
|
+
stretching?: "auto" | "filled" | "fixed";
|
174
174
|
square?: boolean;
|
175
175
|
focused?: boolean;
|
176
176
|
disabled?: boolean;
|
@@ -197,7 +197,7 @@ export declare const Attach: import("react").FunctionComponent<import("@salutejs
|
|
197
197
|
isLoading?: boolean;
|
198
198
|
loader?: import("react").ReactNode;
|
199
199
|
stretch?: boolean;
|
200
|
-
stretching?: "
|
200
|
+
stretching?: "auto" | "filled" | "fixed";
|
201
201
|
square?: boolean;
|
202
202
|
focused?: boolean;
|
203
203
|
disabled?: boolean;
|
@@ -69,7 +69,7 @@ export declare const Autocomplete: import("react").FunctionComponent<import("@sa
|
|
69
69
|
chipType?: never;
|
70
70
|
chipView?: never;
|
71
71
|
chipValidator?: never;
|
72
|
-
}, "labelPlacement" | "chips" | "onChangeChips" | "enumerationType" | "chipType" | "chipView" | "chipValidator"> & Omit<import("react").InputHTMLAttributes<HTMLInputElement>, "
|
72
|
+
}, "labelPlacement" | "chips" | "onChangeChips" | "enumerationType" | "chipType" | "chipView" | "chipValidator"> & Omit<import("react").InputHTMLAttributes<HTMLInputElement>, "size" | "required"> & import("react").RefAttributes<HTMLInputElement>) | ({
|
73
73
|
size?: string;
|
74
74
|
view?: string;
|
75
75
|
labelPlacement?: string;
|
@@ -124,7 +124,7 @@ export declare const Autocomplete: import("react").FunctionComponent<import("@sa
|
|
124
124
|
chipValidator?: (value: string) => {
|
125
125
|
view?: string;
|
126
126
|
};
|
127
|
-
}, "labelPlacement" | "chips" | "onChangeChips" | "enumerationType" | "chipType" | "chipView" | "chipValidator"> & Omit<import("react").InputHTMLAttributes<HTMLInputElement>, "
|
127
|
+
}, "labelPlacement" | "chips" | "onChangeChips" | "enumerationType" | "chipType" | "chipView" | "chipValidator"> & Omit<import("react").InputHTMLAttributes<HTMLInputElement>, "size" | "required"> & import("react").RefAttributes<HTMLInputElement>) | ({
|
128
128
|
size?: string;
|
129
129
|
view?: string;
|
130
130
|
labelPlacement?: string;
|
@@ -177,7 +177,7 @@ export declare const Autocomplete: import("react").FunctionComponent<import("@sa
|
|
177
177
|
chipType?: never;
|
178
178
|
chipView?: never;
|
179
179
|
chipValidator?: never;
|
180
|
-
}, "labelPlacement" | "chips" | "onChangeChips" | "enumerationType" | "chipType" | "chipView" | "chipValidator"> & Omit<import("react").InputHTMLAttributes<HTMLInputElement>, "
|
180
|
+
}, "labelPlacement" | "chips" | "onChangeChips" | "enumerationType" | "chipType" | "chipView" | "chipValidator"> & Omit<import("react").InputHTMLAttributes<HTMLInputElement>, "size" | "required"> & import("react").RefAttributes<HTMLInputElement>) | ({
|
181
181
|
size?: string;
|
182
182
|
view?: string;
|
183
183
|
labelPlacement?: string;
|
@@ -232,7 +232,7 @@ export declare const Autocomplete: import("react").FunctionComponent<import("@sa
|
|
232
232
|
chipValidator?: (value: string) => {
|
233
233
|
view?: string;
|
234
234
|
};
|
235
|
-
}, "labelPlacement" | "chips" | "onChangeChips" | "enumerationType" | "chipType" | "chipView" | "chipValidator"> & Omit<import("react").InputHTMLAttributes<HTMLInputElement>, "
|
235
|
+
}, "labelPlacement" | "chips" | "onChangeChips" | "enumerationType" | "chipType" | "chipView" | "chipValidator"> & Omit<import("react").InputHTMLAttributes<HTMLInputElement>, "size" | "required"> & import("react").RefAttributes<HTMLInputElement>) | ({
|
236
236
|
size?: string;
|
237
237
|
view?: string;
|
238
238
|
labelPlacement?: string;
|
@@ -285,7 +285,7 @@ export declare const Autocomplete: import("react").FunctionComponent<import("@sa
|
|
285
285
|
chipType?: never;
|
286
286
|
chipView?: never;
|
287
287
|
chipValidator?: never;
|
288
|
-
}, "labelPlacement" | "chips" | "onChangeChips" | "enumerationType" | "chipType" | "chipView" | "chipValidator"> & Omit<import("react").InputHTMLAttributes<HTMLInputElement>, "
|
288
|
+
}, "labelPlacement" | "chips" | "onChangeChips" | "enumerationType" | "chipType" | "chipView" | "chipValidator"> & Omit<import("react").InputHTMLAttributes<HTMLInputElement>, "size" | "required"> & import("react").RefAttributes<HTMLInputElement>) | ({
|
289
289
|
size?: string;
|
290
290
|
view?: string;
|
291
291
|
labelPlacement?: string;
|
@@ -340,7 +340,7 @@ export declare const Autocomplete: import("react").FunctionComponent<import("@sa
|
|
340
340
|
chipValidator?: (value: string) => {
|
341
341
|
view?: string;
|
342
342
|
};
|
343
|
-
}, "labelPlacement" | "chips" | "onChangeChips" | "enumerationType" | "chipType" | "chipView" | "chipValidator"> & Omit<import("react").InputHTMLAttributes<HTMLInputElement>, "
|
343
|
+
}, "labelPlacement" | "chips" | "onChangeChips" | "enumerationType" | "chipType" | "chipView" | "chipValidator"> & Omit<import("react").InputHTMLAttributes<HTMLInputElement>, "size" | "required"> & import("react").RefAttributes<HTMLInputElement>) | ({
|
344
344
|
size?: string;
|
345
345
|
view?: string;
|
346
346
|
labelPlacement?: string;
|
@@ -393,7 +393,7 @@ export declare const Autocomplete: import("react").FunctionComponent<import("@sa
|
|
393
393
|
chipType?: never;
|
394
394
|
chipView?: never;
|
395
395
|
chipValidator?: never;
|
396
|
-
}, "labelPlacement" | "chips" | "onChangeChips" | "enumerationType" | "chipType" | "chipView" | "chipValidator"> & Omit<import("react").InputHTMLAttributes<HTMLInputElement>, "
|
396
|
+
}, "labelPlacement" | "chips" | "onChangeChips" | "enumerationType" | "chipType" | "chipView" | "chipValidator"> & Omit<import("react").InputHTMLAttributes<HTMLInputElement>, "size" | "required"> & import("react").RefAttributes<HTMLInputElement>) | ({
|
397
397
|
size?: string;
|
398
398
|
view?: string;
|
399
399
|
labelPlacement?: string;
|
@@ -448,4 +448,4 @@ export declare const Autocomplete: import("react").FunctionComponent<import("@sa
|
|
448
448
|
chipValidator?: (value: string) => {
|
449
449
|
view?: string;
|
450
450
|
};
|
451
|
-
}, "labelPlacement" | "chips" | "onChangeChips" | "enumerationType" | "chipType" | "chipView" | "chipValidator"> & Omit<import("react").InputHTMLAttributes<HTMLInputElement>, "
|
451
|
+
}, "labelPlacement" | "chips" | "onChangeChips" | "enumerationType" | "chipType" | "chipView" | "chipValidator"> & Omit<import("react").InputHTMLAttributes<HTMLInputElement>, "size" | "required"> & import("react").RefAttributes<HTMLInputElement>))>;
|
@@ -24,7 +24,7 @@ declare const ButtonComponent: React.FunctionComponent<import("@salutejs/plasma-
|
|
24
24
|
isLoading?: boolean;
|
25
25
|
loader?: React.ReactNode;
|
26
26
|
stretch?: boolean;
|
27
|
-
stretching?: "
|
27
|
+
stretching?: "auto" | "filled" | "fixed";
|
28
28
|
square?: boolean;
|
29
29
|
focused?: boolean;
|
30
30
|
disabled?: boolean;
|
@@ -45,7 +45,7 @@ declare const ButtonComponent: React.FunctionComponent<import("@salutejs/plasma-
|
|
45
45
|
isLoading?: boolean;
|
46
46
|
loader?: React.ReactNode;
|
47
47
|
stretch?: boolean;
|
48
|
-
stretching?: "
|
48
|
+
stretching?: "auto" | "filled" | "fixed";
|
49
49
|
square?: boolean;
|
50
50
|
focused?: boolean;
|
51
51
|
disabled?: boolean;
|
@@ -89,7 +89,7 @@ export declare const Button: React.ForwardRefExoticComponent<(Omit<import("@salu
|
|
89
89
|
isLoading?: boolean;
|
90
90
|
loader?: React.ReactNode;
|
91
91
|
stretch?: boolean;
|
92
|
-
stretching?: "
|
92
|
+
stretching?: "auto" | "filled" | "fixed";
|
93
93
|
square?: boolean;
|
94
94
|
focused?: boolean;
|
95
95
|
disabled?: boolean;
|
@@ -128,7 +128,7 @@ export declare const Button: React.ForwardRefExoticComponent<(Omit<import("@salu
|
|
128
128
|
isLoading?: boolean;
|
129
129
|
loader?: React.ReactNode;
|
130
130
|
stretch?: boolean;
|
131
|
-
stretching?: "
|
131
|
+
stretching?: "auto" | "filled" | "fixed";
|
132
132
|
square?: boolean;
|
133
133
|
focused?: boolean;
|
134
134
|
disabled?: boolean;
|
@@ -73,7 +73,7 @@ declare const ComboboxNew: React.FunctionComponent<import("@salutejs/plasma-new-
|
|
73
73
|
hintOffset?: [number, number];
|
74
74
|
hintWidth?: string;
|
75
75
|
hintContentLeft?: React.ReactNode;
|
76
|
-
} & Omit<React.ButtonHTMLAttributes<HTMLInputElement>, "
|
76
|
+
} & Omit<React.ButtonHTMLAttributes<HTMLInputElement>, "onChange" | "defaultValue" | "name" | "value"> & React.RefAttributes<HTMLInputElement>) | ({
|
77
77
|
items: ComboboxItemOption[];
|
78
78
|
placement?: import("@salutejs/plasma-new-hope/types/components/Combobox/ComboboxNew/Combobox.types").Placement;
|
79
79
|
placeholder?: string;
|
@@ -127,7 +127,7 @@ declare const ComboboxNew: React.FunctionComponent<import("@salutejs/plasma-new-
|
|
127
127
|
hintOffset?: never;
|
128
128
|
hintWidth?: never;
|
129
129
|
hintContentLeft?: never;
|
130
|
-
} & Omit<React.ButtonHTMLAttributes<HTMLInputElement>, "
|
130
|
+
} & Omit<React.ButtonHTMLAttributes<HTMLInputElement>, "onChange" | "defaultValue" | "name" | "value"> & React.RefAttributes<HTMLInputElement>) | ({
|
131
131
|
items: ComboboxItemOption[];
|
132
132
|
placement?: import("@salutejs/plasma-new-hope/types/components/Combobox/ComboboxNew/Combobox.types").Placement;
|
133
133
|
placeholder?: string;
|
@@ -181,7 +181,7 @@ declare const ComboboxNew: React.FunctionComponent<import("@salutejs/plasma-new-
|
|
181
181
|
hintOffset?: [number, number];
|
182
182
|
hintWidth?: string;
|
183
183
|
hintContentLeft?: React.ReactNode;
|
184
|
-
} & Omit<React.ButtonHTMLAttributes<HTMLInputElement>, "
|
184
|
+
} & Omit<React.ButtonHTMLAttributes<HTMLInputElement>, "onChange" | "defaultValue" | "name" | "value"> & React.RefAttributes<HTMLInputElement>) | ({
|
185
185
|
items: ComboboxItemOption[];
|
186
186
|
placement?: import("@salutejs/plasma-new-hope/types/components/Combobox/ComboboxNew/Combobox.types").Placement;
|
187
187
|
placeholder?: string;
|
@@ -235,7 +235,7 @@ declare const ComboboxNew: React.FunctionComponent<import("@salutejs/plasma-new-
|
|
235
235
|
hintOffset?: never;
|
236
236
|
hintWidth?: never;
|
237
237
|
hintContentLeft?: never;
|
238
|
-
} & Omit<React.ButtonHTMLAttributes<HTMLInputElement>, "
|
238
|
+
} & Omit<React.ButtonHTMLAttributes<HTMLInputElement>, "onChange" | "defaultValue" | "name" | "value"> & React.RefAttributes<HTMLInputElement>) | ({
|
239
239
|
items: ComboboxItemOption[];
|
240
240
|
placement?: import("@salutejs/plasma-new-hope/types/components/Combobox/ComboboxNew/Combobox.types").Placement;
|
241
241
|
placeholder?: string;
|
@@ -289,7 +289,7 @@ declare const ComboboxNew: React.FunctionComponent<import("@salutejs/plasma-new-
|
|
289
289
|
hintOffset?: [number, number];
|
290
290
|
hintWidth?: string;
|
291
291
|
hintContentLeft?: React.ReactNode;
|
292
|
-
} & Omit<React.ButtonHTMLAttributes<HTMLInputElement>, "
|
292
|
+
} & Omit<React.ButtonHTMLAttributes<HTMLInputElement>, "onChange" | "defaultValue" | "name" | "value"> & React.RefAttributes<HTMLInputElement>) | ({
|
293
293
|
items: ComboboxItemOption[];
|
294
294
|
placement?: import("@salutejs/plasma-new-hope/types/components/Combobox/ComboboxNew/Combobox.types").Placement;
|
295
295
|
placeholder?: string;
|
@@ -343,7 +343,7 @@ declare const ComboboxNew: React.FunctionComponent<import("@salutejs/plasma-new-
|
|
343
343
|
hintOffset?: never;
|
344
344
|
hintWidth?: never;
|
345
345
|
hintContentLeft?: never;
|
346
|
-
} & Omit<React.ButtonHTMLAttributes<HTMLInputElement>, "
|
346
|
+
} & Omit<React.ButtonHTMLAttributes<HTMLInputElement>, "onChange" | "defaultValue" | "name" | "value"> & React.RefAttributes<HTMLInputElement>) | ({
|
347
347
|
items: ComboboxItemOption[];
|
348
348
|
placement?: import("@salutejs/plasma-new-hope/types/components/Combobox/ComboboxNew/Combobox.types").Placement;
|
349
349
|
placeholder?: string;
|
@@ -397,7 +397,7 @@ declare const ComboboxNew: React.FunctionComponent<import("@salutejs/plasma-new-
|
|
397
397
|
hintOffset?: [number, number];
|
398
398
|
hintWidth?: string;
|
399
399
|
hintContentLeft?: React.ReactNode;
|
400
|
-
} & Omit<React.ButtonHTMLAttributes<HTMLInputElement>, "
|
400
|
+
} & Omit<React.ButtonHTMLAttributes<HTMLInputElement>, "onChange" | "defaultValue" | "name" | "value"> & React.RefAttributes<HTMLInputElement>) | ({
|
401
401
|
items: ComboboxItemOption[];
|
402
402
|
placement?: import("@salutejs/plasma-new-hope/types/components/Combobox/ComboboxNew/Combobox.types").Placement;
|
403
403
|
placeholder?: string;
|
@@ -451,7 +451,7 @@ declare const ComboboxNew: React.FunctionComponent<import("@salutejs/plasma-new-
|
|
451
451
|
hintOffset?: never;
|
452
452
|
hintWidth?: never;
|
453
453
|
hintContentLeft?: never;
|
454
|
-
} & Omit<React.ButtonHTMLAttributes<HTMLInputElement>, "
|
454
|
+
} & Omit<React.ButtonHTMLAttributes<HTMLInputElement>, "onChange" | "defaultValue" | "name" | "value"> & React.RefAttributes<HTMLInputElement>) | ({
|
455
455
|
items: ComboboxItemOption[];
|
456
456
|
placement?: import("@salutejs/plasma-new-hope/types/components/Combobox/ComboboxNew/Combobox.types").Placement;
|
457
457
|
placeholder?: string;
|
@@ -505,7 +505,7 @@ declare const ComboboxNew: React.FunctionComponent<import("@salutejs/plasma-new-
|
|
505
505
|
hintOffset?: [number, number];
|
506
506
|
hintWidth?: string;
|
507
507
|
hintContentLeft?: React.ReactNode;
|
508
|
-
} & Omit<React.ButtonHTMLAttributes<HTMLInputElement>, "
|
508
|
+
} & Omit<React.ButtonHTMLAttributes<HTMLInputElement>, "onChange" | "defaultValue" | "name" | "value"> & React.RefAttributes<HTMLInputElement>) | ({
|
509
509
|
items: ComboboxItemOption[];
|
510
510
|
placement?: import("@salutejs/plasma-new-hope/types/components/Combobox/ComboboxNew/Combobox.types").Placement;
|
511
511
|
placeholder?: string;
|
@@ -559,7 +559,7 @@ declare const ComboboxNew: React.FunctionComponent<import("@salutejs/plasma-new-
|
|
559
559
|
hintOffset?: never;
|
560
560
|
hintWidth?: never;
|
561
561
|
hintContentLeft?: never;
|
562
|
-
} & Omit<React.ButtonHTMLAttributes<HTMLInputElement>, "
|
562
|
+
} & Omit<React.ButtonHTMLAttributes<HTMLInputElement>, "onChange" | "defaultValue" | "name" | "value"> & React.RefAttributes<HTMLInputElement>) | ({
|
563
563
|
items: ComboboxItemOption[];
|
564
564
|
placement?: import("@salutejs/plasma-new-hope/types/components/Combobox/ComboboxNew/Combobox.types").Placement;
|
565
565
|
placeholder?: string;
|
@@ -613,7 +613,7 @@ declare const ComboboxNew: React.FunctionComponent<import("@salutejs/plasma-new-
|
|
613
613
|
hintOffset?: [number, number];
|
614
614
|
hintWidth?: string;
|
615
615
|
hintContentLeft?: React.ReactNode;
|
616
|
-
} & Omit<React.ButtonHTMLAttributes<HTMLInputElement>, "
|
616
|
+
} & Omit<React.ButtonHTMLAttributes<HTMLInputElement>, "onChange" | "defaultValue" | "name" | "value"> & React.RefAttributes<HTMLInputElement>) | ({
|
617
617
|
items: ComboboxItemOption[];
|
618
618
|
placement?: import("@salutejs/plasma-new-hope/types/components/Combobox/ComboboxNew/Combobox.types").Placement;
|
619
619
|
placeholder?: string;
|
@@ -667,7 +667,7 @@ declare const ComboboxNew: React.FunctionComponent<import("@salutejs/plasma-new-
|
|
667
667
|
hintOffset?: never;
|
668
668
|
hintWidth?: never;
|
669
669
|
hintContentLeft?: never;
|
670
|
-
} & Omit<React.ButtonHTMLAttributes<HTMLInputElement>, "
|
670
|
+
} & Omit<React.ButtonHTMLAttributes<HTMLInputElement>, "onChange" | "defaultValue" | "name" | "value"> & React.RefAttributes<HTMLInputElement>) | ({
|
671
671
|
items: ComboboxItemOption[];
|
672
672
|
placement?: import("@salutejs/plasma-new-hope/types/components/Combobox/ComboboxNew/Combobox.types").Placement;
|
673
673
|
placeholder?: string;
|
@@ -721,7 +721,7 @@ declare const ComboboxNew: React.FunctionComponent<import("@salutejs/plasma-new-
|
|
721
721
|
hintOffset?: [number, number];
|
722
722
|
hintWidth?: string;
|
723
723
|
hintContentLeft?: React.ReactNode;
|
724
|
-
} & Omit<React.ButtonHTMLAttributes<HTMLInputElement>, "
|
724
|
+
} & Omit<React.ButtonHTMLAttributes<HTMLInputElement>, "onChange" | "defaultValue" | "name" | "value"> & React.RefAttributes<HTMLInputElement>) | ({
|
725
725
|
items: ComboboxItemOption[];
|
726
726
|
placement?: import("@salutejs/plasma-new-hope/types/components/Combobox/ComboboxNew/Combobox.types").Placement;
|
727
727
|
placeholder?: string;
|
@@ -775,7 +775,7 @@ declare const ComboboxNew: React.FunctionComponent<import("@salutejs/plasma-new-
|
|
775
775
|
hintOffset?: never;
|
776
776
|
hintWidth?: never;
|
777
777
|
hintContentLeft?: never;
|
778
|
-
} & Omit<React.ButtonHTMLAttributes<HTMLInputElement>, "
|
778
|
+
} & Omit<React.ButtonHTMLAttributes<HTMLInputElement>, "onChange" | "defaultValue" | "name" | "value"> & React.RefAttributes<HTMLInputElement>) | ({
|
779
779
|
items: ComboboxItemOption[];
|
780
780
|
placement?: import("@salutejs/plasma-new-hope/types/components/Combobox/ComboboxNew/Combobox.types").Placement;
|
781
781
|
placeholder?: string;
|
@@ -829,7 +829,7 @@ declare const ComboboxNew: React.FunctionComponent<import("@salutejs/plasma-new-
|
|
829
829
|
hintOffset?: [number, number];
|
830
830
|
hintWidth?: string;
|
831
831
|
hintContentLeft?: React.ReactNode;
|
832
|
-
} & Omit<React.ButtonHTMLAttributes<HTMLInputElement>, "
|
832
|
+
} & Omit<React.ButtonHTMLAttributes<HTMLInputElement>, "onChange" | "defaultValue" | "name" | "value"> & React.RefAttributes<HTMLInputElement>) | ({
|
833
833
|
items: ComboboxItemOption[];
|
834
834
|
placement?: import("@salutejs/plasma-new-hope/types/components/Combobox/ComboboxNew/Combobox.types").Placement;
|
835
835
|
placeholder?: string;
|
@@ -883,7 +883,7 @@ declare const ComboboxNew: React.FunctionComponent<import("@salutejs/plasma-new-
|
|
883
883
|
hintOffset?: never;
|
884
884
|
hintWidth?: never;
|
885
885
|
hintContentLeft?: never;
|
886
|
-
} & Omit<React.ButtonHTMLAttributes<HTMLInputElement>, "
|
886
|
+
} & Omit<React.ButtonHTMLAttributes<HTMLInputElement>, "onChange" | "defaultValue" | "name" | "value"> & React.RefAttributes<HTMLInputElement>) | ({
|
887
887
|
items: ComboboxItemOption[];
|
888
888
|
placement?: import("@salutejs/plasma-new-hope/types/components/Combobox/ComboboxNew/Combobox.types").Placement;
|
889
889
|
placeholder?: string;
|
@@ -937,7 +937,7 @@ declare const ComboboxNew: React.FunctionComponent<import("@salutejs/plasma-new-
|
|
937
937
|
hintOffset?: [number, number];
|
938
938
|
hintWidth?: string;
|
939
939
|
hintContentLeft?: React.ReactNode;
|
940
|
-
} & Omit<React.ButtonHTMLAttributes<HTMLInputElement>, "
|
940
|
+
} & Omit<React.ButtonHTMLAttributes<HTMLInputElement>, "onChange" | "defaultValue" | "name" | "value"> & React.RefAttributes<HTMLInputElement>) | ({
|
941
941
|
items: ComboboxItemOption[];
|
942
942
|
placement?: import("@salutejs/plasma-new-hope/types/components/Combobox/ComboboxNew/Combobox.types").Placement;
|
943
943
|
placeholder?: string;
|
@@ -991,7 +991,7 @@ declare const ComboboxNew: React.FunctionComponent<import("@salutejs/plasma-new-
|
|
991
991
|
hintOffset?: never;
|
992
992
|
hintWidth?: never;
|
993
993
|
hintContentLeft?: never;
|
994
|
-
} & Omit<React.ButtonHTMLAttributes<HTMLInputElement>, "
|
994
|
+
} & Omit<React.ButtonHTMLAttributes<HTMLInputElement>, "onChange" | "defaultValue" | "name" | "value"> & React.RefAttributes<HTMLInputElement>) | ({
|
995
995
|
items: ComboboxItemOption[];
|
996
996
|
placement?: import("@salutejs/plasma-new-hope/types/components/Combobox/ComboboxNew/Combobox.types").Placement;
|
997
997
|
placeholder?: string;
|
@@ -1045,7 +1045,7 @@ declare const ComboboxNew: React.FunctionComponent<import("@salutejs/plasma-new-
|
|
1045
1045
|
hintOffset?: [number, number];
|
1046
1046
|
hintWidth?: string;
|
1047
1047
|
hintContentLeft?: React.ReactNode;
|
1048
|
-
} & Omit<React.ButtonHTMLAttributes<HTMLInputElement>, "
|
1048
|
+
} & Omit<React.ButtonHTMLAttributes<HTMLInputElement>, "onChange" | "defaultValue" | "name" | "value"> & React.RefAttributes<HTMLInputElement>) | ({
|
1049
1049
|
items: ComboboxItemOption[];
|
1050
1050
|
placement?: import("@salutejs/plasma-new-hope/types/components/Combobox/ComboboxNew/Combobox.types").Placement;
|
1051
1051
|
placeholder?: string;
|
@@ -1099,7 +1099,7 @@ declare const ComboboxNew: React.FunctionComponent<import("@salutejs/plasma-new-
|
|
1099
1099
|
hintOffset?: never;
|
1100
1100
|
hintWidth?: never;
|
1101
1101
|
hintContentLeft?: never;
|
1102
|
-
} & Omit<React.ButtonHTMLAttributes<HTMLInputElement>, "
|
1102
|
+
} & Omit<React.ButtonHTMLAttributes<HTMLInputElement>, "onChange" | "defaultValue" | "name" | "value"> & React.RefAttributes<HTMLInputElement>) | ({
|
1103
1103
|
items: ComboboxItemOption[];
|
1104
1104
|
placement?: import("@salutejs/plasma-new-hope/types/components/Combobox/ComboboxNew/Combobox.types").Placement;
|
1105
1105
|
placeholder?: string;
|
@@ -1153,7 +1153,7 @@ declare const ComboboxNew: React.FunctionComponent<import("@salutejs/plasma-new-
|
|
1153
1153
|
hintOffset?: [number, number];
|
1154
1154
|
hintWidth?: string;
|
1155
1155
|
hintContentLeft?: React.ReactNode;
|
1156
|
-
} & Omit<React.ButtonHTMLAttributes<HTMLInputElement>, "
|
1156
|
+
} & Omit<React.ButtonHTMLAttributes<HTMLInputElement>, "onChange" | "defaultValue" | "name" | "value"> & React.RefAttributes<HTMLInputElement>) | ({
|
1157
1157
|
items: ComboboxItemOption[];
|
1158
1158
|
placement?: import("@salutejs/plasma-new-hope/types/components/Combobox/ComboboxNew/Combobox.types").Placement;
|
1159
1159
|
placeholder?: string;
|
@@ -1207,7 +1207,7 @@ declare const ComboboxNew: React.FunctionComponent<import("@salutejs/plasma-new-
|
|
1207
1207
|
hintOffset?: never;
|
1208
1208
|
hintWidth?: never;
|
1209
1209
|
hintContentLeft?: never;
|
1210
|
-
} & Omit<React.ButtonHTMLAttributes<HTMLInputElement>, "
|
1210
|
+
} & Omit<React.ButtonHTMLAttributes<HTMLInputElement>, "onChange" | "defaultValue" | "name" | "value"> & React.RefAttributes<HTMLInputElement>) | ({
|
1211
1211
|
items: ComboboxItemOption[];
|
1212
1212
|
placement?: import("@salutejs/plasma-new-hope/types/components/Combobox/ComboboxNew/Combobox.types").Placement;
|
1213
1213
|
placeholder?: string;
|
@@ -1261,7 +1261,7 @@ declare const ComboboxNew: React.FunctionComponent<import("@salutejs/plasma-new-
|
|
1261
1261
|
hintOffset?: [number, number];
|
1262
1262
|
hintWidth?: string;
|
1263
1263
|
hintContentLeft?: React.ReactNode;
|
1264
|
-
} & Omit<React.ButtonHTMLAttributes<HTMLInputElement>, "
|
1264
|
+
} & Omit<React.ButtonHTMLAttributes<HTMLInputElement>, "onChange" | "defaultValue" | "name" | "value"> & React.RefAttributes<HTMLInputElement>) | ({
|
1265
1265
|
items: ComboboxItemOption[];
|
1266
1266
|
placement?: import("@salutejs/plasma-new-hope/types/components/Combobox/ComboboxNew/Combobox.types").Placement;
|
1267
1267
|
placeholder?: string;
|
@@ -1315,7 +1315,7 @@ declare const ComboboxNew: React.FunctionComponent<import("@salutejs/plasma-new-
|
|
1315
1315
|
hintOffset?: never;
|
1316
1316
|
hintWidth?: never;
|
1317
1317
|
hintContentLeft?: never;
|
1318
|
-
} & Omit<React.ButtonHTMLAttributes<HTMLInputElement>, "
|
1318
|
+
} & Omit<React.ButtonHTMLAttributes<HTMLInputElement>, "onChange" | "defaultValue" | "name" | "value"> & React.RefAttributes<HTMLInputElement>))>;
|
1319
1319
|
type PropsFromConfig = keyof typeof config['variations'];
|
1320
1320
|
export type Props<T extends ComboboxItemOption> = DistributiveOmit<ComboboxProps<T>, PropsFromConfig> & DistributivePick<ComponentProps<typeof ComboboxNew>, PropsFromConfig>;
|
1321
1321
|
declare const Combobox: <T extends ComboboxItemOption>(props: Props<T> & React.RefAttributes<HTMLInputElement>) => React.ReactElement | null;
|
@@ -27,13 +27,13 @@ export declare const DatePicker: import("react").FunctionComponent<import("@salu
|
|
27
27
|
textBefore?: string;
|
28
28
|
textAfter?: string;
|
29
29
|
autoComplete?: string;
|
30
|
-
onCommitDate?: (value: Date | string, error?: boolean, success?: boolean, dateInfo?: DateInfo, originalDate?: Date, isoDate?: string) => void;
|
31
|
-
onChangeValue?: (event: import("react").SyntheticEvent<HTMLInputElement> | null, value?: string, originalDate?: DateType, isoDate?: string) => void;
|
30
|
+
onCommitDate?: (value: Date | string, error?: boolean, success?: boolean, dateInfo?: import("@salutejs/plasma-new-hope/types/components/Calendar/Calendar.types").DateInfo, originalDate?: Date, isoDate?: string) => void;
|
31
|
+
onChangeValue?: (event: import("react").SyntheticEvent<HTMLInputElement> | null, value?: string, originalDate?: import("@salutejs/plasma-new-hope/types/components/Calendar/Calendar.types").DateType, isoDate?: string) => void;
|
32
32
|
onChange?: (event: {
|
33
33
|
target: {
|
34
34
|
value?: string;
|
35
35
|
name?: string;
|
36
|
-
originalDate?: DateType;
|
36
|
+
originalDate?: import("@salutejs/plasma-new-hope/types/components/Calendar/Calendar.types").DateType;
|
37
37
|
isoDate?: string;
|
38
38
|
};
|
39
39
|
}) => void;
|
@@ -38,7 +38,7 @@ declare const DropdownNewHope: React.FunctionComponent<import("@salutejs/plasma-
|
|
38
38
|
hoverIndex?: number;
|
39
39
|
} & React.HTMLAttributes<HTMLDivElement> & React.RefAttributes<HTMLDivElement>>;
|
40
40
|
export type DropdownProps<T extends DropdownItemOption> = Omit<DropdownNewProps<T>, 'size' | 'view'> & Pick<ComponentProps<typeof DropdownNewHope>, 'size' | 'view'>;
|
41
|
-
declare const Dropdown: <T extends DropdownItemOption>(props: Omit<DropdownNewProps<T>, "
|
41
|
+
declare const Dropdown: <T extends DropdownItemOption>(props: Omit<DropdownNewProps<T>, "size" | "view"> & Pick<import("@salutejs/plasma-new-hope/types/engines/types").PropsType<{
|
42
42
|
size: {
|
43
43
|
s: import("@salutejs/plasma-new-hope/types/engines/types").PolymorphicClassName;
|
44
44
|
};
|
@@ -74,5 +74,5 @@ declare const Dropdown: <T extends DropdownItemOption>(props: Omit<DropdownNewPr
|
|
74
74
|
onItemClick?: ((item: import("@salutejs/plasma-new-hope/types/components/Dropdown").DropdownItemOption, event: React.SyntheticEvent) => void) | undefined;
|
75
75
|
listHeight?: React.CSSProperties["height"];
|
76
76
|
hoverIndex?: number;
|
77
|
-
} & React.HTMLAttributes<HTMLDivElement> & React.RefAttributes<HTMLDivElement>, "
|
77
|
+
} & React.HTMLAttributes<HTMLDivElement> & React.RefAttributes<HTMLDivElement>, "size" | "view"> & React.RefAttributes<HTMLButtonElement>) => React.ReactElement | null;
|
78
78
|
export { Dropdown };
|
@@ -24,7 +24,7 @@ export declare const IconButton: import("react").FunctionComponent<import("@salu
|
|
24
24
|
isLoading?: boolean;
|
25
25
|
loader?: import("react").ReactNode;
|
26
26
|
stretch?: boolean;
|
27
|
-
stretching?: "
|
27
|
+
stretching?: "auto" | "filled" | "fixed";
|
28
28
|
square?: boolean;
|
29
29
|
focused?: boolean;
|
30
30
|
disabled?: boolean;
|
@@ -45,7 +45,7 @@ export declare const IconButton: import("react").FunctionComponent<import("@salu
|
|
45
45
|
isLoading?: boolean;
|
46
46
|
loader?: import("react").ReactNode;
|
47
47
|
stretch?: boolean;
|
48
|
-
stretching?: "
|
48
|
+
stretching?: "auto" | "filled" | "fixed";
|
49
49
|
square?: boolean;
|
50
50
|
focused?: boolean;
|
51
51
|
disabled?: boolean;
|
@@ -1,3 +1,6 @@
|
|
1
|
+
/**
|
2
|
+
* Маска
|
3
|
+
*/
|
1
4
|
export declare const Mask: import("react").ForwardRefExoticComponent<(Omit<import("@salutejs/plasma-new-hope/types/engines/types").PropsType<{
|
2
5
|
view: {
|
3
6
|
default: import("@salutejs/plasma-new-hope/types/engines/types").PolymorphicClassName;
|
@@ -61,7 +64,7 @@ export declare const Mask: import("react").ForwardRefExoticComponent<(Omit<impor
|
|
61
64
|
chipType?: never;
|
62
65
|
chipView?: never;
|
63
66
|
chipValidator?: never;
|
64
|
-
} & Omit<import("@salutejs/plasma-new-hope/styled-components").InputHTMLAttributes<HTMLInputElement>, "
|
67
|
+
} & Omit<import("@salutejs/plasma-new-hope/styled-components").InputHTMLAttributes<HTMLInputElement>, "size" | "required"> & import("react").RefAttributes<HTMLInputElement> & import("@salutejs/plasma-new-hope/types/components/Mask/Mask.types").MaskProps, "ref"> | Omit<import("@salutejs/plasma-new-hope/types/engines/types").PropsType<{
|
65
68
|
view: {
|
66
69
|
default: import("@salutejs/plasma-new-hope/types/engines/types").PolymorphicClassName;
|
67
70
|
negative: import("@salutejs/plasma-new-hope/types/engines/types").PolymorphicClassName;
|
@@ -126,7 +129,7 @@ export declare const Mask: import("react").ForwardRefExoticComponent<(Omit<impor
|
|
126
129
|
chipValidator?: (value: string) => {
|
127
130
|
view?: string;
|
128
131
|
};
|
129
|
-
} & Omit<import("@salutejs/plasma-new-hope/styled-components").InputHTMLAttributes<HTMLInputElement>, "
|
132
|
+
} & Omit<import("@salutejs/plasma-new-hope/styled-components").InputHTMLAttributes<HTMLInputElement>, "size" | "required"> & import("react").RefAttributes<HTMLInputElement> & import("@salutejs/plasma-new-hope/types/components/Mask/Mask.types").MaskProps, "ref"> | Omit<import("@salutejs/plasma-new-hope/types/engines/types").PropsType<{
|
130
133
|
view: {
|
131
134
|
default: import("@salutejs/plasma-new-hope/types/engines/types").PolymorphicClassName;
|
132
135
|
negative: import("@salutejs/plasma-new-hope/types/engines/types").PolymorphicClassName;
|
@@ -189,7 +192,7 @@ export declare const Mask: import("react").ForwardRefExoticComponent<(Omit<impor
|
|
189
192
|
chipType?: never;
|
190
193
|
chipView?: never;
|
191
194
|
chipValidator?: never;
|
192
|
-
} & Omit<import("@salutejs/plasma-new-hope/styled-components").InputHTMLAttributes<HTMLInputElement>, "
|
195
|
+
} & Omit<import("@salutejs/plasma-new-hope/styled-components").InputHTMLAttributes<HTMLInputElement>, "size" | "required"> & import("react").RefAttributes<HTMLInputElement> & import("@salutejs/plasma-new-hope/types/components/Mask/Mask.types").MaskProps, "ref"> | Omit<import("@salutejs/plasma-new-hope/types/engines/types").PropsType<{
|
193
196
|
view: {
|
194
197
|
default: import("@salutejs/plasma-new-hope/types/engines/types").PolymorphicClassName;
|
195
198
|
negative: import("@salutejs/plasma-new-hope/types/engines/types").PolymorphicClassName;
|
@@ -254,7 +257,7 @@ export declare const Mask: import("react").ForwardRefExoticComponent<(Omit<impor
|
|
254
257
|
chipValidator?: (value: string) => {
|
255
258
|
view?: string;
|
256
259
|
};
|
257
|
-
} & Omit<import("@salutejs/plasma-new-hope/styled-components").InputHTMLAttributes<HTMLInputElement>, "
|
260
|
+
} & Omit<import("@salutejs/plasma-new-hope/styled-components").InputHTMLAttributes<HTMLInputElement>, "size" | "required"> & import("react").RefAttributes<HTMLInputElement> & import("@salutejs/plasma-new-hope/types/components/Mask/Mask.types").MaskProps, "ref"> | Omit<import("@salutejs/plasma-new-hope/types/engines/types").PropsType<{
|
258
261
|
view: {
|
259
262
|
default: import("@salutejs/plasma-new-hope/types/engines/types").PolymorphicClassName;
|
260
263
|
negative: import("@salutejs/plasma-new-hope/types/engines/types").PolymorphicClassName;
|
@@ -317,7 +320,7 @@ export declare const Mask: import("react").ForwardRefExoticComponent<(Omit<impor
|
|
317
320
|
chipType?: never;
|
318
321
|
chipView?: never;
|
319
322
|
chipValidator?: never;
|
320
|
-
} & Omit<import("@salutejs/plasma-new-hope/styled-components").InputHTMLAttributes<HTMLInputElement>, "
|
323
|
+
} & Omit<import("@salutejs/plasma-new-hope/styled-components").InputHTMLAttributes<HTMLInputElement>, "size" | "required"> & import("react").RefAttributes<HTMLInputElement> & import("@salutejs/plasma-new-hope/types/components/Mask/Mask.types").MaskProps, "ref"> | Omit<import("@salutejs/plasma-new-hope/types/engines/types").PropsType<{
|
321
324
|
view: {
|
322
325
|
default: import("@salutejs/plasma-new-hope/types/engines/types").PolymorphicClassName;
|
323
326
|
negative: import("@salutejs/plasma-new-hope/types/engines/types").PolymorphicClassName;
|
@@ -382,7 +385,7 @@ export declare const Mask: import("react").ForwardRefExoticComponent<(Omit<impor
|
|
382
385
|
chipValidator?: (value: string) => {
|
383
386
|
view?: string;
|
384
387
|
};
|
385
|
-
} & Omit<import("@salutejs/plasma-new-hope/styled-components").InputHTMLAttributes<HTMLInputElement>, "
|
388
|
+
} & Omit<import("@salutejs/plasma-new-hope/styled-components").InputHTMLAttributes<HTMLInputElement>, "size" | "required"> & import("react").RefAttributes<HTMLInputElement> & import("@salutejs/plasma-new-hope/types/components/Mask/Mask.types").MaskProps, "ref"> | Omit<import("@salutejs/plasma-new-hope/types/engines/types").PropsType<{
|
386
389
|
view: {
|
387
390
|
default: import("@salutejs/plasma-new-hope/types/engines/types").PolymorphicClassName;
|
388
391
|
negative: import("@salutejs/plasma-new-hope/types/engines/types").PolymorphicClassName;
|
@@ -445,7 +448,7 @@ export declare const Mask: import("react").ForwardRefExoticComponent<(Omit<impor
|
|
445
448
|
chipType?: never;
|
446
449
|
chipView?: never;
|
447
450
|
chipValidator?: never;
|
448
|
-
} & Omit<import("@salutejs/plasma-new-hope/styled-components").InputHTMLAttributes<HTMLInputElement>, "
|
451
|
+
} & Omit<import("@salutejs/plasma-new-hope/styled-components").InputHTMLAttributes<HTMLInputElement>, "size" | "required"> & import("react").RefAttributes<HTMLInputElement> & import("@salutejs/plasma-new-hope/types/components/Mask/Mask.types").MaskProps, "ref"> | Omit<import("@salutejs/plasma-new-hope/types/engines/types").PropsType<{
|
449
452
|
view: {
|
450
453
|
default: import("@salutejs/plasma-new-hope/types/engines/types").PolymorphicClassName;
|
451
454
|
negative: import("@salutejs/plasma-new-hope/types/engines/types").PolymorphicClassName;
|
@@ -510,4 +513,4 @@ export declare const Mask: import("react").ForwardRefExoticComponent<(Omit<impor
|
|
510
513
|
chipValidator?: (value: string) => {
|
511
514
|
view?: string;
|
512
515
|
};
|
513
|
-
} & Omit<import("@salutejs/plasma-new-hope/styled-components").InputHTMLAttributes<HTMLInputElement>, "
|
516
|
+
} & Omit<import("@salutejs/plasma-new-hope/styled-components").InputHTMLAttributes<HTMLInputElement>, "size" | "required"> & import("react").RefAttributes<HTMLInputElement> & import("@salutejs/plasma-new-hope/types/components/Mask/Mask.types").MaskProps, "ref">) & import("react").RefAttributes<HTMLInputElement>>;
|
@@ -44,7 +44,7 @@ export declare const NumberInput: import("react").FunctionComponent<import("@sal
|
|
44
44
|
} & {
|
45
45
|
segmentation?: "clear";
|
46
46
|
inputBackgroundType?: never;
|
47
|
-
} & Omit<import("react").InputHTMLAttributes<HTMLInputElement>, "
|
47
|
+
} & Omit<import("react").InputHTMLAttributes<HTMLInputElement>, "size" | "onChange" | "value"> & import("react").RefAttributes<HTMLInputElement>) | ({
|
48
48
|
value?: number;
|
49
49
|
min?: number;
|
50
50
|
max?: number;
|
@@ -70,4 +70,4 @@ export declare const NumberInput: import("react").FunctionComponent<import("@sal
|
|
70
70
|
} & {
|
71
71
|
segmentation?: string;
|
72
72
|
inputBackgroundType?: string;
|
73
|
-
} & Omit<import("react").InputHTMLAttributes<HTMLInputElement>, "
|
73
|
+
} & Omit<import("react").InputHTMLAttributes<HTMLInputElement>, "size" | "onChange" | "value"> & import("react").RefAttributes<HTMLInputElement>))>;
|