@central-design-system/components 3.10.6 → 3.11.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/UPGRADE.md +146 -0
- package/dist/cds.d.ts +4 -0
- package/dist/cds.es.js +7734 -7362
- package/dist/cds.es.js.map +1 -1
- package/dist/cds.umd.js +5 -5
- package/dist/cds.umd.js.map +1 -1
- package/dist/components/CdsAutocomplete/CdsAutocomplete.d.ts +21 -3
- package/dist/components/CdsBadge/CdsBadge.d.ts +1 -1
- package/dist/components/CdsBreadcrumbs/CdsBreadcrumbsItem.d.ts +15 -0
- package/dist/components/CdsCard/CdsCard.d.ts +20 -1
- package/dist/components/CdsCheckbox/CdsCheckbox.d.ts +43 -2
- package/dist/components/CdsCheckbox/CdsCheckboxGroup.d.ts +48 -0
- package/dist/components/CdsCombobox/CdsCombobox.d.ts +366 -23
- package/dist/components/CdsDropdown/CdsDropdown.d.ts +381 -26
- package/dist/components/CdsEmptyState/CdsEmptyState.d.ts +1 -1
- package/dist/components/CdsInput/CdsDescription.d.ts +31 -0
- package/dist/components/CdsInput/CdsInput.d.ts +18 -0
- package/dist/components/CdsInput/CdsLabel.d.ts +48 -0
- package/dist/components/CdsInput/index.d.ts +2 -0
- package/dist/components/CdsList/CdsListGroup.d.ts +1 -1
- package/dist/components/CdsList/CdsListItem.d.ts +19 -0
- package/dist/components/CdsNotification/CdsNotification.d.ts +1 -1
- package/dist/components/CdsNotification/CdsNotificationAlert.d.ts +1 -1
- package/dist/components/CdsNotification/composable/notification.d.ts +4 -2
- package/dist/components/CdsProgress/CdsProgressBar.d.ts +158 -0
- package/dist/components/CdsProgress/index.d.ts +1 -0
- package/dist/components/CdsRadioButton/CdsRadio.d.ts +84 -0
- package/dist/components/CdsRadioButton/CdsRadioButton.d.ts +48 -0
- package/dist/components/CdsRadioButton/CdsRadioGroup.d.ts +681 -0
- package/dist/components/CdsRadioButton/index.d.ts +1 -0
- package/dist/components/CdsSelect/CdsSelect.d.ts +90 -6
- package/dist/components/CdsSlideGroup/CdsSlideGroup.d.ts +59 -29
- package/dist/components/CdsStatus/CdsStatus.d.ts +23 -1
- package/dist/components/CdsTable/CdsTable.d.ts +3 -1
- package/dist/components/CdsTable/components/Table/InternalTable.d.ts +3 -1
- package/dist/components/CdsTable/components/TableProvider.d.ts +3 -1
- package/dist/components/CdsTabsV2/CdsTabsV2.d.ts +30 -0
- package/dist/components/CdsTag/CdsTag.d.ts +26 -0
- package/dist/components/CdsTextArea/CdsTextArea.d.ts +93 -6
- package/dist/components/CdsTextInput/CdsTextInput.d.ts +93 -6
- package/dist/components/CdsToggle/CdsToggle.d.ts +18 -0
- package/dist/components/CdsTooltip/CdsTooltip.d.ts +21 -0
- package/dist/components/CdsUploader/CdsUploader.d.ts +18 -0
- package/dist/components/index.d.ts +4 -0
- package/dist/composable/field.d.ts +5 -3
- package/dist/composable/input.d.ts +20 -0
- package/dist/composable/status.d.ts +14 -2
- package/dist/utils/compat.d.ts +33 -0
- package/dist/utils/dom/warn.d.ts +42 -0
- package/dist/utils/index.d.ts +1 -0
- package/package.json +4 -2
|
@@ -163,6 +163,14 @@ declare const _default: import('vue').DefineComponent<import('vue').ExtractPropT
|
|
|
163
163
|
type: PropType<boolean>;
|
|
164
164
|
default: boolean;
|
|
165
165
|
};
|
|
166
|
+
hint: {
|
|
167
|
+
type: PropType<string>;
|
|
168
|
+
default: undefined;
|
|
169
|
+
};
|
|
170
|
+
persistentHint: {
|
|
171
|
+
type: PropType<boolean>;
|
|
172
|
+
default: boolean;
|
|
173
|
+
};
|
|
166
174
|
active: {
|
|
167
175
|
type: PropType<boolean>;
|
|
168
176
|
default: boolean;
|
|
@@ -206,7 +214,7 @@ declare const _default: import('vue').DefineComponent<import('vue').ExtractPropT
|
|
|
206
214
|
default: undefined;
|
|
207
215
|
};
|
|
208
216
|
counter: {
|
|
209
|
-
type: PropType<boolean>;
|
|
217
|
+
type: PropType<boolean | number | string>;
|
|
210
218
|
default: boolean;
|
|
211
219
|
};
|
|
212
220
|
limit: {
|
|
@@ -493,6 +501,14 @@ declare const _default: import('vue').DefineComponent<import('vue').ExtractPropT
|
|
|
493
501
|
type: PropType<boolean>;
|
|
494
502
|
default: boolean;
|
|
495
503
|
};
|
|
504
|
+
hint: {
|
|
505
|
+
type: PropType<string>;
|
|
506
|
+
default: undefined;
|
|
507
|
+
};
|
|
508
|
+
persistentHint: {
|
|
509
|
+
type: PropType<boolean>;
|
|
510
|
+
default: boolean;
|
|
511
|
+
};
|
|
496
512
|
active: {
|
|
497
513
|
type: PropType<boolean>;
|
|
498
514
|
default: boolean;
|
|
@@ -536,7 +552,7 @@ declare const _default: import('vue').DefineComponent<import('vue').ExtractPropT
|
|
|
536
552
|
default: undefined;
|
|
537
553
|
};
|
|
538
554
|
counter: {
|
|
539
|
-
type: PropType<boolean>;
|
|
555
|
+
type: PropType<boolean | number | string>;
|
|
540
556
|
default: boolean;
|
|
541
557
|
};
|
|
542
558
|
limit: {
|
|
@@ -669,6 +685,8 @@ declare const _default: import('vue').DefineComponent<import('vue').ExtractPropT
|
|
|
669
685
|
label: string;
|
|
670
686
|
messages: string | string[];
|
|
671
687
|
persistentMessages: boolean;
|
|
688
|
+
hint: string;
|
|
689
|
+
persistentHint: boolean;
|
|
672
690
|
errorMessages: string | string[];
|
|
673
691
|
maxErrors: string | number;
|
|
674
692
|
rules: import('../../composable').TValidationRule[];
|
|
@@ -684,7 +702,7 @@ declare const _default: import('vue').DefineComponent<import('vue').ExtractPropT
|
|
|
684
702
|
type: "number" | "text" | "password" | "email" | "tel" | "url";
|
|
685
703
|
role: string;
|
|
686
704
|
placeholder: string;
|
|
687
|
-
counter: boolean;
|
|
705
|
+
counter: string | number | boolean;
|
|
688
706
|
limit: number;
|
|
689
707
|
clearable: boolean;
|
|
690
708
|
clearLabel: string;
|
|
@@ -319,6 +319,7 @@ declare const _default: import('vue').DefineComponent<import('vue').ExtractPropT
|
|
|
319
319
|
icon: "link" | "search" | "bold" | "delete" | "add" | "administrator" | "ai" | "alert-fill" | "alert" | "analog" | "archive-fill" | "archive" | "arrow-down" | "arrow-left-bottom" | "arrow-left-top" | "arrow-left" | "arrow-right-bottom" | "arrow-right-top" | "arrow-right" | "arrow-up" | "arrows-vertical" | "bookmark-fill" | "bookmark" | "calendar" | "card-bank" | "category" | "check-fill" | "check" | "checkbox-fill" | "checkbox" | "chevron-down" | "chevron-left" | "chevron-right" | "chevron-up" | "chocholate-menu" | "chocolate-menu" | "clock-fill" | "clock" | "collapse" | "comment" | "company" | "compare" | "copy" | "data-cards" | "directory-open" | "directory" | "doc-download" | "doc" | "download" | "draggable" | "edit" | "education" | "enter" | "error-fill" | "error" | "expand" | "external" | "facebook-fill" | "facebook" | "fill" | "filters" | "flag" | "format" | "formula" | "funnel" | "globe" | "highlight" | "infinity" | "info-fill" | "info" | "insert" | "italic" | "list-search" | "list" | "loader" | "location" | "locked" | "login" | "logout" | "menu" | "minus" | "moon" | "notification" | "overflow-menu-horizontal" | "overflow-menu-vertical" | "password" | "pin" | "plus" | "printer" | "question-fill" | "question" | "refresh" | "remove" | "sandglass" | "save" | "scale-left" | "scale-right" | "settings" | "shopping-cart" | "sort-date" | "sorting-down" | "sorting-up" | "sorting" | "source" | "star-fill" | "star" | "sun" | "tab-backward" | "tab-forward" | "telegram" | "thumb-down-fill" | "thumb-down" | "thumb-up-fill" | "thumb-up" | "timer" | "tool" | "truck" | "underline" | "unlocked-left" | "unlocked" | "upload" | "user-avatar" | "user-group" | "visibility-off" | "visibility-on" | "vk" | "whatsapp" | "winner" | "workspace" | "youtube";
|
|
320
320
|
invertColor: boolean;
|
|
321
321
|
color: string;
|
|
322
|
+
textColor: string;
|
|
322
323
|
style: import('vue').StyleValue;
|
|
323
324
|
modelValue: boolean;
|
|
324
325
|
transition: string | boolean | (import('vue').TransitionProps & {
|
|
@@ -337,7 +338,6 @@ declare const _default: import('vue').DefineComponent<import('vue').ExtractPropT
|
|
|
337
338
|
dotSize: string | number;
|
|
338
339
|
inline: boolean;
|
|
339
340
|
floating: boolean;
|
|
340
|
-
textColor: string;
|
|
341
341
|
offsetX: string | number;
|
|
342
342
|
offsetY: string | number;
|
|
343
343
|
count: string | number | undefined;
|
|
@@ -25,6 +25,13 @@ declare const _default: import('vue').DefineComponent<import('vue').ExtractPropT
|
|
|
25
25
|
type: PropType<boolean>;
|
|
26
26
|
default: boolean;
|
|
27
27
|
};
|
|
28
|
+
/**
|
|
29
|
+
* Заголовок элемента. Доступно с 3.11.0 — алиас `text`.
|
|
30
|
+
*/
|
|
31
|
+
title: {
|
|
32
|
+
type: PropType<string>;
|
|
33
|
+
default: undefined;
|
|
34
|
+
};
|
|
28
35
|
/**
|
|
29
36
|
* Неактивная страница
|
|
30
37
|
*/
|
|
@@ -57,6 +64,13 @@ declare const _default: import('vue').DefineComponent<import('vue').ExtractPropT
|
|
|
57
64
|
type: PropType<boolean>;
|
|
58
65
|
default: boolean;
|
|
59
66
|
};
|
|
67
|
+
/**
|
|
68
|
+
* Заголовок элемента. Доступно с 3.11.0 — алиас `text`.
|
|
69
|
+
*/
|
|
70
|
+
title: {
|
|
71
|
+
type: PropType<string>;
|
|
72
|
+
default: undefined;
|
|
73
|
+
};
|
|
60
74
|
/**
|
|
61
75
|
* Неактивная страница
|
|
62
76
|
*/
|
|
@@ -66,6 +80,7 @@ declare const _default: import('vue').DefineComponent<import('vue').ExtractPropT
|
|
|
66
80
|
};
|
|
67
81
|
}>> & Readonly<{}>, {
|
|
68
82
|
text: string | number;
|
|
83
|
+
title: string;
|
|
69
84
|
to: import('vue-router').RouteLocationRaw;
|
|
70
85
|
href: string;
|
|
71
86
|
disabled: boolean;
|
|
@@ -79,11 +79,19 @@ declare const _default: import('vue').DefineComponent<import('vue').ExtractPropT
|
|
|
79
79
|
};
|
|
80
80
|
/**
|
|
81
81
|
* Весь компонент кликабельный. Так же применяется, если есть атрибуты href или to
|
|
82
|
+
* @deprecated Используйте `link`
|
|
82
83
|
*/
|
|
83
84
|
interactive: {
|
|
84
85
|
type: PropType<boolean>;
|
|
85
86
|
default: undefined;
|
|
86
87
|
};
|
|
88
|
+
/**
|
|
89
|
+
* Весь компонент кликабельный. Доступно с 3.11.0 — замена `interactive`.
|
|
90
|
+
*/
|
|
91
|
+
link: {
|
|
92
|
+
type: PropType<boolean>;
|
|
93
|
+
default: undefined;
|
|
94
|
+
};
|
|
87
95
|
/**
|
|
88
96
|
* Фоновое изображение
|
|
89
97
|
*/
|
|
@@ -107,6 +115,7 @@ declare const _default: import('vue').DefineComponent<import('vue').ExtractPropT
|
|
|
107
115
|
};
|
|
108
116
|
/**
|
|
109
117
|
* Состояние выбранное карточки
|
|
118
|
+
* @deprecated В CDS 4 выбор задаётся только через `CdsCardGroup` + `value`
|
|
110
119
|
*/
|
|
111
120
|
selected: {
|
|
112
121
|
type: PropType<boolean>;
|
|
@@ -203,11 +212,19 @@ declare const _default: import('vue').DefineComponent<import('vue').ExtractPropT
|
|
|
203
212
|
};
|
|
204
213
|
/**
|
|
205
214
|
* Весь компонент кликабельный. Так же применяется, если есть атрибуты href или to
|
|
215
|
+
* @deprecated Используйте `link`
|
|
206
216
|
*/
|
|
207
217
|
interactive: {
|
|
208
218
|
type: PropType<boolean>;
|
|
209
219
|
default: undefined;
|
|
210
220
|
};
|
|
221
|
+
/**
|
|
222
|
+
* Весь компонент кликабельный. Доступно с 3.11.0 — замена `interactive`.
|
|
223
|
+
*/
|
|
224
|
+
link: {
|
|
225
|
+
type: PropType<boolean>;
|
|
226
|
+
default: undefined;
|
|
227
|
+
};
|
|
211
228
|
/**
|
|
212
229
|
* Фоновое изображение
|
|
213
230
|
*/
|
|
@@ -231,6 +248,7 @@ declare const _default: import('vue').DefineComponent<import('vue').ExtractPropT
|
|
|
231
248
|
};
|
|
232
249
|
/**
|
|
233
250
|
* Состояние выбранное карточки
|
|
251
|
+
* @deprecated В CDS 4 выбор задаётся только через `CdsCardGroup` + `value`
|
|
234
252
|
*/
|
|
235
253
|
selected: {
|
|
236
254
|
type: PropType<boolean>;
|
|
@@ -254,6 +272,7 @@ declare const _default: import('vue').DefineComponent<import('vue').ExtractPropT
|
|
|
254
272
|
to: import('vue-router').RouteLocationRaw;
|
|
255
273
|
href: string;
|
|
256
274
|
tag: string;
|
|
275
|
+
link: boolean;
|
|
257
276
|
prependIcon: "link" | "search" | "bold" | "delete" | "add" | "administrator" | "ai" | "alert-fill" | "alert" | "analog" | "archive-fill" | "archive" | "arrow-down" | "arrow-left-bottom" | "arrow-left-top" | "arrow-left" | "arrow-right-bottom" | "arrow-right-top" | "arrow-right" | "arrow-up" | "arrows-vertical" | "bookmark-fill" | "bookmark" | "calendar" | "card-bank" | "category" | "check-fill" | "check" | "checkbox-fill" | "checkbox" | "chevron-down" | "chevron-left" | "chevron-right" | "chevron-up" | "chocholate-menu" | "chocolate-menu" | "clock-fill" | "clock" | "collapse" | "comment" | "company" | "compare" | "copy" | "data-cards" | "directory-open" | "directory" | "doc-download" | "doc" | "download" | "draggable" | "edit" | "education" | "enter" | "error-fill" | "error" | "expand" | "external" | "facebook-fill" | "facebook" | "fill" | "filters" | "flag" | "format" | "formula" | "funnel" | "globe" | "highlight" | "infinity" | "info-fill" | "info" | "insert" | "italic" | "list-search" | "list" | "loader" | "location" | "locked" | "login" | "logout" | "menu" | "minus" | "moon" | "notification" | "overflow-menu-horizontal" | "overflow-menu-vertical" | "password" | "pin" | "plus" | "printer" | "question-fill" | "question" | "refresh" | "remove" | "sandglass" | "save" | "scale-left" | "scale-right" | "settings" | "shopping-cart" | "sort-date" | "sorting-down" | "sorting-up" | "sorting" | "source" | "star-fill" | "star" | "sun" | "tab-backward" | "tab-forward" | "telegram" | "thumb-down-fill" | "thumb-down" | "thumb-up-fill" | "thumb-up" | "timer" | "tool" | "truck" | "underline" | "unlocked-left" | "unlocked" | "upload" | "user-avatar" | "user-group" | "visibility-off" | "visibility-on" | "vk" | "whatsapp" | "winner" | "workspace" | "youtube";
|
|
258
277
|
appendIcon: "link" | "search" | "bold" | "delete" | "add" | "administrator" | "ai" | "alert-fill" | "alert" | "analog" | "archive-fill" | "archive" | "arrow-down" | "arrow-left-bottom" | "arrow-left-top" | "arrow-left" | "arrow-right-bottom" | "arrow-right-top" | "arrow-right" | "arrow-up" | "arrows-vertical" | "bookmark-fill" | "bookmark" | "calendar" | "card-bank" | "category" | "check-fill" | "check" | "checkbox-fill" | "checkbox" | "chevron-down" | "chevron-left" | "chevron-right" | "chevron-up" | "chocholate-menu" | "chocolate-menu" | "clock-fill" | "clock" | "collapse" | "comment" | "company" | "compare" | "copy" | "data-cards" | "directory-open" | "directory" | "doc-download" | "doc" | "download" | "draggable" | "edit" | "education" | "enter" | "error-fill" | "error" | "expand" | "external" | "facebook-fill" | "facebook" | "fill" | "filters" | "flag" | "format" | "formula" | "funnel" | "globe" | "highlight" | "infinity" | "info-fill" | "info" | "insert" | "italic" | "list-search" | "list" | "loader" | "location" | "locked" | "login" | "logout" | "menu" | "minus" | "moon" | "notification" | "overflow-menu-horizontal" | "overflow-menu-vertical" | "password" | "pin" | "plus" | "printer" | "question-fill" | "question" | "refresh" | "remove" | "sandglass" | "save" | "scale-left" | "scale-right" | "settings" | "shopping-cart" | "sort-date" | "sorting-down" | "sorting-up" | "sorting" | "source" | "star-fill" | "star" | "sun" | "tab-backward" | "tab-forward" | "telegram" | "thumb-down-fill" | "thumb-down" | "thumb-up-fill" | "thumb-up" | "timer" | "tool" | "truck" | "underline" | "unlocked-left" | "unlocked" | "upload" | "user-avatar" | "user-group" | "visibility-off" | "visibility-on" | "vk" | "whatsapp" | "winner" | "workspace" | "youtube";
|
|
259
278
|
loading: boolean;
|
|
@@ -269,9 +288,9 @@ declare const _default: import('vue').DefineComponent<import('vue').ExtractPropT
|
|
|
269
288
|
theme: string;
|
|
270
289
|
image: string;
|
|
271
290
|
selectedClass: string;
|
|
291
|
+
interactive: boolean;
|
|
272
292
|
borderless: boolean;
|
|
273
293
|
subtitle: string;
|
|
274
|
-
interactive: boolean;
|
|
275
294
|
divider: boolean;
|
|
276
295
|
}, {}, {}, {}, string, import('vue').ComponentProvideOptions, true, {}, any>;
|
|
277
296
|
export default _default;
|
|
@@ -81,6 +81,14 @@ declare const _default: import('vue').DefineComponent<import('vue').ExtractPropT
|
|
|
81
81
|
type: PropType<boolean>;
|
|
82
82
|
default: boolean;
|
|
83
83
|
};
|
|
84
|
+
hint: {
|
|
85
|
+
type: PropType<string>;
|
|
86
|
+
default: undefined;
|
|
87
|
+
};
|
|
88
|
+
persistentHint: {
|
|
89
|
+
type: PropType<boolean>;
|
|
90
|
+
default: boolean;
|
|
91
|
+
};
|
|
84
92
|
/**
|
|
85
93
|
* Промежуточное состояние
|
|
86
94
|
*/
|
|
@@ -93,6 +101,7 @@ declare const _default: import('vue').DefineComponent<import('vue').ExtractPropT
|
|
|
93
101
|
model: import('vue').Ref<any, any> & {
|
|
94
102
|
readonly externalValue: any;
|
|
95
103
|
};
|
|
104
|
+
isChecked: import('vue').ComputedRef<boolean>;
|
|
96
105
|
hasDescription: import('vue').ComputedRef<boolean>;
|
|
97
106
|
inputProps: import('vue').Ref<{
|
|
98
107
|
[x: string]: unknown;
|
|
@@ -102,6 +111,8 @@ declare const _default: import('vue').DefineComponent<import('vue').ExtractPropT
|
|
|
102
111
|
value?: any;
|
|
103
112
|
messages?: string | string[] | undefined;
|
|
104
113
|
persistentMessages?: boolean | undefined;
|
|
114
|
+
hint?: string | undefined;
|
|
115
|
+
persistentHint?: boolean | undefined;
|
|
105
116
|
disabled?: boolean | undefined;
|
|
106
117
|
error?: boolean | undefined;
|
|
107
118
|
errorMessages?: string | string[] | undefined;
|
|
@@ -124,6 +135,8 @@ declare const _default: import('vue').DefineComponent<import('vue').ExtractPropT
|
|
|
124
135
|
value?: any;
|
|
125
136
|
messages?: string | string[] | undefined;
|
|
126
137
|
persistentMessages?: boolean | undefined;
|
|
138
|
+
hint?: string | undefined;
|
|
139
|
+
persistentHint?: boolean | undefined;
|
|
127
140
|
disabled?: boolean | undefined;
|
|
128
141
|
error?: boolean | undefined;
|
|
129
142
|
errorMessages?: string | string[] | undefined;
|
|
@@ -142,14 +155,14 @@ declare const _default: import('vue').DefineComponent<import('vue').ExtractPropT
|
|
|
142
155
|
rootAttrs: import('vue').Ref<{}, {}>;
|
|
143
156
|
inputAttrs: import('vue').Ref<{}, {}>;
|
|
144
157
|
isFocused: import('vue').Ref<boolean, boolean>;
|
|
145
|
-
ariaChecked: import('vue').ComputedRef<
|
|
158
|
+
ariaChecked: import('vue').ComputedRef<true | "mixed" | "true" | "false">;
|
|
146
159
|
internalDisabled: import('vue').ComputedRef<boolean>;
|
|
147
160
|
internalReadonly: import('vue').ComputedRef<boolean>;
|
|
148
161
|
internalError: import('vue').ComputedRef<boolean>;
|
|
149
162
|
isGroup: import('vue').Ref<boolean, boolean>;
|
|
150
163
|
checkboxClasses: import('vue').ComputedRef<{
|
|
151
164
|
'cds-checkbox--disabled': boolean;
|
|
152
|
-
'cds-checkbox--checked':
|
|
165
|
+
'cds-checkbox--checked': boolean;
|
|
153
166
|
'cds-checkbox--indeterminate': boolean;
|
|
154
167
|
}>;
|
|
155
168
|
onBlur: () => void;
|
|
@@ -252,6 +265,14 @@ declare const _default: import('vue').DefineComponent<import('vue').ExtractPropT
|
|
|
252
265
|
type: PropType<boolean>;
|
|
253
266
|
default: boolean;
|
|
254
267
|
};
|
|
268
|
+
hint: {
|
|
269
|
+
type: PropType<string>;
|
|
270
|
+
default: undefined;
|
|
271
|
+
};
|
|
272
|
+
persistentHint: {
|
|
273
|
+
type: PropType<boolean>;
|
|
274
|
+
default: boolean;
|
|
275
|
+
};
|
|
255
276
|
/**
|
|
256
277
|
* Промежуточное состояние
|
|
257
278
|
*/
|
|
@@ -276,6 +297,8 @@ declare const _default: import('vue').DefineComponent<import('vue').ExtractPropT
|
|
|
276
297
|
label: string;
|
|
277
298
|
messages: string | string[];
|
|
278
299
|
persistentMessages: boolean;
|
|
300
|
+
hint: string;
|
|
301
|
+
persistentHint: boolean;
|
|
279
302
|
errorMessages: string | string[];
|
|
280
303
|
maxErrors: string | number;
|
|
281
304
|
rules: import('../../composable').TValidationRule[];
|
|
@@ -383,6 +406,14 @@ declare const _default: import('vue').DefineComponent<import('vue').ExtractPropT
|
|
|
383
406
|
type: PropType<boolean>;
|
|
384
407
|
default: boolean;
|
|
385
408
|
};
|
|
409
|
+
hint: {
|
|
410
|
+
type: PropType<string>;
|
|
411
|
+
default: undefined;
|
|
412
|
+
};
|
|
413
|
+
persistentHint: {
|
|
414
|
+
type: PropType<boolean>;
|
|
415
|
+
default: boolean;
|
|
416
|
+
};
|
|
386
417
|
}>, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {
|
|
387
418
|
'update:modelValue': (value: any) => true;
|
|
388
419
|
'click:control': (event: MouseEvent) => true;
|
|
@@ -485,6 +516,14 @@ declare const _default: import('vue').DefineComponent<import('vue').ExtractPropT
|
|
|
485
516
|
type: PropType<boolean>;
|
|
486
517
|
default: boolean;
|
|
487
518
|
};
|
|
519
|
+
hint: {
|
|
520
|
+
type: PropType<string>;
|
|
521
|
+
default: undefined;
|
|
522
|
+
};
|
|
523
|
+
persistentHint: {
|
|
524
|
+
type: PropType<boolean>;
|
|
525
|
+
default: boolean;
|
|
526
|
+
};
|
|
488
527
|
}>> & Readonly<{
|
|
489
528
|
"onUpdate:modelValue"?: ((value: any) => any) | undefined;
|
|
490
529
|
"onClick:control"?: ((event: MouseEvent) => any) | undefined;
|
|
@@ -504,6 +543,8 @@ declare const _default: import('vue').DefineComponent<import('vue').ExtractPropT
|
|
|
504
543
|
label: string;
|
|
505
544
|
messages: string | string[];
|
|
506
545
|
persistentMessages: boolean;
|
|
546
|
+
hint: string;
|
|
547
|
+
persistentHint: boolean;
|
|
507
548
|
errorMessages: string | string[];
|
|
508
549
|
maxErrors: string | number;
|
|
509
550
|
rules: import('../../composable').TValidationRule[];
|
|
@@ -100,6 +100,14 @@ declare const _default: import('vue').DefineComponent<import('vue').ExtractPropT
|
|
|
100
100
|
type: import('vue').PropType<boolean>;
|
|
101
101
|
default: boolean;
|
|
102
102
|
};
|
|
103
|
+
hint: {
|
|
104
|
+
type: import('vue').PropType<string>;
|
|
105
|
+
default: undefined;
|
|
106
|
+
};
|
|
107
|
+
persistentHint: {
|
|
108
|
+
type: import('vue').PropType<boolean>;
|
|
109
|
+
default: boolean;
|
|
110
|
+
};
|
|
103
111
|
}>, {
|
|
104
112
|
inputProps: Ref<{
|
|
105
113
|
readonly error?: boolean | undefined;
|
|
@@ -108,6 +116,7 @@ declare const _default: import('vue').DefineComponent<import('vue').ExtractPropT
|
|
|
108
116
|
readonly value?: any;
|
|
109
117
|
readonly messages?: string | string[] | undefined;
|
|
110
118
|
readonly persistentMessages?: boolean | undefined;
|
|
119
|
+
readonly persistentHint?: boolean | undefined;
|
|
111
120
|
readonly errorMessages?: string | string[] | undefined;
|
|
112
121
|
readonly maxErrors?: string | number | undefined;
|
|
113
122
|
readonly rules?: (import('../../composable').TValidationResult | ((value: any) => import('../../composable').TValidationResult) | ((value: any) => PromiseLike<import('../../composable').TValidationResult>) | {
|
|
@@ -121,6 +130,7 @@ declare const _default: import('vue').DefineComponent<import('vue').ExtractPropT
|
|
|
121
130
|
readonly description?: string | undefined;
|
|
122
131
|
readonly id?: string | undefined;
|
|
123
132
|
readonly label?: string | undefined;
|
|
133
|
+
readonly hint?: string | undefined;
|
|
124
134
|
readonly validationValue?: any;
|
|
125
135
|
readonly theme?: string | undefined;
|
|
126
136
|
readonly "onUpdate:modelValue"?: ((...args: any[]) => any) | undefined;
|
|
@@ -209,6 +219,14 @@ declare const _default: import('vue').DefineComponent<import('vue').ExtractPropT
|
|
|
209
219
|
type: import('vue').PropType<boolean>;
|
|
210
220
|
default: boolean;
|
|
211
221
|
};
|
|
222
|
+
hint: {
|
|
223
|
+
type: import('vue').PropType<string>;
|
|
224
|
+
default: undefined;
|
|
225
|
+
};
|
|
226
|
+
persistentHint: {
|
|
227
|
+
type: import('vue').PropType<boolean>;
|
|
228
|
+
default: boolean;
|
|
229
|
+
};
|
|
212
230
|
}>> & Readonly<{
|
|
213
231
|
"onUpdate:modelValue"?: ((...args: any[]) => any) | undefined;
|
|
214
232
|
}> & {}>> | {
|
|
@@ -218,6 +236,7 @@ declare const _default: import('vue').DefineComponent<import('vue').ExtractPropT
|
|
|
218
236
|
readonly value?: any;
|
|
219
237
|
readonly messages?: string | string[] | undefined;
|
|
220
238
|
readonly persistentMessages?: boolean | undefined;
|
|
239
|
+
readonly persistentHint?: boolean | undefined;
|
|
221
240
|
readonly errorMessages?: string | string[] | undefined;
|
|
222
241
|
readonly maxErrors?: string | number | undefined;
|
|
223
242
|
readonly rules?: (import('../../composable').TValidationResult | ((value: any) => import('../../composable').TValidationResult) | ((value: any) => PromiseLike<import('../../composable').TValidationResult>) | {
|
|
@@ -231,6 +250,7 @@ declare const _default: import('vue').DefineComponent<import('vue').ExtractPropT
|
|
|
231
250
|
readonly description?: string | undefined;
|
|
232
251
|
readonly id?: string | undefined;
|
|
233
252
|
readonly label?: string | undefined;
|
|
253
|
+
readonly hint?: string | undefined;
|
|
234
254
|
readonly validationValue?: any;
|
|
235
255
|
readonly theme?: string | undefined;
|
|
236
256
|
readonly "onUpdate:modelValue"?: ((...args: any[]) => any) | undefined;
|
|
@@ -324,6 +344,14 @@ declare const _default: import('vue').DefineComponent<import('vue').ExtractPropT
|
|
|
324
344
|
type: import('vue').PropType<boolean>;
|
|
325
345
|
default: boolean;
|
|
326
346
|
};
|
|
347
|
+
hint: {
|
|
348
|
+
type: import('vue').PropType<string>;
|
|
349
|
+
default: undefined;
|
|
350
|
+
};
|
|
351
|
+
persistentHint: {
|
|
352
|
+
type: import('vue').PropType<boolean>;
|
|
353
|
+
default: boolean;
|
|
354
|
+
};
|
|
327
355
|
}>> & Readonly<{
|
|
328
356
|
"onUpdate:modelValue"?: ((...args: any[]) => any) | undefined;
|
|
329
357
|
}>, {
|
|
@@ -337,6 +365,8 @@ declare const _default: import('vue').DefineComponent<import('vue').ExtractPropT
|
|
|
337
365
|
label: string;
|
|
338
366
|
messages: string | string[];
|
|
339
367
|
persistentMessages: boolean;
|
|
368
|
+
hint: string;
|
|
369
|
+
persistentHint: boolean;
|
|
340
370
|
errorMessages: string | string[];
|
|
341
371
|
maxErrors: string | number;
|
|
342
372
|
rules: import('../../composable').TValidationRule[];
|
|
@@ -445,6 +475,14 @@ declare const _default: import('vue').DefineComponent<import('vue').ExtractPropT
|
|
|
445
475
|
type: import('vue').PropType<boolean>;
|
|
446
476
|
default: boolean;
|
|
447
477
|
};
|
|
478
|
+
hint: {
|
|
479
|
+
type: import('vue').PropType<string>;
|
|
480
|
+
default: undefined;
|
|
481
|
+
};
|
|
482
|
+
persistentHint: {
|
|
483
|
+
type: import('vue').PropType<boolean>;
|
|
484
|
+
default: boolean;
|
|
485
|
+
};
|
|
448
486
|
}>, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {
|
|
449
487
|
'update:modelValue': (value: any) => true;
|
|
450
488
|
'click:control': (event: MouseEvent) => true;
|
|
@@ -547,6 +585,14 @@ declare const _default: import('vue').DefineComponent<import('vue').ExtractPropT
|
|
|
547
585
|
type: import('vue').PropType<boolean>;
|
|
548
586
|
default: boolean;
|
|
549
587
|
};
|
|
588
|
+
hint: {
|
|
589
|
+
type: import('vue').PropType<string>;
|
|
590
|
+
default: undefined;
|
|
591
|
+
};
|
|
592
|
+
persistentHint: {
|
|
593
|
+
type: import('vue').PropType<boolean>;
|
|
594
|
+
default: boolean;
|
|
595
|
+
};
|
|
550
596
|
}>> & Readonly<{
|
|
551
597
|
"onUpdate:modelValue"?: ((value: any) => any) | undefined;
|
|
552
598
|
"onClick:control"?: ((event: MouseEvent) => any) | undefined;
|
|
@@ -566,6 +612,8 @@ declare const _default: import('vue').DefineComponent<import('vue').ExtractPropT
|
|
|
566
612
|
label: string;
|
|
567
613
|
messages: string | string[];
|
|
568
614
|
persistentMessages: boolean;
|
|
615
|
+
hint: string;
|
|
616
|
+
persistentHint: boolean;
|
|
569
617
|
errorMessages: string | string[];
|
|
570
618
|
maxErrors: string | number;
|
|
571
619
|
rules: import('../../composable').TValidationRule[];
|