@salutejs/sdds-cs 0.318.0-canary.1983.15343210393.0 → 0.318.0-canary.1983.15486466373.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/components/Accordion/Accordion.d.ts +9 -10
- package/components/Attach/Attach.d.ts +158 -159
- package/components/Autocomplete/Autocomplete.d.ts +352 -353
- package/components/Avatar/Avatar.d.ts +46 -47
- package/components/AvatarGroup/AvatarGroup.d.ts +1 -2
- package/components/Badge/Badge.d.ts +40 -41
- package/components/Breadcrumbs/Breadcrumbs.d.ts +3 -4
- package/components/Button/Button.d.ts +71 -71
- package/components/ButtonGroup/ButtonGroup.d.ts +0 -1
- package/components/Card/Card.d.ts +5 -6
- package/components/Cell/Cell.d.ts +19 -20
- package/components/Checkbox/Checkbox.d.ts +1 -1
- package/components/Chip/Chip.d.ts +0 -1
- package/components/ChipGroup/ChipGroup.d.ts +0 -1
- package/components/Combobox/Combobox.config.js +3 -3
- package/components/Combobox/Combobox.d.ts +975 -951
- package/components/Counter/Counter.d.ts +0 -1
- package/components/DatePicker/DatePicker.d.ts +53 -54
- package/components/Divider/Divider.d.ts +0 -1
- package/components/Drawer/Drawer.d.ts +18 -19
- package/components/Dropdown/Dropdown.d.ts +52 -52
- package/components/Dropzone/Dropzone.d.ts +15 -16
- package/components/EmptyState/EmptyState.d.ts +0 -1
- package/components/Flow/Flow.d.ts +1 -2
- package/components/Grid/Grid.d.ts +0 -1
- package/components/IconButton/IconButton.d.ts +35 -36
- package/components/Image/Image.d.ts +3 -4
- package/components/Indicator/Indicator.d.ts +0 -1
- package/components/Link/Link.d.ts +1 -2
- package/components/Mask/Mask.d.ts +224 -225
- package/components/NumberFormat/NumberFormat.d.ts +1 -1
- package/components/NumberInput/NumberInput.d.ts +38 -39
- package/components/Pagination/Pagination.d.ts +0 -1
- package/components/Popover/Popover.d.ts +0 -1
- package/components/Price/Price.d.ts +0 -1
- package/components/Progress/Progress.d.ts +0 -1
- package/components/Radiobox/Radiobox.d.ts +1 -1
- package/components/Range/Range.d.ts +105 -106
- package/components/Rating/Rating.d.ts +13 -14
- package/components/Segment/Segment.d.ts +8 -9
- package/components/Select/Select.config.js +3 -3
- package/components/Select/Select.d.ts +247 -244
- package/components/Sheet/Sheet.d.ts +0 -1
- package/components/Skeleton/Skeleton.d.ts +4 -5
- package/components/Slider/Slider.d.ts +96 -105
- package/components/Spinner/Spinner.d.ts +9 -14
- package/components/Steps/Steps.d.ts +0 -1
- package/components/Switch/Switch.d.ts +1 -1
- package/components/Table/Table.config.js +3 -3
- package/components/Table/Table.d.ts +0 -1
- package/components/Tabs/TabItem.d.ts +23 -23
- package/components/Tabs/Tabs.d.ts +1 -1
- package/components/TextArea/TextArea.d.ts +205 -206
- package/components/TextField/TextField.d.ts +224 -225
- package/components/Toast/Toast.d.ts +0 -1
- package/components/ToastNew/ToastNew.d.ts +1 -1
- package/components/Tokens/Colors/Colors.styles.d.ts +25 -26
- package/components/Tokens/Typography/Typography.styles.d.ts +23 -24
- package/components/Toolbar/Toolbar.d.ts +5 -6
- package/components/Tree/Tree.d.ts +0 -1
- package/components/Typography/Typography.d.ts +204 -205
- package/components/ViewContainer/ViewContainer.d.ts +0 -1
- package/emotion/cjs/components/Combobox/Combobox.config.js +3 -3
- package/emotion/cjs/components/Combobox/Combobox.stories.tsx +186 -0
- package/emotion/cjs/components/Select/Select.config.js +3 -3
- package/emotion/cjs/components/Select/Select.stories.tsx +186 -0
- package/emotion/cjs/components/Table/Table.config.js +3 -3
- package/emotion/es/components/Combobox/Combobox.config.js +3 -3
- package/emotion/es/components/Combobox/Combobox.stories.tsx +186 -0
- package/emotion/es/components/Select/Select.config.js +3 -3
- package/emotion/es/components/Select/Select.stories.tsx +186 -0
- package/emotion/es/components/Table/Table.config.js +3 -3
- package/es/components/Combobox/Combobox.config.js +3 -3
- package/es/components/Select/Select.config.js +3 -3
- package/es/components/Table/Table.config.js +3 -3
- package/mixins/index.d.ts +1 -2
- package/package.json +7 -7
@@ -1,4 +1,3 @@
|
|
1
|
-
/// <reference types="react" />
|
2
1
|
/**
|
3
2
|
* Поле ввода многострочного текста.
|
4
3
|
*/
|
@@ -27,37 +26,37 @@ export declare const TextArea: import("react").FunctionComponent<import("@salute
|
|
27
26
|
readOnly: {
|
28
27
|
true: import("@salutejs/plasma-new-hope/types/engines/types").PolymorphicClassName;
|
29
28
|
};
|
30
|
-
}> & ((Omit<import("@salutejs/plasma-new-hope/styled-components").TextareaHTMLAttributes<HTMLTextAreaElement>, "required" | "
|
31
|
-
status?: "" | "
|
32
|
-
label?: string
|
33
|
-
labelPlacement?: "
|
29
|
+
}> & ((Omit<import("@salutejs/plasma-new-hope/styled-components").TextareaHTMLAttributes<HTMLTextAreaElement>, "required" | "cols" | "rows"> & {
|
30
|
+
status?: "" | "success" | "warning" | "error";
|
31
|
+
label?: string;
|
32
|
+
labelPlacement?: "inner" | "outer";
|
34
33
|
titleCaption?: import("react").ReactNode;
|
35
|
-
contentRight?:
|
36
|
-
resize?: "none" | "both" | "horizontal" | "vertical"
|
37
|
-
helperText?: string
|
34
|
+
contentRight?: React.ReactElement;
|
35
|
+
resize?: "none" | "both" | "horizontal" | "vertical";
|
36
|
+
helperText?: string;
|
38
37
|
leftHelper?: import("react").ReactNode;
|
39
38
|
rightHelper?: import("react").ReactNode;
|
40
|
-
leftHelperPlacement?: "
|
39
|
+
leftHelperPlacement?: "inner" | "outer";
|
41
40
|
} & {
|
42
|
-
required?: boolean
|
43
|
-
requiredPlacement?: "left" | "right"
|
44
|
-
optional?: boolean
|
45
|
-
hasRequiredIndicator?: boolean
|
41
|
+
required?: boolean;
|
42
|
+
requiredPlacement?: "left" | "right";
|
43
|
+
optional?: boolean;
|
44
|
+
hasRequiredIndicator?: boolean;
|
46
45
|
} & {
|
47
46
|
hintText: string;
|
48
|
-
hintTrigger?: "
|
49
|
-
hintOpened?: boolean
|
50
|
-
hintView?: string
|
51
|
-
hintSize?: string
|
47
|
+
hintTrigger?: "hover" | "click";
|
48
|
+
hintOpened?: boolean;
|
49
|
+
hintView?: string;
|
50
|
+
hintSize?: string;
|
52
51
|
hintTargetIcon?: import("react").ReactNode;
|
53
|
-
hintPlacement?: import("@salutejs/plasma-new-hope/styled-components").PopoverPlacement | import("@salutejs/plasma-new-hope/styled-components").PopoverPlacementBasic
|
54
|
-
hintHasArrow?: boolean
|
55
|
-
hintOffset?: [number, number]
|
56
|
-
hintWidth?: string
|
52
|
+
hintPlacement?: import("@salutejs/plasma-new-hope/styled-components").PopoverPlacement | Array<import("@salutejs/plasma-new-hope/styled-components").PopoverPlacementBasic>;
|
53
|
+
hintHasArrow?: boolean;
|
54
|
+
hintOffset?: [number, number];
|
55
|
+
hintWidth?: string;
|
57
56
|
hintContentLeft?: import("react").ReactNode;
|
58
57
|
} & {
|
59
|
-
size?: string
|
60
|
-
view?: string
|
58
|
+
size?: string;
|
59
|
+
view?: string;
|
61
60
|
} & {
|
62
61
|
autoResize?: boolean | undefined;
|
63
62
|
maxAuto?: number | undefined;
|
@@ -71,40 +70,40 @@ export declare const TextArea: import("react").FunctionComponent<import("@salute
|
|
71
70
|
} & {
|
72
71
|
clear?: undefined;
|
73
72
|
hasDivider?: undefined;
|
74
|
-
} & import("react").RefAttributes<HTMLTextAreaElement>) | (Omit<import("@salutejs/plasma-new-hope/styled-components").TextareaHTMLAttributes<HTMLTextAreaElement>, "required" | "
|
75
|
-
status?: "" | "
|
76
|
-
label?: string
|
77
|
-
labelPlacement?: "
|
73
|
+
} & import("react").RefAttributes<HTMLTextAreaElement>) | (Omit<import("@salutejs/plasma-new-hope/styled-components").TextareaHTMLAttributes<HTMLTextAreaElement>, "required" | "cols" | "rows"> & {
|
74
|
+
status?: "" | "success" | "warning" | "error";
|
75
|
+
label?: string;
|
76
|
+
labelPlacement?: "inner" | "outer";
|
78
77
|
titleCaption?: import("react").ReactNode;
|
79
|
-
contentRight?:
|
80
|
-
resize?: "none" | "both" | "horizontal" | "vertical"
|
81
|
-
helperText?: string
|
78
|
+
contentRight?: React.ReactElement;
|
79
|
+
resize?: "none" | "both" | "horizontal" | "vertical";
|
80
|
+
helperText?: string;
|
82
81
|
leftHelper?: import("react").ReactNode;
|
83
82
|
rightHelper?: import("react").ReactNode;
|
84
|
-
leftHelperPlacement?: "
|
83
|
+
leftHelperPlacement?: "inner" | "outer";
|
85
84
|
} & {
|
86
|
-
required?: boolean
|
87
|
-
requiredPlacement?: "left" | "right"
|
88
|
-
optional?: boolean
|
89
|
-
hasRequiredIndicator?: boolean
|
85
|
+
required?: boolean;
|
86
|
+
requiredPlacement?: "left" | "right";
|
87
|
+
optional?: boolean;
|
88
|
+
hasRequiredIndicator?: boolean;
|
90
89
|
} & {
|
91
90
|
hintText: string;
|
92
|
-
hintTrigger?: "
|
93
|
-
hintOpened?: boolean
|
94
|
-
hintView?: string
|
95
|
-
hintSize?: string
|
91
|
+
hintTrigger?: "hover" | "click";
|
92
|
+
hintOpened?: boolean;
|
93
|
+
hintView?: string;
|
94
|
+
hintSize?: string;
|
96
95
|
hintTargetIcon?: import("react").ReactNode;
|
97
|
-
hintPlacement?: import("@salutejs/plasma-new-hope/styled-components").PopoverPlacement | import("@salutejs/plasma-new-hope/styled-components").PopoverPlacementBasic
|
98
|
-
hintHasArrow?: boolean
|
99
|
-
hintOffset?: [number, number]
|
100
|
-
hintWidth?: string
|
96
|
+
hintPlacement?: import("@salutejs/plasma-new-hope/styled-components").PopoverPlacement | Array<import("@salutejs/plasma-new-hope/styled-components").PopoverPlacementBasic>;
|
97
|
+
hintHasArrow?: boolean;
|
98
|
+
hintOffset?: [number, number];
|
99
|
+
hintWidth?: string;
|
101
100
|
hintContentLeft?: import("react").ReactNode;
|
102
101
|
} & {
|
103
|
-
size?: string
|
104
|
-
view?: string
|
102
|
+
size?: string;
|
103
|
+
view?: string;
|
105
104
|
} & {
|
106
|
-
height?:
|
107
|
-
width?:
|
105
|
+
height?: (number | string) | undefined;
|
106
|
+
width?: (number | string) | undefined;
|
108
107
|
} & {
|
109
108
|
autoResize?: undefined;
|
110
109
|
maxAuto?: undefined;
|
@@ -115,37 +114,37 @@ export declare const TextArea: import("react").FunctionComponent<import("@salute
|
|
115
114
|
} & {
|
116
115
|
clear?: undefined;
|
117
116
|
hasDivider?: undefined;
|
118
|
-
} & import("react").RefAttributes<HTMLTextAreaElement>) | (Omit<import("@salutejs/plasma-new-hope/styled-components").TextareaHTMLAttributes<HTMLTextAreaElement>, "required" | "
|
119
|
-
status?: "" | "
|
120
|
-
label?: string
|
121
|
-
labelPlacement?: "
|
117
|
+
} & import("react").RefAttributes<HTMLTextAreaElement>) | (Omit<import("@salutejs/plasma-new-hope/styled-components").TextareaHTMLAttributes<HTMLTextAreaElement>, "required" | "cols" | "rows"> & {
|
118
|
+
status?: "" | "success" | "warning" | "error";
|
119
|
+
label?: string;
|
120
|
+
labelPlacement?: "inner" | "outer";
|
122
121
|
titleCaption?: import("react").ReactNode;
|
123
|
-
contentRight?:
|
124
|
-
resize?: "none" | "both" | "horizontal" | "vertical"
|
125
|
-
helperText?: string
|
122
|
+
contentRight?: React.ReactElement;
|
123
|
+
resize?: "none" | "both" | "horizontal" | "vertical";
|
124
|
+
helperText?: string;
|
126
125
|
leftHelper?: import("react").ReactNode;
|
127
126
|
rightHelper?: import("react").ReactNode;
|
128
|
-
leftHelperPlacement?: "
|
127
|
+
leftHelperPlacement?: "inner" | "outer";
|
129
128
|
} & {
|
130
|
-
required?: boolean
|
131
|
-
requiredPlacement?: "left" | "right"
|
132
|
-
optional?: boolean
|
133
|
-
hasRequiredIndicator?: boolean
|
129
|
+
required?: boolean;
|
130
|
+
requiredPlacement?: "left" | "right";
|
131
|
+
optional?: boolean;
|
132
|
+
hasRequiredIndicator?: boolean;
|
134
133
|
} & {
|
135
134
|
hintText: string;
|
136
|
-
hintTrigger?: "
|
137
|
-
hintOpened?: boolean
|
138
|
-
hintView?: string
|
139
|
-
hintSize?: string
|
135
|
+
hintTrigger?: "hover" | "click";
|
136
|
+
hintOpened?: boolean;
|
137
|
+
hintView?: string;
|
138
|
+
hintSize?: string;
|
140
139
|
hintTargetIcon?: import("react").ReactNode;
|
141
|
-
hintPlacement?: import("@salutejs/plasma-new-hope/styled-components").PopoverPlacement | import("@salutejs/plasma-new-hope/styled-components").PopoverPlacementBasic
|
142
|
-
hintHasArrow?: boolean
|
143
|
-
hintOffset?: [number, number]
|
144
|
-
hintWidth?: string
|
140
|
+
hintPlacement?: import("@salutejs/plasma-new-hope/styled-components").PopoverPlacement | Array<import("@salutejs/plasma-new-hope/styled-components").PopoverPlacementBasic>;
|
141
|
+
hintHasArrow?: boolean;
|
142
|
+
hintOffset?: [number, number];
|
143
|
+
hintWidth?: string;
|
145
144
|
hintContentLeft?: import("react").ReactNode;
|
146
145
|
} & {
|
147
|
-
size?: string
|
148
|
-
view?: string
|
146
|
+
size?: string;
|
147
|
+
view?: string;
|
149
148
|
} & {
|
150
149
|
rows?: number | undefined;
|
151
150
|
cols?: number | undefined;
|
@@ -159,37 +158,37 @@ export declare const TextArea: import("react").FunctionComponent<import("@salute
|
|
159
158
|
} & {
|
160
159
|
clear?: undefined;
|
161
160
|
hasDivider?: undefined;
|
162
|
-
} & import("react").RefAttributes<HTMLTextAreaElement>) | (Omit<import("@salutejs/plasma-new-hope/styled-components").TextareaHTMLAttributes<HTMLTextAreaElement>, "required" | "
|
163
|
-
status?: "" | "
|
164
|
-
label?: string
|
165
|
-
labelPlacement?: "
|
161
|
+
} & import("react").RefAttributes<HTMLTextAreaElement>) | (Omit<import("@salutejs/plasma-new-hope/styled-components").TextareaHTMLAttributes<HTMLTextAreaElement>, "required" | "cols" | "rows"> & {
|
162
|
+
status?: "" | "success" | "warning" | "error";
|
163
|
+
label?: string;
|
164
|
+
labelPlacement?: "inner" | "outer";
|
166
165
|
titleCaption?: import("react").ReactNode;
|
167
|
-
contentRight?:
|
168
|
-
resize?: "none" | "both" | "horizontal" | "vertical"
|
169
|
-
helperText?: string
|
166
|
+
contentRight?: React.ReactElement;
|
167
|
+
resize?: "none" | "both" | "horizontal" | "vertical";
|
168
|
+
helperText?: string;
|
170
169
|
leftHelper?: import("react").ReactNode;
|
171
170
|
rightHelper?: import("react").ReactNode;
|
172
|
-
leftHelperPlacement?: "
|
171
|
+
leftHelperPlacement?: "inner" | "outer";
|
173
172
|
} & {
|
174
|
-
required?: boolean
|
175
|
-
requiredPlacement?: "left" | "right"
|
176
|
-
optional?: boolean
|
177
|
-
hasRequiredIndicator?: boolean
|
173
|
+
required?: boolean;
|
174
|
+
requiredPlacement?: "left" | "right";
|
175
|
+
optional?: boolean;
|
176
|
+
hasRequiredIndicator?: boolean;
|
178
177
|
} & {
|
179
178
|
hintText: string;
|
180
|
-
hintTrigger?: "
|
181
|
-
hintOpened?: boolean
|
182
|
-
hintView?: string
|
183
|
-
hintSize?: string
|
179
|
+
hintTrigger?: "hover" | "click";
|
180
|
+
hintOpened?: boolean;
|
181
|
+
hintView?: string;
|
182
|
+
hintSize?: string;
|
184
183
|
hintTargetIcon?: import("react").ReactNode;
|
185
|
-
hintPlacement?: import("@salutejs/plasma-new-hope/styled-components").PopoverPlacement | import("@salutejs/plasma-new-hope/styled-components").PopoverPlacementBasic
|
186
|
-
hintHasArrow?: boolean
|
187
|
-
hintOffset?: [number, number]
|
188
|
-
hintWidth?: string
|
184
|
+
hintPlacement?: import("@salutejs/plasma-new-hope/styled-components").PopoverPlacement | Array<import("@salutejs/plasma-new-hope/styled-components").PopoverPlacementBasic>;
|
185
|
+
hintHasArrow?: boolean;
|
186
|
+
hintOffset?: [number, number];
|
187
|
+
hintWidth?: string;
|
189
188
|
hintContentLeft?: import("react").ReactNode;
|
190
189
|
} & {
|
191
|
-
size?: string
|
192
|
-
view?: string
|
190
|
+
size?: string;
|
191
|
+
view?: string;
|
193
192
|
} & {
|
194
193
|
clear?: true | undefined;
|
195
194
|
hasDivider?: boolean | undefined;
|
@@ -203,37 +202,37 @@ export declare const TextArea: import("react").FunctionComponent<import("@salute
|
|
203
202
|
} & {
|
204
203
|
height?: undefined;
|
205
204
|
width?: undefined;
|
206
|
-
} & import("react").RefAttributes<HTMLTextAreaElement>) | (Omit<import("@salutejs/plasma-new-hope/styled-components").TextareaHTMLAttributes<HTMLTextAreaElement>, "required" | "
|
207
|
-
status?: "" | "
|
208
|
-
label?: string
|
209
|
-
labelPlacement?: "
|
205
|
+
} & import("react").RefAttributes<HTMLTextAreaElement>) | (Omit<import("@salutejs/plasma-new-hope/styled-components").TextareaHTMLAttributes<HTMLTextAreaElement>, "required" | "cols" | "rows"> & {
|
206
|
+
status?: "" | "success" | "warning" | "error";
|
207
|
+
label?: string;
|
208
|
+
labelPlacement?: "inner" | "outer";
|
210
209
|
titleCaption?: import("react").ReactNode;
|
211
|
-
contentRight?:
|
212
|
-
resize?: "none" | "both" | "horizontal" | "vertical"
|
213
|
-
helperText?: string
|
210
|
+
contentRight?: React.ReactElement;
|
211
|
+
resize?: "none" | "both" | "horizontal" | "vertical";
|
212
|
+
helperText?: string;
|
214
213
|
leftHelper?: import("react").ReactNode;
|
215
214
|
rightHelper?: import("react").ReactNode;
|
216
|
-
leftHelperPlacement?: "
|
217
|
-
} & {
|
218
|
-
required?: boolean
|
219
|
-
requiredPlacement?: "left" | "right"
|
220
|
-
optional?: boolean
|
221
|
-
hasRequiredIndicator?: boolean
|
222
|
-
} & {
|
223
|
-
hintText?:
|
224
|
-
hintOpened?:
|
225
|
-
hintTrigger?:
|
226
|
-
hintView?:
|
227
|
-
hintSize?:
|
228
|
-
hintTargetIcon?:
|
229
|
-
hintPlacement?:
|
230
|
-
hintHasArrow?:
|
231
|
-
hintOffset?:
|
232
|
-
hintWidth?:
|
233
|
-
hintContentLeft?:
|
234
|
-
} & {
|
235
|
-
size?: string
|
236
|
-
view?: string
|
215
|
+
leftHelperPlacement?: "inner" | "outer";
|
216
|
+
} & {
|
217
|
+
required?: boolean;
|
218
|
+
requiredPlacement?: "left" | "right";
|
219
|
+
optional?: boolean;
|
220
|
+
hasRequiredIndicator?: boolean;
|
221
|
+
} & {
|
222
|
+
hintText?: never;
|
223
|
+
hintOpened?: never;
|
224
|
+
hintTrigger?: never;
|
225
|
+
hintView?: never;
|
226
|
+
hintSize?: never;
|
227
|
+
hintTargetIcon?: never;
|
228
|
+
hintPlacement?: never;
|
229
|
+
hintHasArrow?: never;
|
230
|
+
hintOffset?: never;
|
231
|
+
hintWidth?: never;
|
232
|
+
hintContentLeft?: never;
|
233
|
+
} & {
|
234
|
+
size?: string;
|
235
|
+
view?: string;
|
237
236
|
} & {
|
238
237
|
autoResize?: boolean | undefined;
|
239
238
|
maxAuto?: number | undefined;
|
@@ -247,40 +246,40 @@ export declare const TextArea: import("react").FunctionComponent<import("@salute
|
|
247
246
|
} & {
|
248
247
|
clear?: undefined;
|
249
248
|
hasDivider?: undefined;
|
250
|
-
} & import("react").RefAttributes<HTMLTextAreaElement>) | (Omit<import("@salutejs/plasma-new-hope/styled-components").TextareaHTMLAttributes<HTMLTextAreaElement>, "required" | "
|
251
|
-
status?: "" | "
|
252
|
-
label?: string
|
253
|
-
labelPlacement?: "
|
249
|
+
} & import("react").RefAttributes<HTMLTextAreaElement>) | (Omit<import("@salutejs/plasma-new-hope/styled-components").TextareaHTMLAttributes<HTMLTextAreaElement>, "required" | "cols" | "rows"> & {
|
250
|
+
status?: "" | "success" | "warning" | "error";
|
251
|
+
label?: string;
|
252
|
+
labelPlacement?: "inner" | "outer";
|
254
253
|
titleCaption?: import("react").ReactNode;
|
255
|
-
contentRight?:
|
256
|
-
resize?: "none" | "both" | "horizontal" | "vertical"
|
257
|
-
helperText?: string
|
254
|
+
contentRight?: React.ReactElement;
|
255
|
+
resize?: "none" | "both" | "horizontal" | "vertical";
|
256
|
+
helperText?: string;
|
258
257
|
leftHelper?: import("react").ReactNode;
|
259
258
|
rightHelper?: import("react").ReactNode;
|
260
|
-
leftHelperPlacement?: "
|
261
|
-
} & {
|
262
|
-
required?: boolean
|
263
|
-
requiredPlacement?: "left" | "right"
|
264
|
-
optional?: boolean
|
265
|
-
hasRequiredIndicator?: boolean
|
266
|
-
} & {
|
267
|
-
hintText?:
|
268
|
-
hintOpened?:
|
269
|
-
hintTrigger?:
|
270
|
-
hintView?:
|
271
|
-
hintSize?:
|
272
|
-
hintTargetIcon?:
|
273
|
-
hintPlacement?:
|
274
|
-
hintHasArrow?:
|
275
|
-
hintOffset?:
|
276
|
-
hintWidth?:
|
277
|
-
hintContentLeft?:
|
278
|
-
} & {
|
279
|
-
size?: string
|
280
|
-
view?: string
|
281
|
-
} & {
|
282
|
-
height?:
|
283
|
-
width?:
|
259
|
+
leftHelperPlacement?: "inner" | "outer";
|
260
|
+
} & {
|
261
|
+
required?: boolean;
|
262
|
+
requiredPlacement?: "left" | "right";
|
263
|
+
optional?: boolean;
|
264
|
+
hasRequiredIndicator?: boolean;
|
265
|
+
} & {
|
266
|
+
hintText?: never;
|
267
|
+
hintOpened?: never;
|
268
|
+
hintTrigger?: never;
|
269
|
+
hintView?: never;
|
270
|
+
hintSize?: never;
|
271
|
+
hintTargetIcon?: never;
|
272
|
+
hintPlacement?: never;
|
273
|
+
hintHasArrow?: never;
|
274
|
+
hintOffset?: never;
|
275
|
+
hintWidth?: never;
|
276
|
+
hintContentLeft?: never;
|
277
|
+
} & {
|
278
|
+
size?: string;
|
279
|
+
view?: string;
|
280
|
+
} & {
|
281
|
+
height?: (number | string) | undefined;
|
282
|
+
width?: (number | string) | undefined;
|
284
283
|
} & {
|
285
284
|
autoResize?: undefined;
|
286
285
|
maxAuto?: undefined;
|
@@ -291,37 +290,37 @@ export declare const TextArea: import("react").FunctionComponent<import("@salute
|
|
291
290
|
} & {
|
292
291
|
clear?: undefined;
|
293
292
|
hasDivider?: undefined;
|
294
|
-
} & import("react").RefAttributes<HTMLTextAreaElement>) | (Omit<import("@salutejs/plasma-new-hope/styled-components").TextareaHTMLAttributes<HTMLTextAreaElement>, "required" | "
|
295
|
-
status?: "" | "
|
296
|
-
label?: string
|
297
|
-
labelPlacement?: "
|
293
|
+
} & import("react").RefAttributes<HTMLTextAreaElement>) | (Omit<import("@salutejs/plasma-new-hope/styled-components").TextareaHTMLAttributes<HTMLTextAreaElement>, "required" | "cols" | "rows"> & {
|
294
|
+
status?: "" | "success" | "warning" | "error";
|
295
|
+
label?: string;
|
296
|
+
labelPlacement?: "inner" | "outer";
|
298
297
|
titleCaption?: import("react").ReactNode;
|
299
|
-
contentRight?:
|
300
|
-
resize?: "none" | "both" | "horizontal" | "vertical"
|
301
|
-
helperText?: string
|
298
|
+
contentRight?: React.ReactElement;
|
299
|
+
resize?: "none" | "both" | "horizontal" | "vertical";
|
300
|
+
helperText?: string;
|
302
301
|
leftHelper?: import("react").ReactNode;
|
303
302
|
rightHelper?: import("react").ReactNode;
|
304
|
-
leftHelperPlacement?: "
|
305
|
-
} & {
|
306
|
-
required?: boolean
|
307
|
-
requiredPlacement?: "left" | "right"
|
308
|
-
optional?: boolean
|
309
|
-
hasRequiredIndicator?: boolean
|
310
|
-
} & {
|
311
|
-
hintText?:
|
312
|
-
hintOpened?:
|
313
|
-
hintTrigger?:
|
314
|
-
hintView?:
|
315
|
-
hintSize?:
|
316
|
-
hintTargetIcon?:
|
317
|
-
hintPlacement?:
|
318
|
-
hintHasArrow?:
|
319
|
-
hintOffset?:
|
320
|
-
hintWidth?:
|
321
|
-
hintContentLeft?:
|
322
|
-
} & {
|
323
|
-
size?: string
|
324
|
-
view?: string
|
303
|
+
leftHelperPlacement?: "inner" | "outer";
|
304
|
+
} & {
|
305
|
+
required?: boolean;
|
306
|
+
requiredPlacement?: "left" | "right";
|
307
|
+
optional?: boolean;
|
308
|
+
hasRequiredIndicator?: boolean;
|
309
|
+
} & {
|
310
|
+
hintText?: never;
|
311
|
+
hintOpened?: never;
|
312
|
+
hintTrigger?: never;
|
313
|
+
hintView?: never;
|
314
|
+
hintSize?: never;
|
315
|
+
hintTargetIcon?: never;
|
316
|
+
hintPlacement?: never;
|
317
|
+
hintHasArrow?: never;
|
318
|
+
hintOffset?: never;
|
319
|
+
hintWidth?: never;
|
320
|
+
hintContentLeft?: never;
|
321
|
+
} & {
|
322
|
+
size?: string;
|
323
|
+
view?: string;
|
325
324
|
} & {
|
326
325
|
rows?: number | undefined;
|
327
326
|
cols?: number | undefined;
|
@@ -335,37 +334,37 @@ export declare const TextArea: import("react").FunctionComponent<import("@salute
|
|
335
334
|
} & {
|
336
335
|
clear?: undefined;
|
337
336
|
hasDivider?: undefined;
|
338
|
-
} & import("react").RefAttributes<HTMLTextAreaElement>) | (Omit<import("@salutejs/plasma-new-hope/styled-components").TextareaHTMLAttributes<HTMLTextAreaElement>, "required" | "
|
339
|
-
status?: "" | "
|
340
|
-
label?: string
|
341
|
-
labelPlacement?: "
|
337
|
+
} & import("react").RefAttributes<HTMLTextAreaElement>) | (Omit<import("@salutejs/plasma-new-hope/styled-components").TextareaHTMLAttributes<HTMLTextAreaElement>, "required" | "cols" | "rows"> & {
|
338
|
+
status?: "" | "success" | "warning" | "error";
|
339
|
+
label?: string;
|
340
|
+
labelPlacement?: "inner" | "outer";
|
342
341
|
titleCaption?: import("react").ReactNode;
|
343
|
-
contentRight?:
|
344
|
-
resize?: "none" | "both" | "horizontal" | "vertical"
|
345
|
-
helperText?: string
|
342
|
+
contentRight?: React.ReactElement;
|
343
|
+
resize?: "none" | "both" | "horizontal" | "vertical";
|
344
|
+
helperText?: string;
|
346
345
|
leftHelper?: import("react").ReactNode;
|
347
346
|
rightHelper?: import("react").ReactNode;
|
348
|
-
leftHelperPlacement?: "
|
349
|
-
} & {
|
350
|
-
required?: boolean
|
351
|
-
requiredPlacement?: "left" | "right"
|
352
|
-
optional?: boolean
|
353
|
-
hasRequiredIndicator?: boolean
|
354
|
-
} & {
|
355
|
-
hintText?:
|
356
|
-
hintOpened?:
|
357
|
-
hintTrigger?:
|
358
|
-
hintView?:
|
359
|
-
hintSize?:
|
360
|
-
hintTargetIcon?:
|
361
|
-
hintPlacement?:
|
362
|
-
hintHasArrow?:
|
363
|
-
hintOffset?:
|
364
|
-
hintWidth?:
|
365
|
-
hintContentLeft?:
|
366
|
-
} & {
|
367
|
-
size?: string
|
368
|
-
view?: string
|
347
|
+
leftHelperPlacement?: "inner" | "outer";
|
348
|
+
} & {
|
349
|
+
required?: boolean;
|
350
|
+
requiredPlacement?: "left" | "right";
|
351
|
+
optional?: boolean;
|
352
|
+
hasRequiredIndicator?: boolean;
|
353
|
+
} & {
|
354
|
+
hintText?: never;
|
355
|
+
hintOpened?: never;
|
356
|
+
hintTrigger?: never;
|
357
|
+
hintView?: never;
|
358
|
+
hintSize?: never;
|
359
|
+
hintTargetIcon?: never;
|
360
|
+
hintPlacement?: never;
|
361
|
+
hintHasArrow?: never;
|
362
|
+
hintOffset?: never;
|
363
|
+
hintWidth?: never;
|
364
|
+
hintContentLeft?: never;
|
365
|
+
} & {
|
366
|
+
size?: string;
|
367
|
+
view?: string;
|
369
368
|
} & {
|
370
369
|
clear?: true | undefined;
|
371
370
|
hasDivider?: boolean | undefined;
|