@salutejs/sdds-cs 0.317.0-canary.1991.15252784001.0 → 0.317.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.
Files changed (61) hide show
  1. package/components/Accordion/Accordion.d.ts +10 -9
  2. package/components/Attach/Attach.d.ts +159 -158
  3. package/components/Autocomplete/Autocomplete.d.ts +353 -352
  4. package/components/Avatar/Avatar.d.ts +47 -46
  5. package/components/AvatarGroup/AvatarGroup.d.ts +2 -1
  6. package/components/Badge/Badge.d.ts +41 -40
  7. package/components/Breadcrumbs/Breadcrumbs.d.ts +4 -3
  8. package/components/Button/Button.d.ts +71 -71
  9. package/components/ButtonGroup/ButtonGroup.d.ts +1 -0
  10. package/components/Card/Card.d.ts +6 -5
  11. package/components/Cell/Cell.d.ts +20 -19
  12. package/components/Checkbox/Checkbox.d.ts +1 -1
  13. package/components/Chip/Chip.d.ts +1 -0
  14. package/components/ChipGroup/ChipGroup.d.ts +1 -0
  15. package/components/Combobox/Combobox.d.ts +951 -951
  16. package/components/Counter/Counter.d.ts +1 -0
  17. package/components/DatePicker/DatePicker.d.ts +54 -53
  18. package/components/Divider/Divider.d.ts +1 -0
  19. package/components/Drawer/Drawer.d.ts +19 -18
  20. package/components/Dropdown/Dropdown.d.ts +52 -52
  21. package/components/Dropzone/Dropzone.d.ts +16 -15
  22. package/components/EmptyState/EmptyState.d.ts +1 -0
  23. package/components/Flow/Flow.d.ts +2 -1
  24. package/components/Grid/Grid.d.ts +1 -0
  25. package/components/IconButton/IconButton.d.ts +36 -35
  26. package/components/Image/Image.d.ts +4 -3
  27. package/components/Indicator/Indicator.d.ts +1 -0
  28. package/components/Link/Link.d.ts +2 -1
  29. package/components/Mask/Mask.d.ts +225 -224
  30. package/components/NumberFormat/NumberFormat.d.ts +1 -1
  31. package/components/NumberInput/NumberInput.d.ts +39 -38
  32. package/components/Pagination/Pagination.d.ts +1 -0
  33. package/components/Popover/Popover.d.ts +1 -0
  34. package/components/Price/Price.d.ts +1 -0
  35. package/components/Progress/Progress.d.ts +1 -0
  36. package/components/Radiobox/Radiobox.d.ts +1 -1
  37. package/components/Range/Range.d.ts +106 -105
  38. package/components/Rating/Rating.d.ts +14 -13
  39. package/components/Segment/Segment.d.ts +9 -8
  40. package/components/Select/Select.d.ts +244 -244
  41. package/components/Sheet/Sheet.d.ts +1 -0
  42. package/components/Skeleton/Skeleton.d.ts +5 -4
  43. package/components/Slider/Slider.d.ts +105 -96
  44. package/components/Spinner/Spinner.d.ts +14 -9
  45. package/components/Steps/Steps.d.ts +1 -0
  46. package/components/Switch/Switch.d.ts +1 -1
  47. package/components/Table/Table.d.ts +1 -0
  48. package/components/Tabs/TabItem.d.ts +23 -23
  49. package/components/Tabs/Tabs.d.ts +1 -1
  50. package/components/TextArea/TextArea.d.ts +206 -205
  51. package/components/TextField/TextField.d.ts +225 -224
  52. package/components/Toast/Toast.d.ts +1 -0
  53. package/components/ToastNew/ToastNew.d.ts +1 -1
  54. package/components/Tokens/Colors/Colors.styles.d.ts +26 -25
  55. package/components/Tokens/Typography/Typography.styles.d.ts +24 -23
  56. package/components/Toolbar/Toolbar.d.ts +6 -5
  57. package/components/Tree/Tree.d.ts +1 -0
  58. package/components/Typography/Typography.d.ts +205 -204
  59. package/components/ViewContainer/ViewContainer.d.ts +1 -0
  60. package/mixins/index.d.ts +2 -1
  61. package/package.json +8 -8
