@salutejs/plasma-web 1.571.1-canary.1868.14054564913.0 → 1.572.0-canary.1870.14062223595.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/api/plasma-web.api.md +1490 -1488
- package/components/Accordion/Accordion.d.ts +10 -9
- package/components/Attach/Attach.d.ts +159 -158
- package/components/Autocomplete/Autocomplete.d.ts +193 -192
- 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/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 +51 -50
- 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 +10 -9
- 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 +113 -104
- package/components/Steps/Steps.d.ts +1 -0
- package/components/Switch/Switch.d.ts +1 -1
- 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/Toolbar/Toolbar.d.ts +6 -5
- package/components/Tree/Tree.d.ts +1 -0
- package/components/Typography/Old/index.d.ts +10 -9
- package/components/Typography/Typography.d.ts +52 -51
- package/mixins/index.d.ts +2 -1
- package/package.json +11 -11
- package/temp/plasma-web.api.md +1490 -1488
@@ -1,3 +1,4 @@
|
|
1
|
+
/// <reference types="react" />
|
1
2
|
/**
|
2
3
|
* Accordion
|
3
4
|
*/
|
@@ -23,13 +24,13 @@ export declare const Accordion: import("react").FunctionComponent<import("@salut
|
|
23
24
|
fixed: import("@salutejs/plasma-new-hope/types/engines/types").PolymorphicClassName;
|
24
25
|
};
|
25
26
|
}> & {
|
26
|
-
view?: string;
|
27
|
-
size?: string;
|
28
|
-
singleActive?: boolean;
|
29
|
-
defaultActiveEventKey?: number[];
|
30
|
-
disabled?: boolean;
|
31
|
-
stretching?: "fixed" | "filled";
|
32
|
-
onChange?: (index?: number, value?: boolean) => void;
|
33
|
-
children?:
|
34
|
-
className?: string;
|
27
|
+
view?: string | undefined;
|
28
|
+
size?: string | undefined;
|
29
|
+
singleActive?: boolean | undefined;
|
30
|
+
defaultActiveEventKey?: number[] | undefined;
|
31
|
+
disabled?: boolean | undefined;
|
32
|
+
stretching?: "fixed" | "filled" | undefined;
|
33
|
+
onChange?: ((index?: number | undefined, value?: boolean | undefined) => void) | undefined;
|
34
|
+
children?: import("react").ReactNode;
|
35
|
+
className?: string | undefined;
|
35
36
|
} & import("react").RefAttributes<HTMLDivElement>>;
|
@@ -1,3 +1,4 @@
|
|
1
|
+
/// <reference types="react" />
|
1
2
|
/**
|
2
3
|
* Компонент, позволяющий прикрепить локальный файл
|
3
4
|
*/
|
@@ -24,204 +25,204 @@ export declare const Attach: import("react").FunctionComponent<import("@salutejs
|
|
24
25
|
s: import("@salutejs/plasma-new-hope/types/engines/types").PolymorphicClassName;
|
25
26
|
xs: import("@salutejs/plasma-new-hope/types/engines/types").PolymorphicClassName;
|
26
27
|
};
|
27
|
-
}> & ((import("react").HTMLAttributes<HTMLDivElement> & Omit<import("react").ButtonHTMLAttributes<HTMLElement>, "value"> & Omit<import("react").AnchorHTMLAttributes<HTMLElement>, "type"> & import("@salutejs/plasma-new-hope/styled-components").AsProps & {
|
28
|
-
text?: string;
|
28
|
+
}> & ((import("react").HTMLAttributes<HTMLDivElement> & Omit<import("react").ButtonHTMLAttributes<HTMLElement>, "value"> & Omit<import("react").AnchorHTMLAttributes<HTMLElement>, "type"> & import("@salutejs/plasma-new-hope/styled-components").AsProps<any> & {
|
29
|
+
text?: string | undefined;
|
29
30
|
contentLeft?: import("react").ReactNode;
|
30
|
-
contentPlacing?: "default" | "relaxed";
|
31
|
-
isLoading?: boolean;
|
31
|
+
contentPlacing?: ("default" | "relaxed") | undefined;
|
32
|
+
isLoading?: boolean | undefined;
|
32
33
|
loader?: import("react").ReactNode;
|
33
|
-
stretch?: boolean;
|
34
|
-
stretching?: "auto" | "fixed" | "filled";
|
35
|
-
square?: boolean;
|
36
|
-
focused?: boolean;
|
37
|
-
disabled?: boolean;
|
38
|
-
pin?:
|
39
|
-
view?: string;
|
40
|
-
size?: string;
|
41
|
-
outlined?: boolean;
|
42
|
-
shiftLeft?: boolean;
|
43
|
-
shiftRight?: boolean;
|
44
|
-
blur?:
|
34
|
+
stretch?: boolean | undefined;
|
35
|
+
stretching?: ("auto" | "fixed" | "filled") | undefined;
|
36
|
+
square?: boolean | undefined;
|
37
|
+
focused?: boolean | undefined;
|
38
|
+
disabled?: boolean | undefined;
|
39
|
+
pin?: "square-square" | "square-clear" | "clear-square" | "clear-clear" | "clear-circle" | "circle-clear" | "circle-circle" | undefined;
|
40
|
+
view?: string | undefined;
|
41
|
+
size?: string | undefined;
|
42
|
+
outlined?: boolean | undefined;
|
43
|
+
shiftLeft?: boolean | undefined;
|
44
|
+
shiftRight?: boolean | undefined;
|
45
|
+
blur?: "small" | "medium" | "large" | undefined;
|
45
46
|
} & {
|
46
|
-
value?: string | number;
|
47
|
-
contentRight?:
|
47
|
+
value?: string | number | undefined;
|
48
|
+
contentRight?: undefined;
|
48
49
|
} & import("@salutejs/plasma-new-hope/types/components/Attach/Attach.types").BaseAttachProps & {
|
49
|
-
buttonType?: "button";
|
50
|
-
} & import("react").RefAttributes<HTMLDivElement>) | (import("react").HTMLAttributes<HTMLDivElement> & Omit<import("react").ButtonHTMLAttributes<HTMLElement>, "value"> & Omit<import("react").AnchorHTMLAttributes<HTMLElement>, "type"> & import("@salutejs/plasma-new-hope/styled-components").AsProps & {
|
51
|
-
text?: string;
|
50
|
+
buttonType?: "button" | undefined;
|
51
|
+
} & import("react").RefAttributes<HTMLDivElement>) | (import("react").HTMLAttributes<HTMLDivElement> & Omit<import("react").ButtonHTMLAttributes<HTMLElement>, "value"> & Omit<import("react").AnchorHTMLAttributes<HTMLElement>, "type"> & import("@salutejs/plasma-new-hope/styled-components").AsProps<any> & {
|
52
|
+
text?: string | undefined;
|
52
53
|
contentLeft?: import("react").ReactNode;
|
53
|
-
contentPlacing?: "default" | "relaxed";
|
54
|
-
isLoading?: boolean;
|
54
|
+
contentPlacing?: ("default" | "relaxed") | undefined;
|
55
|
+
isLoading?: boolean | undefined;
|
55
56
|
loader?: import("react").ReactNode;
|
56
|
-
stretch?: boolean;
|
57
|
-
stretching?: "auto" | "fixed" | "filled";
|
58
|
-
square?: boolean;
|
59
|
-
focused?: boolean;
|
60
|
-
disabled?: boolean;
|
61
|
-
pin?:
|
62
|
-
view?: string;
|
63
|
-
size?: string;
|
64
|
-
outlined?: boolean;
|
65
|
-
shiftLeft?: boolean;
|
66
|
-
shiftRight?: boolean;
|
67
|
-
blur?:
|
57
|
+
stretch?: boolean | undefined;
|
58
|
+
stretching?: ("auto" | "fixed" | "filled") | undefined;
|
59
|
+
square?: boolean | undefined;
|
60
|
+
focused?: boolean | undefined;
|
61
|
+
disabled?: boolean | undefined;
|
62
|
+
pin?: "square-square" | "square-clear" | "clear-square" | "clear-clear" | "clear-circle" | "circle-clear" | "circle-circle" | undefined;
|
63
|
+
view?: string | undefined;
|
64
|
+
size?: string | undefined;
|
65
|
+
outlined?: boolean | undefined;
|
66
|
+
shiftLeft?: boolean | undefined;
|
67
|
+
shiftRight?: boolean | undefined;
|
68
|
+
blur?: "small" | "medium" | "large" | undefined;
|
68
69
|
} & {
|
69
|
-
value?: string | number;
|
70
|
-
contentRight?:
|
70
|
+
value?: string | number | undefined;
|
71
|
+
contentRight?: undefined;
|
71
72
|
} & import("@salutejs/plasma-new-hope/types/components/Attach/Attach.types").BaseAttachProps & {
|
72
|
-
buttonType?: "button";
|
73
|
+
buttonType?: "button" | undefined;
|
73
74
|
} & {
|
74
|
-
value?:
|
75
|
+
value?: undefined;
|
75
76
|
contentRight?: import("react").ReactNode;
|
76
|
-
} & import("react").RefAttributes<HTMLDivElement>) | (import("react").HTMLAttributes<HTMLDivElement> & Omit<import("react").ButtonHTMLAttributes<HTMLElement>, "value"> & Omit<import("react").AnchorHTMLAttributes<HTMLElement>, "type"> & import("@salutejs/plasma-new-hope/styled-components").AsProps & {
|
77
|
-
text?: string;
|
77
|
+
} & import("react").RefAttributes<HTMLDivElement>) | (import("react").HTMLAttributes<HTMLDivElement> & Omit<import("react").ButtonHTMLAttributes<HTMLElement>, "value"> & Omit<import("react").AnchorHTMLAttributes<HTMLElement>, "type"> & import("@salutejs/plasma-new-hope/styled-components").AsProps<any> & {
|
78
|
+
text?: string | undefined;
|
78
79
|
contentLeft?: import("react").ReactNode;
|
79
|
-
contentPlacing?: "default" | "relaxed";
|
80
|
-
isLoading?: boolean;
|
80
|
+
contentPlacing?: ("default" | "relaxed") | undefined;
|
81
|
+
isLoading?: boolean | undefined;
|
81
82
|
loader?: import("react").ReactNode;
|
82
|
-
stretch?: boolean;
|
83
|
-
stretching?: "auto" | "fixed" | "filled";
|
84
|
-
square?: boolean;
|
85
|
-
focused?: boolean;
|
86
|
-
disabled?: boolean;
|
87
|
-
pin?:
|
88
|
-
view?: string;
|
89
|
-
size?: string;
|
90
|
-
outlined?: boolean;
|
91
|
-
shiftLeft?: boolean;
|
92
|
-
shiftRight?: boolean;
|
93
|
-
blur?:
|
83
|
+
stretch?: boolean | undefined;
|
84
|
+
stretching?: ("auto" | "fixed" | "filled") | undefined;
|
85
|
+
square?: boolean | undefined;
|
86
|
+
focused?: boolean | undefined;
|
87
|
+
disabled?: boolean | undefined;
|
88
|
+
pin?: "square-square" | "square-clear" | "clear-square" | "clear-clear" | "clear-circle" | "circle-clear" | "circle-circle" | undefined;
|
89
|
+
view?: string | undefined;
|
90
|
+
size?: string | undefined;
|
91
|
+
outlined?: boolean | undefined;
|
92
|
+
shiftLeft?: boolean | undefined;
|
93
|
+
shiftRight?: boolean | undefined;
|
94
|
+
blur?: "small" | "medium" | "large" | undefined;
|
94
95
|
} & {
|
95
|
-
value?: string | number;
|
96
|
-
contentRight?:
|
96
|
+
value?: string | number | undefined;
|
97
|
+
contentRight?: undefined;
|
97
98
|
} & import("@salutejs/plasma-new-hope/types/components/Attach/Attach.types").BaseAttachProps & {
|
98
|
-
buttonType?: "iconButton";
|
99
|
-
icon?:
|
100
|
-
} & import("react").RefAttributes<HTMLDivElement>) | (import("react").HTMLAttributes<HTMLDivElement> & Omit<import("react").ButtonHTMLAttributes<HTMLElement>, "value"> & Omit<import("react").AnchorHTMLAttributes<HTMLElement>, "type"> & import("@salutejs/plasma-new-hope/styled-components").AsProps & {
|
101
|
-
text?: string;
|
99
|
+
buttonType?: "iconButton" | undefined;
|
100
|
+
icon?: import("react").ReactNode;
|
101
|
+
} & import("react").RefAttributes<HTMLDivElement>) | (import("react").HTMLAttributes<HTMLDivElement> & Omit<import("react").ButtonHTMLAttributes<HTMLElement>, "value"> & Omit<import("react").AnchorHTMLAttributes<HTMLElement>, "type"> & import("@salutejs/plasma-new-hope/styled-components").AsProps<any> & {
|
102
|
+
text?: string | undefined;
|
102
103
|
contentLeft?: import("react").ReactNode;
|
103
|
-
contentPlacing?: "default" | "relaxed";
|
104
|
-
isLoading?: boolean;
|
104
|
+
contentPlacing?: ("default" | "relaxed") | undefined;
|
105
|
+
isLoading?: boolean | undefined;
|
105
106
|
loader?: import("react").ReactNode;
|
106
|
-
stretch?: boolean;
|
107
|
-
stretching?: "auto" | "fixed" | "filled";
|
108
|
-
square?: boolean;
|
109
|
-
focused?: boolean;
|
110
|
-
disabled?: boolean;
|
111
|
-
pin?:
|
112
|
-
view?: string;
|
113
|
-
size?: string;
|
114
|
-
outlined?: boolean;
|
115
|
-
shiftLeft?: boolean;
|
116
|
-
shiftRight?: boolean;
|
117
|
-
blur?:
|
107
|
+
stretch?: boolean | undefined;
|
108
|
+
stretching?: ("auto" | "fixed" | "filled") | undefined;
|
109
|
+
square?: boolean | undefined;
|
110
|
+
focused?: boolean | undefined;
|
111
|
+
disabled?: boolean | undefined;
|
112
|
+
pin?: "square-square" | "square-clear" | "clear-square" | "clear-clear" | "clear-circle" | "circle-clear" | "circle-circle" | undefined;
|
113
|
+
view?: string | undefined;
|
114
|
+
size?: string | undefined;
|
115
|
+
outlined?: boolean | undefined;
|
116
|
+
shiftLeft?: boolean | undefined;
|
117
|
+
shiftRight?: boolean | undefined;
|
118
|
+
blur?: "small" | "medium" | "large" | undefined;
|
118
119
|
} & {
|
119
|
-
value?: string | number;
|
120
|
-
contentRight?:
|
120
|
+
value?: string | number | undefined;
|
121
|
+
contentRight?: undefined;
|
121
122
|
} & import("@salutejs/plasma-new-hope/types/components/Attach/Attach.types").BaseAttachProps & {
|
122
|
-
buttonType?: "iconButton";
|
123
|
-
icon?:
|
123
|
+
buttonType?: "iconButton" | undefined;
|
124
|
+
icon?: import("react").ReactNode;
|
124
125
|
} & {
|
125
|
-
value?:
|
126
|
+
value?: undefined;
|
126
127
|
contentRight?: import("react").ReactNode;
|
127
|
-
} & import("react").RefAttributes<HTMLDivElement>) | (import("react").HTMLAttributes<HTMLDivElement> & Omit<import("react").ButtonHTMLAttributes<HTMLElement>, "value"> & Omit<import("react").AnchorHTMLAttributes<HTMLElement>, "type"> & import("@salutejs/plasma-new-hope/styled-components").AsProps & {
|
128
|
-
text?: string;
|
128
|
+
} & import("react").RefAttributes<HTMLDivElement>) | (import("react").HTMLAttributes<HTMLDivElement> & Omit<import("react").ButtonHTMLAttributes<HTMLElement>, "value"> & Omit<import("react").AnchorHTMLAttributes<HTMLElement>, "type"> & import("@salutejs/plasma-new-hope/styled-components").AsProps<any> & {
|
129
|
+
text?: string | undefined;
|
129
130
|
contentLeft?: import("react").ReactNode;
|
130
|
-
contentPlacing?: "default" | "relaxed";
|
131
|
-
isLoading?: boolean;
|
131
|
+
contentPlacing?: ("default" | "relaxed") | undefined;
|
132
|
+
isLoading?: boolean | undefined;
|
132
133
|
loader?: import("react").ReactNode;
|
133
|
-
stretch?: boolean;
|
134
|
-
stretching?: "auto" | "fixed" | "filled";
|
135
|
-
square?: boolean;
|
136
|
-
focused?: boolean;
|
137
|
-
disabled?: boolean;
|
138
|
-
pin?:
|
139
|
-
view?: string;
|
140
|
-
size?: string;
|
141
|
-
outlined?: boolean;
|
142
|
-
shiftLeft?: boolean;
|
143
|
-
shiftRight?: boolean;
|
144
|
-
blur?:
|
134
|
+
stretch?: boolean | undefined;
|
135
|
+
stretching?: ("auto" | "fixed" | "filled") | undefined;
|
136
|
+
square?: boolean | undefined;
|
137
|
+
focused?: boolean | undefined;
|
138
|
+
disabled?: boolean | undefined;
|
139
|
+
pin?: "square-square" | "square-clear" | "clear-square" | "clear-clear" | "clear-circle" | "circle-clear" | "circle-circle" | undefined;
|
140
|
+
view?: string | undefined;
|
141
|
+
size?: string | undefined;
|
142
|
+
outlined?: boolean | undefined;
|
143
|
+
shiftLeft?: boolean | undefined;
|
144
|
+
shiftRight?: boolean | undefined;
|
145
|
+
blur?: "small" | "medium" | "large" | undefined;
|
145
146
|
} & {
|
146
|
-
value?:
|
147
|
+
value?: undefined;
|
147
148
|
contentRight?: import("react").ReactNode;
|
148
149
|
} & import("@salutejs/plasma-new-hope/types/components/Attach/Attach.types").BaseAttachProps & {
|
149
|
-
buttonType?: "button";
|
150
|
+
buttonType?: "button" | undefined;
|
150
151
|
} & {
|
151
|
-
value?: string | number;
|
152
|
-
contentRight?:
|
153
|
-
} & import("react").RefAttributes<HTMLDivElement>) | (import("react").HTMLAttributes<HTMLDivElement> & Omit<import("react").ButtonHTMLAttributes<HTMLElement>, "value"> & Omit<import("react").AnchorHTMLAttributes<HTMLElement>, "type"> & import("@salutejs/plasma-new-hope/styled-components").AsProps & {
|
154
|
-
text?: string;
|
152
|
+
value?: string | number | undefined;
|
153
|
+
contentRight?: undefined;
|
154
|
+
} & import("react").RefAttributes<HTMLDivElement>) | (import("react").HTMLAttributes<HTMLDivElement> & Omit<import("react").ButtonHTMLAttributes<HTMLElement>, "value"> & Omit<import("react").AnchorHTMLAttributes<HTMLElement>, "type"> & import("@salutejs/plasma-new-hope/styled-components").AsProps<any> & {
|
155
|
+
text?: string | undefined;
|
155
156
|
contentLeft?: import("react").ReactNode;
|
156
|
-
contentPlacing?: "default" | "relaxed";
|
157
|
-
isLoading?: boolean;
|
157
|
+
contentPlacing?: ("default" | "relaxed") | undefined;
|
158
|
+
isLoading?: boolean | undefined;
|
158
159
|
loader?: import("react").ReactNode;
|
159
|
-
stretch?: boolean;
|
160
|
-
stretching?: "auto" | "fixed" | "filled";
|
161
|
-
square?: boolean;
|
162
|
-
focused?: boolean;
|
163
|
-
disabled?: boolean;
|
164
|
-
pin?:
|
165
|
-
view?: string;
|
166
|
-
size?: string;
|
167
|
-
outlined?: boolean;
|
168
|
-
shiftLeft?: boolean;
|
169
|
-
shiftRight?: boolean;
|
170
|
-
blur?:
|
160
|
+
stretch?: boolean | undefined;
|
161
|
+
stretching?: ("auto" | "fixed" | "filled") | undefined;
|
162
|
+
square?: boolean | undefined;
|
163
|
+
focused?: boolean | undefined;
|
164
|
+
disabled?: boolean | undefined;
|
165
|
+
pin?: "square-square" | "square-clear" | "clear-square" | "clear-clear" | "clear-circle" | "circle-clear" | "circle-circle" | undefined;
|
166
|
+
view?: string | undefined;
|
167
|
+
size?: string | undefined;
|
168
|
+
outlined?: boolean | undefined;
|
169
|
+
shiftLeft?: boolean | undefined;
|
170
|
+
shiftRight?: boolean | undefined;
|
171
|
+
blur?: "small" | "medium" | "large" | undefined;
|
171
172
|
} & {
|
172
|
-
value?:
|
173
|
+
value?: undefined;
|
173
174
|
contentRight?: import("react").ReactNode;
|
174
175
|
} & import("@salutejs/plasma-new-hope/types/components/Attach/Attach.types").BaseAttachProps & {
|
175
|
-
buttonType?: "button";
|
176
|
-
} & import("react").RefAttributes<HTMLDivElement>) | (import("react").HTMLAttributes<HTMLDivElement> & Omit<import("react").ButtonHTMLAttributes<HTMLElement>, "value"> & Omit<import("react").AnchorHTMLAttributes<HTMLElement>, "type"> & import("@salutejs/plasma-new-hope/styled-components").AsProps & {
|
177
|
-
text?: string;
|
176
|
+
buttonType?: "button" | undefined;
|
177
|
+
} & import("react").RefAttributes<HTMLDivElement>) | (import("react").HTMLAttributes<HTMLDivElement> & Omit<import("react").ButtonHTMLAttributes<HTMLElement>, "value"> & Omit<import("react").AnchorHTMLAttributes<HTMLElement>, "type"> & import("@salutejs/plasma-new-hope/styled-components").AsProps<any> & {
|
178
|
+
text?: string | undefined;
|
178
179
|
contentLeft?: import("react").ReactNode;
|
179
|
-
contentPlacing?: "default" | "relaxed";
|
180
|
-
isLoading?: boolean;
|
180
|
+
contentPlacing?: ("default" | "relaxed") | undefined;
|
181
|
+
isLoading?: boolean | undefined;
|
181
182
|
loader?: import("react").ReactNode;
|
182
|
-
stretch?: boolean;
|
183
|
-
stretching?: "auto" | "fixed" | "filled";
|
184
|
-
square?: boolean;
|
185
|
-
focused?: boolean;
|
186
|
-
disabled?: boolean;
|
187
|
-
pin?:
|
188
|
-
view?: string;
|
189
|
-
size?: string;
|
190
|
-
outlined?: boolean;
|
191
|
-
shiftLeft?: boolean;
|
192
|
-
shiftRight?: boolean;
|
193
|
-
blur?:
|
183
|
+
stretch?: boolean | undefined;
|
184
|
+
stretching?: ("auto" | "fixed" | "filled") | undefined;
|
185
|
+
square?: boolean | undefined;
|
186
|
+
focused?: boolean | undefined;
|
187
|
+
disabled?: boolean | undefined;
|
188
|
+
pin?: "square-square" | "square-clear" | "clear-square" | "clear-clear" | "clear-circle" | "circle-clear" | "circle-circle" | undefined;
|
189
|
+
view?: string | undefined;
|
190
|
+
size?: string | undefined;
|
191
|
+
outlined?: boolean | undefined;
|
192
|
+
shiftLeft?: boolean | undefined;
|
193
|
+
shiftRight?: boolean | undefined;
|
194
|
+
blur?: "small" | "medium" | "large" | undefined;
|
194
195
|
} & {
|
195
|
-
value?:
|
196
|
+
value?: undefined;
|
196
197
|
contentRight?: import("react").ReactNode;
|
197
198
|
} & import("@salutejs/plasma-new-hope/types/components/Attach/Attach.types").BaseAttachProps & {
|
198
|
-
buttonType?: "iconButton";
|
199
|
-
icon?:
|
199
|
+
buttonType?: "iconButton" | undefined;
|
200
|
+
icon?: import("react").ReactNode;
|
200
201
|
} & {
|
201
|
-
value?: string | number;
|
202
|
-
contentRight?:
|
203
|
-
} & import("react").RefAttributes<HTMLDivElement>) | (import("react").HTMLAttributes<HTMLDivElement> & Omit<import("react").ButtonHTMLAttributes<HTMLElement>, "value"> & Omit<import("react").AnchorHTMLAttributes<HTMLElement>, "type"> & import("@salutejs/plasma-new-hope/styled-components").AsProps & {
|
204
|
-
text?: string;
|
202
|
+
value?: string | number | undefined;
|
203
|
+
contentRight?: undefined;
|
204
|
+
} & import("react").RefAttributes<HTMLDivElement>) | (import("react").HTMLAttributes<HTMLDivElement> & Omit<import("react").ButtonHTMLAttributes<HTMLElement>, "value"> & Omit<import("react").AnchorHTMLAttributes<HTMLElement>, "type"> & import("@salutejs/plasma-new-hope/styled-components").AsProps<any> & {
|
205
|
+
text?: string | undefined;
|
205
206
|
contentLeft?: import("react").ReactNode;
|
206
|
-
contentPlacing?: "default" | "relaxed";
|
207
|
-
isLoading?: boolean;
|
207
|
+
contentPlacing?: ("default" | "relaxed") | undefined;
|
208
|
+
isLoading?: boolean | undefined;
|
208
209
|
loader?: import("react").ReactNode;
|
209
|
-
stretch?: boolean;
|
210
|
-
stretching?: "auto" | "fixed" | "filled";
|
211
|
-
square?: boolean;
|
212
|
-
focused?: boolean;
|
213
|
-
disabled?: boolean;
|
214
|
-
pin?:
|
215
|
-
view?: string;
|
216
|
-
size?: string;
|
217
|
-
outlined?: boolean;
|
218
|
-
shiftLeft?: boolean;
|
219
|
-
shiftRight?: boolean;
|
220
|
-
blur?:
|
210
|
+
stretch?: boolean | undefined;
|
211
|
+
stretching?: ("auto" | "fixed" | "filled") | undefined;
|
212
|
+
square?: boolean | undefined;
|
213
|
+
focused?: boolean | undefined;
|
214
|
+
disabled?: boolean | undefined;
|
215
|
+
pin?: "square-square" | "square-clear" | "clear-square" | "clear-clear" | "clear-circle" | "circle-clear" | "circle-circle" | undefined;
|
216
|
+
view?: string | undefined;
|
217
|
+
size?: string | undefined;
|
218
|
+
outlined?: boolean | undefined;
|
219
|
+
shiftLeft?: boolean | undefined;
|
220
|
+
shiftRight?: boolean | undefined;
|
221
|
+
blur?: "small" | "medium" | "large" | undefined;
|
221
222
|
} & {
|
222
|
-
value?:
|
223
|
+
value?: undefined;
|
223
224
|
contentRight?: import("react").ReactNode;
|
224
225
|
} & import("@salutejs/plasma-new-hope/types/components/Attach/Attach.types").BaseAttachProps & {
|
225
|
-
buttonType?: "iconButton";
|
226
|
-
icon?:
|
226
|
+
buttonType?: "iconButton" | undefined;
|
227
|
+
icon?: import("react").ReactNode;
|
227
228
|
} & import("react").RefAttributes<HTMLDivElement>))>;
|