@central-design-system/components 3.0.0-alpha.0 → 3.0.0-alpha.1

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 (80) hide show
  1. package/dist/cds.css +1 -1
  2. package/dist/cds.d.ts +20 -3
  3. package/dist/cds.es.js +4649 -1354
  4. package/dist/cds.umd.js +1 -1
  5. package/dist/components/CdsButton/CdsButton.vue.d.ts +10 -10
  6. package/dist/components/CdsCheckbox/CdsCheckbox.vue.d.ts +222 -0
  7. package/dist/components/CdsCheckbox/CdsCheckboxGroup.vue.d.ts +205 -0
  8. package/dist/components/CdsDrawer/CdsDrawer.vue.d.ts +2 -2
  9. package/dist/components/CdsForm/CdsForm.vue.d.ts +99 -0
  10. package/dist/components/CdsIcon/CdsIcon.vue.d.ts +4 -4
  11. package/dist/components/CdsInput/CdsInput.vue.d.ts +219 -0
  12. package/dist/components/CdsInput/CdsInputCounter.vue.d.ts +39 -0
  13. package/dist/components/CdsInput/CdsInputDescription.vue.d.ts +26 -0
  14. package/dist/components/CdsInput/CdsInputLabel.vue.d.ts +32 -0
  15. package/dist/components/CdsInput/CdsInputMessages.vue.d.ts +221 -0
  16. package/dist/components/CdsInput/index.d.ts +5 -0
  17. package/dist/components/CdsList/CdsList.vue.d.ts +15 -27
  18. package/dist/components/CdsList/CdsListGroup.vue.d.ts +8 -8
  19. package/dist/components/CdsList/CdsListItem.vue.d.ts +24 -18
  20. package/dist/components/CdsList/composable/focus.d.ts +12 -0
  21. package/dist/components/CdsList/composable/index.d.ts +1 -0
  22. package/dist/components/CdsList/composable/list.d.ts +1 -1
  23. package/dist/components/CdsMenu/CdsMenu.vue.d.ts +592 -0
  24. package/dist/components/CdsMenu/shared.d.ts +10 -0
  25. package/dist/components/CdsOverlay/CdsOverlay.vue.d.ts +324 -0
  26. package/dist/components/CdsOverlay/composable/activator.d.ts +81 -0
  27. package/dist/components/CdsOverlay/composable/index.d.ts +6 -0
  28. package/dist/components/CdsOverlay/composable/locationStrategies.d.ts +75 -0
  29. package/dist/components/CdsOverlay/composable/scrim.d.ts +8 -0
  30. package/dist/components/CdsOverlay/composable/scrollStrategies.d.ts +33 -0
  31. package/dist/components/CdsOverlay/composable/stack.d.ts +9 -0
  32. package/dist/components/CdsOverlay/composable/teleport.d.ts +6 -0
  33. package/dist/components/CdsOverlay/utils/index.d.ts +2 -0
  34. package/dist/components/CdsOverlay/utils/point.d.ts +20 -0
  35. package/dist/components/CdsOverlay/utils/requestNewFrame.d.ts +5 -0
  36. package/dist/components/CdsRadioButton/CdsRadio.vue.d.ts +201 -0
  37. package/dist/components/CdsRadioButton/CdsRadioButton.vue.d.ts +200 -0
  38. package/dist/components/CdsSelect/CdsSelect.vue.d.ts +664 -0
  39. package/dist/components/CdsSidebar/CdsSidebar.vue.d.ts +61 -0
  40. package/dist/components/CdsStages/CdsStages.vue.d.ts +102 -0
  41. package/dist/components/CdsTextArea/CdsTextArea.vue.d.ts +681 -0
  42. package/dist/components/CdsTextInput/CdsTextInput.vue.d.ts +600 -0
  43. package/dist/components/index.d.ts +18 -1
  44. package/dist/composable/delay.d.ts +29 -0
  45. package/dist/composable/dimensions.d.ts +47 -0
  46. package/dist/composable/direction.d.ts +24 -0
  47. package/dist/composable/field.d.ts +138 -0
  48. package/dist/composable/focus.d.ts +19 -9
  49. package/dist/composable/form.d.ts +126 -0
  50. package/dist/composable/hidration.d.ts +1 -0
  51. package/dist/composable/icon.d.ts +29 -4
  52. package/dist/composable/index.d.ts +12 -0
  53. package/dist/composable/input.d.ts +97 -0
  54. package/dist/composable/items.d.ts +10 -9
  55. package/dist/composable/lazy.d.ts +11 -0
  56. package/dist/composable/link.d.ts +1 -2
  57. package/dist/composable/loading.d.ts +1 -0
  58. package/dist/composable/nested/nested.d.ts +2 -2
  59. package/dist/composable/overlay.d.ts +99 -0
  60. package/dist/composable/scopeId.d.ts +5 -0
  61. package/dist/composable/transition.d.ts +22 -0
  62. package/dist/composable/validation.d.ts +136 -0
  63. package/dist/directives/click-outside/index.d.ts +14 -0
  64. package/dist/directives/index.d.ts +1 -2
  65. package/dist/globals.d.ts +16 -0
  66. package/dist/transitions/createTransition.d.ts +31 -2
  67. package/dist/transitions/index.d.ts +90 -0
  68. package/dist/utils/anchor.d.ts +23 -0
  69. package/dist/utils/animation.d.ts +6 -0
  70. package/dist/utils/box.d.ts +26 -0
  71. package/dist/utils/dom.d.ts +6 -0
  72. package/dist/utils/getScrollParent.d.ts +3 -0
  73. package/dist/utils/globals.d.ts +4 -0
  74. package/dist/utils/helpers.d.ts +26 -2
  75. package/dist/utils/index.d.ts +6 -0
  76. package/package.json +3 -3
  77. package/src/scss/mixins/layout/_shadow.scss +4 -0
  78. package/src/scss/mixins/layout/index.scss +1 -0
  79. package/src/scss/modules/_transition.scss +31 -3
  80. package/src/scss/themes/index.ts +1 -1
