@central-design-system/components 3.0.0-beta.0 → 3.0.0-beta.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.es.js +8445 -8346
- package/dist/cds.umd.js +3 -3
- package/dist/components/CdsAutocomplete/CdsAutocomplete.vue.d.ts +43 -57
- package/dist/components/CdsBadge/CdsBadge.vue.d.ts +4 -7
- package/dist/components/CdsBreadcrumbs/CdsBreadcrumbs.vue.d.ts +1 -5
- package/dist/components/CdsBreadcrumbs/CdsBreadcrumbsItem.vue.d.ts +1 -6
- package/dist/components/CdsButton/CdsButton.vue.d.ts +14 -14
- package/dist/components/CdsCheckbox/CdsCheckbox.vue.d.ts +3 -49
- package/dist/components/CdsCombobox/CdsCombobox.vue.d.ts +75 -439
- package/dist/components/CdsContainer/CdsContainer.vue.d.ts +20 -22
- package/dist/components/CdsContainer/CdsContainerItem.vue.d.ts +1 -1
- package/dist/components/CdsDatePicker/CdsDatePicker.vue.d.ts +1 -7
- package/dist/components/CdsDropdown/CdsDropdown.vue.d.ts +104 -481
- package/dist/components/CdsEmptyState/CdsEmptyState.vue.d.ts +3 -3
- package/dist/components/CdsExpandablePanel/CdsExpandablePanel.vue.d.ts +11 -11
- package/dist/components/CdsExpandablePanel/CdsExpandablePanelContent.vue.d.ts +1 -1
- package/dist/components/CdsExpandablePanel/CdsExpandablePanelTitle.vue.d.ts +11 -11
- package/dist/components/CdsExpandablePanel/CdsExpandablePanels.vue.d.ts +2 -2
- package/dist/components/CdsExpandablePanel/composable/expandablePanelTitleProps.d.ts +2 -2
- package/dist/components/CdsFooter/CdsFooter.vue.d.ts +1 -1
- package/dist/components/CdsForm/CdsForm.vue.d.ts +1 -28
- package/dist/components/CdsHeader/CdsHeader.vue.d.ts +1 -1
- package/dist/components/CdsIcon/CdsIcon.vue.d.ts +3 -3
- package/dist/components/CdsInput/CdsInput.vue.d.ts +18 -39
- package/dist/components/CdsInput/CdsInputMessages.vue.d.ts +5 -5
- package/dist/components/CdsLayout/CdsLayout.vue.d.ts +2 -4
- package/dist/components/CdsList/CdsList.vue.d.ts +17 -7
- package/dist/components/CdsList/CdsListGroup.vue.d.ts +7 -7
- package/dist/components/CdsList/CdsListItem.vue.d.ts +14 -26
- package/dist/components/CdsMain/CdsMain.vue.d.ts +1 -1
- package/dist/components/CdsMenu/CdsMenu.vue.d.ts +1 -336
- package/dist/components/CdsModal/CdsModal.vue.d.ts +1 -341
- package/dist/components/CdsNotification/CdsNotification.vue.d.ts +13 -13
- package/dist/components/CdsNotification/CdsNotificationAlert.vue.d.ts +14 -348
- package/dist/components/CdsNotification/composable/notification.d.ts +3 -3
- package/dist/components/CdsOverlay/CdsOverlay.vue.d.ts +2 -8
- package/dist/components/CdsOverlay/composable/locationStrategies.d.ts +11 -11
- package/dist/components/CdsPage/CdsPage.vue.d.ts +1 -1
- package/dist/components/CdsPagination/CdsPagination.vue.d.ts +2 -7
- package/dist/components/CdsProgress/CdsProgress.vue.d.ts +1 -1
- package/dist/components/CdsRadioButton/CdsRadio.vue.d.ts +213 -0
- package/dist/components/CdsSelect/CdsSelect.vue.d.ts +59 -69
- package/dist/components/CdsSkeletonLoader/CdsSkeletonLoader.vue.d.ts +3 -3
- package/dist/components/CdsSlideGroup/CdsSlideGroup.vue.d.ts +19 -19
- package/dist/components/CdsSteps/CdsSteps.vue.d.ts +20 -24
- package/dist/components/CdsTable/CdsTable.vue.d.ts +2 -2
- package/dist/components/CdsTable/components/Table/InternalTable.d.ts +3 -3
- package/dist/components/CdsTable/components/TableProvider.d.ts +2 -2
- package/dist/components/CdsTabs/CdsTab.vue.d.ts +10 -10
- package/dist/components/CdsTabs/CdsTabs.vue.d.ts +20 -20
- package/dist/components/CdsTextArea/CdsTextArea.vue.d.ts +85 -75
- package/dist/components/CdsTextInput/CdsTextInput.vue.d.ts +51 -69
- package/dist/components/CdsToggle/CdsToggle.vue.d.ts +1 -1
- package/dist/components/CdsTooltip/CdsTooltip.vue.d.ts +1 -335
- package/dist/components/CdsUploader/CdsUploader.vue.d.ts +27 -378
- package/dist/components/CdsUploader/components/AjaxUploader.d.ts +16 -16
- package/dist/components/CdsUploader/components/UploadList/ListItem.d.ts +21 -21
- package/dist/components/CdsUploader/components/UploadList/UploadList.d.ts +21 -21
- package/dist/components/CdsUploader/composable/upload.d.ts +8 -8
- package/dist/composable/field.d.ts +2 -2
- package/dist/composable/icon.d.ts +2 -2
- package/dist/composable/items.d.ts +6 -0
- package/dist/composable/nested/nested.d.ts +1 -2
- package/dist/composable/select.d.ts +14 -1
- package/dist/directives/index.d.ts +1 -0
- package/dist/directives/intersect/index.d.ts +19 -0
- package/dist/globals.d.ts +8 -0
- package/dist/transitions/createTransition.d.ts +1 -1
- package/dist/transitions/index.d.ts +10 -10
- package/dist/utils/date/date.d.ts +12 -12
- package/dist/utils/helpers.d.ts +7 -0
- package/package.json +1 -1
- package/src/scss/themes/index.ts +1 -1
|
@@ -1,11 +1,10 @@
|
|
|
1
1
|
import type { PropType } from 'vue';
|
|
2
|
+
import type { IItemSlotProps } from '../../composable';
|
|
2
3
|
export declare const componentName = "CdsListItem";
|
|
3
4
|
declare const _sfc_main: import("vue").DefineComponent<{
|
|
4
5
|
disabled: {
|
|
5
6
|
type: PropType<boolean>;
|
|
6
|
-
default: boolean;
|
|
7
|
-
* Заголовок элемента списка
|
|
8
|
-
*/
|
|
7
|
+
default: boolean;
|
|
9
8
|
};
|
|
10
9
|
tag: {
|
|
11
10
|
type: PropType<string>;
|
|
@@ -21,16 +20,14 @@ declare const _sfc_main: import("vue").DefineComponent<{
|
|
|
21
20
|
default: undefined;
|
|
22
21
|
};
|
|
23
22
|
prependIcon: {
|
|
24
|
-
type: PropType<"search" | "link" | "list" | "filters" | "add" | "alert-fill" | "alert" | "analog" | "arrow-down" | "arrow-left-bottom" | "arrow-left-top" | "arrow-left" | "arrow-right-bottom" | "arrow-right-top" | "arrow-right" | "arrow-up" | "arrows-vertical" | "calendar" | "card-bank" | "category" | "check-fill" | "check" | "checkbox-fill" | "checkbox" | "chevron-down" | "chevron-left" | "chevron-right" | "chevron-up" | "chocolate-menu" | "clock" | "comment" | "company" | "compare" | "copy" | "data-cards" | "delete" | "directory" | "doc-download" | "doc" | "download" | "draggable" | "edit" | "enter" | "error-fill" | "error" | "external" | "facebook-fill" | "facebook" | "flag" | "funnel" | "globe" | "infinity" | "info-fill" | "info" | "list-search" | "loader" | "location" | "locked" | "login" | "logout" | "menu" | "minus" | "notification" | "overflow-menu-horizontal" | "overflow-menu-vertical" | "password" | "pin" | "plus" | "printer" | "question-fill" | "question" | "refresh" | "remove" | "sandglass" | "save" | "settings" | "shopping-cart" | "sort-date" | "star-fill" | "star" | "telegram" | "timer" | "tool" | "truck" | "unlocked" | "upload" | "user-avatar" | "user-group" | "visibility-off" | "visibility-on" | "vk" | "winner" | "workspace" | "youtube">;
|
|
25
|
-
* Активное состояние
|
|
26
|
-
*/
|
|
23
|
+
type: PropType<"search" | "link" | "list" | "filters" | "add" | "alert-fill" | "alert" | "analog" | "arrow-down" | "arrow-left-bottom" | "arrow-left-top" | "arrow-left" | "arrow-right-bottom" | "arrow-right-top" | "arrow-right" | "arrow-up" | "arrows-vertical" | "calendar" | "card-bank" | "category" | "check-fill" | "check" | "checkbox-fill" | "checkbox" | "chevron-down" | "chevron-left" | "chevron-right" | "chevron-up" | "chocholate-menu" | "chocolate-menu" | "clock" | "collapse" | "comment" | "company" | "compare" | "copy" | "data-cards" | "delete" | "directory" | "doc-download" | "doc" | "download" | "draggable" | "edit" | "enter" | "error-fill" | "error" | "expand" | "external" | "facebook-fill" | "facebook" | "flag" | "funnel" | "globe" | "infinity" | "info-fill" | "info" | "insert" | "list-search" | "loader" | "location" | "locked" | "login" | "logout" | "menu" | "minus" | "notification" | "overflow-menu-horizontal" | "overflow-menu-vertical" | "password" | "pin" | "plus" | "printer" | "question-fill" | "question" | "refresh" | "remove" | "sandglass" | "save" | "settings" | "shopping-cart" | "sort-date" | "source" | "star-fill" | "star" | "telegram" | "timer" | "tool" | "truck" | "unlocked" | "upload" | "user-avatar" | "user-group" | "visibility-off" | "visibility-on" | "vk" | "winner" | "workspace" | "youtube">;
|
|
27
24
|
default: undefined;
|
|
28
|
-
validator: (value: "search" | "link" | "list" | "filters" | "add" | "alert-fill" | "alert" | "analog" | "arrow-down" | "arrow-left-bottom" | "arrow-left-top" | "arrow-left" | "arrow-right-bottom" | "arrow-right-top" | "arrow-right" | "arrow-up" | "arrows-vertical" | "calendar" | "card-bank" | "category" | "check-fill" | "check" | "checkbox-fill" | "checkbox" | "chevron-down" | "chevron-left" | "chevron-right" | "chevron-up" | "chocolate-menu" | "clock" | "comment" | "company" | "compare" | "copy" | "data-cards" | "delete" | "directory" | "doc-download" | "doc" | "download" | "draggable" | "edit" | "enter" | "error-fill" | "error" | "external" | "facebook-fill" | "facebook" | "flag" | "funnel" | "globe" | "infinity" | "info-fill" | "info" | "list-search" | "loader" | "location" | "locked" | "login" | "logout" | "menu" | "minus" | "notification" | "overflow-menu-horizontal" | "overflow-menu-vertical" | "password" | "pin" | "plus" | "printer" | "question-fill" | "question" | "refresh" | "remove" | "sandglass" | "save" | "settings" | "shopping-cart" | "sort-date" | "star-fill" | "star" | "telegram" | "timer" | "tool" | "truck" | "unlocked" | "upload" | "user-avatar" | "user-group" | "visibility-off" | "visibility-on" | "vk" | "winner" | "workspace" | "youtube") => boolean;
|
|
25
|
+
validator: (value: "search" | "link" | "list" | "filters" | "add" | "alert-fill" | "alert" | "analog" | "arrow-down" | "arrow-left-bottom" | "arrow-left-top" | "arrow-left" | "arrow-right-bottom" | "arrow-right-top" | "arrow-right" | "arrow-up" | "arrows-vertical" | "calendar" | "card-bank" | "category" | "check-fill" | "check" | "checkbox-fill" | "checkbox" | "chevron-down" | "chevron-left" | "chevron-right" | "chevron-up" | "chocholate-menu" | "chocolate-menu" | "clock" | "collapse" | "comment" | "company" | "compare" | "copy" | "data-cards" | "delete" | "directory" | "doc-download" | "doc" | "download" | "draggable" | "edit" | "enter" | "error-fill" | "error" | "expand" | "external" | "facebook-fill" | "facebook" | "flag" | "funnel" | "globe" | "infinity" | "info-fill" | "info" | "insert" | "list-search" | "loader" | "location" | "locked" | "login" | "logout" | "menu" | "minus" | "notification" | "overflow-menu-horizontal" | "overflow-menu-vertical" | "password" | "pin" | "plus" | "printer" | "question-fill" | "question" | "refresh" | "remove" | "sandglass" | "save" | "settings" | "shopping-cart" | "sort-date" | "source" | "star-fill" | "star" | "telegram" | "timer" | "tool" | "truck" | "unlocked" | "upload" | "user-avatar" | "user-group" | "visibility-off" | "visibility-on" | "vk" | "winner" | "workspace" | "youtube") => boolean;
|
|
29
26
|
};
|
|
30
27
|
appendIcon: {
|
|
31
|
-
type: PropType<"search" | "link" | "list" | "filters" | "add" | "alert-fill" | "alert" | "analog" | "arrow-down" | "arrow-left-bottom" | "arrow-left-top" | "arrow-left" | "arrow-right-bottom" | "arrow-right-top" | "arrow-right" | "arrow-up" | "arrows-vertical" | "calendar" | "card-bank" | "category" | "check-fill" | "check" | "checkbox-fill" | "checkbox" | "chevron-down" | "chevron-left" | "chevron-right" | "chevron-up" | "chocolate-menu" | "clock" | "comment" | "company" | "compare" | "copy" | "data-cards" | "delete" | "directory" | "doc-download" | "doc" | "download" | "draggable" | "edit" | "enter" | "error-fill" | "error" | "external" | "facebook-fill" | "facebook" | "flag" | "funnel" | "globe" | "infinity" | "info-fill" | "info" | "list-search" | "loader" | "location" | "locked" | "login" | "logout" | "menu" | "minus" | "notification" | "overflow-menu-horizontal" | "overflow-menu-vertical" | "password" | "pin" | "plus" | "printer" | "question-fill" | "question" | "refresh" | "remove" | "sandglass" | "save" | "settings" | "shopping-cart" | "sort-date" | "star-fill" | "star" | "telegram" | "timer" | "tool" | "truck" | "unlocked" | "upload" | "user-avatar" | "user-group" | "visibility-off" | "visibility-on" | "vk" | "winner" | "workspace" | "youtube">;
|
|
28
|
+
type: PropType<"search" | "link" | "list" | "filters" | "add" | "alert-fill" | "alert" | "analog" | "arrow-down" | "arrow-left-bottom" | "arrow-left-top" | "arrow-left" | "arrow-right-bottom" | "arrow-right-top" | "arrow-right" | "arrow-up" | "arrows-vertical" | "calendar" | "card-bank" | "category" | "check-fill" | "check" | "checkbox-fill" | "checkbox" | "chevron-down" | "chevron-left" | "chevron-right" | "chevron-up" | "chocholate-menu" | "chocolate-menu" | "clock" | "collapse" | "comment" | "company" | "compare" | "copy" | "data-cards" | "delete" | "directory" | "doc-download" | "doc" | "download" | "draggable" | "edit" | "enter" | "error-fill" | "error" | "expand" | "external" | "facebook-fill" | "facebook" | "flag" | "funnel" | "globe" | "infinity" | "info-fill" | "info" | "insert" | "list-search" | "loader" | "location" | "locked" | "login" | "logout" | "menu" | "minus" | "notification" | "overflow-menu-horizontal" | "overflow-menu-vertical" | "password" | "pin" | "plus" | "printer" | "question-fill" | "question" | "refresh" | "remove" | "sandglass" | "save" | "settings" | "shopping-cart" | "sort-date" | "source" | "star-fill" | "star" | "telegram" | "timer" | "tool" | "truck" | "unlocked" | "upload" | "user-avatar" | "user-group" | "visibility-off" | "visibility-on" | "vk" | "winner" | "workspace" | "youtube">;
|
|
32
29
|
default: undefined;
|
|
33
|
-
validator: (value: "search" | "link" | "list" | "filters" | "add" | "alert-fill" | "alert" | "analog" | "arrow-down" | "arrow-left-bottom" | "arrow-left-top" | "arrow-left" | "arrow-right-bottom" | "arrow-right-top" | "arrow-right" | "arrow-up" | "arrows-vertical" | "calendar" | "card-bank" | "category" | "check-fill" | "check" | "checkbox-fill" | "checkbox" | "chevron-down" | "chevron-left" | "chevron-right" | "chevron-up" | "chocolate-menu" | "clock" | "comment" | "company" | "compare" | "copy" | "data-cards" | "delete" | "directory" | "doc-download" | "doc" | "download" | "draggable" | "edit" | "enter" | "error-fill" | "error" | "external" | "facebook-fill" | "facebook" | "flag" | "funnel" | "globe" | "infinity" | "info-fill" | "info" | "list-search" | "loader" | "location" | "locked" | "login" | "logout" | "menu" | "minus" | "notification" | "overflow-menu-horizontal" | "overflow-menu-vertical" | "password" | "pin" | "plus" | "printer" | "question-fill" | "question" | "refresh" | "remove" | "sandglass" | "save" | "settings" | "shopping-cart" | "sort-date" | "star-fill" | "star" | "telegram" | "timer" | "tool" | "truck" | "unlocked" | "upload" | "user-avatar" | "user-group" | "visibility-off" | "visibility-on" | "vk" | "winner" | "workspace" | "youtube") => boolean;
|
|
30
|
+
validator: (value: "search" | "link" | "list" | "filters" | "add" | "alert-fill" | "alert" | "analog" | "arrow-down" | "arrow-left-bottom" | "arrow-left-top" | "arrow-left" | "arrow-right-bottom" | "arrow-right-top" | "arrow-right" | "arrow-up" | "arrows-vertical" | "calendar" | "card-bank" | "category" | "check-fill" | "check" | "checkbox-fill" | "checkbox" | "chevron-down" | "chevron-left" | "chevron-right" | "chevron-up" | "chocholate-menu" | "chocolate-menu" | "clock" | "collapse" | "comment" | "company" | "compare" | "copy" | "data-cards" | "delete" | "directory" | "doc-download" | "doc" | "download" | "draggable" | "edit" | "enter" | "error-fill" | "error" | "expand" | "external" | "facebook-fill" | "facebook" | "flag" | "funnel" | "globe" | "infinity" | "info-fill" | "info" | "insert" | "list-search" | "loader" | "location" | "locked" | "login" | "logout" | "menu" | "minus" | "notification" | "overflow-menu-horizontal" | "overflow-menu-vertical" | "password" | "pin" | "plus" | "printer" | "question-fill" | "question" | "refresh" | "remove" | "sandglass" | "save" | "settings" | "shopping-cart" | "sort-date" | "source" | "star-fill" | "star" | "telegram" | "timer" | "tool" | "truck" | "unlocked" | "upload" | "user-avatar" | "user-group" | "visibility-off" | "visibility-on" | "vk" | "winner" | "workspace" | "youtube") => boolean;
|
|
34
31
|
};
|
|
35
32
|
/**
|
|
36
33
|
* Заголовок элемента списка
|
|
@@ -71,12 +68,7 @@ declare const _sfc_main: import("vue").DefineComponent<{
|
|
|
71
68
|
tag: import("vue").ComputedRef<string>;
|
|
72
69
|
href: import("vue").ComputedRef<string | undefined>;
|
|
73
70
|
to: import("vue").ComputedRef<import("vue-router").RouteLocationRaw | undefined>;
|
|
74
|
-
slotProps: import("vue").ComputedRef<
|
|
75
|
-
isActive: boolean;
|
|
76
|
-
select: (selected: boolean, event?: Event | undefined) => void;
|
|
77
|
-
isSelected: boolean;
|
|
78
|
-
isIndeterminate: boolean;
|
|
79
|
-
}>;
|
|
71
|
+
slotProps: import("vue").ComputedRef<IItemSlotProps>;
|
|
80
72
|
hasTitle: import("vue").ComputedRef<boolean>;
|
|
81
73
|
hasDescription: import("vue").ComputedRef<boolean>;
|
|
82
74
|
hasPrepend: import("vue").ComputedRef<boolean>;
|
|
@@ -99,9 +91,7 @@ declare const _sfc_main: import("vue").DefineComponent<{
|
|
|
99
91
|
}, string, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<{
|
|
100
92
|
disabled: {
|
|
101
93
|
type: PropType<boolean>;
|
|
102
|
-
default: boolean;
|
|
103
|
-
* Заголовок элемента списка
|
|
104
|
-
*/
|
|
94
|
+
default: boolean;
|
|
105
95
|
};
|
|
106
96
|
tag: {
|
|
107
97
|
type: PropType<string>;
|
|
@@ -117,16 +107,14 @@ declare const _sfc_main: import("vue").DefineComponent<{
|
|
|
117
107
|
default: undefined;
|
|
118
108
|
};
|
|
119
109
|
prependIcon: {
|
|
120
|
-
type: PropType<"search" | "link" | "list" | "filters" | "add" | "alert-fill" | "alert" | "analog" | "arrow-down" | "arrow-left-bottom" | "arrow-left-top" | "arrow-left" | "arrow-right-bottom" | "arrow-right-top" | "arrow-right" | "arrow-up" | "arrows-vertical" | "calendar" | "card-bank" | "category" | "check-fill" | "check" | "checkbox-fill" | "checkbox" | "chevron-down" | "chevron-left" | "chevron-right" | "chevron-up" | "chocolate-menu" | "clock" | "comment" | "company" | "compare" | "copy" | "data-cards" | "delete" | "directory" | "doc-download" | "doc" | "download" | "draggable" | "edit" | "enter" | "error-fill" | "error" | "external" | "facebook-fill" | "facebook" | "flag" | "funnel" | "globe" | "infinity" | "info-fill" | "info" | "list-search" | "loader" | "location" | "locked" | "login" | "logout" | "menu" | "minus" | "notification" | "overflow-menu-horizontal" | "overflow-menu-vertical" | "password" | "pin" | "plus" | "printer" | "question-fill" | "question" | "refresh" | "remove" | "sandglass" | "save" | "settings" | "shopping-cart" | "sort-date" | "star-fill" | "star" | "telegram" | "timer" | "tool" | "truck" | "unlocked" | "upload" | "user-avatar" | "user-group" | "visibility-off" | "visibility-on" | "vk" | "winner" | "workspace" | "youtube">;
|
|
121
|
-
* Активное состояние
|
|
122
|
-
*/
|
|
110
|
+
type: PropType<"search" | "link" | "list" | "filters" | "add" | "alert-fill" | "alert" | "analog" | "arrow-down" | "arrow-left-bottom" | "arrow-left-top" | "arrow-left" | "arrow-right-bottom" | "arrow-right-top" | "arrow-right" | "arrow-up" | "arrows-vertical" | "calendar" | "card-bank" | "category" | "check-fill" | "check" | "checkbox-fill" | "checkbox" | "chevron-down" | "chevron-left" | "chevron-right" | "chevron-up" | "chocholate-menu" | "chocolate-menu" | "clock" | "collapse" | "comment" | "company" | "compare" | "copy" | "data-cards" | "delete" | "directory" | "doc-download" | "doc" | "download" | "draggable" | "edit" | "enter" | "error-fill" | "error" | "expand" | "external" | "facebook-fill" | "facebook" | "flag" | "funnel" | "globe" | "infinity" | "info-fill" | "info" | "insert" | "list-search" | "loader" | "location" | "locked" | "login" | "logout" | "menu" | "minus" | "notification" | "overflow-menu-horizontal" | "overflow-menu-vertical" | "password" | "pin" | "plus" | "printer" | "question-fill" | "question" | "refresh" | "remove" | "sandglass" | "save" | "settings" | "shopping-cart" | "sort-date" | "source" | "star-fill" | "star" | "telegram" | "timer" | "tool" | "truck" | "unlocked" | "upload" | "user-avatar" | "user-group" | "visibility-off" | "visibility-on" | "vk" | "winner" | "workspace" | "youtube">;
|
|
123
111
|
default: undefined;
|
|
124
|
-
validator: (value: "search" | "link" | "list" | "filters" | "add" | "alert-fill" | "alert" | "analog" | "arrow-down" | "arrow-left-bottom" | "arrow-left-top" | "arrow-left" | "arrow-right-bottom" | "arrow-right-top" | "arrow-right" | "arrow-up" | "arrows-vertical" | "calendar" | "card-bank" | "category" | "check-fill" | "check" | "checkbox-fill" | "checkbox" | "chevron-down" | "chevron-left" | "chevron-right" | "chevron-up" | "chocolate-menu" | "clock" | "comment" | "company" | "compare" | "copy" | "data-cards" | "delete" | "directory" | "doc-download" | "doc" | "download" | "draggable" | "edit" | "enter" | "error-fill" | "error" | "external" | "facebook-fill" | "facebook" | "flag" | "funnel" | "globe" | "infinity" | "info-fill" | "info" | "list-search" | "loader" | "location" | "locked" | "login" | "logout" | "menu" | "minus" | "notification" | "overflow-menu-horizontal" | "overflow-menu-vertical" | "password" | "pin" | "plus" | "printer" | "question-fill" | "question" | "refresh" | "remove" | "sandglass" | "save" | "settings" | "shopping-cart" | "sort-date" | "star-fill" | "star" | "telegram" | "timer" | "tool" | "truck" | "unlocked" | "upload" | "user-avatar" | "user-group" | "visibility-off" | "visibility-on" | "vk" | "winner" | "workspace" | "youtube") => boolean;
|
|
112
|
+
validator: (value: "search" | "link" | "list" | "filters" | "add" | "alert-fill" | "alert" | "analog" | "arrow-down" | "arrow-left-bottom" | "arrow-left-top" | "arrow-left" | "arrow-right-bottom" | "arrow-right-top" | "arrow-right" | "arrow-up" | "arrows-vertical" | "calendar" | "card-bank" | "category" | "check-fill" | "check" | "checkbox-fill" | "checkbox" | "chevron-down" | "chevron-left" | "chevron-right" | "chevron-up" | "chocholate-menu" | "chocolate-menu" | "clock" | "collapse" | "comment" | "company" | "compare" | "copy" | "data-cards" | "delete" | "directory" | "doc-download" | "doc" | "download" | "draggable" | "edit" | "enter" | "error-fill" | "error" | "expand" | "external" | "facebook-fill" | "facebook" | "flag" | "funnel" | "globe" | "infinity" | "info-fill" | "info" | "insert" | "list-search" | "loader" | "location" | "locked" | "login" | "logout" | "menu" | "minus" | "notification" | "overflow-menu-horizontal" | "overflow-menu-vertical" | "password" | "pin" | "plus" | "printer" | "question-fill" | "question" | "refresh" | "remove" | "sandglass" | "save" | "settings" | "shopping-cart" | "sort-date" | "source" | "star-fill" | "star" | "telegram" | "timer" | "tool" | "truck" | "unlocked" | "upload" | "user-avatar" | "user-group" | "visibility-off" | "visibility-on" | "vk" | "winner" | "workspace" | "youtube") => boolean;
|
|
125
113
|
};
|
|
126
114
|
appendIcon: {
|
|
127
|
-
type: PropType<"search" | "link" | "list" | "filters" | "add" | "alert-fill" | "alert" | "analog" | "arrow-down" | "arrow-left-bottom" | "arrow-left-top" | "arrow-left" | "arrow-right-bottom" | "arrow-right-top" | "arrow-right" | "arrow-up" | "arrows-vertical" | "calendar" | "card-bank" | "category" | "check-fill" | "check" | "checkbox-fill" | "checkbox" | "chevron-down" | "chevron-left" | "chevron-right" | "chevron-up" | "chocolate-menu" | "clock" | "comment" | "company" | "compare" | "copy" | "data-cards" | "delete" | "directory" | "doc-download" | "doc" | "download" | "draggable" | "edit" | "enter" | "error-fill" | "error" | "external" | "facebook-fill" | "facebook" | "flag" | "funnel" | "globe" | "infinity" | "info-fill" | "info" | "list-search" | "loader" | "location" | "locked" | "login" | "logout" | "menu" | "minus" | "notification" | "overflow-menu-horizontal" | "overflow-menu-vertical" | "password" | "pin" | "plus" | "printer" | "question-fill" | "question" | "refresh" | "remove" | "sandglass" | "save" | "settings" | "shopping-cart" | "sort-date" | "star-fill" | "star" | "telegram" | "timer" | "tool" | "truck" | "unlocked" | "upload" | "user-avatar" | "user-group" | "visibility-off" | "visibility-on" | "vk" | "winner" | "workspace" | "youtube">;
|
|
115
|
+
type: PropType<"search" | "link" | "list" | "filters" | "add" | "alert-fill" | "alert" | "analog" | "arrow-down" | "arrow-left-bottom" | "arrow-left-top" | "arrow-left" | "arrow-right-bottom" | "arrow-right-top" | "arrow-right" | "arrow-up" | "arrows-vertical" | "calendar" | "card-bank" | "category" | "check-fill" | "check" | "checkbox-fill" | "checkbox" | "chevron-down" | "chevron-left" | "chevron-right" | "chevron-up" | "chocholate-menu" | "chocolate-menu" | "clock" | "collapse" | "comment" | "company" | "compare" | "copy" | "data-cards" | "delete" | "directory" | "doc-download" | "doc" | "download" | "draggable" | "edit" | "enter" | "error-fill" | "error" | "expand" | "external" | "facebook-fill" | "facebook" | "flag" | "funnel" | "globe" | "infinity" | "info-fill" | "info" | "insert" | "list-search" | "loader" | "location" | "locked" | "login" | "logout" | "menu" | "minus" | "notification" | "overflow-menu-horizontal" | "overflow-menu-vertical" | "password" | "pin" | "plus" | "printer" | "question-fill" | "question" | "refresh" | "remove" | "sandglass" | "save" | "settings" | "shopping-cart" | "sort-date" | "source" | "star-fill" | "star" | "telegram" | "timer" | "tool" | "truck" | "unlocked" | "upload" | "user-avatar" | "user-group" | "visibility-off" | "visibility-on" | "vk" | "winner" | "workspace" | "youtube">;
|
|
128
116
|
default: undefined;
|
|
129
|
-
validator: (value: "search" | "link" | "list" | "filters" | "add" | "alert-fill" | "alert" | "analog" | "arrow-down" | "arrow-left-bottom" | "arrow-left-top" | "arrow-left" | "arrow-right-bottom" | "arrow-right-top" | "arrow-right" | "arrow-up" | "arrows-vertical" | "calendar" | "card-bank" | "category" | "check-fill" | "check" | "checkbox-fill" | "checkbox" | "chevron-down" | "chevron-left" | "chevron-right" | "chevron-up" | "chocolate-menu" | "clock" | "comment" | "company" | "compare" | "copy" | "data-cards" | "delete" | "directory" | "doc-download" | "doc" | "download" | "draggable" | "edit" | "enter" | "error-fill" | "error" | "external" | "facebook-fill" | "facebook" | "flag" | "funnel" | "globe" | "infinity" | "info-fill" | "info" | "list-search" | "loader" | "location" | "locked" | "login" | "logout" | "menu" | "minus" | "notification" | "overflow-menu-horizontal" | "overflow-menu-vertical" | "password" | "pin" | "plus" | "printer" | "question-fill" | "question" | "refresh" | "remove" | "sandglass" | "save" | "settings" | "shopping-cart" | "sort-date" | "star-fill" | "star" | "telegram" | "timer" | "tool" | "truck" | "unlocked" | "upload" | "user-avatar" | "user-group" | "visibility-off" | "visibility-on" | "vk" | "winner" | "workspace" | "youtube") => boolean;
|
|
117
|
+
validator: (value: "search" | "link" | "list" | "filters" | "add" | "alert-fill" | "alert" | "analog" | "arrow-down" | "arrow-left-bottom" | "arrow-left-top" | "arrow-left" | "arrow-right-bottom" | "arrow-right-top" | "arrow-right" | "arrow-up" | "arrows-vertical" | "calendar" | "card-bank" | "category" | "check-fill" | "check" | "checkbox-fill" | "checkbox" | "chevron-down" | "chevron-left" | "chevron-right" | "chevron-up" | "chocholate-menu" | "chocolate-menu" | "clock" | "collapse" | "comment" | "company" | "compare" | "copy" | "data-cards" | "delete" | "directory" | "doc-download" | "doc" | "download" | "draggable" | "edit" | "enter" | "error-fill" | "error" | "expand" | "external" | "facebook-fill" | "facebook" | "flag" | "funnel" | "globe" | "infinity" | "info-fill" | "info" | "insert" | "list-search" | "loader" | "location" | "locked" | "login" | "logout" | "menu" | "minus" | "notification" | "overflow-menu-horizontal" | "overflow-menu-vertical" | "password" | "pin" | "plus" | "printer" | "question-fill" | "question" | "refresh" | "remove" | "sandglass" | "save" | "settings" | "shopping-cart" | "sort-date" | "source" | "star-fill" | "star" | "telegram" | "timer" | "tool" | "truck" | "unlocked" | "upload" | "user-avatar" | "user-group" | "visibility-off" | "visibility-on" | "vk" | "winner" | "workspace" | "youtube") => boolean;
|
|
130
118
|
};
|
|
131
119
|
/**
|
|
132
120
|
* Заголовок элемента списка
|
|
@@ -172,8 +160,8 @@ declare const _sfc_main: import("vue").DefineComponent<{
|
|
|
172
160
|
description: string;
|
|
173
161
|
disabled: boolean;
|
|
174
162
|
active: boolean;
|
|
175
|
-
prependIcon: "search" | "link" | "list" | "filters" | "add" | "alert-fill" | "alert" | "analog" | "arrow-down" | "arrow-left-bottom" | "arrow-left-top" | "arrow-left" | "arrow-right-bottom" | "arrow-right-top" | "arrow-right" | "arrow-up" | "arrows-vertical" | "calendar" | "card-bank" | "category" | "check-fill" | "check" | "checkbox-fill" | "checkbox" | "chevron-down" | "chevron-left" | "chevron-right" | "chevron-up" | "chocolate-menu" | "clock" | "comment" | "company" | "compare" | "copy" | "data-cards" | "delete" | "directory" | "doc-download" | "doc" | "download" | "draggable" | "edit" | "enter" | "error-fill" | "error" | "external" | "facebook-fill" | "facebook" | "flag" | "funnel" | "globe" | "infinity" | "info-fill" | "info" | "list-search" | "loader" | "location" | "locked" | "login" | "logout" | "menu" | "minus" | "notification" | "overflow-menu-horizontal" | "overflow-menu-vertical" | "password" | "pin" | "plus" | "printer" | "question-fill" | "question" | "refresh" | "remove" | "sandglass" | "save" | "settings" | "shopping-cart" | "sort-date" | "star-fill" | "star" | "telegram" | "timer" | "tool" | "truck" | "unlocked" | "upload" | "user-avatar" | "user-group" | "visibility-off" | "visibility-on" | "vk" | "winner" | "workspace" | "youtube";
|
|
176
|
-
appendIcon: "search" | "link" | "list" | "filters" | "add" | "alert-fill" | "alert" | "analog" | "arrow-down" | "arrow-left-bottom" | "arrow-left-top" | "arrow-left" | "arrow-right-bottom" | "arrow-right-top" | "arrow-right" | "arrow-up" | "arrows-vertical" | "calendar" | "card-bank" | "category" | "check-fill" | "check" | "checkbox-fill" | "checkbox" | "chevron-down" | "chevron-left" | "chevron-right" | "chevron-up" | "chocolate-menu" | "clock" | "comment" | "company" | "compare" | "copy" | "data-cards" | "delete" | "directory" | "doc-download" | "doc" | "download" | "draggable" | "edit" | "enter" | "error-fill" | "error" | "external" | "facebook-fill" | "facebook" | "flag" | "funnel" | "globe" | "infinity" | "info-fill" | "info" | "list-search" | "loader" | "location" | "locked" | "login" | "logout" | "menu" | "minus" | "notification" | "overflow-menu-horizontal" | "overflow-menu-vertical" | "password" | "pin" | "plus" | "printer" | "question-fill" | "question" | "refresh" | "remove" | "sandglass" | "save" | "settings" | "shopping-cart" | "sort-date" | "star-fill" | "star" | "telegram" | "timer" | "tool" | "truck" | "unlocked" | "upload" | "user-avatar" | "user-group" | "visibility-off" | "visibility-on" | "vk" | "winner" | "workspace" | "youtube";
|
|
163
|
+
prependIcon: "search" | "link" | "list" | "filters" | "add" | "alert-fill" | "alert" | "analog" | "arrow-down" | "arrow-left-bottom" | "arrow-left-top" | "arrow-left" | "arrow-right-bottom" | "arrow-right-top" | "arrow-right" | "arrow-up" | "arrows-vertical" | "calendar" | "card-bank" | "category" | "check-fill" | "check" | "checkbox-fill" | "checkbox" | "chevron-down" | "chevron-left" | "chevron-right" | "chevron-up" | "chocholate-menu" | "chocolate-menu" | "clock" | "collapse" | "comment" | "company" | "compare" | "copy" | "data-cards" | "delete" | "directory" | "doc-download" | "doc" | "download" | "draggable" | "edit" | "enter" | "error-fill" | "error" | "expand" | "external" | "facebook-fill" | "facebook" | "flag" | "funnel" | "globe" | "infinity" | "info-fill" | "info" | "insert" | "list-search" | "loader" | "location" | "locked" | "login" | "logout" | "menu" | "minus" | "notification" | "overflow-menu-horizontal" | "overflow-menu-vertical" | "password" | "pin" | "plus" | "printer" | "question-fill" | "question" | "refresh" | "remove" | "sandglass" | "save" | "settings" | "shopping-cart" | "sort-date" | "source" | "star-fill" | "star" | "telegram" | "timer" | "tool" | "truck" | "unlocked" | "upload" | "user-avatar" | "user-group" | "visibility-off" | "visibility-on" | "vk" | "winner" | "workspace" | "youtube";
|
|
164
|
+
appendIcon: "search" | "link" | "list" | "filters" | "add" | "alert-fill" | "alert" | "analog" | "arrow-down" | "arrow-left-bottom" | "arrow-left-top" | "arrow-left" | "arrow-right-bottom" | "arrow-right-top" | "arrow-right" | "arrow-up" | "arrows-vertical" | "calendar" | "card-bank" | "category" | "check-fill" | "check" | "checkbox-fill" | "checkbox" | "chevron-down" | "chevron-left" | "chevron-right" | "chevron-up" | "chocholate-menu" | "chocolate-menu" | "clock" | "collapse" | "comment" | "company" | "compare" | "copy" | "data-cards" | "delete" | "directory" | "doc-download" | "doc" | "download" | "draggable" | "edit" | "enter" | "error-fill" | "error" | "expand" | "external" | "facebook-fill" | "facebook" | "flag" | "funnel" | "globe" | "infinity" | "info-fill" | "info" | "insert" | "list-search" | "loader" | "location" | "locked" | "login" | "logout" | "menu" | "minus" | "notification" | "overflow-menu-horizontal" | "overflow-menu-vertical" | "password" | "pin" | "plus" | "printer" | "question-fill" | "question" | "refresh" | "remove" | "sandglass" | "save" | "settings" | "shopping-cart" | "sort-date" | "source" | "star-fill" | "star" | "telegram" | "timer" | "tool" | "truck" | "unlocked" | "upload" | "user-avatar" | "user-group" | "visibility-off" | "visibility-on" | "vk" | "winner" | "workspace" | "youtube";
|
|
177
165
|
href: string;
|
|
178
166
|
to: import("vue-router").RouteLocationRaw;
|
|
179
167
|
isClickable: boolean;
|
|
@@ -1,3 +1,3 @@
|
|
|
1
1
|
export declare const componentName = "CdsMain";
|
|
2
|
-
declare const _sfc_main: import("vue").DefineComponent<{},
|
|
2
|
+
declare const _sfc_main: import("vue").DefineComponent<{}, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<{}>>, {}>;
|
|
3
3
|
export default _sfc_main;
|
|
@@ -165,342 +165,7 @@ declare const _sfc_main: import("vue").DefineComponent<{
|
|
|
165
165
|
type: PropType<string>;
|
|
166
166
|
default: undefined;
|
|
167
167
|
};
|
|
168
|
-
}, {
|
|
169
|
-
overlay: import("vue").Ref<import("vue").DefineComponent<{
|
|
170
|
-
transition: {
|
|
171
|
-
type: PropType<string | boolean | (import("vue").TransitionProps & {
|
|
172
|
-
component?: import("vue").Component<any, any, any, import("vue").ComputedOptions, import("vue").MethodOptions> | undefined;
|
|
173
|
-
})>;
|
|
174
|
-
default: string;
|
|
175
|
-
validator: (value: unknown) => boolean;
|
|
176
|
-
};
|
|
177
|
-
eager: {
|
|
178
|
-
type: PropType<boolean>;
|
|
179
|
-
default: boolean;
|
|
180
|
-
};
|
|
181
|
-
scrollStrategy: {
|
|
182
|
-
type: PropType<"none" | "close" | "block" | "reposition" | ((data: import("../CdsOverlay/composable").IScrollStrategyData, props: import("../CdsOverlay/composable").IScrollStrategyProps, scope: import("vue").EffectScope) => void)>;
|
|
183
|
-
default: string;
|
|
184
|
-
validator: (value: any) => boolean;
|
|
185
|
-
};
|
|
186
|
-
locationStrategy: {
|
|
187
|
-
type: PropType<"static" | "connected" | ((data: import("../CdsOverlay/composable").ILocationStrategyData, props: import("../CdsOverlay/composable").ILocationStrategyProps, contentStyles: import("vue").Ref<Record<string, string>>) => {
|
|
188
|
-
updateLocation: (event: Event) => void;
|
|
189
|
-
} | undefined)>;
|
|
190
|
-
default: string;
|
|
191
|
-
validator: (value: any) => boolean;
|
|
192
|
-
};
|
|
193
|
-
location: {
|
|
194
|
-
type: PropType<import('../../utils').TAnchor>;
|
|
195
|
-
default: string;
|
|
196
|
-
};
|
|
197
|
-
origin: {
|
|
198
|
-
type: PropType<import('../../utils').TAnchor | "auto" | "overlap">;
|
|
199
|
-
default: string;
|
|
200
|
-
};
|
|
201
|
-
offset: {
|
|
202
|
-
type: PropType<string | number | number[]>;
|
|
203
|
-
default: null;
|
|
204
|
-
};
|
|
205
|
-
height: {
|
|
206
|
-
type: PropType<string | number>;
|
|
207
|
-
default: string;
|
|
208
|
-
};
|
|
209
|
-
width: {
|
|
210
|
-
type: PropType<string | number>;
|
|
211
|
-
default: string;
|
|
212
|
-
};
|
|
213
|
-
maxHeight: {
|
|
214
|
-
type: PropType<string | number>;
|
|
215
|
-
default: string;
|
|
216
|
-
};
|
|
217
|
-
maxWidth: {
|
|
218
|
-
type: PropType<string | number>;
|
|
219
|
-
default: string;
|
|
220
|
-
};
|
|
221
|
-
minHeight: {
|
|
222
|
-
type: PropType<string | number>;
|
|
223
|
-
default: string;
|
|
224
|
-
};
|
|
225
|
-
minWidth: {
|
|
226
|
-
type: PropType<string | number>;
|
|
227
|
-
default: string;
|
|
228
|
-
};
|
|
229
|
-
closeDelay: {
|
|
230
|
-
type: PropType<string | number>;
|
|
231
|
-
default: null;
|
|
232
|
-
};
|
|
233
|
-
openDelay: {
|
|
234
|
-
type: PropType<string | number>;
|
|
235
|
-
default: null;
|
|
236
|
-
};
|
|
237
|
-
activator: {
|
|
238
|
-
type: PropType<string | import("vue").ComponentPublicInstance<{}, {}, {}, {}, {}, {}, {}, {}, false, import("vue").ComponentOptionsBase<any, any, any, any, any, any, any, any, any, {}, {}, string>, {}> | Element>;
|
|
239
|
-
default: null;
|
|
240
|
-
};
|
|
241
|
-
activatorProps: {
|
|
242
|
-
type: PropType<Record<string, any>>;
|
|
243
|
-
default: () => {};
|
|
244
|
-
};
|
|
245
|
-
openOnClick: {
|
|
246
|
-
type: PropType<boolean | undefined>;
|
|
247
|
-
default: undefined;
|
|
248
|
-
};
|
|
249
|
-
openOnHover: {
|
|
250
|
-
type: PropType<boolean>;
|
|
251
|
-
default: boolean;
|
|
252
|
-
};
|
|
253
|
-
openOnFocus: {
|
|
254
|
-
type: PropType<boolean | undefined>;
|
|
255
|
-
default: undefined;
|
|
256
|
-
};
|
|
257
|
-
closeOnContentClick: {
|
|
258
|
-
type: PropType<boolean>;
|
|
259
|
-
default: boolean;
|
|
260
|
-
};
|
|
261
|
-
attach: {
|
|
262
|
-
type: PropType<string | boolean | Element>;
|
|
263
|
-
default: boolean;
|
|
264
|
-
};
|
|
265
|
-
contained: {
|
|
266
|
-
type: PropType<boolean>;
|
|
267
|
-
default: boolean;
|
|
268
|
-
};
|
|
269
|
-
disabled: {
|
|
270
|
-
type: PropType<boolean>;
|
|
271
|
-
default: boolean;
|
|
272
|
-
};
|
|
273
|
-
persistent: {
|
|
274
|
-
type: PropType<boolean>;
|
|
275
|
-
default: boolean;
|
|
276
|
-
};
|
|
277
|
-
scrim: {
|
|
278
|
-
type: PropType<string | boolean>;
|
|
279
|
-
default: boolean;
|
|
280
|
-
};
|
|
281
|
-
modelValue: {
|
|
282
|
-
type: PropType<boolean>;
|
|
283
|
-
default: boolean;
|
|
284
|
-
};
|
|
285
|
-
closeOnBack: {
|
|
286
|
-
type: PropType<boolean>;
|
|
287
|
-
default: boolean;
|
|
288
|
-
};
|
|
289
|
-
zIndex: {
|
|
290
|
-
type: PropType<string | number>;
|
|
291
|
-
default: number;
|
|
292
|
-
};
|
|
293
|
-
contentClasses: {
|
|
294
|
-
type: PropType<string | string[] | Record<string, boolean>>;
|
|
295
|
-
default: null;
|
|
296
|
-
};
|
|
297
|
-
contentProps: {
|
|
298
|
-
type: PropType<Record<string, unknown>>;
|
|
299
|
-
default: () => {};
|
|
300
|
-
};
|
|
301
|
-
noClickAnimation: {
|
|
302
|
-
type: PropType<boolean>;
|
|
303
|
-
default: boolean;
|
|
304
|
-
};
|
|
305
|
-
absolute: {
|
|
306
|
-
type: PropType<boolean>;
|
|
307
|
-
default: boolean;
|
|
308
|
-
};
|
|
309
|
-
}, {
|
|
310
|
-
activatorEl: import("vue").Ref<HTMLElement | undefined>;
|
|
311
|
-
contentEl: import("vue").Ref<HTMLElement | undefined>;
|
|
312
|
-
globalTop: Readonly<import("vue").Ref<boolean>>;
|
|
313
|
-
localTop: import("vue").ComputedRef<boolean>;
|
|
314
|
-
updateLocation: import("vue").Ref<((event: Event) => void) | undefined>;
|
|
315
|
-
}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {
|
|
316
|
-
'update:modelValue': (value: boolean) => true;
|
|
317
|
-
'click:outside': (event: MouseEvent) => true;
|
|
318
|
-
afterLeave: () => true;
|
|
319
|
-
}, string, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<{
|
|
320
|
-
transition: {
|
|
321
|
-
type: PropType<string | boolean | (import("vue").TransitionProps & {
|
|
322
|
-
component?: import("vue").Component<any, any, any, import("vue").ComputedOptions, import("vue").MethodOptions> | undefined;
|
|
323
|
-
})>;
|
|
324
|
-
default: string;
|
|
325
|
-
validator: (value: unknown) => boolean;
|
|
326
|
-
};
|
|
327
|
-
eager: {
|
|
328
|
-
type: PropType<boolean>;
|
|
329
|
-
default: boolean;
|
|
330
|
-
};
|
|
331
|
-
scrollStrategy: {
|
|
332
|
-
type: PropType<"none" | "close" | "block" | "reposition" | ((data: import("../CdsOverlay/composable").IScrollStrategyData, props: import("../CdsOverlay/composable").IScrollStrategyProps, scope: import("vue").EffectScope) => void)>;
|
|
333
|
-
default: string;
|
|
334
|
-
validator: (value: any) => boolean;
|
|
335
|
-
};
|
|
336
|
-
locationStrategy: {
|
|
337
|
-
type: PropType<"static" | "connected" | ((data: import("../CdsOverlay/composable").ILocationStrategyData, props: import("../CdsOverlay/composable").ILocationStrategyProps, contentStyles: import("vue").Ref<Record<string, string>>) => {
|
|
338
|
-
updateLocation: (event: Event) => void;
|
|
339
|
-
} | undefined)>;
|
|
340
|
-
default: string;
|
|
341
|
-
validator: (value: any) => boolean;
|
|
342
|
-
};
|
|
343
|
-
location: {
|
|
344
|
-
type: PropType<import('../../utils').TAnchor>;
|
|
345
|
-
default: string;
|
|
346
|
-
};
|
|
347
|
-
origin: {
|
|
348
|
-
type: PropType<import('../../utils').TAnchor | "auto" | "overlap">;
|
|
349
|
-
default: string;
|
|
350
|
-
};
|
|
351
|
-
offset: {
|
|
352
|
-
type: PropType<string | number | number[]>;
|
|
353
|
-
default: null;
|
|
354
|
-
};
|
|
355
|
-
height: {
|
|
356
|
-
type: PropType<string | number>;
|
|
357
|
-
default: string;
|
|
358
|
-
};
|
|
359
|
-
width: {
|
|
360
|
-
type: PropType<string | number>;
|
|
361
|
-
default: string;
|
|
362
|
-
};
|
|
363
|
-
maxHeight: {
|
|
364
|
-
type: PropType<string | number>;
|
|
365
|
-
default: string;
|
|
366
|
-
};
|
|
367
|
-
maxWidth: {
|
|
368
|
-
type: PropType<string | number>;
|
|
369
|
-
default: string;
|
|
370
|
-
};
|
|
371
|
-
minHeight: {
|
|
372
|
-
type: PropType<string | number>;
|
|
373
|
-
default: string;
|
|
374
|
-
};
|
|
375
|
-
minWidth: {
|
|
376
|
-
type: PropType<string | number>;
|
|
377
|
-
default: string;
|
|
378
|
-
};
|
|
379
|
-
closeDelay: {
|
|
380
|
-
type: PropType<string | number>;
|
|
381
|
-
default: null;
|
|
382
|
-
};
|
|
383
|
-
openDelay: {
|
|
384
|
-
type: PropType<string | number>;
|
|
385
|
-
default: null;
|
|
386
|
-
};
|
|
387
|
-
activator: {
|
|
388
|
-
type: PropType<string | import("vue").ComponentPublicInstance<{}, {}, {}, {}, {}, {}, {}, {}, false, import("vue").ComponentOptionsBase<any, any, any, any, any, any, any, any, any, {}, {}, string>, {}> | Element>;
|
|
389
|
-
default: null;
|
|
390
|
-
};
|
|
391
|
-
activatorProps: {
|
|
392
|
-
type: PropType<Record<string, any>>;
|
|
393
|
-
default: () => {};
|
|
394
|
-
};
|
|
395
|
-
openOnClick: {
|
|
396
|
-
type: PropType<boolean | undefined>;
|
|
397
|
-
default: undefined;
|
|
398
|
-
};
|
|
399
|
-
openOnHover: {
|
|
400
|
-
type: PropType<boolean>;
|
|
401
|
-
default: boolean;
|
|
402
|
-
};
|
|
403
|
-
openOnFocus: {
|
|
404
|
-
type: PropType<boolean | undefined>;
|
|
405
|
-
default: undefined;
|
|
406
|
-
};
|
|
407
|
-
closeOnContentClick: {
|
|
408
|
-
type: PropType<boolean>;
|
|
409
|
-
default: boolean;
|
|
410
|
-
};
|
|
411
|
-
attach: {
|
|
412
|
-
type: PropType<string | boolean | Element>;
|
|
413
|
-
default: boolean;
|
|
414
|
-
};
|
|
415
|
-
contained: {
|
|
416
|
-
type: PropType<boolean>;
|
|
417
|
-
default: boolean;
|
|
418
|
-
};
|
|
419
|
-
disabled: {
|
|
420
|
-
type: PropType<boolean>;
|
|
421
|
-
default: boolean;
|
|
422
|
-
};
|
|
423
|
-
persistent: {
|
|
424
|
-
type: PropType<boolean>;
|
|
425
|
-
default: boolean;
|
|
426
|
-
};
|
|
427
|
-
scrim: {
|
|
428
|
-
type: PropType<string | boolean>;
|
|
429
|
-
default: boolean;
|
|
430
|
-
};
|
|
431
|
-
modelValue: {
|
|
432
|
-
type: PropType<boolean>;
|
|
433
|
-
default: boolean;
|
|
434
|
-
};
|
|
435
|
-
closeOnBack: {
|
|
436
|
-
type: PropType<boolean>;
|
|
437
|
-
default: boolean;
|
|
438
|
-
};
|
|
439
|
-
zIndex: {
|
|
440
|
-
type: PropType<string | number>;
|
|
441
|
-
default: number;
|
|
442
|
-
};
|
|
443
|
-
contentClasses: {
|
|
444
|
-
type: PropType<string | string[] | Record<string, boolean>>;
|
|
445
|
-
default: null;
|
|
446
|
-
};
|
|
447
|
-
contentProps: {
|
|
448
|
-
type: PropType<Record<string, unknown>>;
|
|
449
|
-
default: () => {};
|
|
450
|
-
};
|
|
451
|
-
noClickAnimation: {
|
|
452
|
-
type: PropType<boolean>;
|
|
453
|
-
default: boolean;
|
|
454
|
-
};
|
|
455
|
-
absolute: {
|
|
456
|
-
type: PropType<boolean>;
|
|
457
|
-
default: boolean;
|
|
458
|
-
};
|
|
459
|
-
}>> & {
|
|
460
|
-
"onUpdate:modelValue"?: ((value: boolean) => any) | undefined;
|
|
461
|
-
"onClick:outside"?: ((event: MouseEvent) => any) | undefined;
|
|
462
|
-
onAfterLeave?: (() => any) | undefined;
|
|
463
|
-
}, {
|
|
464
|
-
disabled: boolean;
|
|
465
|
-
location: import('../../utils').TAnchor;
|
|
466
|
-
modelValue: boolean;
|
|
467
|
-
eager: boolean;
|
|
468
|
-
transition: string | boolean | (import("vue").TransitionProps & {
|
|
469
|
-
component?: import("vue").Component<any, any, any, import("vue").ComputedOptions, import("vue").MethodOptions> | undefined;
|
|
470
|
-
});
|
|
471
|
-
attach: string | boolean | Element;
|
|
472
|
-
contained: boolean;
|
|
473
|
-
persistent: boolean;
|
|
474
|
-
scrim: string | boolean;
|
|
475
|
-
closeOnBack: boolean;
|
|
476
|
-
zIndex: string | number;
|
|
477
|
-
contentClasses: string | string[] | Record<string, boolean>;
|
|
478
|
-
contentProps: Record<string, unknown>;
|
|
479
|
-
noClickAnimation: boolean;
|
|
480
|
-
activator: string | import("vue").ComponentPublicInstance<{}, {}, {}, {}, {}, {}, {}, {}, false, import("vue").ComponentOptionsBase<any, any, any, any, any, any, any, any, any, {}, {}, string>, {}> | Element;
|
|
481
|
-
activatorProps: Record<string, any>;
|
|
482
|
-
openOnClick: boolean | undefined;
|
|
483
|
-
openOnHover: boolean;
|
|
484
|
-
openOnFocus: boolean | undefined;
|
|
485
|
-
closeOnContentClick: boolean;
|
|
486
|
-
closeDelay: string | number;
|
|
487
|
-
openDelay: string | number;
|
|
488
|
-
locationStrategy: "static" | "connected" | ((data: import("../CdsOverlay/composable").ILocationStrategyData, props: import("../CdsOverlay/composable").ILocationStrategyProps, contentStyles: import("vue").Ref<Record<string, string>>) => {
|
|
489
|
-
updateLocation: (event: Event) => void;
|
|
490
|
-
} | undefined);
|
|
491
|
-
origin: import('../../utils').TAnchor | "auto" | "overlap";
|
|
492
|
-
offset: string | number | number[];
|
|
493
|
-
scrollStrategy: "none" | "close" | "block" | "reposition" | ((data: import("../CdsOverlay/composable").IScrollStrategyData, props: import("../CdsOverlay/composable").IScrollStrategyProps, scope: import("vue").EffectScope) => void);
|
|
494
|
-
height: string | number;
|
|
495
|
-
width: string | number;
|
|
496
|
-
maxHeight: string | number;
|
|
497
|
-
maxWidth: string | number;
|
|
498
|
-
minHeight: string | number;
|
|
499
|
-
minWidth: string | number;
|
|
500
|
-
absolute: boolean;
|
|
501
|
-
}> | undefined>;
|
|
502
|
-
openChildren: import("vue").Ref<number>;
|
|
503
|
-
}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {
|
|
168
|
+
}, {}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {
|
|
504
169
|
/**
|
|
505
170
|
* Событие при изменении значения (v-model)
|
|
506
171
|
* @type { boolean }
|