@salutejs/sdds-serv 0.314.1 → 0.315.0-canary.1983.15896947411.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 +0 -56
- 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 +8 -8
- package/components/NumberInput/NumberInput.d.ts +2 -2
- package/components/Radiobox/Radiobox.config.js +1 -1
- package/components/Radiobox/{Radiobox.config_yqdgm2.css → Radiobox.config_wyokmu.css} +11 -11
- package/components/Radiobox/Radiobox.css +13 -13
- package/components/Radiobox/Radiobox.d.ts +2 -46
- 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/es/components/Radiobox/Radiobox.config.js +1 -1
- package/es/components/Radiobox/{Radiobox.config_yqdgm2.css → Radiobox.config_wyokmu.css} +11 -11
- package/es/components/Radiobox/Radiobox.css +13 -13
- package/es/index.css +13 -13
- package/package.json +8 -8
package/CHANGELOG.md
CHANGED
@@ -1,59 +1,3 @@
|
|
1
|
-
## 0.314.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
|
-
|
57
1
|
## 0.313.0 (11 июня 2025)
|
58
2
|
|
59
3
|
## Функциональные изменения в компонентах
|
@@ -31,7 +31,7 @@ export declare const Attach: import("react").FunctionComponent<import("@salutejs
|
|
31
31
|
isLoading?: boolean;
|
32
32
|
loader?: import("react").ReactNode;
|
33
33
|
stretch?: boolean;
|
34
|
-
stretching?: "
|
34
|
+
stretching?: "fixed" | "auto" | "filled";
|
35
35
|
square?: boolean;
|
36
36
|
focused?: boolean;
|
37
37
|
disabled?: boolean;
|
@@ -54,7 +54,7 @@ export declare const Attach: import("react").FunctionComponent<import("@salutejs
|
|
54
54
|
isLoading?: boolean;
|
55
55
|
loader?: import("react").ReactNode;
|
56
56
|
stretch?: boolean;
|
57
|
-
stretching?: "
|
57
|
+
stretching?: "fixed" | "auto" | "filled";
|
58
58
|
square?: boolean;
|
59
59
|
focused?: boolean;
|
60
60
|
disabled?: boolean;
|
@@ -80,7 +80,7 @@ export declare const Attach: import("react").FunctionComponent<import("@salutejs
|
|
80
80
|
isLoading?: boolean;
|
81
81
|
loader?: import("react").ReactNode;
|
82
82
|
stretch?: boolean;
|
83
|
-
stretching?: "
|
83
|
+
stretching?: "fixed" | "auto" | "filled";
|
84
84
|
square?: boolean;
|
85
85
|
focused?: boolean;
|
86
86
|
disabled?: boolean;
|
@@ -104,7 +104,7 @@ export declare const Attach: import("react").FunctionComponent<import("@salutejs
|
|
104
104
|
isLoading?: boolean;
|
105
105
|
loader?: import("react").ReactNode;
|
106
106
|
stretch?: boolean;
|
107
|
-
stretching?: "
|
107
|
+
stretching?: "fixed" | "auto" | "filled";
|
108
108
|
square?: boolean;
|
109
109
|
focused?: boolean;
|
110
110
|
disabled?: boolean;
|
@@ -131,7 +131,7 @@ export declare const Attach: import("react").FunctionComponent<import("@salutejs
|
|
131
131
|
isLoading?: boolean;
|
132
132
|
loader?: import("react").ReactNode;
|
133
133
|
stretch?: boolean;
|
134
|
-
stretching?: "
|
134
|
+
stretching?: "fixed" | "auto" | "filled";
|
135
135
|
square?: boolean;
|
136
136
|
focused?: boolean;
|
137
137
|
disabled?: boolean;
|
@@ -157,7 +157,7 @@ export declare const Attach: import("react").FunctionComponent<import("@salutejs
|
|
157
157
|
isLoading?: boolean;
|
158
158
|
loader?: import("react").ReactNode;
|
159
159
|
stretch?: boolean;
|
160
|
-
stretching?: "
|
160
|
+
stretching?: "fixed" | "auto" | "filled";
|
161
161
|
square?: boolean;
|
162
162
|
focused?: boolean;
|
163
163
|
disabled?: boolean;
|
@@ -180,7 +180,7 @@ export declare const Attach: import("react").FunctionComponent<import("@salutejs
|
|
180
180
|
isLoading?: boolean;
|
181
181
|
loader?: import("react").ReactNode;
|
182
182
|
stretch?: boolean;
|
183
|
-
stretching?: "
|
183
|
+
stretching?: "fixed" | "auto" | "filled";
|
184
184
|
square?: boolean;
|
185
185
|
focused?: boolean;
|
186
186
|
disabled?: boolean;
|
@@ -207,7 +207,7 @@ export declare const Attach: import("react").FunctionComponent<import("@salutejs
|
|
207
207
|
isLoading?: boolean;
|
208
208
|
loader?: import("react").ReactNode;
|
209
209
|
stretch?: boolean;
|
210
|
-
stretching?: "
|
210
|
+
stretching?: "fixed" | "auto" | "filled";
|
211
211
|
square?: boolean;
|
212
212
|
focused?: boolean;
|
213
213
|
disabled?: boolean;
|
@@ -81,7 +81,7 @@ export declare const Autocomplete: import("react").FunctionComponent<import("@sa
|
|
81
81
|
chipType?: never;
|
82
82
|
chipView?: never;
|
83
83
|
chipValidator?: never;
|
84
|
-
}, "labelPlacement" | "chipView" | "chips" | "onChangeChips" | "enumerationType" | "chipType" | "chipValidator"> & Omit<import("react").InputHTMLAttributes<HTMLInputElement>, "
|
84
|
+
}, "labelPlacement" | "chipView" | "chips" | "onChangeChips" | "enumerationType" | "chipType" | "chipValidator"> & Omit<import("react").InputHTMLAttributes<HTMLInputElement>, "required" | "size"> & import("react").RefAttributes<HTMLInputElement>) | ({
|
85
85
|
size?: string;
|
86
86
|
view?: string;
|
87
87
|
labelPlacement?: string;
|
@@ -136,7 +136,7 @@ export declare const Autocomplete: import("react").FunctionComponent<import("@sa
|
|
136
136
|
chipValidator?: (value: string) => {
|
137
137
|
view?: string;
|
138
138
|
};
|
139
|
-
}, "labelPlacement" | "chipView" | "chips" | "onChangeChips" | "enumerationType" | "chipType" | "chipValidator"> & Omit<import("react").InputHTMLAttributes<HTMLInputElement>, "
|
139
|
+
}, "labelPlacement" | "chipView" | "chips" | "onChangeChips" | "enumerationType" | "chipType" | "chipValidator"> & Omit<import("react").InputHTMLAttributes<HTMLInputElement>, "required" | "size"> & import("react").RefAttributes<HTMLInputElement>) | ({
|
140
140
|
size?: string;
|
141
141
|
view?: string;
|
142
142
|
labelPlacement?: string;
|
@@ -189,7 +189,7 @@ export declare const Autocomplete: import("react").FunctionComponent<import("@sa
|
|
189
189
|
chipType?: never;
|
190
190
|
chipView?: never;
|
191
191
|
chipValidator?: never;
|
192
|
-
}, "labelPlacement" | "chipView" | "chips" | "onChangeChips" | "enumerationType" | "chipType" | "chipValidator"> & Omit<import("react").InputHTMLAttributes<HTMLInputElement>, "
|
192
|
+
}, "labelPlacement" | "chipView" | "chips" | "onChangeChips" | "enumerationType" | "chipType" | "chipValidator"> & Omit<import("react").InputHTMLAttributes<HTMLInputElement>, "required" | "size"> & import("react").RefAttributes<HTMLInputElement>) | ({
|
193
193
|
size?: string;
|
194
194
|
view?: string;
|
195
195
|
labelPlacement?: string;
|
@@ -244,7 +244,7 @@ export declare const Autocomplete: import("react").FunctionComponent<import("@sa
|
|
244
244
|
chipValidator?: (value: string) => {
|
245
245
|
view?: string;
|
246
246
|
};
|
247
|
-
}, "labelPlacement" | "chipView" | "chips" | "onChangeChips" | "enumerationType" | "chipType" | "chipValidator"> & Omit<import("react").InputHTMLAttributes<HTMLInputElement>, "
|
247
|
+
}, "labelPlacement" | "chipView" | "chips" | "onChangeChips" | "enumerationType" | "chipType" | "chipValidator"> & Omit<import("react").InputHTMLAttributes<HTMLInputElement>, "required" | "size"> & import("react").RefAttributes<HTMLInputElement>) | ({
|
248
248
|
size?: string;
|
249
249
|
view?: string;
|
250
250
|
labelPlacement?: string;
|
@@ -297,7 +297,7 @@ export declare const Autocomplete: import("react").FunctionComponent<import("@sa
|
|
297
297
|
chipType?: never;
|
298
298
|
chipView?: never;
|
299
299
|
chipValidator?: never;
|
300
|
-
}, "labelPlacement" | "chipView" | "chips" | "onChangeChips" | "enumerationType" | "chipType" | "chipValidator"> & Omit<import("react").InputHTMLAttributes<HTMLInputElement>, "
|
300
|
+
}, "labelPlacement" | "chipView" | "chips" | "onChangeChips" | "enumerationType" | "chipType" | "chipValidator"> & Omit<import("react").InputHTMLAttributes<HTMLInputElement>, "required" | "size"> & import("react").RefAttributes<HTMLInputElement>) | ({
|
301
301
|
size?: string;
|
302
302
|
view?: string;
|
303
303
|
labelPlacement?: string;
|
@@ -352,7 +352,7 @@ export declare const Autocomplete: import("react").FunctionComponent<import("@sa
|
|
352
352
|
chipValidator?: (value: string) => {
|
353
353
|
view?: string;
|
354
354
|
};
|
355
|
-
}, "labelPlacement" | "chipView" | "chips" | "onChangeChips" | "enumerationType" | "chipType" | "chipValidator"> & Omit<import("react").InputHTMLAttributes<HTMLInputElement>, "
|
355
|
+
}, "labelPlacement" | "chipView" | "chips" | "onChangeChips" | "enumerationType" | "chipType" | "chipValidator"> & Omit<import("react").InputHTMLAttributes<HTMLInputElement>, "required" | "size"> & import("react").RefAttributes<HTMLInputElement>) | ({
|
356
356
|
size?: string;
|
357
357
|
view?: string;
|
358
358
|
labelPlacement?: string;
|
@@ -405,7 +405,7 @@ export declare const Autocomplete: import("react").FunctionComponent<import("@sa
|
|
405
405
|
chipType?: never;
|
406
406
|
chipView?: never;
|
407
407
|
chipValidator?: never;
|
408
|
-
}, "labelPlacement" | "chipView" | "chips" | "onChangeChips" | "enumerationType" | "chipType" | "chipValidator"> & Omit<import("react").InputHTMLAttributes<HTMLInputElement>, "
|
408
|
+
}, "labelPlacement" | "chipView" | "chips" | "onChangeChips" | "enumerationType" | "chipType" | "chipValidator"> & Omit<import("react").InputHTMLAttributes<HTMLInputElement>, "required" | "size"> & import("react").RefAttributes<HTMLInputElement>) | ({
|
409
409
|
size?: string;
|
410
410
|
view?: string;
|
411
411
|
labelPlacement?: string;
|
@@ -460,4 +460,4 @@ export declare const Autocomplete: import("react").FunctionComponent<import("@sa
|
|
460
460
|
chipValidator?: (value: string) => {
|
461
461
|
view?: string;
|
462
462
|
};
|
463
|
-
}, "labelPlacement" | "chipView" | "chips" | "onChangeChips" | "enumerationType" | "chipType" | "chipValidator"> & Omit<import("react").InputHTMLAttributes<HTMLInputElement>, "
|
463
|
+
}, "labelPlacement" | "chipView" | "chips" | "onChangeChips" | "enumerationType" | "chipType" | "chipValidator"> & Omit<import("react").InputHTMLAttributes<HTMLInputElement>, "required" | "size"> & import("react").RefAttributes<HTMLInputElement>))>;
|
@@ -42,7 +42,7 @@ declare const ButtonComponent: import("react").FunctionComponent<import("@salute
|
|
42
42
|
isLoading?: boolean;
|
43
43
|
loader?: import("react").ReactNode;
|
44
44
|
stretch?: boolean;
|
45
|
-
stretching?: "
|
45
|
+
stretching?: "fixed" | "auto" | "filled";
|
46
46
|
square?: boolean;
|
47
47
|
focused?: boolean;
|
48
48
|
disabled?: boolean;
|
@@ -63,7 +63,7 @@ declare const ButtonComponent: import("react").FunctionComponent<import("@salute
|
|
63
63
|
isLoading?: boolean;
|
64
64
|
loader?: import("react").ReactNode;
|
65
65
|
stretch?: boolean;
|
66
|
-
stretching?: "
|
66
|
+
stretching?: "fixed" | "auto" | "filled";
|
67
67
|
square?: boolean;
|
68
68
|
focused?: boolean;
|
69
69
|
disabled?: boolean;
|
@@ -126,7 +126,7 @@ export declare const Button: import("react").FunctionComponent<import("@salutejs
|
|
126
126
|
isLoading?: boolean;
|
127
127
|
loader?: import("react").ReactNode;
|
128
128
|
stretch?: boolean;
|
129
|
-
stretching?: "
|
129
|
+
stretching?: "fixed" | "auto" | "filled";
|
130
130
|
square?: boolean;
|
131
131
|
focused?: boolean;
|
132
132
|
disabled?: boolean;
|
@@ -147,7 +147,7 @@ export declare const Button: import("react").FunctionComponent<import("@salutejs
|
|
147
147
|
isLoading?: boolean;
|
148
148
|
loader?: import("react").ReactNode;
|
149
149
|
stretch?: boolean;
|
150
|
-
stretching?: "
|
150
|
+
stretching?: "fixed" | "auto" | "filled";
|
151
151
|
square?: boolean;
|
152
152
|
focused?: boolean;
|
153
153
|
disabled?: boolean;
|
@@ -85,7 +85,7 @@ declare const ComboboxNew: React.FunctionComponent<import("@salutejs/plasma-new-
|
|
85
85
|
hintOffset?: [number, number];
|
86
86
|
hintWidth?: string;
|
87
87
|
hintContentLeft?: React.ReactNode;
|
88
|
-
} & Omit<React.ButtonHTMLAttributes<HTMLInputElement>, "
|
88
|
+
} & Omit<React.ButtonHTMLAttributes<HTMLInputElement>, "name" | "onChange" | "defaultValue" | "value"> & React.RefAttributes<HTMLInputElement>) | ({
|
89
89
|
items: ComboboxItemOption[];
|
90
90
|
placement?: import("@salutejs/plasma-new-hope/types/components/Combobox/ComboboxNew/Combobox.types").Placement;
|
91
91
|
placeholder?: string;
|
@@ -139,7 +139,7 @@ declare const ComboboxNew: React.FunctionComponent<import("@salutejs/plasma-new-
|
|
139
139
|
hintOffset?: never;
|
140
140
|
hintWidth?: never;
|
141
141
|
hintContentLeft?: never;
|
142
|
-
} & Omit<React.ButtonHTMLAttributes<HTMLInputElement>, "
|
142
|
+
} & Omit<React.ButtonHTMLAttributes<HTMLInputElement>, "name" | "onChange" | "defaultValue" | "value"> & React.RefAttributes<HTMLInputElement>) | ({
|
143
143
|
items: ComboboxItemOption[];
|
144
144
|
placement?: import("@salutejs/plasma-new-hope/types/components/Combobox/ComboboxNew/Combobox.types").Placement;
|
145
145
|
placeholder?: string;
|
@@ -193,7 +193,7 @@ declare const ComboboxNew: React.FunctionComponent<import("@salutejs/plasma-new-
|
|
193
193
|
hintOffset?: [number, number];
|
194
194
|
hintWidth?: string;
|
195
195
|
hintContentLeft?: React.ReactNode;
|
196
|
-
} & Omit<React.ButtonHTMLAttributes<HTMLInputElement>, "
|
196
|
+
} & Omit<React.ButtonHTMLAttributes<HTMLInputElement>, "name" | "onChange" | "defaultValue" | "value"> & React.RefAttributes<HTMLInputElement>) | ({
|
197
197
|
items: ComboboxItemOption[];
|
198
198
|
placement?: import("@salutejs/plasma-new-hope/types/components/Combobox/ComboboxNew/Combobox.types").Placement;
|
199
199
|
placeholder?: string;
|
@@ -247,7 +247,7 @@ declare const ComboboxNew: React.FunctionComponent<import("@salutejs/plasma-new-
|
|
247
247
|
hintOffset?: never;
|
248
248
|
hintWidth?: never;
|
249
249
|
hintContentLeft?: never;
|
250
|
-
} & Omit<React.ButtonHTMLAttributes<HTMLInputElement>, "
|
250
|
+
} & Omit<React.ButtonHTMLAttributes<HTMLInputElement>, "name" | "onChange" | "defaultValue" | "value"> & React.RefAttributes<HTMLInputElement>) | ({
|
251
251
|
items: ComboboxItemOption[];
|
252
252
|
placement?: import("@salutejs/plasma-new-hope/types/components/Combobox/ComboboxNew/Combobox.types").Placement;
|
253
253
|
placeholder?: string;
|
@@ -301,7 +301,7 @@ declare const ComboboxNew: React.FunctionComponent<import("@salutejs/plasma-new-
|
|
301
301
|
hintOffset?: [number, number];
|
302
302
|
hintWidth?: string;
|
303
303
|
hintContentLeft?: React.ReactNode;
|
304
|
-
} & Omit<React.ButtonHTMLAttributes<HTMLInputElement>, "
|
304
|
+
} & Omit<React.ButtonHTMLAttributes<HTMLInputElement>, "name" | "onChange" | "defaultValue" | "value"> & React.RefAttributes<HTMLInputElement>) | ({
|
305
305
|
items: ComboboxItemOption[];
|
306
306
|
placement?: import("@salutejs/plasma-new-hope/types/components/Combobox/ComboboxNew/Combobox.types").Placement;
|
307
307
|
placeholder?: string;
|
@@ -355,7 +355,7 @@ declare const ComboboxNew: React.FunctionComponent<import("@salutejs/plasma-new-
|
|
355
355
|
hintOffset?: never;
|
356
356
|
hintWidth?: never;
|
357
357
|
hintContentLeft?: never;
|
358
|
-
} & Omit<React.ButtonHTMLAttributes<HTMLInputElement>, "
|
358
|
+
} & Omit<React.ButtonHTMLAttributes<HTMLInputElement>, "name" | "onChange" | "defaultValue" | "value"> & React.RefAttributes<HTMLInputElement>) | ({
|
359
359
|
items: ComboboxItemOption[];
|
360
360
|
placement?: import("@salutejs/plasma-new-hope/types/components/Combobox/ComboboxNew/Combobox.types").Placement;
|
361
361
|
placeholder?: string;
|
@@ -409,7 +409,7 @@ declare const ComboboxNew: React.FunctionComponent<import("@salutejs/plasma-new-
|
|
409
409
|
hintOffset?: [number, number];
|
410
410
|
hintWidth?: string;
|
411
411
|
hintContentLeft?: React.ReactNode;
|
412
|
-
} & Omit<React.ButtonHTMLAttributes<HTMLInputElement>, "
|
412
|
+
} & Omit<React.ButtonHTMLAttributes<HTMLInputElement>, "name" | "onChange" | "defaultValue" | "value"> & React.RefAttributes<HTMLInputElement>) | ({
|
413
413
|
items: ComboboxItemOption[];
|
414
414
|
placement?: import("@salutejs/plasma-new-hope/types/components/Combobox/ComboboxNew/Combobox.types").Placement;
|
415
415
|
placeholder?: string;
|
@@ -463,7 +463,7 @@ declare const ComboboxNew: React.FunctionComponent<import("@salutejs/plasma-new-
|
|
463
463
|
hintOffset?: never;
|
464
464
|
hintWidth?: never;
|
465
465
|
hintContentLeft?: never;
|
466
|
-
} & Omit<React.ButtonHTMLAttributes<HTMLInputElement>, "
|
466
|
+
} & Omit<React.ButtonHTMLAttributes<HTMLInputElement>, "name" | "onChange" | "defaultValue" | "value"> & React.RefAttributes<HTMLInputElement>) | ({
|
467
467
|
items: ComboboxItemOption[];
|
468
468
|
placement?: import("@salutejs/plasma-new-hope/types/components/Combobox/ComboboxNew/Combobox.types").Placement;
|
469
469
|
placeholder?: string;
|
@@ -517,7 +517,7 @@ declare const ComboboxNew: React.FunctionComponent<import("@salutejs/plasma-new-
|
|
517
517
|
hintOffset?: [number, number];
|
518
518
|
hintWidth?: string;
|
519
519
|
hintContentLeft?: React.ReactNode;
|
520
|
-
} & Omit<React.ButtonHTMLAttributes<HTMLInputElement>, "
|
520
|
+
} & Omit<React.ButtonHTMLAttributes<HTMLInputElement>, "name" | "onChange" | "defaultValue" | "value"> & React.RefAttributes<HTMLInputElement>) | ({
|
521
521
|
items: ComboboxItemOption[];
|
522
522
|
placement?: import("@salutejs/plasma-new-hope/types/components/Combobox/ComboboxNew/Combobox.types").Placement;
|
523
523
|
placeholder?: string;
|
@@ -571,7 +571,7 @@ declare const ComboboxNew: React.FunctionComponent<import("@salutejs/plasma-new-
|
|
571
571
|
hintOffset?: never;
|
572
572
|
hintWidth?: never;
|
573
573
|
hintContentLeft?: never;
|
574
|
-
} & Omit<React.ButtonHTMLAttributes<HTMLInputElement>, "
|
574
|
+
} & Omit<React.ButtonHTMLAttributes<HTMLInputElement>, "name" | "onChange" | "defaultValue" | "value"> & React.RefAttributes<HTMLInputElement>) | ({
|
575
575
|
items: ComboboxItemOption[];
|
576
576
|
placement?: import("@salutejs/plasma-new-hope/types/components/Combobox/ComboboxNew/Combobox.types").Placement;
|
577
577
|
placeholder?: string;
|
@@ -625,7 +625,7 @@ declare const ComboboxNew: React.FunctionComponent<import("@salutejs/plasma-new-
|
|
625
625
|
hintOffset?: [number, number];
|
626
626
|
hintWidth?: string;
|
627
627
|
hintContentLeft?: React.ReactNode;
|
628
|
-
} & Omit<React.ButtonHTMLAttributes<HTMLInputElement>, "
|
628
|
+
} & Omit<React.ButtonHTMLAttributes<HTMLInputElement>, "name" | "onChange" | "defaultValue" | "value"> & React.RefAttributes<HTMLInputElement>) | ({
|
629
629
|
items: ComboboxItemOption[];
|
630
630
|
placement?: import("@salutejs/plasma-new-hope/types/components/Combobox/ComboboxNew/Combobox.types").Placement;
|
631
631
|
placeholder?: string;
|
@@ -679,7 +679,7 @@ declare const ComboboxNew: React.FunctionComponent<import("@salutejs/plasma-new-
|
|
679
679
|
hintOffset?: never;
|
680
680
|
hintWidth?: never;
|
681
681
|
hintContentLeft?: never;
|
682
|
-
} & Omit<React.ButtonHTMLAttributes<HTMLInputElement>, "
|
682
|
+
} & Omit<React.ButtonHTMLAttributes<HTMLInputElement>, "name" | "onChange" | "defaultValue" | "value"> & React.RefAttributes<HTMLInputElement>) | ({
|
683
683
|
items: ComboboxItemOption[];
|
684
684
|
placement?: import("@salutejs/plasma-new-hope/types/components/Combobox/ComboboxNew/Combobox.types").Placement;
|
685
685
|
placeholder?: string;
|
@@ -733,7 +733,7 @@ declare const ComboboxNew: React.FunctionComponent<import("@salutejs/plasma-new-
|
|
733
733
|
hintOffset?: [number, number];
|
734
734
|
hintWidth?: string;
|
735
735
|
hintContentLeft?: React.ReactNode;
|
736
|
-
} & Omit<React.ButtonHTMLAttributes<HTMLInputElement>, "
|
736
|
+
} & Omit<React.ButtonHTMLAttributes<HTMLInputElement>, "name" | "onChange" | "defaultValue" | "value"> & React.RefAttributes<HTMLInputElement>) | ({
|
737
737
|
items: ComboboxItemOption[];
|
738
738
|
placement?: import("@salutejs/plasma-new-hope/types/components/Combobox/ComboboxNew/Combobox.types").Placement;
|
739
739
|
placeholder?: string;
|
@@ -787,7 +787,7 @@ declare const ComboboxNew: React.FunctionComponent<import("@salutejs/plasma-new-
|
|
787
787
|
hintOffset?: never;
|
788
788
|
hintWidth?: never;
|
789
789
|
hintContentLeft?: never;
|
790
|
-
} & Omit<React.ButtonHTMLAttributes<HTMLInputElement>, "
|
790
|
+
} & Omit<React.ButtonHTMLAttributes<HTMLInputElement>, "name" | "onChange" | "defaultValue" | "value"> & React.RefAttributes<HTMLInputElement>) | ({
|
791
791
|
items: ComboboxItemOption[];
|
792
792
|
placement?: import("@salutejs/plasma-new-hope/types/components/Combobox/ComboboxNew/Combobox.types").Placement;
|
793
793
|
placeholder?: string;
|
@@ -841,7 +841,7 @@ declare const ComboboxNew: React.FunctionComponent<import("@salutejs/plasma-new-
|
|
841
841
|
hintOffset?: [number, number];
|
842
842
|
hintWidth?: string;
|
843
843
|
hintContentLeft?: React.ReactNode;
|
844
|
-
} & Omit<React.ButtonHTMLAttributes<HTMLInputElement>, "
|
844
|
+
} & Omit<React.ButtonHTMLAttributes<HTMLInputElement>, "name" | "onChange" | "defaultValue" | "value"> & React.RefAttributes<HTMLInputElement>) | ({
|
845
845
|
items: ComboboxItemOption[];
|
846
846
|
placement?: import("@salutejs/plasma-new-hope/types/components/Combobox/ComboboxNew/Combobox.types").Placement;
|
847
847
|
placeholder?: string;
|
@@ -895,7 +895,7 @@ declare const ComboboxNew: React.FunctionComponent<import("@salutejs/plasma-new-
|
|
895
895
|
hintOffset?: never;
|
896
896
|
hintWidth?: never;
|
897
897
|
hintContentLeft?: never;
|
898
|
-
} & Omit<React.ButtonHTMLAttributes<HTMLInputElement>, "
|
898
|
+
} & Omit<React.ButtonHTMLAttributes<HTMLInputElement>, "name" | "onChange" | "defaultValue" | "value"> & React.RefAttributes<HTMLInputElement>) | ({
|
899
899
|
items: ComboboxItemOption[];
|
900
900
|
placement?: import("@salutejs/plasma-new-hope/types/components/Combobox/ComboboxNew/Combobox.types").Placement;
|
901
901
|
placeholder?: string;
|
@@ -949,7 +949,7 @@ declare const ComboboxNew: React.FunctionComponent<import("@salutejs/plasma-new-
|
|
949
949
|
hintOffset?: [number, number];
|
950
950
|
hintWidth?: string;
|
951
951
|
hintContentLeft?: React.ReactNode;
|
952
|
-
} & Omit<React.ButtonHTMLAttributes<HTMLInputElement>, "
|
952
|
+
} & Omit<React.ButtonHTMLAttributes<HTMLInputElement>, "name" | "onChange" | "defaultValue" | "value"> & React.RefAttributes<HTMLInputElement>) | ({
|
953
953
|
items: ComboboxItemOption[];
|
954
954
|
placement?: import("@salutejs/plasma-new-hope/types/components/Combobox/ComboboxNew/Combobox.types").Placement;
|
955
955
|
placeholder?: string;
|
@@ -1003,7 +1003,7 @@ declare const ComboboxNew: React.FunctionComponent<import("@salutejs/plasma-new-
|
|
1003
1003
|
hintOffset?: never;
|
1004
1004
|
hintWidth?: never;
|
1005
1005
|
hintContentLeft?: never;
|
1006
|
-
} & Omit<React.ButtonHTMLAttributes<HTMLInputElement>, "
|
1006
|
+
} & Omit<React.ButtonHTMLAttributes<HTMLInputElement>, "name" | "onChange" | "defaultValue" | "value"> & React.RefAttributes<HTMLInputElement>) | ({
|
1007
1007
|
items: ComboboxItemOption[];
|
1008
1008
|
placement?: import("@salutejs/plasma-new-hope/types/components/Combobox/ComboboxNew/Combobox.types").Placement;
|
1009
1009
|
placeholder?: string;
|
@@ -1057,7 +1057,7 @@ declare const ComboboxNew: React.FunctionComponent<import("@salutejs/plasma-new-
|
|
1057
1057
|
hintOffset?: [number, number];
|
1058
1058
|
hintWidth?: string;
|
1059
1059
|
hintContentLeft?: React.ReactNode;
|
1060
|
-
} & Omit<React.ButtonHTMLAttributes<HTMLInputElement>, "
|
1060
|
+
} & Omit<React.ButtonHTMLAttributes<HTMLInputElement>, "name" | "onChange" | "defaultValue" | "value"> & React.RefAttributes<HTMLInputElement>) | ({
|
1061
1061
|
items: ComboboxItemOption[];
|
1062
1062
|
placement?: import("@salutejs/plasma-new-hope/types/components/Combobox/ComboboxNew/Combobox.types").Placement;
|
1063
1063
|
placeholder?: string;
|
@@ -1111,7 +1111,7 @@ declare const ComboboxNew: React.FunctionComponent<import("@salutejs/plasma-new-
|
|
1111
1111
|
hintOffset?: never;
|
1112
1112
|
hintWidth?: never;
|
1113
1113
|
hintContentLeft?: never;
|
1114
|
-
} & Omit<React.ButtonHTMLAttributes<HTMLInputElement>, "
|
1114
|
+
} & Omit<React.ButtonHTMLAttributes<HTMLInputElement>, "name" | "onChange" | "defaultValue" | "value"> & React.RefAttributes<HTMLInputElement>) | ({
|
1115
1115
|
items: ComboboxItemOption[];
|
1116
1116
|
placement?: import("@salutejs/plasma-new-hope/types/components/Combobox/ComboboxNew/Combobox.types").Placement;
|
1117
1117
|
placeholder?: string;
|
@@ -1165,7 +1165,7 @@ declare const ComboboxNew: React.FunctionComponent<import("@salutejs/plasma-new-
|
|
1165
1165
|
hintOffset?: [number, number];
|
1166
1166
|
hintWidth?: string;
|
1167
1167
|
hintContentLeft?: React.ReactNode;
|
1168
|
-
} & Omit<React.ButtonHTMLAttributes<HTMLInputElement>, "
|
1168
|
+
} & Omit<React.ButtonHTMLAttributes<HTMLInputElement>, "name" | "onChange" | "defaultValue" | "value"> & React.RefAttributes<HTMLInputElement>) | ({
|
1169
1169
|
items: ComboboxItemOption[];
|
1170
1170
|
placement?: import("@salutejs/plasma-new-hope/types/components/Combobox/ComboboxNew/Combobox.types").Placement;
|
1171
1171
|
placeholder?: string;
|
@@ -1219,7 +1219,7 @@ declare const ComboboxNew: React.FunctionComponent<import("@salutejs/plasma-new-
|
|
1219
1219
|
hintOffset?: never;
|
1220
1220
|
hintWidth?: never;
|
1221
1221
|
hintContentLeft?: never;
|
1222
|
-
} & Omit<React.ButtonHTMLAttributes<HTMLInputElement>, "
|
1222
|
+
} & Omit<React.ButtonHTMLAttributes<HTMLInputElement>, "name" | "onChange" | "defaultValue" | "value"> & React.RefAttributes<HTMLInputElement>) | ({
|
1223
1223
|
items: ComboboxItemOption[];
|
1224
1224
|
placement?: import("@salutejs/plasma-new-hope/types/components/Combobox/ComboboxNew/Combobox.types").Placement;
|
1225
1225
|
placeholder?: string;
|
@@ -1273,7 +1273,7 @@ declare const ComboboxNew: React.FunctionComponent<import("@salutejs/plasma-new-
|
|
1273
1273
|
hintOffset?: [number, number];
|
1274
1274
|
hintWidth?: string;
|
1275
1275
|
hintContentLeft?: React.ReactNode;
|
1276
|
-
} & Omit<React.ButtonHTMLAttributes<HTMLInputElement>, "
|
1276
|
+
} & Omit<React.ButtonHTMLAttributes<HTMLInputElement>, "name" | "onChange" | "defaultValue" | "value"> & React.RefAttributes<HTMLInputElement>) | ({
|
1277
1277
|
items: ComboboxItemOption[];
|
1278
1278
|
placement?: import("@salutejs/plasma-new-hope/types/components/Combobox/ComboboxNew/Combobox.types").Placement;
|
1279
1279
|
placeholder?: string;
|
@@ -1327,7 +1327,7 @@ declare const ComboboxNew: React.FunctionComponent<import("@salutejs/plasma-new-
|
|
1327
1327
|
hintOffset?: never;
|
1328
1328
|
hintWidth?: never;
|
1329
1329
|
hintContentLeft?: never;
|
1330
|
-
} & Omit<React.ButtonHTMLAttributes<HTMLInputElement>, "
|
1330
|
+
} & Omit<React.ButtonHTMLAttributes<HTMLInputElement>, "name" | "onChange" | "defaultValue" | "value"> & React.RefAttributes<HTMLInputElement>))>;
|
1331
1331
|
type PropsFromConfig = keyof typeof config['variations'];
|
1332
1332
|
export type Props<T extends ComboboxItemOption> = DistributiveOmit<ComboboxProps<T>, PropsFromConfig> & DistributivePick<ComponentProps<typeof ComboboxNew>, PropsFromConfig>;
|
1333
1333
|
declare const Combobox: <T extends ComboboxItemOption>(props: Props<T> & React.RefAttributes<HTMLInputElement>) => React.ReactElement | null;
|
@@ -30,13 +30,13 @@ export declare const DatePicker: import("react").FunctionComponent<import("@salu
|
|
30
30
|
textBefore?: string;
|
31
31
|
textAfter?: string;
|
32
32
|
autoComplete?: string;
|
33
|
-
onCommitDate?: (value: Date | string, error?: boolean, success?: boolean, dateInfo?:
|
34
|
-
onChangeValue?: (event: import("react").SyntheticEvent<HTMLInputElement> | null, value?: string, originalDate?:
|
33
|
+
onCommitDate?: (value: Date | string, error?: boolean, success?: boolean, dateInfo?: DateInfo, originalDate?: Date, isoDate?: string) => void;
|
34
|
+
onChangeValue?: (event: import("react").SyntheticEvent<HTMLInputElement> | null, value?: string, originalDate?: DateType, isoDate?: string) => void;
|
35
35
|
onChange?: (event: {
|
36
36
|
target: {
|
37
37
|
value?: string;
|
38
38
|
name?: string;
|
39
|
-
originalDate?:
|
39
|
+
originalDate?: DateType;
|
40
40
|
isoDate?: string;
|
41
41
|
};
|
42
42
|
}) => void;
|
@@ -42,7 +42,7 @@ declare const DropdownNewHope: React.FunctionComponent<import("@salutejs/plasma-
|
|
42
42
|
hoverIndex?: number;
|
43
43
|
} & React.HTMLAttributes<HTMLDivElement> & React.RefAttributes<HTMLDivElement>>;
|
44
44
|
export type DropdownProps<T extends DropdownItemOption> = Omit<DropdownNewProps<T>, 'size' | 'view'> & Pick<ComponentProps<typeof DropdownNewHope>, 'size' | 'view'>;
|
45
|
-
declare const Dropdown: <T extends DropdownItemOption>(props: Omit<DropdownNewProps<T>, "
|
45
|
+
declare const Dropdown: <T extends DropdownItemOption>(props: Omit<DropdownNewProps<T>, "view" | "size"> & Pick<import("@salutejs/plasma-new-hope/types/engines/types").PropsType<{
|
46
46
|
size: {
|
47
47
|
xl: import("@salutejs/plasma-new-hope/types/engines/types").PolymorphicClassName;
|
48
48
|
l: import("@salutejs/plasma-new-hope/types/engines/types").PolymorphicClassName;
|
@@ -82,5 +82,5 @@ declare const Dropdown: <T extends DropdownItemOption>(props: Omit<DropdownNewPr
|
|
82
82
|
onItemClick?: ((item: import("@salutejs/plasma-new-hope/types/components/Dropdown").DropdownItemOption, event: React.SyntheticEvent) => void) | undefined;
|
83
83
|
listHeight?: React.CSSProperties["height"];
|
84
84
|
hoverIndex?: number;
|
85
|
-
} & React.HTMLAttributes<HTMLDivElement> & React.RefAttributes<HTMLDivElement>, "
|
85
|
+
} & React.HTMLAttributes<HTMLDivElement> & React.RefAttributes<HTMLDivElement>, "view" | "size"> & React.RefAttributes<HTMLButtonElement>) => React.ReactElement | null;
|
86
86
|
export { Dropdown };
|
@@ -39,7 +39,7 @@ export declare const IconButton: import("react").FunctionComponent<import("@salu
|
|
39
39
|
isLoading?: boolean;
|
40
40
|
loader?: import("react").ReactNode;
|
41
41
|
stretch?: boolean;
|
42
|
-
stretching?: "
|
42
|
+
stretching?: "fixed" | "auto" | "filled";
|
43
43
|
square?: boolean;
|
44
44
|
focused?: boolean;
|
45
45
|
disabled?: boolean;
|
@@ -60,7 +60,7 @@ export declare const IconButton: import("react").FunctionComponent<import("@salu
|
|
60
60
|
isLoading?: boolean;
|
61
61
|
loader?: import("react").ReactNode;
|
62
62
|
stretch?: boolean;
|
63
|
-
stretching?: "
|
63
|
+
stretching?: "fixed" | "auto" | "filled";
|
64
64
|
square?: boolean;
|
65
65
|
focused?: boolean;
|
66
66
|
disabled?: boolean;
|
@@ -76,7 +76,7 @@ export declare const Mask: import("react").ForwardRefExoticComponent<(Omit<impor
|
|
76
76
|
chipType?: never;
|
77
77
|
chipView?: never;
|
78
78
|
chipValidator?: never;
|
79
|
-
} & Omit<import("@salutejs/plasma-new-hope/styled-components").InputHTMLAttributes<HTMLInputElement>, "
|
79
|
+
} & Omit<import("@salutejs/plasma-new-hope/styled-components").InputHTMLAttributes<HTMLInputElement>, "required" | "size"> & 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<{
|
80
80
|
view: {
|
81
81
|
default: import("@salutejs/plasma-new-hope/types/engines/types").PolymorphicClassName;
|
82
82
|
positive: import("@salutejs/plasma-new-hope/types/engines/types").PolymorphicClassName;
|
@@ -156,7 +156,7 @@ export declare const Mask: import("react").ForwardRefExoticComponent<(Omit<impor
|
|
156
156
|
chipValidator?: (value: string) => {
|
157
157
|
view?: string;
|
158
158
|
};
|
159
|
-
} & Omit<import("@salutejs/plasma-new-hope/styled-components").InputHTMLAttributes<HTMLInputElement>, "
|
159
|
+
} & Omit<import("@salutejs/plasma-new-hope/styled-components").InputHTMLAttributes<HTMLInputElement>, "required" | "size"> & 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<{
|
160
160
|
view: {
|
161
161
|
default: import("@salutejs/plasma-new-hope/types/engines/types").PolymorphicClassName;
|
162
162
|
positive: import("@salutejs/plasma-new-hope/types/engines/types").PolymorphicClassName;
|
@@ -234,7 +234,7 @@ export declare const Mask: import("react").ForwardRefExoticComponent<(Omit<impor
|
|
234
234
|
chipType?: never;
|
235
235
|
chipView?: never;
|
236
236
|
chipValidator?: never;
|
237
|
-
} & Omit<import("@salutejs/plasma-new-hope/styled-components").InputHTMLAttributes<HTMLInputElement>, "
|
237
|
+
} & Omit<import("@salutejs/plasma-new-hope/styled-components").InputHTMLAttributes<HTMLInputElement>, "required" | "size"> & 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<{
|
238
238
|
view: {
|
239
239
|
default: import("@salutejs/plasma-new-hope/types/engines/types").PolymorphicClassName;
|
240
240
|
positive: import("@salutejs/plasma-new-hope/types/engines/types").PolymorphicClassName;
|
@@ -314,7 +314,7 @@ export declare const Mask: import("react").ForwardRefExoticComponent<(Omit<impor
|
|
314
314
|
chipValidator?: (value: string) => {
|
315
315
|
view?: string;
|
316
316
|
};
|
317
|
-
} & Omit<import("@salutejs/plasma-new-hope/styled-components").InputHTMLAttributes<HTMLInputElement>, "
|
317
|
+
} & Omit<import("@salutejs/plasma-new-hope/styled-components").InputHTMLAttributes<HTMLInputElement>, "required" | "size"> & 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<{
|
318
318
|
view: {
|
319
319
|
default: import("@salutejs/plasma-new-hope/types/engines/types").PolymorphicClassName;
|
320
320
|
positive: import("@salutejs/plasma-new-hope/types/engines/types").PolymorphicClassName;
|
@@ -392,7 +392,7 @@ export declare const Mask: import("react").ForwardRefExoticComponent<(Omit<impor
|
|
392
392
|
chipType?: never;
|
393
393
|
chipView?: never;
|
394
394
|
chipValidator?: never;
|
395
|
-
} & Omit<import("@salutejs/plasma-new-hope/styled-components").InputHTMLAttributes<HTMLInputElement>, "
|
395
|
+
} & Omit<import("@salutejs/plasma-new-hope/styled-components").InputHTMLAttributes<HTMLInputElement>, "required" | "size"> & 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<{
|
396
396
|
view: {
|
397
397
|
default: import("@salutejs/plasma-new-hope/types/engines/types").PolymorphicClassName;
|
398
398
|
positive: import("@salutejs/plasma-new-hope/types/engines/types").PolymorphicClassName;
|
@@ -472,7 +472,7 @@ export declare const Mask: import("react").ForwardRefExoticComponent<(Omit<impor
|
|
472
472
|
chipValidator?: (value: string) => {
|
473
473
|
view?: string;
|
474
474
|
};
|
475
|
-
} & Omit<import("@salutejs/plasma-new-hope/styled-components").InputHTMLAttributes<HTMLInputElement>, "
|
475
|
+
} & Omit<import("@salutejs/plasma-new-hope/styled-components").InputHTMLAttributes<HTMLInputElement>, "required" | "size"> & 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<{
|
476
476
|
view: {
|
477
477
|
default: import("@salutejs/plasma-new-hope/types/engines/types").PolymorphicClassName;
|
478
478
|
positive: import("@salutejs/plasma-new-hope/types/engines/types").PolymorphicClassName;
|
@@ -550,7 +550,7 @@ export declare const Mask: import("react").ForwardRefExoticComponent<(Omit<impor
|
|
550
550
|
chipType?: never;
|
551
551
|
chipView?: never;
|
552
552
|
chipValidator?: never;
|
553
|
-
} & Omit<import("@salutejs/plasma-new-hope/styled-components").InputHTMLAttributes<HTMLInputElement>, "
|
553
|
+
} & Omit<import("@salutejs/plasma-new-hope/styled-components").InputHTMLAttributes<HTMLInputElement>, "required" | "size"> & 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<{
|
554
554
|
view: {
|
555
555
|
default: import("@salutejs/plasma-new-hope/types/engines/types").PolymorphicClassName;
|
556
556
|
positive: import("@salutejs/plasma-new-hope/types/engines/types").PolymorphicClassName;
|
@@ -630,4 +630,4 @@ export declare const Mask: import("react").ForwardRefExoticComponent<(Omit<impor
|
|
630
630
|
chipValidator?: (value: string) => {
|
631
631
|
view?: string;
|
632
632
|
};
|
633
|
-
} & Omit<import("@salutejs/plasma-new-hope/styled-components").InputHTMLAttributes<HTMLInputElement>, "
|
633
|
+
} & Omit<import("@salutejs/plasma-new-hope/styled-components").InputHTMLAttributes<HTMLInputElement>, "required" | "size"> & import("react").RefAttributes<HTMLInputElement> & import("@salutejs/plasma-new-hope/types/components/Mask/Mask.types").MaskProps, "ref">) & import("react").RefAttributes<HTMLInputElement>>;
|
@@ -53,7 +53,7 @@ export declare const NumberInput: import("react").FunctionComponent<import("@sal
|
|
53
53
|
} & {
|
54
54
|
segmentation?: "clear";
|
55
55
|
inputBackgroundType?: never;
|
56
|
-
} & Omit<import("react").InputHTMLAttributes<HTMLInputElement>, "
|
56
|
+
} & Omit<import("react").InputHTMLAttributes<HTMLInputElement>, "onChange" | "value" | "size"> & import("react").RefAttributes<HTMLInputElement>) | ({
|
57
57
|
value?: number;
|
58
58
|
min?: number;
|
59
59
|
max?: number;
|
@@ -79,4 +79,4 @@ export declare const NumberInput: import("react").FunctionComponent<import("@sal
|
|
79
79
|
} & {
|
80
80
|
segmentation?: string;
|
81
81
|
inputBackgroundType?: string;
|
82
|
-
} & Omit<import("react").InputHTMLAttributes<HTMLInputElement>, "
|
82
|
+
} & Omit<import("react").InputHTMLAttributes<HTMLInputElement>, "onChange" | "value" | "size"> & import("react").RefAttributes<HTMLInputElement>))>;
|
@@ -1,13 +1,13 @@
|
|
1
|
-
.s73zzyg{--plasma-radiobox-margin:0;--plasma-radiobox-trigger-padding:0.0625rem 0;--plasma-radiobox-trigger-size:1rem;--plasma-radiobox-trigger-border-radius:1.125rem;--plasma-
|
2
|
-
.m4ly3co{--plasma-radiobox-margin:0;--plasma-radiobox-trigger-padding:0.0625rem;--plasma-radiobox-trigger-size:1.375rem;--plasma-radiobox-trigger-border-radius:1.125rem;--plasma-
|
3
|
-
.l1tfsl8x{--plasma-radiobox-margin:0;--plasma-radiobox-trigger-padding:0.0625rem;--plasma-radiobox-trigger-size:1.375rem;--plasma-radiobox-trigger-border-radius:1.125rem;--plasma-
|
4
|
-
.a1ozwyr6{--plasma-radiobox-fill-color:var(--text-accent);--plasma-radiobox-ellipse-color:var(--on-dark-text-primary);--plasma-radiobox-description-color:var(--text-secondary);--plasma-radiobox-trigger-background-color:transparent;--plasma-radiobox-trigger-border-color:var(--text-secondary);--plasma-
|
5
|
-
.d14hc9vg{--plasma-radiobox-fill-color:var(--text-primary);--plasma-radiobox-ellipse-color:var(--inverse-text-primary);--plasma-radiobox-description-color:var(--text-secondary);--plasma-radiobox-trigger-background-color:transparent;--plasma-radiobox-trigger-border-color:var(--text-secondary);--plasma-
|
6
|
-
.sdvkjxv{--plasma-radiobox-fill-color:var(--text-secondary);--plasma-radiobox-ellipse-color:var(--inverse-text-primary);--plasma-radiobox-description-color:var(--text-secondary);--plasma-radiobox-trigger-background-color:transparent;--plasma-radiobox-trigger-border-color:var(--text-secondary);--plasma-
|
7
|
-
.tnfmi2g{--plasma-radiobox-fill-color:var(--text-tertiary);--plasma-radiobox-ellipse-color:var(--inverse-text-primary);--plasma-radiobox-description-color:var(--text-secondary);--plasma-radiobox-trigger-background-color:transparent;--plasma-radiobox-trigger-border-color:var(--text-secondary);--plasma-
|
8
|
-
.prb64ah{--plasma-radiobox-fill-color:var(--text-paragraph);--plasma-radiobox-ellipse-color:var(--inverse-text-primary);--plasma-radiobox-description-color:var(--text-secondary);--plasma-radiobox-trigger-background-color:transparent;--plasma-radiobox-trigger-border-color:var(--text-secondary);--plasma-
|
9
|
-
.pk81wy1{--plasma-radiobox-fill-color:var(--text-positive);--plasma-radiobox-ellipse-color:var(--on-dark-text-primary);--plasma-radiobox-description-color:var(--text-secondary);--plasma-radiobox-trigger-background-color:transparent;--plasma-radiobox-trigger-border-color:var(--text-secondary);--plasma-
|
10
|
-
.w1w9rr57{--plasma-radiobox-fill-color:var(--text-warning);--plasma-radiobox-ellipse-color:var(--on-dark-text-primary);--plasma-radiobox-description-color:var(--text-secondary);--plasma-radiobox-trigger-background-color:transparent;--plasma-radiobox-trigger-border-color:var(--text-secondary);--plasma-
|
11
|
-
.n7d8juw{--plasma-radiobox-fill-color:var(--text-negative);--plasma-radiobox-ellipse-color:var(--on-dark-text-primary);--plasma-radiobox-description-color:var(--text-secondary);--plasma-radiobox-trigger-background-color:transparent;--plasma-radiobox-trigger-border-color:var(--text-secondary);--plasma-
|
1
|
+
.s73zzyg{--plasma-radiobox-margin:0;--plasma-radiobox-trigger-padding:0.0625rem 0;--plasma-radiobox-trigger-size:1rem;--plasma-radiobox-trigger-border-radius:1.125rem;--plasma-radiobox-trigger-border-width:0.125rem;--plasma-radiobox-ellipse-size:0.5rem;--plasma-radiobox-content-top-offset:0;--plasma-radiobox-content-left-offset:0.5rem;--plasma-radiobox-description-margin-top:0.125rem;--plasma-radiobox-label-font-family:var(--plasma-typo-body-s-font-family);--plasma-radiobox-label-font-size:var(--plasma-typo-body-s-font-size);--plasma-radiobox-label-font-style:var(--plasma-typo-body-s-font-style);--plasma-radiobox-label-font-weight:var(--plasma-typo-body-s-font-weight);--plasma-radiobox-label-letter-spacing:var(--plasma-typo-body-s-letter-spacing);--plasma-radiobox-label-line-height:var(--plasma-typo-body-s-line-height);--plasma-radiobox-description-font-family:var(--plasma-typo-body-xs-font-family);--plasma-radiobox-description-font-size:var(--plasma-typo-body-xs-font-size);--plasma-radiobox-description-font-style:var(--plasma-typo-body-xs-font-style);--plasma-radiobox-description-font-weight:var(--plasma-typo-body-xs-font-weight);--plasma-radiobox-description-letter-spacing:var(--plasma-typo-body-xs-letter-spacing);--plasma-radiobox-description-line-height:var(--plasma-typo-body-xs-line-height);}
|
2
|
+
.m4ly3co{--plasma-radiobox-margin:0;--plasma-radiobox-trigger-padding:0.0625rem;--plasma-radiobox-trigger-size:1.375rem;--plasma-radiobox-trigger-border-radius:1.125rem;--plasma-radiobox-trigger-border-width:0.125rem;--plasma-radiobox-ellipse-size:0.625rem;--plasma-radiobox-content-top-offset:0.125rem;--plasma-radiobox-content-left-offset:0.625rem;--plasma-radiobox-description-margin-top:0.125rem;--plasma-radiobox-label-font-family:var(--plasma-typo-body-m-font-family);--plasma-radiobox-label-font-size:var(--plasma-typo-body-m-font-size);--plasma-radiobox-label-font-style:var(--plasma-typo-body-m-font-style);--plasma-radiobox-label-font-weight:var(--plasma-typo-body-m-font-weight);--plasma-radiobox-label-letter-spacing:var(--plasma-typo-body-m-letter-spacing);--plasma-radiobox-label-line-height:var(--plasma-typo-body-m-line-height);--plasma-radiobox-description-font-family:var(--plasma-typo-body-s-font-family);--plasma-radiobox-description-font-size:var(--plasma-typo-body-s-font-size);--plasma-radiobox-description-font-style:var(--plasma-typo-body-s-font-style);--plasma-radiobox-description-font-weight:var(--plasma-typo-body-s-font-weight);--plasma-radiobox-description-letter-spacing:var(--plasma-typo-body-s-letter-spacing);--plasma-radiobox-description-line-height:var(--plasma-typo-body-s-line-height);}
|
3
|
+
.l1tfsl8x{--plasma-radiobox-margin:0;--plasma-radiobox-trigger-padding:0.0625rem;--plasma-radiobox-trigger-size:1.375rem;--plasma-radiobox-trigger-border-radius:1.125rem;--plasma-radiobox-trigger-border-width:0.125rem;--plasma-radiobox-ellipse-size:0.625rem;--plasma-radiobox-content-top-offset:0.0625rem;--plasma-radiobox-content-left-offset:0.75rem;--plasma-radiobox-label-font-family:var(--plasma-typo-body-l-font-family);--plasma-radiobox-label-font-size:var(--plasma-typo-body-l-font-size);--plasma-radiobox-label-font-style:var(--plasma-typo-body-l-font-style);--plasma-radiobox-label-font-weight:var(--plasma-typo-body-l-font-weight);--plasma-radiobox-label-letter-spacing:var(--plasma-typo-body-l-letter-spacing);--plasma-radiobox-label-line-height:var(--plasma-typo-body-l-line-height);--plasma-radiobox-description-font-family:var(--plasma-typo-body-m-font-family);--plasma-radiobox-description-margin-top:0.125rem;--plasma-radiobox-description-font-size:var(--plasma-typo-body-m-font-size);--plasma-radiobox-description-font-style:var(--plasma-typo-body-m-font-style);--plasma-radiobox-description-font-weight:var(--plasma-typo-body-m-font-weight);--plasma-radiobox-description-letter-spacing:var(--plasma-typo-body-m-letter-spacing);--plasma-radiobox-description-line-height:var(--plasma-typo-body-m-line-height);}
|
4
|
+
.a1ozwyr6{--plasma-radiobox-fill-color:var(--text-accent);--plasma-radiobox-ellipse-color:var(--on-dark-text-primary);--plasma-radiobox-description-color:var(--text-secondary);--plasma-radiobox-trigger-background-color:transparent;--plasma-radiobox-trigger-border-color:var(--text-secondary);--plasma-radiobox-trigger-border-checked-color:transparent;}
|
5
|
+
.d14hc9vg{--plasma-radiobox-fill-color:var(--text-primary);--plasma-radiobox-ellipse-color:var(--inverse-text-primary);--plasma-radiobox-description-color:var(--text-secondary);--plasma-radiobox-trigger-background-color:transparent;--plasma-radiobox-trigger-border-color:var(--text-secondary);--plasma-radiobox-trigger-border-checked-color:transparent;}
|
6
|
+
.sdvkjxv{--plasma-radiobox-fill-color:var(--text-secondary);--plasma-radiobox-ellipse-color:var(--inverse-text-primary);--plasma-radiobox-description-color:var(--text-secondary);--plasma-radiobox-trigger-background-color:transparent;--plasma-radiobox-trigger-border-color:var(--text-secondary);--plasma-radiobox-trigger-border-checked-color:transparent;}
|
7
|
+
.tnfmi2g{--plasma-radiobox-fill-color:var(--text-tertiary);--plasma-radiobox-ellipse-color:var(--inverse-text-primary);--plasma-radiobox-description-color:var(--text-secondary);--plasma-radiobox-trigger-background-color:transparent;--plasma-radiobox-trigger-border-color:var(--text-secondary);--plasma-radiobox-trigger-border-checked-color:transparent;}
|
8
|
+
.prb64ah{--plasma-radiobox-fill-color:var(--text-paragraph);--plasma-radiobox-ellipse-color:var(--inverse-text-primary);--plasma-radiobox-description-color:var(--text-secondary);--plasma-radiobox-trigger-background-color:transparent;--plasma-radiobox-trigger-border-color:var(--text-secondary);--plasma-radiobox-trigger-border-checked-color:transparent;}
|
9
|
+
.pk81wy1{--plasma-radiobox-fill-color:var(--text-positive);--plasma-radiobox-ellipse-color:var(--on-dark-text-primary);--plasma-radiobox-description-color:var(--text-secondary);--plasma-radiobox-trigger-background-color:transparent;--plasma-radiobox-trigger-border-color:var(--text-secondary);--plasma-radiobox-trigger-border-checked-color:transparent;}
|
10
|
+
.w1w9rr57{--plasma-radiobox-fill-color:var(--text-warning);--plasma-radiobox-ellipse-color:var(--on-dark-text-primary);--plasma-radiobox-description-color:var(--text-secondary);--plasma-radiobox-trigger-background-color:transparent;--plasma-radiobox-trigger-border-color:var(--text-secondary);--plasma-radiobox-trigger-border-checked-color:transparent;}
|
11
|
+
.n7d8juw{--plasma-radiobox-fill-color:var(--text-negative);--plasma-radiobox-ellipse-color:var(--on-dark-text-primary);--plasma-radiobox-description-color:var(--text-secondary);--plasma-radiobox-trigger-background-color:transparent;--plasma-radiobox-trigger-border-color:var(--text-secondary);--plasma-radiobox-trigger-border-checked-color:transparent;}
|
12
12
|
.ty9cidw{--plasma-radiobox-disabled-opacity:0.4;}
|
13
13
|
.tb9l5fn{--plasma-radiobox-focus-color:var(--text-accent);}
|
@@ -1,13 +1,13 @@
|
|
1
|
-
.
|
2
|
-
.
|
3
|
-
.
|
4
|
-
.
|
5
|
-
.
|
6
|
-
.
|
7
|
-
.
|
8
|
-
.
|
9
|
-
.
|
10
|
-
.
|
11
|
-
.
|
12
|
-
.
|
13
|
-
.
|
1
|
+
.Radiobox_config_wyokmu_s73zzyg__2c9c0745{--plasma-radiobox-margin:0;--plasma-radiobox-trigger-padding:0.0625rem 0;--plasma-radiobox-trigger-size:1rem;--plasma-radiobox-trigger-border-radius:1.125rem;--plasma-radiobox-trigger-border-width:0.125rem;--plasma-radiobox-ellipse-size:0.5rem;--plasma-radiobox-content-top-offset:0;--plasma-radiobox-content-left-offset:0.5rem;--plasma-radiobox-description-margin-top:0.125rem;--plasma-radiobox-label-font-family:var(--plasma-typo-body-s-font-family);--plasma-radiobox-label-font-size:var(--plasma-typo-body-s-font-size);--plasma-radiobox-label-font-style:var(--plasma-typo-body-s-font-style);--plasma-radiobox-label-font-weight:var(--plasma-typo-body-s-font-weight);--plasma-radiobox-label-letter-spacing:var(--plasma-typo-body-s-letter-spacing);--plasma-radiobox-label-line-height:var(--plasma-typo-body-s-line-height);--plasma-radiobox-description-font-family:var(--plasma-typo-body-xs-font-family);--plasma-radiobox-description-font-size:var(--plasma-typo-body-xs-font-size);--plasma-radiobox-description-font-style:var(--plasma-typo-body-xs-font-style);--plasma-radiobox-description-font-weight:var(--plasma-typo-body-xs-font-weight);--plasma-radiobox-description-letter-spacing:var(--plasma-typo-body-xs-letter-spacing);--plasma-radiobox-description-line-height:var(--plasma-typo-body-xs-line-height);}
|
2
|
+
.Radiobox_config_wyokmu_m4ly3co__2c9c0745{--plasma-radiobox-margin:0;--plasma-radiobox-trigger-padding:0.0625rem;--plasma-radiobox-trigger-size:1.375rem;--plasma-radiobox-trigger-border-radius:1.125rem;--plasma-radiobox-trigger-border-width:0.125rem;--plasma-radiobox-ellipse-size:0.625rem;--plasma-radiobox-content-top-offset:0.125rem;--plasma-radiobox-content-left-offset:0.625rem;--plasma-radiobox-description-margin-top:0.125rem;--plasma-radiobox-label-font-family:var(--plasma-typo-body-m-font-family);--plasma-radiobox-label-font-size:var(--plasma-typo-body-m-font-size);--plasma-radiobox-label-font-style:var(--plasma-typo-body-m-font-style);--plasma-radiobox-label-font-weight:var(--plasma-typo-body-m-font-weight);--plasma-radiobox-label-letter-spacing:var(--plasma-typo-body-m-letter-spacing);--plasma-radiobox-label-line-height:var(--plasma-typo-body-m-line-height);--plasma-radiobox-description-font-family:var(--plasma-typo-body-s-font-family);--plasma-radiobox-description-font-size:var(--plasma-typo-body-s-font-size);--plasma-radiobox-description-font-style:var(--plasma-typo-body-s-font-style);--plasma-radiobox-description-font-weight:var(--plasma-typo-body-s-font-weight);--plasma-radiobox-description-letter-spacing:var(--plasma-typo-body-s-letter-spacing);--plasma-radiobox-description-line-height:var(--plasma-typo-body-s-line-height);}
|
3
|
+
.Radiobox_config_wyokmu_l1tfsl8x__2c9c0745{--plasma-radiobox-margin:0;--plasma-radiobox-trigger-padding:0.0625rem;--plasma-radiobox-trigger-size:1.375rem;--plasma-radiobox-trigger-border-radius:1.125rem;--plasma-radiobox-trigger-border-width:0.125rem;--plasma-radiobox-ellipse-size:0.625rem;--plasma-radiobox-content-top-offset:0.0625rem;--plasma-radiobox-content-left-offset:0.75rem;--plasma-radiobox-label-font-family:var(--plasma-typo-body-l-font-family);--plasma-radiobox-label-font-size:var(--plasma-typo-body-l-font-size);--plasma-radiobox-label-font-style:var(--plasma-typo-body-l-font-style);--plasma-radiobox-label-font-weight:var(--plasma-typo-body-l-font-weight);--plasma-radiobox-label-letter-spacing:var(--plasma-typo-body-l-letter-spacing);--plasma-radiobox-label-line-height:var(--plasma-typo-body-l-line-height);--plasma-radiobox-description-font-family:var(--plasma-typo-body-m-font-family);--plasma-radiobox-description-margin-top:0.125rem;--plasma-radiobox-description-font-size:var(--plasma-typo-body-m-font-size);--plasma-radiobox-description-font-style:var(--plasma-typo-body-m-font-style);--plasma-radiobox-description-font-weight:var(--plasma-typo-body-m-font-weight);--plasma-radiobox-description-letter-spacing:var(--plasma-typo-body-m-letter-spacing);--plasma-radiobox-description-line-height:var(--plasma-typo-body-m-line-height);}
|
4
|
+
.Radiobox_config_wyokmu_a1ozwyr6__2c9c0745{--plasma-radiobox-fill-color:var(--text-accent);--plasma-radiobox-ellipse-color:var(--on-dark-text-primary);--plasma-radiobox-description-color:var(--text-secondary);--plasma-radiobox-trigger-background-color:transparent;--plasma-radiobox-trigger-border-color:var(--text-secondary);--plasma-radiobox-trigger-border-checked-color:transparent;}
|
5
|
+
.Radiobox_config_wyokmu_d14hc9vg__2c9c0745{--plasma-radiobox-fill-color:var(--text-primary);--plasma-radiobox-ellipse-color:var(--inverse-text-primary);--plasma-radiobox-description-color:var(--text-secondary);--plasma-radiobox-trigger-background-color:transparent;--plasma-radiobox-trigger-border-color:var(--text-secondary);--plasma-radiobox-trigger-border-checked-color:transparent;}
|
6
|
+
.Radiobox_config_wyokmu_sdvkjxv__2c9c0745{--plasma-radiobox-fill-color:var(--text-secondary);--plasma-radiobox-ellipse-color:var(--inverse-text-primary);--plasma-radiobox-description-color:var(--text-secondary);--plasma-radiobox-trigger-background-color:transparent;--plasma-radiobox-trigger-border-color:var(--text-secondary);--plasma-radiobox-trigger-border-checked-color:transparent;}
|
7
|
+
.Radiobox_config_wyokmu_tnfmi2g__2c9c0745{--plasma-radiobox-fill-color:var(--text-tertiary);--plasma-radiobox-ellipse-color:var(--inverse-text-primary);--plasma-radiobox-description-color:var(--text-secondary);--plasma-radiobox-trigger-background-color:transparent;--plasma-radiobox-trigger-border-color:var(--text-secondary);--plasma-radiobox-trigger-border-checked-color:transparent;}
|
8
|
+
.Radiobox_config_wyokmu_prb64ah__2c9c0745{--plasma-radiobox-fill-color:var(--text-paragraph);--plasma-radiobox-ellipse-color:var(--inverse-text-primary);--plasma-radiobox-description-color:var(--text-secondary);--plasma-radiobox-trigger-background-color:transparent;--plasma-radiobox-trigger-border-color:var(--text-secondary);--plasma-radiobox-trigger-border-checked-color:transparent;}
|
9
|
+
.Radiobox_config_wyokmu_pk81wy1__2c9c0745{--plasma-radiobox-fill-color:var(--text-positive);--plasma-radiobox-ellipse-color:var(--on-dark-text-primary);--plasma-radiobox-description-color:var(--text-secondary);--plasma-radiobox-trigger-background-color:transparent;--plasma-radiobox-trigger-border-color:var(--text-secondary);--plasma-radiobox-trigger-border-checked-color:transparent;}
|
10
|
+
.Radiobox_config_wyokmu_w1w9rr57__2c9c0745{--plasma-radiobox-fill-color:var(--text-warning);--plasma-radiobox-ellipse-color:var(--on-dark-text-primary);--plasma-radiobox-description-color:var(--text-secondary);--plasma-radiobox-trigger-background-color:transparent;--plasma-radiobox-trigger-border-color:var(--text-secondary);--plasma-radiobox-trigger-border-checked-color:transparent;}
|
11
|
+
.Radiobox_config_wyokmu_n7d8juw__2c9c0745{--plasma-radiobox-fill-color:var(--text-negative);--plasma-radiobox-ellipse-color:var(--on-dark-text-primary);--plasma-radiobox-description-color:var(--text-secondary);--plasma-radiobox-trigger-background-color:transparent;--plasma-radiobox-trigger-border-color:var(--text-secondary);--plasma-radiobox-trigger-border-checked-color:transparent;}
|
12
|
+
.Radiobox_config_wyokmu_ty9cidw__2c9c0745{--plasma-radiobox-disabled-opacity:0.4;}
|
13
|
+
.Radiobox_config_wyokmu_tb9l5fn__2c9c0745{--plasma-radiobox-focus-color:var(--text-accent);}
|
@@ -1,52 +1,8 @@
|
|
1
1
|
import { ComponentProps } from 'react';
|
2
|
-
declare const RadioboxComponent: import("react").FunctionComponent<
|
3
|
-
size: {
|
4
|
-
s: import("@salutejs/plasma-new-hope/types/engines/types").PolymorphicClassName;
|
5
|
-
m: import("@salutejs/plasma-new-hope/types/engines/types").PolymorphicClassName;
|
6
|
-
l: import("@salutejs/plasma-new-hope/types/engines/types").PolymorphicClassName;
|
7
|
-
};
|
8
|
-
view: {
|
9
|
-
accent: import("@salutejs/plasma-new-hope/types/engines/types").PolymorphicClassName;
|
10
|
-
default: import("@salutejs/plasma-new-hope/types/engines/types").PolymorphicClassName;
|
11
|
-
secondary: import("@salutejs/plasma-new-hope/types/engines/types").PolymorphicClassName;
|
12
|
-
tertiary: import("@salutejs/plasma-new-hope/types/engines/types").PolymorphicClassName;
|
13
|
-
paragraph: import("@salutejs/plasma-new-hope/types/engines/types").PolymorphicClassName;
|
14
|
-
positive: import("@salutejs/plasma-new-hope/types/engines/types").PolymorphicClassName;
|
15
|
-
warning: import("@salutejs/plasma-new-hope/types/engines/types").PolymorphicClassName;
|
16
|
-
negative: import("@salutejs/plasma-new-hope/types/engines/types").PolymorphicClassName;
|
17
|
-
};
|
18
|
-
disabled: {
|
19
|
-
true: import("@salutejs/plasma-new-hope/types/engines/types").PolymorphicClassName;
|
20
|
-
};
|
21
|
-
focused: {
|
22
|
-
true: import("@salutejs/plasma-new-hope/types/engines/types").PolymorphicClassName;
|
23
|
-
};
|
24
|
-
}> & import("@salutejs/plasma-new-hope/types/engines/types").Filter<import("@salutejs/plasma-new-hope/styled-components").InputHTMLAttributes<HTMLInputElement>, "size"> & Omit<import("@salutejs/plasma-new-hope/styled-components").BaseboxProps, "indeterminate" | "appearance"> & import("react").RefAttributes<HTMLInputElement>>;
|
2
|
+
declare const RadioboxComponent: import("react").FunctionComponent<any>;
|
25
3
|
export type RadioboxProps = ComponentProps<typeof RadioboxComponent>;
|
26
4
|
/**
|
27
5
|
* Переключатель, или *радиокнопка*.
|
28
6
|
*/
|
29
|
-
export declare const Radiobox: import("react").FunctionComponent<
|
30
|
-
size: {
|
31
|
-
s: import("@salutejs/plasma-new-hope/types/engines/types").PolymorphicClassName;
|
32
|
-
m: import("@salutejs/plasma-new-hope/types/engines/types").PolymorphicClassName;
|
33
|
-
l: import("@salutejs/plasma-new-hope/types/engines/types").PolymorphicClassName;
|
34
|
-
};
|
35
|
-
view: {
|
36
|
-
accent: import("@salutejs/plasma-new-hope/types/engines/types").PolymorphicClassName;
|
37
|
-
default: import("@salutejs/plasma-new-hope/types/engines/types").PolymorphicClassName;
|
38
|
-
secondary: import("@salutejs/plasma-new-hope/types/engines/types").PolymorphicClassName;
|
39
|
-
tertiary: import("@salutejs/plasma-new-hope/types/engines/types").PolymorphicClassName;
|
40
|
-
paragraph: import("@salutejs/plasma-new-hope/types/engines/types").PolymorphicClassName;
|
41
|
-
positive: import("@salutejs/plasma-new-hope/types/engines/types").PolymorphicClassName;
|
42
|
-
warning: import("@salutejs/plasma-new-hope/types/engines/types").PolymorphicClassName;
|
43
|
-
negative: import("@salutejs/plasma-new-hope/types/engines/types").PolymorphicClassName;
|
44
|
-
};
|
45
|
-
disabled: {
|
46
|
-
true: import("@salutejs/plasma-new-hope/types/engines/types").PolymorphicClassName;
|
47
|
-
};
|
48
|
-
focused: {
|
49
|
-
true: import("@salutejs/plasma-new-hope/types/engines/types").PolymorphicClassName;
|
50
|
-
};
|
51
|
-
}> & import("@salutejs/plasma-new-hope/types/engines/types").Filter<import("@salutejs/plasma-new-hope/styled-components").InputHTMLAttributes<HTMLInputElement>, "size"> & Omit<import("@salutejs/plasma-new-hope/styled-components").BaseboxProps, "indeterminate" | "appearance"> & import("react").RefAttributes<HTMLInputElement>>;
|
7
|
+
export declare const Radiobox: import("react").FunctionComponent<any>;
|
52
8
|
export { RadioGroup } from '@salutejs/plasma-new-hope/styled-components';
|
@@ -98,7 +98,7 @@ declare const SelectNewHope: React.FunctionComponent<import("@salutejs/plasma-ne
|
|
98
98
|
isOpen?: boolean;
|
99
99
|
listHeight?: React.CSSProperties["height"];
|
100
100
|
onScrollBottom?: (e: React.UIEvent<HTMLUListElement>) => void;
|
101
|
-
} & Omit<React.ButtonHTMLAttributes<HTMLButtonElement>, "onChange" | "
|
101
|
+
} & Omit<React.ButtonHTMLAttributes<HTMLButtonElement>, "onChange" | "onResize" | "onResizeCapture" | "nonce" | "value"> & React.RefAttributes<HTMLButtonElement>) | (import("@salutejs/plasma-new-hope/types/components/TextField/TextField.types").LabelProps & import("@salutejs/plasma-new-hope/types/components/TextField/TextField.types").RequiredProps & {
|
102
102
|
hintText: string;
|
103
103
|
hintTrigger?: "hover" | "click";
|
104
104
|
hintView?: string;
|
@@ -156,7 +156,7 @@ declare const SelectNewHope: React.FunctionComponent<import("@salutejs/plasma-ne
|
|
156
156
|
isOpen?: boolean;
|
157
157
|
listHeight?: React.CSSProperties["height"];
|
158
158
|
onScrollBottom?: (e: React.UIEvent<HTMLUListElement>) => void;
|
159
|
-
} & Omit<React.ButtonHTMLAttributes<HTMLButtonElement>, "onChange" | "
|
159
|
+
} & Omit<React.ButtonHTMLAttributes<HTMLButtonElement>, "onChange" | "onResize" | "onResizeCapture" | "nonce" | "value"> & React.RefAttributes<HTMLButtonElement>) | (import("@salutejs/plasma-new-hope/types/components/TextField/TextField.types").LabelProps & import("@salutejs/plasma-new-hope/types/components/TextField/TextField.types").RequiredProps & {
|
160
160
|
hintTrigger?: never;
|
161
161
|
hintText?: never;
|
162
162
|
hintView?: never;
|
@@ -213,7 +213,7 @@ declare const SelectNewHope: React.FunctionComponent<import("@salutejs/plasma-ne
|
|
213
213
|
isOpen?: boolean;
|
214
214
|
listHeight?: React.CSSProperties["height"];
|
215
215
|
onScrollBottom?: (e: React.UIEvent<HTMLUListElement>) => void;
|
216
|
-
} & Omit<React.ButtonHTMLAttributes<HTMLButtonElement>, "onChange" | "
|
216
|
+
} & Omit<React.ButtonHTMLAttributes<HTMLButtonElement>, "onChange" | "onResize" | "onResizeCapture" | "nonce" | "value"> & React.RefAttributes<HTMLButtonElement>) | (import("@salutejs/plasma-new-hope/types/components/TextField/TextField.types").LabelProps & import("@salutejs/plasma-new-hope/types/components/TextField/TextField.types").RequiredProps & {
|
217
217
|
hintTrigger?: never;
|
218
218
|
hintText?: never;
|
219
219
|
hintView?: never;
|
@@ -271,7 +271,7 @@ declare const SelectNewHope: React.FunctionComponent<import("@salutejs/plasma-ne
|
|
271
271
|
isOpen?: boolean;
|
272
272
|
listHeight?: React.CSSProperties["height"];
|
273
273
|
onScrollBottom?: (e: React.UIEvent<HTMLUListElement>) => void;
|
274
|
-
} & Omit<React.ButtonHTMLAttributes<HTMLButtonElement>, "onChange" | "
|
274
|
+
} & Omit<React.ButtonHTMLAttributes<HTMLButtonElement>, "onChange" | "onResize" | "onResizeCapture" | "nonce" | "value"> & React.RefAttributes<HTMLButtonElement>) | (import("@salutejs/plasma-new-hope/types/components/TextField/TextField.types").LabelProps & {
|
275
275
|
target: "button-like";
|
276
276
|
view?: "default" | "accent" | "secondary" | "clear" | "positive" | "warning" | "negative" | "dark" | "black" | "white";
|
277
277
|
contentLeft?: never;
|
@@ -316,7 +316,7 @@ declare const SelectNewHope: React.FunctionComponent<import("@salutejs/plasma-ne
|
|
316
316
|
isOpen?: boolean;
|
317
317
|
listHeight?: React.CSSProperties["height"];
|
318
318
|
onScrollBottom?: (e: React.UIEvent<HTMLUListElement>) => void;
|
319
|
-
} & Omit<React.ButtonHTMLAttributes<HTMLButtonElement>, "onChange" | "
|
319
|
+
} & Omit<React.ButtonHTMLAttributes<HTMLButtonElement>, "onChange" | "onResize" | "onResizeCapture" | "nonce" | "value"> & React.RefAttributes<HTMLButtonElement>) | (import("@salutejs/plasma-new-hope/types/components/TextField/TextField.types").LabelProps & {
|
320
320
|
target: "button-like";
|
321
321
|
view?: "default" | "accent" | "secondary" | "clear" | "positive" | "warning" | "negative" | "dark" | "black" | "white";
|
322
322
|
contentLeft?: never;
|
@@ -362,7 +362,7 @@ declare const SelectNewHope: React.FunctionComponent<import("@salutejs/plasma-ne
|
|
362
362
|
isOpen?: boolean;
|
363
363
|
listHeight?: React.CSSProperties["height"];
|
364
364
|
onScrollBottom?: (e: React.UIEvent<HTMLUListElement>) => void;
|
365
|
-
} & Omit<React.ButtonHTMLAttributes<HTMLButtonElement>, "onChange" | "
|
365
|
+
} & Omit<React.ButtonHTMLAttributes<HTMLButtonElement>, "onChange" | "onResize" | "onResizeCapture" | "nonce" | "value"> & React.RefAttributes<HTMLButtonElement>))>;
|
366
366
|
export type SelectProps<K extends ItemOptionSelect> = DistributiveOmit<SelectPropsNewHope<K>, 'size' | 'view' | 'chipView' | 'disabled'> & DistributivePick<ComponentProps<typeof SelectNewHope>, 'size' | 'view' | 'chipView' | 'disabled'>;
|
367
367
|
declare const Select: <K extends ItemOptionSelect>(props: SelectProps<K> & React.RefAttributes<HTMLButtonElement>) => React.ReactElement | null;
|
368
368
|
export { Select };
|
@@ -79,7 +79,7 @@ export declare const TextField: import("react").FunctionComponent<import("@salut
|
|
79
79
|
chipType?: never;
|
80
80
|
chipView?: never;
|
81
81
|
chipValidator?: never;
|
82
|
-
} & Omit<import("@salutejs/plasma-new-hope/styled-components").InputHTMLAttributes<HTMLInputElement>, "
|
82
|
+
} & Omit<import("@salutejs/plasma-new-hope/styled-components").InputHTMLAttributes<HTMLInputElement>, "required" | "size"> & import("react").RefAttributes<HTMLInputElement>) | ({
|
83
83
|
size?: string;
|
84
84
|
view?: string;
|
85
85
|
readOnly?: boolean;
|
@@ -117,7 +117,7 @@ export declare const TextField: import("react").FunctionComponent<import("@salut
|
|
117
117
|
chipValidator?: (value: string) => {
|
118
118
|
view?: string;
|
119
119
|
};
|
120
|
-
} & Omit<import("@salutejs/plasma-new-hope/styled-components").InputHTMLAttributes<HTMLInputElement>, "
|
120
|
+
} & Omit<import("@salutejs/plasma-new-hope/styled-components").InputHTMLAttributes<HTMLInputElement>, "required" | "size"> & import("react").RefAttributes<HTMLInputElement>) | ({
|
121
121
|
size?: string;
|
122
122
|
view?: string;
|
123
123
|
readOnly?: boolean;
|
@@ -153,7 +153,7 @@ export declare const TextField: import("react").FunctionComponent<import("@salut
|
|
153
153
|
chipType?: never;
|
154
154
|
chipView?: never;
|
155
155
|
chipValidator?: never;
|
156
|
-
} & Omit<import("@salutejs/plasma-new-hope/styled-components").InputHTMLAttributes<HTMLInputElement>, "
|
156
|
+
} & Omit<import("@salutejs/plasma-new-hope/styled-components").InputHTMLAttributes<HTMLInputElement>, "required" | "size"> & import("react").RefAttributes<HTMLInputElement>) | ({
|
157
157
|
size?: string;
|
158
158
|
view?: string;
|
159
159
|
readOnly?: boolean;
|
@@ -191,7 +191,7 @@ export declare const TextField: import("react").FunctionComponent<import("@salut
|
|
191
191
|
chipValidator?: (value: string) => {
|
192
192
|
view?: string;
|
193
193
|
};
|
194
|
-
} & Omit<import("@salutejs/plasma-new-hope/styled-components").InputHTMLAttributes<HTMLInputElement>, "
|
194
|
+
} & Omit<import("@salutejs/plasma-new-hope/styled-components").InputHTMLAttributes<HTMLInputElement>, "required" | "size"> & import("react").RefAttributes<HTMLInputElement>) | ({
|
195
195
|
size?: string;
|
196
196
|
view?: string;
|
197
197
|
readOnly?: boolean;
|
@@ -227,7 +227,7 @@ export declare const TextField: import("react").FunctionComponent<import("@salut
|
|
227
227
|
chipType?: never;
|
228
228
|
chipView?: never;
|
229
229
|
chipValidator?: never;
|
230
|
-
} & Omit<import("@salutejs/plasma-new-hope/styled-components").InputHTMLAttributes<HTMLInputElement>, "
|
230
|
+
} & Omit<import("@salutejs/plasma-new-hope/styled-components").InputHTMLAttributes<HTMLInputElement>, "required" | "size"> & import("react").RefAttributes<HTMLInputElement>) | ({
|
231
231
|
size?: string;
|
232
232
|
view?: string;
|
233
233
|
readOnly?: boolean;
|
@@ -265,7 +265,7 @@ export declare const TextField: import("react").FunctionComponent<import("@salut
|
|
265
265
|
chipValidator?: (value: string) => {
|
266
266
|
view?: string;
|
267
267
|
};
|
268
|
-
} & Omit<import("@salutejs/plasma-new-hope/styled-components").InputHTMLAttributes<HTMLInputElement>, "
|
268
|
+
} & Omit<import("@salutejs/plasma-new-hope/styled-components").InputHTMLAttributes<HTMLInputElement>, "required" | "size"> & import("react").RefAttributes<HTMLInputElement>) | ({
|
269
269
|
size?: string;
|
270
270
|
view?: string;
|
271
271
|
readOnly?: boolean;
|
@@ -301,7 +301,7 @@ export declare const TextField: import("react").FunctionComponent<import("@salut
|
|
301
301
|
chipType?: never;
|
302
302
|
chipView?: never;
|
303
303
|
chipValidator?: never;
|
304
|
-
} & Omit<import("@salutejs/plasma-new-hope/styled-components").InputHTMLAttributes<HTMLInputElement>, "
|
304
|
+
} & Omit<import("@salutejs/plasma-new-hope/styled-components").InputHTMLAttributes<HTMLInputElement>, "required" | "size"> & import("react").RefAttributes<HTMLInputElement>) | ({
|
305
305
|
size?: string;
|
306
306
|
view?: string;
|
307
307
|
readOnly?: boolean;
|
@@ -339,4 +339,4 @@ export declare const TextField: import("react").FunctionComponent<import("@salut
|
|
339
339
|
chipValidator?: (value: string) => {
|
340
340
|
view?: string;
|
341
341
|
};
|
342
|
-
} & Omit<import("@salutejs/plasma-new-hope/styled-components").InputHTMLAttributes<HTMLInputElement>, "
|
342
|
+
} & Omit<import("@salutejs/plasma-new-hope/styled-components").InputHTMLAttributes<HTMLInputElement>, "required" | "size"> & import("react").RefAttributes<HTMLInputElement>))>;
|
@@ -34,7 +34,7 @@ export declare const StyledSegmentItem: import("styled-components").StyledCompon
|
|
34
34
|
export declare const AccordionInfo: import("styled-components").StyledComponent<"div", any, {}, never>;
|
35
35
|
export declare const Subcategory: import("styled-components").StyledComponent<"div", any, {}, never>;
|
36
36
|
export declare const ColumnTitle: import("styled-components").StyledComponent<"div", any, {}, never>;
|
37
|
-
export declare const StyledAccordionItem: import("styled-components").StyledComponent<import("react").ForwardRefExoticComponent<Omit<import("react").HTMLAttributes<HTMLElement>, "
|
37
|
+
export declare const StyledAccordionItem: import("styled-components").StyledComponent<import("react").ForwardRefExoticComponent<Omit<import("react").HTMLAttributes<HTMLElement>, "title" | "onChange"> & {
|
38
38
|
value?: boolean;
|
39
39
|
type?: "clear" | "arrow" | "sign";
|
40
40
|
contentLeft?: React.ReactNode;
|
@@ -36,7 +36,7 @@ export declare const StyledSegmentItem: import("styled-components").StyledCompon
|
|
36
36
|
export declare const AccordionTypographyTitle: import("styled-components").StyledComponent<"div", any, {}, never>;
|
37
37
|
export declare const FontFamily: import("styled-components").StyledComponent<"span", any, {}, never>;
|
38
38
|
export declare const AccordionInfo: import("styled-components").StyledComponent<"div", any, {}, never>;
|
39
|
-
export declare const StyledAccordionItem: import("styled-components").StyledComponent<import("react").ForwardRefExoticComponent<Omit<import("react").HTMLAttributes<HTMLElement>, "
|
39
|
+
export declare const StyledAccordionItem: import("styled-components").StyledComponent<import("react").ForwardRefExoticComponent<Omit<import("react").HTMLAttributes<HTMLElement>, "title" | "onChange"> & {
|
40
40
|
value?: boolean;
|
41
41
|
type?: "clear" | "arrow" | "sign";
|
42
42
|
contentLeft?: React.ReactNode;
|
@@ -1,13 +1,13 @@
|
|
1
|
-
.s73zzyg{--plasma-radiobox-margin:0;--plasma-radiobox-trigger-padding:0.0625rem 0;--plasma-radiobox-trigger-size:1rem;--plasma-radiobox-trigger-border-radius:1.125rem;--plasma-
|
2
|
-
.m4ly3co{--plasma-radiobox-margin:0;--plasma-radiobox-trigger-padding:0.0625rem;--plasma-radiobox-trigger-size:1.375rem;--plasma-radiobox-trigger-border-radius:1.125rem;--plasma-
|
3
|
-
.l1tfsl8x{--plasma-radiobox-margin:0;--plasma-radiobox-trigger-padding:0.0625rem;--plasma-radiobox-trigger-size:1.375rem;--plasma-radiobox-trigger-border-radius:1.125rem;--plasma-
|
4
|
-
.a1ozwyr6{--plasma-radiobox-fill-color:var(--text-accent);--plasma-radiobox-ellipse-color:var(--on-dark-text-primary);--plasma-radiobox-description-color:var(--text-secondary);--plasma-radiobox-trigger-background-color:transparent;--plasma-radiobox-trigger-border-color:var(--text-secondary);--plasma-
|
5
|
-
.d14hc9vg{--plasma-radiobox-fill-color:var(--text-primary);--plasma-radiobox-ellipse-color:var(--inverse-text-primary);--plasma-radiobox-description-color:var(--text-secondary);--plasma-radiobox-trigger-background-color:transparent;--plasma-radiobox-trigger-border-color:var(--text-secondary);--plasma-
|
6
|
-
.sdvkjxv{--plasma-radiobox-fill-color:var(--text-secondary);--plasma-radiobox-ellipse-color:var(--inverse-text-primary);--plasma-radiobox-description-color:var(--text-secondary);--plasma-radiobox-trigger-background-color:transparent;--plasma-radiobox-trigger-border-color:var(--text-secondary);--plasma-
|
7
|
-
.tnfmi2g{--plasma-radiobox-fill-color:var(--text-tertiary);--plasma-radiobox-ellipse-color:var(--inverse-text-primary);--plasma-radiobox-description-color:var(--text-secondary);--plasma-radiobox-trigger-background-color:transparent;--plasma-radiobox-trigger-border-color:var(--text-secondary);--plasma-
|
8
|
-
.prb64ah{--plasma-radiobox-fill-color:var(--text-paragraph);--plasma-radiobox-ellipse-color:var(--inverse-text-primary);--plasma-radiobox-description-color:var(--text-secondary);--plasma-radiobox-trigger-background-color:transparent;--plasma-radiobox-trigger-border-color:var(--text-secondary);--plasma-
|
9
|
-
.pk81wy1{--plasma-radiobox-fill-color:var(--text-positive);--plasma-radiobox-ellipse-color:var(--on-dark-text-primary);--plasma-radiobox-description-color:var(--text-secondary);--plasma-radiobox-trigger-background-color:transparent;--plasma-radiobox-trigger-border-color:var(--text-secondary);--plasma-
|
10
|
-
.w1w9rr57{--plasma-radiobox-fill-color:var(--text-warning);--plasma-radiobox-ellipse-color:var(--on-dark-text-primary);--plasma-radiobox-description-color:var(--text-secondary);--plasma-radiobox-trigger-background-color:transparent;--plasma-radiobox-trigger-border-color:var(--text-secondary);--plasma-
|
11
|
-
.n7d8juw{--plasma-radiobox-fill-color:var(--text-negative);--plasma-radiobox-ellipse-color:var(--on-dark-text-primary);--plasma-radiobox-description-color:var(--text-secondary);--plasma-radiobox-trigger-background-color:transparent;--plasma-radiobox-trigger-border-color:var(--text-secondary);--plasma-
|
1
|
+
.s73zzyg{--plasma-radiobox-margin:0;--plasma-radiobox-trigger-padding:0.0625rem 0;--plasma-radiobox-trigger-size:1rem;--plasma-radiobox-trigger-border-radius:1.125rem;--plasma-radiobox-trigger-border-width:0.125rem;--plasma-radiobox-ellipse-size:0.5rem;--plasma-radiobox-content-top-offset:0;--plasma-radiobox-content-left-offset:0.5rem;--plasma-radiobox-description-margin-top:0.125rem;--plasma-radiobox-label-font-family:var(--plasma-typo-body-s-font-family);--plasma-radiobox-label-font-size:var(--plasma-typo-body-s-font-size);--plasma-radiobox-label-font-style:var(--plasma-typo-body-s-font-style);--plasma-radiobox-label-font-weight:var(--plasma-typo-body-s-font-weight);--plasma-radiobox-label-letter-spacing:var(--plasma-typo-body-s-letter-spacing);--plasma-radiobox-label-line-height:var(--plasma-typo-body-s-line-height);--plasma-radiobox-description-font-family:var(--plasma-typo-body-xs-font-family);--plasma-radiobox-description-font-size:var(--plasma-typo-body-xs-font-size);--plasma-radiobox-description-font-style:var(--plasma-typo-body-xs-font-style);--plasma-radiobox-description-font-weight:var(--plasma-typo-body-xs-font-weight);--plasma-radiobox-description-letter-spacing:var(--plasma-typo-body-xs-letter-spacing);--plasma-radiobox-description-line-height:var(--plasma-typo-body-xs-line-height);}
|
2
|
+
.m4ly3co{--plasma-radiobox-margin:0;--plasma-radiobox-trigger-padding:0.0625rem;--plasma-radiobox-trigger-size:1.375rem;--plasma-radiobox-trigger-border-radius:1.125rem;--plasma-radiobox-trigger-border-width:0.125rem;--plasma-radiobox-ellipse-size:0.625rem;--plasma-radiobox-content-top-offset:0.125rem;--plasma-radiobox-content-left-offset:0.625rem;--plasma-radiobox-description-margin-top:0.125rem;--plasma-radiobox-label-font-family:var(--plasma-typo-body-m-font-family);--plasma-radiobox-label-font-size:var(--plasma-typo-body-m-font-size);--plasma-radiobox-label-font-style:var(--plasma-typo-body-m-font-style);--plasma-radiobox-label-font-weight:var(--plasma-typo-body-m-font-weight);--plasma-radiobox-label-letter-spacing:var(--plasma-typo-body-m-letter-spacing);--plasma-radiobox-label-line-height:var(--plasma-typo-body-m-line-height);--plasma-radiobox-description-font-family:var(--plasma-typo-body-s-font-family);--plasma-radiobox-description-font-size:var(--plasma-typo-body-s-font-size);--plasma-radiobox-description-font-style:var(--plasma-typo-body-s-font-style);--plasma-radiobox-description-font-weight:var(--plasma-typo-body-s-font-weight);--plasma-radiobox-description-letter-spacing:var(--plasma-typo-body-s-letter-spacing);--plasma-radiobox-description-line-height:var(--plasma-typo-body-s-line-height);}
|
3
|
+
.l1tfsl8x{--plasma-radiobox-margin:0;--plasma-radiobox-trigger-padding:0.0625rem;--plasma-radiobox-trigger-size:1.375rem;--plasma-radiobox-trigger-border-radius:1.125rem;--plasma-radiobox-trigger-border-width:0.125rem;--plasma-radiobox-ellipse-size:0.625rem;--plasma-radiobox-content-top-offset:0.0625rem;--plasma-radiobox-content-left-offset:0.75rem;--plasma-radiobox-label-font-family:var(--plasma-typo-body-l-font-family);--plasma-radiobox-label-font-size:var(--plasma-typo-body-l-font-size);--plasma-radiobox-label-font-style:var(--plasma-typo-body-l-font-style);--plasma-radiobox-label-font-weight:var(--plasma-typo-body-l-font-weight);--plasma-radiobox-label-letter-spacing:var(--plasma-typo-body-l-letter-spacing);--plasma-radiobox-label-line-height:var(--plasma-typo-body-l-line-height);--plasma-radiobox-description-font-family:var(--plasma-typo-body-m-font-family);--plasma-radiobox-description-margin-top:0.125rem;--plasma-radiobox-description-font-size:var(--plasma-typo-body-m-font-size);--plasma-radiobox-description-font-style:var(--plasma-typo-body-m-font-style);--plasma-radiobox-description-font-weight:var(--plasma-typo-body-m-font-weight);--plasma-radiobox-description-letter-spacing:var(--plasma-typo-body-m-letter-spacing);--plasma-radiobox-description-line-height:var(--plasma-typo-body-m-line-height);}
|
4
|
+
.a1ozwyr6{--plasma-radiobox-fill-color:var(--text-accent);--plasma-radiobox-ellipse-color:var(--on-dark-text-primary);--plasma-radiobox-description-color:var(--text-secondary);--plasma-radiobox-trigger-background-color:transparent;--plasma-radiobox-trigger-border-color:var(--text-secondary);--plasma-radiobox-trigger-border-checked-color:transparent;}
|
5
|
+
.d14hc9vg{--plasma-radiobox-fill-color:var(--text-primary);--plasma-radiobox-ellipse-color:var(--inverse-text-primary);--plasma-radiobox-description-color:var(--text-secondary);--plasma-radiobox-trigger-background-color:transparent;--plasma-radiobox-trigger-border-color:var(--text-secondary);--plasma-radiobox-trigger-border-checked-color:transparent;}
|
6
|
+
.sdvkjxv{--plasma-radiobox-fill-color:var(--text-secondary);--plasma-radiobox-ellipse-color:var(--inverse-text-primary);--plasma-radiobox-description-color:var(--text-secondary);--plasma-radiobox-trigger-background-color:transparent;--plasma-radiobox-trigger-border-color:var(--text-secondary);--plasma-radiobox-trigger-border-checked-color:transparent;}
|
7
|
+
.tnfmi2g{--plasma-radiobox-fill-color:var(--text-tertiary);--plasma-radiobox-ellipse-color:var(--inverse-text-primary);--plasma-radiobox-description-color:var(--text-secondary);--plasma-radiobox-trigger-background-color:transparent;--plasma-radiobox-trigger-border-color:var(--text-secondary);--plasma-radiobox-trigger-border-checked-color:transparent;}
|
8
|
+
.prb64ah{--plasma-radiobox-fill-color:var(--text-paragraph);--plasma-radiobox-ellipse-color:var(--inverse-text-primary);--plasma-radiobox-description-color:var(--text-secondary);--plasma-radiobox-trigger-background-color:transparent;--plasma-radiobox-trigger-border-color:var(--text-secondary);--plasma-radiobox-trigger-border-checked-color:transparent;}
|
9
|
+
.pk81wy1{--plasma-radiobox-fill-color:var(--text-positive);--plasma-radiobox-ellipse-color:var(--on-dark-text-primary);--plasma-radiobox-description-color:var(--text-secondary);--plasma-radiobox-trigger-background-color:transparent;--plasma-radiobox-trigger-border-color:var(--text-secondary);--plasma-radiobox-trigger-border-checked-color:transparent;}
|
10
|
+
.w1w9rr57{--plasma-radiobox-fill-color:var(--text-warning);--plasma-radiobox-ellipse-color:var(--on-dark-text-primary);--plasma-radiobox-description-color:var(--text-secondary);--plasma-radiobox-trigger-background-color:transparent;--plasma-radiobox-trigger-border-color:var(--text-secondary);--plasma-radiobox-trigger-border-checked-color:transparent;}
|
11
|
+
.n7d8juw{--plasma-radiobox-fill-color:var(--text-negative);--plasma-radiobox-ellipse-color:var(--on-dark-text-primary);--plasma-radiobox-description-color:var(--text-secondary);--plasma-radiobox-trigger-background-color:transparent;--plasma-radiobox-trigger-border-color:var(--text-secondary);--plasma-radiobox-trigger-border-checked-color:transparent;}
|
12
12
|
.ty9cidw{--plasma-radiobox-disabled-opacity:0.4;}
|
13
13
|
.tb9l5fn{--plasma-radiobox-focus-color:var(--text-accent);}
|
@@ -1,13 +1,13 @@
|
|
1
|
-
.
|
2
|
-
.
|
3
|
-
.
|
4
|
-
.
|
5
|
-
.
|
6
|
-
.
|
7
|
-
.
|
8
|
-
.
|
9
|
-
.
|
10
|
-
.
|
11
|
-
.
|
12
|
-
.
|
13
|
-
.
|
1
|
+
.Radiobox_config_wyokmu_s73zzyg__2c9c0745{--plasma-radiobox-margin:0;--plasma-radiobox-trigger-padding:0.0625rem 0;--plasma-radiobox-trigger-size:1rem;--plasma-radiobox-trigger-border-radius:1.125rem;--plasma-radiobox-trigger-border-width:0.125rem;--plasma-radiobox-ellipse-size:0.5rem;--plasma-radiobox-content-top-offset:0;--plasma-radiobox-content-left-offset:0.5rem;--plasma-radiobox-description-margin-top:0.125rem;--plasma-radiobox-label-font-family:var(--plasma-typo-body-s-font-family);--plasma-radiobox-label-font-size:var(--plasma-typo-body-s-font-size);--plasma-radiobox-label-font-style:var(--plasma-typo-body-s-font-style);--plasma-radiobox-label-font-weight:var(--plasma-typo-body-s-font-weight);--plasma-radiobox-label-letter-spacing:var(--plasma-typo-body-s-letter-spacing);--plasma-radiobox-label-line-height:var(--plasma-typo-body-s-line-height);--plasma-radiobox-description-font-family:var(--plasma-typo-body-xs-font-family);--plasma-radiobox-description-font-size:var(--plasma-typo-body-xs-font-size);--plasma-radiobox-description-font-style:var(--plasma-typo-body-xs-font-style);--plasma-radiobox-description-font-weight:var(--plasma-typo-body-xs-font-weight);--plasma-radiobox-description-letter-spacing:var(--plasma-typo-body-xs-letter-spacing);--plasma-radiobox-description-line-height:var(--plasma-typo-body-xs-line-height);}
|
2
|
+
.Radiobox_config_wyokmu_m4ly3co__2c9c0745{--plasma-radiobox-margin:0;--plasma-radiobox-trigger-padding:0.0625rem;--plasma-radiobox-trigger-size:1.375rem;--plasma-radiobox-trigger-border-radius:1.125rem;--plasma-radiobox-trigger-border-width:0.125rem;--plasma-radiobox-ellipse-size:0.625rem;--plasma-radiobox-content-top-offset:0.125rem;--plasma-radiobox-content-left-offset:0.625rem;--plasma-radiobox-description-margin-top:0.125rem;--plasma-radiobox-label-font-family:var(--plasma-typo-body-m-font-family);--plasma-radiobox-label-font-size:var(--plasma-typo-body-m-font-size);--plasma-radiobox-label-font-style:var(--plasma-typo-body-m-font-style);--plasma-radiobox-label-font-weight:var(--plasma-typo-body-m-font-weight);--plasma-radiobox-label-letter-spacing:var(--plasma-typo-body-m-letter-spacing);--plasma-radiobox-label-line-height:var(--plasma-typo-body-m-line-height);--plasma-radiobox-description-font-family:var(--plasma-typo-body-s-font-family);--plasma-radiobox-description-font-size:var(--plasma-typo-body-s-font-size);--plasma-radiobox-description-font-style:var(--plasma-typo-body-s-font-style);--plasma-radiobox-description-font-weight:var(--plasma-typo-body-s-font-weight);--plasma-radiobox-description-letter-spacing:var(--plasma-typo-body-s-letter-spacing);--plasma-radiobox-description-line-height:var(--plasma-typo-body-s-line-height);}
|
3
|
+
.Radiobox_config_wyokmu_l1tfsl8x__2c9c0745{--plasma-radiobox-margin:0;--plasma-radiobox-trigger-padding:0.0625rem;--plasma-radiobox-trigger-size:1.375rem;--plasma-radiobox-trigger-border-radius:1.125rem;--plasma-radiobox-trigger-border-width:0.125rem;--plasma-radiobox-ellipse-size:0.625rem;--plasma-radiobox-content-top-offset:0.0625rem;--plasma-radiobox-content-left-offset:0.75rem;--plasma-radiobox-label-font-family:var(--plasma-typo-body-l-font-family);--plasma-radiobox-label-font-size:var(--plasma-typo-body-l-font-size);--plasma-radiobox-label-font-style:var(--plasma-typo-body-l-font-style);--plasma-radiobox-label-font-weight:var(--plasma-typo-body-l-font-weight);--plasma-radiobox-label-letter-spacing:var(--plasma-typo-body-l-letter-spacing);--plasma-radiobox-label-line-height:var(--plasma-typo-body-l-line-height);--plasma-radiobox-description-font-family:var(--plasma-typo-body-m-font-family);--plasma-radiobox-description-margin-top:0.125rem;--plasma-radiobox-description-font-size:var(--plasma-typo-body-m-font-size);--plasma-radiobox-description-font-style:var(--plasma-typo-body-m-font-style);--plasma-radiobox-description-font-weight:var(--plasma-typo-body-m-font-weight);--plasma-radiobox-description-letter-spacing:var(--plasma-typo-body-m-letter-spacing);--plasma-radiobox-description-line-height:var(--plasma-typo-body-m-line-height);}
|
4
|
+
.Radiobox_config_wyokmu_a1ozwyr6__2c9c0745{--plasma-radiobox-fill-color:var(--text-accent);--plasma-radiobox-ellipse-color:var(--on-dark-text-primary);--plasma-radiobox-description-color:var(--text-secondary);--plasma-radiobox-trigger-background-color:transparent;--plasma-radiobox-trigger-border-color:var(--text-secondary);--plasma-radiobox-trigger-border-checked-color:transparent;}
|
5
|
+
.Radiobox_config_wyokmu_d14hc9vg__2c9c0745{--plasma-radiobox-fill-color:var(--text-primary);--plasma-radiobox-ellipse-color:var(--inverse-text-primary);--plasma-radiobox-description-color:var(--text-secondary);--plasma-radiobox-trigger-background-color:transparent;--plasma-radiobox-trigger-border-color:var(--text-secondary);--plasma-radiobox-trigger-border-checked-color:transparent;}
|
6
|
+
.Radiobox_config_wyokmu_sdvkjxv__2c9c0745{--plasma-radiobox-fill-color:var(--text-secondary);--plasma-radiobox-ellipse-color:var(--inverse-text-primary);--plasma-radiobox-description-color:var(--text-secondary);--plasma-radiobox-trigger-background-color:transparent;--plasma-radiobox-trigger-border-color:var(--text-secondary);--plasma-radiobox-trigger-border-checked-color:transparent;}
|
7
|
+
.Radiobox_config_wyokmu_tnfmi2g__2c9c0745{--plasma-radiobox-fill-color:var(--text-tertiary);--plasma-radiobox-ellipse-color:var(--inverse-text-primary);--plasma-radiobox-description-color:var(--text-secondary);--plasma-radiobox-trigger-background-color:transparent;--plasma-radiobox-trigger-border-color:var(--text-secondary);--plasma-radiobox-trigger-border-checked-color:transparent;}
|
8
|
+
.Radiobox_config_wyokmu_prb64ah__2c9c0745{--plasma-radiobox-fill-color:var(--text-paragraph);--plasma-radiobox-ellipse-color:var(--inverse-text-primary);--plasma-radiobox-description-color:var(--text-secondary);--plasma-radiobox-trigger-background-color:transparent;--plasma-radiobox-trigger-border-color:var(--text-secondary);--plasma-radiobox-trigger-border-checked-color:transparent;}
|
9
|
+
.Radiobox_config_wyokmu_pk81wy1__2c9c0745{--plasma-radiobox-fill-color:var(--text-positive);--plasma-radiobox-ellipse-color:var(--on-dark-text-primary);--plasma-radiobox-description-color:var(--text-secondary);--plasma-radiobox-trigger-background-color:transparent;--plasma-radiobox-trigger-border-color:var(--text-secondary);--plasma-radiobox-trigger-border-checked-color:transparent;}
|
10
|
+
.Radiobox_config_wyokmu_w1w9rr57__2c9c0745{--plasma-radiobox-fill-color:var(--text-warning);--plasma-radiobox-ellipse-color:var(--on-dark-text-primary);--plasma-radiobox-description-color:var(--text-secondary);--plasma-radiobox-trigger-background-color:transparent;--plasma-radiobox-trigger-border-color:var(--text-secondary);--plasma-radiobox-trigger-border-checked-color:transparent;}
|
11
|
+
.Radiobox_config_wyokmu_n7d8juw__2c9c0745{--plasma-radiobox-fill-color:var(--text-negative);--plasma-radiobox-ellipse-color:var(--on-dark-text-primary);--plasma-radiobox-description-color:var(--text-secondary);--plasma-radiobox-trigger-background-color:transparent;--plasma-radiobox-trigger-border-color:var(--text-secondary);--plasma-radiobox-trigger-border-checked-color:transparent;}
|
12
|
+
.Radiobox_config_wyokmu_ty9cidw__2c9c0745{--plasma-radiobox-disabled-opacity:0.4;}
|
13
|
+
.Radiobox_config_wyokmu_tb9l5fn__2c9c0745{--plasma-radiobox-focus-color:var(--text-accent);}
|
package/es/index.css
CHANGED
@@ -422,19 +422,19 @@
|
|
422
422
|
.Progress_config_6ehg2h_ezrdfkb__bfc1aa30{--plasma-progress-track-background-color:var(--surface-transparent-secondary);--plasma-progress-filled-background-color:var(--surface-negative);--plasma-progress-value-color:var(--text-tertiary);}
|
423
423
|
.Progress_config_6ehg2h_m1h3ynf2__bfc1aa30{--plasma-progress-track-height:0.25rem;--plasma-progress-track-border-radius:0.125rem;--plasma-progress-filled-height:0.375rem;--plasma-progress-filled-border-radius:0.375rem;--plasma-progress-value-margin-left:0.5rem;}
|
424
424
|
|
425
|
-
.
|
426
|
-
.
|
427
|
-
.
|
428
|
-
.
|
429
|
-
.
|
430
|
-
.
|
431
|
-
.
|
432
|
-
.
|
433
|
-
.
|
434
|
-
.
|
435
|
-
.
|
436
|
-
.
|
437
|
-
.
|
425
|
+
.Radiobox_config_wyokmu_s73zzyg__2c9c0745{--plasma-radiobox-margin:0;--plasma-radiobox-trigger-padding:0.0625rem 0;--plasma-radiobox-trigger-size:1rem;--plasma-radiobox-trigger-border-radius:1.125rem;--plasma-radiobox-trigger-border-width:0.125rem;--plasma-radiobox-ellipse-size:0.5rem;--plasma-radiobox-content-top-offset:0;--plasma-radiobox-content-left-offset:0.5rem;--plasma-radiobox-description-margin-top:0.125rem;--plasma-radiobox-label-font-family:var(--plasma-typo-body-s-font-family);--plasma-radiobox-label-font-size:var(--plasma-typo-body-s-font-size);--plasma-radiobox-label-font-style:var(--plasma-typo-body-s-font-style);--plasma-radiobox-label-font-weight:var(--plasma-typo-body-s-font-weight);--plasma-radiobox-label-letter-spacing:var(--plasma-typo-body-s-letter-spacing);--plasma-radiobox-label-line-height:var(--plasma-typo-body-s-line-height);--plasma-radiobox-description-font-family:var(--plasma-typo-body-xs-font-family);--plasma-radiobox-description-font-size:var(--plasma-typo-body-xs-font-size);--plasma-radiobox-description-font-style:var(--plasma-typo-body-xs-font-style);--plasma-radiobox-description-font-weight:var(--plasma-typo-body-xs-font-weight);--plasma-radiobox-description-letter-spacing:var(--plasma-typo-body-xs-letter-spacing);--plasma-radiobox-description-line-height:var(--plasma-typo-body-xs-line-height);}
|
426
|
+
.Radiobox_config_wyokmu_m4ly3co__2c9c0745{--plasma-radiobox-margin:0;--plasma-radiobox-trigger-padding:0.0625rem;--plasma-radiobox-trigger-size:1.375rem;--plasma-radiobox-trigger-border-radius:1.125rem;--plasma-radiobox-trigger-border-width:0.125rem;--plasma-radiobox-ellipse-size:0.625rem;--plasma-radiobox-content-top-offset:0.125rem;--plasma-radiobox-content-left-offset:0.625rem;--plasma-radiobox-description-margin-top:0.125rem;--plasma-radiobox-label-font-family:var(--plasma-typo-body-m-font-family);--plasma-radiobox-label-font-size:var(--plasma-typo-body-m-font-size);--plasma-radiobox-label-font-style:var(--plasma-typo-body-m-font-style);--plasma-radiobox-label-font-weight:var(--plasma-typo-body-m-font-weight);--plasma-radiobox-label-letter-spacing:var(--plasma-typo-body-m-letter-spacing);--plasma-radiobox-label-line-height:var(--plasma-typo-body-m-line-height);--plasma-radiobox-description-font-family:var(--plasma-typo-body-s-font-family);--plasma-radiobox-description-font-size:var(--plasma-typo-body-s-font-size);--plasma-radiobox-description-font-style:var(--plasma-typo-body-s-font-style);--plasma-radiobox-description-font-weight:var(--plasma-typo-body-s-font-weight);--plasma-radiobox-description-letter-spacing:var(--plasma-typo-body-s-letter-spacing);--plasma-radiobox-description-line-height:var(--plasma-typo-body-s-line-height);}
|
427
|
+
.Radiobox_config_wyokmu_l1tfsl8x__2c9c0745{--plasma-radiobox-margin:0;--plasma-radiobox-trigger-padding:0.0625rem;--plasma-radiobox-trigger-size:1.375rem;--plasma-radiobox-trigger-border-radius:1.125rem;--plasma-radiobox-trigger-border-width:0.125rem;--plasma-radiobox-ellipse-size:0.625rem;--plasma-radiobox-content-top-offset:0.0625rem;--plasma-radiobox-content-left-offset:0.75rem;--plasma-radiobox-label-font-family:var(--plasma-typo-body-l-font-family);--plasma-radiobox-label-font-size:var(--plasma-typo-body-l-font-size);--plasma-radiobox-label-font-style:var(--plasma-typo-body-l-font-style);--plasma-radiobox-label-font-weight:var(--plasma-typo-body-l-font-weight);--plasma-radiobox-label-letter-spacing:var(--plasma-typo-body-l-letter-spacing);--plasma-radiobox-label-line-height:var(--plasma-typo-body-l-line-height);--plasma-radiobox-description-font-family:var(--plasma-typo-body-m-font-family);--plasma-radiobox-description-margin-top:0.125rem;--plasma-radiobox-description-font-size:var(--plasma-typo-body-m-font-size);--plasma-radiobox-description-font-style:var(--plasma-typo-body-m-font-style);--plasma-radiobox-description-font-weight:var(--plasma-typo-body-m-font-weight);--plasma-radiobox-description-letter-spacing:var(--plasma-typo-body-m-letter-spacing);--plasma-radiobox-description-line-height:var(--plasma-typo-body-m-line-height);}
|
428
|
+
.Radiobox_config_wyokmu_a1ozwyr6__2c9c0745{--plasma-radiobox-fill-color:var(--text-accent);--plasma-radiobox-ellipse-color:var(--on-dark-text-primary);--plasma-radiobox-description-color:var(--text-secondary);--plasma-radiobox-trigger-background-color:transparent;--plasma-radiobox-trigger-border-color:var(--text-secondary);--plasma-radiobox-trigger-border-checked-color:transparent;}
|
429
|
+
.Radiobox_config_wyokmu_d14hc9vg__2c9c0745{--plasma-radiobox-fill-color:var(--text-primary);--plasma-radiobox-ellipse-color:var(--inverse-text-primary);--plasma-radiobox-description-color:var(--text-secondary);--plasma-radiobox-trigger-background-color:transparent;--plasma-radiobox-trigger-border-color:var(--text-secondary);--plasma-radiobox-trigger-border-checked-color:transparent;}
|
430
|
+
.Radiobox_config_wyokmu_sdvkjxv__2c9c0745{--plasma-radiobox-fill-color:var(--text-secondary);--plasma-radiobox-ellipse-color:var(--inverse-text-primary);--plasma-radiobox-description-color:var(--text-secondary);--plasma-radiobox-trigger-background-color:transparent;--plasma-radiobox-trigger-border-color:var(--text-secondary);--plasma-radiobox-trigger-border-checked-color:transparent;}
|
431
|
+
.Radiobox_config_wyokmu_tnfmi2g__2c9c0745{--plasma-radiobox-fill-color:var(--text-tertiary);--plasma-radiobox-ellipse-color:var(--inverse-text-primary);--plasma-radiobox-description-color:var(--text-secondary);--plasma-radiobox-trigger-background-color:transparent;--plasma-radiobox-trigger-border-color:var(--text-secondary);--plasma-radiobox-trigger-border-checked-color:transparent;}
|
432
|
+
.Radiobox_config_wyokmu_prb64ah__2c9c0745{--plasma-radiobox-fill-color:var(--text-paragraph);--plasma-radiobox-ellipse-color:var(--inverse-text-primary);--plasma-radiobox-description-color:var(--text-secondary);--plasma-radiobox-trigger-background-color:transparent;--plasma-radiobox-trigger-border-color:var(--text-secondary);--plasma-radiobox-trigger-border-checked-color:transparent;}
|
433
|
+
.Radiobox_config_wyokmu_pk81wy1__2c9c0745{--plasma-radiobox-fill-color:var(--text-positive);--plasma-radiobox-ellipse-color:var(--on-dark-text-primary);--plasma-radiobox-description-color:var(--text-secondary);--plasma-radiobox-trigger-background-color:transparent;--plasma-radiobox-trigger-border-color:var(--text-secondary);--plasma-radiobox-trigger-border-checked-color:transparent;}
|
434
|
+
.Radiobox_config_wyokmu_w1w9rr57__2c9c0745{--plasma-radiobox-fill-color:var(--text-warning);--plasma-radiobox-ellipse-color:var(--on-dark-text-primary);--plasma-radiobox-description-color:var(--text-secondary);--plasma-radiobox-trigger-background-color:transparent;--plasma-radiobox-trigger-border-color:var(--text-secondary);--plasma-radiobox-trigger-border-checked-color:transparent;}
|
435
|
+
.Radiobox_config_wyokmu_n7d8juw__2c9c0745{--plasma-radiobox-fill-color:var(--text-negative);--plasma-radiobox-ellipse-color:var(--on-dark-text-primary);--plasma-radiobox-description-color:var(--text-secondary);--plasma-radiobox-trigger-background-color:transparent;--plasma-radiobox-trigger-border-color:var(--text-secondary);--plasma-radiobox-trigger-border-checked-color:transparent;}
|
436
|
+
.Radiobox_config_wyokmu_ty9cidw__2c9c0745{--plasma-radiobox-disabled-opacity:0.4;}
|
437
|
+
.Radiobox_config_wyokmu_tb9l5fn__2c9c0745{--plasma-radiobox-focus-color:var(--text-accent);}
|
438
438
|
|
439
439
|
.Range_config_wsjssk_d1nh97pi__189ac8d8{--plasma-range-background:var(--surface-transparent-primary);--plasma-range-background-error:var(--surface-transparent-negative);--plasma-range-background-success:var(--surface-transparent-positive);--plasma-range__divider-color:var(--text-primary);--plasma-range__label-color:var(--text-primary);--plasma-range__left-helper-color:var(--text-secondary);--plasma-range__left-helper-color-error:var(--text-negative);--plasma-range__left-helper-color-success:var(--text-positive);--plasma-range-textfield-color:var(--text-primary);--plasma-range-textfield-placeholder-color:var(--text-secondary);--plasma-range-textfield__placeholder-color-focus:var(--text-tertiary);--plasma-range-textfield-caret-color:var(--text-accent);--plasma-range__indicator-color:var(--surface-negative);--plasma-range-textfield-background-color-hover:var(--surface-transparent-primary-hover);--plasma-range-textfield-background-color-focus:var(--surface-transparent-secondary);--plasma-range-textfield-background-color-error:var(--surface-transparent-negative);--plasma-range-textfield-background-color-error-hover:var(--surface-transparent-negative-hover);--plasma-range-textfield-background-color-error-focus:var(--surface-transparent-negative-active);--plasma-range-textfield-background-color-success:var(--surface-transparent-positive);--plasma-range-textfield-background-color-success-hover:var(--surface-transparent-positive-hover);--plasma-range-textfield-background-color-success-focus:var(--surface-transparent-positive-active);--plasma-range-textfield__before-text-color:var(--text-tertiary);--plasma-range-textfield__after-text-color:var(--text-tertiary);--plasma-range-focus-color:var(--text-accent);}
|
440
440
|
.Range_config_wsjssk_lcttcgt__189ac8d8{--plasma-range-border-radius:0.875rem;--plasma-range__divider-padding:0 0.375rem;--plasma-range__divider-font-family:var(--plasma-typo-body-l-font-family);--plasma-range__divider-font-style:var(--plasma-typo-body-l-font-style);--plasma-range__divider-font-size:var(--plasma-typo-body-l-font-size);--plasma-range__divider-font-weight:var(--plasma-typo-body-l-bold-font-weight);--plasma-range__divider-letter-spacing:var(--plasma-typo-body-l-letter-spacing);--plasma-range__divider-line-height:var(--plasma-typo-body-l-line-height);--plasma-range__left-content-margin:0 0 0 1rem;--plasma-range__right-content-margin:0;--plasma-range__label-offset:0.75rem;--plasma-range__label-font-family:var(--plasma-typo-body-l-font-family);--plasma-range__label-font-style:var(--plasma-typo-body-l-font-style);--plasma-range__label-font-size:var(--plasma-typo-body-l-font-size);--plasma-range__label-font-weight:var(--plasma-typo-body-l-font-weight);--plasma-range__label-letter-spacing:var(--plasma-typo-body-l-letter-spacing);--plasma-range__label-line-height:var(--plasma-typo-body-l-line-height);--plasma-range__indicator-size:0.5rem;--plasma-range__indicator-size-outer:0.375rem;--plasma-range__indicator-placement:0 0 0 0;--plasma-range__indicator-placement-outer:0.5rem auto auto -0.75rem;--plasma-range__indicator-placement-right:0 0 auto auto;--plasma-range__indicator-placement-outer-right:0.25rem -0.625rem auto auto;--plasma-range-textfield-height:3.5rem;--plasma-range-textfield-border-radius:0.875rem;--plasma-range-textfield-padding:1.0625rem 1.125rem 1.0625rem 1.125rem;--plasma-range-textfield-font-family:var(--plasma-typo-body-l-font-family);--plasma-range-textfield-font-style:var(--plasma-typo-body-l-font-style);--plasma-range-textfield-font-size:var(--plasma-typo-body-l-font-size);--plasma-range-textfield-font-weight:var(--plasma-typo-body-l-font-weight);--plasma-range-textfield-letter-spacing:var(--plasma-typo-body-l-letter-spacing);--plasma-range-textfield-line-height:var(--plasma-typo-body-l-line-height);--plasma-range__left-helper-offset:0.25rem 0 0 0;--plasma-range__left-helper-font-family:var(--plasma-typo-body-xs-font-family);--plasma-range__left-helper-font-style:var(--plasma-typo-body-xs-font-style);--plasma-range__left-helper-font-size:var(--plasma-typo-body-xs-font-size);--plasma-range__left-helper-font-weight:var(--plasma-typo-body-xs-font-weight);--plasma-range__left-helper-letter-spacing:var(--plasma-typo-body-xs-letter-spacing);--plasma-range__left-helper-line-height:var(--plasma-typo-body-xs-line-height);--plasma-range-textfield__left-content-margin:-0.0625rem 0.5rem -0.0625rem -0.125rem;--plasma-range-textfield__right-content-margin:-0.0625rem -0.125rem -0.0625rem 0.75rem;--plasma-range-textfield__before-text-margin:0 0.25rem 0 0;--plasma-range-textfield__after-text-margin:0 0 0 0.25rem;}
|
package/package.json
CHANGED
@@ -1,6 +1,6 @@
|
|
1
1
|
{
|
2
2
|
"name": "@salutejs/sdds-serv",
|
3
|
-
"version": "0.
|
3
|
+
"version": "0.315.0-canary.1983.15896947411.0",
|
4
4
|
"description": "Salute Design System / React UI kit for SDDS SERV web applications",
|
5
5
|
"author": "Salute Frontend Team <salute.developers@gmail.com>",
|
6
6
|
"license": "MIT",
|
@@ -32,8 +32,8 @@
|
|
32
32
|
"directory": "packages/sdds-serv"
|
33
33
|
},
|
34
34
|
"dependencies": {
|
35
|
-
"@salutejs/plasma-new-hope": "0.
|
36
|
-
"@salutejs/sdds-themes": "0.
|
35
|
+
"@salutejs/plasma-new-hope": "0.328.0-canary.1983.15896947411.0",
|
36
|
+
"@salutejs/sdds-themes": "0.40.0-canary.1983.15896947411.0"
|
37
37
|
},
|
38
38
|
"peerDependencies": {
|
39
39
|
"@emotion/react": ">=11",
|
@@ -63,10 +63,10 @@
|
|
63
63
|
"@rollup/plugin-commonjs": "^25.0.4",
|
64
64
|
"@rollup/plugin-node-resolve": "^15.1.0",
|
65
65
|
"@salutejs/plasma-colors": "0.15.0",
|
66
|
-
"@salutejs/plasma-core": "1.
|
67
|
-
"@salutejs/plasma-cy-utils": "0.
|
68
|
-
"@salutejs/plasma-icons": "1.219.0",
|
69
|
-
"@salutejs/plasma-sb-utils": "0.
|
66
|
+
"@salutejs/plasma-core": "1.200.0-canary.1983.15896947411.0",
|
67
|
+
"@salutejs/plasma-cy-utils": "0.131.0-canary.1983.15896947411.0",
|
68
|
+
"@salutejs/plasma-icons": "1.219.0-dev.0",
|
69
|
+
"@salutejs/plasma-sb-utils": "0.201.0-canary.1983.15896947411.0",
|
70
70
|
"@storybook/addon-docs": "7.6.17",
|
71
71
|
"@storybook/addon-essentials": "7.6.17",
|
72
72
|
"@storybook/addons": "7.6.17",
|
@@ -137,5 +137,5 @@
|
|
137
137
|
"sideEffects": [
|
138
138
|
"*.css"
|
139
139
|
],
|
140
|
-
"gitHead": "
|
140
|
+
"gitHead": "7ec4cf245e0ca7320d5f44220ac121c73d8db6d9"
|
141
141
|
}
|