@@ -0,0 +1,681 @@
1
+ import type { PropType } from 'vue';
2
+ export declare const componentName = "CdsTextArea";
3
+ declare const _sfc_main: import("vue").DefineComponent<{
4
+ /**
5
+ * Автоматическое увеличение высоты текстовой области
6
+ */
7
+ autoGrow: {
8
+ type: PropType<boolean>;
9
+ default: boolean;
10
+ };
11
+ /**
12
+ * Количество строк в текстовой области
13
+ */
14
+ rows: {
15
+ type: PropType<string | number>;
16
+ default: number;
17
+ validator: (value: any) => boolean;
18
+ };
19
+ /**
20
+ * Максимальное количество строк в текстовой области
21
+ */
22
+ maxRows: {
23
+ type: PropType<string | number>;
24
+ default: number;
25
+ validator: (value: any) => boolean;
26
+ };
27
+ /**
28
+ * Отключение возможности изменения размера текстовой области
29
+ */
30
+ noResize: {
31
+ type: PropType<boolean>;
32
+ default: boolean;
33
+ };
34
+ loading: {
35
+ type: PropType<boolean>;
36
+ default: boolean;
37
+ };
38
+ focused: {
39
+ type: PropType<boolean>;
40
+ default: boolean;
41
+ };
42
+ 'onClick:prepend': {
43
+ type: PropType<(...args: any[]) => any>;
44
+ default: undefined; /**
45
+ * Максимальное количество строк в текстовой области
46
+ */
47
+ };
48
+ 'onClick:append': {
49
+ type: PropType<(...args: any[]) => any>;
50
+ default: undefined;
51
+ };
52
+ prependIcon: {
53
+ type: PropType<"add" | "alert-fill" | "alert" | "analog" | "arrow-down" | "arrow-left-bottom" | "arrow-left-top" | "arrow-left" | "arrow-right-bottom" | "arrow-right-top" | "arrow-right" | "arrow-up" | "arrows-vertical" | "calendar" | "card-bank" | "category" | "check-fill" | "check" | "chevron-down" | "chevron-left" | "chevron-right" | "chevron-up" | "chocolate-menu" | "clock" | "comment" | "company" | "compare" | "copy" | "data-cards" | "delete" | "directory" | "doc-download" | "doc" | "download" | "draggable" | "edit" | "enter" | "error-fill" | "error" | "external" | "facebook-fill" | "facebook" | "filters" | "flag" | "globe" | "infinity" | "info-fill" | "info" | "link" | "list-search" | "list" | "loader" | "location" | "locked" | "login" | "logout" | "menu" | "minus" | "notification" | "overflow-menu-horizontal" | "overflow-menu-vertical" | "password" | "pin" | "plus" | "printer" | "question-fill" | "question" | "refresh" | "remove" | "sandglass" | "save" | "search" | "settings" | "shopping-cart" | "sort-date" | "star-fill" | "star" | "telegram" | "timer" | "tool" | "truck" | "unlocked" | "upload" | "user-avatar" | "user-group" | "visibility-off" | "visibility-on" | "vk" | "winner" | "workspace" | "youtube">;
54
+ default: undefined;
55
+ validator: (value: "add" | "alert-fill" | "alert" | "analog" | "arrow-down" | "arrow-left-bottom" | "arrow-left-top" | "arrow-left" | "arrow-right-bottom" | "arrow-right-top" | "arrow-right" | "arrow-up" | "arrows-vertical" | "calendar" | "card-bank" | "category" | "check-fill" | "check" | "chevron-down" | "chevron-left" | "chevron-right" | "chevron-up" | "chocolate-menu" | "clock" | "comment" | "company" | "compare" | "copy" | "data-cards" | "delete" | "directory" | "doc-download" | "doc" | "download" | "draggable" | "edit" | "enter" | "error-fill" | "error" | "external" | "facebook-fill" | "facebook" | "filters" | "flag" | "globe" | "infinity" | "info-fill" | "info" | "link" | "list-search" | "list" | "loader" | "location" | "locked" | "login" | "logout" | "menu" | "minus" | "notification" | "overflow-menu-horizontal" | "overflow-menu-vertical" | "password" | "pin" | "plus" | "printer" | "question-fill" | "question" | "refresh" | "remove" | "sandglass" | "save" | "search" | "settings" | "shopping-cart" | "sort-date" | "star-fill" | "star" | "telegram" | "timer" | "tool" | "truck" | "unlocked" | "upload" | "user-avatar" | "user-group" | "visibility-off" | "visibility-on" | "vk" | "winner" | "workspace" | "youtube") => boolean;
56
+ };
57
+ appendIcon: {
58
+ type: PropType<"add" | "alert-fill" | "alert" | "analog" | "arrow-down" | "arrow-left-bottom" | "arrow-left-top" | "arrow-left" | "arrow-right-bottom" | "arrow-right-top" | "arrow-right" | "arrow-up" | "arrows-vertical" | "calendar" | "card-bank" | "category" | "check-fill" | "check" | "chevron-down" | "chevron-left" | "chevron-right" | "chevron-up" | "chocolate-menu" | "clock" | "comment" | "company" | "compare" | "copy" | "data-cards" | "delete" | "directory" | "doc-download" | "doc" | "download" | "draggable" | "edit" | "enter" | "error-fill" | "error" | "external" | "facebook-fill" | "facebook" | "filters" | "flag" | "globe" | "infinity" | "info-fill" | "info" | "link" | "list-search" | "list" | "loader" | "location" | "locked" | "login" | "logout" | "menu" | "minus" | "notification" | "overflow-menu-horizontal" | "overflow-menu-vertical" | "password" | "pin" | "plus" | "printer" | "question-fill" | "question" | "refresh" | "remove" | "sandglass" | "save" | "search" | "settings" | "shopping-cart" | "sort-date" | "star-fill" | "star" | "telegram" | "timer" | "tool" | "truck" | "unlocked" | "upload" | "user-avatar" | "user-group" | "visibility-off" | "visibility-on" | "vk" | "winner" | "workspace" | "youtube">;
59
+ default: undefined;
60
+ validator: (value: "add" | "alert-fill" | "alert" | "analog" | "arrow-down" | "arrow-left-bottom" | "arrow-left-top" | "arrow-left" | "arrow-right-bottom" | "arrow-right-top" | "arrow-right" | "arrow-up" | "arrows-vertical" | "calendar" | "card-bank" | "category" | "check-fill" | "check" | "chevron-down" | "chevron-left" | "chevron-right" | "chevron-up" | "chocolate-menu" | "clock" | "comment" | "company" | "compare" | "copy" | "data-cards" | "delete" | "directory" | "doc-download" | "doc" | "download" | "draggable" | "edit" | "enter" | "error-fill" | "error" | "external" | "facebook-fill" | "facebook" | "filters" | "flag" | "globe" | "infinity" | "info-fill" | "info" | "link" | "list-search" | "list" | "loader" | "location" | "locked" | "login" | "logout" | "menu" | "minus" | "notification" | "overflow-menu-horizontal" | "overflow-menu-vertical" | "password" | "pin" | "plus" | "printer" | "question-fill" | "question" | "refresh" | "remove" | "sandglass" | "save" | "search" | "settings" | "shopping-cart" | "sort-date" | "star-fill" | "star" | "telegram" | "timer" | "tool" | "truck" | "unlocked" | "upload" | "user-avatar" | "user-group" | "visibility-off" | "visibility-on" | "vk" | "winner" | "workspace" | "youtube") => boolean;
61
+ };
62
+ disabled: {
63
+ type: PropType<boolean>;
64
+ default: boolean;
65
+ };
66
+ error: {
67
+ type: PropType<boolean>;
68
+ default: boolean;
69
+ };
70
+ errorMessages: {
71
+ type: PropType<string | string[]>;
72
+ default: () => never[];
73
+ };
74
+ maxErrors: {
75
+ type: PropType<string | number>;
76
+ default: number;
77
+ };
78
+ name: {
79
+ type: PropType<string | undefined>;
80
+ default: undefined;
81
+ };
82
+ label: {
83
+ type: PropType<string | undefined>;
84
+ default: undefined;
85
+ };
86
+ readonly: {
87
+ type: PropType<boolean>;
88
+ default: boolean;
89
+ };
90
+ rules: {
91
+ type: PropType<import("../../composable").TValidationRule[]>;
92
+ default: () => never[];
93
+ };
94
+ modelValue: {
95
+ type: PropType<any>;
96
+ default: null;
97
+ };
98
+ validateOn: {
99
+ type: PropType<"input" | "blur" | "submit">;
100
+ default: string;
101
+ available: readonly ["blur", "input", "submit"];
102
+ validator: (value: "input" | "blur" | "submit") => boolean;
103
+ };
104
+ validationValue: {
105
+ type: PropType<any>;
106
+ default: undefined;
107
+ };
108
+ hideMessages: {
109
+ type: PropType<boolean>;
110
+ default: boolean;
111
+ };
112
+ id: {
113
+ type: PropType<string>;
114
+ default: undefined;
115
+ };
116
+ description: {
117
+ type: PropType<string>;
118
+ default: undefined;
119
+ };
120
+ value: {
121
+ type: PropType<any>;
122
+ default: null;
123
+ };
124
+ messages: {
125
+ type: PropType<string | string[]>;
126
+ default: () => never[];
127
+ };
128
+ persistentMessages: {
129
+ type: PropType<boolean>;
130
+ default: boolean;
131
+ };
132
+ active: {
133
+ type: PropType<boolean>;
134
+ default: boolean;
135
+ };
136
+ autofocus: {
137
+ type: PropType<boolean>;
138
+ default: boolean;
139
+ };
140
+ prefix: {
141
+ type: PropType<string>;
142
+ default: undefined;
143
+ };
144
+ suffix: {
145
+ type: PropType<string>;
146
+ default: undefined;
147
+ };
148
+ prependInnerIcon: {
149
+ type: PropType<"add" | "alert-fill" | "alert" | "analog" | "arrow-down" | "arrow-left-bottom" | "arrow-left-top" | "arrow-left" | "arrow-right-bottom" | "arrow-right-top" | "arrow-right" | "arrow-up" | "arrows-vertical" | "calendar" | "card-bank" | "category" | "check-fill" | "check" | "chevron-down" | "chevron-left" | "chevron-right" | "chevron-up" | "chocolate-menu" | "clock" | "comment" | "company" | "compare" | "copy" | "data-cards" | "delete" | "directory" | "doc-download" | "doc" | "download" | "draggable" | "edit" | "enter" | "error-fill" | "error" | "external" | "facebook-fill" | "facebook" | "filters" | "flag" | "globe" | "infinity" | "info-fill" | "info" | "link" | "list-search" | "list" | "loader" | "location" | "locked" | "login" | "logout" | "menu" | "minus" | "notification" | "overflow-menu-horizontal" | "overflow-menu-vertical" | "password" | "pin" | "plus" | "printer" | "question-fill" | "question" | "refresh" | "remove" | "sandglass" | "save" | "search" | "settings" | "shopping-cart" | "sort-date" | "star-fill" | "star" | "telegram" | "timer" | "tool" | "truck" | "unlocked" | "upload" | "user-avatar" | "user-group" | "visibility-off" | "visibility-on" | "vk" | "winner" | "workspace" | "youtube">;
150
+ default: undefined;
151
+ validator: (value: "add" | "alert-fill" | "alert" | "analog" | "arrow-down" | "arrow-left-bottom" | "arrow-left-top" | "arrow-left" | "arrow-right-bottom" | "arrow-right-top" | "arrow-right" | "arrow-up" | "arrows-vertical" | "calendar" | "card-bank" | "category" | "check-fill" | "check" | "chevron-down" | "chevron-left" | "chevron-right" | "chevron-up" | "chocolate-menu" | "clock" | "comment" | "company" | "compare" | "copy" | "data-cards" | "delete" | "directory" | "doc-download" | "doc" | "download" | "draggable" | "edit" | "enter" | "error-fill" | "error" | "external" | "facebook-fill" | "facebook" | "filters" | "flag" | "globe" | "infinity" | "info-fill" | "info" | "link" | "list-search" | "list" | "loader" | "location" | "locked" | "login" | "logout" | "menu" | "minus" | "notification" | "overflow-menu-horizontal" | "overflow-menu-vertical" | "password" | "pin" | "plus" | "printer" | "question-fill" | "question" | "refresh" | "remove" | "sandglass" | "save" | "search" | "settings" | "shopping-cart" | "sort-date" | "star-fill" | "star" | "telegram" | "timer" | "tool" | "truck" | "unlocked" | "upload" | "user-avatar" | "user-group" | "visibility-off" | "visibility-on" | "vk" | "winner" | "workspace" | "youtube") => boolean;
152
+ };
153
+ appendInnerIcon: {
154
+ type: PropType<"add" | "alert-fill" | "alert" | "analog" | "arrow-down" | "arrow-left-bottom" | "arrow-left-top" | "arrow-left" | "arrow-right-bottom" | "arrow-right-top" | "arrow-right" | "arrow-up" | "arrows-vertical" | "calendar" | "card-bank" | "category" | "check-fill" | "check" | "chevron-down" | "chevron-left" | "chevron-right" | "chevron-up" | "chocolate-menu" | "clock" | "comment" | "company" | "compare" | "copy" | "data-cards" | "delete" | "directory" | "doc-download" | "doc" | "download" | "draggable" | "edit" | "enter" | "error-fill" | "error" | "external" | "facebook-fill" | "facebook" | "filters" | "flag" | "globe" | "infinity" | "info-fill" | "info" | "link" | "list-search" | "list" | "loader" | "location" | "locked" | "login" | "logout" | "menu" | "minus" | "notification" | "overflow-menu-horizontal" | "overflow-menu-vertical" | "password" | "pin" | "plus" | "printer" | "question-fill" | "question" | "refresh" | "remove" | "sandglass" | "save" | "search" | "settings" | "shopping-cart" | "sort-date" | "star-fill" | "star" | "telegram" | "timer" | "tool" | "truck" | "unlocked" | "upload" | "user-avatar" | "user-group" | "visibility-off" | "visibility-on" | "vk" | "winner" | "workspace" | "youtube">;
155
+ default: undefined;
156
+ validator: (value: "add" | "alert-fill" | "alert" | "analog" | "arrow-down" | "arrow-left-bottom" | "arrow-left-top" | "arrow-left" | "arrow-right-bottom" | "arrow-right-top" | "arrow-right" | "arrow-up" | "arrows-vertical" | "calendar" | "card-bank" | "category" | "check-fill" | "check" | "chevron-down" | "chevron-left" | "chevron-right" | "chevron-up" | "chocolate-menu" | "clock" | "comment" | "company" | "compare" | "copy" | "data-cards" | "delete" | "directory" | "doc-download" | "doc" | "download" | "draggable" | "edit" | "enter" | "error-fill" | "error" | "external" | "facebook-fill" | "facebook" | "filters" | "flag" | "globe" | "infinity" | "info-fill" | "info" | "link" | "list-search" | "list" | "loader" | "location" | "locked" | "login" | "logout" | "menu" | "minus" | "notification" | "overflow-menu-horizontal" | "overflow-menu-vertical" | "password" | "pin" | "plus" | "printer" | "question-fill" | "question" | "refresh" | "remove" | "sandglass" | "save" | "search" | "settings" | "shopping-cart" | "sort-date" | "star-fill" | "star" | "telegram" | "timer" | "tool" | "truck" | "unlocked" | "upload" | "user-avatar" | "user-group" | "visibility-off" | "visibility-on" | "vk" | "winner" | "workspace" | "youtube") => boolean;
157
+ };
158
+ type: {
159
+ type: PropType<"number" | "password" | "text" | "email" | "tel" | "url">;
160
+ default: string;
161
+ validator: (value: "number" | "password" | "text" | "email" | "tel" | "url") => boolean;
162
+ };
163
+ placeholder: {
164
+ type: PropType<string>;
165
+ default: undefined;
166
+ };
167
+ counter: {
168
+ type: PropType<boolean>;
169
+ default: boolean;
170
+ };
171
+ limit: {
172
+ type: PropType<number>;
173
+ default: undefined;
174
+ };
175
+ clearable: {
176
+ type: PropType<boolean>;
177
+ default: boolean;
178
+ };
179
+ 'onClick:prependInner': {
180
+ type: PropType<(...args: any[]) => any>;
181
+ default: undefined;
182
+ };
183
+ 'onClick:appendInner': {
184
+ type: PropType<(...args: any[]) => any>;
185
+ default: undefined;
186
+ };
187
+ }, {
188
+ id: import("vue").ComputedRef<string>;
189
+ model: import("vue").Ref<any> & {
190
+ readonly externalValue: any;
191
+ };
192
+ fieldRef: import("vue").Ref<HTMLElement | undefined>;
193
+ textareaRef: import("vue").Ref<HTMLTextAreaElement | undefined>;
194
+ validationRef: import("vue").Ref<import("vue").DefineComponent<{
195
+ 'onClick:prepend': PropType<(...args: any[]) => any>;
196
+ 'onClick:append': PropType<(...args: any[]) => any>;
197
+ focused: {
198
+ type: PropType<boolean>;
199
+ default: boolean;
200
+ };
201
+ disabled: {
202
+ type: PropType<boolean>;
203
+ default: boolean;
204
+ };
205
+ error: {
206
+ type: PropType<boolean>;
207
+ default: boolean;
208
+ };
209
+ errorMessages: {
210
+ type: PropType<string | string[]>;
211
+ default: () => never[];
212
+ };
213
+ maxErrors: {
214
+ type: PropType<string | number>;
215
+ default: number;
216
+ };
217
+ name: {
218
+ type: PropType<string | undefined>;
219
+ default: undefined;
220
+ };
221
+ label: {
222
+ type: PropType<string | undefined>;
223
+ default: undefined;
224
+ };
225
+ readonly: {
226
+ type: PropType<boolean>;
227
+ default: boolean;
228
+ };
229
+ rules: {
230
+ type: PropType<import("../../composable").TValidationRule[]>;
231
+ default: () => never[];
232
+ };
233
+ modelValue: {
234
+ type: PropType<any>;
235
+ default: null;
236
+ };
237
+ validateOn: {
238
+ type: PropType<"input" | "blur" | "submit">;
239
+ default: string;
240
+ available: readonly ["blur", "input", "submit"];
241
+ validator: (value: "input" | "blur" | "submit") => boolean;
242
+ };
243
+ validationValue: {
244
+ type: PropType<any>;
245
+ default: undefined;
246
+ };
247
+ hideMessages: {
248
+ type: PropType<boolean>;
249
+ default: boolean;
250
+ };
251
+ prependIcon: {
252
+ type: PropType<"add" | "alert-fill" | "alert" | "analog" | "arrow-down" | "arrow-left-bottom" | "arrow-left-top" | "arrow-left" | "arrow-right-bottom" | "arrow-right-top" | "arrow-right" | "arrow-up" | "arrows-vertical" | "calendar" | "card-bank" | "category" | "check-fill" | "check" | "chevron-down" | "chevron-left" | "chevron-right" | "chevron-up" | "chocolate-menu" | "clock" | "comment" | "company" | "compare" | "copy" | "data-cards" | "delete" | "directory" | "doc-download" | "doc" | "download" | "draggable" | "edit" | "enter" | "error-fill" | "error" | "external" | "facebook-fill" | "facebook" | "filters" | "flag" | "globe" | "infinity" | "info-fill" | "info" | "link" | "list-search" | "list" | "loader" | "location" | "locked" | "login" | "logout" | "menu" | "minus" | "notification" | "overflow-menu-horizontal" | "overflow-menu-vertical" | "password" | "pin" | "plus" | "printer" | "question-fill" | "question" | "refresh" | "remove" | "sandglass" | "save" | "search" | "settings" | "shopping-cart" | "sort-date" | "star-fill" | "star" | "telegram" | "timer" | "tool" | "truck" | "unlocked" | "upload" | "user-avatar" | "user-group" | "visibility-off" | "visibility-on" | "vk" | "winner" | "workspace" | "youtube">;
253
+ default: undefined;
254
+ validator: (value: "add" | "alert-fill" | "alert" | "analog" | "arrow-down" | "arrow-left-bottom" | "arrow-left-top" | "arrow-left" | "arrow-right-bottom" | "arrow-right-top" | "arrow-right" | "arrow-up" | "arrows-vertical" | "calendar" | "card-bank" | "category" | "check-fill" | "check" | "chevron-down" | "chevron-left" | "chevron-right" | "chevron-up" | "chocolate-menu" | "clock" | "comment" | "company" | "compare" | "copy" | "data-cards" | "delete" | "directory" | "doc-download" | "doc" | "download" | "draggable" | "edit" | "enter" | "error-fill" | "error" | "external" | "facebook-fill" | "facebook" | "filters" | "flag" | "globe" | "infinity" | "info-fill" | "info" | "link" | "list-search" | "list" | "loader" | "location" | "locked" | "login" | "logout" | "menu" | "minus" | "notification" | "overflow-menu-horizontal" | "overflow-menu-vertical" | "password" | "pin" | "plus" | "printer" | "question-fill" | "question" | "refresh" | "remove" | "sandglass" | "save" | "search" | "settings" | "shopping-cart" | "sort-date" | "star-fill" | "star" | "telegram" | "timer" | "tool" | "truck" | "unlocked" | "upload" | "user-avatar" | "user-group" | "visibility-off" | "visibility-on" | "vk" | "winner" | "workspace" | "youtube") => boolean;
255
+ };
256
+ appendIcon: {
257
+ type: PropType<"add" | "alert-fill" | "alert" | "analog" | "arrow-down" | "arrow-left-bottom" | "arrow-left-top" | "arrow-left" | "arrow-right-bottom" | "arrow-right-top" | "arrow-right" | "arrow-up" | "arrows-vertical" | "calendar" | "card-bank" | "category" | "check-fill" | "check" | "chevron-down" | "chevron-left" | "chevron-right" | "chevron-up" | "chocolate-menu" | "clock" | "comment" | "company" | "compare" | "copy" | "data-cards" | "delete" | "directory" | "doc-download" | "doc" | "download" | "draggable" | "edit" | "enter" | "error-fill" | "error" | "external" | "facebook-fill" | "facebook" | "filters" | "flag" | "globe" | "infinity" | "info-fill" | "info" | "link" | "list-search" | "list" | "loader" | "location" | "locked" | "login" | "logout" | "menu" | "minus" | "notification" | "overflow-menu-horizontal" | "overflow-menu-vertical" | "password" | "pin" | "plus" | "printer" | "question-fill" | "question" | "refresh" | "remove" | "sandglass" | "save" | "search" | "settings" | "shopping-cart" | "sort-date" | "star-fill" | "star" | "telegram" | "timer" | "tool" | "truck" | "unlocked" | "upload" | "user-avatar" | "user-group" | "visibility-off" | "visibility-on" | "vk" | "winner" | "workspace" | "youtube">;
258
+ default: undefined;
259
+ validator: (value: "add" | "alert-fill" | "alert" | "analog" | "arrow-down" | "arrow-left-bottom" | "arrow-left-top" | "arrow-left" | "arrow-right-bottom" | "arrow-right-top" | "arrow-right" | "arrow-up" | "arrows-vertical" | "calendar" | "card-bank" | "category" | "check-fill" | "check" | "chevron-down" | "chevron-left" | "chevron-right" | "chevron-up" | "chocolate-menu" | "clock" | "comment" | "company" | "compare" | "copy" | "data-cards" | "delete" | "directory" | "doc-download" | "doc" | "download" | "draggable" | "edit" | "enter" | "error-fill" | "error" | "external" | "facebook-fill" | "facebook" | "filters" | "flag" | "globe" | "infinity" | "info-fill" | "info" | "link" | "list-search" | "list" | "loader" | "location" | "locked" | "login" | "logout" | "menu" | "minus" | "notification" | "overflow-menu-horizontal" | "overflow-menu-vertical" | "password" | "pin" | "plus" | "printer" | "question-fill" | "question" | "refresh" | "remove" | "sandglass" | "save" | "search" | "settings" | "shopping-cart" | "sort-date" | "star-fill" | "star" | "telegram" | "timer" | "tool" | "truck" | "unlocked" | "upload" | "user-avatar" | "user-group" | "visibility-off" | "visibility-on" | "vk" | "winner" | "workspace" | "youtube") => boolean;
260
+ };
261
+ id: {
262
+ type: PropType<string>;
263
+ default: undefined;
264
+ };
265
+ description: {
266
+ type: PropType<string>;
267
+ default: undefined;
268
+ };
269
+ value: {
270
+ type: PropType<any>;
271
+ default: null;
272
+ };
273
+ messages: {
274
+ type: PropType<string | string[]>;
275
+ default: () => never[];
276
+ };
277
+ persistentMessages: {
278
+ type: PropType<boolean>;
279
+ default: boolean;
280
+ };
281
+ }, {
282
+ /**
283
+ * Событие клика по иконке перед значением поля
284
+ */
285
+ isFocused: import("vue").Ref<boolean>;
286
+ hasPrepend: import("vue").ComputedRef<boolean>;
287
+ hasAppend: import("vue").ComputedRef<boolean>;
288
+ hasDefault: import("vue").ComputedRef<boolean>;
289
+ hasMessages: import("vue").ComputedRef<number | boolean>;
290
+ /**
291
+ * Событие клика по иконке после значения поля
292
+ */
293
+ slotProps: import("vue").ComputedRef<import("../../composable").IInputSlot>;
294
+ messagesId: import("vue").ComputedRef<string>;
295
+ messages: import("vue").ComputedRef<string | string[]>;
296
+ isValid: import("vue").ComputedRef<boolean | null>;
297
+ validationClasses: import("vue").ComputedRef<Record<string, boolean>>; /**
298
+ * Событие клика по иконке внутри элемента перед значением поля
299
+ */
300
+ focusClasses: import("vue").ComputedRef<Record<string, boolean>>;
301
+ reset: () => void;
302
+ resetValidation: () => void;
303
+ validate: () => Promise<string[]>;
304
+ handleClickPrepend: (event: MouseEvent) => void;
305
+ handleClickAppend: (event: MouseEvent) => void;
306
+ }, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, "update:modelValue"[], "update:modelValue", import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<{
307
+ 'onClick:prepend': PropType<(...args: any[]) => any>;
308
+ 'onClick:append': PropType<(...args: any[]) => any>;
309
+ focused: {
310
+ type: PropType<boolean>;
311
+ default: boolean;
312
+ };
313
+ disabled: {
314
+ type: PropType<boolean>;
315
+ default: boolean;
316
+ };
317
+ error: {
318
+ type: PropType<boolean>;
319
+ default: boolean;
320
+ };
321
+ errorMessages: {
322
+ type: PropType<string | string[]>;
323
+ default: () => never[];
324
+ };
325
+ maxErrors: {
326
+ type: PropType<string | number>;
327
+ default: number;
328
+ };
329
+ name: {
330
+ type: PropType<string | undefined>;
331
+ default: undefined;
332
+ };
333
+ label: {
334
+ type: PropType<string | undefined>;
335
+ default: undefined;
336
+ };
337
+ readonly: {
338
+ type: PropType<boolean>;
339
+ default: boolean;
340
+ };
341
+ rules: {
342
+ type: PropType<import("../../composable").TValidationRule[]>;
343
+ default: () => never[];
344
+ };
345
+ modelValue: {
346
+ type: PropType<any>;
347
+ default: null;
348
+ };
349
+ validateOn: {
350
+ type: PropType<"input" | "blur" | "submit">;
351
+ default: string;
352
+ available: readonly ["blur", "input", "submit"];
353
+ validator: (value: "input" | "blur" | "submit") => boolean;
354
+ };
355
+ validationValue: {
356
+ type: PropType<any>;
357
+ default: undefined;
358
+ };
359
+ hideMessages: {
360
+ type: PropType<boolean>;
361
+ default: boolean;
362
+ };
363
+ prependIcon: {
364
+ type: PropType<"add" | "alert-fill" | "alert" | "analog" | "arrow-down" | "arrow-left-bottom" | "arrow-left-top" | "arrow-left" | "arrow-right-bottom" | "arrow-right-top" | "arrow-right" | "arrow-up" | "arrows-vertical" | "calendar" | "card-bank" | "category" | "check-fill" | "check" | "chevron-down" | "chevron-left" | "chevron-right" | "chevron-up" | "chocolate-menu" | "clock" | "comment" | "company" | "compare" | "copy" | "data-cards" | "delete" | "directory" | "doc-download" | "doc" | "download" | "draggable" | "edit" | "enter" | "error-fill" | "error" | "external" | "facebook-fill" | "facebook" | "filters" | "flag" | "globe" | "infinity" | "info-fill" | "info" | "link" | "list-search" | "list" | "loader" | "location" | "locked" | "login" | "logout" | "menu" | "minus" | "notification" | "overflow-menu-horizontal" | "overflow-menu-vertical" | "password" | "pin" | "plus" | "printer" | "question-fill" | "question" | "refresh" | "remove" | "sandglass" | "save" | "search" | "settings" | "shopping-cart" | "sort-date" | "star-fill" | "star" | "telegram" | "timer" | "tool" | "truck" | "unlocked" | "upload" | "user-avatar" | "user-group" | "visibility-off" | "visibility-on" | "vk" | "winner" | "workspace" | "youtube">;
365
+ default: undefined;
366
+ validator: (value: "add" | "alert-fill" | "alert" | "analog" | "arrow-down" | "arrow-left-bottom" | "arrow-left-top" | "arrow-left" | "arrow-right-bottom" | "arrow-right-top" | "arrow-right" | "arrow-up" | "arrows-vertical" | "calendar" | "card-bank" | "category" | "check-fill" | "check" | "chevron-down" | "chevron-left" | "chevron-right" | "chevron-up" | "chocolate-menu" | "clock" | "comment" | "company" | "compare" | "copy" | "data-cards" | "delete" | "directory" | "doc-download" | "doc" | "download" | "draggable" | "edit" | "enter" | "error-fill" | "error" | "external" | "facebook-fill" | "facebook" | "filters" | "flag" | "globe" | "infinity" | "info-fill" | "info" | "link" | "list-search" | "list" | "loader" | "location" | "locked" | "login" | "logout" | "menu" | "minus" | "notification" | "overflow-menu-horizontal" | "overflow-menu-vertical" | "password" | "pin" | "plus" | "printer" | "question-fill" | "question" | "refresh" | "remove" | "sandglass" | "save" | "search" | "settings" | "shopping-cart" | "sort-date" | "star-fill" | "star" | "telegram" | "timer" | "tool" | "truck" | "unlocked" | "upload" | "user-avatar" | "user-group" | "visibility-off" | "visibility-on" | "vk" | "winner" | "workspace" | "youtube") => boolean;
367
+ };
368
+ appendIcon: {
369
+ type: PropType<"add" | "alert-fill" | "alert" | "analog" | "arrow-down" | "arrow-left-bottom" | "arrow-left-top" | "arrow-left" | "arrow-right-bottom" | "arrow-right-top" | "arrow-right" | "arrow-up" | "arrows-vertical" | "calendar" | "card-bank" | "category" | "check-fill" | "check" | "chevron-down" | "chevron-left" | "chevron-right" | "chevron-up" | "chocolate-menu" | "clock" | "comment" | "company" | "compare" | "copy" | "data-cards" | "delete" | "directory" | "doc-download" | "doc" | "download" | "draggable" | "edit" | "enter" | "error-fill" | "error" | "external" | "facebook-fill" | "facebook" | "filters" | "flag" | "globe" | "infinity" | "info-fill" | "info" | "link" | "list-search" | "list" | "loader" | "location" | "locked" | "login" | "logout" | "menu" | "minus" | "notification" | "overflow-menu-horizontal" | "overflow-menu-vertical" | "password" | "pin" | "plus" | "printer" | "question-fill" | "question" | "refresh" | "remove" | "sandglass" | "save" | "search" | "settings" | "shopping-cart" | "sort-date" | "star-fill" | "star" | "telegram" | "timer" | "tool" | "truck" | "unlocked" | "upload" | "user-avatar" | "user-group" | "visibility-off" | "visibility-on" | "vk" | "winner" | "workspace" | "youtube">;
370
+ default: undefined;
371
+ validator: (value: "add" | "alert-fill" | "alert" | "analog" | "arrow-down" | "arrow-left-bottom" | "arrow-left-top" | "arrow-left" | "arrow-right-bottom" | "arrow-right-top" | "arrow-right" | "arrow-up" | "arrows-vertical" | "calendar" | "card-bank" | "category" | "check-fill" | "check" | "chevron-down" | "chevron-left" | "chevron-right" | "chevron-up" | "chocolate-menu" | "clock" | "comment" | "company" | "compare" | "copy" | "data-cards" | "delete" | "directory" | "doc-download" | "doc" | "download" | "draggable" | "edit" | "enter" | "error-fill" | "error" | "external" | "facebook-fill" | "facebook" | "filters" | "flag" | "globe" | "infinity" | "info-fill" | "info" | "link" | "list-search" | "list" | "loader" | "location" | "locked" | "login" | "logout" | "menu" | "minus" | "notification" | "overflow-menu-horizontal" | "overflow-menu-vertical" | "password" | "pin" | "plus" | "printer" | "question-fill" | "question" | "refresh" | "remove" | "sandglass" | "save" | "search" | "settings" | "shopping-cart" | "sort-date" | "star-fill" | "star" | "telegram" | "timer" | "tool" | "truck" | "unlocked" | "upload" | "user-avatar" | "user-group" | "visibility-off" | "visibility-on" | "vk" | "winner" | "workspace" | "youtube") => boolean;
372
+ };
373
+ id: {
374
+ type: PropType<string>;
375
+ default: undefined;
376
+ };
377
+ description: {
378
+ type: PropType<string>;
379
+ default: undefined;
380
+ };
381
+ value: {
382
+ type: PropType<any>;
383
+ default: null;
384
+ };
385
+ messages: {
386
+ type: PropType<string | string[]>;
387
+ default: () => never[];
388
+ };
389
+ persistentMessages: {
390
+ type: PropType<boolean>;
391
+ default: boolean;
392
+ };
393
+ }>> & {
394
+ "onUpdate:modelValue"?: ((...args: any[]) => any) | undefined;
395
+ }, {
396
+ name: string | undefined;
397
+ description: string;
398
+ error: boolean;
399
+ prependIcon: "add" | "alert-fill" | "alert" | "analog" | "arrow-down" | "arrow-left-bottom" | "arrow-left-top" | "arrow-left" | "arrow-right-bottom" | "arrow-right-top" | "arrow-right" | "arrow-up" | "arrows-vertical" | "calendar" | "card-bank" | "category" | "check-fill" | "check" | "chevron-down" | "chevron-left" | "chevron-right" | "chevron-up" | "chocolate-menu" | "clock" | "comment" | "company" | "compare" | "copy" | "data-cards" | "delete" | "directory" | "doc-download" | "doc" | "download" | "draggable" | "edit" | "enter" | "error-fill" | "error" | "external" | "facebook-fill" | "facebook" | "filters" | "flag" | "globe" | "infinity" | "info-fill" | "info" | "link" | "list-search" | "list" | "loader" | "location" | "locked" | "login" | "logout" | "menu" | "minus" | "notification" | "overflow-menu-horizontal" | "overflow-menu-vertical" | "password" | "pin" | "plus" | "printer" | "question-fill" | "question" | "refresh" | "remove" | "sandglass" | "save" | "search" | "settings" | "shopping-cart" | "sort-date" | "star-fill" | "star" | "telegram" | "timer" | "tool" | "truck" | "unlocked" | "upload" | "user-avatar" | "user-group" | "visibility-off" | "visibility-on" | "vk" | "winner" | "workspace" | "youtube";
400
+ appendIcon: "add" | "alert-fill" | "alert" | "analog" | "arrow-down" | "arrow-left-bottom" | "arrow-left-top" | "arrow-left" | "arrow-right-bottom" | "arrow-right-top" | "arrow-right" | "arrow-up" | "arrows-vertical" | "calendar" | "card-bank" | "category" | "check-fill" | "check" | "chevron-down" | "chevron-left" | "chevron-right" | "chevron-up" | "chocolate-menu" | "clock" | "comment" | "company" | "compare" | "copy" | "data-cards" | "delete" | "directory" | "doc-download" | "doc" | "download" | "draggable" | "edit" | "enter" | "error-fill" | "error" | "external" | "facebook-fill" | "facebook" | "filters" | "flag" | "globe" | "infinity" | "info-fill" | "info" | "link" | "list-search" | "list" | "loader" | "location" | "locked" | "login" | "logout" | "menu" | "minus" | "notification" | "overflow-menu-horizontal" | "overflow-menu-vertical" | "password" | "pin" | "plus" | "printer" | "question-fill" | "question" | "refresh" | "remove" | "sandglass" | "save" | "search" | "settings" | "shopping-cart" | "sort-date" | "star-fill" | "star" | "telegram" | "timer" | "tool" | "truck" | "unlocked" | "upload" | "user-avatar" | "user-group" | "visibility-off" | "visibility-on" | "vk" | "winner" | "workspace" | "youtube";
401
+ disabled: boolean;
402
+ messages: string | string[];
403
+ id: string;
404
+ label: string | undefined;
405
+ value: any;
406
+ persistentMessages: boolean;
407
+ errorMessages: string | string[];
408
+ maxErrors: string | number;
409
+ readonly: boolean;
410
+ rules: import("../../composable").TValidationRule[];
411
+ modelValue: any;
412
+ validateOn: "input" | "blur" | "submit";
413
+ validationValue: any;
414
+ hideMessages: boolean;
415
+ focused: boolean;
416
+ }> | undefined>;
417
+ sizerRef: import("vue").Ref<HTMLTextAreaElement | undefined>;
418
+ isFocused: import("vue").Ref<boolean>;
419
+ rootAttrs: import("vue").Ref<{}>;
420
+ inputAttrs: import("vue").Ref<{}>;
421
+ inputProps: import("vue").Ref<{}>;
422
+ hasLabel: import("vue").ComputedRef<boolean>;
423
+ hasDescription: import("vue").ComputedRef<boolean>;
424
+ hasPrepend: import("vue").ComputedRef<boolean>;
425
+ hasAppend: import("vue").ComputedRef<boolean>;
426
+ hasPrependInnerIcon: import("vue").ComputedRef<boolean>;
427
+ hasAppendInnerIcon: import("vue").ComputedRef<boolean>;
428
+ hasLoading: import("vue").ComputedRef<boolean>;
429
+ hasClear: import("vue").ComputedRef<boolean>;
430
+ counterValue: import("vue").ComputedRef<any>;
431
+ iconClasses: import("vue").ComputedRef<Record<string, boolean>>;
432
+ textareaClasses: import("vue").ComputedRef<{
433
+ 'cds-text-area--has-prefix': boolean;
434
+ 'cds-text-area--has-suffix': boolean;
435
+ 'cds-text-area--disabled-resize': boolean;
436
+ 'cds-text-area--auto-grow': boolean;
437
+ }>;
438
+ fieldClasses: import("vue").ComputedRef<Record<string, boolean>>;
439
+ loadingClasses: import("vue").ComputedRef<string | undefined>;
440
+ textareaHeight: import("vue").Ref<string>;
441
+ onBlur: () => void;
442
+ onFocus: () => void;
443
+ onInput: (event: Event) => void;
444
+ onClear: (event: Event) => void;
445
+ handleClickPrependInner: (event: MouseEvent) => void;
446
+ handleClickAppendInner: (event: MouseEvent) => void;
447
+ }, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, ("update:modelValue" | "update:focused" | "click:clear" | "click:prepend" | "click:append" | "click:prependInner" | "click:appendInner")[], "update:modelValue" | "update:focused" | "click:clear" | "click:prepend" | "click:append" | "click:prependInner" | "click:appendInner", import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<{
448
+ /**
449
+ * Автоматическое увеличение высоты текстовой области
450
+ */
451
+ autoGrow: {
452
+ type: PropType<boolean>;
453
+ default: boolean;
454
+ };
455
+ /**
456
+ * Количество строк в текстовой области
457
+ */
458
+ rows: {
459
+ type: PropType<string | number>;
460
+ default: number;
461
+ validator: (value: any) => boolean;
462
+ };
463
+ /**
464
+ * Максимальное количество строк в текстовой области
465
+ */
466
+ maxRows: {
467
+ type: PropType<string | number>;
468
+ default: number;
469
+ validator: (value: any) => boolean;
470
+ };
471
+ /**
472
+ * Отключение возможности изменения размера текстовой области
473
+ */
474
+ noResize: {
475
+ type: PropType<boolean>;
476
+ default: boolean;
477
+ };
478
+ loading: {
479
+ type: PropType<boolean>;
480
+ default: boolean;
481
+ };
482
+ focused: {
483
+ type: PropType<boolean>;
484
+ default: boolean;
485
+ };
486
+ 'onClick:prepend': {
487
+ type: PropType<(...args: any[]) => any>;
488
+ default: undefined; /**
489
+ * Максимальное количество строк в текстовой области
490
+ */
491
+ };
492
+ 'onClick:append': {
493
+ type: PropType<(...args: any[]) => any>;
494
+ default: undefined;
495
+ };
496
+ prependIcon: {
497
+ type: PropType<"add" | "alert-fill" | "alert" | "analog" | "arrow-down" | "arrow-left-bottom" | "arrow-left-top" | "arrow-left" | "arrow-right-bottom" | "arrow-right-top" | "arrow-right" | "arrow-up" | "arrows-vertical" | "calendar" | "card-bank" | "category" | "check-fill" | "check" | "chevron-down" | "chevron-left" | "chevron-right" | "chevron-up" | "chocolate-menu" | "clock" | "comment" | "company" | "compare" | "copy" | "data-cards" | "delete" | "directory" | "doc-download" | "doc" | "download" | "draggable" | "edit" | "enter" | "error-fill" | "error" | "external" | "facebook-fill" | "facebook" | "filters" | "flag" | "globe" | "infinity" | "info-fill" | "info" | "link" | "list-search" | "list" | "loader" | "location" | "locked" | "login" | "logout" | "menu" | "minus" | "notification" | "overflow-menu-horizontal" | "overflow-menu-vertical" | "password" | "pin" | "plus" | "printer" | "question-fill" | "question" | "refresh" | "remove" | "sandglass" | "save" | "search" | "settings" | "shopping-cart" | "sort-date" | "star-fill" | "star" | "telegram" | "timer" | "tool" | "truck" | "unlocked" | "upload" | "user-avatar" | "user-group" | "visibility-off" | "visibility-on" | "vk" | "winner" | "workspace" | "youtube">;
498
+ default: undefined;
499
+ validator: (value: "add" | "alert-fill" | "alert" | "analog" | "arrow-down" | "arrow-left-bottom" | "arrow-left-top" | "arrow-left" | "arrow-right-bottom" | "arrow-right-top" | "arrow-right" | "arrow-up" | "arrows-vertical" | "calendar" | "card-bank" | "category" | "check-fill" | "check" | "chevron-down" | "chevron-left" | "chevron-right" | "chevron-up" | "chocolate-menu" | "clock" | "comment" | "company" | "compare" | "copy" | "data-cards" | "delete" | "directory" | "doc-download" | "doc" | "download" | "draggable" | "edit" | "enter" | "error-fill" | "error" | "external" | "facebook-fill" | "facebook" | "filters" | "flag" | "globe" | "infinity" | "info-fill" | "info" | "link" | "list-search" | "list" | "loader" | "location" | "locked" | "login" | "logout" | "menu" | "minus" | "notification" | "overflow-menu-horizontal" | "overflow-menu-vertical" | "password" | "pin" | "plus" | "printer" | "question-fill" | "question" | "refresh" | "remove" | "sandglass" | "save" | "search" | "settings" | "shopping-cart" | "sort-date" | "star-fill" | "star" | "telegram" | "timer" | "tool" | "truck" | "unlocked" | "upload" | "user-avatar" | "user-group" | "visibility-off" | "visibility-on" | "vk" | "winner" | "workspace" | "youtube") => boolean;
500
+ };
501
+ appendIcon: {
502
+ type: PropType<"add" | "alert-fill" | "alert" | "analog" | "arrow-down" | "arrow-left-bottom" | "arrow-left-top" | "arrow-left" | "arrow-right-bottom" | "arrow-right-top" | "arrow-right" | "arrow-up" | "arrows-vertical" | "calendar" | "card-bank" | "category" | "check-fill" | "check" | "chevron-down" | "chevron-left" | "chevron-right" | "chevron-up" | "chocolate-menu" | "clock" | "comment" | "company" | "compare" | "copy" | "data-cards" | "delete" | "directory" | "doc-download" | "doc" | "download" | "draggable" | "edit" | "enter" | "error-fill" | "error" | "external" | "facebook-fill" | "facebook" | "filters" | "flag" | "globe" | "infinity" | "info-fill" | "info" | "link" | "list-search" | "list" | "loader" | "location" | "locked" | "login" | "logout" | "menu" | "minus" | "notification" | "overflow-menu-horizontal" | "overflow-menu-vertical" | "password" | "pin" | "plus" | "printer" | "question-fill" | "question" | "refresh" | "remove" | "sandglass" | "save" | "search" | "settings" | "shopping-cart" | "sort-date" | "star-fill" | "star" | "telegram" | "timer" | "tool" | "truck" | "unlocked" | "upload" | "user-avatar" | "user-group" | "visibility-off" | "visibility-on" | "vk" | "winner" | "workspace" | "youtube">;
503
+ default: undefined;
504
+ validator: (value: "add" | "alert-fill" | "alert" | "analog" | "arrow-down" | "arrow-left-bottom" | "arrow-left-top" | "arrow-left" | "arrow-right-bottom" | "arrow-right-top" | "arrow-right" | "arrow-up" | "arrows-vertical" | "calendar" | "card-bank" | "category" | "check-fill" | "check" | "chevron-down" | "chevron-left" | "chevron-right" | "chevron-up" | "chocolate-menu" | "clock" | "comment" | "company" | "compare" | "copy" | "data-cards" | "delete" | "directory" | "doc-download" | "doc" | "download" | "draggable" | "edit" | "enter" | "error-fill" | "error" | "external" | "facebook-fill" | "facebook" | "filters" | "flag" | "globe" | "infinity" | "info-fill" | "info" | "link" | "list-search" | "list" | "loader" | "location" | "locked" | "login" | "logout" | "menu" | "minus" | "notification" | "overflow-menu-horizontal" | "overflow-menu-vertical" | "password" | "pin" | "plus" | "printer" | "question-fill" | "question" | "refresh" | "remove" | "sandglass" | "save" | "search" | "settings" | "shopping-cart" | "sort-date" | "star-fill" | "star" | "telegram" | "timer" | "tool" | "truck" | "unlocked" | "upload" | "user-avatar" | "user-group" | "visibility-off" | "visibility-on" | "vk" | "winner" | "workspace" | "youtube") => boolean;
505
+ };
506
+ disabled: {
507
+ type: PropType<boolean>;
508
+ default: boolean;
509
+ };
510
+ error: {
511
+ type: PropType<boolean>;
512
+ default: boolean;
513
+ };
514
+ errorMessages: {
515
+ type: PropType<string | string[]>;
516
+ default: () => never[];
517
+ };
518
+ maxErrors: {
519
+ type: PropType<string | number>;
520
+ default: number;
521
+ };
522
+ name: {
523
+ type: PropType<string | undefined>;
524
+ default: undefined;
525
+ };
526
+ label: {
527
+ type: PropType<string | undefined>;
528
+ default: undefined;
529
+ };
530
+ readonly: {
531
+ type: PropType<boolean>;
532
+ default: boolean;
533
+ };
534
+ rules: {
535
+ type: PropType<import("../../composable").TValidationRule[]>;
536
+ default: () => never[];
537
+ };
538
+ modelValue: {
539
+ type: PropType<any>;
540
+ default: null;
541
+ };
542
+ validateOn: {
543
+ type: PropType<"input" | "blur" | "submit">;
544
+ default: string;
545
+ available: readonly ["blur", "input", "submit"];
546
+ validator: (value: "input" | "blur" | "submit") => boolean;
547
+ };
548
+ validationValue: {
549
+ type: PropType<any>;
550
+ default: undefined;
551
+ };
552
+ hideMessages: {
553
+ type: PropType<boolean>;
554
+ default: boolean;
555
+ };
556
+ id: {
557
+ type: PropType<string>;
558
+ default: undefined;
559
+ };
560
+ description: {
561
+ type: PropType<string>;
562
+ default: undefined;
563
+ };
564
+ value: {
565
+ type: PropType<any>;
566
+ default: null;
567
+ };
568
+ messages: {
569
+ type: PropType<string | string[]>;
570
+ default: () => never[];
571
+ };
572
+ persistentMessages: {
573
+ type: PropType<boolean>;
574
+ default: boolean;
575
+ };
576
+ active: {
577
+ type: PropType<boolean>;
578
+ default: boolean;
579
+ };
580
+ autofocus: {
581
+ type: PropType<boolean>;
582
+ default: boolean;
583
+ };
584
+ prefix: {
585
+ type: PropType<string>;
586
+ default: undefined;
587
+ };
588
+ suffix: {
589
+ type: PropType<string>;
590
+ default: undefined;
591
+ };
592
+ prependInnerIcon: {
593
+ type: PropType<"add" | "alert-fill" | "alert" | "analog" | "arrow-down" | "arrow-left-bottom" | "arrow-left-top" | "arrow-left" | "arrow-right-bottom" | "arrow-right-top" | "arrow-right" | "arrow-up" | "arrows-vertical" | "calendar" | "card-bank" | "category" | "check-fill" | "check" | "chevron-down" | "chevron-left" | "chevron-right" | "chevron-up" | "chocolate-menu" | "clock" | "comment" | "company" | "compare" | "copy" | "data-cards" | "delete" | "directory" | "doc-download" | "doc" | "download" | "draggable" | "edit" | "enter" | "error-fill" | "error" | "external" | "facebook-fill" | "facebook" | "filters" | "flag" | "globe" | "infinity" | "info-fill" | "info" | "link" | "list-search" | "list" | "loader" | "location" | "locked" | "login" | "logout" | "menu" | "minus" | "notification" | "overflow-menu-horizontal" | "overflow-menu-vertical" | "password" | "pin" | "plus" | "printer" | "question-fill" | "question" | "refresh" | "remove" | "sandglass" | "save" | "search" | "settings" | "shopping-cart" | "sort-date" | "star-fill" | "star" | "telegram" | "timer" | "tool" | "truck" | "unlocked" | "upload" | "user-avatar" | "user-group" | "visibility-off" | "visibility-on" | "vk" | "winner" | "workspace" | "youtube">;
594
+ default: undefined;
595
+ validator: (value: "add" | "alert-fill" | "alert" | "analog" | "arrow-down" | "arrow-left-bottom" | "arrow-left-top" | "arrow-left" | "arrow-right-bottom" | "arrow-right-top" | "arrow-right" | "arrow-up" | "arrows-vertical" | "calendar" | "card-bank" | "category" | "check-fill" | "check" | "chevron-down" | "chevron-left" | "chevron-right" | "chevron-up" | "chocolate-menu" | "clock" | "comment" | "company" | "compare" | "copy" | "data-cards" | "delete" | "directory" | "doc-download" | "doc" | "download" | "draggable" | "edit" | "enter" | "error-fill" | "error" | "external" | "facebook-fill" | "facebook" | "filters" | "flag" | "globe" | "infinity" | "info-fill" | "info" | "link" | "list-search" | "list" | "loader" | "location" | "locked" | "login" | "logout" | "menu" | "minus" | "notification" | "overflow-menu-horizontal" | "overflow-menu-vertical" | "password" | "pin" | "plus" | "printer" | "question-fill" | "question" | "refresh" | "remove" | "sandglass" | "save" | "search" | "settings" | "shopping-cart" | "sort-date" | "star-fill" | "star" | "telegram" | "timer" | "tool" | "truck" | "unlocked" | "upload" | "user-avatar" | "user-group" | "visibility-off" | "visibility-on" | "vk" | "winner" | "workspace" | "youtube") => boolean;
596
+ };
597
+ appendInnerIcon: {
598
+ type: PropType<"add" | "alert-fill" | "alert" | "analog" | "arrow-down" | "arrow-left-bottom" | "arrow-left-top" | "arrow-left" | "arrow-right-bottom" | "arrow-right-top" | "arrow-right" | "arrow-up" | "arrows-vertical" | "calendar" | "card-bank" | "category" | "check-fill" | "check" | "chevron-down" | "chevron-left" | "chevron-right" | "chevron-up" | "chocolate-menu" | "clock" | "comment" | "company" | "compare" | "copy" | "data-cards" | "delete" | "directory" | "doc-download" | "doc" | "download" | "draggable" | "edit" | "enter" | "error-fill" | "error" | "external" | "facebook-fill" | "facebook" | "filters" | "flag" | "globe" | "infinity" | "info-fill" | "info" | "link" | "list-search" | "list" | "loader" | "location" | "locked" | "login" | "logout" | "menu" | "minus" | "notification" | "overflow-menu-horizontal" | "overflow-menu-vertical" | "password" | "pin" | "plus" | "printer" | "question-fill" | "question" | "refresh" | "remove" | "sandglass" | "save" | "search" | "settings" | "shopping-cart" | "sort-date" | "star-fill" | "star" | "telegram" | "timer" | "tool" | "truck" | "unlocked" | "upload" | "user-avatar" | "user-group" | "visibility-off" | "visibility-on" | "vk" | "winner" | "workspace" | "youtube">;
599
+ default: undefined;
600
+ validator: (value: "add" | "alert-fill" | "alert" | "analog" | "arrow-down" | "arrow-left-bottom" | "arrow-left-top" | "arrow-left" | "arrow-right-bottom" | "arrow-right-top" | "arrow-right" | "arrow-up" | "arrows-vertical" | "calendar" | "card-bank" | "category" | "check-fill" | "check" | "chevron-down" | "chevron-left" | "chevron-right" | "chevron-up" | "chocolate-menu" | "clock" | "comment" | "company" | "compare" | "copy" | "data-cards" | "delete" | "directory" | "doc-download" | "doc" | "download" | "draggable" | "edit" | "enter" | "error-fill" | "error" | "external" | "facebook-fill" | "facebook" | "filters" | "flag" | "globe" | "infinity" | "info-fill" | "info" | "link" | "list-search" | "list" | "loader" | "location" | "locked" | "login" | "logout" | "menu" | "minus" | "notification" | "overflow-menu-horizontal" | "overflow-menu-vertical" | "password" | "pin" | "plus" | "printer" | "question-fill" | "question" | "refresh" | "remove" | "sandglass" | "save" | "search" | "settings" | "shopping-cart" | "sort-date" | "star-fill" | "star" | "telegram" | "timer" | "tool" | "truck" | "unlocked" | "upload" | "user-avatar" | "user-group" | "visibility-off" | "visibility-on" | "vk" | "winner" | "workspace" | "youtube") => boolean;
601
+ };
602
+ type: {
603
+ type: PropType<"number" | "password" | "text" | "email" | "tel" | "url">;
604
+ default: string;
605
+ validator: (value: "number" | "password" | "text" | "email" | "tel" | "url") => boolean;
606
+ };
607
+ placeholder: {
608
+ type: PropType<string>;
609
+ default: undefined;
610
+ };
611
+ counter: {
612
+ type: PropType<boolean>;
613
+ default: boolean;
614
+ };
615
+ limit: {
616
+ type: PropType<number>;
617
+ default: undefined;
618
+ };
619
+ clearable: {
620
+ type: PropType<boolean>;
621
+ default: boolean;
622
+ };
623
+ 'onClick:prependInner': {
624
+ type: PropType<(...args: any[]) => any>;
625
+ default: undefined;
626
+ };
627
+ 'onClick:appendInner': {
628
+ type: PropType<(...args: any[]) => any>;
629
+ default: undefined;
630
+ };
631
+ }>> & {
632
+ "onUpdate:modelValue"?: ((...args: any[]) => any) | undefined;
633
+ "onClick:prepend"?: ((...args: any[]) => any) | undefined;
634
+ "onClick:append"?: ((...args: any[]) => any) | undefined;
635
+ "onUpdate:focused"?: ((...args: any[]) => any) | undefined;
636
+ "onClick:prependInner"?: ((...args: any[]) => any) | undefined;
637
+ "onClick:appendInner"?: ((...args: any[]) => any) | undefined;
638
+ "onClick:clear"?: ((...args: any[]) => any) | undefined;
639
+ }, {
640
+ name: string | undefined;
641
+ type: "number" | "password" | "text" | "email" | "tel" | "url";
642
+ description: string;
643
+ error: boolean;
644
+ prependIcon: "add" | "alert-fill" | "alert" | "analog" | "arrow-down" | "arrow-left-bottom" | "arrow-left-top" | "arrow-left" | "arrow-right-bottom" | "arrow-right-top" | "arrow-right" | "arrow-up" | "arrows-vertical" | "calendar" | "card-bank" | "category" | "check-fill" | "check" | "chevron-down" | "chevron-left" | "chevron-right" | "chevron-up" | "chocolate-menu" | "clock" | "comment" | "company" | "compare" | "copy" | "data-cards" | "delete" | "directory" | "doc-download" | "doc" | "download" | "draggable" | "edit" | "enter" | "error-fill" | "error" | "external" | "facebook-fill" | "facebook" | "filters" | "flag" | "globe" | "infinity" | "info-fill" | "info" | "link" | "list-search" | "list" | "loader" | "location" | "locked" | "login" | "logout" | "menu" | "minus" | "notification" | "overflow-menu-horizontal" | "overflow-menu-vertical" | "password" | "pin" | "plus" | "printer" | "question-fill" | "question" | "refresh" | "remove" | "sandglass" | "save" | "search" | "settings" | "shopping-cart" | "sort-date" | "star-fill" | "star" | "telegram" | "timer" | "tool" | "truck" | "unlocked" | "upload" | "user-avatar" | "user-group" | "visibility-off" | "visibility-on" | "vk" | "winner" | "workspace" | "youtube";
645
+ appendIcon: "add" | "alert-fill" | "alert" | "analog" | "arrow-down" | "arrow-left-bottom" | "arrow-left-top" | "arrow-left" | "arrow-right-bottom" | "arrow-right-top" | "arrow-right" | "arrow-up" | "arrows-vertical" | "calendar" | "card-bank" | "category" | "check-fill" | "check" | "chevron-down" | "chevron-left" | "chevron-right" | "chevron-up" | "chocolate-menu" | "clock" | "comment" | "company" | "compare" | "copy" | "data-cards" | "delete" | "directory" | "doc-download" | "doc" | "download" | "draggable" | "edit" | "enter" | "error-fill" | "error" | "external" | "facebook-fill" | "facebook" | "filters" | "flag" | "globe" | "infinity" | "info-fill" | "info" | "link" | "list-search" | "list" | "loader" | "location" | "locked" | "login" | "logout" | "menu" | "minus" | "notification" | "overflow-menu-horizontal" | "overflow-menu-vertical" | "password" | "pin" | "plus" | "printer" | "question-fill" | "question" | "refresh" | "remove" | "sandglass" | "save" | "search" | "settings" | "shopping-cart" | "sort-date" | "star-fill" | "star" | "telegram" | "timer" | "tool" | "truck" | "unlocked" | "upload" | "user-avatar" | "user-group" | "visibility-off" | "visibility-on" | "vk" | "winner" | "workspace" | "youtube";
646
+ disabled: boolean;
647
+ loading: boolean;
648
+ messages: string | string[];
649
+ active: boolean;
650
+ id: string;
651
+ label: string | undefined;
652
+ value: any;
653
+ persistentMessages: boolean;
654
+ errorMessages: string | string[];
655
+ maxErrors: string | number;
656
+ readonly: boolean;
657
+ rules: import("../../composable").TValidationRule[];
658
+ modelValue: any;
659
+ validateOn: "input" | "blur" | "submit";
660
+ validationValue: any;
661
+ hideMessages: boolean;
662
+ focused: boolean;
663
+ 'onClick:prepend': (...args: any[]) => any;
664
+ 'onClick:append': (...args: any[]) => any;
665
+ prefix: string;
666
+ suffix: string;
667
+ autofocus: boolean;
668
+ prependInnerIcon: "add" | "alert-fill" | "alert" | "analog" | "arrow-down" | "arrow-left-bottom" | "arrow-left-top" | "arrow-left" | "arrow-right-bottom" | "arrow-right-top" | "arrow-right" | "arrow-up" | "arrows-vertical" | "calendar" | "card-bank" | "category" | "check-fill" | "check" | "chevron-down" | "chevron-left" | "chevron-right" | "chevron-up" | "chocolate-menu" | "clock" | "comment" | "company" | "compare" | "copy" | "data-cards" | "delete" | "directory" | "doc-download" | "doc" | "download" | "draggable" | "edit" | "enter" | "error-fill" | "error" | "external" | "facebook-fill" | "facebook" | "filters" | "flag" | "globe" | "infinity" | "info-fill" | "info" | "link" | "list-search" | "list" | "loader" | "location" | "locked" | "login" | "logout" | "menu" | "minus" | "notification" | "overflow-menu-horizontal" | "overflow-menu-vertical" | "password" | "pin" | "plus" | "printer" | "question-fill" | "question" | "refresh" | "remove" | "sandglass" | "save" | "search" | "settings" | "shopping-cart" | "sort-date" | "star-fill" | "star" | "telegram" | "timer" | "tool" | "truck" | "unlocked" | "upload" | "user-avatar" | "user-group" | "visibility-off" | "visibility-on" | "vk" | "winner" | "workspace" | "youtube";
669
+ appendInnerIcon: "add" | "alert-fill" | "alert" | "analog" | "arrow-down" | "arrow-left-bottom" | "arrow-left-top" | "arrow-left" | "arrow-right-bottom" | "arrow-right-top" | "arrow-right" | "arrow-up" | "arrows-vertical" | "calendar" | "card-bank" | "category" | "check-fill" | "check" | "chevron-down" | "chevron-left" | "chevron-right" | "chevron-up" | "chocolate-menu" | "clock" | "comment" | "company" | "compare" | "copy" | "data-cards" | "delete" | "directory" | "doc-download" | "doc" | "download" | "draggable" | "edit" | "enter" | "error-fill" | "error" | "external" | "facebook-fill" | "facebook" | "filters" | "flag" | "globe" | "infinity" | "info-fill" | "info" | "link" | "list-search" | "list" | "loader" | "location" | "locked" | "login" | "logout" | "menu" | "minus" | "notification" | "overflow-menu-horizontal" | "overflow-menu-vertical" | "password" | "pin" | "plus" | "printer" | "question-fill" | "question" | "refresh" | "remove" | "sandglass" | "save" | "search" | "settings" | "shopping-cart" | "sort-date" | "star-fill" | "star" | "telegram" | "timer" | "tool" | "truck" | "unlocked" | "upload" | "user-avatar" | "user-group" | "visibility-off" | "visibility-on" | "vk" | "winner" | "workspace" | "youtube";
670
+ placeholder: string;
671
+ counter: boolean;
672
+ limit: number;
673
+ clearable: boolean;
674
+ 'onClick:prependInner': (...args: any[]) => any;
675
+ 'onClick:appendInner': (...args: any[]) => any;
676
+ autoGrow: boolean;
677
+ rows: string | number;
678
+ maxRows: string | number;
679
+ noResize: boolean;
680
+ }>;
681
+ export default _sfc_main;