@salutejs/sdds-cs 0.315.0-canary.1955.14967306371.0 → 0.315.0-canary.1956.14967247895.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.
@@ -14,7 +14,7 @@ export declare const Accordion: import("react").FunctionComponent<import("@salut
14
14
  singleActive?: boolean | undefined;
15
15
  defaultActiveEventKey?: number[] | undefined;
16
16
  disabled?: boolean | undefined;
17
- stretching?: "fixed" | "filled" | undefined;
17
+ stretching?: "filled" | "fixed" | undefined;
18
18
  onChange?: ((index?: number | undefined, value?: boolean | undefined) => void) | undefined;
19
19
  children?: import("react").ReactNode;
20
20
  className?: string | undefined;
@@ -22,7 +22,7 @@ export declare const Attach: import("react").FunctionComponent<import("@salutejs
22
22
  isLoading?: boolean | undefined;
23
23
  loader?: import("react").ReactNode;
24
24
  stretch?: boolean | undefined;
25
- stretching?: ("fixed" | "auto" | "filled") | undefined;
25
+ stretching?: ("auto" | "filled" | "fixed") | undefined;
26
26
  square?: boolean | undefined;
27
27
  focused?: boolean | undefined;
28
28
  disabled?: boolean | undefined;
@@ -45,7 +45,7 @@ export declare const Attach: import("react").FunctionComponent<import("@salutejs
45
45
  isLoading?: boolean | undefined;
46
46
  loader?: import("react").ReactNode;
47
47
  stretch?: boolean | undefined;
48
- stretching?: ("fixed" | "auto" | "filled") | undefined;
48
+ stretching?: ("auto" | "filled" | "fixed") | undefined;
49
49
  square?: boolean | undefined;
50
50
  focused?: boolean | undefined;
51
51
  disabled?: boolean | undefined;
@@ -71,7 +71,7 @@ export declare const Attach: import("react").FunctionComponent<import("@salutejs
71
71
  isLoading?: boolean | undefined;
72
72
  loader?: import("react").ReactNode;
73
73
  stretch?: boolean | undefined;
74
- stretching?: ("fixed" | "auto" | "filled") | undefined;
74
+ stretching?: ("auto" | "filled" | "fixed") | undefined;
75
75
  square?: boolean | undefined;
76
76
  focused?: boolean | undefined;
77
77
  disabled?: boolean | undefined;
@@ -95,7 +95,7 @@ export declare const Attach: import("react").FunctionComponent<import("@salutejs
95
95
  isLoading?: boolean | undefined;
96
96
  loader?: import("react").ReactNode;
97
97
  stretch?: boolean | undefined;
98
- stretching?: ("fixed" | "auto" | "filled") | undefined;
98
+ stretching?: ("auto" | "filled" | "fixed") | undefined;
99
99
  square?: boolean | undefined;
100
100
  focused?: boolean | undefined;
101
101
  disabled?: boolean | undefined;
@@ -122,7 +122,7 @@ export declare const Attach: import("react").FunctionComponent<import("@salutejs
122
122
  isLoading?: boolean | undefined;
123
123
  loader?: import("react").ReactNode;
124
124
  stretch?: boolean | undefined;
125
- stretching?: ("fixed" | "auto" | "filled") | undefined;
125
+ stretching?: ("auto" | "filled" | "fixed") | undefined;
126
126
  square?: boolean | undefined;
127
127
  focused?: boolean | undefined;
128
128
  disabled?: boolean | undefined;
@@ -148,7 +148,7 @@ export declare const Attach: import("react").FunctionComponent<import("@salutejs
148
148
  isLoading?: boolean | undefined;
149
149
  loader?: import("react").ReactNode;
150
150
  stretch?: boolean | undefined;
151
- stretching?: ("fixed" | "auto" | "filled") | undefined;
151
+ stretching?: ("auto" | "filled" | "fixed") | undefined;
152
152
  square?: boolean | undefined;
153
153
  focused?: boolean | undefined;
154
154
  disabled?: boolean | undefined;
@@ -171,7 +171,7 @@ export declare const Attach: import("react").FunctionComponent<import("@salutejs
171
171
  isLoading?: boolean | undefined;
172
172
  loader?: import("react").ReactNode;
173
173
  stretch?: boolean | undefined;
174
- stretching?: ("fixed" | "auto" | "filled") | undefined;
174
+ stretching?: ("auto" | "filled" | "fixed") | undefined;
175
175
  square?: boolean | undefined;
176
176
  focused?: boolean | undefined;
177
177
  disabled?: boolean | undefined;
@@ -198,7 +198,7 @@ export declare const Attach: import("react").FunctionComponent<import("@salutejs
198
198
  isLoading?: boolean | undefined;
199
199
  loader?: import("react").ReactNode;
200
200
  stretch?: boolean | undefined;
201
- stretching?: ("fixed" | "auto" | "filled") | undefined;
201
+ stretching?: ("auto" | "filled" | "fixed") | undefined;
202
202
  square?: boolean | undefined;
203
203
  focused?: boolean | undefined;
204
204
  disabled?: boolean | undefined;
@@ -1,452 +1,2 @@
1
1
  /// <reference types="react" />
2
- export declare const Autocomplete: import("react").FunctionComponent<import("@salutejs/plasma-new-hope/types/engines/types").PropsType<{
3
- view: {
4
- default: import("@salutejs/plasma-new-hope/types/engines/types").PolymorphicClassName;
5
- negative: import("@salutejs/plasma-new-hope/types/engines/types").PolymorphicClassName;
6
- };
7
- size: {
8
- s: import("@salutejs/plasma-new-hope/types/engines/types").PolymorphicClassName;
9
- };
10
- labelPlacement: {
11
- inner: import("@salutejs/plasma-new-hope/types/engines/types").PolymorphicClassName;
12
- outer: import("@salutejs/plasma-new-hope/types/engines/types").PolymorphicClassName;
13
- };
14
- disabled: {
15
- true: import("@salutejs/plasma-new-hope/types/engines/types").PolymorphicClassName;
16
- };
17
- readOnly: {
18
- true: import("@salutejs/plasma-new-hope/types/engines/types").PolymorphicClassName;
19
- };
20
- }> & (({
21
- size?: string | undefined;
22
- view?: string | undefined;
23
- labelPlacement?: string | undefined;
24
- readOnly?: boolean | undefined;
25
- disabled?: boolean | undefined;
26
- portal?: string | import("react").RefObject<HTMLElement> | undefined;
27
- value?: string | undefined;
28
- suggestions?: import("@salutejs/plasma-new-hope/styled-components").SuggestionItemType[] | undefined;
29
- threshold?: number | undefined;
30
- filter?: ((data: import("@salutejs/plasma-new-hope/styled-components").SuggestionItemType) => boolean) | undefined;
31
- onSuggestionSelect?: ((data: import("@salutejs/plasma-new-hope/styled-components").SuggestionItemType) => void) | undefined;
32
- onScroll?: ((e: import("react").UIEvent<HTMLUListElement, UIEvent>) => void) | undefined;
33
- listMaxHeight?: string | undefined;
34
- listWidth?: string | undefined;
35
- renderList?: ((data?: import("@salutejs/plasma-new-hope/styled-components").SuggestionItemType[] | undefined) => import("react").ReactNode) | undefined;
36
- renderListEnd?: (() => import("react").ReactNode) | undefined;
37
- renderItem?: ((item: import("@salutejs/plasma-new-hope/styled-components").SuggestionItemType) => import("react").ReactNode) | undefined;
38
- defaultValue?: string | undefined;
39
- beforeList?: import("react").ReactNode;
40
- afterList?: import("react").ReactNode;
41
- virtual?: boolean | undefined;
42
- } & Omit<{
43
- titleCaption?: import("react").ReactNode;
44
- leftHelper?: import("react").ReactNode;
45
- contentLeft?: import("react").ReactElement<any, string | import("react").JSXElementConstructor<any>> | undefined;
46
- contentRight?: import("react").ReactElement<any, string | import("react").JSXElementConstructor<any>> | undefined;
47
- textBefore?: string | undefined;
48
- textAfter?: string | undefined;
49
- onSearch?: ((value: string, event?: import("react").KeyboardEvent<HTMLInputElement> | undefined) => void) | undefined;
50
- } & import("@salutejs/plasma-new-hope/types/components/TextField/TextField.types").LabelProps & import("@salutejs/plasma-new-hope/types/components/TextField/TextField.types").RequiredProps & {
51
- clear?: boolean | undefined;
52
- hasDivider?: boolean | undefined;
53
- } & {
54
- hintText: string;
55
- hintTrigger?: "click" | "hover" | undefined;
56
- hintView?: string | undefined;
57
- hintSize?: string | undefined;
58
- hintTargetIcon?: import("react").ReactNode;
59
- hintTargetPlacement?: "outer" | "inner" | undefined;
60
- hintPlacement?: import("@salutejs/plasma-new-hope/styled-components").PopoverPlacement | import("@salutejs/plasma-new-hope/styled-components").PopoverPlacementBasic[] | undefined;
61
- hintHasArrow?: boolean | undefined;
62
- hintOffset?: [number, number] | undefined;
63
- hintWidth?: string | undefined;
64
- hintContentLeft?: import("react").ReactNode;
65
- } & {
66
- chips?: undefined;
67
- onChangeChips?: undefined;
68
- enumerationType?: "plain" | undefined;
69
- onSearch?: ((value: string, event?: import("react").KeyboardEvent<HTMLInputElement> | undefined) => void) | undefined;
70
- chipType?: undefined;
71
- chipView?: undefined;
72
- chipValidator?: undefined;
73
- }, "labelPlacement" | "chipView" | "chips" | "onChangeChips" | "enumerationType" | "chipType" | "chipValidator"> & Omit<import("react").InputHTMLAttributes<HTMLInputElement>, "required" | "size"> & import("react").RefAttributes<HTMLInputElement>) | ({
74
- size?: string | undefined;
75
- view?: string | undefined;
76
- labelPlacement?: string | undefined;
77
- readOnly?: boolean | undefined;
78
- disabled?: boolean | undefined;
79
- portal?: string | import("react").RefObject<HTMLElement> | undefined;
80
- value?: string | undefined;
81
- suggestions?: import("@salutejs/plasma-new-hope/styled-components").SuggestionItemType[] | undefined;
82
- threshold?: number | undefined;
83
- filter?: ((data: import("@salutejs/plasma-new-hope/styled-components").SuggestionItemType) => boolean) | undefined;
84
- onSuggestionSelect?: ((data: import("@salutejs/plasma-new-hope/styled-components").SuggestionItemType) => void) | undefined;
85
- onScroll?: ((e: import("react").UIEvent<HTMLUListElement, UIEvent>) => void) | undefined;
86
- listMaxHeight?: string | undefined;
87
- listWidth?: string | undefined;
88
- renderList?: ((data?: import("@salutejs/plasma-new-hope/styled-components").SuggestionItemType[] | undefined) => import("react").ReactNode) | undefined;
89
- renderListEnd?: (() => import("react").ReactNode) | undefined;
90
- renderItem?: ((item: import("@salutejs/plasma-new-hope/styled-components").SuggestionItemType) => import("react").ReactNode) | undefined;
91
- defaultValue?: string | undefined;
92
- beforeList?: import("react").ReactNode;
93
- afterList?: import("react").ReactNode;
94
- virtual?: boolean | undefined;
95
- } & Omit<{
96
- titleCaption?: import("react").ReactNode;
97
- leftHelper?: import("react").ReactNode;
98
- contentLeft?: import("react").ReactElement<any, string | import("react").JSXElementConstructor<any>> | undefined;
99
- contentRight?: import("react").ReactElement<any, string | import("react").JSXElementConstructor<any>> | undefined;
100
- textBefore?: string | undefined;
101
- textAfter?: string | undefined;
102
- onSearch?: ((value: string, event?: import("react").KeyboardEvent<HTMLInputElement> | undefined) => void) | undefined;
103
- } & import("@salutejs/plasma-new-hope/types/components/TextField/TextField.types").LabelProps & import("@salutejs/plasma-new-hope/types/components/TextField/TextField.types").RequiredProps & {
104
- clear?: boolean | undefined;
105
- hasDivider?: boolean | undefined;
106
- } & {
107
- hintText: string;
108
- hintTrigger?: "click" | "hover" | undefined;
109
- hintView?: string | undefined;
110
- hintSize?: string | undefined;
111
- hintTargetIcon?: import("react").ReactNode;
112
- hintTargetPlacement?: "outer" | "inner" | undefined;
113
- hintPlacement?: import("@salutejs/plasma-new-hope/styled-components").PopoverPlacement | import("@salutejs/plasma-new-hope/styled-components").PopoverPlacementBasic[] | undefined;
114
- hintHasArrow?: boolean | undefined;
115
- hintOffset?: [number, number] | undefined;
116
- hintWidth?: string | undefined;
117
- hintContentLeft?: import("react").ReactNode;
118
- } & {
119
- enumerationType: "chip";
120
- onSearch?: undefined;
121
- chips?: import("@salutejs/plasma-new-hope/types/components/TextField/TextField.types").TextFieldPrimitiveValue[] | undefined;
122
- onChangeChips?: ((value: import("@salutejs/plasma-new-hope/types/components/TextField/TextField.types").TextFieldPrimitiveValue[]) => void) | undefined;
123
- chipType?: "text" | "default" | undefined;
124
- chipView?: string | undefined;
125
- chipValidator?: ((value: string) => {
126
- view?: string | undefined;
127
- }) | undefined;
128
- }, "labelPlacement" | "chipView" | "chips" | "onChangeChips" | "enumerationType" | "chipType" | "chipValidator"> & Omit<import("react").InputHTMLAttributes<HTMLInputElement>, "required" | "size"> & import("react").RefAttributes<HTMLInputElement>) | ({
129
- size?: string | undefined;
130
- view?: string | undefined;
131
- labelPlacement?: string | undefined;
132
- readOnly?: boolean | undefined;
133
- disabled?: boolean | undefined;
134
- portal?: string | import("react").RefObject<HTMLElement> | undefined;
135
- value?: string | undefined;
136
- suggestions?: import("@salutejs/plasma-new-hope/styled-components").SuggestionItemType[] | undefined;
137
- threshold?: number | undefined;
138
- filter?: ((data: import("@salutejs/plasma-new-hope/styled-components").SuggestionItemType) => boolean) | undefined;
139
- onSuggestionSelect?: ((data: import("@salutejs/plasma-new-hope/styled-components").SuggestionItemType) => void) | undefined;
140
- onScroll?: ((e: import("react").UIEvent<HTMLUListElement, UIEvent>) => void) | undefined;
141
- listMaxHeight?: string | undefined;
142
- listWidth?: string | undefined;
143
- renderList?: ((data?: import("@salutejs/plasma-new-hope/styled-components").SuggestionItemType[] | undefined) => import("react").ReactNode) | undefined;
144
- renderListEnd?: (() => import("react").ReactNode) | undefined;
145
- renderItem?: ((item: import("@salutejs/plasma-new-hope/styled-components").SuggestionItemType) => import("react").ReactNode) | undefined;
146
- defaultValue?: string | undefined;
147
- beforeList?: import("react").ReactNode;
148
- afterList?: import("react").ReactNode;
149
- virtual?: boolean | undefined;
150
- } & Omit<{
151
- titleCaption?: import("react").ReactNode;
152
- leftHelper?: import("react").ReactNode;
153
- contentLeft?: import("react").ReactElement<any, string | import("react").JSXElementConstructor<any>> | undefined;
154
- contentRight?: import("react").ReactElement<any, string | import("react").JSXElementConstructor<any>> | undefined;
155
- textBefore?: string | undefined;
156
- textAfter?: string | undefined;
157
- onSearch?: ((value: string, event?: import("react").KeyboardEvent<HTMLInputElement> | undefined) => void) | undefined;
158
- } & import("@salutejs/plasma-new-hope/types/components/TextField/TextField.types").LabelProps & import("@salutejs/plasma-new-hope/types/components/TextField/TextField.types").RequiredProps & {
159
- clear?: boolean | undefined;
160
- hasDivider?: boolean | undefined;
161
- } & {
162
- hintTrigger?: undefined;
163
- hintText?: undefined;
164
- hintView?: undefined;
165
- hintSize?: undefined;
166
- hintTargetIcon?: undefined;
167
- hintTargetPlacement?: undefined;
168
- hintPlacement?: undefined;
169
- hintHasArrow?: undefined;
170
- hintOffset?: undefined;
171
- hintWidth?: undefined;
172
- hintContentLeft?: undefined;
173
- } & {
174
- chips?: undefined;
175
- onChangeChips?: undefined;
176
- enumerationType?: "plain" | undefined;
177
- onSearch?: ((value: string, event?: import("react").KeyboardEvent<HTMLInputElement> | undefined) => void) | undefined;
178
- chipType?: undefined;
179
- chipView?: undefined;
180
- chipValidator?: undefined;
181
- }, "labelPlacement" | "chipView" | "chips" | "onChangeChips" | "enumerationType" | "chipType" | "chipValidator"> & Omit<import("react").InputHTMLAttributes<HTMLInputElement>, "required" | "size"> & import("react").RefAttributes<HTMLInputElement>) | ({
182
- size?: string | undefined;
183
- view?: string | undefined;
184
- labelPlacement?: string | undefined;
185
- readOnly?: boolean | undefined;
186
- disabled?: boolean | undefined;
187
- portal?: string | import("react").RefObject<HTMLElement> | undefined;
188
- value?: string | undefined;
189
- suggestions?: import("@salutejs/plasma-new-hope/styled-components").SuggestionItemType[] | undefined;
190
- threshold?: number | undefined;
191
- filter?: ((data: import("@salutejs/plasma-new-hope/styled-components").SuggestionItemType) => boolean) | undefined;
192
- onSuggestionSelect?: ((data: import("@salutejs/plasma-new-hope/styled-components").SuggestionItemType) => void) | undefined;
193
- onScroll?: ((e: import("react").UIEvent<HTMLUListElement, UIEvent>) => void) | undefined;
194
- listMaxHeight?: string | undefined;
195
- listWidth?: string | undefined;
196
- renderList?: ((data?: import("@salutejs/plasma-new-hope/styled-components").SuggestionItemType[] | undefined) => import("react").ReactNode) | undefined;
197
- renderListEnd?: (() => import("react").ReactNode) | undefined;
198
- renderItem?: ((item: import("@salutejs/plasma-new-hope/styled-components").SuggestionItemType) => import("react").ReactNode) | undefined;
199
- defaultValue?: string | undefined;
200
- beforeList?: import("react").ReactNode;
201
- afterList?: import("react").ReactNode;
202
- virtual?: boolean | undefined;
203
- } & Omit<{
204
- titleCaption?: import("react").ReactNode;
205
- leftHelper?: import("react").ReactNode;
206
- contentLeft?: import("react").ReactElement<any, string | import("react").JSXElementConstructor<any>> | undefined;
207
- contentRight?: import("react").ReactElement<any, string | import("react").JSXElementConstructor<any>> | undefined;
208
- textBefore?: string | undefined;
209
- textAfter?: string | undefined;
210
- onSearch?: ((value: string, event?: import("react").KeyboardEvent<HTMLInputElement> | undefined) => void) | undefined;
211
- } & import("@salutejs/plasma-new-hope/types/components/TextField/TextField.types").LabelProps & import("@salutejs/plasma-new-hope/types/components/TextField/TextField.types").RequiredProps & {
212
- clear?: boolean | undefined;
213
- hasDivider?: boolean | undefined;
214
- } & {
215
- hintTrigger?: undefined;
216
- hintText?: undefined;
217
- hintView?: undefined;
218
- hintSize?: undefined;
219
- hintTargetIcon?: undefined;
220
- hintTargetPlacement?: undefined;
221
- hintPlacement?: undefined;
222
- hintHasArrow?: undefined;
223
- hintOffset?: undefined;
224
- hintWidth?: undefined;
225
- hintContentLeft?: undefined;
226
- } & {
227
- enumerationType: "chip";
228
- onSearch?: undefined;
229
- chips?: import("@salutejs/plasma-new-hope/types/components/TextField/TextField.types").TextFieldPrimitiveValue[] | undefined;
230
- onChangeChips?: ((value: import("@salutejs/plasma-new-hope/types/components/TextField/TextField.types").TextFieldPrimitiveValue[]) => void) | undefined;
231
- chipType?: "text" | "default" | undefined;
232
- chipView?: string | undefined;
233
- chipValidator?: ((value: string) => {
234
- view?: string | undefined;
235
- }) | undefined;
236
- }, "labelPlacement" | "chipView" | "chips" | "onChangeChips" | "enumerationType" | "chipType" | "chipValidator"> & Omit<import("react").InputHTMLAttributes<HTMLInputElement>, "required" | "size"> & import("react").RefAttributes<HTMLInputElement>) | ({
237
- size?: string | undefined;
238
- view?: string | undefined;
239
- labelPlacement?: string | undefined;
240
- readOnly?: boolean | undefined;
241
- disabled?: boolean | undefined;
242
- portal?: string | import("react").RefObject<HTMLElement> | undefined;
243
- value?: string | undefined;
244
- suggestions?: import("@salutejs/plasma-new-hope/styled-components").SuggestionItemType[] | undefined;
245
- threshold?: number | undefined;
246
- filter?: ((data: import("@salutejs/plasma-new-hope/styled-components").SuggestionItemType) => boolean) | undefined;
247
- onSuggestionSelect?: ((data: import("@salutejs/plasma-new-hope/styled-components").SuggestionItemType) => void) | undefined;
248
- onScroll?: ((e: import("react").UIEvent<HTMLUListElement, UIEvent>) => void) | undefined;
249
- listMaxHeight?: string | undefined;
250
- listWidth?: string | undefined;
251
- renderList?: ((data?: import("@salutejs/plasma-new-hope/styled-components").SuggestionItemType[] | undefined) => import("react").ReactNode) | undefined;
252
- renderListEnd?: (() => import("react").ReactNode) | undefined;
253
- renderItem?: ((item: import("@salutejs/plasma-new-hope/styled-components").SuggestionItemType) => import("react").ReactNode) | undefined;
254
- defaultValue?: string | undefined;
255
- beforeList?: import("react").ReactNode;
256
- afterList?: import("react").ReactNode;
257
- virtual?: boolean | undefined;
258
- } & Omit<{
259
- titleCaption?: import("react").ReactNode;
260
- leftHelper?: import("react").ReactNode;
261
- contentLeft?: import("react").ReactElement<any, string | import("react").JSXElementConstructor<any>> | undefined;
262
- contentRight?: import("react").ReactElement<any, string | import("react").JSXElementConstructor<any>> | undefined;
263
- textBefore?: string | undefined;
264
- textAfter?: string | undefined;
265
- onSearch?: ((value: string, event?: import("react").KeyboardEvent<HTMLInputElement> | undefined) => void) | undefined;
266
- } & import("@salutejs/plasma-new-hope/types/components/TextField/TextField.types").LabelProps & import("@salutejs/plasma-new-hope/types/components/TextField/TextField.types").RequiredProps & {
267
- clear?: false | undefined;
268
- hasDivider?: undefined;
269
- } & {
270
- hintText: string;
271
- hintTrigger?: "click" | "hover" | undefined;
272
- hintView?: string | undefined;
273
- hintSize?: string | undefined;
274
- hintTargetIcon?: import("react").ReactNode;
275
- hintTargetPlacement?: "outer" | "inner" | undefined;
276
- hintPlacement?: import("@salutejs/plasma-new-hope/styled-components").PopoverPlacement | import("@salutejs/plasma-new-hope/styled-components").PopoverPlacementBasic[] | undefined;
277
- hintHasArrow?: boolean | undefined;
278
- hintOffset?: [number, number] | undefined;
279
- hintWidth?: string | undefined;
280
- hintContentLeft?: import("react").ReactNode;
281
- } & {
282
- chips?: undefined;
283
- onChangeChips?: undefined;
284
- enumerationType?: "plain" | undefined;
285
- onSearch?: ((value: string, event?: import("react").KeyboardEvent<HTMLInputElement> | undefined) => void) | undefined;
286
- chipType?: undefined;
287
- chipView?: undefined;
288
- chipValidator?: undefined;
289
- }, "labelPlacement" | "chipView" | "chips" | "onChangeChips" | "enumerationType" | "chipType" | "chipValidator"> & Omit<import("react").InputHTMLAttributes<HTMLInputElement>, "required" | "size"> & import("react").RefAttributes<HTMLInputElement>) | ({
290
- size?: string | undefined;
291
- view?: string | undefined;
292
- labelPlacement?: string | undefined;
293
- readOnly?: boolean | undefined;
294
- disabled?: boolean | undefined;
295
- portal?: string | import("react").RefObject<HTMLElement> | undefined;
296
- value?: string | undefined;
297
- suggestions?: import("@salutejs/plasma-new-hope/styled-components").SuggestionItemType[] | undefined;
298
- threshold?: number | undefined;
299
- filter?: ((data: import("@salutejs/plasma-new-hope/styled-components").SuggestionItemType) => boolean) | undefined;
300
- onSuggestionSelect?: ((data: import("@salutejs/plasma-new-hope/styled-components").SuggestionItemType) => void) | undefined;
301
- onScroll?: ((e: import("react").UIEvent<HTMLUListElement, UIEvent>) => void) | undefined;
302
- listMaxHeight?: string | undefined;
303
- listWidth?: string | undefined;
304
- renderList?: ((data?: import("@salutejs/plasma-new-hope/styled-components").SuggestionItemType[] | undefined) => import("react").ReactNode) | undefined;
305
- renderListEnd?: (() => import("react").ReactNode) | undefined;
306
- renderItem?: ((item: import("@salutejs/plasma-new-hope/styled-components").SuggestionItemType) => import("react").ReactNode) | undefined;
307
- defaultValue?: string | undefined;
308
- beforeList?: import("react").ReactNode;
309
- afterList?: import("react").ReactNode;
310
- virtual?: boolean | undefined;
311
- } & Omit<{
312
- titleCaption?: import("react").ReactNode;
313
- leftHelper?: import("react").ReactNode;
314
- contentLeft?: import("react").ReactElement<any, string | import("react").JSXElementConstructor<any>> | undefined;
315
- contentRight?: import("react").ReactElement<any, string | import("react").JSXElementConstructor<any>> | undefined;
316
- textBefore?: string | undefined;
317
- textAfter?: string | undefined;
318
- onSearch?: ((value: string, event?: import("react").KeyboardEvent<HTMLInputElement> | undefined) => void) | undefined;
319
- } & import("@salutejs/plasma-new-hope/types/components/TextField/TextField.types").LabelProps & import("@salutejs/plasma-new-hope/types/components/TextField/TextField.types").RequiredProps & {
320
- clear?: false | undefined;
321
- hasDivider?: undefined;
322
- } & {
323
- hintText: string;
324
- hintTrigger?: "click" | "hover" | undefined;
325
- hintView?: string | undefined;
326
- hintSize?: string | undefined;
327
- hintTargetIcon?: import("react").ReactNode;
328
- hintTargetPlacement?: "outer" | "inner" | undefined;
329
- hintPlacement?: import("@salutejs/plasma-new-hope/styled-components").PopoverPlacement | import("@salutejs/plasma-new-hope/styled-components").PopoverPlacementBasic[] | undefined;
330
- hintHasArrow?: boolean | undefined;
331
- hintOffset?: [number, number] | undefined;
332
- hintWidth?: string | undefined;
333
- hintContentLeft?: import("react").ReactNode;
334
- } & {
335
- enumerationType: "chip";
336
- onSearch?: undefined;
337
- chips?: import("@salutejs/plasma-new-hope/types/components/TextField/TextField.types").TextFieldPrimitiveValue[] | undefined;
338
- onChangeChips?: ((value: import("@salutejs/plasma-new-hope/types/components/TextField/TextField.types").TextFieldPrimitiveValue[]) => void) | undefined;
339
- chipType?: "text" | "default" | undefined;
340
- chipView?: string | undefined;
341
- chipValidator?: ((value: string) => {
342
- view?: string | undefined;
343
- }) | undefined;
344
- }, "labelPlacement" | "chipView" | "chips" | "onChangeChips" | "enumerationType" | "chipType" | "chipValidator"> & Omit<import("react").InputHTMLAttributes<HTMLInputElement>, "required" | "size"> & import("react").RefAttributes<HTMLInputElement>) | ({
345
- size?: string | undefined;
346
- view?: string | undefined;
347
- labelPlacement?: string | undefined;
348
- readOnly?: boolean | undefined;
349
- disabled?: boolean | undefined;
350
- portal?: string | import("react").RefObject<HTMLElement> | undefined;
351
- value?: string | undefined;
352
- suggestions?: import("@salutejs/plasma-new-hope/styled-components").SuggestionItemType[] | undefined;
353
- threshold?: number | undefined;
354
- filter?: ((data: import("@salutejs/plasma-new-hope/styled-components").SuggestionItemType) => boolean) | undefined;
355
- onSuggestionSelect?: ((data: import("@salutejs/plasma-new-hope/styled-components").SuggestionItemType) => void) | undefined;
356
- onScroll?: ((e: import("react").UIEvent<HTMLUListElement, UIEvent>) => void) | undefined;
357
- listMaxHeight?: string | undefined;
358
- listWidth?: string | undefined;
359
- renderList?: ((data?: import("@salutejs/plasma-new-hope/styled-components").SuggestionItemType[] | undefined) => import("react").ReactNode) | undefined;
360
- renderListEnd?: (() => import("react").ReactNode) | undefined;
361
- renderItem?: ((item: import("@salutejs/plasma-new-hope/styled-components").SuggestionItemType) => import("react").ReactNode) | undefined;
362
- defaultValue?: string | undefined;
363
- beforeList?: import("react").ReactNode;
364
- afterList?: import("react").ReactNode;
365
- virtual?: boolean | undefined;
366
- } & Omit<{
367
- titleCaption?: import("react").ReactNode;
368
- leftHelper?: import("react").ReactNode;
369
- contentLeft?: import("react").ReactElement<any, string | import("react").JSXElementConstructor<any>> | undefined;
370
- contentRight?: import("react").ReactElement<any, string | import("react").JSXElementConstructor<any>> | undefined;
371
- textBefore?: string | undefined;
372
- textAfter?: string | undefined;
373
- onSearch?: ((value: string, event?: import("react").KeyboardEvent<HTMLInputElement> | undefined) => void) | undefined;
374
- } & import("@salutejs/plasma-new-hope/types/components/TextField/TextField.types").LabelProps & import("@salutejs/plasma-new-hope/types/components/TextField/TextField.types").RequiredProps & {
375
- clear?: false | undefined;
376
- hasDivider?: undefined;
377
- } & {
378
- hintTrigger?: undefined;
379
- hintText?: undefined;
380
- hintView?: undefined;
381
- hintSize?: undefined;
382
- hintTargetIcon?: undefined;
383
- hintTargetPlacement?: undefined;
384
- hintPlacement?: undefined;
385
- hintHasArrow?: undefined;
386
- hintOffset?: undefined;
387
- hintWidth?: undefined;
388
- hintContentLeft?: undefined;
389
- } & {
390
- chips?: undefined;
391
- onChangeChips?: undefined;
392
- enumerationType?: "plain" | undefined;
393
- onSearch?: ((value: string, event?: import("react").KeyboardEvent<HTMLInputElement> | undefined) => void) | undefined;
394
- chipType?: undefined;
395
- chipView?: undefined;
396
- chipValidator?: undefined;
397
- }, "labelPlacement" | "chipView" | "chips" | "onChangeChips" | "enumerationType" | "chipType" | "chipValidator"> & Omit<import("react").InputHTMLAttributes<HTMLInputElement>, "required" | "size"> & import("react").RefAttributes<HTMLInputElement>) | ({
398
- size?: string | undefined;
399
- view?: string | undefined;
400
- labelPlacement?: string | undefined;
401
- readOnly?: boolean | undefined;
402
- disabled?: boolean | undefined;
403
- portal?: string | import("react").RefObject<HTMLElement> | undefined;
404
- value?: string | undefined;
405
- suggestions?: import("@salutejs/plasma-new-hope/styled-components").SuggestionItemType[] | undefined;
406
- threshold?: number | undefined;
407
- filter?: ((data: import("@salutejs/plasma-new-hope/styled-components").SuggestionItemType) => boolean) | undefined;
408
- onSuggestionSelect?: ((data: import("@salutejs/plasma-new-hope/styled-components").SuggestionItemType) => void) | undefined;
409
- onScroll?: ((e: import("react").UIEvent<HTMLUListElement, UIEvent>) => void) | undefined;
410
- listMaxHeight?: string | undefined;
411
- listWidth?: string | undefined;
412
- renderList?: ((data?: import("@salutejs/plasma-new-hope/styled-components").SuggestionItemType[] | undefined) => import("react").ReactNode) | undefined;
413
- renderListEnd?: (() => import("react").ReactNode) | undefined;
414
- renderItem?: ((item: import("@salutejs/plasma-new-hope/styled-components").SuggestionItemType) => import("react").ReactNode) | undefined;
415
- defaultValue?: string | undefined;
416
- beforeList?: import("react").ReactNode;
417
- afterList?: import("react").ReactNode;
418
- virtual?: boolean | undefined;
419
- } & Omit<{
420
- titleCaption?: import("react").ReactNode;
421
- leftHelper?: import("react").ReactNode;
422
- contentLeft?: import("react").ReactElement<any, string | import("react").JSXElementConstructor<any>> | undefined;
423
- contentRight?: import("react").ReactElement<any, string | import("react").JSXElementConstructor<any>> | undefined;
424
- textBefore?: string | undefined;
425
- textAfter?: string | undefined;
426
- onSearch?: ((value: string, event?: import("react").KeyboardEvent<HTMLInputElement> | undefined) => void) | undefined;
427
- } & import("@salutejs/plasma-new-hope/types/components/TextField/TextField.types").LabelProps & import("@salutejs/plasma-new-hope/types/components/TextField/TextField.types").RequiredProps & {
428
- clear?: false | undefined;
429
- hasDivider?: undefined;
430
- } & {
431
- hintTrigger?: undefined;
432
- hintText?: undefined;
433
- hintView?: undefined;
434
- hintSize?: undefined;
435
- hintTargetIcon?: undefined;
436
- hintTargetPlacement?: undefined;
437
- hintPlacement?: undefined;
438
- hintHasArrow?: undefined;
439
- hintOffset?: undefined;
440
- hintWidth?: undefined;
441
- hintContentLeft?: undefined;
442
- } & {
443
- enumerationType: "chip";
444
- onSearch?: undefined;
445
- chips?: import("@salutejs/plasma-new-hope/types/components/TextField/TextField.types").TextFieldPrimitiveValue[] | undefined;
446
- onChangeChips?: ((value: import("@salutejs/plasma-new-hope/types/components/TextField/TextField.types").TextFieldPrimitiveValue[]) => void) | undefined;
447
- chipType?: "text" | "default" | undefined;
448
- chipView?: string | undefined;
449
- chipValidator?: ((value: string) => {
450
- view?: string | undefined;
451
- }) | undefined;
452
- }, "labelPlacement" | "chipView" | "chips" | "onChangeChips" | "enumerationType" | "chipType" | "chipValidator"> & Omit<import("react").InputHTMLAttributes<HTMLInputElement>, "required" | "size"> & import("react").RefAttributes<HTMLInputElement>))>;
2
+ export declare const Autocomplete: import("react").FunctionComponent<any>;
@@ -24,7 +24,7 @@ declare const ButtonComponent: React.FunctionComponent<import("@salutejs/plasma-
24
24
  isLoading?: boolean | undefined;
25
25
  loader?: React.ReactNode;
26
26
  stretch?: boolean | undefined;
27
- stretching?: ("fixed" | "auto" | "filled") | undefined;
27
+ stretching?: ("auto" | "filled" | "fixed") | undefined;
28
28
  square?: boolean | undefined;
29
29
  focused?: boolean | undefined;
30
30
  disabled?: boolean | undefined;
@@ -45,7 +45,7 @@ declare const ButtonComponent: React.FunctionComponent<import("@salutejs/plasma-
45
45
  isLoading?: boolean | undefined;
46
46
  loader?: React.ReactNode;
47
47
  stretch?: boolean | undefined;
48
- stretching?: ("fixed" | "auto" | "filled") | undefined;
48
+ stretching?: ("auto" | "filled" | "fixed") | undefined;
49
49
  square?: boolean | undefined;
50
50
  focused?: boolean | undefined;
51
51
  disabled?: boolean | undefined;
@@ -89,7 +89,7 @@ export declare const Button: React.ForwardRefExoticComponent<(Omit<import("@salu
89
89
  isLoading?: boolean | undefined;
90
90
  loader?: React.ReactNode;
91
91
  stretch?: boolean | undefined;
92
- stretching?: ("fixed" | "auto" | "filled") | undefined;
92
+ stretching?: ("auto" | "filled" | "fixed") | undefined;
93
93
  square?: boolean | undefined;
94
94
  focused?: boolean | undefined;
95
95
  disabled?: boolean | undefined;
@@ -128,7 +128,7 @@ export declare const Button: React.ForwardRefExoticComponent<(Omit<import("@salu
128
128
  isLoading?: boolean | undefined;
129
129
  loader?: React.ReactNode;
130
130
  stretch?: boolean | undefined;
131
- stretching?: ("fixed" | "auto" | "filled") | undefined;
131
+ stretching?: ("auto" | "filled" | "fixed") | undefined;
132
132
  square?: boolean | undefined;
133
133
  focused?: boolean | undefined;
134
134
  disabled?: boolean | undefined;
@@ -17,7 +17,7 @@ export declare const Cell: import("react").FunctionComponent<import("@salutejs/p
17
17
  contentRight?: import("react").ReactNode;
18
18
  alignContentLeft?: import("@salutejs/plasma-new-hope/types/components/Cell/Cell.types").AlignProp | undefined;
19
19
  alignContentRight?: import("@salutejs/plasma-new-hope/types/components/Cell/Cell.types").AlignProp | undefined;
20
- stretching?: "fixed" | "auto" | "filled" | undefined;
20
+ stretching?: "auto" | "filled" | "fixed" | undefined;
21
21
  content?: import("react").ReactNode;
22
22
  description?: string | undefined;
23
23
  } & {
@@ -32,7 +32,7 @@ export declare const Cell: import("react").FunctionComponent<import("@salutejs/p
32
32
  contentRight?: import("react").ReactNode;
33
33
  alignContentLeft?: import("@salutejs/plasma-new-hope/types/components/Cell/Cell.types").AlignProp | undefined;
34
34
  alignContentRight?: import("@salutejs/plasma-new-hope/types/components/Cell/Cell.types").AlignProp | undefined;
35
- stretching?: "fixed" | "auto" | "filled" | undefined;
35
+ stretching?: "auto" | "filled" | "fixed" | undefined;
36
36
  content?: import("react").ReactNode;
37
37
  description?: string | undefined;
38
38
  } & {