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