@@ -1,3 +1,4 @@
1
+ /// <reference types="react" />
1
2
  import { AccordionItem } from '@salutejs/plasma-new-hope/styled-components';
2
3
  export declare const Accordion: import("react").FunctionComponent<import("@salutejs/plasma-new-hope/types/engines/types").PropsType<{
3
4
  view: {
@@ -8,14 +9,14 @@ export declare const Accordion: import("react").FunctionComponent<import("@salut
8
9
  s: import("@salutejs/plasma-new-hope/types/engines/types").PolymorphicClassName;
9
10
  };
10
11
  }> & {
11
- view?: string;
12
- size?: string;
13
- singleActive?: boolean;
14
- defaultActiveEventKey?: number[];
15
- disabled?: boolean;
16
- stretching?: "fixed" | "filled";
17
- onChange?: (index?: number, value?: boolean) => void;
18
- children?: React.ReactNode;
19
- className?: string;
12
+ view?: string | undefined;
13
+ size?: string | undefined;
14
+ singleActive?: boolean | undefined;
15
+ defaultActiveEventKey?: number[] | undefined;
16
+ disabled?: boolean | undefined;
17
+ stretching?: "fixed" | "filled" | undefined;
18
+ onChange?: ((index?: number | undefined, value?: boolean | undefined) => void) | undefined;
19
+ children?: import("react").ReactNode;
20
+ className?: string | undefined;
20
21
  } & import("react").RefAttributes<HTMLDivElement>>;
21
22
  export { AccordionItem };
@@ -1,3 +1,4 @@
1
+ /// <reference types="react" />
1
2
  /**
2
3
  * Компонент, позволяющий прикрепить локальный файл
3
4
  */
@@ -14,204 +15,204 @@ export declare const Attach: import("react").FunctionComponent<import("@salutejs
14
15
  size: {
15
16
  s: import("@salutejs/plasma-new-hope/types/engines/types").PolymorphicClassName;
16
17
  };
17
- }> & ((import("react").HTMLAttributes<HTMLDivElement> & Omit<import("react").ButtonHTMLAttributes<HTMLElement>, "value"> & Omit<import("react").AnchorHTMLAttributes<HTMLElement>, "type"> & import("@salutejs/plasma-new-hope/styled-components").AsProps & {
18
- text?: string;
18
+ }> & ((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> & {
19
+ text?: string | undefined;
19
20
  contentLeft?: import("react").ReactNode;
20
- contentPlacing?: "default" | "relaxed";
21
- isLoading?: boolean;
21
+ contentPlacing?: ("default" | "relaxed") | undefined;
22
+ isLoading?: boolean | undefined;
22
23
  loader?: import("react").ReactNode;
23
- stretch?: boolean;
24
- stretching?: "fixed" | "auto" | "filled";
25
- square?: boolean;
26
- focused?: boolean;
27
- disabled?: boolean;
28
- pin?: import("@salutejs/plasma-new-hope/types/utils/roundness").Pin;
29
- view?: string;
30
- size?: string;
31
- outlined?: boolean;
32
- shiftLeft?: boolean;
33
- shiftRight?: boolean;
34
- blur?: import("@salutejs/plasma-new-hope/styled-components").Blur;
24
+ stretch?: boolean | undefined;
25
+ stretching?: ("fixed" | "auto" | "filled") | undefined;
26
+ square?: boolean | undefined;
27
+ focused?: boolean | undefined;
28
+ disabled?: boolean | undefined;
29
+ pin?: "square-square" | "square-clear" | "clear-square" | "clear-clear" | "clear-circle" | "circle-clear" | "circle-circle" | undefined;
30
+ view?: string | undefined;
31
+ size?: string | undefined;
32
+ outlined?: boolean | undefined;
33
+ shiftLeft?: boolean | undefined;
34
+ shiftRight?: boolean | undefined;
35
+ blur?: "small" | "medium" | "large" | undefined;
35
36
  } & {
36
- value?: string | number;
37
- contentRight?: never;
37
+ value?: string | number | undefined;
38
+ contentRight?: undefined;
38
39
  } & import("@salutejs/plasma-new-hope/types/components/Attach/Attach.types").BaseAttachProps & {
39
- buttonType?: "button";
40
- } & 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 & {
41
- text?: string;
40
+ buttonType?: "button" | undefined;
41
+ } & 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> & {
42
+ text?: string | undefined;
42
43
  contentLeft?: import("react").ReactNode;
43
- contentPlacing?: "default" | "relaxed";
44
- isLoading?: boolean;
44
+ contentPlacing?: ("default" | "relaxed") | undefined;
45
+ isLoading?: boolean | undefined;
45
46
  loader?: import("react").ReactNode;
46
- stretch?: boolean;
47
- stretching?: "fixed" | "auto" | "filled";
48
- square?: boolean;
49
- focused?: boolean;
50
- disabled?: boolean;
51
- pin?: import("@salutejs/plasma-new-hope/types/utils/roundness").Pin;
52
- view?: string;
53
- size?: string;
54
- outlined?: boolean;
55
- shiftLeft?: boolean;
56
- shiftRight?: boolean;
57
- blur?: import("@salutejs/plasma-new-hope/styled-components").Blur;
47
+ stretch?: boolean | undefined;
48
+ stretching?: ("fixed" | "auto" | "filled") | undefined;
49
+ square?: boolean | undefined;
50
+ focused?: boolean | undefined;
51
+ disabled?: boolean | undefined;
52
+ pin?: "square-square" | "square-clear" | "clear-square" | "clear-clear" | "clear-circle" | "circle-clear" | "circle-circle" | undefined;
53
+ view?: string | undefined;
54
+ size?: string | undefined;
55
+ outlined?: boolean | undefined;
56
+ shiftLeft?: boolean | undefined;
57
+ shiftRight?: boolean | undefined;
58
+ blur?: "small" | "medium" | "large" | undefined;
58
59
  } & {
59
- value?: string | number;
60
- contentRight?: never;
60
+ value?: string | number | undefined;
61
+ contentRight?: undefined;
61
62
  } & import("@salutejs/plasma-new-hope/types/components/Attach/Attach.types").BaseAttachProps & {
62
- buttonType?: "button";
63
+ buttonType?: "button" | undefined;
63
64
  } & {
64
- value?: never;
65
+ value?: undefined;
65
66
  contentRight?: import("react").ReactNode;
66
- } & 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 & {
67
- text?: string;
67
+ } & 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> & {
68
+ text?: string | undefined;
68
69
  contentLeft?: import("react").ReactNode;
69
- contentPlacing?: "default" | "relaxed";
70
- isLoading?: boolean;
70
+ contentPlacing?: ("default" | "relaxed") | undefined;
71
+ isLoading?: boolean | undefined;
71
72
  loader?: import("react").ReactNode;
72
- stretch?: boolean;
73
- stretching?: "fixed" | "auto" | "filled";
74
- square?: boolean;
75
- focused?: boolean;
76
- disabled?: boolean;
77
- pin?: import("@salutejs/plasma-new-hope/types/utils/roundness").Pin;
78
- view?: string;
79
- size?: string;
80
- outlined?: boolean;
81
- shiftLeft?: boolean;
82
- shiftRight?: boolean;
83
- blur?: import("@salutejs/plasma-new-hope/styled-components").Blur;
73
+ stretch?: boolean | undefined;
74
+ stretching?: ("fixed" | "auto" | "filled") | undefined;
75
+ square?: boolean | undefined;
76
+ focused?: boolean | undefined;
77
+ disabled?: boolean | undefined;
78
+ pin?: "square-square" | "square-clear" | "clear-square" | "clear-clear" | "clear-circle" | "circle-clear" | "circle-circle" | undefined;
79
+ view?: string | undefined;
80
+ size?: string | undefined;
81
+ outlined?: boolean | undefined;
82
+ shiftLeft?: boolean | undefined;
83
+ shiftRight?: boolean | undefined;
84
+ blur?: "small" | "medium" | "large" | undefined;
84
85
  } & {
85
- value?: string | number;
86
- contentRight?: never;
86
+ value?: string | number | undefined;
87
+ contentRight?: undefined;
87
88
  } & import("@salutejs/plasma-new-hope/types/components/Attach/Attach.types").BaseAttachProps & {
88
- buttonType?: "iconButton";
89
- icon?: React.ReactNode;
90
- } & 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 & {
91
- text?: string;
89
+ buttonType?: "iconButton" | undefined;
90
+ icon?: import("react").ReactNode;
91
+ } & 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> & {
92
+ text?: string | undefined;
92
93
  contentLeft?: import("react").ReactNode;
93
- contentPlacing?: "default" | "relaxed";
94
- isLoading?: boolean;
94
+ contentPlacing?: ("default" | "relaxed") | undefined;
95
+ isLoading?: boolean | undefined;
95
96
  loader?: import("react").ReactNode;
96
- stretch?: boolean;
97
- stretching?: "fixed" | "auto" | "filled";
98
- square?: boolean;
99
- focused?: boolean;
100
- disabled?: boolean;
101
- pin?: import("@salutejs/plasma-new-hope/types/utils/roundness").Pin;
102
- view?: string;
103
- size?: string;
104
- outlined?: boolean;
105
- shiftLeft?: boolean;
106
- shiftRight?: boolean;
107
- blur?: import("@salutejs/plasma-new-hope/styled-components").Blur;
97
+ stretch?: boolean | undefined;
98
+ stretching?: ("fixed" | "auto" | "filled") | undefined;
99
+ square?: boolean | undefined;
100
+ focused?: boolean | undefined;
101
+ disabled?: boolean | undefined;
102
+ pin?: "square-square" | "square-clear" | "clear-square" | "clear-clear" | "clear-circle" | "circle-clear" | "circle-circle" | undefined;
103
+ view?: string | undefined;
104
+ size?: string | undefined;
105
+ outlined?: boolean | undefined;
106
+ shiftLeft?: boolean | undefined;
107
+ shiftRight?: boolean | undefined;
108
+ blur?: "small" | "medium" | "large" | undefined;
108
109
  } & {
109
- value?: string | number;
110
- contentRight?: never;
110
+ value?: string | number | undefined;
111
+ contentRight?: undefined;
111
112
  } & import("@salutejs/plasma-new-hope/types/components/Attach/Attach.types").BaseAttachProps & {
112
- buttonType?: "iconButton";
113
- icon?: React.ReactNode;
113
+ buttonType?: "iconButton" | undefined;
114
+ icon?: import("react").ReactNode;
114
115
  } & {
115
- value?: never;
116
+ value?: undefined;
116
117
  contentRight?: import("react").ReactNode;
117
- } & 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 & {
118
- text?: string;
118
+ } & 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> & {
119
+ text?: string | undefined;
119
120
  contentLeft?: import("react").ReactNode;
120
- contentPlacing?: "default" | "relaxed";
121
- isLoading?: boolean;
121
+ contentPlacing?: ("default" | "relaxed") | undefined;
122
+ isLoading?: boolean | undefined;
122
123
  loader?: import("react").ReactNode;
123
- stretch?: boolean;
124
- stretching?: "fixed" | "auto" | "filled";
125
- square?: boolean;
126
- focused?: boolean;
127
- disabled?: boolean;
128
- pin?: import("@salutejs/plasma-new-hope/types/utils/roundness").Pin;
129
- view?: string;
130
- size?: string;
131
- outlined?: boolean;
132
- shiftLeft?: boolean;
133
- shiftRight?: boolean;
134
- blur?: import("@salutejs/plasma-new-hope/styled-components").Blur;
124
+ stretch?: boolean | undefined;
125
+ stretching?: ("fixed" | "auto" | "filled") | undefined;
126
+ square?: boolean | undefined;
127
+ focused?: boolean | undefined;
128
+ disabled?: boolean | undefined;
129
+ pin?: "square-square" | "square-clear" | "clear-square" | "clear-clear" | "clear-circle" | "circle-clear" | "circle-circle" | undefined;
130
+ view?: string | undefined;
131
+ size?: string | undefined;
132
+ outlined?: boolean | undefined;
133
+ shiftLeft?: boolean | undefined;
134
+ shiftRight?: boolean | undefined;
135
+ blur?: "small" | "medium" | "large" | undefined;
135
136
  } & {
136
- value?: never;
137
+ value?: undefined;
137
138
  contentRight?: import("react").ReactNode;
138
139
  } & import("@salutejs/plasma-new-hope/types/components/Attach/Attach.types").BaseAttachProps & {
139
- buttonType?: "button";
140
+ buttonType?: "button" | undefined;
140
141
  } & {
141
- value?: string | number;
142
- contentRight?: never;
143
- } & 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 & {
144
- text?: string;
142
+ value?: string | number | undefined;
143
+ contentRight?: undefined;
144
+ } & 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> & {
145
+ text?: string | undefined;
145
146
  contentLeft?: import("react").ReactNode;
146
- contentPlacing?: "default" | "relaxed";
147
- isLoading?: boolean;
147
+ contentPlacing?: ("default" | "relaxed") | undefined;
148
+ isLoading?: boolean | undefined;
148
149
  loader?: import("react").ReactNode;
149
- stretch?: boolean;
150
- stretching?: "fixed" | "auto" | "filled";
151
- square?: boolean;
152
- focused?: boolean;
153
- disabled?: boolean;
154
- pin?: import("@salutejs/plasma-new-hope/types/utils/roundness").Pin;
155
- view?: string;
156
- size?: string;
157
- outlined?: boolean;
158
- shiftLeft?: boolean;
159
- shiftRight?: boolean;
160
- blur?: import("@salutejs/plasma-new-hope/styled-components").Blur;
150
+ stretch?: boolean | undefined;
151
+ stretching?: ("fixed" | "auto" | "filled") | undefined;
152
+ square?: boolean | undefined;
153
+ focused?: boolean | undefined;
154
+ disabled?: boolean | undefined;
155
+ pin?: "square-square" | "square-clear" | "clear-square" | "clear-clear" | "clear-circle" | "circle-clear" | "circle-circle" | undefined;
156
+ view?: string | undefined;
157
+ size?: string | undefined;
158
+ outlined?: boolean | undefined;
159
+ shiftLeft?: boolean | undefined;
160
+ shiftRight?: boolean | undefined;
161
+ blur?: "small" | "medium" | "large" | undefined;
161
162
  } & {
162
- value?: never;
163
+ value?: undefined;
163
164
  contentRight?: import("react").ReactNode;
164
165
  } & import("@salutejs/plasma-new-hope/types/components/Attach/Attach.types").BaseAttachProps & {
165
- buttonType?: "button";
166
- } & 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 & {
167
- text?: string;
166
+ buttonType?: "button" | undefined;
167
+ } & 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> & {
168
+ text?: string | undefined;
168
169
  contentLeft?: import("react").ReactNode;
169
- contentPlacing?: "default" | "relaxed";
170
- isLoading?: boolean;
170
+ contentPlacing?: ("default" | "relaxed") | undefined;
171
+ isLoading?: boolean | undefined;
171
172
  loader?: import("react").ReactNode;
172
- stretch?: boolean;
173
- stretching?: "fixed" | "auto" | "filled";
174
- square?: boolean;
175
- focused?: boolean;
176
- disabled?: boolean;
177
- pin?: import("@salutejs/plasma-new-hope/types/utils/roundness").Pin;
178
- view?: string;
179
- size?: string;
180
- outlined?: boolean;
181
- shiftLeft?: boolean;
182
- shiftRight?: boolean;
183
- blur?: import("@salutejs/plasma-new-hope/styled-components").Blur;
173
+ stretch?: boolean | undefined;
174
+ stretching?: ("fixed" | "auto" | "filled") | undefined;
175
+ square?: boolean | undefined;
176
+ focused?: boolean | undefined;
177
+ disabled?: boolean | undefined;
178
+ pin?: "square-square" | "square-clear" | "clear-square" | "clear-clear" | "clear-circle" | "circle-clear" | "circle-circle" | undefined;
179
+ view?: string | undefined;
180
+ size?: string | undefined;
181
+ outlined?: boolean | undefined;
182
+ shiftLeft?: boolean | undefined;
183
+ shiftRight?: boolean | undefined;
184
+ blur?: "small" | "medium" | "large" | undefined;
184
185
  } & {
185
- value?: never;
186
+ value?: undefined;
186
187
  contentRight?: import("react").ReactNode;
187
188
  } & import("@salutejs/plasma-new-hope/types/components/Attach/Attach.types").BaseAttachProps & {
188
- buttonType?: "iconButton";
189
- icon?: React.ReactNode;
189
+ buttonType?: "iconButton" | undefined;
190
+ icon?: import("react").ReactNode;
190
191
  } & {
191
- value?: string | number;
192
- contentRight?: never;
193
- } & 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 & {
194
- text?: string;
192
+ value?: string | number | undefined;
193
+ contentRight?: undefined;
194
+ } & 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> & {
195
+ text?: string | undefined;
195
196
  contentLeft?: import("react").ReactNode;
196
- contentPlacing?: "default" | "relaxed";
197
- isLoading?: boolean;
197
+ contentPlacing?: ("default" | "relaxed") | undefined;
198
+ isLoading?: boolean | undefined;
198
199
  loader?: import("react").ReactNode;
199
- stretch?: boolean;
200
- stretching?: "fixed" | "auto" | "filled";
201
- square?: boolean;
202
- focused?: boolean;
203
- disabled?: boolean;
204
- pin?: import("@salutejs/plasma-new-hope/types/utils/roundness").Pin;
205
- view?: string;
206
- size?: string;
207
- outlined?: boolean;
208
- shiftLeft?: boolean;
209
- shiftRight?: boolean;
210
- blur?: import("@salutejs/plasma-new-hope/styled-components").Blur;
200
+ stretch?: boolean | undefined;
201
+ stretching?: ("fixed" | "auto" | "filled") | undefined;
202
+ square?: boolean | undefined;
203
+ focused?: boolean | undefined;
204
+ disabled?: boolean | undefined;
205
+ pin?: "square-square" | "square-clear" | "clear-square" | "clear-clear" | "clear-circle" | "circle-clear" | "circle-circle" | undefined;
206
+ view?: string | undefined;
207
+ size?: string | undefined;
208
+ outlined?: boolean | undefined;
209
+ shiftLeft?: boolean | undefined;
210
+ shiftRight?: boolean | undefined;
211
+ blur?: "small" | "medium" | "large" | undefined;
211
212
  } & {
212
- value?: never;
213
+ value?: undefined;
213
214
  contentRight?: import("react").ReactNode;
214
215
  } & import("@salutejs/plasma-new-hope/types/components/Attach/Attach.types").BaseAttachProps & {
215
- buttonType?: "iconButton";
216
- icon?: React.ReactNode;
216
+ buttonType?: "iconButton" | undefined;
217
+ icon?: import("react").ReactNode;
217
218
  } & import("react").RefAttributes<HTMLDivElement>))>;