@central-design-system/components 3.0.0-alpha.12 → 3.0.0-alpha.13
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 +10 -1
- package/dist/cds.es.js +7041 -6131
- package/dist/cds.umd.js +3 -3
- package/dist/components/CdsButton/CdsButton.vue.d.ts +70 -19
- package/dist/components/CdsCheckbox/CdsCheckbox.vue.d.ts +1 -1
- package/dist/components/CdsCombobox/CdsCombobox.vue.d.ts +4 -4
- package/dist/components/CdsContainer/CdsContainer.vue.d.ts +45 -46
- package/dist/components/CdsContainer/CdsContainerItem.vue.d.ts +3 -3
- package/dist/components/CdsDropdown/CdsDropdown.vue.d.ts +4 -4
- package/dist/components/CdsExpandablePanel/CdsExpandablePanel.vue.d.ts +119 -0
- package/dist/components/CdsExpandablePanel/CdsExpandablePanelContent.vue.d.ts +15 -0
- package/dist/components/CdsExpandablePanel/CdsExpandablePanelTitle.vue.d.ts +55 -0
- package/dist/components/CdsExpandablePanel/CdsExpandablePanels.vue.d.ts +115 -0
- package/dist/components/CdsExpandablePanel/composable/expandablePanelTitleProps.d.ts +31 -0
- package/dist/components/CdsExpandablePanel/composable/expandablePanels.d.ts +16 -0
- package/dist/components/CdsExpandablePanel/composable/index.d.ts +1 -0
- package/dist/components/CdsExpandablePanel/index.d.ts +4 -0
- package/dist/components/CdsList/CdsListGroup.vue.d.ts +1 -1
- package/dist/components/CdsModal/CdsModal.vue.d.ts +781 -0
- package/dist/components/CdsModal/index.d.ts +1 -0
- package/dist/components/CdsSelect/CdsSelect.vue.d.ts +2 -2
- package/dist/components/CdsSlideGroup/CdsSlideGroup.vue.d.ts +162 -0
- package/dist/components/CdsSlideGroup/CdsSlideGroupItem.vue.d.ts +43 -0
- package/dist/components/CdsSlideGroup/index.d.ts +2 -0
- package/dist/components/CdsSlideGroup/utils/calculate.d.ts +14 -0
- package/dist/components/CdsSlideGroup/utils/index.d.ts +1 -0
- package/dist/components/CdsTable/CdsTable.vue.d.ts +1 -1
- package/dist/components/CdsTable/components/Table/InternalTable.d.ts +1 -1
- package/dist/components/CdsTable/components/TableProvider.d.ts +1 -1
- package/dist/components/CdsTable/composable/scroll.d.ts +4608 -0
- package/dist/components/CdsTabs/CdsTab.vue.d.ts +132 -0
- package/dist/components/CdsTabs/CdsTabs.vue.d.ts +216 -0
- package/dist/components/CdsTabs/index.d.ts +2 -0
- package/dist/components/CdsTabs/shared.d.ts +3 -0
- package/dist/components/CdsTabs/utils/helpers.d.ts +2 -0
- package/dist/components/CdsTabs/utils/index.d.ts +1 -0
- package/dist/components/CdsTextArea/CdsTextArea.vue.d.ts +2 -2
- package/dist/components/CdsTextInput/CdsTextInput.vue.d.ts +2 -2
- package/dist/components/index.d.ts +14 -1
- package/dist/composable/align.d.ts +17 -0
- package/dist/composable/group.d.ts +31 -5
- package/dist/composable/index.d.ts +1 -0
- package/dist/composable/resizeObserver.d.ts +1 -1
- package/dist/transitions/index.d.ts +61 -0
- package/dist/transitions/modalTransition.d.ts +8 -0
- package/dist/utils/helpers.d.ts +3 -1
- package/package.json +3 -3
- package/src/scss/modules/_reset.scss +5 -0
- package/src/scss/modules/_transition.scss +48 -1
- package/src/scss/themes/index.ts +1 -1
|
@@ -1,6 +1,21 @@
|
|
|
1
|
-
import type { PropType } from 'vue';
|
|
1
|
+
import type { PropType, InjectionKey } from 'vue';
|
|
2
|
+
import type { IGroupProvide } from '../../composable';
|
|
3
|
+
import type { TCdsIconsName } from '@central-design-system/icons';
|
|
4
|
+
export declare const CdsButtonToggleSymbol: InjectionKey<IGroupProvide>;
|
|
2
5
|
export declare const componentName = "CdsButton";
|
|
3
6
|
declare const _sfc_main: import("vue").DefineComponent<{
|
|
7
|
+
symbol: {
|
|
8
|
+
type: null;
|
|
9
|
+
default: InjectionKey<IGroupProvide>;
|
|
10
|
+
};
|
|
11
|
+
value: {
|
|
12
|
+
type: null;
|
|
13
|
+
default: undefined;
|
|
14
|
+
};
|
|
15
|
+
selectedClass: {
|
|
16
|
+
type: PropType<string>;
|
|
17
|
+
default: undefined;
|
|
18
|
+
};
|
|
4
19
|
dark: {
|
|
5
20
|
type: PropType<boolean>;
|
|
6
21
|
default: boolean;
|
|
@@ -52,30 +67,50 @@ declare const _sfc_main: import("vue").DefineComponent<{
|
|
|
52
67
|
default: undefined;
|
|
53
68
|
};
|
|
54
69
|
/**
|
|
55
|
-
*
|
|
70
|
+
* Кнопка активна
|
|
71
|
+
*/
|
|
72
|
+
active: {
|
|
73
|
+
type: BooleanConstructor;
|
|
74
|
+
default: undefined;
|
|
75
|
+
};
|
|
76
|
+
/**
|
|
77
|
+
* Название иконки (только иконка в кнопке) или `true` для иконки по умолчанию
|
|
56
78
|
*/
|
|
57
79
|
icon: {
|
|
58
|
-
type: PropType<boolean>;
|
|
59
|
-
default:
|
|
80
|
+
type: PropType<boolean | "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" | "checkbox-fill" | "checkbox" | "chevron-down" | "chevron-left" | "chevron-right" | "chevron-up" | "chocolate-menu" | "clock" | "comment" | "company" | "compare" | "copy" | "data-cards" | "delete" | "directory" | "doc-download" | "doc" | "download" | "draggable" | "edit" | "enter" | "error-fill" | "error" | "external" | "facebook-fill" | "facebook" | "flag" | "funnel" | "globe" | "infinity" | "info-fill" | "info" | "list-search" | "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">;
|
|
81
|
+
default: undefined;
|
|
82
|
+
validator: (value: TCdsIconsName | boolean) => boolean;
|
|
60
83
|
};
|
|
61
84
|
}, {
|
|
62
|
-
appearanceClasses: import("vue").ComputedRef<string>;
|
|
63
|
-
sizeClasses: import("vue").ComputedRef<string>;
|
|
64
|
-
loadingClasses: import("vue").ComputedRef<string | undefined>;
|
|
65
|
-
disabledClasses: import("vue").ComputedRef<string | undefined>;
|
|
66
|
-
readonlyClasses: import("vue").ComputedRef<string | undefined>;
|
|
67
|
-
darkClasses: import("vue").ComputedRef<string | undefined>;
|
|
68
|
-
iconClasses: import("vue").ComputedRef<{
|
|
69
|
-
'cds-button__icon': boolean;
|
|
70
|
-
}>;
|
|
71
85
|
href: import("vue").ComputedRef<string | undefined>;
|
|
72
86
|
to: import("vue").ComputedRef<import("vue-router").RouteLocationRaw | undefined>;
|
|
73
87
|
tag: string | import("vue").ComputedRef<string>;
|
|
74
88
|
type: string | undefined;
|
|
89
|
+
valueAttr: import("vue").ComputedRef<any>;
|
|
90
|
+
internalIcon: import("vue").ComputedRef<"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" | "checkbox-fill" | "checkbox" | "chevron-down" | "chevron-left" | "chevron-right" | "chevron-up" | "chocolate-menu" | "clock" | "comment" | "company" | "compare" | "copy" | "data-cards" | "delete" | "directory" | "doc-download" | "doc" | "download" | "draggable" | "edit" | "enter" | "error-fill" | "error" | "external" | "facebook-fill" | "facebook" | "flag" | "funnel" | "globe" | "infinity" | "info-fill" | "info" | "list-search" | "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>;
|
|
75
91
|
hasPrepend: import("vue").ComputedRef<boolean>;
|
|
76
92
|
hasAppend: import("vue").ComputedRef<boolean>;
|
|
77
93
|
hasDefaultSlot: import("vue").ComputedRef<boolean>;
|
|
78
|
-
|
|
94
|
+
isDisabled: import("vue").ComputedRef<boolean>;
|
|
95
|
+
classes: import("vue").ComputedRef<any>;
|
|
96
|
+
onClick: (event: MouseEvent) => void;
|
|
97
|
+
}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {
|
|
98
|
+
'group:selected': (value: {
|
|
99
|
+
value: boolean;
|
|
100
|
+
}) => true;
|
|
101
|
+
}, string, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<{
|
|
102
|
+
symbol: {
|
|
103
|
+
type: null;
|
|
104
|
+
default: InjectionKey<IGroupProvide>;
|
|
105
|
+
};
|
|
106
|
+
value: {
|
|
107
|
+
type: null;
|
|
108
|
+
default: undefined;
|
|
109
|
+
};
|
|
110
|
+
selectedClass: {
|
|
111
|
+
type: PropType<string>;
|
|
112
|
+
default: undefined;
|
|
113
|
+
};
|
|
79
114
|
dark: {
|
|
80
115
|
type: PropType<boolean>;
|
|
81
116
|
default: boolean;
|
|
@@ -127,24 +162,40 @@ declare const _sfc_main: import("vue").DefineComponent<{
|
|
|
127
162
|
default: undefined;
|
|
128
163
|
};
|
|
129
164
|
/**
|
|
130
|
-
*
|
|
165
|
+
* Кнопка активна
|
|
166
|
+
*/
|
|
167
|
+
active: {
|
|
168
|
+
type: BooleanConstructor;
|
|
169
|
+
default: undefined;
|
|
170
|
+
};
|
|
171
|
+
/**
|
|
172
|
+
* Название иконки (только иконка в кнопке) или `true` для иконки по умолчанию
|
|
131
173
|
*/
|
|
132
174
|
icon: {
|
|
133
|
-
type: PropType<boolean>;
|
|
134
|
-
default:
|
|
175
|
+
type: PropType<boolean | "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" | "checkbox-fill" | "checkbox" | "chevron-down" | "chevron-left" | "chevron-right" | "chevron-up" | "chocolate-menu" | "clock" | "comment" | "company" | "compare" | "copy" | "data-cards" | "delete" | "directory" | "doc-download" | "doc" | "download" | "draggable" | "edit" | "enter" | "error-fill" | "error" | "external" | "facebook-fill" | "facebook" | "flag" | "funnel" | "globe" | "infinity" | "info-fill" | "info" | "list-search" | "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">;
|
|
176
|
+
default: undefined;
|
|
177
|
+
validator: (value: TCdsIconsName | boolean) => boolean;
|
|
135
178
|
};
|
|
136
|
-
}
|
|
179
|
+
}>> & {
|
|
180
|
+
"onGroup:selected"?: ((value: {
|
|
181
|
+
value: boolean;
|
|
182
|
+
}) => any) | undefined;
|
|
183
|
+
}, {
|
|
184
|
+
symbol: any;
|
|
137
185
|
dark: boolean;
|
|
138
186
|
text: string;
|
|
139
187
|
href: string;
|
|
140
188
|
to: import("vue-router").RouteLocationRaw;
|
|
141
189
|
disabled: boolean;
|
|
190
|
+
value: any;
|
|
142
191
|
size: "xs" | "sm" | "md" | "lg" | "xl";
|
|
143
192
|
appearance: "primary" | "secondary" | "transparent";
|
|
144
193
|
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" | "checkbox-fill" | "checkbox" | "chevron-down" | "chevron-left" | "chevron-right" | "chevron-up" | "chocolate-menu" | "clock" | "comment" | "company" | "compare" | "copy" | "data-cards" | "delete" | "directory" | "doc-download" | "doc" | "download" | "draggable" | "edit" | "enter" | "error-fill" | "error" | "external" | "facebook-fill" | "facebook" | "flag" | "funnel" | "globe" | "infinity" | "info-fill" | "info" | "list-search" | "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";
|
|
145
194
|
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" | "checkbox-fill" | "checkbox" | "chevron-down" | "chevron-left" | "chevron-right" | "chevron-up" | "chocolate-menu" | "clock" | "comment" | "company" | "compare" | "copy" | "data-cards" | "delete" | "directory" | "doc-download" | "doc" | "download" | "draggable" | "edit" | "enter" | "error-fill" | "error" | "external" | "facebook-fill" | "facebook" | "flag" | "funnel" | "globe" | "infinity" | "info-fill" | "info" | "list-search" | "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";
|
|
146
|
-
icon: boolean;
|
|
195
|
+
icon: boolean | "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" | "checkbox-fill" | "checkbox" | "chevron-down" | "chevron-left" | "chevron-right" | "chevron-up" | "chocolate-menu" | "clock" | "comment" | "company" | "compare" | "copy" | "data-cards" | "delete" | "directory" | "doc-download" | "doc" | "download" | "draggable" | "edit" | "enter" | "error-fill" | "error" | "external" | "facebook-fill" | "facebook" | "flag" | "funnel" | "globe" | "infinity" | "info-fill" | "info" | "list-search" | "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";
|
|
147
196
|
readonly: boolean;
|
|
148
197
|
loading: boolean;
|
|
198
|
+
selectedClass: string;
|
|
199
|
+
active: boolean;
|
|
149
200
|
}>;
|
|
150
201
|
export default _sfc_main;
|
|
@@ -237,6 +237,7 @@ declare const _sfc_main: import("vue").DefineComponent<{
|
|
|
237
237
|
value: any;
|
|
238
238
|
error: boolean;
|
|
239
239
|
readonly: boolean;
|
|
240
|
+
indeterminate: boolean;
|
|
240
241
|
messages: string | string[];
|
|
241
242
|
id: string;
|
|
242
243
|
label: string;
|
|
@@ -249,6 +250,5 @@ declare const _sfc_main: import("vue").DefineComponent<{
|
|
|
249
250
|
validationValue: any;
|
|
250
251
|
hideMessages: boolean;
|
|
251
252
|
focused: boolean;
|
|
252
|
-
indeterminate: boolean;
|
|
253
253
|
}>;
|
|
254
254
|
export default _sfc_main;
|
|
@@ -695,8 +695,8 @@ declare const _sfc_main: import("vue").DefineComponent<{
|
|
|
695
695
|
readonly error?: boolean | undefined;
|
|
696
696
|
readonly readonly?: boolean | undefined;
|
|
697
697
|
readonly loading?: boolean | undefined;
|
|
698
|
-
readonly messages?: string | string[] | undefined;
|
|
699
698
|
readonly active?: boolean | undefined;
|
|
699
|
+
readonly messages?: string | string[] | undefined;
|
|
700
700
|
readonly persistentMessages?: boolean | undefined;
|
|
701
701
|
readonly errorMessages?: string | string[] | undefined;
|
|
702
702
|
readonly maxErrors?: string | number | undefined;
|
|
@@ -947,8 +947,8 @@ declare const _sfc_main: import("vue").DefineComponent<{
|
|
|
947
947
|
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" | "checkbox-fill" | "checkbox" | "chevron-down" | "chevron-left" | "chevron-right" | "chevron-up" | "chocolate-menu" | "clock" | "comment" | "company" | "compare" | "copy" | "data-cards" | "delete" | "directory" | "doc-download" | "doc" | "download" | "draggable" | "edit" | "enter" | "error-fill" | "error" | "external" | "facebook-fill" | "facebook" | "flag" | "funnel" | "globe" | "infinity" | "info-fill" | "info" | "list-search" | "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";
|
|
948
948
|
readonly: boolean;
|
|
949
949
|
loading: boolean;
|
|
950
|
-
messages: string | string[];
|
|
951
950
|
active: boolean;
|
|
951
|
+
messages: string | string[];
|
|
952
952
|
id: string;
|
|
953
953
|
label: string;
|
|
954
954
|
persistentMessages: boolean;
|
|
@@ -1847,6 +1847,7 @@ declare const _sfc_main: import("vue").DefineComponent<{
|
|
|
1847
1847
|
readonly error?: boolean | undefined;
|
|
1848
1848
|
readonly readonly?: boolean | undefined;
|
|
1849
1849
|
readonly loading?: boolean | undefined;
|
|
1850
|
+
readonly active?: boolean | undefined;
|
|
1850
1851
|
readonly transition?: string | boolean | {
|
|
1851
1852
|
name?: string | undefined;
|
|
1852
1853
|
type?: ("transition" | "animation") | undefined;
|
|
@@ -2002,7 +2003,6 @@ declare const _sfc_main: import("vue").DefineComponent<{
|
|
|
2002
2003
|
} | undefined;
|
|
2003
2004
|
} | undefined;
|
|
2004
2005
|
readonly messages?: string | string[] | undefined;
|
|
2005
|
-
readonly active?: boolean | undefined;
|
|
2006
2006
|
readonly persistentMessages?: boolean | undefined;
|
|
2007
2007
|
readonly errorMessages?: string | string[] | undefined;
|
|
2008
2008
|
readonly maxErrors?: string | number | undefined;
|
|
@@ -2407,11 +2407,11 @@ declare const _sfc_main: import("vue").DefineComponent<{
|
|
|
2407
2407
|
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" | "checkbox-fill" | "checkbox" | "chevron-down" | "chevron-left" | "chevron-right" | "chevron-up" | "chocolate-menu" | "clock" | "comment" | "company" | "compare" | "copy" | "data-cards" | "delete" | "directory" | "doc-download" | "doc" | "download" | "draggable" | "edit" | "enter" | "error-fill" | "error" | "external" | "facebook-fill" | "facebook" | "flag" | "funnel" | "globe" | "infinity" | "info-fill" | "info" | "list-search" | "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";
|
|
2408
2408
|
readonly: boolean;
|
|
2409
2409
|
loading: boolean;
|
|
2410
|
+
active: boolean;
|
|
2410
2411
|
transition: string | boolean | (import("vue").TransitionProps & {
|
|
2411
2412
|
component?: import("vue").Component<any, any, any, import("vue").ComputedOptions, import("vue").MethodOptions> | undefined;
|
|
2412
2413
|
});
|
|
2413
2414
|
messages: string | string[];
|
|
2414
|
-
active: boolean;
|
|
2415
2415
|
id: string;
|
|
2416
2416
|
label: string;
|
|
2417
2417
|
persistentMessages: boolean;
|
|
@@ -1,6 +1,5 @@
|
|
|
1
|
-
import { IGroupItemProvide } from '../../composable';
|
|
1
|
+
import type { IGroupItemProvide } from '../../composable';
|
|
2
2
|
import type { PropType, InjectionKey, Ref, ComputedRef } from 'vue';
|
|
3
|
-
import type { TCdsIconsName } from '@central-design-system/icons';
|
|
4
3
|
import type { ITouchHandlers } from '../../directives/touch';
|
|
5
4
|
export interface ICdsContainerProvide {
|
|
6
5
|
rootRef: Ref<HTMLElement | undefined>;
|
|
@@ -15,6 +14,22 @@ export declare const CdsContainerSymbol: InjectionKey<ICdsContainerProvide>;
|
|
|
15
14
|
export declare const CdsContainerGroupSymbol: InjectionKey<IGroupItemProvide>;
|
|
16
15
|
export declare const componentName = "CdsContainer";
|
|
17
16
|
declare const _sfc_main: import("vue").DefineComponent<{
|
|
17
|
+
prependIcon: Omit<{
|
|
18
|
+
type: 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" | "checkbox-fill" | "checkbox" | "chevron-down" | "chevron-left" | "chevron-right" | "chevron-up" | "chocolate-menu" | "clock" | "comment" | "company" | "compare" | "copy" | "data-cards" | "delete" | "directory" | "doc-download" | "doc" | "download" | "draggable" | "edit" | "enter" | "error-fill" | "error" | "external" | "facebook-fill" | "facebook" | "flag" | "funnel" | "globe" | "infinity" | "info-fill" | "info" | "list-search" | "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">;
|
|
19
|
+
default: undefined;
|
|
20
|
+
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" | "checkbox-fill" | "checkbox" | "chevron-down" | "chevron-left" | "chevron-right" | "chevron-up" | "chocolate-menu" | "clock" | "comment" | "company" | "compare" | "copy" | "data-cards" | "delete" | "directory" | "doc-download" | "doc" | "download" | "draggable" | "edit" | "enter" | "error-fill" | "error" | "external" | "facebook-fill" | "facebook" | "flag" | "funnel" | "globe" | "infinity" | "info-fill" | "info" | "list-search" | "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;
|
|
21
|
+
}, "default" | "type"> & {
|
|
22
|
+
type: PropType<NonNullable<"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" | "checkbox-fill" | "checkbox" | "chevron-down" | "chevron-left" | "chevron-right" | "chevron-up" | "chocolate-menu" | "clock" | "comment" | "company" | "compare" | "copy" | "data-cards" | "delete" | "directory" | "doc-download" | "doc" | "download" | "draggable" | "edit" | "enter" | "error-fill" | "error" | "external" | "facebook-fill" | "facebook" | "flag" | "funnel" | "globe" | "infinity" | "info-fill" | "info" | "list-search" | "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">>;
|
|
23
|
+
default: NonNullable<"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" | "checkbox-fill" | "checkbox" | "chevron-down" | "chevron-left" | "chevron-right" | "chevron-up" | "chocolate-menu" | "clock" | "comment" | "company" | "compare" | "copy" | "data-cards" | "delete" | "directory" | "doc-download" | "doc" | "download" | "draggable" | "edit" | "enter" | "error-fill" | "error" | "external" | "facebook-fill" | "facebook" | "flag" | "funnel" | "globe" | "infinity" | "info-fill" | "info" | "list-search" | "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">;
|
|
24
|
+
};
|
|
25
|
+
appendIcon: Omit<{
|
|
26
|
+
type: 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" | "checkbox-fill" | "checkbox" | "chevron-down" | "chevron-left" | "chevron-right" | "chevron-up" | "chocolate-menu" | "clock" | "comment" | "company" | "compare" | "copy" | "data-cards" | "delete" | "directory" | "doc-download" | "doc" | "download" | "draggable" | "edit" | "enter" | "error-fill" | "error" | "external" | "facebook-fill" | "facebook" | "flag" | "funnel" | "globe" | "infinity" | "info-fill" | "info" | "list-search" | "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">;
|
|
27
|
+
default: undefined;
|
|
28
|
+
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" | "checkbox-fill" | "checkbox" | "chevron-down" | "chevron-left" | "chevron-right" | "chevron-up" | "chocolate-menu" | "clock" | "comment" | "company" | "compare" | "copy" | "data-cards" | "delete" | "directory" | "doc-download" | "doc" | "download" | "draggable" | "edit" | "enter" | "error-fill" | "error" | "external" | "facebook-fill" | "facebook" | "flag" | "funnel" | "globe" | "infinity" | "info-fill" | "info" | "list-search" | "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;
|
|
29
|
+
}, "default" | "type"> & {
|
|
30
|
+
type: PropType<NonNullable<"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" | "checkbox-fill" | "checkbox" | "chevron-down" | "chevron-left" | "chevron-right" | "chevron-up" | "chocolate-menu" | "clock" | "comment" | "company" | "compare" | "copy" | "data-cards" | "delete" | "directory" | "doc-download" | "doc" | "download" | "draggable" | "edit" | "enter" | "error-fill" | "error" | "external" | "facebook-fill" | "facebook" | "flag" | "funnel" | "globe" | "infinity" | "info-fill" | "info" | "list-search" | "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">>;
|
|
31
|
+
default: NonNullable<"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" | "checkbox-fill" | "checkbox" | "chevron-down" | "chevron-left" | "chevron-right" | "chevron-up" | "chocolate-menu" | "clock" | "comment" | "company" | "compare" | "copy" | "data-cards" | "delete" | "directory" | "doc-download" | "doc" | "download" | "draggable" | "edit" | "enter" | "error-fill" | "error" | "external" | "facebook-fill" | "facebook" | "flag" | "funnel" | "globe" | "infinity" | "info-fill" | "info" | "list-search" | "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">;
|
|
32
|
+
};
|
|
18
33
|
disabled: {
|
|
19
34
|
type: PropType<boolean>;
|
|
20
35
|
default: boolean;
|
|
@@ -41,19 +56,19 @@ declare const _sfc_main: import("vue").DefineComponent<{
|
|
|
41
56
|
validator: (value: "primary" | "secondary" | "transparent") => boolean;
|
|
42
57
|
};
|
|
43
58
|
modelValue: {
|
|
44
|
-
type:
|
|
59
|
+
type: null;
|
|
45
60
|
default: undefined;
|
|
46
61
|
};
|
|
47
62
|
multiple: {
|
|
48
|
-
type:
|
|
63
|
+
type: PropType<boolean>;
|
|
49
64
|
default: boolean;
|
|
50
65
|
};
|
|
51
66
|
required: {
|
|
52
67
|
type: PropType<boolean | "force">;
|
|
53
|
-
default:
|
|
68
|
+
default: undefined;
|
|
54
69
|
};
|
|
55
70
|
max: {
|
|
56
|
-
type:
|
|
71
|
+
type: PropType<number>;
|
|
57
72
|
default: undefined;
|
|
58
73
|
};
|
|
59
74
|
selectedClass: {
|
|
@@ -81,22 +96,6 @@ declare const _sfc_main: import("vue").DefineComponent<{
|
|
|
81
96
|
type: PropType<boolean>;
|
|
82
97
|
default: boolean;
|
|
83
98
|
};
|
|
84
|
-
/**
|
|
85
|
-
* Иконка для переключения на предыдущий контейнер
|
|
86
|
-
*/
|
|
87
|
-
prevIcon: {
|
|
88
|
-
type: 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" | "checkbox-fill" | "checkbox" | "chevron-down" | "chevron-left" | "chevron-right" | "chevron-up" | "chocolate-menu" | "clock" | "comment" | "company" | "compare" | "copy" | "data-cards" | "delete" | "directory" | "doc-download" | "doc" | "download" | "draggable" | "edit" | "enter" | "error-fill" | "error" | "external" | "facebook-fill" | "facebook" | "flag" | "funnel" | "globe" | "infinity" | "info-fill" | "info" | "list-search" | "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">;
|
|
89
|
-
default: string;
|
|
90
|
-
validator: (value: TCdsIconsName) => boolean;
|
|
91
|
-
};
|
|
92
|
-
/**
|
|
93
|
-
* Иконка для переключения на следующий контейнер
|
|
94
|
-
*/
|
|
95
|
-
nextIcon: {
|
|
96
|
-
type: 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" | "checkbox-fill" | "checkbox" | "chevron-down" | "chevron-left" | "chevron-right" | "chevron-up" | "chocolate-menu" | "clock" | "comment" | "company" | "compare" | "copy" | "data-cards" | "delete" | "directory" | "doc-download" | "doc" | "download" | "draggable" | "edit" | "enter" | "error-fill" | "error" | "external" | "facebook-fill" | "facebook" | "flag" | "funnel" | "globe" | "infinity" | "info-fill" | "info" | "list-search" | "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">;
|
|
97
|
-
default: string;
|
|
98
|
-
validator: (value: TCdsIconsName) => boolean;
|
|
99
|
-
};
|
|
100
99
|
/**
|
|
101
100
|
* Активирует переключение контейнеров по свайпу
|
|
102
101
|
*/
|
|
@@ -109,6 +108,22 @@ declare const _sfc_main: import("vue").DefineComponent<{
|
|
|
109
108
|
}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {
|
|
110
109
|
'update:modelValue': (value: any) => boolean;
|
|
111
110
|
}, string, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<{
|
|
111
|
+
prependIcon: Omit<{
|
|
112
|
+
type: 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" | "checkbox-fill" | "checkbox" | "chevron-down" | "chevron-left" | "chevron-right" | "chevron-up" | "chocolate-menu" | "clock" | "comment" | "company" | "compare" | "copy" | "data-cards" | "delete" | "directory" | "doc-download" | "doc" | "download" | "draggable" | "edit" | "enter" | "error-fill" | "error" | "external" | "facebook-fill" | "facebook" | "flag" | "funnel" | "globe" | "infinity" | "info-fill" | "info" | "list-search" | "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">;
|
|
113
|
+
default: undefined;
|
|
114
|
+
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" | "checkbox-fill" | "checkbox" | "chevron-down" | "chevron-left" | "chevron-right" | "chevron-up" | "chocolate-menu" | "clock" | "comment" | "company" | "compare" | "copy" | "data-cards" | "delete" | "directory" | "doc-download" | "doc" | "download" | "draggable" | "edit" | "enter" | "error-fill" | "error" | "external" | "facebook-fill" | "facebook" | "flag" | "funnel" | "globe" | "infinity" | "info-fill" | "info" | "list-search" | "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;
|
|
115
|
+
}, "default" | "type"> & {
|
|
116
|
+
type: PropType<NonNullable<"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" | "checkbox-fill" | "checkbox" | "chevron-down" | "chevron-left" | "chevron-right" | "chevron-up" | "chocolate-menu" | "clock" | "comment" | "company" | "compare" | "copy" | "data-cards" | "delete" | "directory" | "doc-download" | "doc" | "download" | "draggable" | "edit" | "enter" | "error-fill" | "error" | "external" | "facebook-fill" | "facebook" | "flag" | "funnel" | "globe" | "infinity" | "info-fill" | "info" | "list-search" | "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">>;
|
|
117
|
+
default: NonNullable<"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" | "checkbox-fill" | "checkbox" | "chevron-down" | "chevron-left" | "chevron-right" | "chevron-up" | "chocolate-menu" | "clock" | "comment" | "company" | "compare" | "copy" | "data-cards" | "delete" | "directory" | "doc-download" | "doc" | "download" | "draggable" | "edit" | "enter" | "error-fill" | "error" | "external" | "facebook-fill" | "facebook" | "flag" | "funnel" | "globe" | "infinity" | "info-fill" | "info" | "list-search" | "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">;
|
|
118
|
+
};
|
|
119
|
+
appendIcon: Omit<{
|
|
120
|
+
type: 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" | "checkbox-fill" | "checkbox" | "chevron-down" | "chevron-left" | "chevron-right" | "chevron-up" | "chocolate-menu" | "clock" | "comment" | "company" | "compare" | "copy" | "data-cards" | "delete" | "directory" | "doc-download" | "doc" | "download" | "draggable" | "edit" | "enter" | "error-fill" | "error" | "external" | "facebook-fill" | "facebook" | "flag" | "funnel" | "globe" | "infinity" | "info-fill" | "info" | "list-search" | "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">;
|
|
121
|
+
default: undefined;
|
|
122
|
+
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" | "checkbox-fill" | "checkbox" | "chevron-down" | "chevron-left" | "chevron-right" | "chevron-up" | "chocolate-menu" | "clock" | "comment" | "company" | "compare" | "copy" | "data-cards" | "delete" | "directory" | "doc-download" | "doc" | "download" | "draggable" | "edit" | "enter" | "error-fill" | "error" | "external" | "facebook-fill" | "facebook" | "flag" | "funnel" | "globe" | "infinity" | "info-fill" | "info" | "list-search" | "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;
|
|
123
|
+
}, "default" | "type"> & {
|
|
124
|
+
type: PropType<NonNullable<"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" | "checkbox-fill" | "checkbox" | "chevron-down" | "chevron-left" | "chevron-right" | "chevron-up" | "chocolate-menu" | "clock" | "comment" | "company" | "compare" | "copy" | "data-cards" | "delete" | "directory" | "doc-download" | "doc" | "download" | "draggable" | "edit" | "enter" | "error-fill" | "error" | "external" | "facebook-fill" | "facebook" | "flag" | "funnel" | "globe" | "infinity" | "info-fill" | "info" | "list-search" | "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">>;
|
|
125
|
+
default: NonNullable<"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" | "checkbox-fill" | "checkbox" | "chevron-down" | "chevron-left" | "chevron-right" | "chevron-up" | "chocolate-menu" | "clock" | "comment" | "company" | "compare" | "copy" | "data-cards" | "delete" | "directory" | "doc-download" | "doc" | "download" | "draggable" | "edit" | "enter" | "error-fill" | "error" | "external" | "facebook-fill" | "facebook" | "flag" | "funnel" | "globe" | "infinity" | "info-fill" | "info" | "list-search" | "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">;
|
|
126
|
+
};
|
|
112
127
|
disabled: {
|
|
113
128
|
type: PropType<boolean>;
|
|
114
129
|
default: boolean;
|
|
@@ -135,19 +150,19 @@ declare const _sfc_main: import("vue").DefineComponent<{
|
|
|
135
150
|
validator: (value: "primary" | "secondary" | "transparent") => boolean;
|
|
136
151
|
};
|
|
137
152
|
modelValue: {
|
|
138
|
-
type:
|
|
153
|
+
type: null;
|
|
139
154
|
default: undefined;
|
|
140
155
|
};
|
|
141
156
|
multiple: {
|
|
142
|
-
type:
|
|
157
|
+
type: PropType<boolean>;
|
|
143
158
|
default: boolean;
|
|
144
159
|
};
|
|
145
160
|
required: {
|
|
146
161
|
type: PropType<boolean | "force">;
|
|
147
|
-
default:
|
|
162
|
+
default: undefined;
|
|
148
163
|
};
|
|
149
164
|
max: {
|
|
150
|
-
type:
|
|
165
|
+
type: PropType<number>;
|
|
151
166
|
default: undefined;
|
|
152
167
|
};
|
|
153
168
|
selectedClass: {
|
|
@@ -175,22 +190,6 @@ declare const _sfc_main: import("vue").DefineComponent<{
|
|
|
175
190
|
type: PropType<boolean>;
|
|
176
191
|
default: boolean;
|
|
177
192
|
};
|
|
178
|
-
/**
|
|
179
|
-
* Иконка для переключения на предыдущий контейнер
|
|
180
|
-
*/
|
|
181
|
-
prevIcon: {
|
|
182
|
-
type: 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" | "checkbox-fill" | "checkbox" | "chevron-down" | "chevron-left" | "chevron-right" | "chevron-up" | "chocolate-menu" | "clock" | "comment" | "company" | "compare" | "copy" | "data-cards" | "delete" | "directory" | "doc-download" | "doc" | "download" | "draggable" | "edit" | "enter" | "error-fill" | "error" | "external" | "facebook-fill" | "facebook" | "flag" | "funnel" | "globe" | "infinity" | "info-fill" | "info" | "list-search" | "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">;
|
|
183
|
-
default: string;
|
|
184
|
-
validator: (value: TCdsIconsName) => boolean;
|
|
185
|
-
};
|
|
186
|
-
/**
|
|
187
|
-
* Иконка для переключения на следующий контейнер
|
|
188
|
-
*/
|
|
189
|
-
nextIcon: {
|
|
190
|
-
type: 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" | "checkbox-fill" | "checkbox" | "chevron-down" | "chevron-left" | "chevron-right" | "chevron-up" | "chocolate-menu" | "clock" | "comment" | "company" | "compare" | "copy" | "data-cards" | "delete" | "directory" | "doc-download" | "doc" | "download" | "draggable" | "edit" | "enter" | "error-fill" | "error" | "external" | "facebook-fill" | "facebook" | "flag" | "funnel" | "globe" | "infinity" | "info-fill" | "info" | "list-search" | "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">;
|
|
191
|
-
default: string;
|
|
192
|
-
validator: (value: TCdsIconsName) => boolean;
|
|
193
|
-
};
|
|
194
193
|
/**
|
|
195
194
|
* Активирует переключение контейнеров по свайпу
|
|
196
195
|
*/
|
|
@@ -205,16 +204,16 @@ declare const _sfc_main: import("vue").DefineComponent<{
|
|
|
205
204
|
disabled: boolean;
|
|
206
205
|
tag: string;
|
|
207
206
|
appearance: "primary" | "secondary" | "transparent";
|
|
208
|
-
|
|
207
|
+
prependIcon: NonNullable<"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" | "checkbox-fill" | "checkbox" | "chevron-down" | "chevron-left" | "chevron-right" | "chevron-up" | "chocolate-menu" | "clock" | "comment" | "company" | "compare" | "copy" | "data-cards" | "delete" | "directory" | "doc-download" | "doc" | "download" | "draggable" | "edit" | "enter" | "error-fill" | "error" | "external" | "facebook-fill" | "facebook" | "flag" | "funnel" | "globe" | "infinity" | "info-fill" | "info" | "list-search" | "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">;
|
|
208
|
+
appendIcon: NonNullable<"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" | "checkbox-fill" | "checkbox" | "chevron-down" | "chevron-left" | "chevron-right" | "chevron-up" | "chocolate-menu" | "clock" | "comment" | "company" | "compare" | "copy" | "data-cards" | "delete" | "directory" | "doc-download" | "doc" | "download" | "draggable" | "edit" | "enter" | "error-fill" | "error" | "external" | "facebook-fill" | "facebook" | "flag" | "funnel" | "globe" | "infinity" | "info-fill" | "info" | "list-search" | "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">;
|
|
209
|
+
selectedClass: string;
|
|
210
|
+
modelValue: any;
|
|
209
211
|
direction: "horizontal" | "vertical";
|
|
210
212
|
max: number;
|
|
211
213
|
multiple: boolean;
|
|
212
|
-
selectedClass: string;
|
|
213
214
|
locale: "ru" | "en" | import("../../locale").ILocale;
|
|
214
215
|
onlySingle: boolean;
|
|
215
216
|
continuous: boolean;
|
|
216
|
-
prevIcon: "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" | "checkbox-fill" | "checkbox" | "chevron-down" | "chevron-left" | "chevron-right" | "chevron-up" | "chocolate-menu" | "clock" | "comment" | "company" | "compare" | "copy" | "data-cards" | "delete" | "directory" | "doc-download" | "doc" | "download" | "draggable" | "edit" | "enter" | "error-fill" | "error" | "external" | "facebook-fill" | "facebook" | "flag" | "funnel" | "globe" | "infinity" | "info-fill" | "info" | "list-search" | "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";
|
|
217
|
-
nextIcon: "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" | "checkbox-fill" | "checkbox" | "chevron-down" | "chevron-left" | "chevron-right" | "chevron-up" | "chocolate-menu" | "clock" | "comment" | "company" | "compare" | "copy" | "data-cards" | "delete" | "directory" | "doc-download" | "doc" | "download" | "draggable" | "edit" | "enter" | "error-fill" | "error" | "external" | "facebook-fill" | "facebook" | "flag" | "funnel" | "globe" | "infinity" | "info-fill" | "info" | "list-search" | "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";
|
|
218
217
|
touch: boolean | ITouchHandlers;
|
|
219
218
|
}>;
|
|
220
219
|
export default _sfc_main;
|
|
@@ -11,7 +11,7 @@ declare const _sfc_main: import("vue").DefineComponent<{
|
|
|
11
11
|
};
|
|
12
12
|
value: {
|
|
13
13
|
type: null;
|
|
14
|
-
default:
|
|
14
|
+
default: undefined;
|
|
15
15
|
};
|
|
16
16
|
selectedClass: {
|
|
17
17
|
type: PropType<string>;
|
|
@@ -40,7 +40,7 @@ declare const _sfc_main: import("vue").DefineComponent<{
|
|
|
40
40
|
};
|
|
41
41
|
value: {
|
|
42
42
|
type: null;
|
|
43
|
-
default:
|
|
43
|
+
default: undefined;
|
|
44
44
|
};
|
|
45
45
|
selectedClass: {
|
|
46
46
|
type: PropType<string>;
|
|
@@ -61,9 +61,9 @@ declare const _sfc_main: import("vue").DefineComponent<{
|
|
|
61
61
|
}, {
|
|
62
62
|
disabled: boolean;
|
|
63
63
|
value: any;
|
|
64
|
+
selectedClass: string;
|
|
64
65
|
transition: string | boolean;
|
|
65
66
|
eager: boolean;
|
|
66
|
-
selectedClass: string;
|
|
67
67
|
reverseTransition: string | boolean;
|
|
68
68
|
}>;
|
|
69
69
|
export default _sfc_main;
|
|
@@ -677,8 +677,8 @@ declare const _sfc_main: import("vue").DefineComponent<{
|
|
|
677
677
|
readonly error?: boolean | undefined;
|
|
678
678
|
readonly readonly?: boolean | undefined;
|
|
679
679
|
readonly loading?: boolean | undefined;
|
|
680
|
-
readonly messages?: string | string[] | undefined;
|
|
681
680
|
readonly active?: boolean | undefined;
|
|
681
|
+
readonly messages?: string | string[] | undefined;
|
|
682
682
|
readonly persistentMessages?: boolean | undefined;
|
|
683
683
|
readonly errorMessages?: string | string[] | undefined;
|
|
684
684
|
readonly maxErrors?: string | number | undefined;
|
|
@@ -936,8 +936,8 @@ declare const _sfc_main: import("vue").DefineComponent<{
|
|
|
936
936
|
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" | "checkbox-fill" | "checkbox" | "chevron-down" | "chevron-left" | "chevron-right" | "chevron-up" | "chocolate-menu" | "clock" | "comment" | "company" | "compare" | "copy" | "data-cards" | "delete" | "directory" | "doc-download" | "doc" | "download" | "draggable" | "edit" | "enter" | "error-fill" | "error" | "external" | "facebook-fill" | "facebook" | "flag" | "funnel" | "globe" | "infinity" | "info-fill" | "info" | "list-search" | "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";
|
|
937
937
|
readonly: boolean;
|
|
938
938
|
loading: boolean;
|
|
939
|
-
messages: string | string[];
|
|
940
939
|
active: boolean;
|
|
940
|
+
messages: string | string[];
|
|
941
941
|
id: string;
|
|
942
942
|
label: string;
|
|
943
943
|
persistentMessages: boolean;
|
|
@@ -1859,6 +1859,7 @@ declare const _sfc_main: import("vue").DefineComponent<{
|
|
|
1859
1859
|
readonly error?: boolean | undefined;
|
|
1860
1860
|
readonly readonly?: boolean | undefined;
|
|
1861
1861
|
readonly loading?: boolean | undefined;
|
|
1862
|
+
readonly active?: boolean | undefined;
|
|
1862
1863
|
readonly transition?: string | boolean | {
|
|
1863
1864
|
name?: string | undefined;
|
|
1864
1865
|
type?: ("transition" | "animation") | undefined;
|
|
@@ -2014,7 +2015,6 @@ declare const _sfc_main: import("vue").DefineComponent<{
|
|
|
2014
2015
|
} | undefined;
|
|
2015
2016
|
} | undefined;
|
|
2016
2017
|
readonly messages?: string | string[] | undefined;
|
|
2017
|
-
readonly active?: boolean | undefined;
|
|
2018
2018
|
readonly persistentMessages?: boolean | undefined;
|
|
2019
2019
|
readonly errorMessages?: string | string[] | undefined;
|
|
2020
2020
|
readonly maxErrors?: string | number | undefined;
|
|
@@ -2370,11 +2370,11 @@ declare const _sfc_main: import("vue").DefineComponent<{
|
|
|
2370
2370
|
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" | "checkbox-fill" | "checkbox" | "chevron-down" | "chevron-left" | "chevron-right" | "chevron-up" | "chocolate-menu" | "clock" | "comment" | "company" | "compare" | "copy" | "data-cards" | "delete" | "directory" | "doc-download" | "doc" | "download" | "draggable" | "edit" | "enter" | "error-fill" | "error" | "external" | "facebook-fill" | "facebook" | "flag" | "funnel" | "globe" | "infinity" | "info-fill" | "info" | "list-search" | "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";
|
|
2371
2371
|
readonly: boolean;
|
|
2372
2372
|
loading: boolean;
|
|
2373
|
+
active: boolean;
|
|
2373
2374
|
transition: string | boolean | (import("vue").TransitionProps & {
|
|
2374
2375
|
component?: import("vue").Component<any, any, any, import("vue").ComputedOptions, import("vue").MethodOptions> | undefined;
|
|
2375
2376
|
});
|
|
2376
2377
|
messages: string | string[];
|
|
2377
|
-
active: boolean;
|
|
2378
2378
|
id: string;
|
|
2379
2379
|
label: string;
|
|
2380
2380
|
persistentMessages: boolean;
|