@central-design-system/components 3.0.0-alpha.1 → 3.0.0-alpha.3
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.d.ts +9 -3
- package/dist/cds.es.js +6646 -3569
- package/dist/cds.umd.js +1 -1
- package/dist/components/CdsBreadcrumbs/CdsBreadcrumbs.vue.d.ts +64 -0
- package/dist/components/CdsBreadcrumbs/CdsBreadcrumbsItem.vue.d.ts +54 -0
- package/dist/components/CdsBreadcrumbs/index.d.ts +2 -0
- package/dist/components/CdsButton/CdsButton.vue.d.ts +13 -13
- package/dist/components/CdsButton/index.d.ts +1 -0
- package/dist/components/CdsCheckbox/CdsCheckbox.vue.d.ts +56 -24
- package/dist/components/CdsCheckbox/CdsCheckboxGroup.vue.d.ts +34 -12
- package/dist/components/CdsCheckbox/index.d.ts +2 -0
- package/dist/components/CdsCombobox/CdsCombobox.vue.d.ts +2515 -0
- package/dist/components/CdsCombobox/composable/highlight.d.ts +12 -0
- package/dist/components/CdsDatePicker/CdsDatePicker.vue.d.ts +276 -0
- package/dist/components/CdsDatePicker/composable/calendar.d.ts +315 -0
- package/dist/components/CdsDatePicker/composable/index.d.ts +1 -0
- package/dist/components/CdsDrawer/CdsDrawer.vue.d.ts +22 -6
- package/dist/components/CdsDropdown/CdsDropdown.vue.d.ts +2334 -0
- package/dist/components/CdsEmptyState/CdsEmptyState.vue.d.ts +54 -0
- package/dist/components/CdsForm/CdsForm.vue.d.ts +13 -3
- package/dist/components/CdsGrid/CdsCol.vue.d.ts +1 -1
- package/dist/components/CdsIcon/CdsIcon.vue.d.ts +3 -3
- package/dist/components/CdsInput/CdsInput.vue.d.ts +29 -23
- package/dist/components/CdsLink/CdsLink.vue.d.ts +10 -3
- package/dist/components/CdsLink/index.d.ts +1 -0
- package/dist/components/CdsList/CdsList.vue.d.ts +47 -6
- package/dist/components/CdsList/CdsListGroup.vue.d.ts +8 -8
- package/dist/components/CdsList/CdsListItem.vue.d.ts +28 -25
- package/dist/components/CdsLoader/CdsLoader.vue.d.ts +1 -1
- package/dist/components/CdsMenu/CdsMenu.vue.d.ts +127 -28
- package/dist/components/CdsMenu/index.d.ts +1 -0
- package/dist/components/CdsOverlay/CdsOverlay.vue.d.ts +46 -23
- package/dist/components/CdsOverlay/index.d.ts +1 -0
- package/dist/components/CdsRadioButton/CdsRadio.vue.d.ts +42 -14
- package/dist/components/CdsRadioButton/CdsRadioButton.vue.d.ts +42 -14
- package/dist/components/CdsSelect/CdsSelect.vue.d.ts +165 -86
- package/dist/components/CdsSidebar/CdsSidebar.vue.d.ts +23 -18
- package/dist/components/CdsStages/CdsStages.vue.d.ts +2 -2
- package/dist/components/CdsTag/CdsTag.vue.d.ts +11 -6
- package/dist/components/CdsTag/index.d.ts +1 -0
- package/dist/components/CdsTextArea/CdsTextArea.vue.d.ts +171 -87
- package/dist/components/CdsTextInput/CdsTextInput.vue.d.ts +195 -70
- package/dist/components/CdsTextInput/index.d.ts +1 -0
- package/dist/components/index.d.ts +7 -1
- package/dist/composable/color.d.ts +4 -2
- package/dist/composable/datetime.d.ts +76 -0
- package/dist/composable/delay.d.ts +1 -1
- package/dist/composable/field.d.ts +4 -3
- package/dist/composable/filter.d.ts +52 -0
- package/dist/composable/form.d.ts +2 -0
- package/dist/composable/hidration.d.ts +2 -1
- package/dist/composable/icon.d.ts +2 -2
- package/dist/composable/index.d.ts +6 -0
- package/dist/composable/input.d.ts +5 -3
- package/dist/composable/items.d.ts +2 -0
- package/dist/composable/lazy.d.ts +12 -2
- package/dist/composable/menu.d.ts +37 -0
- package/dist/composable/overlay.d.ts +8 -9
- package/dist/composable/router.d.ts +3 -0
- package/dist/composable/select.d.ts +86 -0
- package/dist/composable/title.d.ts +21 -0
- package/dist/composable/validation.d.ts +0 -8
- package/dist/locale/index.d.ts +12 -0
- package/dist/locale/ru.d.ts +3 -0
- package/dist/transitions/index.d.ts +150 -0
- package/dist/utils/anchor.d.ts +1 -1
- package/dist/utils/cache.d.ts +4 -0
- package/dist/utils/date.d.ts +181 -0
- package/dist/utils/helpers.d.ts +68 -19
- package/dist/utils/index.d.ts +2 -0
- package/package.json +3 -2
- package/src/scss/modules/_transition.scss +102 -0
- package/src/scss/themes/index.ts +1 -1
|
@@ -0,0 +1,2334 @@
|
|
|
1
|
+
import type { IInternalItem } from '../../composable';
|
|
2
|
+
export declare const componentName = "CdsDropdown";
|
|
3
|
+
declare const _sfc_main: import("vue").DefineComponent<{
|
|
4
|
+
transition: {
|
|
5
|
+
type: import("vue").PropType<string | boolean | (import("vue").TransitionProps & {
|
|
6
|
+
component?: import("vue").Component<any, any, any, import("vue").ComputedOptions, import("vue").MethodOptions> | undefined;
|
|
7
|
+
})>;
|
|
8
|
+
default: string;
|
|
9
|
+
validator: (value: unknown) => boolean;
|
|
10
|
+
};
|
|
11
|
+
items: {
|
|
12
|
+
type: import("vue").PropType<any[]>;
|
|
13
|
+
default: () => never[];
|
|
14
|
+
};
|
|
15
|
+
itemTitle: {
|
|
16
|
+
type: import("vue").PropType<import("../../composable").TItemKey>;
|
|
17
|
+
default: string;
|
|
18
|
+
};
|
|
19
|
+
itemValue: {
|
|
20
|
+
type: import("vue").PropType<import("../../composable").TItemKey>;
|
|
21
|
+
default: string;
|
|
22
|
+
};
|
|
23
|
+
itemChildren: {
|
|
24
|
+
type: import("vue").PropType<import("../../composable").TItemKey>;
|
|
25
|
+
default: string;
|
|
26
|
+
};
|
|
27
|
+
itemProps: {
|
|
28
|
+
type: import("vue").PropType<import("../../composable").TItemKey>;
|
|
29
|
+
default: string;
|
|
30
|
+
};
|
|
31
|
+
returnObject: {
|
|
32
|
+
type: import("vue").PropType<boolean>;
|
|
33
|
+
default: boolean;
|
|
34
|
+
};
|
|
35
|
+
loading: {
|
|
36
|
+
type: import("vue").PropType<boolean>;
|
|
37
|
+
default: boolean;
|
|
38
|
+
};
|
|
39
|
+
focused: {
|
|
40
|
+
type: import("vue").PropType<boolean>;
|
|
41
|
+
default: boolean;
|
|
42
|
+
};
|
|
43
|
+
menu: {
|
|
44
|
+
type: import("vue").PropType<boolean | undefined>;
|
|
45
|
+
default: undefined;
|
|
46
|
+
};
|
|
47
|
+
menuProps: {
|
|
48
|
+
type: import("vue").PropType<any>;
|
|
49
|
+
default: null;
|
|
50
|
+
};
|
|
51
|
+
menuHeight: {
|
|
52
|
+
type: import("vue").PropType<string | number>;
|
|
53
|
+
default: number;
|
|
54
|
+
};
|
|
55
|
+
eager: {
|
|
56
|
+
type: import("vue").PropType<boolean>;
|
|
57
|
+
default: boolean;
|
|
58
|
+
};
|
|
59
|
+
'onClick:prepend': {
|
|
60
|
+
type: import("vue").PropType<(...args: any[]) => any>;
|
|
61
|
+
default: undefined;
|
|
62
|
+
};
|
|
63
|
+
'onClick:append': {
|
|
64
|
+
type: import("vue").PropType<(...args: any[]) => any>;
|
|
65
|
+
default: undefined;
|
|
66
|
+
};
|
|
67
|
+
prependIcon: {
|
|
68
|
+
type: import("vue").PropType<"link" | "filters" | "search" | "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" | "flag" | "globe" | "infinity" | "info-fill" | "info" | "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" | "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">;
|
|
69
|
+
default: undefined;
|
|
70
|
+
validator: (value: "link" | "filters" | "search" | "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" | "flag" | "globe" | "infinity" | "info-fill" | "info" | "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" | "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;
|
|
71
|
+
};
|
|
72
|
+
appendIcon: {
|
|
73
|
+
type: import("vue").PropType<"link" | "filters" | "search" | "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" | "flag" | "globe" | "infinity" | "info-fill" | "info" | "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" | "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">;
|
|
74
|
+
default: undefined;
|
|
75
|
+
validator: (value: "link" | "filters" | "search" | "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" | "flag" | "globe" | "infinity" | "info-fill" | "info" | "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" | "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;
|
|
76
|
+
};
|
|
77
|
+
disabled: {
|
|
78
|
+
type: import("vue").PropType<boolean>;
|
|
79
|
+
default: boolean;
|
|
80
|
+
};
|
|
81
|
+
error: {
|
|
82
|
+
type: import("vue").PropType<boolean>;
|
|
83
|
+
default: boolean;
|
|
84
|
+
};
|
|
85
|
+
errorMessages: {
|
|
86
|
+
type: import("vue").PropType<string | string[]>;
|
|
87
|
+
default: () => never[];
|
|
88
|
+
};
|
|
89
|
+
maxErrors: {
|
|
90
|
+
type: import("vue").PropType<string | number>;
|
|
91
|
+
default: number;
|
|
92
|
+
};
|
|
93
|
+
name: {
|
|
94
|
+
type: import("vue").PropType<string | undefined>;
|
|
95
|
+
default: undefined;
|
|
96
|
+
};
|
|
97
|
+
readonly: {
|
|
98
|
+
type: import("vue").PropType<boolean>;
|
|
99
|
+
default: boolean;
|
|
100
|
+
};
|
|
101
|
+
rules: {
|
|
102
|
+
type: import("vue").PropType<import("../../composable").TValidationRule[]>;
|
|
103
|
+
default: () => never[];
|
|
104
|
+
};
|
|
105
|
+
modelValue: {
|
|
106
|
+
type: import("vue").PropType<any>;
|
|
107
|
+
default: null;
|
|
108
|
+
};
|
|
109
|
+
validateOn: {
|
|
110
|
+
type: import("vue").PropType<"input" | "blur" | "submit">;
|
|
111
|
+
default: string;
|
|
112
|
+
available: readonly ["blur", "input", "submit"];
|
|
113
|
+
validator: (value: "input" | "blur" | "submit") => boolean;
|
|
114
|
+
};
|
|
115
|
+
validationValue: {
|
|
116
|
+
type: import("vue").PropType<any>;
|
|
117
|
+
default: undefined;
|
|
118
|
+
};
|
|
119
|
+
hideMessages: {
|
|
120
|
+
type: import("vue").PropType<boolean>;
|
|
121
|
+
default: boolean;
|
|
122
|
+
};
|
|
123
|
+
id: {
|
|
124
|
+
type: import("vue").PropType<string>;
|
|
125
|
+
default: undefined;
|
|
126
|
+
};
|
|
127
|
+
label: {
|
|
128
|
+
type: import("vue").PropType<string>;
|
|
129
|
+
default: undefined;
|
|
130
|
+
};
|
|
131
|
+
description: {
|
|
132
|
+
type: import("vue").PropType<string>;
|
|
133
|
+
default: undefined;
|
|
134
|
+
};
|
|
135
|
+
value: {
|
|
136
|
+
type: import("vue").PropType<any>;
|
|
137
|
+
default: null;
|
|
138
|
+
};
|
|
139
|
+
messages: {
|
|
140
|
+
type: import("vue").PropType<string | string[]>;
|
|
141
|
+
default: () => never[];
|
|
142
|
+
};
|
|
143
|
+
persistentMessages: {
|
|
144
|
+
type: import("vue").PropType<boolean>;
|
|
145
|
+
default: boolean;
|
|
146
|
+
};
|
|
147
|
+
active: {
|
|
148
|
+
type: import("vue").PropType<boolean>;
|
|
149
|
+
default: boolean;
|
|
150
|
+
};
|
|
151
|
+
autofocus: {
|
|
152
|
+
type: import("vue").PropType<boolean>;
|
|
153
|
+
default: boolean;
|
|
154
|
+
};
|
|
155
|
+
prefix: {
|
|
156
|
+
type: import("vue").PropType<string>;
|
|
157
|
+
default: undefined;
|
|
158
|
+
};
|
|
159
|
+
suffix: {
|
|
160
|
+
type: import("vue").PropType<string>;
|
|
161
|
+
default: undefined;
|
|
162
|
+
};
|
|
163
|
+
prependInnerIcon: {
|
|
164
|
+
type: import("vue").PropType<"link" | "filters" | "search" | "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" | "flag" | "globe" | "infinity" | "info-fill" | "info" | "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" | "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">;
|
|
165
|
+
default: undefined;
|
|
166
|
+
validator: (value: "link" | "filters" | "search" | "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" | "flag" | "globe" | "infinity" | "info-fill" | "info" | "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" | "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;
|
|
167
|
+
};
|
|
168
|
+
appendInnerIcon: {
|
|
169
|
+
type: import("vue").PropType<"link" | "filters" | "search" | "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" | "flag" | "globe" | "infinity" | "info-fill" | "info" | "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" | "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">;
|
|
170
|
+
default: undefined;
|
|
171
|
+
validator: (value: "link" | "filters" | "search" | "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" | "flag" | "globe" | "infinity" | "info-fill" | "info" | "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" | "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;
|
|
172
|
+
};
|
|
173
|
+
type: {
|
|
174
|
+
type: import("vue").PropType<"number" | "text" | "password" | "email" | "tel" | "url">;
|
|
175
|
+
default: string;
|
|
176
|
+
validator: (value: "number" | "text" | "password" | "email" | "tel" | "url") => boolean;
|
|
177
|
+
};
|
|
178
|
+
placeholder: {
|
|
179
|
+
type: import("vue").PropType<string>;
|
|
180
|
+
default: undefined;
|
|
181
|
+
};
|
|
182
|
+
counter: {
|
|
183
|
+
type: import("vue").PropType<boolean>;
|
|
184
|
+
default: boolean;
|
|
185
|
+
};
|
|
186
|
+
limit: {
|
|
187
|
+
type: import("vue").PropType<number>;
|
|
188
|
+
default: undefined;
|
|
189
|
+
};
|
|
190
|
+
clearable: {
|
|
191
|
+
type: import("vue").PropType<boolean>;
|
|
192
|
+
default: boolean;
|
|
193
|
+
};
|
|
194
|
+
'onClick:prependInner': {
|
|
195
|
+
type: import("vue").PropType<(...args: any[]) => any>;
|
|
196
|
+
default: undefined;
|
|
197
|
+
};
|
|
198
|
+
'onClick:appendInner': {
|
|
199
|
+
type: import("vue").PropType<(...args: any[]) => any>;
|
|
200
|
+
default: undefined;
|
|
201
|
+
};
|
|
202
|
+
multiple: {
|
|
203
|
+
type: import("vue").PropType<boolean>;
|
|
204
|
+
default: boolean;
|
|
205
|
+
};
|
|
206
|
+
openOnClear: {
|
|
207
|
+
type: import("vue").PropType<boolean>;
|
|
208
|
+
default: boolean;
|
|
209
|
+
};
|
|
210
|
+
hideSelected: {
|
|
211
|
+
type: import("vue").PropType<boolean>;
|
|
212
|
+
default: boolean;
|
|
213
|
+
};
|
|
214
|
+
noDataText: {
|
|
215
|
+
type: import("vue").PropType<string>;
|
|
216
|
+
default: string;
|
|
217
|
+
};
|
|
218
|
+
hideNoData: {
|
|
219
|
+
type: import("vue").PropType<boolean>; /**
|
|
220
|
+
* Событие при фокусе
|
|
221
|
+
* @type { boolean }
|
|
222
|
+
*/
|
|
223
|
+
default: boolean;
|
|
224
|
+
};
|
|
225
|
+
isSelectAll: {
|
|
226
|
+
type: import("vue").PropType<boolean>;
|
|
227
|
+
default: boolean;
|
|
228
|
+
};
|
|
229
|
+
selectAllText: {
|
|
230
|
+
type: import("vue").PropType<string>;
|
|
231
|
+
default: string; /**
|
|
232
|
+
* Событие выбора всех элементов
|
|
233
|
+
* @type { boolean }
|
|
234
|
+
*/
|
|
235
|
+
};
|
|
236
|
+
}, {
|
|
237
|
+
model: import("vue").Ref<readonly IInternalItem<any>[]> & {
|
|
238
|
+
readonly externalValue: any;
|
|
239
|
+
};
|
|
240
|
+
internalMenu: import("vue").WritableComputedRef<boolean | undefined>;
|
|
241
|
+
inputModelValue: import("vue").ComputedRef<string>;
|
|
242
|
+
displayItems: import("vue").ComputedRef<IInternalItem<any>[]>;
|
|
243
|
+
selections: import("vue").ComputedRef<IInternalItem<any>[]>;
|
|
244
|
+
selected: import("vue").ComputedRef<any[]>;
|
|
245
|
+
selectedAll: import("vue").ComputedRef<boolean>;
|
|
246
|
+
selectedIndeterminate: import("vue").ComputedRef<boolean>;
|
|
247
|
+
selectStrategy: import("vue").ComputedRef<"independent" | "single-independent">;
|
|
248
|
+
isDirty: import("vue").ComputedRef<boolean>;
|
|
249
|
+
isFocused: import("vue").Ref<boolean>;
|
|
250
|
+
externalValidationValue: import("vue").ComputedRef<any>;
|
|
251
|
+
inputRef: import("vue").Ref<import("vue").DefineComponent<{
|
|
252
|
+
loading: {
|
|
253
|
+
type: import("vue").PropType<boolean>;
|
|
254
|
+
default: boolean;
|
|
255
|
+
};
|
|
256
|
+
focused: {
|
|
257
|
+
type: import("vue").PropType<boolean>;
|
|
258
|
+
default: boolean;
|
|
259
|
+
};
|
|
260
|
+
'onClick:prepend': {
|
|
261
|
+
type: import("vue").PropType<(...args: any[]) => any>;
|
|
262
|
+
default: undefined;
|
|
263
|
+
};
|
|
264
|
+
'onClick:append': {
|
|
265
|
+
type: import("vue").PropType<(...args: any[]) => any>;
|
|
266
|
+
default: undefined;
|
|
267
|
+
};
|
|
268
|
+
prependIcon: {
|
|
269
|
+
type: import("vue").PropType<"link" | "filters" | "search" | "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" | "flag" | "globe" | "infinity" | "info-fill" | "info" | "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" | "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">;
|
|
270
|
+
default: undefined;
|
|
271
|
+
validator: (value: "link" | "filters" | "search" | "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" | "flag" | "globe" | "infinity" | "info-fill" | "info" | "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" | "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;
|
|
272
|
+
};
|
|
273
|
+
appendIcon: {
|
|
274
|
+
type: import("vue").PropType<"link" | "filters" | "search" | "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" | "flag" | "globe" | "infinity" | "info-fill" | "info" | "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" | "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">;
|
|
275
|
+
default: undefined;
|
|
276
|
+
validator: (value: "link" | "filters" | "search" | "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" | "flag" | "globe" | "infinity" | "info-fill" | "info" | "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" | "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;
|
|
277
|
+
};
|
|
278
|
+
disabled: {
|
|
279
|
+
type: import("vue").PropType<boolean>;
|
|
280
|
+
default: boolean;
|
|
281
|
+
};
|
|
282
|
+
error: {
|
|
283
|
+
type: import("vue").PropType<boolean>;
|
|
284
|
+
default: boolean;
|
|
285
|
+
};
|
|
286
|
+
errorMessages: {
|
|
287
|
+
type: import("vue").PropType<string | string[]>;
|
|
288
|
+
default: () => never[];
|
|
289
|
+
};
|
|
290
|
+
maxErrors: {
|
|
291
|
+
type: import("vue").PropType<string | number>;
|
|
292
|
+
default: number;
|
|
293
|
+
};
|
|
294
|
+
name: {
|
|
295
|
+
type: import("vue").PropType<string | undefined>;
|
|
296
|
+
default: undefined;
|
|
297
|
+
};
|
|
298
|
+
readonly: {
|
|
299
|
+
type: import("vue").PropType<boolean>;
|
|
300
|
+
default: boolean;
|
|
301
|
+
};
|
|
302
|
+
rules: {
|
|
303
|
+
type: import("vue").PropType<import("../../composable").TValidationRule[]>;
|
|
304
|
+
default: () => never[];
|
|
305
|
+
};
|
|
306
|
+
modelValue: {
|
|
307
|
+
type: import("vue").PropType<any>;
|
|
308
|
+
default: null;
|
|
309
|
+
};
|
|
310
|
+
validateOn: {
|
|
311
|
+
type: import("vue").PropType<"input" | "blur" | "submit">;
|
|
312
|
+
default: string;
|
|
313
|
+
available: readonly ["blur", "input", "submit"];
|
|
314
|
+
validator: (value: "input" | "blur" | "submit") => boolean;
|
|
315
|
+
};
|
|
316
|
+
validationValue: {
|
|
317
|
+
type: import("vue").PropType<any>;
|
|
318
|
+
default: undefined;
|
|
319
|
+
};
|
|
320
|
+
hideMessages: {
|
|
321
|
+
type: import("vue").PropType<boolean>;
|
|
322
|
+
default: boolean;
|
|
323
|
+
};
|
|
324
|
+
id: {
|
|
325
|
+
type: import("vue").PropType<string>;
|
|
326
|
+
default: undefined;
|
|
327
|
+
};
|
|
328
|
+
label: {
|
|
329
|
+
type: import("vue").PropType<string>;
|
|
330
|
+
default: undefined;
|
|
331
|
+
};
|
|
332
|
+
description: {
|
|
333
|
+
type: import("vue").PropType<string>;
|
|
334
|
+
default: undefined;
|
|
335
|
+
};
|
|
336
|
+
value: {
|
|
337
|
+
type: import("vue").PropType<any>;
|
|
338
|
+
default: null;
|
|
339
|
+
};
|
|
340
|
+
messages: {
|
|
341
|
+
type: import("vue").PropType<string | string[]>;
|
|
342
|
+
default: () => never[];
|
|
343
|
+
};
|
|
344
|
+
persistentMessages: {
|
|
345
|
+
type: import("vue").PropType<boolean>;
|
|
346
|
+
default: boolean;
|
|
347
|
+
};
|
|
348
|
+
active: {
|
|
349
|
+
type: import("vue").PropType<boolean>;
|
|
350
|
+
default: boolean;
|
|
351
|
+
};
|
|
352
|
+
autofocus: {
|
|
353
|
+
type: import("vue").PropType<boolean>;
|
|
354
|
+
default: boolean;
|
|
355
|
+
};
|
|
356
|
+
prefix: {
|
|
357
|
+
type: import("vue").PropType<string>;
|
|
358
|
+
default: undefined;
|
|
359
|
+
};
|
|
360
|
+
suffix: {
|
|
361
|
+
type: import("vue").PropType<string>;
|
|
362
|
+
default: undefined;
|
|
363
|
+
};
|
|
364
|
+
prependInnerIcon: {
|
|
365
|
+
type: import("vue").PropType<"link" | "filters" | "search" | "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" | "flag" | "globe" | "infinity" | "info-fill" | "info" | "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" | "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">;
|
|
366
|
+
default: undefined;
|
|
367
|
+
validator: (value: "link" | "filters" | "search" | "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" | "flag" | "globe" | "infinity" | "info-fill" | "info" | "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" | "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;
|
|
368
|
+
};
|
|
369
|
+
appendInnerIcon: {
|
|
370
|
+
type: import("vue").PropType<"link" | "filters" | "search" | "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" | "flag" | "globe" | "infinity" | "info-fill" | "info" | "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" | "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">;
|
|
371
|
+
default: undefined;
|
|
372
|
+
validator: (value: "link" | "filters" | "search" | "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" | "flag" | "globe" | "infinity" | "info-fill" | "info" | "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" | "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;
|
|
373
|
+
};
|
|
374
|
+
type: {
|
|
375
|
+
type: import("vue").PropType<"number" | "text" | "password" | "email" | "tel" | "url">;
|
|
376
|
+
default: string;
|
|
377
|
+
validator: (value: "number" | "text" | "password" | "email" | "tel" | "url") => boolean;
|
|
378
|
+
};
|
|
379
|
+
placeholder: {
|
|
380
|
+
type: import("vue").PropType<string>;
|
|
381
|
+
default: undefined;
|
|
382
|
+
};
|
|
383
|
+
counter: {
|
|
384
|
+
type: import("vue").PropType<boolean>;
|
|
385
|
+
default: boolean;
|
|
386
|
+
};
|
|
387
|
+
limit: {
|
|
388
|
+
type: import("vue").PropType<number>;
|
|
389
|
+
default: undefined;
|
|
390
|
+
};
|
|
391
|
+
clearable: {
|
|
392
|
+
type: import("vue").PropType<boolean>;
|
|
393
|
+
default: boolean;
|
|
394
|
+
};
|
|
395
|
+
'onClick:prependInner': {
|
|
396
|
+
type: import("vue").PropType<(...args: any[]) => any>;
|
|
397
|
+
default: undefined;
|
|
398
|
+
};
|
|
399
|
+
'onClick:appendInner': {
|
|
400
|
+
type: import("vue").PropType<(...args: any[]) => any>;
|
|
401
|
+
default: undefined;
|
|
402
|
+
};
|
|
403
|
+
}, {
|
|
404
|
+
id: import("vue").ComputedRef<string>;
|
|
405
|
+
model: import("vue").Ref<any> & {
|
|
406
|
+
readonly externalValue: any;
|
|
407
|
+
};
|
|
408
|
+
fieldRef: import("vue").Ref<HTMLElement | undefined>;
|
|
409
|
+
inputRef: import("vue").Ref<HTMLInputElement | undefined>;
|
|
410
|
+
validationRef: import("vue").Ref<import("vue").DefineComponent<{
|
|
411
|
+
'onClick:prepend': import("vue").PropType<(...args: any[]) => any>;
|
|
412
|
+
'onClick:append': import("vue").PropType<(...args: any[]) => any>;
|
|
413
|
+
focused: {
|
|
414
|
+
type: import("vue").PropType<boolean>;
|
|
415
|
+
default: boolean;
|
|
416
|
+
};
|
|
417
|
+
disabled: {
|
|
418
|
+
type: import("vue").PropType<boolean>;
|
|
419
|
+
default: boolean;
|
|
420
|
+
};
|
|
421
|
+
error: {
|
|
422
|
+
type: import("vue").PropType<boolean>;
|
|
423
|
+
default: boolean;
|
|
424
|
+
};
|
|
425
|
+
errorMessages: {
|
|
426
|
+
type: import("vue").PropType<string | string[]>;
|
|
427
|
+
default: () => never[];
|
|
428
|
+
};
|
|
429
|
+
maxErrors: {
|
|
430
|
+
type: import("vue").PropType<string | number>;
|
|
431
|
+
default: number;
|
|
432
|
+
};
|
|
433
|
+
name: {
|
|
434
|
+
type: import("vue").PropType<string | undefined>;
|
|
435
|
+
default: undefined;
|
|
436
|
+
};
|
|
437
|
+
readonly: {
|
|
438
|
+
type: import("vue").PropType<boolean>;
|
|
439
|
+
default: boolean;
|
|
440
|
+
};
|
|
441
|
+
rules: {
|
|
442
|
+
type: import("vue").PropType<import("../../composable").TValidationRule[]>;
|
|
443
|
+
default: () => never[];
|
|
444
|
+
};
|
|
445
|
+
modelValue: {
|
|
446
|
+
type: import("vue").PropType<any>;
|
|
447
|
+
default: null;
|
|
448
|
+
};
|
|
449
|
+
validateOn: {
|
|
450
|
+
type: import("vue").PropType<"input" | "blur" | "submit">;
|
|
451
|
+
default: string;
|
|
452
|
+
available: readonly ["blur", "input", "submit"];
|
|
453
|
+
validator: (value: "input" | "blur" | "submit") => boolean;
|
|
454
|
+
};
|
|
455
|
+
validationValue: {
|
|
456
|
+
type: import("vue").PropType<any>;
|
|
457
|
+
default: undefined;
|
|
458
|
+
};
|
|
459
|
+
hideMessages: {
|
|
460
|
+
type: import("vue").PropType<boolean>;
|
|
461
|
+
default: boolean;
|
|
462
|
+
};
|
|
463
|
+
prependIcon: {
|
|
464
|
+
type: import("vue").PropType<"link" | "filters" | "search" | "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" | "flag" | "globe" | "infinity" | "info-fill" | "info" | "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" | "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">;
|
|
465
|
+
default: undefined;
|
|
466
|
+
validator: (value: "link" | "filters" | "search" | "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" | "flag" | "globe" | "infinity" | "info-fill" | "info" | "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" | "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;
|
|
467
|
+
};
|
|
468
|
+
appendIcon: {
|
|
469
|
+
type: import("vue").PropType<"link" | "filters" | "search" | "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" | "flag" | "globe" | "infinity" | "info-fill" | "info" | "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" | "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">;
|
|
470
|
+
default: undefined;
|
|
471
|
+
validator: (value: "link" | "filters" | "search" | "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" | "flag" | "globe" | "infinity" | "info-fill" | "info" | "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" | "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;
|
|
472
|
+
};
|
|
473
|
+
id: {
|
|
474
|
+
type: import("vue").PropType<string>;
|
|
475
|
+
default: undefined;
|
|
476
|
+
};
|
|
477
|
+
label: {
|
|
478
|
+
type: import("vue").PropType<string>;
|
|
479
|
+
default: undefined;
|
|
480
|
+
};
|
|
481
|
+
description: {
|
|
482
|
+
type: import("vue").PropType<string>;
|
|
483
|
+
default: undefined;
|
|
484
|
+
};
|
|
485
|
+
value: {
|
|
486
|
+
type: import("vue").PropType<any>;
|
|
487
|
+
default: null;
|
|
488
|
+
};
|
|
489
|
+
messages: {
|
|
490
|
+
type: import("vue").PropType<string | string[]>;
|
|
491
|
+
default: () => never[];
|
|
492
|
+
};
|
|
493
|
+
persistentMessages: {
|
|
494
|
+
type: import("vue").PropType<boolean>;
|
|
495
|
+
default: boolean;
|
|
496
|
+
};
|
|
497
|
+
}, {
|
|
498
|
+
isFocused: import("vue").Ref<boolean>;
|
|
499
|
+
hasPrepend: import("vue").ComputedRef<boolean>;
|
|
500
|
+
hasAppend: import("vue").ComputedRef<boolean>;
|
|
501
|
+
hasDefault: import("vue").ComputedRef<boolean>;
|
|
502
|
+
hasMessages: import("vue").ComputedRef<number | boolean>;
|
|
503
|
+
slotProps: import("vue").ComputedRef<import("../../composable").IInputSlot>;
|
|
504
|
+
messagesId: import("vue").ComputedRef<string>;
|
|
505
|
+
messages: import("vue").ComputedRef<string | string[]>;
|
|
506
|
+
isValid: import("vue").ComputedRef<boolean | null>;
|
|
507
|
+
validationClasses: import("vue").ComputedRef<Record<string, boolean>>;
|
|
508
|
+
focusClasses: import("vue").ComputedRef<Record<string, boolean>>;
|
|
509
|
+
reset: () => void;
|
|
510
|
+
resetValidation: () => void;
|
|
511
|
+
validate: () => Promise<string[]>;
|
|
512
|
+
handleClickPrepend: (event: MouseEvent) => void;
|
|
513
|
+
handleClickAppend: (event: MouseEvent) => void;
|
|
514
|
+
}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {
|
|
515
|
+
'update:modelValue': (value: any) => boolean;
|
|
516
|
+
}, string, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<{
|
|
517
|
+
'onClick:prepend': import("vue").PropType<(...args: any[]) => any>;
|
|
518
|
+
'onClick:append': import("vue").PropType<(...args: any[]) => any>;
|
|
519
|
+
focused: {
|
|
520
|
+
type: import("vue").PropType<boolean>;
|
|
521
|
+
default: boolean;
|
|
522
|
+
};
|
|
523
|
+
disabled: {
|
|
524
|
+
type: import("vue").PropType<boolean>;
|
|
525
|
+
default: boolean;
|
|
526
|
+
};
|
|
527
|
+
error: {
|
|
528
|
+
type: import("vue").PropType<boolean>;
|
|
529
|
+
default: boolean;
|
|
530
|
+
};
|
|
531
|
+
errorMessages: {
|
|
532
|
+
type: import("vue").PropType<string | string[]>;
|
|
533
|
+
default: () => never[];
|
|
534
|
+
};
|
|
535
|
+
maxErrors: {
|
|
536
|
+
type: import("vue").PropType<string | number>;
|
|
537
|
+
default: number;
|
|
538
|
+
};
|
|
539
|
+
name: {
|
|
540
|
+
type: import("vue").PropType<string | undefined>;
|
|
541
|
+
default: undefined;
|
|
542
|
+
};
|
|
543
|
+
readonly: {
|
|
544
|
+
type: import("vue").PropType<boolean>;
|
|
545
|
+
default: boolean;
|
|
546
|
+
};
|
|
547
|
+
rules: {
|
|
548
|
+
type: import("vue").PropType<import("../../composable").TValidationRule[]>;
|
|
549
|
+
default: () => never[];
|
|
550
|
+
};
|
|
551
|
+
modelValue: {
|
|
552
|
+
type: import("vue").PropType<any>;
|
|
553
|
+
default: null;
|
|
554
|
+
};
|
|
555
|
+
validateOn: {
|
|
556
|
+
type: import("vue").PropType<"input" | "blur" | "submit">;
|
|
557
|
+
default: string;
|
|
558
|
+
available: readonly ["blur", "input", "submit"];
|
|
559
|
+
validator: (value: "input" | "blur" | "submit") => boolean;
|
|
560
|
+
};
|
|
561
|
+
validationValue: {
|
|
562
|
+
type: import("vue").PropType<any>;
|
|
563
|
+
default: undefined;
|
|
564
|
+
};
|
|
565
|
+
hideMessages: {
|
|
566
|
+
type: import("vue").PropType<boolean>;
|
|
567
|
+
default: boolean;
|
|
568
|
+
};
|
|
569
|
+
prependIcon: {
|
|
570
|
+
type: import("vue").PropType<"link" | "filters" | "search" | "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" | "flag" | "globe" | "infinity" | "info-fill" | "info" | "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" | "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">;
|
|
571
|
+
default: undefined;
|
|
572
|
+
validator: (value: "link" | "filters" | "search" | "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" | "flag" | "globe" | "infinity" | "info-fill" | "info" | "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" | "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;
|
|
573
|
+
};
|
|
574
|
+
appendIcon: {
|
|
575
|
+
type: import("vue").PropType<"link" | "filters" | "search" | "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" | "flag" | "globe" | "infinity" | "info-fill" | "info" | "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" | "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">;
|
|
576
|
+
default: undefined;
|
|
577
|
+
validator: (value: "link" | "filters" | "search" | "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" | "flag" | "globe" | "infinity" | "info-fill" | "info" | "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" | "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;
|
|
578
|
+
};
|
|
579
|
+
id: {
|
|
580
|
+
type: import("vue").PropType<string>;
|
|
581
|
+
default: undefined;
|
|
582
|
+
};
|
|
583
|
+
label: {
|
|
584
|
+
type: import("vue").PropType<string>;
|
|
585
|
+
default: undefined;
|
|
586
|
+
};
|
|
587
|
+
description: {
|
|
588
|
+
type: import("vue").PropType<string>;
|
|
589
|
+
default: undefined;
|
|
590
|
+
};
|
|
591
|
+
value: {
|
|
592
|
+
type: import("vue").PropType<any>;
|
|
593
|
+
default: null;
|
|
594
|
+
};
|
|
595
|
+
messages: {
|
|
596
|
+
type: import("vue").PropType<string | string[]>;
|
|
597
|
+
default: () => never[];
|
|
598
|
+
};
|
|
599
|
+
persistentMessages: {
|
|
600
|
+
type: import("vue").PropType<boolean>;
|
|
601
|
+
default: boolean;
|
|
602
|
+
};
|
|
603
|
+
}>> & {
|
|
604
|
+
"onUpdate:modelValue"?: ((value: any) => any) | undefined;
|
|
605
|
+
}, {
|
|
606
|
+
name: string | undefined;
|
|
607
|
+
description: string;
|
|
608
|
+
disabled: boolean;
|
|
609
|
+
value: any;
|
|
610
|
+
error: boolean;
|
|
611
|
+
prependIcon: "link" | "filters" | "search" | "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" | "flag" | "globe" | "infinity" | "info-fill" | "info" | "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" | "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";
|
|
612
|
+
appendIcon: "link" | "filters" | "search" | "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" | "flag" | "globe" | "infinity" | "info-fill" | "info" | "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" | "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";
|
|
613
|
+
messages: string | string[];
|
|
614
|
+
id: string;
|
|
615
|
+
label: string;
|
|
616
|
+
persistentMessages: boolean;
|
|
617
|
+
errorMessages: string | string[];
|
|
618
|
+
maxErrors: string | number;
|
|
619
|
+
readonly: boolean;
|
|
620
|
+
rules: import("../../composable").TValidationRule[];
|
|
621
|
+
modelValue: any;
|
|
622
|
+
validateOn: "input" | "blur" | "submit";
|
|
623
|
+
validationValue: any;
|
|
624
|
+
hideMessages: boolean;
|
|
625
|
+
focused: boolean;
|
|
626
|
+
}> | undefined>;
|
|
627
|
+
isFocused: import("vue").Ref<boolean>;
|
|
628
|
+
rootAttrs: import("vue").Ref<{}>;
|
|
629
|
+
inputAttrs: import("vue").Ref<{}>;
|
|
630
|
+
inputProps: import("vue").Ref<{
|
|
631
|
+
readonly type?: "number" | "text" | "password" | "email" | "tel" | "url" | undefined;
|
|
632
|
+
readonly disabled?: boolean | undefined;
|
|
633
|
+
readonly value?: any;
|
|
634
|
+
readonly error?: boolean | undefined;
|
|
635
|
+
readonly loading?: boolean | undefined;
|
|
636
|
+
readonly messages?: string | string[] | undefined;
|
|
637
|
+
readonly active?: boolean | undefined;
|
|
638
|
+
readonly persistentMessages?: boolean | undefined;
|
|
639
|
+
readonly errorMessages?: string | string[] | undefined;
|
|
640
|
+
readonly maxErrors?: string | number | undefined;
|
|
641
|
+
readonly readonly?: boolean | undefined;
|
|
642
|
+
readonly rules?: (import("../../composable").TValidationResult | ((value: any) => import("../../composable").TValidationResult) | ((value: any) => PromiseLike<import("../../composable").TValidationResult>) | {
|
|
643
|
+
then: <TResult1 = import("../../composable").TValidationResult, TResult2 = never>(onfulfilled?: ((value: import("../../composable").TValidationResult) => TResult1 | PromiseLike<TResult1>) | null | undefined, onrejected?: ((reason: any) => TResult2 | PromiseLike<TResult2>) | null | undefined) => PromiseLike<TResult1 | TResult2>;
|
|
644
|
+
})[] | undefined;
|
|
645
|
+
readonly modelValue?: any;
|
|
646
|
+
readonly validateOn?: "input" | "blur" | "submit" | undefined;
|
|
647
|
+
readonly hideMessages?: boolean | undefined;
|
|
648
|
+
readonly focused?: boolean | undefined;
|
|
649
|
+
readonly autofocus?: boolean | undefined;
|
|
650
|
+
readonly counter?: boolean | undefined;
|
|
651
|
+
readonly clearable?: boolean | undefined;
|
|
652
|
+
readonly name?: string | undefined;
|
|
653
|
+
readonly description?: string | undefined;
|
|
654
|
+
readonly prependIcon?: "link" | "filters" | "search" | "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" | "flag" | "globe" | "infinity" | "info-fill" | "info" | "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" | "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" | undefined;
|
|
655
|
+
readonly appendIcon?: "link" | "filters" | "search" | "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" | "flag" | "globe" | "infinity" | "info-fill" | "info" | "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" | "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" | undefined;
|
|
656
|
+
readonly id?: string | undefined;
|
|
657
|
+
readonly label?: string | undefined;
|
|
658
|
+
readonly validationValue?: any;
|
|
659
|
+
readonly 'onClick:prepend'?: (((...args: any[]) => any) & ((event: MouseEvent) => any)) | undefined;
|
|
660
|
+
readonly 'onClick:append'?: (((...args: any[]) => any) & ((event: MouseEvent) => any)) | undefined;
|
|
661
|
+
readonly prefix?: string | undefined;
|
|
662
|
+
readonly suffix?: string | undefined;
|
|
663
|
+
readonly prependInnerIcon?: "link" | "filters" | "search" | "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" | "flag" | "globe" | "infinity" | "info-fill" | "info" | "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" | "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" | undefined;
|
|
664
|
+
readonly appendInnerIcon?: "link" | "filters" | "search" | "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" | "flag" | "globe" | "infinity" | "info-fill" | "info" | "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" | "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" | undefined;
|
|
665
|
+
readonly placeholder?: string | undefined;
|
|
666
|
+
readonly limit?: number | undefined;
|
|
667
|
+
readonly 'onClick:prependInner'?: (((...args: any[]) => any) & ((event: MouseEvent) => any)) | undefined;
|
|
668
|
+
readonly 'onClick:appendInner'?: (((...args: any[]) => any) & ((event: MouseEvent) => any)) | undefined;
|
|
669
|
+
readonly "onUpdate:modelValue"?: ((value: string) => any) | undefined;
|
|
670
|
+
readonly "onUpdate:focused"?: ((value: boolean) => any) | undefined;
|
|
671
|
+
readonly "onClick:clear"?: ((event: MouseEvent) => any) | undefined;
|
|
672
|
+
readonly "onClick:control"?: ((event: MouseEvent) => any) | undefined;
|
|
673
|
+
readonly "onMousedown:control"?: ((event: MouseEvent) => any) | undefined;
|
|
674
|
+
}>;
|
|
675
|
+
hasLabel: import("vue").ComputedRef<boolean>;
|
|
676
|
+
hasDescription: import("vue").ComputedRef<boolean>;
|
|
677
|
+
hasPrepend: import("vue").ComputedRef<boolean>;
|
|
678
|
+
hasAppend: import("vue").ComputedRef<boolean>;
|
|
679
|
+
hasPrependInnerIcon: import("vue").ComputedRef<boolean>;
|
|
680
|
+
hasAppendInnerIcon: import("vue").ComputedRef<boolean>;
|
|
681
|
+
hasLoading: import("vue").ComputedRef<boolean>;
|
|
682
|
+
hasClear: import("vue").ComputedRef<boolean>;
|
|
683
|
+
counterValue: import("vue").ComputedRef<any>;
|
|
684
|
+
iconClasses: import("vue").ComputedRef<Record<string, boolean>>;
|
|
685
|
+
inputClasses: import("vue").ComputedRef<{
|
|
686
|
+
'cds-text-input--has-prefix': boolean;
|
|
687
|
+
'cds-text-input--has-suffix': boolean;
|
|
688
|
+
}>;
|
|
689
|
+
fieldClasses: import("vue").ComputedRef<Record<string, boolean>>;
|
|
690
|
+
loadingClasses: import("vue").ComputedRef<string | undefined>;
|
|
691
|
+
onBlur: () => void;
|
|
692
|
+
onFocus: () => void;
|
|
693
|
+
onInput: (event: Event) => void;
|
|
694
|
+
onClear: (event: MouseEvent) => void;
|
|
695
|
+
onControlClick: (event: MouseEvent) => void;
|
|
696
|
+
onControlMousedown: (event: MouseEvent) => void;
|
|
697
|
+
handleClickPrependInner: (event: MouseEvent) => void;
|
|
698
|
+
handleClickAppendInner: (event: MouseEvent) => void;
|
|
699
|
+
}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {
|
|
700
|
+
'update:focused': (value: boolean) => true;
|
|
701
|
+
'update:modelValue': (value: string) => true;
|
|
702
|
+
'click:clear': (event: MouseEvent) => true;
|
|
703
|
+
'click:prepend': (event: MouseEvent) => true;
|
|
704
|
+
'click:append': (event: MouseEvent) => true;
|
|
705
|
+
'click:prependInner': (event: MouseEvent) => true;
|
|
706
|
+
'click:appendInner': (event: MouseEvent) => true;
|
|
707
|
+
'click:control': (event: MouseEvent) => true;
|
|
708
|
+
'mousedown:control': (event: MouseEvent) => true;
|
|
709
|
+
}, string, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<{
|
|
710
|
+
loading: {
|
|
711
|
+
type: import("vue").PropType<boolean>;
|
|
712
|
+
default: boolean;
|
|
713
|
+
};
|
|
714
|
+
focused: {
|
|
715
|
+
type: import("vue").PropType<boolean>;
|
|
716
|
+
default: boolean;
|
|
717
|
+
};
|
|
718
|
+
'onClick:prepend': {
|
|
719
|
+
type: import("vue").PropType<(...args: any[]) => any>;
|
|
720
|
+
default: undefined;
|
|
721
|
+
};
|
|
722
|
+
'onClick:append': {
|
|
723
|
+
type: import("vue").PropType<(...args: any[]) => any>;
|
|
724
|
+
default: undefined;
|
|
725
|
+
};
|
|
726
|
+
prependIcon: {
|
|
727
|
+
type: import("vue").PropType<"link" | "filters" | "search" | "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" | "flag" | "globe" | "infinity" | "info-fill" | "info" | "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" | "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">;
|
|
728
|
+
default: undefined;
|
|
729
|
+
validator: (value: "link" | "filters" | "search" | "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" | "flag" | "globe" | "infinity" | "info-fill" | "info" | "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" | "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;
|
|
730
|
+
};
|
|
731
|
+
appendIcon: {
|
|
732
|
+
type: import("vue").PropType<"link" | "filters" | "search" | "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" | "flag" | "globe" | "infinity" | "info-fill" | "info" | "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" | "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">;
|
|
733
|
+
default: undefined;
|
|
734
|
+
validator: (value: "link" | "filters" | "search" | "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" | "flag" | "globe" | "infinity" | "info-fill" | "info" | "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" | "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;
|
|
735
|
+
};
|
|
736
|
+
disabled: {
|
|
737
|
+
type: import("vue").PropType<boolean>;
|
|
738
|
+
default: boolean;
|
|
739
|
+
};
|
|
740
|
+
error: {
|
|
741
|
+
type: import("vue").PropType<boolean>;
|
|
742
|
+
default: boolean;
|
|
743
|
+
};
|
|
744
|
+
errorMessages: {
|
|
745
|
+
type: import("vue").PropType<string | string[]>;
|
|
746
|
+
default: () => never[];
|
|
747
|
+
};
|
|
748
|
+
maxErrors: {
|
|
749
|
+
type: import("vue").PropType<string | number>;
|
|
750
|
+
default: number;
|
|
751
|
+
};
|
|
752
|
+
name: {
|
|
753
|
+
type: import("vue").PropType<string | undefined>;
|
|
754
|
+
default: undefined;
|
|
755
|
+
};
|
|
756
|
+
readonly: {
|
|
757
|
+
type: import("vue").PropType<boolean>;
|
|
758
|
+
default: boolean;
|
|
759
|
+
};
|
|
760
|
+
rules: {
|
|
761
|
+
type: import("vue").PropType<import("../../composable").TValidationRule[]>;
|
|
762
|
+
default: () => never[];
|
|
763
|
+
};
|
|
764
|
+
modelValue: {
|
|
765
|
+
type: import("vue").PropType<any>;
|
|
766
|
+
default: null;
|
|
767
|
+
};
|
|
768
|
+
validateOn: {
|
|
769
|
+
type: import("vue").PropType<"input" | "blur" | "submit">;
|
|
770
|
+
default: string;
|
|
771
|
+
available: readonly ["blur", "input", "submit"];
|
|
772
|
+
validator: (value: "input" | "blur" | "submit") => boolean;
|
|
773
|
+
};
|
|
774
|
+
validationValue: {
|
|
775
|
+
type: import("vue").PropType<any>;
|
|
776
|
+
default: undefined;
|
|
777
|
+
};
|
|
778
|
+
hideMessages: {
|
|
779
|
+
type: import("vue").PropType<boolean>;
|
|
780
|
+
default: boolean;
|
|
781
|
+
};
|
|
782
|
+
id: {
|
|
783
|
+
type: import("vue").PropType<string>;
|
|
784
|
+
default: undefined;
|
|
785
|
+
};
|
|
786
|
+
label: {
|
|
787
|
+
type: import("vue").PropType<string>;
|
|
788
|
+
default: undefined;
|
|
789
|
+
};
|
|
790
|
+
description: {
|
|
791
|
+
type: import("vue").PropType<string>;
|
|
792
|
+
default: undefined;
|
|
793
|
+
};
|
|
794
|
+
value: {
|
|
795
|
+
type: import("vue").PropType<any>;
|
|
796
|
+
default: null;
|
|
797
|
+
};
|
|
798
|
+
messages: {
|
|
799
|
+
type: import("vue").PropType<string | string[]>;
|
|
800
|
+
default: () => never[];
|
|
801
|
+
};
|
|
802
|
+
persistentMessages: {
|
|
803
|
+
type: import("vue").PropType<boolean>;
|
|
804
|
+
default: boolean;
|
|
805
|
+
};
|
|
806
|
+
active: {
|
|
807
|
+
type: import("vue").PropType<boolean>;
|
|
808
|
+
default: boolean;
|
|
809
|
+
};
|
|
810
|
+
autofocus: {
|
|
811
|
+
type: import("vue").PropType<boolean>;
|
|
812
|
+
default: boolean;
|
|
813
|
+
};
|
|
814
|
+
prefix: {
|
|
815
|
+
type: import("vue").PropType<string>;
|
|
816
|
+
default: undefined;
|
|
817
|
+
};
|
|
818
|
+
suffix: {
|
|
819
|
+
type: import("vue").PropType<string>;
|
|
820
|
+
default: undefined;
|
|
821
|
+
};
|
|
822
|
+
prependInnerIcon: {
|
|
823
|
+
type: import("vue").PropType<"link" | "filters" | "search" | "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" | "flag" | "globe" | "infinity" | "info-fill" | "info" | "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" | "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">;
|
|
824
|
+
default: undefined;
|
|
825
|
+
validator: (value: "link" | "filters" | "search" | "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" | "flag" | "globe" | "infinity" | "info-fill" | "info" | "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" | "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;
|
|
826
|
+
};
|
|
827
|
+
appendInnerIcon: {
|
|
828
|
+
type: import("vue").PropType<"link" | "filters" | "search" | "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" | "flag" | "globe" | "infinity" | "info-fill" | "info" | "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" | "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">;
|
|
829
|
+
default: undefined;
|
|
830
|
+
validator: (value: "link" | "filters" | "search" | "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" | "flag" | "globe" | "infinity" | "info-fill" | "info" | "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" | "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;
|
|
831
|
+
};
|
|
832
|
+
type: {
|
|
833
|
+
type: import("vue").PropType<"number" | "text" | "password" | "email" | "tel" | "url">;
|
|
834
|
+
default: string;
|
|
835
|
+
validator: (value: "number" | "text" | "password" | "email" | "tel" | "url") => boolean;
|
|
836
|
+
};
|
|
837
|
+
placeholder: {
|
|
838
|
+
type: import("vue").PropType<string>;
|
|
839
|
+
default: undefined;
|
|
840
|
+
};
|
|
841
|
+
counter: {
|
|
842
|
+
type: import("vue").PropType<boolean>;
|
|
843
|
+
default: boolean;
|
|
844
|
+
};
|
|
845
|
+
limit: {
|
|
846
|
+
type: import("vue").PropType<number>;
|
|
847
|
+
default: undefined;
|
|
848
|
+
};
|
|
849
|
+
clearable: {
|
|
850
|
+
type: import("vue").PropType<boolean>;
|
|
851
|
+
default: boolean;
|
|
852
|
+
};
|
|
853
|
+
'onClick:prependInner': {
|
|
854
|
+
type: import("vue").PropType<(...args: any[]) => any>;
|
|
855
|
+
default: undefined;
|
|
856
|
+
};
|
|
857
|
+
'onClick:appendInner': {
|
|
858
|
+
type: import("vue").PropType<(...args: any[]) => any>;
|
|
859
|
+
default: undefined;
|
|
860
|
+
};
|
|
861
|
+
}>> & {
|
|
862
|
+
"onUpdate:modelValue"?: ((value: string) => any) | undefined;
|
|
863
|
+
"onClick:prepend"?: ((event: MouseEvent) => any) | undefined;
|
|
864
|
+
"onClick:append"?: ((event: MouseEvent) => any) | undefined;
|
|
865
|
+
"onUpdate:focused"?: ((value: boolean) => any) | undefined;
|
|
866
|
+
"onClick:prependInner"?: ((event: MouseEvent) => any) | undefined;
|
|
867
|
+
"onClick:appendInner"?: ((event: MouseEvent) => any) | undefined;
|
|
868
|
+
"onClick:clear"?: ((event: MouseEvent) => any) | undefined;
|
|
869
|
+
"onClick:control"?: ((event: MouseEvent) => any) | undefined;
|
|
870
|
+
"onMousedown:control"?: ((event: MouseEvent) => any) | undefined;
|
|
871
|
+
}, {
|
|
872
|
+
name: string | undefined;
|
|
873
|
+
type: "number" | "text" | "password" | "email" | "tel" | "url";
|
|
874
|
+
description: string;
|
|
875
|
+
disabled: boolean;
|
|
876
|
+
value: any;
|
|
877
|
+
error: boolean;
|
|
878
|
+
prependIcon: "link" | "filters" | "search" | "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" | "flag" | "globe" | "infinity" | "info-fill" | "info" | "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" | "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";
|
|
879
|
+
appendIcon: "link" | "filters" | "search" | "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" | "flag" | "globe" | "infinity" | "info-fill" | "info" | "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" | "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";
|
|
880
|
+
loading: boolean;
|
|
881
|
+
messages: string | string[];
|
|
882
|
+
active: boolean;
|
|
883
|
+
id: string;
|
|
884
|
+
label: string;
|
|
885
|
+
persistentMessages: boolean;
|
|
886
|
+
errorMessages: string | string[];
|
|
887
|
+
maxErrors: string | number;
|
|
888
|
+
readonly: boolean;
|
|
889
|
+
rules: import("../../composable").TValidationRule[];
|
|
890
|
+
modelValue: any;
|
|
891
|
+
validateOn: "input" | "blur" | "submit";
|
|
892
|
+
validationValue: any;
|
|
893
|
+
hideMessages: boolean;
|
|
894
|
+
focused: boolean;
|
|
895
|
+
'onClick:prepend': (...args: any[]) => any;
|
|
896
|
+
'onClick:append': (...args: any[]) => any;
|
|
897
|
+
autofocus: boolean;
|
|
898
|
+
prefix: string;
|
|
899
|
+
suffix: string;
|
|
900
|
+
prependInnerIcon: "link" | "filters" | "search" | "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" | "flag" | "globe" | "infinity" | "info-fill" | "info" | "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" | "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";
|
|
901
|
+
appendInnerIcon: "link" | "filters" | "search" | "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" | "flag" | "globe" | "infinity" | "info-fill" | "info" | "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" | "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";
|
|
902
|
+
placeholder: string;
|
|
903
|
+
counter: boolean;
|
|
904
|
+
limit: number;
|
|
905
|
+
clearable: boolean;
|
|
906
|
+
'onClick:prependInner': (...args: any[]) => any;
|
|
907
|
+
'onClick:appendInner': (...args: any[]) => any;
|
|
908
|
+
}> | undefined>;
|
|
909
|
+
menuRef: import("vue").Ref<import("vue").DefineComponent<{
|
|
910
|
+
transition: {
|
|
911
|
+
type: import("vue").PropType<string | boolean | (import("vue").TransitionProps & {
|
|
912
|
+
component?: import("vue").Component<any, any, any, import("vue").ComputedOptions, import("vue").MethodOptions> | undefined;
|
|
913
|
+
})>;
|
|
914
|
+
default: string;
|
|
915
|
+
validator: (value: unknown) => boolean;
|
|
916
|
+
};
|
|
917
|
+
height: {
|
|
918
|
+
type: import("vue").PropType<string | number>;
|
|
919
|
+
default: string;
|
|
920
|
+
};
|
|
921
|
+
maxHeight: {
|
|
922
|
+
type: import("vue").PropType<string | number>;
|
|
923
|
+
default: string;
|
|
924
|
+
};
|
|
925
|
+
maxWidth: {
|
|
926
|
+
type: import("vue").PropType<string | number>;
|
|
927
|
+
default: string;
|
|
928
|
+
};
|
|
929
|
+
minHeight: {
|
|
930
|
+
type: import("vue").PropType<string | number>;
|
|
931
|
+
default: string;
|
|
932
|
+
};
|
|
933
|
+
minWidth: {
|
|
934
|
+
type: import("vue").PropType<string | number>;
|
|
935
|
+
default: string;
|
|
936
|
+
};
|
|
937
|
+
width: {
|
|
938
|
+
type: import("vue").PropType<string | number>;
|
|
939
|
+
default: string;
|
|
940
|
+
};
|
|
941
|
+
eager: {
|
|
942
|
+
type: import("vue").PropType<boolean>;
|
|
943
|
+
default: boolean;
|
|
944
|
+
};
|
|
945
|
+
scrollStrategy: Omit<{
|
|
946
|
+
type: import("vue").PropType<"none" | "close" | "block" | "reposition" | ((data: import("../CdsOverlay/composable").IScrollStrategyData, props: import("../CdsOverlay/composable").IScrollStrategyProps, scope: import("vue").EffectScope) => void)>;
|
|
947
|
+
default: string;
|
|
948
|
+
validator: (value: any) => boolean;
|
|
949
|
+
}, "default" | "type"> & {
|
|
950
|
+
type: import("vue").PropType<NonNullable<"none" | "close" | "block" | "reposition" | ((data: import("../CdsOverlay/composable").IScrollStrategyData, props: import("../CdsOverlay/composable").IScrollStrategyProps, scope: import("vue").EffectScope) => void)>>;
|
|
951
|
+
default: NonNullable<"none" | "close" | "block" | "reposition" | ((data: import("../CdsOverlay/composable").IScrollStrategyData, props: import("../CdsOverlay/composable").IScrollStrategyProps, scope: import("vue").EffectScope) => void)>;
|
|
952
|
+
};
|
|
953
|
+
locationStrategy: Omit<{
|
|
954
|
+
type: import("vue").PropType<"static" | "connected" | ((data: import("../CdsOverlay/composable").ILocationStrategyData, props: import("../CdsOverlay/composable").ILocationStrategyProps, contentStyles: import("vue").Ref<Record<string, string>>) => {
|
|
955
|
+
updateLocation: (event: Event) => void;
|
|
956
|
+
} | undefined)>;
|
|
957
|
+
default: string;
|
|
958
|
+
validator: (value: any) => boolean;
|
|
959
|
+
}, "default" | "type"> & {
|
|
960
|
+
type: import("vue").PropType<NonNullable<"static" | "connected" | ((data: import("../CdsOverlay/composable").ILocationStrategyData, props: import("../CdsOverlay/composable").ILocationStrategyProps, contentStyles: import("vue").Ref<Record<string, string>>) => {
|
|
961
|
+
updateLocation: (event: Event) => void;
|
|
962
|
+
} | undefined)>>;
|
|
963
|
+
default: NonNullable<"static" | "connected" | ((data: import("../CdsOverlay/composable").ILocationStrategyData, props: import("../CdsOverlay/composable").ILocationStrategyProps, contentStyles: import("vue").Ref<Record<string, string>>) => {
|
|
964
|
+
updateLocation: (event: Event) => void;
|
|
965
|
+
} | undefined)>;
|
|
966
|
+
};
|
|
967
|
+
location: {
|
|
968
|
+
type: import("vue").PropType<import('../../utils').TAnchor>;
|
|
969
|
+
default: string;
|
|
970
|
+
};
|
|
971
|
+
origin: {
|
|
972
|
+
type: import("vue").PropType<import('../../utils').TAnchor | "auto" | "overlap">;
|
|
973
|
+
default: string;
|
|
974
|
+
};
|
|
975
|
+
offset: {
|
|
976
|
+
type: import("vue").PropType<string | number | number[]>;
|
|
977
|
+
default: null;
|
|
978
|
+
};
|
|
979
|
+
closeDelay: Omit<{
|
|
980
|
+
type: import("vue").PropType<string | number>;
|
|
981
|
+
default: null;
|
|
982
|
+
}, "default" | "type"> & {
|
|
983
|
+
type: import("vue").PropType<NonNullable<string | number>>;
|
|
984
|
+
default: NonNullable<string | number>;
|
|
985
|
+
};
|
|
986
|
+
openDelay: Omit<{
|
|
987
|
+
type: import("vue").PropType<string | number>;
|
|
988
|
+
default: null;
|
|
989
|
+
}, "default" | "type"> & {
|
|
990
|
+
type: import("vue").PropType<NonNullable<string | number>>;
|
|
991
|
+
default: NonNullable<string | number>;
|
|
992
|
+
};
|
|
993
|
+
activator: {
|
|
994
|
+
type: import("vue").PropType<string | import("vue").ComponentPublicInstance<{}, {}, {}, {}, {}, {}, {}, {}, false, import("vue").ComponentOptionsBase<any, any, any, any, any, any, any, any, any, {}, {}, string>, {}> | Element>;
|
|
995
|
+
default: null;
|
|
996
|
+
};
|
|
997
|
+
activatorProps: {
|
|
998
|
+
type: import("vue").PropType<Record<string, any>>;
|
|
999
|
+
default: () => {};
|
|
1000
|
+
};
|
|
1001
|
+
openOnClick: {
|
|
1002
|
+
type: import("vue").PropType<boolean | undefined>;
|
|
1003
|
+
default: undefined;
|
|
1004
|
+
};
|
|
1005
|
+
openOnHover: {
|
|
1006
|
+
type: import("vue").PropType<boolean>;
|
|
1007
|
+
default: boolean;
|
|
1008
|
+
};
|
|
1009
|
+
openOnFocus: {
|
|
1010
|
+
type: import("vue").PropType<boolean | undefined>;
|
|
1011
|
+
default: undefined;
|
|
1012
|
+
};
|
|
1013
|
+
closeOnContentClick: Omit<{
|
|
1014
|
+
type: import("vue").PropType<boolean>;
|
|
1015
|
+
default: boolean;
|
|
1016
|
+
}, "default" | "type"> & {
|
|
1017
|
+
type: import("vue").PropType<boolean>;
|
|
1018
|
+
default: boolean;
|
|
1019
|
+
};
|
|
1020
|
+
attach: {
|
|
1021
|
+
type: import("vue").PropType<string | boolean | Element>;
|
|
1022
|
+
default: boolean;
|
|
1023
|
+
};
|
|
1024
|
+
contained: {
|
|
1025
|
+
type: import("vue").PropType<boolean>;
|
|
1026
|
+
default: boolean;
|
|
1027
|
+
};
|
|
1028
|
+
disabled: {
|
|
1029
|
+
type: import("vue").PropType<boolean>;
|
|
1030
|
+
default: boolean;
|
|
1031
|
+
};
|
|
1032
|
+
persistent: {
|
|
1033
|
+
type: import("vue").PropType<boolean>;
|
|
1034
|
+
default: boolean;
|
|
1035
|
+
};
|
|
1036
|
+
scrim: Omit<{
|
|
1037
|
+
type: import("vue").PropType<string | boolean>;
|
|
1038
|
+
default: boolean;
|
|
1039
|
+
}, "default" | "type"> & {
|
|
1040
|
+
type: import("vue").PropType<NonNullable<string | boolean>>;
|
|
1041
|
+
default: NonNullable<string | boolean>;
|
|
1042
|
+
};
|
|
1043
|
+
modelValue: {
|
|
1044
|
+
type: import("vue").PropType<boolean>;
|
|
1045
|
+
default: boolean;
|
|
1046
|
+
};
|
|
1047
|
+
closeOnBack: {
|
|
1048
|
+
type: import("vue").PropType<boolean>;
|
|
1049
|
+
default: boolean;
|
|
1050
|
+
};
|
|
1051
|
+
zIndex: {
|
|
1052
|
+
type: import("vue").PropType<string | number>;
|
|
1053
|
+
default: number;
|
|
1054
|
+
};
|
|
1055
|
+
contentClasses: {
|
|
1056
|
+
type: import("vue").PropType<string | string[] | Record<string, boolean>>;
|
|
1057
|
+
default: null;
|
|
1058
|
+
};
|
|
1059
|
+
contentProps: {
|
|
1060
|
+
type: import("vue").PropType<Record<string, unknown>>;
|
|
1061
|
+
default: () => {};
|
|
1062
|
+
};
|
|
1063
|
+
id: {
|
|
1064
|
+
type: import("vue").PropType<string>;
|
|
1065
|
+
default: undefined;
|
|
1066
|
+
};
|
|
1067
|
+
}, {
|
|
1068
|
+
overlay: import("vue").Ref<import("vue").DefineComponent<{
|
|
1069
|
+
transition: {
|
|
1070
|
+
type: import("vue").PropType<string | boolean | (import("vue").TransitionProps & {
|
|
1071
|
+
component?: import("vue").Component<any, any, any, import("vue").ComputedOptions, import("vue").MethodOptions> | undefined;
|
|
1072
|
+
})>;
|
|
1073
|
+
default: string;
|
|
1074
|
+
validator: (value: unknown) => boolean;
|
|
1075
|
+
};
|
|
1076
|
+
eager: {
|
|
1077
|
+
type: import("vue").PropType<boolean>;
|
|
1078
|
+
default: boolean;
|
|
1079
|
+
};
|
|
1080
|
+
scrollStrategy: {
|
|
1081
|
+
type: import("vue").PropType<"none" | "close" | "block" | "reposition" | ((data: import("../CdsOverlay/composable").IScrollStrategyData, props: import("../CdsOverlay/composable").IScrollStrategyProps, scope: import("vue").EffectScope) => void)>;
|
|
1082
|
+
default: string;
|
|
1083
|
+
validator: (value: any) => boolean;
|
|
1084
|
+
};
|
|
1085
|
+
locationStrategy: {
|
|
1086
|
+
type: import("vue").PropType<"static" | "connected" | ((data: import("../CdsOverlay/composable").ILocationStrategyData, props: import("../CdsOverlay/composable").ILocationStrategyProps, contentStyles: import("vue").Ref<Record<string, string>>) => {
|
|
1087
|
+
updateLocation: (event: Event) => void;
|
|
1088
|
+
} | undefined)>;
|
|
1089
|
+
default: string;
|
|
1090
|
+
validator: (value: any) => boolean;
|
|
1091
|
+
};
|
|
1092
|
+
location: {
|
|
1093
|
+
type: import("vue").PropType<import('../../utils').TAnchor>;
|
|
1094
|
+
default: string;
|
|
1095
|
+
};
|
|
1096
|
+
origin: {
|
|
1097
|
+
type: import("vue").PropType<import('../../utils').TAnchor | "auto" | "overlap">;
|
|
1098
|
+
default: string;
|
|
1099
|
+
};
|
|
1100
|
+
offset: {
|
|
1101
|
+
type: import("vue").PropType<string | number | number[]>;
|
|
1102
|
+
default: null;
|
|
1103
|
+
};
|
|
1104
|
+
height: {
|
|
1105
|
+
type: import("vue").PropType<string | number>;
|
|
1106
|
+
default: string;
|
|
1107
|
+
};
|
|
1108
|
+
maxHeight: {
|
|
1109
|
+
type: import("vue").PropType<string | number>;
|
|
1110
|
+
default: string;
|
|
1111
|
+
};
|
|
1112
|
+
maxWidth: {
|
|
1113
|
+
type: import("vue").PropType<string | number>;
|
|
1114
|
+
default: string;
|
|
1115
|
+
};
|
|
1116
|
+
minHeight: {
|
|
1117
|
+
type: import("vue").PropType<string | number>;
|
|
1118
|
+
default: string;
|
|
1119
|
+
};
|
|
1120
|
+
minWidth: {
|
|
1121
|
+
type: import("vue").PropType<string | number>;
|
|
1122
|
+
default: string;
|
|
1123
|
+
};
|
|
1124
|
+
width: {
|
|
1125
|
+
type: import("vue").PropType<string | number>;
|
|
1126
|
+
default: string;
|
|
1127
|
+
};
|
|
1128
|
+
closeDelay: {
|
|
1129
|
+
type: import("vue").PropType<string | number>;
|
|
1130
|
+
default: null;
|
|
1131
|
+
};
|
|
1132
|
+
openDelay: {
|
|
1133
|
+
type: import("vue").PropType<string | number>;
|
|
1134
|
+
default: null;
|
|
1135
|
+
};
|
|
1136
|
+
activator: {
|
|
1137
|
+
type: import("vue").PropType<string | import("vue").ComponentPublicInstance<{}, {}, {}, {}, {}, {}, {}, {}, false, import("vue").ComponentOptionsBase<any, any, any, any, any, any, any, any, any, {}, {}, string>, {}> | Element>;
|
|
1138
|
+
default: null;
|
|
1139
|
+
};
|
|
1140
|
+
activatorProps: {
|
|
1141
|
+
type: import("vue").PropType<Record<string, any>>;
|
|
1142
|
+
default: () => {};
|
|
1143
|
+
};
|
|
1144
|
+
openOnClick: {
|
|
1145
|
+
type: import("vue").PropType<boolean | undefined>;
|
|
1146
|
+
default: undefined;
|
|
1147
|
+
};
|
|
1148
|
+
openOnHover: {
|
|
1149
|
+
type: import("vue").PropType<boolean>;
|
|
1150
|
+
default: boolean;
|
|
1151
|
+
};
|
|
1152
|
+
openOnFocus: {
|
|
1153
|
+
type: import("vue").PropType<boolean | undefined>;
|
|
1154
|
+
default: undefined;
|
|
1155
|
+
};
|
|
1156
|
+
closeOnContentClick: {
|
|
1157
|
+
type: import("vue").PropType<boolean>;
|
|
1158
|
+
default: boolean;
|
|
1159
|
+
};
|
|
1160
|
+
attach: {
|
|
1161
|
+
type: import("vue").PropType<string | boolean | Element>;
|
|
1162
|
+
default: boolean;
|
|
1163
|
+
};
|
|
1164
|
+
contained: {
|
|
1165
|
+
type: import("vue").PropType<boolean>;
|
|
1166
|
+
default: boolean;
|
|
1167
|
+
};
|
|
1168
|
+
disabled: {
|
|
1169
|
+
type: import("vue").PropType<boolean>;
|
|
1170
|
+
default: boolean;
|
|
1171
|
+
};
|
|
1172
|
+
persistent: {
|
|
1173
|
+
type: import("vue").PropType<boolean>;
|
|
1174
|
+
default: boolean;
|
|
1175
|
+
};
|
|
1176
|
+
scrim: {
|
|
1177
|
+
type: import("vue").PropType<string | boolean>;
|
|
1178
|
+
default: boolean;
|
|
1179
|
+
};
|
|
1180
|
+
modelValue: {
|
|
1181
|
+
type: import("vue").PropType<boolean>;
|
|
1182
|
+
default: boolean;
|
|
1183
|
+
};
|
|
1184
|
+
closeOnBack: {
|
|
1185
|
+
type: import("vue").PropType<boolean>;
|
|
1186
|
+
default: boolean;
|
|
1187
|
+
};
|
|
1188
|
+
zIndex: {
|
|
1189
|
+
type: import("vue").PropType<string | number>;
|
|
1190
|
+
default: number;
|
|
1191
|
+
};
|
|
1192
|
+
contentClasses: {
|
|
1193
|
+
type: import("vue").PropType<string | string[] | Record<string, boolean>>;
|
|
1194
|
+
default: null;
|
|
1195
|
+
};
|
|
1196
|
+
contentProps: {
|
|
1197
|
+
type: import("vue").PropType<Record<string, unknown>>;
|
|
1198
|
+
default: () => {};
|
|
1199
|
+
};
|
|
1200
|
+
absolute: {
|
|
1201
|
+
type: import("vue").PropType<boolean>;
|
|
1202
|
+
default: boolean;
|
|
1203
|
+
};
|
|
1204
|
+
}, {
|
|
1205
|
+
activatorEl: import("vue").Ref<HTMLElement | undefined>;
|
|
1206
|
+
contentEl: import("vue").Ref<HTMLElement | undefined>;
|
|
1207
|
+
globalTop: Readonly<import("vue").Ref<boolean>>;
|
|
1208
|
+
localTop: import("vue").ComputedRef<boolean>;
|
|
1209
|
+
updateLocation: import("vue").Ref<((event: Event) => void) | undefined>;
|
|
1210
|
+
}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {
|
|
1211
|
+
'update:modelValue': (value: boolean) => true;
|
|
1212
|
+
'click:outside': (event: MouseEvent) => true;
|
|
1213
|
+
afterLeave: () => true;
|
|
1214
|
+
}, string, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<{
|
|
1215
|
+
transition: {
|
|
1216
|
+
type: import("vue").PropType<string | boolean | (import("vue").TransitionProps & {
|
|
1217
|
+
component?: import("vue").Component<any, any, any, import("vue").ComputedOptions, import("vue").MethodOptions> | undefined;
|
|
1218
|
+
})>;
|
|
1219
|
+
default: string;
|
|
1220
|
+
validator: (value: unknown) => boolean;
|
|
1221
|
+
};
|
|
1222
|
+
eager: {
|
|
1223
|
+
type: import("vue").PropType<boolean>;
|
|
1224
|
+
default: boolean;
|
|
1225
|
+
};
|
|
1226
|
+
scrollStrategy: {
|
|
1227
|
+
type: import("vue").PropType<"none" | "close" | "block" | "reposition" | ((data: import("../CdsOverlay/composable").IScrollStrategyData, props: import("../CdsOverlay/composable").IScrollStrategyProps, scope: import("vue").EffectScope) => void)>;
|
|
1228
|
+
default: string;
|
|
1229
|
+
validator: (value: any) => boolean;
|
|
1230
|
+
};
|
|
1231
|
+
locationStrategy: {
|
|
1232
|
+
type: import("vue").PropType<"static" | "connected" | ((data: import("../CdsOverlay/composable").ILocationStrategyData, props: import("../CdsOverlay/composable").ILocationStrategyProps, contentStyles: import("vue").Ref<Record<string, string>>) => {
|
|
1233
|
+
updateLocation: (event: Event) => void;
|
|
1234
|
+
} | undefined)>;
|
|
1235
|
+
default: string;
|
|
1236
|
+
validator: (value: any) => boolean;
|
|
1237
|
+
};
|
|
1238
|
+
location: {
|
|
1239
|
+
type: import("vue").PropType<import('../../utils').TAnchor>;
|
|
1240
|
+
default: string;
|
|
1241
|
+
};
|
|
1242
|
+
origin: {
|
|
1243
|
+
type: import("vue").PropType<import('../../utils').TAnchor | "auto" | "overlap">;
|
|
1244
|
+
default: string;
|
|
1245
|
+
};
|
|
1246
|
+
offset: {
|
|
1247
|
+
type: import("vue").PropType<string | number | number[]>;
|
|
1248
|
+
default: null;
|
|
1249
|
+
};
|
|
1250
|
+
height: {
|
|
1251
|
+
type: import("vue").PropType<string | number>;
|
|
1252
|
+
default: string;
|
|
1253
|
+
};
|
|
1254
|
+
maxHeight: {
|
|
1255
|
+
type: import("vue").PropType<string | number>;
|
|
1256
|
+
default: string;
|
|
1257
|
+
};
|
|
1258
|
+
maxWidth: {
|
|
1259
|
+
type: import("vue").PropType<string | number>;
|
|
1260
|
+
default: string;
|
|
1261
|
+
};
|
|
1262
|
+
minHeight: {
|
|
1263
|
+
type: import("vue").PropType<string | number>;
|
|
1264
|
+
default: string;
|
|
1265
|
+
};
|
|
1266
|
+
minWidth: {
|
|
1267
|
+
type: import("vue").PropType<string | number>;
|
|
1268
|
+
default: string;
|
|
1269
|
+
};
|
|
1270
|
+
width: {
|
|
1271
|
+
type: import("vue").PropType<string | number>;
|
|
1272
|
+
default: string;
|
|
1273
|
+
};
|
|
1274
|
+
closeDelay: {
|
|
1275
|
+
type: import("vue").PropType<string | number>;
|
|
1276
|
+
default: null;
|
|
1277
|
+
};
|
|
1278
|
+
openDelay: {
|
|
1279
|
+
type: import("vue").PropType<string | number>;
|
|
1280
|
+
default: null;
|
|
1281
|
+
};
|
|
1282
|
+
activator: {
|
|
1283
|
+
type: import("vue").PropType<string | import("vue").ComponentPublicInstance<{}, {}, {}, {}, {}, {}, {}, {}, false, import("vue").ComponentOptionsBase<any, any, any, any, any, any, any, any, any, {}, {}, string>, {}> | Element>;
|
|
1284
|
+
default: null;
|
|
1285
|
+
};
|
|
1286
|
+
activatorProps: {
|
|
1287
|
+
type: import("vue").PropType<Record<string, any>>;
|
|
1288
|
+
default: () => {};
|
|
1289
|
+
};
|
|
1290
|
+
openOnClick: {
|
|
1291
|
+
type: import("vue").PropType<boolean | undefined>;
|
|
1292
|
+
default: undefined;
|
|
1293
|
+
};
|
|
1294
|
+
openOnHover: {
|
|
1295
|
+
type: import("vue").PropType<boolean>;
|
|
1296
|
+
default: boolean;
|
|
1297
|
+
};
|
|
1298
|
+
openOnFocus: {
|
|
1299
|
+
type: import("vue").PropType<boolean | undefined>;
|
|
1300
|
+
default: undefined;
|
|
1301
|
+
};
|
|
1302
|
+
closeOnContentClick: {
|
|
1303
|
+
type: import("vue").PropType<boolean>;
|
|
1304
|
+
default: boolean;
|
|
1305
|
+
};
|
|
1306
|
+
attach: {
|
|
1307
|
+
type: import("vue").PropType<string | boolean | Element>;
|
|
1308
|
+
default: boolean;
|
|
1309
|
+
};
|
|
1310
|
+
contained: {
|
|
1311
|
+
type: import("vue").PropType<boolean>;
|
|
1312
|
+
default: boolean;
|
|
1313
|
+
};
|
|
1314
|
+
disabled: {
|
|
1315
|
+
type: import("vue").PropType<boolean>;
|
|
1316
|
+
default: boolean;
|
|
1317
|
+
};
|
|
1318
|
+
persistent: {
|
|
1319
|
+
type: import("vue").PropType<boolean>;
|
|
1320
|
+
default: boolean;
|
|
1321
|
+
};
|
|
1322
|
+
scrim: {
|
|
1323
|
+
type: import("vue").PropType<string | boolean>;
|
|
1324
|
+
default: boolean;
|
|
1325
|
+
};
|
|
1326
|
+
modelValue: {
|
|
1327
|
+
type: import("vue").PropType<boolean>;
|
|
1328
|
+
default: boolean;
|
|
1329
|
+
};
|
|
1330
|
+
closeOnBack: {
|
|
1331
|
+
type: import("vue").PropType<boolean>;
|
|
1332
|
+
default: boolean;
|
|
1333
|
+
};
|
|
1334
|
+
zIndex: {
|
|
1335
|
+
type: import("vue").PropType<string | number>;
|
|
1336
|
+
default: number;
|
|
1337
|
+
};
|
|
1338
|
+
contentClasses: {
|
|
1339
|
+
type: import("vue").PropType<string | string[] | Record<string, boolean>>;
|
|
1340
|
+
default: null;
|
|
1341
|
+
};
|
|
1342
|
+
contentProps: {
|
|
1343
|
+
type: import("vue").PropType<Record<string, unknown>>;
|
|
1344
|
+
default: () => {};
|
|
1345
|
+
};
|
|
1346
|
+
absolute: {
|
|
1347
|
+
type: import("vue").PropType<boolean>;
|
|
1348
|
+
default: boolean;
|
|
1349
|
+
};
|
|
1350
|
+
}>> & {
|
|
1351
|
+
onAfterLeave?: (() => any) | undefined;
|
|
1352
|
+
"onUpdate:modelValue"?: ((value: boolean) => any) | undefined;
|
|
1353
|
+
"onClick:outside"?: ((event: MouseEvent) => any) | undefined;
|
|
1354
|
+
}, {
|
|
1355
|
+
disabled: boolean;
|
|
1356
|
+
location: import('../../utils').TAnchor;
|
|
1357
|
+
transition: string | boolean | (import("vue").TransitionProps & {
|
|
1358
|
+
component?: import("vue").Component<any, any, any, import("vue").ComputedOptions, import("vue").MethodOptions> | undefined;
|
|
1359
|
+
});
|
|
1360
|
+
origin: import('../../utils').TAnchor | "auto" | "overlap";
|
|
1361
|
+
modelValue: boolean;
|
|
1362
|
+
attach: string | boolean | Element;
|
|
1363
|
+
contained: boolean;
|
|
1364
|
+
persistent: boolean;
|
|
1365
|
+
scrim: string | boolean;
|
|
1366
|
+
closeOnBack: boolean;
|
|
1367
|
+
zIndex: string | number;
|
|
1368
|
+
contentClasses: string | string[] | Record<string, boolean>;
|
|
1369
|
+
contentProps: Record<string, unknown>;
|
|
1370
|
+
activator: string | import("vue").ComponentPublicInstance<{}, {}, {}, {}, {}, {}, {}, {}, false, import("vue").ComponentOptionsBase<any, any, any, any, any, any, any, any, any, {}, {}, string>, {}> | Element;
|
|
1371
|
+
activatorProps: Record<string, any>;
|
|
1372
|
+
openOnClick: boolean | undefined;
|
|
1373
|
+
openOnHover: boolean;
|
|
1374
|
+
openOnFocus: boolean | undefined;
|
|
1375
|
+
closeOnContentClick: boolean;
|
|
1376
|
+
closeDelay: string | number;
|
|
1377
|
+
openDelay: string | number;
|
|
1378
|
+
locationStrategy: "static" | "connected" | ((data: import("../CdsOverlay/composable").ILocationStrategyData, props: import("../CdsOverlay/composable").ILocationStrategyProps, contentStyles: import("vue").Ref<Record<string, string>>) => {
|
|
1379
|
+
updateLocation: (event: Event) => void;
|
|
1380
|
+
} | undefined);
|
|
1381
|
+
offset: string | number | number[];
|
|
1382
|
+
scrollStrategy: "none" | "close" | "block" | "reposition" | ((data: import("../CdsOverlay/composable").IScrollStrategyData, props: import("../CdsOverlay/composable").IScrollStrategyProps, scope: import("vue").EffectScope) => void);
|
|
1383
|
+
eager: boolean;
|
|
1384
|
+
height: string | number;
|
|
1385
|
+
maxHeight: string | number;
|
|
1386
|
+
maxWidth: string | number;
|
|
1387
|
+
minHeight: string | number;
|
|
1388
|
+
minWidth: string | number;
|
|
1389
|
+
width: string | number;
|
|
1390
|
+
absolute: boolean;
|
|
1391
|
+
}> | undefined>;
|
|
1392
|
+
openChildren: import("vue").Ref<number>;
|
|
1393
|
+
}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {
|
|
1394
|
+
'update:modelValue': (value: boolean) => true; /**
|
|
1395
|
+
* Событие при изменении значения (v-model)
|
|
1396
|
+
* @type { any }
|
|
1397
|
+
*/
|
|
1398
|
+
}, string, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<{
|
|
1399
|
+
transition: {
|
|
1400
|
+
type: import("vue").PropType<string | boolean | (import("vue").TransitionProps & {
|
|
1401
|
+
component?: import("vue").Component<any, any, any, import("vue").ComputedOptions, import("vue").MethodOptions> | undefined;
|
|
1402
|
+
})>;
|
|
1403
|
+
default: string;
|
|
1404
|
+
validator: (value: unknown) => boolean;
|
|
1405
|
+
};
|
|
1406
|
+
height: {
|
|
1407
|
+
type: import("vue").PropType<string | number>;
|
|
1408
|
+
default: string;
|
|
1409
|
+
};
|
|
1410
|
+
maxHeight: {
|
|
1411
|
+
type: import("vue").PropType<string | number>;
|
|
1412
|
+
default: string;
|
|
1413
|
+
};
|
|
1414
|
+
maxWidth: {
|
|
1415
|
+
type: import("vue").PropType<string | number>;
|
|
1416
|
+
default: string;
|
|
1417
|
+
};
|
|
1418
|
+
minHeight: {
|
|
1419
|
+
type: import("vue").PropType<string | number>;
|
|
1420
|
+
default: string;
|
|
1421
|
+
};
|
|
1422
|
+
minWidth: {
|
|
1423
|
+
type: import("vue").PropType<string | number>;
|
|
1424
|
+
default: string;
|
|
1425
|
+
};
|
|
1426
|
+
width: {
|
|
1427
|
+
type: import("vue").PropType<string | number>;
|
|
1428
|
+
default: string;
|
|
1429
|
+
};
|
|
1430
|
+
eager: {
|
|
1431
|
+
type: import("vue").PropType<boolean>;
|
|
1432
|
+
default: boolean;
|
|
1433
|
+
};
|
|
1434
|
+
scrollStrategy: Omit<{
|
|
1435
|
+
type: import("vue").PropType<"none" | "close" | "block" | "reposition" | ((data: import("../CdsOverlay/composable").IScrollStrategyData, props: import("../CdsOverlay/composable").IScrollStrategyProps, scope: import("vue").EffectScope) => void)>;
|
|
1436
|
+
default: string;
|
|
1437
|
+
validator: (value: any) => boolean;
|
|
1438
|
+
}, "default" | "type"> & {
|
|
1439
|
+
type: import("vue").PropType<NonNullable<"none" | "close" | "block" | "reposition" | ((data: import("../CdsOverlay/composable").IScrollStrategyData, props: import("../CdsOverlay/composable").IScrollStrategyProps, scope: import("vue").EffectScope) => void)>>;
|
|
1440
|
+
default: NonNullable<"none" | "close" | "block" | "reposition" | ((data: import("../CdsOverlay/composable").IScrollStrategyData, props: import("../CdsOverlay/composable").IScrollStrategyProps, scope: import("vue").EffectScope) => void)>;
|
|
1441
|
+
};
|
|
1442
|
+
locationStrategy: Omit<{
|
|
1443
|
+
type: import("vue").PropType<"static" | "connected" | ((data: import("../CdsOverlay/composable").ILocationStrategyData, props: import("../CdsOverlay/composable").ILocationStrategyProps, contentStyles: import("vue").Ref<Record<string, string>>) => {
|
|
1444
|
+
updateLocation: (event: Event) => void;
|
|
1445
|
+
} | undefined)>;
|
|
1446
|
+
default: string;
|
|
1447
|
+
validator: (value: any) => boolean;
|
|
1448
|
+
}, "default" | "type"> & {
|
|
1449
|
+
type: import("vue").PropType<NonNullable<"static" | "connected" | ((data: import("../CdsOverlay/composable").ILocationStrategyData, props: import("../CdsOverlay/composable").ILocationStrategyProps, contentStyles: import("vue").Ref<Record<string, string>>) => {
|
|
1450
|
+
updateLocation: (event: Event) => void;
|
|
1451
|
+
} | undefined)>>;
|
|
1452
|
+
default: NonNullable<"static" | "connected" | ((data: import("../CdsOverlay/composable").ILocationStrategyData, props: import("../CdsOverlay/composable").ILocationStrategyProps, contentStyles: import("vue").Ref<Record<string, string>>) => {
|
|
1453
|
+
updateLocation: (event: Event) => void;
|
|
1454
|
+
} | undefined)>;
|
|
1455
|
+
};
|
|
1456
|
+
location: {
|
|
1457
|
+
type: import("vue").PropType<import('../../utils').TAnchor>;
|
|
1458
|
+
default: string;
|
|
1459
|
+
};
|
|
1460
|
+
origin: {
|
|
1461
|
+
type: import("vue").PropType<import('../../utils').TAnchor | "auto" | "overlap">;
|
|
1462
|
+
default: string;
|
|
1463
|
+
};
|
|
1464
|
+
offset: {
|
|
1465
|
+
type: import("vue").PropType<string | number | number[]>;
|
|
1466
|
+
default: null;
|
|
1467
|
+
};
|
|
1468
|
+
closeDelay: Omit<{
|
|
1469
|
+
type: import("vue").PropType<string | number>;
|
|
1470
|
+
default: null;
|
|
1471
|
+
}, "default" | "type"> & {
|
|
1472
|
+
type: import("vue").PropType<NonNullable<string | number>>;
|
|
1473
|
+
default: NonNullable<string | number>;
|
|
1474
|
+
};
|
|
1475
|
+
openDelay: Omit<{
|
|
1476
|
+
type: import("vue").PropType<string | number>;
|
|
1477
|
+
default: null;
|
|
1478
|
+
}, "default" | "type"> & {
|
|
1479
|
+
type: import("vue").PropType<NonNullable<string | number>>;
|
|
1480
|
+
default: NonNullable<string | number>;
|
|
1481
|
+
};
|
|
1482
|
+
activator: {
|
|
1483
|
+
type: import("vue").PropType<string | import("vue").ComponentPublicInstance<{}, {}, {}, {}, {}, {}, {}, {}, false, import("vue").ComponentOptionsBase<any, any, any, any, any, any, any, any, any, {}, {}, string>, {}> | Element>;
|
|
1484
|
+
default: null;
|
|
1485
|
+
};
|
|
1486
|
+
activatorProps: {
|
|
1487
|
+
type: import("vue").PropType<Record<string, any>>;
|
|
1488
|
+
default: () => {};
|
|
1489
|
+
};
|
|
1490
|
+
openOnClick: {
|
|
1491
|
+
type: import("vue").PropType<boolean | undefined>;
|
|
1492
|
+
default: undefined;
|
|
1493
|
+
};
|
|
1494
|
+
openOnHover: {
|
|
1495
|
+
type: import("vue").PropType<boolean>;
|
|
1496
|
+
default: boolean;
|
|
1497
|
+
};
|
|
1498
|
+
openOnFocus: {
|
|
1499
|
+
type: import("vue").PropType<boolean | undefined>;
|
|
1500
|
+
default: undefined;
|
|
1501
|
+
};
|
|
1502
|
+
closeOnContentClick: Omit<{
|
|
1503
|
+
type: import("vue").PropType<boolean>;
|
|
1504
|
+
default: boolean;
|
|
1505
|
+
}, "default" | "type"> & {
|
|
1506
|
+
type: import("vue").PropType<boolean>;
|
|
1507
|
+
default: boolean;
|
|
1508
|
+
};
|
|
1509
|
+
attach: {
|
|
1510
|
+
type: import("vue").PropType<string | boolean | Element>;
|
|
1511
|
+
default: boolean;
|
|
1512
|
+
};
|
|
1513
|
+
contained: {
|
|
1514
|
+
type: import("vue").PropType<boolean>;
|
|
1515
|
+
default: boolean;
|
|
1516
|
+
};
|
|
1517
|
+
disabled: {
|
|
1518
|
+
type: import("vue").PropType<boolean>;
|
|
1519
|
+
default: boolean;
|
|
1520
|
+
};
|
|
1521
|
+
persistent: {
|
|
1522
|
+
type: import("vue").PropType<boolean>;
|
|
1523
|
+
default: boolean;
|
|
1524
|
+
};
|
|
1525
|
+
scrim: Omit<{
|
|
1526
|
+
type: import("vue").PropType<string | boolean>;
|
|
1527
|
+
default: boolean;
|
|
1528
|
+
}, "default" | "type"> & {
|
|
1529
|
+
type: import("vue").PropType<NonNullable<string | boolean>>;
|
|
1530
|
+
default: NonNullable<string | boolean>;
|
|
1531
|
+
};
|
|
1532
|
+
modelValue: {
|
|
1533
|
+
type: import("vue").PropType<boolean>;
|
|
1534
|
+
default: boolean;
|
|
1535
|
+
};
|
|
1536
|
+
closeOnBack: {
|
|
1537
|
+
type: import("vue").PropType<boolean>;
|
|
1538
|
+
default: boolean;
|
|
1539
|
+
};
|
|
1540
|
+
zIndex: {
|
|
1541
|
+
type: import("vue").PropType<string | number>;
|
|
1542
|
+
default: number;
|
|
1543
|
+
};
|
|
1544
|
+
contentClasses: {
|
|
1545
|
+
type: import("vue").PropType<string | string[] | Record<string, boolean>>;
|
|
1546
|
+
default: null;
|
|
1547
|
+
};
|
|
1548
|
+
contentProps: {
|
|
1549
|
+
type: import("vue").PropType<Record<string, unknown>>;
|
|
1550
|
+
default: () => {};
|
|
1551
|
+
};
|
|
1552
|
+
id: {
|
|
1553
|
+
type: import("vue").PropType<string>;
|
|
1554
|
+
default: undefined;
|
|
1555
|
+
};
|
|
1556
|
+
}>> & {
|
|
1557
|
+
"onUpdate:modelValue"?: ((value: boolean) => any) | undefined;
|
|
1558
|
+
}, {
|
|
1559
|
+
disabled: boolean;
|
|
1560
|
+
location: import('../../utils').TAnchor;
|
|
1561
|
+
transition: string | boolean | (import("vue").TransitionProps & {
|
|
1562
|
+
component?: import("vue").Component<any, any, any, import("vue").ComputedOptions, import("vue").MethodOptions> | undefined;
|
|
1563
|
+
});
|
|
1564
|
+
origin: import('../../utils').TAnchor | "auto" | "overlap";
|
|
1565
|
+
id: string;
|
|
1566
|
+
modelValue: boolean;
|
|
1567
|
+
attach: string | boolean | Element;
|
|
1568
|
+
contained: boolean;
|
|
1569
|
+
persistent: boolean;
|
|
1570
|
+
scrim: NonNullable<string | boolean>;
|
|
1571
|
+
closeOnBack: boolean;
|
|
1572
|
+
zIndex: string | number;
|
|
1573
|
+
contentClasses: string | string[] | Record<string, boolean>;
|
|
1574
|
+
contentProps: Record<string, unknown>;
|
|
1575
|
+
activator: string | import("vue").ComponentPublicInstance<{}, {}, {}, {}, {}, {}, {}, {}, false, import("vue").ComponentOptionsBase<any, any, any, any, any, any, any, any, any, {}, {}, string>, {}> | Element;
|
|
1576
|
+
activatorProps: Record<string, any>;
|
|
1577
|
+
openOnClick: boolean | undefined;
|
|
1578
|
+
openOnHover: boolean;
|
|
1579
|
+
openOnFocus: boolean | undefined;
|
|
1580
|
+
closeOnContentClick: boolean;
|
|
1581
|
+
closeDelay: NonNullable<string | number>;
|
|
1582
|
+
openDelay: NonNullable<string | number>;
|
|
1583
|
+
locationStrategy: NonNullable<"static" | "connected" | ((data: import("../CdsOverlay/composable").ILocationStrategyData, props: import("../CdsOverlay/composable").ILocationStrategyProps, contentStyles: import("vue").Ref<Record<string, string>>) => {
|
|
1584
|
+
updateLocation: (event: Event) => void;
|
|
1585
|
+
} | undefined)>;
|
|
1586
|
+
offset: string | number | number[];
|
|
1587
|
+
scrollStrategy: NonNullable<"none" | "close" | "block" | "reposition" | ((data: import("../CdsOverlay/composable").IScrollStrategyData, props: import("../CdsOverlay/composable").IScrollStrategyProps, scope: import("vue").EffectScope) => void)>;
|
|
1588
|
+
eager: boolean;
|
|
1589
|
+
height: string | number;
|
|
1590
|
+
maxHeight: string | number;
|
|
1591
|
+
maxWidth: string | number;
|
|
1592
|
+
minHeight: string | number;
|
|
1593
|
+
minWidth: string | number;
|
|
1594
|
+
width: string | number;
|
|
1595
|
+
}> | undefined>;
|
|
1596
|
+
listRef: import("vue").Ref<import("vue").DefineComponent<{
|
|
1597
|
+
selectStrategy: {
|
|
1598
|
+
type: import("vue").PropType<NonNullable<import("../../composable/nested/selectStrategies").TSelectStrategyProp>>;
|
|
1599
|
+
default: NonNullable<import("../../composable/nested/selectStrategies").TSelectStrategyProp>;
|
|
1600
|
+
};
|
|
1601
|
+
openStrategy: {
|
|
1602
|
+
type: import("vue").PropType<NonNullable<import("../../composable/nested/openStrategies").TOpenStrategyProp>>;
|
|
1603
|
+
default: NonNullable<import("../../composable/nested/openStrategies").TOpenStrategyProp>;
|
|
1604
|
+
};
|
|
1605
|
+
opened: import("vue").PropType<unknown[]>;
|
|
1606
|
+
selected: import("vue").PropType<unknown[]>;
|
|
1607
|
+
required: BooleanConstructor;
|
|
1608
|
+
dark: {
|
|
1609
|
+
type: import("vue").PropType<boolean>;
|
|
1610
|
+
default: boolean;
|
|
1611
|
+
};
|
|
1612
|
+
disabled: {
|
|
1613
|
+
type: import("vue").PropType<boolean>;
|
|
1614
|
+
default: boolean;
|
|
1615
|
+
};
|
|
1616
|
+
size: Omit<{
|
|
1617
|
+
type: import("vue").PropType<"xs" | "sm" | "md" | "lg" | "xl">;
|
|
1618
|
+
default: string;
|
|
1619
|
+
available: readonly ["xs", "sm", "md", "lg", "xl"];
|
|
1620
|
+
validator: (value: "xs" | "sm" | "md" | "lg" | "xl") => boolean;
|
|
1621
|
+
}, "default" | "type"> & {
|
|
1622
|
+
type: import("vue").PropType<NonNullable<"xs" | "sm" | "md" | "lg" | "xl">>;
|
|
1623
|
+
default: NonNullable<"xs" | "sm" | "md" | "lg" | "xl">;
|
|
1624
|
+
};
|
|
1625
|
+
tag: {
|
|
1626
|
+
type: import("vue").PropType<string>;
|
|
1627
|
+
default: string;
|
|
1628
|
+
description: string;
|
|
1629
|
+
};
|
|
1630
|
+
items: {
|
|
1631
|
+
type: import("vue").PropType<any[]>;
|
|
1632
|
+
default: () => never[];
|
|
1633
|
+
};
|
|
1634
|
+
itemTitle: {
|
|
1635
|
+
type: import("vue").PropType<import("../../composable").TItemKey>;
|
|
1636
|
+
default: string;
|
|
1637
|
+
};
|
|
1638
|
+
itemValue: {
|
|
1639
|
+
type: import("vue").PropType<import("../../composable").TItemKey>;
|
|
1640
|
+
default: string;
|
|
1641
|
+
};
|
|
1642
|
+
itemChildren: {
|
|
1643
|
+
type: import("vue").PropType<import("../../composable").TItemKey>;
|
|
1644
|
+
default: string;
|
|
1645
|
+
};
|
|
1646
|
+
itemProps: {
|
|
1647
|
+
type: import("vue").PropType<import("../../composable").TItemKey>;
|
|
1648
|
+
default: string;
|
|
1649
|
+
};
|
|
1650
|
+
returnObject: {
|
|
1651
|
+
type: import("vue").PropType<boolean>;
|
|
1652
|
+
default: boolean;
|
|
1653
|
+
};
|
|
1654
|
+
lines: {
|
|
1655
|
+
type: import("vue").PropType<false | "one" | "two" | "three">;
|
|
1656
|
+
default: string;
|
|
1657
|
+
};
|
|
1658
|
+
}, {
|
|
1659
|
+
open: (id: unknown, value: boolean, event?: Event | undefined) => void;
|
|
1660
|
+
select: (id: unknown, value: boolean, event?: Event | undefined) => void;
|
|
1661
|
+
focus: (location?: import("../CdsList/composable").TFocusLocation | undefined) => void;
|
|
1662
|
+
}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {
|
|
1663
|
+
'update:selected': (value: unknown[]) => boolean;
|
|
1664
|
+
'update:opened': (value: unknown[]) => boolean;
|
|
1665
|
+
'click:open': (value: {
|
|
1666
|
+
id: unknown;
|
|
1667
|
+
/**
|
|
1668
|
+
* Событие открытия меню
|
|
1669
|
+
* @type { boolean }
|
|
1670
|
+
*/
|
|
1671
|
+
value: boolean;
|
|
1672
|
+
path: unknown[];
|
|
1673
|
+
event: Event;
|
|
1674
|
+
}) => boolean;
|
|
1675
|
+
'click:select': (value: {
|
|
1676
|
+
id: unknown;
|
|
1677
|
+
value: boolean;
|
|
1678
|
+
path: unknown[];
|
|
1679
|
+
event: Event;
|
|
1680
|
+
}) => boolean;
|
|
1681
|
+
}, string, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<{
|
|
1682
|
+
selectStrategy: {
|
|
1683
|
+
type: import("vue").PropType<NonNullable<import("../../composable/nested/selectStrategies").TSelectStrategyProp>>;
|
|
1684
|
+
default: NonNullable<import("../../composable/nested/selectStrategies").TSelectStrategyProp>;
|
|
1685
|
+
};
|
|
1686
|
+
openStrategy: {
|
|
1687
|
+
type: import("vue").PropType<NonNullable<import("../../composable/nested/openStrategies").TOpenStrategyProp>>;
|
|
1688
|
+
default: NonNullable<import("../../composable/nested/openStrategies").TOpenStrategyProp>;
|
|
1689
|
+
};
|
|
1690
|
+
opened: import("vue").PropType<unknown[]>;
|
|
1691
|
+
selected: import("vue").PropType<unknown[]>;
|
|
1692
|
+
required: BooleanConstructor;
|
|
1693
|
+
dark: {
|
|
1694
|
+
type: import("vue").PropType<boolean>;
|
|
1695
|
+
default: boolean;
|
|
1696
|
+
};
|
|
1697
|
+
disabled: {
|
|
1698
|
+
type: import("vue").PropType<boolean>;
|
|
1699
|
+
default: boolean;
|
|
1700
|
+
};
|
|
1701
|
+
size: Omit<{
|
|
1702
|
+
type: import("vue").PropType<"xs" | "sm" | "md" | "lg" | "xl">;
|
|
1703
|
+
default: string;
|
|
1704
|
+
available: readonly ["xs", "sm", "md", "lg", "xl"];
|
|
1705
|
+
validator: (value: "xs" | "sm" | "md" | "lg" | "xl") => boolean;
|
|
1706
|
+
}, "default" | "type"> & {
|
|
1707
|
+
type: import("vue").PropType<NonNullable<"xs" | "sm" | "md" | "lg" | "xl">>;
|
|
1708
|
+
default: NonNullable<"xs" | "sm" | "md" | "lg" | "xl">;
|
|
1709
|
+
};
|
|
1710
|
+
tag: {
|
|
1711
|
+
type: import("vue").PropType<string>;
|
|
1712
|
+
default: string;
|
|
1713
|
+
description: string;
|
|
1714
|
+
};
|
|
1715
|
+
items: {
|
|
1716
|
+
type: import("vue").PropType<any[]>;
|
|
1717
|
+
default: () => never[];
|
|
1718
|
+
};
|
|
1719
|
+
itemTitle: {
|
|
1720
|
+
type: import("vue").PropType<import("../../composable").TItemKey>;
|
|
1721
|
+
default: string;
|
|
1722
|
+
};
|
|
1723
|
+
itemValue: {
|
|
1724
|
+
type: import("vue").PropType<import("../../composable").TItemKey>;
|
|
1725
|
+
default: string;
|
|
1726
|
+
};
|
|
1727
|
+
itemChildren: {
|
|
1728
|
+
type: import("vue").PropType<import("../../composable").TItemKey>;
|
|
1729
|
+
default: string;
|
|
1730
|
+
};
|
|
1731
|
+
itemProps: {
|
|
1732
|
+
type: import("vue").PropType<import("../../composable").TItemKey>;
|
|
1733
|
+
default: string;
|
|
1734
|
+
};
|
|
1735
|
+
returnObject: {
|
|
1736
|
+
type: import("vue").PropType<boolean>;
|
|
1737
|
+
default: boolean;
|
|
1738
|
+
};
|
|
1739
|
+
lines: {
|
|
1740
|
+
type: import("vue").PropType<false | "one" | "two" | "three">;
|
|
1741
|
+
default: string;
|
|
1742
|
+
};
|
|
1743
|
+
}>> & {
|
|
1744
|
+
"onUpdate:selected"?: ((value: unknown[]) => any) | undefined;
|
|
1745
|
+
"onUpdate:opened"?: ((value: unknown[]) => any) | undefined;
|
|
1746
|
+
"onClick:open"?: ((value: {
|
|
1747
|
+
id: unknown;
|
|
1748
|
+
/**
|
|
1749
|
+
* Событие открытия меню
|
|
1750
|
+
* @type { boolean }
|
|
1751
|
+
*/
|
|
1752
|
+
value: boolean;
|
|
1753
|
+
path: unknown[];
|
|
1754
|
+
event: Event;
|
|
1755
|
+
}) => any) | undefined;
|
|
1756
|
+
"onClick:select"?: ((value: {
|
|
1757
|
+
id: unknown;
|
|
1758
|
+
value: boolean;
|
|
1759
|
+
path: unknown[];
|
|
1760
|
+
event: Event;
|
|
1761
|
+
}) => any) | undefined;
|
|
1762
|
+
}, {
|
|
1763
|
+
dark: boolean;
|
|
1764
|
+
required: boolean;
|
|
1765
|
+
disabled: boolean;
|
|
1766
|
+
tag: string;
|
|
1767
|
+
items: any[];
|
|
1768
|
+
itemTitle: import("../../composable").TItemKey;
|
|
1769
|
+
itemValue: import("../../composable").TItemKey;
|
|
1770
|
+
itemChildren: import("../../composable").TItemKey;
|
|
1771
|
+
itemProps: import("../../composable").TItemKey;
|
|
1772
|
+
returnObject: boolean;
|
|
1773
|
+
size: NonNullable<"xs" | "sm" | "md" | "lg" | "xl">;
|
|
1774
|
+
selectStrategy: NonNullable<import("../../composable/nested/selectStrategies").TSelectStrategyProp>;
|
|
1775
|
+
openStrategy: NonNullable<import("../../composable/nested/openStrategies").TOpenStrategyProp>;
|
|
1776
|
+
lines: false | "one" | "two" | "three";
|
|
1777
|
+
}> | undefined>;
|
|
1778
|
+
inputProps: import("vue").Ref<{
|
|
1779
|
+
readonly type?: "number" | "text" | "password" | "email" | "tel" | "url" | undefined;
|
|
1780
|
+
readonly disabled?: boolean | undefined;
|
|
1781
|
+
readonly items?: any[] | undefined;
|
|
1782
|
+
readonly itemTitle?: import("../../composable").TItemKey | undefined;
|
|
1783
|
+
readonly itemValue?: import("../../composable").TItemKey | undefined;
|
|
1784
|
+
readonly value?: any;
|
|
1785
|
+
readonly itemChildren?: import("../../composable").TItemKey | undefined;
|
|
1786
|
+
readonly itemProps?: import("../../composable").TItemKey | undefined;
|
|
1787
|
+
readonly returnObject?: boolean | undefined;
|
|
1788
|
+
readonly error?: boolean | undefined;
|
|
1789
|
+
readonly loading?: boolean | undefined;
|
|
1790
|
+
readonly transition?: string | boolean | {
|
|
1791
|
+
name?: string | undefined;
|
|
1792
|
+
type?: ("transition" | "animation") | undefined;
|
|
1793
|
+
css?: boolean | undefined;
|
|
1794
|
+
duration?: number | {
|
|
1795
|
+
enter: number;
|
|
1796
|
+
leave: number;
|
|
1797
|
+
} | undefined;
|
|
1798
|
+
enterFromClass?: string | undefined;
|
|
1799
|
+
enterActiveClass?: string | undefined;
|
|
1800
|
+
enterToClass?: string | undefined;
|
|
1801
|
+
appearFromClass?: string | undefined;
|
|
1802
|
+
appearActiveClass?: string | undefined;
|
|
1803
|
+
appearToClass?: string | undefined;
|
|
1804
|
+
leaveFromClass?: string | undefined;
|
|
1805
|
+
leaveActiveClass?: string | undefined;
|
|
1806
|
+
leaveToClass?: string | undefined;
|
|
1807
|
+
mode?: "default" | "in-out" | "out-in" | undefined;
|
|
1808
|
+
appear?: boolean | undefined;
|
|
1809
|
+
persisted?: boolean | undefined;
|
|
1810
|
+
onBeforeEnter?: (((el: Element) => void) | ((el: Element) => void)[]) | undefined;
|
|
1811
|
+
onEnter?: (((el: Element, done: () => void) => void) | ((el: Element, done: () => void) => void)[]) | undefined;
|
|
1812
|
+
onAfterEnter?: (((el: Element) => void) | ((el: Element) => void)[]) | undefined;
|
|
1813
|
+
onEnterCancelled?: (((el: Element) => void) | ((el: Element) => void)[]) | undefined;
|
|
1814
|
+
onBeforeLeave?: (((el: Element) => void) | ((el: Element) => void)[]) | undefined;
|
|
1815
|
+
onLeave?: (((el: Element, done: () => void) => void) | ((el: Element, done: () => void) => void)[]) | undefined;
|
|
1816
|
+
onAfterLeave?: (((el: Element) => void) | ((el: Element) => void)[]) | undefined;
|
|
1817
|
+
onLeaveCancelled?: (((el: Element) => void) | ((el: Element) => void)[]) | undefined;
|
|
1818
|
+
onBeforeAppear?: (((el: Element) => void) | ((el: Element) => void)[]) | undefined;
|
|
1819
|
+
onAppear?: (((el: Element, done: () => void) => void) | ((el: Element, done: () => void) => void)[]) | undefined;
|
|
1820
|
+
onAfterAppear?: (((el: Element) => void) | ((el: Element) => void)[]) | undefined;
|
|
1821
|
+
onAppearCancelled?: (((el: Element) => void) | ((el: Element) => void)[]) | undefined;
|
|
1822
|
+
component?: import("vue").FunctionalComponent<any, any> | {
|
|
1823
|
+
new (...args: any[]): any;
|
|
1824
|
+
__isFragment?: undefined;
|
|
1825
|
+
__isTeleport?: undefined;
|
|
1826
|
+
__isSuspense?: undefined;
|
|
1827
|
+
} | {
|
|
1828
|
+
[x: string]: any;
|
|
1829
|
+
setup?: ((this: void, props: Readonly<import("@vue/shared").LooseRequired<any>>, ctx: {
|
|
1830
|
+
attrs: {
|
|
1831
|
+
[x: string]: unknown;
|
|
1832
|
+
};
|
|
1833
|
+
slots: Readonly<{
|
|
1834
|
+
[name: string]: import("vue").Slot | undefined;
|
|
1835
|
+
}>;
|
|
1836
|
+
emit: ((event: unknown, ...args: any[]) => void) | ((event: string, ...args: any[]) => void);
|
|
1837
|
+
expose: (exposed?: Record<string, any> | undefined) => void;
|
|
1838
|
+
}) => any) | undefined;
|
|
1839
|
+
name?: string | undefined;
|
|
1840
|
+
template?: string | object | undefined;
|
|
1841
|
+
render?: Function | undefined;
|
|
1842
|
+
components?: Record<string, import("vue").Component<any, any, any, import("vue").ComputedOptions, import("vue").MethodOptions>> | undefined;
|
|
1843
|
+
directives?: Record<string, import("vue").Directive<any, any>> | undefined;
|
|
1844
|
+
inheritAttrs?: boolean | undefined;
|
|
1845
|
+
emits?: any;
|
|
1846
|
+
expose?: string[] | undefined;
|
|
1847
|
+
serverPrefetch?: (() => void | Promise<any>) | undefined;
|
|
1848
|
+
compilerOptions?: {
|
|
1849
|
+
isCustomElement?: ((tag: string) => boolean) | undefined;
|
|
1850
|
+
whitespace?: "preserve" | "condense" | undefined;
|
|
1851
|
+
comments?: boolean | undefined;
|
|
1852
|
+
delimiters?: [string, string] | undefined;
|
|
1853
|
+
} | undefined;
|
|
1854
|
+
call?: ((this: unknown, ...args: unknown[]) => never) | undefined;
|
|
1855
|
+
__isFragment?: undefined;
|
|
1856
|
+
__isTeleport?: undefined;
|
|
1857
|
+
__isSuspense?: undefined;
|
|
1858
|
+
__defaults?: {} | undefined;
|
|
1859
|
+
compatConfig?: {
|
|
1860
|
+
GLOBAL_MOUNT?: boolean | "suppress-warning" | undefined;
|
|
1861
|
+
GLOBAL_MOUNT_CONTAINER?: boolean | "suppress-warning" | undefined;
|
|
1862
|
+
GLOBAL_EXTEND?: boolean | "suppress-warning" | undefined;
|
|
1863
|
+
GLOBAL_PROTOTYPE?: boolean | "suppress-warning" | undefined;
|
|
1864
|
+
GLOBAL_SET?: boolean | "suppress-warning" | undefined;
|
|
1865
|
+
GLOBAL_DELETE?: boolean | "suppress-warning" | undefined;
|
|
1866
|
+
GLOBAL_OBSERVABLE?: boolean | "suppress-warning" | undefined;
|
|
1867
|
+
GLOBAL_PRIVATE_UTIL?: boolean | "suppress-warning" | undefined;
|
|
1868
|
+
CONFIG_SILENT?: boolean | "suppress-warning" | undefined;
|
|
1869
|
+
CONFIG_DEVTOOLS?: boolean | "suppress-warning" | undefined;
|
|
1870
|
+
CONFIG_KEY_CODES?: boolean | "suppress-warning" | undefined;
|
|
1871
|
+
CONFIG_PRODUCTION_TIP?: boolean | "suppress-warning" | undefined;
|
|
1872
|
+
CONFIG_IGNORED_ELEMENTS?: boolean | "suppress-warning" | undefined;
|
|
1873
|
+
CONFIG_WHITESPACE?: boolean | "suppress-warning" | undefined;
|
|
1874
|
+
CONFIG_OPTION_MERGE_STRATS?: boolean | "suppress-warning" | undefined;
|
|
1875
|
+
INSTANCE_SET?: boolean | "suppress-warning" | undefined;
|
|
1876
|
+
INSTANCE_DELETE?: boolean | "suppress-warning" | undefined;
|
|
1877
|
+
INSTANCE_DESTROY?: boolean | "suppress-warning" | undefined;
|
|
1878
|
+
INSTANCE_EVENT_EMITTER?: boolean | "suppress-warning" | undefined;
|
|
1879
|
+
INSTANCE_EVENT_HOOKS?: boolean | "suppress-warning" | undefined;
|
|
1880
|
+
INSTANCE_CHILDREN?: boolean | "suppress-warning" | undefined;
|
|
1881
|
+
INSTANCE_LISTENERS?: boolean | "suppress-warning" | undefined;
|
|
1882
|
+
INSTANCE_SCOPED_SLOTS?: boolean | "suppress-warning" | undefined;
|
|
1883
|
+
INSTANCE_ATTRS_CLASS_STYLE?: boolean | "suppress-warning" | undefined;
|
|
1884
|
+
OPTIONS_DATA_FN?: boolean | "suppress-warning" | undefined;
|
|
1885
|
+
OPTIONS_DATA_MERGE?: boolean | "suppress-warning" | undefined;
|
|
1886
|
+
OPTIONS_BEFORE_DESTROY?: boolean | "suppress-warning" | undefined;
|
|
1887
|
+
OPTIONS_DESTROYED?: boolean | "suppress-warning" | undefined;
|
|
1888
|
+
WATCH_ARRAY?: boolean | "suppress-warning" | undefined;
|
|
1889
|
+
PROPS_DEFAULT_THIS?: boolean | "suppress-warning" | undefined;
|
|
1890
|
+
V_ON_KEYCODE_MODIFIER?: boolean | "suppress-warning" | undefined;
|
|
1891
|
+
CUSTOM_DIR?: boolean | "suppress-warning" | undefined;
|
|
1892
|
+
ATTR_FALSE_VALUE?: boolean | "suppress-warning" | undefined;
|
|
1893
|
+
ATTR_ENUMERATED_COERCION?: boolean | "suppress-warning" | undefined;
|
|
1894
|
+
TRANSITION_CLASSES?: boolean | "suppress-warning" | undefined;
|
|
1895
|
+
TRANSITION_GROUP_ROOT?: boolean | "suppress-warning" | undefined;
|
|
1896
|
+
COMPONENT_ASYNC?: boolean | "suppress-warning" | undefined;
|
|
1897
|
+
COMPONENT_FUNCTIONAL?: boolean | "suppress-warning" | undefined;
|
|
1898
|
+
COMPONENT_V_MODEL?: boolean | "suppress-warning" | undefined;
|
|
1899
|
+
RENDER_FUNCTION?: boolean | "suppress-warning" | undefined;
|
|
1900
|
+
FILTERS?: boolean | "suppress-warning" | undefined;
|
|
1901
|
+
PRIVATE_APIS?: boolean | "suppress-warning" | undefined;
|
|
1902
|
+
MODE?: 2 | 3 | ((comp: import("vue").Component<any, any, any, import("vue").ComputedOptions, import("vue").MethodOptions> | null) => 2 | 3) | undefined;
|
|
1903
|
+
} | undefined;
|
|
1904
|
+
data?: ((this: any, vm: any) => any) | undefined;
|
|
1905
|
+
computed?: import("vue").ComputedOptions | undefined;
|
|
1906
|
+
methods?: import("vue").MethodOptions | undefined;
|
|
1907
|
+
watch?: {
|
|
1908
|
+
[x: string]: (string | import("vue").WatchCallback<any, any> | ({
|
|
1909
|
+
handler: string | import("vue").WatchCallback<any, any>;
|
|
1910
|
+
} & import("vue").WatchOptions<boolean>)) | (string | import("vue").WatchCallback<any, any> | ({
|
|
1911
|
+
handler: string | import("vue").WatchCallback<any, any>;
|
|
1912
|
+
} & import("vue").WatchOptions<boolean>))[];
|
|
1913
|
+
} | undefined;
|
|
1914
|
+
provide?: import("vue").ComponentProvideOptions | undefined;
|
|
1915
|
+
inject?: {} | string[] | undefined;
|
|
1916
|
+
filters?: Record<string, Function> | undefined;
|
|
1917
|
+
mixins?: any[] | undefined;
|
|
1918
|
+
extends?: any;
|
|
1919
|
+
beforeCreate?: (() => void) | undefined;
|
|
1920
|
+
created?: (() => void) | undefined;
|
|
1921
|
+
beforeMount?: (() => void) | undefined;
|
|
1922
|
+
mounted?: (() => void) | undefined;
|
|
1923
|
+
beforeUpdate?: (() => void) | undefined;
|
|
1924
|
+
updated?: (() => void) | undefined;
|
|
1925
|
+
activated?: (() => void) | undefined;
|
|
1926
|
+
deactivated?: (() => void) | undefined;
|
|
1927
|
+
beforeDestroy?: (() => void) | undefined;
|
|
1928
|
+
beforeUnmount?: (() => void) | undefined;
|
|
1929
|
+
destroyed?: (() => void) | undefined;
|
|
1930
|
+
unmounted?: (() => void) | undefined;
|
|
1931
|
+
renderTracked?: ((e: import("vue").DebuggerEvent) => void) | undefined;
|
|
1932
|
+
renderTriggered?: ((e: import("vue").DebuggerEvent) => void) | undefined;
|
|
1933
|
+
errorCaptured?: ((err: unknown, instance: import("vue").ComponentPublicInstance<{}, {}, {}, {}, {}, {}, {}, {}, false, import("vue").ComponentOptionsBase<any, any, any, any, any, any, any, any, any, {}, {}, string>, {}> | null, info: string) => boolean | void) | undefined;
|
|
1934
|
+
delimiters?: [string, string] | undefined;
|
|
1935
|
+
__differentiator?: string | number | symbol | undefined;
|
|
1936
|
+
__isBuiltIn?: boolean | undefined;
|
|
1937
|
+
__file?: string | undefined;
|
|
1938
|
+
__name?: string | undefined;
|
|
1939
|
+
beforeRouteEnter?: import("vue-router").NavigationGuardWithThis<undefined> | undefined;
|
|
1940
|
+
beforeRouteUpdate?: import("vue-router").NavigationGuard | undefined;
|
|
1941
|
+
beforeRouteLeave?: import("vue-router").NavigationGuard | undefined;
|
|
1942
|
+
} | undefined;
|
|
1943
|
+
} | undefined;
|
|
1944
|
+
readonly messages?: string | string[] | undefined;
|
|
1945
|
+
readonly active?: boolean | undefined;
|
|
1946
|
+
readonly persistentMessages?: boolean | undefined;
|
|
1947
|
+
readonly errorMessages?: string | string[] | undefined;
|
|
1948
|
+
readonly maxErrors?: string | number | undefined;
|
|
1949
|
+
readonly readonly?: boolean | undefined;
|
|
1950
|
+
readonly rules?: (import("../../composable").TValidationResult | ((value: any) => import("../../composable").TValidationResult) | ((value: any) => PromiseLike<import("../../composable").TValidationResult>) | {
|
|
1951
|
+
then: <TResult1 = import("../../composable").TValidationResult, TResult2 = never>(onfulfilled?: ((value: import("../../composable").TValidationResult) => TResult1 | PromiseLike<TResult1>) | null | undefined, onrejected?: ((reason: any) => TResult2 | PromiseLike<TResult2>) | null | undefined) => PromiseLike<TResult1 | TResult2>;
|
|
1952
|
+
})[] | undefined;
|
|
1953
|
+
readonly modelValue?: any;
|
|
1954
|
+
readonly validateOn?: "input" | "blur" | "submit" | undefined;
|
|
1955
|
+
readonly hideMessages?: boolean | undefined;
|
|
1956
|
+
readonly focused?: boolean | undefined;
|
|
1957
|
+
readonly autofocus?: boolean | undefined;
|
|
1958
|
+
readonly counter?: boolean | undefined;
|
|
1959
|
+
readonly clearable?: boolean | undefined;
|
|
1960
|
+
readonly eager?: boolean | undefined;
|
|
1961
|
+
readonly multiple?: boolean | undefined;
|
|
1962
|
+
readonly openOnClear?: boolean | undefined;
|
|
1963
|
+
readonly hideSelected?: boolean | undefined;
|
|
1964
|
+
readonly noDataText?: string | undefined;
|
|
1965
|
+
readonly hideNoData?: boolean | undefined;
|
|
1966
|
+
readonly isSelectAll?: boolean | undefined;
|
|
1967
|
+
readonly selectAllText?: string | undefined;
|
|
1968
|
+
readonly menuProps?: any;
|
|
1969
|
+
readonly menuHeight?: string | number | undefined;
|
|
1970
|
+
readonly name?: string | undefined;
|
|
1971
|
+
readonly description?: string | undefined;
|
|
1972
|
+
readonly menu?: boolean | undefined;
|
|
1973
|
+
readonly prependIcon?: "link" | "filters" | "search" | "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" | "flag" | "globe" | "infinity" | "info-fill" | "info" | "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" | "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" | undefined;
|
|
1974
|
+
readonly appendIcon?: "link" | "filters" | "search" | "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" | "flag" | "globe" | "infinity" | "info-fill" | "info" | "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" | "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" | undefined;
|
|
1975
|
+
readonly id?: string | undefined;
|
|
1976
|
+
readonly label?: string | undefined;
|
|
1977
|
+
readonly validationValue?: any;
|
|
1978
|
+
readonly 'onClick:prepend'?: ((...args: any[]) => any) | undefined;
|
|
1979
|
+
readonly 'onClick:append'?: ((...args: any[]) => any) | undefined;
|
|
1980
|
+
readonly prefix?: string | undefined;
|
|
1981
|
+
readonly suffix?: string | undefined;
|
|
1982
|
+
readonly prependInnerIcon?: "link" | "filters" | "search" | "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" | "flag" | "globe" | "infinity" | "info-fill" | "info" | "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" | "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" | undefined;
|
|
1983
|
+
readonly appendInnerIcon?: "link" | "filters" | "search" | "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" | "flag" | "globe" | "infinity" | "info-fill" | "info" | "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" | "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" | undefined;
|
|
1984
|
+
readonly placeholder?: string | undefined;
|
|
1985
|
+
readonly limit?: number | undefined;
|
|
1986
|
+
readonly 'onClick:prependInner'?: ((...args: any[]) => any) | undefined;
|
|
1987
|
+
readonly 'onClick:appendInner'?: ((...args: any[]) => any) | undefined;
|
|
1988
|
+
readonly "onUpdate:modelValue"?: ((value: any) => any) | undefined;
|
|
1989
|
+
readonly "onUpdate:focused"?: ((value: boolean) => any) | undefined;
|
|
1990
|
+
readonly "onUpdate:menu"?: ((value: boolean) => any) | undefined;
|
|
1991
|
+
readonly "onUpdate:selectedAll"?: ((value: boolean) => any) | undefined;
|
|
1992
|
+
}>;
|
|
1993
|
+
hasList: import("vue").ComputedRef<boolean>;
|
|
1994
|
+
hasLabel: import("vue").ComputedRef<boolean>;
|
|
1995
|
+
hasDescription: import("vue").ComputedRef<boolean>;
|
|
1996
|
+
hasPrepend: import("vue").ComputedRef<boolean>;
|
|
1997
|
+
hasAppend: import("vue").ComputedRef<boolean>;
|
|
1998
|
+
hasPrependInnerIcon: import("vue").ComputedRef<boolean>;
|
|
1999
|
+
hasNoDataItem: import("vue").ComputedRef<boolean>;
|
|
2000
|
+
dropdownClasses: import("vue").ComputedRef<{
|
|
2001
|
+
[x: string]: number | boolean | undefined;
|
|
2002
|
+
'cds-dropdown--active-menu': boolean | undefined;
|
|
2003
|
+
'cds-dropdown--selected': number;
|
|
2004
|
+
}>;
|
|
2005
|
+
select: (item: IInternalItem) => void;
|
|
2006
|
+
selectAll: () => void;
|
|
2007
|
+
mergeItemProps: (item: IInternalItem) => {
|
|
2008
|
+
[x: string]: unknown;
|
|
2009
|
+
};
|
|
2010
|
+
onKeydown: (event: KeyboardEvent) => void;
|
|
2011
|
+
onFocusin: () => void;
|
|
2012
|
+
onFocusout: (event: FocusEvent) => void;
|
|
2013
|
+
onBlur: (event: FocusEvent) => void;
|
|
2014
|
+
onClear: () => void;
|
|
2015
|
+
onInputModelValue: (value: string) => void;
|
|
2016
|
+
onMousedownControl: () => void;
|
|
2017
|
+
}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {
|
|
2018
|
+
/**
|
|
2019
|
+
* Событие при фокусе
|
|
2020
|
+
* @type { boolean }
|
|
2021
|
+
*/
|
|
2022
|
+
'update:focused': (value: boolean) => true;
|
|
2023
|
+
/**
|
|
2024
|
+
* Событие при изменении значения (v-model)
|
|
2025
|
+
* @type { any }
|
|
2026
|
+
*/
|
|
2027
|
+
'update:modelValue': (value: any) => true;
|
|
2028
|
+
/**
|
|
2029
|
+
* Событие открытия меню
|
|
2030
|
+
* @type { boolean }
|
|
2031
|
+
*/
|
|
2032
|
+
'update:menu': (value: boolean) => true;
|
|
2033
|
+
/**
|
|
2034
|
+
* Событие выбора всех элементов
|
|
2035
|
+
* @type { boolean }
|
|
2036
|
+
*/
|
|
2037
|
+
'update:selectedAll': (value: boolean) => true;
|
|
2038
|
+
}, string, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<{
|
|
2039
|
+
transition: {
|
|
2040
|
+
type: import("vue").PropType<string | boolean | (import("vue").TransitionProps & {
|
|
2041
|
+
component?: import("vue").Component<any, any, any, import("vue").ComputedOptions, import("vue").MethodOptions> | undefined;
|
|
2042
|
+
})>;
|
|
2043
|
+
default: string;
|
|
2044
|
+
validator: (value: unknown) => boolean;
|
|
2045
|
+
};
|
|
2046
|
+
items: {
|
|
2047
|
+
type: import("vue").PropType<any[]>;
|
|
2048
|
+
default: () => never[];
|
|
2049
|
+
};
|
|
2050
|
+
itemTitle: {
|
|
2051
|
+
type: import("vue").PropType<import("../../composable").TItemKey>;
|
|
2052
|
+
default: string;
|
|
2053
|
+
};
|
|
2054
|
+
itemValue: {
|
|
2055
|
+
type: import("vue").PropType<import("../../composable").TItemKey>;
|
|
2056
|
+
default: string;
|
|
2057
|
+
};
|
|
2058
|
+
itemChildren: {
|
|
2059
|
+
type: import("vue").PropType<import("../../composable").TItemKey>;
|
|
2060
|
+
default: string;
|
|
2061
|
+
};
|
|
2062
|
+
itemProps: {
|
|
2063
|
+
type: import("vue").PropType<import("../../composable").TItemKey>;
|
|
2064
|
+
default: string;
|
|
2065
|
+
};
|
|
2066
|
+
returnObject: {
|
|
2067
|
+
type: import("vue").PropType<boolean>;
|
|
2068
|
+
default: boolean;
|
|
2069
|
+
};
|
|
2070
|
+
loading: {
|
|
2071
|
+
type: import("vue").PropType<boolean>;
|
|
2072
|
+
default: boolean;
|
|
2073
|
+
};
|
|
2074
|
+
focused: {
|
|
2075
|
+
type: import("vue").PropType<boolean>;
|
|
2076
|
+
default: boolean;
|
|
2077
|
+
};
|
|
2078
|
+
menu: {
|
|
2079
|
+
type: import("vue").PropType<boolean | undefined>;
|
|
2080
|
+
default: undefined;
|
|
2081
|
+
};
|
|
2082
|
+
menuProps: {
|
|
2083
|
+
type: import("vue").PropType<any>;
|
|
2084
|
+
default: null;
|
|
2085
|
+
};
|
|
2086
|
+
menuHeight: {
|
|
2087
|
+
type: import("vue").PropType<string | number>;
|
|
2088
|
+
default: number;
|
|
2089
|
+
};
|
|
2090
|
+
eager: {
|
|
2091
|
+
type: import("vue").PropType<boolean>;
|
|
2092
|
+
default: boolean;
|
|
2093
|
+
};
|
|
2094
|
+
'onClick:prepend': {
|
|
2095
|
+
type: import("vue").PropType<(...args: any[]) => any>;
|
|
2096
|
+
default: undefined;
|
|
2097
|
+
};
|
|
2098
|
+
'onClick:append': {
|
|
2099
|
+
type: import("vue").PropType<(...args: any[]) => any>;
|
|
2100
|
+
default: undefined;
|
|
2101
|
+
};
|
|
2102
|
+
prependIcon: {
|
|
2103
|
+
type: import("vue").PropType<"link" | "filters" | "search" | "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" | "flag" | "globe" | "infinity" | "info-fill" | "info" | "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" | "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">;
|
|
2104
|
+
default: undefined;
|
|
2105
|
+
validator: (value: "link" | "filters" | "search" | "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" | "flag" | "globe" | "infinity" | "info-fill" | "info" | "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" | "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;
|
|
2106
|
+
};
|
|
2107
|
+
appendIcon: {
|
|
2108
|
+
type: import("vue").PropType<"link" | "filters" | "search" | "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" | "flag" | "globe" | "infinity" | "info-fill" | "info" | "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" | "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">;
|
|
2109
|
+
default: undefined;
|
|
2110
|
+
validator: (value: "link" | "filters" | "search" | "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" | "flag" | "globe" | "infinity" | "info-fill" | "info" | "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" | "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;
|
|
2111
|
+
};
|
|
2112
|
+
disabled: {
|
|
2113
|
+
type: import("vue").PropType<boolean>;
|
|
2114
|
+
default: boolean;
|
|
2115
|
+
};
|
|
2116
|
+
error: {
|
|
2117
|
+
type: import("vue").PropType<boolean>;
|
|
2118
|
+
default: boolean;
|
|
2119
|
+
};
|
|
2120
|
+
errorMessages: {
|
|
2121
|
+
type: import("vue").PropType<string | string[]>;
|
|
2122
|
+
default: () => never[];
|
|
2123
|
+
};
|
|
2124
|
+
maxErrors: {
|
|
2125
|
+
type: import("vue").PropType<string | number>;
|
|
2126
|
+
default: number;
|
|
2127
|
+
};
|
|
2128
|
+
name: {
|
|
2129
|
+
type: import("vue").PropType<string | undefined>;
|
|
2130
|
+
default: undefined;
|
|
2131
|
+
};
|
|
2132
|
+
readonly: {
|
|
2133
|
+
type: import("vue").PropType<boolean>;
|
|
2134
|
+
default: boolean;
|
|
2135
|
+
};
|
|
2136
|
+
rules: {
|
|
2137
|
+
type: import("vue").PropType<import("../../composable").TValidationRule[]>;
|
|
2138
|
+
default: () => never[];
|
|
2139
|
+
};
|
|
2140
|
+
modelValue: {
|
|
2141
|
+
type: import("vue").PropType<any>;
|
|
2142
|
+
default: null;
|
|
2143
|
+
};
|
|
2144
|
+
validateOn: {
|
|
2145
|
+
type: import("vue").PropType<"input" | "blur" | "submit">;
|
|
2146
|
+
default: string;
|
|
2147
|
+
available: readonly ["blur", "input", "submit"];
|
|
2148
|
+
validator: (value: "input" | "blur" | "submit") => boolean;
|
|
2149
|
+
};
|
|
2150
|
+
validationValue: {
|
|
2151
|
+
type: import("vue").PropType<any>;
|
|
2152
|
+
default: undefined;
|
|
2153
|
+
};
|
|
2154
|
+
hideMessages: {
|
|
2155
|
+
type: import("vue").PropType<boolean>;
|
|
2156
|
+
default: boolean;
|
|
2157
|
+
};
|
|
2158
|
+
id: {
|
|
2159
|
+
type: import("vue").PropType<string>;
|
|
2160
|
+
default: undefined;
|
|
2161
|
+
};
|
|
2162
|
+
label: {
|
|
2163
|
+
type: import("vue").PropType<string>;
|
|
2164
|
+
default: undefined;
|
|
2165
|
+
};
|
|
2166
|
+
description: {
|
|
2167
|
+
type: import("vue").PropType<string>;
|
|
2168
|
+
default: undefined;
|
|
2169
|
+
};
|
|
2170
|
+
value: {
|
|
2171
|
+
type: import("vue").PropType<any>;
|
|
2172
|
+
default: null;
|
|
2173
|
+
};
|
|
2174
|
+
messages: {
|
|
2175
|
+
type: import("vue").PropType<string | string[]>;
|
|
2176
|
+
default: () => never[];
|
|
2177
|
+
};
|
|
2178
|
+
persistentMessages: {
|
|
2179
|
+
type: import("vue").PropType<boolean>;
|
|
2180
|
+
default: boolean;
|
|
2181
|
+
};
|
|
2182
|
+
active: {
|
|
2183
|
+
type: import("vue").PropType<boolean>;
|
|
2184
|
+
default: boolean;
|
|
2185
|
+
};
|
|
2186
|
+
autofocus: {
|
|
2187
|
+
type: import("vue").PropType<boolean>;
|
|
2188
|
+
default: boolean;
|
|
2189
|
+
};
|
|
2190
|
+
prefix: {
|
|
2191
|
+
type: import("vue").PropType<string>;
|
|
2192
|
+
default: undefined;
|
|
2193
|
+
};
|
|
2194
|
+
suffix: {
|
|
2195
|
+
type: import("vue").PropType<string>;
|
|
2196
|
+
default: undefined;
|
|
2197
|
+
};
|
|
2198
|
+
prependInnerIcon: {
|
|
2199
|
+
type: import("vue").PropType<"link" | "filters" | "search" | "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" | "flag" | "globe" | "infinity" | "info-fill" | "info" | "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" | "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">;
|
|
2200
|
+
default: undefined;
|
|
2201
|
+
validator: (value: "link" | "filters" | "search" | "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" | "flag" | "globe" | "infinity" | "info-fill" | "info" | "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" | "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;
|
|
2202
|
+
};
|
|
2203
|
+
appendInnerIcon: {
|
|
2204
|
+
type: import("vue").PropType<"link" | "filters" | "search" | "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" | "flag" | "globe" | "infinity" | "info-fill" | "info" | "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" | "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">;
|
|
2205
|
+
default: undefined;
|
|
2206
|
+
validator: (value: "link" | "filters" | "search" | "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" | "flag" | "globe" | "infinity" | "info-fill" | "info" | "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" | "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;
|
|
2207
|
+
};
|
|
2208
|
+
type: {
|
|
2209
|
+
type: import("vue").PropType<"number" | "text" | "password" | "email" | "tel" | "url">;
|
|
2210
|
+
default: string;
|
|
2211
|
+
validator: (value: "number" | "text" | "password" | "email" | "tel" | "url") => boolean;
|
|
2212
|
+
};
|
|
2213
|
+
placeholder: {
|
|
2214
|
+
type: import("vue").PropType<string>;
|
|
2215
|
+
default: undefined;
|
|
2216
|
+
};
|
|
2217
|
+
counter: {
|
|
2218
|
+
type: import("vue").PropType<boolean>;
|
|
2219
|
+
default: boolean;
|
|
2220
|
+
};
|
|
2221
|
+
limit: {
|
|
2222
|
+
type: import("vue").PropType<number>;
|
|
2223
|
+
default: undefined;
|
|
2224
|
+
};
|
|
2225
|
+
clearable: {
|
|
2226
|
+
type: import("vue").PropType<boolean>;
|
|
2227
|
+
default: boolean;
|
|
2228
|
+
};
|
|
2229
|
+
'onClick:prependInner': {
|
|
2230
|
+
type: import("vue").PropType<(...args: any[]) => any>;
|
|
2231
|
+
default: undefined;
|
|
2232
|
+
};
|
|
2233
|
+
'onClick:appendInner': {
|
|
2234
|
+
type: import("vue").PropType<(...args: any[]) => any>;
|
|
2235
|
+
default: undefined;
|
|
2236
|
+
};
|
|
2237
|
+
multiple: {
|
|
2238
|
+
type: import("vue").PropType<boolean>;
|
|
2239
|
+
default: boolean;
|
|
2240
|
+
};
|
|
2241
|
+
openOnClear: {
|
|
2242
|
+
type: import("vue").PropType<boolean>;
|
|
2243
|
+
default: boolean;
|
|
2244
|
+
};
|
|
2245
|
+
hideSelected: {
|
|
2246
|
+
type: import("vue").PropType<boolean>;
|
|
2247
|
+
default: boolean;
|
|
2248
|
+
};
|
|
2249
|
+
noDataText: {
|
|
2250
|
+
type: import("vue").PropType<string>;
|
|
2251
|
+
default: string;
|
|
2252
|
+
};
|
|
2253
|
+
hideNoData: {
|
|
2254
|
+
type: import("vue").PropType<boolean>; /**
|
|
2255
|
+
* Событие при фокусе
|
|
2256
|
+
* @type { boolean }
|
|
2257
|
+
*/
|
|
2258
|
+
default: boolean;
|
|
2259
|
+
};
|
|
2260
|
+
isSelectAll: {
|
|
2261
|
+
type: import("vue").PropType<boolean>;
|
|
2262
|
+
default: boolean;
|
|
2263
|
+
};
|
|
2264
|
+
selectAllText: {
|
|
2265
|
+
type: import("vue").PropType<string>;
|
|
2266
|
+
default: string; /**
|
|
2267
|
+
* Событие выбора всех элементов
|
|
2268
|
+
* @type { boolean }
|
|
2269
|
+
*/
|
|
2270
|
+
};
|
|
2271
|
+
}>> & {
|
|
2272
|
+
"onUpdate:modelValue"?: ((value: any) => any) | undefined;
|
|
2273
|
+
"onUpdate:focused"?: ((value: boolean) => any) | undefined;
|
|
2274
|
+
"onUpdate:menu"?: ((value: boolean) => any) | undefined;
|
|
2275
|
+
"onUpdate:selectedAll"?: ((value: boolean) => any) | undefined;
|
|
2276
|
+
}, {
|
|
2277
|
+
name: string | undefined;
|
|
2278
|
+
type: "number" | "text" | "password" | "email" | "tel" | "url";
|
|
2279
|
+
description: string;
|
|
2280
|
+
disabled: boolean;
|
|
2281
|
+
items: any[];
|
|
2282
|
+
itemTitle: import("../../composable").TItemKey;
|
|
2283
|
+
itemValue: import("../../composable").TItemKey;
|
|
2284
|
+
value: any;
|
|
2285
|
+
itemChildren: import("../../composable").TItemKey;
|
|
2286
|
+
itemProps: import("../../composable").TItemKey;
|
|
2287
|
+
returnObject: boolean;
|
|
2288
|
+
error: boolean;
|
|
2289
|
+
menu: boolean | undefined;
|
|
2290
|
+
prependIcon: "link" | "filters" | "search" | "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" | "flag" | "globe" | "infinity" | "info-fill" | "info" | "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" | "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";
|
|
2291
|
+
appendIcon: "link" | "filters" | "search" | "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" | "flag" | "globe" | "infinity" | "info-fill" | "info" | "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" | "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";
|
|
2292
|
+
loading: boolean;
|
|
2293
|
+
transition: string | boolean | (import("vue").TransitionProps & {
|
|
2294
|
+
component?: import("vue").Component<any, any, any, import("vue").ComputedOptions, import("vue").MethodOptions> | undefined;
|
|
2295
|
+
});
|
|
2296
|
+
messages: string | string[];
|
|
2297
|
+
active: boolean;
|
|
2298
|
+
id: string;
|
|
2299
|
+
label: string;
|
|
2300
|
+
persistentMessages: boolean;
|
|
2301
|
+
errorMessages: string | string[];
|
|
2302
|
+
maxErrors: string | number;
|
|
2303
|
+
readonly: boolean;
|
|
2304
|
+
rules: import("../../composable").TValidationRule[];
|
|
2305
|
+
modelValue: any;
|
|
2306
|
+
validateOn: "input" | "blur" | "submit";
|
|
2307
|
+
validationValue: any;
|
|
2308
|
+
hideMessages: boolean;
|
|
2309
|
+
focused: boolean;
|
|
2310
|
+
'onClick:prepend': (...args: any[]) => any;
|
|
2311
|
+
'onClick:append': (...args: any[]) => any;
|
|
2312
|
+
autofocus: boolean;
|
|
2313
|
+
prefix: string;
|
|
2314
|
+
suffix: string;
|
|
2315
|
+
prependInnerIcon: "link" | "filters" | "search" | "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" | "flag" | "globe" | "infinity" | "info-fill" | "info" | "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" | "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";
|
|
2316
|
+
appendInnerIcon: "link" | "filters" | "search" | "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" | "flag" | "globe" | "infinity" | "info-fill" | "info" | "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" | "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";
|
|
2317
|
+
placeholder: string;
|
|
2318
|
+
counter: boolean;
|
|
2319
|
+
limit: number;
|
|
2320
|
+
clearable: boolean;
|
|
2321
|
+
'onClick:prependInner': (...args: any[]) => any;
|
|
2322
|
+
'onClick:appendInner': (...args: any[]) => any;
|
|
2323
|
+
eager: boolean;
|
|
2324
|
+
multiple: boolean;
|
|
2325
|
+
openOnClear: boolean;
|
|
2326
|
+
hideSelected: boolean;
|
|
2327
|
+
noDataText: string;
|
|
2328
|
+
hideNoData: boolean;
|
|
2329
|
+
isSelectAll: boolean;
|
|
2330
|
+
selectAllText: string;
|
|
2331
|
+
menuProps: any;
|
|
2332
|
+
menuHeight: string | number;
|
|
2333
|
+
}>;
|
|
2334
|
+
export default _sfc_main;
|