@central-design-system/components 3.0.0-beta.0 → 3.0.0-beta.2
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/cds.css +1 -1
- package/dist/cds.es.js +7006 -6952
- package/dist/cds.umd.js +2 -2
- package/dist/components/CdsAutocomplete/CdsAutocomplete.vue.d.ts +34 -57
- package/dist/components/CdsBadge/CdsBadge.vue.d.ts +4 -7
- package/dist/components/CdsBreadcrumbs/CdsBreadcrumbs.vue.d.ts +1 -5
- package/dist/components/CdsBreadcrumbs/CdsBreadcrumbsItem.vue.d.ts +1 -6
- package/dist/components/CdsButton/CdsButton.vue.d.ts +14 -14
- package/dist/components/CdsCheckbox/CdsCheckbox.vue.d.ts +3 -49
- package/dist/components/CdsCombobox/CdsCombobox.vue.d.ts +61 -427
- package/dist/components/CdsContainer/CdsContainer.vue.d.ts +20 -22
- package/dist/components/CdsContainer/CdsContainerItem.vue.d.ts +1 -1
- package/dist/components/CdsDatePicker/CdsDatePicker.vue.d.ts +1 -7
- package/dist/components/CdsDropdown/CdsDropdown.vue.d.ts +61 -435
- package/dist/components/CdsExpandablePanel/CdsExpandablePanel.vue.d.ts +11 -11
- package/dist/components/CdsExpandablePanel/CdsExpandablePanelContent.vue.d.ts +1 -1
- package/dist/components/CdsExpandablePanel/CdsExpandablePanelTitle.vue.d.ts +11 -11
- package/dist/components/CdsExpandablePanel/CdsExpandablePanels.vue.d.ts +2 -2
- package/dist/components/CdsExpandablePanel/composable/expandablePanelTitleProps.d.ts +2 -2
- package/dist/components/CdsFooter/CdsFooter.vue.d.ts +1 -1
- package/dist/components/CdsForm/CdsForm.vue.d.ts +1 -28
- package/dist/components/CdsHeader/CdsHeader.vue.d.ts +1 -1
- package/dist/components/CdsIcon/CdsIcon.vue.d.ts +3 -3
- package/dist/components/CdsInput/CdsInput.vue.d.ts +18 -39
- package/dist/components/CdsInput/CdsInputMessages.vue.d.ts +5 -5
- package/dist/components/CdsLayout/CdsLayout.vue.d.ts +2 -4
- package/dist/components/CdsList/CdsList.vue.d.ts +17 -7
- package/dist/components/CdsList/CdsListGroup.vue.d.ts +7 -7
- package/dist/components/CdsList/CdsListItem.vue.d.ts +14 -26
- package/dist/components/CdsMain/CdsMain.vue.d.ts +1 -1
- package/dist/components/CdsMenu/CdsMenu.vue.d.ts +1 -336
- package/dist/components/CdsModal/CdsModal.vue.d.ts +1 -341
- package/dist/components/CdsNotification/CdsNotification.vue.d.ts +13 -13
- package/dist/components/CdsNotification/CdsNotificationAlert.vue.d.ts +14 -348
- package/dist/components/CdsNotification/composable/notification.d.ts +3 -3
- package/dist/components/CdsOverlay/CdsOverlay.vue.d.ts +2 -8
- package/dist/components/CdsPage/CdsPage.vue.d.ts +1 -1
- package/dist/components/CdsPagination/CdsPagination.vue.d.ts +1 -6
- package/dist/components/CdsProgress/CdsProgress.vue.d.ts +1 -1
- package/dist/components/CdsRadioButton/CdsRadio.vue.d.ts +213 -0
- package/dist/components/CdsSelect/CdsSelect.vue.d.ts +59 -69
- package/dist/components/CdsSkeletonLoader/CdsSkeletonLoader.vue.d.ts +3 -3
- package/dist/components/CdsSlideGroup/CdsSlideGroup.vue.d.ts +19 -19
- package/dist/components/CdsSteps/CdsSteps.vue.d.ts +20 -24
- package/dist/components/CdsTable/CdsTable.vue.d.ts +2 -2
- package/dist/components/CdsTable/components/Table/InternalTable.d.ts +2 -2
- package/dist/components/CdsTable/components/TableProvider.d.ts +2 -2
- package/dist/components/CdsTabs/CdsTab.vue.d.ts +10 -10
- package/dist/components/CdsTabs/CdsTabs.vue.d.ts +20 -20
- package/dist/components/CdsTextArea/CdsTextArea.vue.d.ts +85 -75
- package/dist/components/CdsTextInput/CdsTextInput.vue.d.ts +35 -53
- package/dist/components/CdsToggle/CdsToggle.vue.d.ts +1 -1
- package/dist/components/CdsTooltip/CdsTooltip.vue.d.ts +1 -335
- package/dist/components/CdsUploader/CdsUploader.vue.d.ts +27 -378
- package/dist/components/CdsUploader/components/AjaxUploader.d.ts +16 -16
- package/dist/components/CdsUploader/components/UploadList/ListItem.d.ts +21 -21
- package/dist/components/CdsUploader/components/UploadList/UploadList.d.ts +21 -21
- package/dist/components/CdsUploader/composable/upload.d.ts +8 -8
- package/dist/composable/field.d.ts +2 -2
- package/dist/composable/icon.d.ts +2 -2
- package/dist/composable/items.d.ts +6 -0
- package/dist/composable/nested/nested.d.ts +1 -2
- package/dist/composable/select.d.ts +3 -0
- package/dist/transitions/createTransition.d.ts +1 -1
- package/dist/transitions/index.d.ts +10 -10
- package/dist/utils/helpers.d.ts +1 -0
- package/package.json +1 -1
- package/src/scss/themes/index.ts +1 -1
|
@@ -133,9 +133,9 @@ declare const _sfc_main: import("vue").DefineComponent<{
|
|
|
133
133
|
active: boolean;
|
|
134
134
|
location: NonNullable<import('../../utils').TAnchor>;
|
|
135
135
|
modelValue: string | number;
|
|
136
|
+
max: string | number;
|
|
136
137
|
height: string | number;
|
|
137
138
|
absolute: boolean;
|
|
138
|
-
max: string | number;
|
|
139
139
|
bgColor: string;
|
|
140
140
|
bgOpacity: string | number;
|
|
141
141
|
bufferValue: string | number;
|
|
@@ -83,6 +83,219 @@ declare const _sfc_main: import("vue").DefineComponent<{
|
|
|
83
83
|
checked: import("vue").ComputedRef<boolean>;
|
|
84
84
|
hasLabel: import("vue").ComputedRef<boolean>;
|
|
85
85
|
hasDescription: import("vue").ComputedRef<boolean>;
|
|
86
|
+
validationRef: import("vue").Ref<import("vue").DefineComponent<{
|
|
87
|
+
'onClick:prepend': import("vue").PropType<(...args: any[]) => any>;
|
|
88
|
+
'onClick:append': import("vue").PropType<(...args: any[]) => any>;
|
|
89
|
+
size: {
|
|
90
|
+
type: import("vue").PropType<"xs" | "sm" | "md" | "lg" | "xl">;
|
|
91
|
+
default: string;
|
|
92
|
+
available: readonly ["xs", "sm", "md", "lg", "xl"];
|
|
93
|
+
validator: (value: "xs" | "sm" | "md" | "lg" | "xl") => boolean;
|
|
94
|
+
};
|
|
95
|
+
readonly: {
|
|
96
|
+
type: import("vue").PropType<boolean>;
|
|
97
|
+
default: boolean;
|
|
98
|
+
};
|
|
99
|
+
disabled: {
|
|
100
|
+
type: import("vue").PropType<boolean>;
|
|
101
|
+
default: boolean;
|
|
102
|
+
};
|
|
103
|
+
focused: {
|
|
104
|
+
type: import("vue").PropType<boolean>;
|
|
105
|
+
default: boolean;
|
|
106
|
+
};
|
|
107
|
+
error: {
|
|
108
|
+
type: import("vue").PropType<boolean>;
|
|
109
|
+
default: boolean;
|
|
110
|
+
};
|
|
111
|
+
errorMessages: {
|
|
112
|
+
type: import("vue").PropType<string | string[]>;
|
|
113
|
+
default: () => never[];
|
|
114
|
+
};
|
|
115
|
+
maxErrors: {
|
|
116
|
+
type: import("vue").PropType<string | number>;
|
|
117
|
+
default: number;
|
|
118
|
+
};
|
|
119
|
+
name: {
|
|
120
|
+
type: import("vue").PropType<string | undefined>;
|
|
121
|
+
default: undefined;
|
|
122
|
+
};
|
|
123
|
+
rules: {
|
|
124
|
+
type: import("vue").PropType<import("../../composable").TValidationRule[]>;
|
|
125
|
+
default: () => never[];
|
|
126
|
+
};
|
|
127
|
+
modelValue: {
|
|
128
|
+
type: import("vue").PropType<any>;
|
|
129
|
+
default: null;
|
|
130
|
+
};
|
|
131
|
+
validateOn: {
|
|
132
|
+
type: import("vue").PropType<"input" | "blur" | "submit">;
|
|
133
|
+
default: string;
|
|
134
|
+
available: readonly ["blur", "input", "submit"];
|
|
135
|
+
validator: (value: "input" | "blur" | "submit") => boolean;
|
|
136
|
+
};
|
|
137
|
+
validationValue: {
|
|
138
|
+
type: import("vue").PropType<any>;
|
|
139
|
+
default: undefined;
|
|
140
|
+
};
|
|
141
|
+
hideMessages: {
|
|
142
|
+
type: import("vue").PropType<boolean>;
|
|
143
|
+
default: boolean;
|
|
144
|
+
};
|
|
145
|
+
prependIcon: {
|
|
146
|
+
type: import("vue").PropType<"search" | "link" | "list" | "filters" | "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" | "checkbox-fill" | "checkbox" | "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" | "flag" | "funnel" | "globe" | "infinity" | "info-fill" | "info" | "list-search" | "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" | "settings" | "shopping-cart" | "sort-date" | "source" | "star-fill" | "star" | "telegram" | "timer" | "tool" | "truck" | "unlocked" | "upload" | "user-avatar" | "user-group" | "visibility-off" | "visibility-on" | "vk" | "winner" | "workspace" | "youtube">;
|
|
147
|
+
default: undefined;
|
|
148
|
+
validator: (value: "search" | "link" | "list" | "filters" | "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" | "checkbox-fill" | "checkbox" | "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" | "flag" | "funnel" | "globe" | "infinity" | "info-fill" | "info" | "list-search" | "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" | "settings" | "shopping-cart" | "sort-date" | "source" | "star-fill" | "star" | "telegram" | "timer" | "tool" | "truck" | "unlocked" | "upload" | "user-avatar" | "user-group" | "visibility-off" | "visibility-on" | "vk" | "winner" | "workspace" | "youtube") => boolean;
|
|
149
|
+
};
|
|
150
|
+
appendIcon: {
|
|
151
|
+
type: import("vue").PropType<"search" | "link" | "list" | "filters" | "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" | "checkbox-fill" | "checkbox" | "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" | "flag" | "funnel" | "globe" | "infinity" | "info-fill" | "info" | "list-search" | "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" | "settings" | "shopping-cart" | "sort-date" | "source" | "star-fill" | "star" | "telegram" | "timer" | "tool" | "truck" | "unlocked" | "upload" | "user-avatar" | "user-group" | "visibility-off" | "visibility-on" | "vk" | "winner" | "workspace" | "youtube">;
|
|
152
|
+
default: undefined;
|
|
153
|
+
validator: (value: "search" | "link" | "list" | "filters" | "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" | "checkbox-fill" | "checkbox" | "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" | "flag" | "funnel" | "globe" | "infinity" | "info-fill" | "info" | "list-search" | "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" | "settings" | "shopping-cart" | "sort-date" | "source" | "star-fill" | "star" | "telegram" | "timer" | "tool" | "truck" | "unlocked" | "upload" | "user-avatar" | "user-group" | "visibility-off" | "visibility-on" | "vk" | "winner" | "workspace" | "youtube") => boolean;
|
|
154
|
+
};
|
|
155
|
+
id: {
|
|
156
|
+
type: import("vue").PropType<string>;
|
|
157
|
+
default: undefined;
|
|
158
|
+
};
|
|
159
|
+
label: {
|
|
160
|
+
type: import("vue").PropType<string>;
|
|
161
|
+
default: undefined;
|
|
162
|
+
};
|
|
163
|
+
description: {
|
|
164
|
+
type: import("vue").PropType<string>;
|
|
165
|
+
default: undefined;
|
|
166
|
+
};
|
|
167
|
+
value: {
|
|
168
|
+
type: import("vue").PropType<any>;
|
|
169
|
+
default: null;
|
|
170
|
+
};
|
|
171
|
+
messages: {
|
|
172
|
+
type: import("vue").PropType<string | string[]>;
|
|
173
|
+
default: () => never[];
|
|
174
|
+
};
|
|
175
|
+
persistentMessages: {
|
|
176
|
+
type: import("vue").PropType<boolean>;
|
|
177
|
+
default: boolean;
|
|
178
|
+
};
|
|
179
|
+
}, {}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {
|
|
180
|
+
'update:modelValue': (value: any) => boolean;
|
|
181
|
+
}, string, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<{
|
|
182
|
+
'onClick:prepend': import("vue").PropType<(...args: any[]) => any>;
|
|
183
|
+
'onClick:append': import("vue").PropType<(...args: any[]) => any>;
|
|
184
|
+
size: {
|
|
185
|
+
type: import("vue").PropType<"xs" | "sm" | "md" | "lg" | "xl">;
|
|
186
|
+
default: string;
|
|
187
|
+
available: readonly ["xs", "sm", "md", "lg", "xl"];
|
|
188
|
+
validator: (value: "xs" | "sm" | "md" | "lg" | "xl") => boolean;
|
|
189
|
+
};
|
|
190
|
+
readonly: {
|
|
191
|
+
type: import("vue").PropType<boolean>;
|
|
192
|
+
default: boolean;
|
|
193
|
+
};
|
|
194
|
+
disabled: {
|
|
195
|
+
type: import("vue").PropType<boolean>;
|
|
196
|
+
default: boolean;
|
|
197
|
+
};
|
|
198
|
+
focused: {
|
|
199
|
+
type: import("vue").PropType<boolean>;
|
|
200
|
+
default: boolean;
|
|
201
|
+
};
|
|
202
|
+
error: {
|
|
203
|
+
type: import("vue").PropType<boolean>;
|
|
204
|
+
default: boolean;
|
|
205
|
+
};
|
|
206
|
+
errorMessages: {
|
|
207
|
+
type: import("vue").PropType<string | string[]>;
|
|
208
|
+
default: () => never[];
|
|
209
|
+
};
|
|
210
|
+
maxErrors: {
|
|
211
|
+
type: import("vue").PropType<string | number>;
|
|
212
|
+
default: number;
|
|
213
|
+
};
|
|
214
|
+
name: {
|
|
215
|
+
type: import("vue").PropType<string | undefined>;
|
|
216
|
+
default: undefined;
|
|
217
|
+
};
|
|
218
|
+
rules: {
|
|
219
|
+
type: import("vue").PropType<import("../../composable").TValidationRule[]>;
|
|
220
|
+
default: () => never[];
|
|
221
|
+
};
|
|
222
|
+
modelValue: {
|
|
223
|
+
type: import("vue").PropType<any>;
|
|
224
|
+
default: null;
|
|
225
|
+
};
|
|
226
|
+
validateOn: {
|
|
227
|
+
type: import("vue").PropType<"input" | "blur" | "submit">;
|
|
228
|
+
default: string;
|
|
229
|
+
available: readonly ["blur", "input", "submit"];
|
|
230
|
+
validator: (value: "input" | "blur" | "submit") => boolean;
|
|
231
|
+
};
|
|
232
|
+
validationValue: {
|
|
233
|
+
type: import("vue").PropType<any>;
|
|
234
|
+
default: undefined;
|
|
235
|
+
};
|
|
236
|
+
hideMessages: {
|
|
237
|
+
type: import("vue").PropType<boolean>;
|
|
238
|
+
default: boolean;
|
|
239
|
+
};
|
|
240
|
+
prependIcon: {
|
|
241
|
+
type: import("vue").PropType<"search" | "link" | "list" | "filters" | "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" | "checkbox-fill" | "checkbox" | "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" | "flag" | "funnel" | "globe" | "infinity" | "info-fill" | "info" | "list-search" | "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" | "settings" | "shopping-cart" | "sort-date" | "source" | "star-fill" | "star" | "telegram" | "timer" | "tool" | "truck" | "unlocked" | "upload" | "user-avatar" | "user-group" | "visibility-off" | "visibility-on" | "vk" | "winner" | "workspace" | "youtube">;
|
|
242
|
+
default: undefined;
|
|
243
|
+
validator: (value: "search" | "link" | "list" | "filters" | "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" | "checkbox-fill" | "checkbox" | "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" | "flag" | "funnel" | "globe" | "infinity" | "info-fill" | "info" | "list-search" | "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" | "settings" | "shopping-cart" | "sort-date" | "source" | "star-fill" | "star" | "telegram" | "timer" | "tool" | "truck" | "unlocked" | "upload" | "user-avatar" | "user-group" | "visibility-off" | "visibility-on" | "vk" | "winner" | "workspace" | "youtube") => boolean;
|
|
244
|
+
};
|
|
245
|
+
appendIcon: {
|
|
246
|
+
type: import("vue").PropType<"search" | "link" | "list" | "filters" | "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" | "checkbox-fill" | "checkbox" | "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" | "flag" | "funnel" | "globe" | "infinity" | "info-fill" | "info" | "list-search" | "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" | "settings" | "shopping-cart" | "sort-date" | "source" | "star-fill" | "star" | "telegram" | "timer" | "tool" | "truck" | "unlocked" | "upload" | "user-avatar" | "user-group" | "visibility-off" | "visibility-on" | "vk" | "winner" | "workspace" | "youtube">;
|
|
247
|
+
default: undefined;
|
|
248
|
+
validator: (value: "search" | "link" | "list" | "filters" | "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" | "checkbox-fill" | "checkbox" | "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" | "flag" | "funnel" | "globe" | "infinity" | "info-fill" | "info" | "list-search" | "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" | "settings" | "shopping-cart" | "sort-date" | "source" | "star-fill" | "star" | "telegram" | "timer" | "tool" | "truck" | "unlocked" | "upload" | "user-avatar" | "user-group" | "visibility-off" | "visibility-on" | "vk" | "winner" | "workspace" | "youtube") => boolean;
|
|
249
|
+
};
|
|
250
|
+
id: {
|
|
251
|
+
type: import("vue").PropType<string>;
|
|
252
|
+
default: undefined;
|
|
253
|
+
};
|
|
254
|
+
label: {
|
|
255
|
+
type: import("vue").PropType<string>;
|
|
256
|
+
default: undefined;
|
|
257
|
+
};
|
|
258
|
+
description: {
|
|
259
|
+
type: import("vue").PropType<string>;
|
|
260
|
+
default: undefined;
|
|
261
|
+
};
|
|
262
|
+
value: {
|
|
263
|
+
type: import("vue").PropType<any>;
|
|
264
|
+
default: null;
|
|
265
|
+
};
|
|
266
|
+
messages: {
|
|
267
|
+
type: import("vue").PropType<string | string[]>;
|
|
268
|
+
default: () => never[];
|
|
269
|
+
};
|
|
270
|
+
persistentMessages: {
|
|
271
|
+
type: import("vue").PropType<boolean>;
|
|
272
|
+
default: boolean;
|
|
273
|
+
};
|
|
274
|
+
}>> & {
|
|
275
|
+
"onUpdate:modelValue"?: ((value: any) => any) | undefined;
|
|
276
|
+
}, {
|
|
277
|
+
value: any;
|
|
278
|
+
description: string;
|
|
279
|
+
size: "xs" | "sm" | "md" | "lg" | "xl";
|
|
280
|
+
disabled: boolean;
|
|
281
|
+
name: string | undefined;
|
|
282
|
+
id: string;
|
|
283
|
+
error: boolean;
|
|
284
|
+
label: string;
|
|
285
|
+
messages: string | string[];
|
|
286
|
+
persistentMessages: boolean;
|
|
287
|
+
errorMessages: string | string[];
|
|
288
|
+
maxErrors: string | number;
|
|
289
|
+
rules: import("../../composable").TValidationRule[];
|
|
290
|
+
modelValue: any;
|
|
291
|
+
validateOn: "input" | "blur" | "submit";
|
|
292
|
+
validationValue: any;
|
|
293
|
+
hideMessages: boolean;
|
|
294
|
+
prependIcon: "search" | "link" | "list" | "filters" | "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" | "checkbox-fill" | "checkbox" | "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" | "flag" | "funnel" | "globe" | "infinity" | "info-fill" | "info" | "list-search" | "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" | "settings" | "shopping-cart" | "sort-date" | "source" | "star-fill" | "star" | "telegram" | "timer" | "tool" | "truck" | "unlocked" | "upload" | "user-avatar" | "user-group" | "visibility-off" | "visibility-on" | "vk" | "winner" | "workspace" | "youtube";
|
|
295
|
+
appendIcon: "search" | "link" | "list" | "filters" | "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" | "checkbox-fill" | "checkbox" | "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" | "flag" | "funnel" | "globe" | "infinity" | "info-fill" | "info" | "list-search" | "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" | "settings" | "shopping-cart" | "sort-date" | "source" | "star-fill" | "star" | "telegram" | "timer" | "tool" | "truck" | "unlocked" | "upload" | "user-avatar" | "user-group" | "visibility-off" | "visibility-on" | "vk" | "winner" | "workspace" | "youtube";
|
|
296
|
+
focused: boolean;
|
|
297
|
+
readonly: boolean;
|
|
298
|
+
}> | undefined>;
|
|
86
299
|
isGroup: import("vue").Ref<boolean>;
|
|
87
300
|
isFocused: import("vue").Ref<boolean>;
|
|
88
301
|
inputProps: import("vue").Ref<{
|