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