@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,664 @@
1
+ export declare const componentName = "CdsSelect";
2
+ declare const _sfc_main: import("vue").DefineComponent<{
3
+ items: {
4
+ type: import("vue").PropType<any[]>;
5
+ default: () => never[];
6
+ };
7
+ itemTitle: {
8
+ type: import("vue").PropType<import("../../composable").TItemKey>;
9
+ default: string; /**
10
+ * Событие при изменении значения (v-model)
11
+ * @type { string }
12
+ */
13
+ };
14
+ itemValue: {
15
+ type: import("vue").PropType<import("../../composable").TItemKey>;
16
+ default: string;
17
+ };
18
+ itemChildren: {
19
+ type: import("vue").PropType<import("../../composable").TItemKey>;
20
+ default: string;
21
+ };
22
+ itemProps: {
23
+ type: import("vue").PropType<import("../../composable").TItemKey>;
24
+ default: string;
25
+ };
26
+ returnObject: {
27
+ type: import("vue").PropType<boolean>;
28
+ default: boolean;
29
+ };
30
+ loading: {
31
+ type: import("vue").PropType<boolean>;
32
+ default: boolean;
33
+ };
34
+ focused: {
35
+ type: import("vue").PropType<boolean>;
36
+ default: boolean;
37
+ };
38
+ 'onClick:prepend': {
39
+ type: import("vue").PropType<(...args: any[]) => any>;
40
+ default: undefined;
41
+ };
42
+ 'onClick:append': {
43
+ type: import("vue").PropType<(...args: any[]) => any>;
44
+ default: undefined;
45
+ };
46
+ prependIcon: {
47
+ type: import("vue").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">;
48
+ default: undefined;
49
+ 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;
50
+ };
51
+ appendIcon: {
52
+ type: import("vue").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">;
53
+ default: undefined;
54
+ 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;
55
+ };
56
+ disabled: {
57
+ type: import("vue").PropType<boolean>;
58
+ default: boolean;
59
+ };
60
+ error: {
61
+ type: import("vue").PropType<boolean>;
62
+ default: boolean;
63
+ };
64
+ errorMessages: {
65
+ type: import("vue").PropType<string | string[]>;
66
+ default: () => never[];
67
+ };
68
+ maxErrors: {
69
+ type: import("vue").PropType<string | number>;
70
+ default: number;
71
+ };
72
+ name: {
73
+ type: import("vue").PropType<string | undefined>;
74
+ default: undefined;
75
+ };
76
+ label: {
77
+ type: import("vue").PropType<string | undefined>;
78
+ default: undefined;
79
+ };
80
+ readonly: {
81
+ type: import("vue").PropType<boolean>;
82
+ default: boolean;
83
+ };
84
+ rules: {
85
+ type: import("vue").PropType<import("../../composable").TValidationRule[]>;
86
+ default: () => never[];
87
+ };
88
+ modelValue: {
89
+ type: import("vue").PropType<any>;
90
+ default: null;
91
+ };
92
+ validateOn: {
93
+ type: import("vue").PropType<"input" | "blur" | "submit">;
94
+ default: string;
95
+ available: readonly ["blur", "input", "submit"];
96
+ validator: (value: "input" | "blur" | "submit") => boolean;
97
+ };
98
+ validationValue: {
99
+ type: import("vue").PropType<any>;
100
+ default: undefined;
101
+ };
102
+ hideMessages: {
103
+ type: import("vue").PropType<boolean>;
104
+ default: boolean;
105
+ };
106
+ id: {
107
+ type: import("vue").PropType<string>;
108
+ default: undefined;
109
+ };
110
+ description: {
111
+ type: import("vue").PropType<string>;
112
+ default: undefined;
113
+ };
114
+ value: {
115
+ type: import("vue").PropType<any>;
116
+ default: null;
117
+ };
118
+ messages: {
119
+ type: import("vue").PropType<string | string[]>;
120
+ default: () => never[];
121
+ };
122
+ persistentMessages: {
123
+ type: import("vue").PropType<boolean>;
124
+ default: boolean;
125
+ };
126
+ active: {
127
+ type: import("vue").PropType<boolean>;
128
+ default: boolean;
129
+ };
130
+ autofocus: {
131
+ type: import("vue").PropType<boolean>;
132
+ default: boolean;
133
+ };
134
+ prefix: {
135
+ type: import("vue").PropType<string>;
136
+ default: undefined;
137
+ };
138
+ suffix: {
139
+ type: import("vue").PropType<string>;
140
+ default: undefined;
141
+ };
142
+ prependInnerIcon: {
143
+ type: import("vue").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">;
144
+ default: undefined;
145
+ 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;
146
+ };
147
+ appendInnerIcon: {
148
+ type: import("vue").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">;
149
+ default: undefined;
150
+ 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;
151
+ };
152
+ type: {
153
+ type: import("vue").PropType<"number" | "password" | "text" | "email" | "tel" | "url">;
154
+ default: string;
155
+ validator: (value: "number" | "password" | "text" | "email" | "tel" | "url") => boolean;
156
+ };
157
+ placeholder: {
158
+ type: import("vue").PropType<string>;
159
+ default: undefined;
160
+ };
161
+ counter: {
162
+ type: import("vue").PropType<boolean>;
163
+ default: boolean;
164
+ };
165
+ limit: {
166
+ type: import("vue").PropType<number>;
167
+ default: undefined;
168
+ };
169
+ clearable: {
170
+ type: import("vue").PropType<boolean>;
171
+ default: boolean;
172
+ };
173
+ 'onClick:prependInner': {
174
+ type: import("vue").PropType<(...args: any[]) => any>;
175
+ default: undefined;
176
+ };
177
+ 'onClick:appendInner': {
178
+ type: import("vue").PropType<(...args: any[]) => any>;
179
+ default: undefined;
180
+ };
181
+ }, {
182
+ id: import("vue").ComputedRef<string>;
183
+ model: import("vue").Ref<any> & {
184
+ readonly externalValue: any;
185
+ };
186
+ items: import("vue").ComputedRef<import("../../composable").IInternalItem<any>[]>;
187
+ optionProps: import("vue").ComputedRef<{
188
+ selected: any;
189
+ }>;
190
+ fieldRef: import("vue").Ref<HTMLElement | undefined>;
191
+ selectRef: import("vue").Ref<HTMLSelectElement | undefined>;
192
+ validationRef: import("vue").Ref<import("vue").DefineComponent<{
193
+ 'onClick:prepend': import("vue").PropType<(...args: any[]) => any>;
194
+ 'onClick:append': import("vue").PropType<(...args: any[]) => any>;
195
+ focused: {
196
+ type: import("vue").PropType<boolean>;
197
+ default: boolean;
198
+ };
199
+ disabled: {
200
+ type: import("vue").PropType<boolean>;
201
+ default: boolean;
202
+ };
203
+ error: {
204
+ type: import("vue").PropType<boolean>;
205
+ default: boolean;
206
+ };
207
+ errorMessages: {
208
+ type: import("vue").PropType<string | string[]>;
209
+ default: () => never[];
210
+ };
211
+ maxErrors: {
212
+ type: import("vue").PropType<string | number>;
213
+ default: number;
214
+ };
215
+ name: {
216
+ type: import("vue").PropType<string | undefined>;
217
+ default: undefined;
218
+ };
219
+ label: {
220
+ type: import("vue").PropType<string | undefined>;
221
+ default: undefined;
222
+ };
223
+ readonly: {
224
+ type: import("vue").PropType<boolean>;
225
+ default: boolean;
226
+ };
227
+ rules: {
228
+ type: import("vue").PropType<import("../../composable").TValidationRule[]>;
229
+ default: () => never[];
230
+ };
231
+ modelValue: {
232
+ type: import("vue").PropType<any>;
233
+ default: null;
234
+ };
235
+ validateOn: {
236
+ type: import("vue").PropType<"input" | "blur" | "submit">;
237
+ default: string;
238
+ available: readonly ["blur", "input", "submit"];
239
+ validator: (value: "input" | "blur" | "submit") => boolean;
240
+ };
241
+ validationValue: {
242
+ type: import("vue").PropType<any>;
243
+ default: undefined;
244
+ };
245
+ hideMessages: {
246
+ type: import("vue").PropType<boolean>;
247
+ default: boolean;
248
+ };
249
+ prependIcon: {
250
+ type: import("vue").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">;
251
+ default: undefined;
252
+ 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;
253
+ };
254
+ appendIcon: {
255
+ type: import("vue").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">;
256
+ default: undefined;
257
+ 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;
258
+ };
259
+ id: {
260
+ type: import("vue").PropType<string>;
261
+ default: undefined;
262
+ };
263
+ description: {
264
+ type: import("vue").PropType<string>;
265
+ default: undefined;
266
+ };
267
+ value: {
268
+ type: import("vue").PropType<any>;
269
+ default: null;
270
+ };
271
+ messages: {
272
+ type: import("vue").PropType<string | string[]>;
273
+ default: () => never[];
274
+ };
275
+ persistentMessages: {
276
+ type: import("vue").PropType<boolean>;
277
+ default: boolean;
278
+ };
279
+ }, {
280
+ isFocused: import("vue").Ref<boolean>;
281
+ hasPrepend: import("vue").ComputedRef<boolean>;
282
+ hasAppend: import("vue").ComputedRef<boolean>;
283
+ hasDefault: import("vue").ComputedRef<boolean>;
284
+ hasMessages: import("vue").ComputedRef<number | boolean>;
285
+ slotProps: import("vue").ComputedRef<import("../../composable").IInputSlot>;
286
+ messagesId: import("vue").ComputedRef<string>;
287
+ messages: import("vue").ComputedRef<string | string[]>;
288
+ isValid: import("vue").ComputedRef<boolean | null>;
289
+ validationClasses: import("vue").ComputedRef<Record<string, boolean>>;
290
+ focusClasses: import("vue").ComputedRef<Record<string, boolean>>;
291
+ reset: () => void;
292
+ resetValidation: () => void;
293
+ validate: () => Promise<string[]>;
294
+ handleClickPrepend: (event: MouseEvent) => void;
295
+ handleClickAppend: (event: MouseEvent) => void;
296
+ }, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, "update:modelValue"[], "update:modelValue", import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<{
297
+ 'onClick:prepend': import("vue").PropType<(...args: any[]) => any>;
298
+ 'onClick:append': import("vue").PropType<(...args: any[]) => any>;
299
+ focused: {
300
+ type: import("vue").PropType<boolean>;
301
+ default: boolean;
302
+ };
303
+ disabled: {
304
+ type: import("vue").PropType<boolean>;
305
+ default: boolean;
306
+ };
307
+ error: {
308
+ type: import("vue").PropType<boolean>;
309
+ default: boolean;
310
+ };
311
+ errorMessages: {
312
+ type: import("vue").PropType<string | string[]>;
313
+ default: () => never[];
314
+ };
315
+ maxErrors: {
316
+ type: import("vue").PropType<string | number>;
317
+ default: number;
318
+ };
319
+ name: {
320
+ type: import("vue").PropType<string | undefined>;
321
+ default: undefined;
322
+ };
323
+ label: {
324
+ type: import("vue").PropType<string | undefined>;
325
+ default: undefined;
326
+ };
327
+ readonly: {
328
+ type: import("vue").PropType<boolean>;
329
+ default: boolean;
330
+ };
331
+ rules: {
332
+ type: import("vue").PropType<import("../../composable").TValidationRule[]>;
333
+ default: () => never[];
334
+ };
335
+ modelValue: {
336
+ type: import("vue").PropType<any>;
337
+ default: null;
338
+ };
339
+ validateOn: {
340
+ type: import("vue").PropType<"input" | "blur" | "submit">;
341
+ default: string;
342
+ available: readonly ["blur", "input", "submit"];
343
+ validator: (value: "input" | "blur" | "submit") => boolean;
344
+ };
345
+ validationValue: {
346
+ type: import("vue").PropType<any>;
347
+ default: undefined;
348
+ };
349
+ hideMessages: {
350
+ type: import("vue").PropType<boolean>;
351
+ default: boolean;
352
+ };
353
+ prependIcon: {
354
+ type: import("vue").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">;
355
+ default: undefined;
356
+ 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;
357
+ };
358
+ appendIcon: {
359
+ type: import("vue").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">;
360
+ default: undefined;
361
+ 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;
362
+ };
363
+ id: {
364
+ type: import("vue").PropType<string>;
365
+ default: undefined;
366
+ };
367
+ description: {
368
+ type: import("vue").PropType<string>;
369
+ default: undefined;
370
+ };
371
+ value: {
372
+ type: import("vue").PropType<any>;
373
+ default: null;
374
+ };
375
+ messages: {
376
+ type: import("vue").PropType<string | string[]>;
377
+ default: () => never[];
378
+ };
379
+ persistentMessages: {
380
+ type: import("vue").PropType<boolean>;
381
+ default: boolean;
382
+ };
383
+ }>> & {
384
+ "onUpdate:modelValue"?: ((...args: any[]) => any) | undefined;
385
+ }, {
386
+ name: string | undefined;
387
+ description: string;
388
+ error: boolean;
389
+ 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";
390
+ 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";
391
+ disabled: boolean;
392
+ messages: string | string[];
393
+ id: string;
394
+ label: string | undefined;
395
+ value: any;
396
+ persistentMessages: boolean;
397
+ errorMessages: string | string[];
398
+ maxErrors: string | number;
399
+ readonly: boolean;
400
+ rules: import("../../composable").TValidationRule[];
401
+ modelValue: any;
402
+ validateOn: "input" | "blur" | "submit";
403
+ validationValue: any;
404
+ hideMessages: boolean;
405
+ focused: boolean;
406
+ }> | undefined>;
407
+ isFocused: import("vue").Ref<boolean>;
408
+ rootAttrs: import("vue").Ref<{}>;
409
+ inputAttrs: import("vue").Ref<{}>;
410
+ inputProps: import("vue").Ref<{}>;
411
+ hasLabel: import("vue").ComputedRef<boolean>;
412
+ hasDescription: import("vue").ComputedRef<boolean>;
413
+ hasPrepend: import("vue").ComputedRef<boolean>;
414
+ hasAppend: import("vue").ComputedRef<boolean>;
415
+ hasPrependInnerIcon: import("vue").ComputedRef<boolean>;
416
+ hasAppendInnerIcon: import("vue").ComputedRef<boolean>;
417
+ hasLoading: import("vue").ComputedRef<boolean>;
418
+ hasClear: import("vue").ComputedRef<boolean>;
419
+ fieldClasses: import("vue").ComputedRef<Record<string, boolean>>;
420
+ selectClasses: import("vue").ComputedRef<{
421
+ 'cds-select--active': boolean;
422
+ 'cds-select--has-prefix': boolean;
423
+ 'cds-select--has-suffix': boolean;
424
+ }>;
425
+ iconClasses: import("vue").ComputedRef<Record<string, boolean>>;
426
+ loadingClasses: import("vue").ComputedRef<string | undefined>;
427
+ onInput: (event: Event) => void;
428
+ onBlur: () => void;
429
+ onFocus: () => void;
430
+ onClear: (event: Event) => void;
431
+ handleClickPrependInner: (event: MouseEvent) => void;
432
+ handleClickAppendInner: (event: MouseEvent) => void;
433
+ }, 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<{
434
+ items: {
435
+ type: import("vue").PropType<any[]>;
436
+ default: () => never[];
437
+ };
438
+ itemTitle: {
439
+ type: import("vue").PropType<import("../../composable").TItemKey>;
440
+ default: string; /**
441
+ * Событие при изменении значения (v-model)
442
+ * @type { string }
443
+ */
444
+ };
445
+ itemValue: {
446
+ type: import("vue").PropType<import("../../composable").TItemKey>;
447
+ default: string;
448
+ };
449
+ itemChildren: {
450
+ type: import("vue").PropType<import("../../composable").TItemKey>;
451
+ default: string;
452
+ };
453
+ itemProps: {
454
+ type: import("vue").PropType<import("../../composable").TItemKey>;
455
+ default: string;
456
+ };
457
+ returnObject: {
458
+ type: import("vue").PropType<boolean>;
459
+ default: boolean;
460
+ };
461
+ loading: {
462
+ type: import("vue").PropType<boolean>;
463
+ default: boolean;
464
+ };
465
+ focused: {
466
+ type: import("vue").PropType<boolean>;
467
+ default: boolean;
468
+ };
469
+ 'onClick:prepend': {
470
+ type: import("vue").PropType<(...args: any[]) => any>;
471
+ default: undefined;
472
+ };
473
+ 'onClick:append': {
474
+ type: import("vue").PropType<(...args: any[]) => any>;
475
+ default: undefined;
476
+ };
477
+ prependIcon: {
478
+ type: import("vue").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">;
479
+ default: undefined;
480
+ 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;
481
+ };
482
+ appendIcon: {
483
+ type: import("vue").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">;
484
+ default: undefined;
485
+ 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;
486
+ };
487
+ disabled: {
488
+ type: import("vue").PropType<boolean>;
489
+ default: boolean;
490
+ };
491
+ error: {
492
+ type: import("vue").PropType<boolean>;
493
+ default: boolean;
494
+ };
495
+ errorMessages: {
496
+ type: import("vue").PropType<string | string[]>;
497
+ default: () => never[];
498
+ };
499
+ maxErrors: {
500
+ type: import("vue").PropType<string | number>;
501
+ default: number;
502
+ };
503
+ name: {
504
+ type: import("vue").PropType<string | undefined>;
505
+ default: undefined;
506
+ };
507
+ label: {
508
+ type: import("vue").PropType<string | undefined>;
509
+ default: undefined;
510
+ };
511
+ readonly: {
512
+ type: import("vue").PropType<boolean>;
513
+ default: boolean;
514
+ };
515
+ rules: {
516
+ type: import("vue").PropType<import("../../composable").TValidationRule[]>;
517
+ default: () => never[];
518
+ };
519
+ modelValue: {
520
+ type: import("vue").PropType<any>;
521
+ default: null;
522
+ };
523
+ validateOn: {
524
+ type: import("vue").PropType<"input" | "blur" | "submit">;
525
+ default: string;
526
+ available: readonly ["blur", "input", "submit"];
527
+ validator: (value: "input" | "blur" | "submit") => boolean;
528
+ };
529
+ validationValue: {
530
+ type: import("vue").PropType<any>;
531
+ default: undefined;
532
+ };
533
+ hideMessages: {
534
+ type: import("vue").PropType<boolean>;
535
+ default: boolean;
536
+ };
537
+ id: {
538
+ type: import("vue").PropType<string>;
539
+ default: undefined;
540
+ };
541
+ description: {
542
+ type: import("vue").PropType<string>;
543
+ default: undefined;
544
+ };
545
+ value: {
546
+ type: import("vue").PropType<any>;
547
+ default: null;
548
+ };
549
+ messages: {
550
+ type: import("vue").PropType<string | string[]>;
551
+ default: () => never[];
552
+ };
553
+ persistentMessages: {
554
+ type: import("vue").PropType<boolean>;
555
+ default: boolean;
556
+ };
557
+ active: {
558
+ type: import("vue").PropType<boolean>;
559
+ default: boolean;
560
+ };
561
+ autofocus: {
562
+ type: import("vue").PropType<boolean>;
563
+ default: boolean;
564
+ };
565
+ prefix: {
566
+ type: import("vue").PropType<string>;
567
+ default: undefined;
568
+ };
569
+ suffix: {
570
+ type: import("vue").PropType<string>;
571
+ default: undefined;
572
+ };
573
+ prependInnerIcon: {
574
+ type: import("vue").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">;
575
+ default: undefined;
576
+ 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;
577
+ };
578
+ appendInnerIcon: {
579
+ type: import("vue").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">;
580
+ default: undefined;
581
+ 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;
582
+ };
583
+ type: {
584
+ type: import("vue").PropType<"number" | "password" | "text" | "email" | "tel" | "url">;
585
+ default: string;
586
+ validator: (value: "number" | "password" | "text" | "email" | "tel" | "url") => boolean;
587
+ };
588
+ placeholder: {
589
+ type: import("vue").PropType<string>;
590
+ default: undefined;
591
+ };
592
+ counter: {
593
+ type: import("vue").PropType<boolean>;
594
+ default: boolean;
595
+ };
596
+ limit: {
597
+ type: import("vue").PropType<number>;
598
+ default: undefined;
599
+ };
600
+ clearable: {
601
+ type: import("vue").PropType<boolean>;
602
+ default: boolean;
603
+ };
604
+ 'onClick:prependInner': {
605
+ type: import("vue").PropType<(...args: any[]) => any>;
606
+ default: undefined;
607
+ };
608
+ 'onClick:appendInner': {
609
+ type: import("vue").PropType<(...args: any[]) => any>;
610
+ default: undefined;
611
+ };
612
+ }>> & {
613
+ "onUpdate:modelValue"?: ((...args: any[]) => any) | undefined;
614
+ "onClick:prepend"?: ((...args: any[]) => any) | undefined;
615
+ "onClick:append"?: ((...args: any[]) => any) | undefined;
616
+ "onUpdate:focused"?: ((...args: any[]) => any) | undefined;
617
+ "onClick:prependInner"?: ((...args: any[]) => any) | undefined;
618
+ "onClick:appendInner"?: ((...args: any[]) => any) | undefined;
619
+ "onClick:clear"?: ((...args: any[]) => any) | undefined;
620
+ }, {
621
+ name: string | undefined;
622
+ type: "number" | "password" | "text" | "email" | "tel" | "url";
623
+ description: string;
624
+ error: boolean;
625
+ 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";
626
+ 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";
627
+ disabled: boolean;
628
+ loading: boolean;
629
+ messages: string | string[];
630
+ active: boolean;
631
+ id: string;
632
+ label: string | undefined;
633
+ value: any;
634
+ persistentMessages: boolean;
635
+ errorMessages: string | string[];
636
+ maxErrors: string | number;
637
+ readonly: boolean;
638
+ rules: import("../../composable").TValidationRule[];
639
+ modelValue: any;
640
+ validateOn: "input" | "blur" | "submit";
641
+ validationValue: any;
642
+ hideMessages: boolean;
643
+ focused: boolean;
644
+ 'onClick:prepend': (...args: any[]) => any;
645
+ 'onClick:append': (...args: any[]) => any;
646
+ prefix: string;
647
+ suffix: string;
648
+ items: any[];
649
+ itemTitle: import("../../composable").TItemKey;
650
+ itemValue: import("../../composable").TItemKey;
651
+ itemChildren: import("../../composable").TItemKey;
652
+ itemProps: import("../../composable").TItemKey;
653
+ returnObject: boolean;
654
+ autofocus: boolean;
655
+ 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";
656
+ 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";
657
+ placeholder: string;
658
+ counter: boolean;
659
+ limit: number;
660
+ clearable: boolean;
661
+ 'onClick:prependInner': (...args: any[]) => any;
662
+ 'onClick:appendInner': (...args: any[]) => any;
663
+ }>;
664
+ export default _sfc_main;