@central-design-system/components 3.0.0-alpha.1 → 3.0.0-alpha.3

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (74) hide show
  1. package/dist/cds.css +1 -1
  2. package/dist/cds.d.ts +9 -3
  3. package/dist/cds.es.js +6646 -3569
  4. package/dist/cds.umd.js +1 -1
  5. package/dist/components/CdsBreadcrumbs/CdsBreadcrumbs.vue.d.ts +64 -0
  6. package/dist/components/CdsBreadcrumbs/CdsBreadcrumbsItem.vue.d.ts +54 -0
  7. package/dist/components/CdsBreadcrumbs/index.d.ts +2 -0
  8. package/dist/components/CdsButton/CdsButton.vue.d.ts +13 -13
  9. package/dist/components/CdsButton/index.d.ts +1 -0
  10. package/dist/components/CdsCheckbox/CdsCheckbox.vue.d.ts +56 -24
  11. package/dist/components/CdsCheckbox/CdsCheckboxGroup.vue.d.ts +34 -12
  12. package/dist/components/CdsCheckbox/index.d.ts +2 -0
  13. package/dist/components/CdsCombobox/CdsCombobox.vue.d.ts +2515 -0
  14. package/dist/components/CdsCombobox/composable/highlight.d.ts +12 -0
  15. package/dist/components/CdsDatePicker/CdsDatePicker.vue.d.ts +276 -0
  16. package/dist/components/CdsDatePicker/composable/calendar.d.ts +315 -0
  17. package/dist/components/CdsDatePicker/composable/index.d.ts +1 -0
  18. package/dist/components/CdsDrawer/CdsDrawer.vue.d.ts +22 -6
  19. package/dist/components/CdsDropdown/CdsDropdown.vue.d.ts +2334 -0
  20. package/dist/components/CdsEmptyState/CdsEmptyState.vue.d.ts +54 -0
  21. package/dist/components/CdsForm/CdsForm.vue.d.ts +13 -3
  22. package/dist/components/CdsGrid/CdsCol.vue.d.ts +1 -1
  23. package/dist/components/CdsIcon/CdsIcon.vue.d.ts +3 -3
  24. package/dist/components/CdsInput/CdsInput.vue.d.ts +29 -23
  25. package/dist/components/CdsLink/CdsLink.vue.d.ts +10 -3
  26. package/dist/components/CdsLink/index.d.ts +1 -0
  27. package/dist/components/CdsList/CdsList.vue.d.ts +47 -6
  28. package/dist/components/CdsList/CdsListGroup.vue.d.ts +8 -8
  29. package/dist/components/CdsList/CdsListItem.vue.d.ts +28 -25
  30. package/dist/components/CdsLoader/CdsLoader.vue.d.ts +1 -1
  31. package/dist/components/CdsMenu/CdsMenu.vue.d.ts +127 -28
  32. package/dist/components/CdsMenu/index.d.ts +1 -0
  33. package/dist/components/CdsOverlay/CdsOverlay.vue.d.ts +46 -23
  34. package/dist/components/CdsOverlay/index.d.ts +1 -0
  35. package/dist/components/CdsRadioButton/CdsRadio.vue.d.ts +42 -14
  36. package/dist/components/CdsRadioButton/CdsRadioButton.vue.d.ts +42 -14
  37. package/dist/components/CdsSelect/CdsSelect.vue.d.ts +165 -86
  38. package/dist/components/CdsSidebar/CdsSidebar.vue.d.ts +23 -18
  39. package/dist/components/CdsStages/CdsStages.vue.d.ts +2 -2
  40. package/dist/components/CdsTag/CdsTag.vue.d.ts +11 -6
  41. package/dist/components/CdsTag/index.d.ts +1 -0
  42. package/dist/components/CdsTextArea/CdsTextArea.vue.d.ts +171 -87
  43. package/dist/components/CdsTextInput/CdsTextInput.vue.d.ts +195 -70
  44. package/dist/components/CdsTextInput/index.d.ts +1 -0
  45. package/dist/components/index.d.ts +7 -1
  46. package/dist/composable/color.d.ts +4 -2
  47. package/dist/composable/datetime.d.ts +76 -0
  48. package/dist/composable/delay.d.ts +1 -1
  49. package/dist/composable/field.d.ts +4 -3
  50. package/dist/composable/filter.d.ts +52 -0
  51. package/dist/composable/form.d.ts +2 -0
  52. package/dist/composable/hidration.d.ts +2 -1
  53. package/dist/composable/icon.d.ts +2 -2
  54. package/dist/composable/index.d.ts +6 -0
  55. package/dist/composable/input.d.ts +5 -3
  56. package/dist/composable/items.d.ts +2 -0
  57. package/dist/composable/lazy.d.ts +12 -2
  58. package/dist/composable/menu.d.ts +37 -0
  59. package/dist/composable/overlay.d.ts +8 -9
  60. package/dist/composable/router.d.ts +3 -0
  61. package/dist/composable/select.d.ts +86 -0
  62. package/dist/composable/title.d.ts +21 -0
  63. package/dist/composable/validation.d.ts +0 -8
  64. package/dist/locale/index.d.ts +12 -0
  65. package/dist/locale/ru.d.ts +3 -0
  66. package/dist/transitions/index.d.ts +150 -0
  67. package/dist/utils/anchor.d.ts +1 -1
  68. package/dist/utils/cache.d.ts +4 -0
  69. package/dist/utils/date.d.ts +181 -0
  70. package/dist/utils/helpers.d.ts +68 -19
  71. package/dist/utils/index.d.ts +2 -0
  72. package/package.json +3 -2
  73. package/src/scss/modules/_transition.scss +102 -0
  74. package/src/scss/themes/index.ts +1 -1
@@ -14,25 +14,23 @@ declare const _sfc_main: import("vue").DefineComponent<{
14
14
  };
15
15
  href: {
16
16
  type: PropType<string>;
17
- default: undefined; /**
18
- * Активное состояние
19
- */
17
+ default: undefined;
20
18
  };
21
19
  to: {
22
20
  type: PropType<import("vue-router").RouteLocationRaw>;
23
21
  default: undefined;
24
22
  };
25
23
  prependIcon: {
26
- type: PropType<"add" | "alert-fill" | "alert" | "analog" | "arrow-down" | "arrow-left-bottom" | "arrow-left-top" | "arrow-left" | "arrow-right-bottom" | "arrow-right-top" | "arrow-right" | "arrow-up" | "arrows-vertical" | "calendar" | "card-bank" | "category" | "check-fill" | "check" | "chevron-down" | "chevron-left" | "chevron-right" | "chevron-up" | "chocolate-menu" | "clock" | "comment" | "company" | "compare" | "copy" | "data-cards" | "delete" | "directory" | "doc-download" | "doc" | "download" | "draggable" | "edit" | "enter" | "error-fill" | "error" | "external" | "facebook-fill" | "facebook" | "filters" | "flag" | "globe" | "infinity" | "info-fill" | "info" | "link" | "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" | "search" | "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
+ 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" | "chevron-down" | "chevron-left" | "chevron-right" | "chevron-up" | "chocolate-menu" | "clock" | "comment" | "company" | "compare" | "copy" | "data-cards" | "delete" | "directory" | "doc-download" | "doc" | "download" | "draggable" | "edit" | "enter" | "error-fill" | "error" | "external" | "facebook-fill" | "facebook" | "flag" | "globe" | "infinity" | "info-fill" | "info" | "list-search" | "list" | "loader" | "location" | "locked" | "login" | "logout" | "menu" | "minus" | "notification" | "overflow-menu-horizontal" | "overflow-menu-vertical" | "password" | "pin" | "plus" | "printer" | "question-fill" | "question" | "refresh" | "remove" | "sandglass" | "save" | "settings" | "shopping-cart" | "sort-date" | "star-fill" | "star" | "telegram" | "timer" | "tool" | "truck" | "unlocked" | "upload" | "user-avatar" | "user-group" | "visibility-off" | "visibility-on" | "vk" | "winner" | "workspace" | "youtube">; /**
27
25
  * Активное состояние
28
26
  */
29
27
  default: undefined;
30
- validator: (value: "add" | "alert-fill" | "alert" | "analog" | "arrow-down" | "arrow-left-bottom" | "arrow-left-top" | "arrow-left" | "arrow-right-bottom" | "arrow-right-top" | "arrow-right" | "arrow-up" | "arrows-vertical" | "calendar" | "card-bank" | "category" | "check-fill" | "check" | "chevron-down" | "chevron-left" | "chevron-right" | "chevron-up" | "chocolate-menu" | "clock" | "comment" | "company" | "compare" | "copy" | "data-cards" | "delete" | "directory" | "doc-download" | "doc" | "download" | "draggable" | "edit" | "enter" | "error-fill" | "error" | "external" | "facebook-fill" | "facebook" | "filters" | "flag" | "globe" | "infinity" | "info-fill" | "info" | "link" | "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" | "search" | "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;
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" | "chevron-down" | "chevron-left" | "chevron-right" | "chevron-up" | "chocolate-menu" | "clock" | "comment" | "company" | "compare" | "copy" | "data-cards" | "delete" | "directory" | "doc-download" | "doc" | "download" | "draggable" | "edit" | "enter" | "error-fill" | "error" | "external" | "facebook-fill" | "facebook" | "flag" | "globe" | "infinity" | "info-fill" | "info" | "list-search" | "list" | "loader" | "location" | "locked" | "login" | "logout" | "menu" | "minus" | "notification" | "overflow-menu-horizontal" | "overflow-menu-vertical" | "password" | "pin" | "plus" | "printer" | "question-fill" | "question" | "refresh" | "remove" | "sandglass" | "save" | "settings" | "shopping-cart" | "sort-date" | "star-fill" | "star" | "telegram" | "timer" | "tool" | "truck" | "unlocked" | "upload" | "user-avatar" | "user-group" | "visibility-off" | "visibility-on" | "vk" | "winner" | "workspace" | "youtube") => boolean;
31
29
  };
32
30
  appendIcon: {
33
- type: PropType<"add" | "alert-fill" | "alert" | "analog" | "arrow-down" | "arrow-left-bottom" | "arrow-left-top" | "arrow-left" | "arrow-right-bottom" | "arrow-right-top" | "arrow-right" | "arrow-up" | "arrows-vertical" | "calendar" | "card-bank" | "category" | "check-fill" | "check" | "chevron-down" | "chevron-left" | "chevron-right" | "chevron-up" | "chocolate-menu" | "clock" | "comment" | "company" | "compare" | "copy" | "data-cards" | "delete" | "directory" | "doc-download" | "doc" | "download" | "draggable" | "edit" | "enter" | "error-fill" | "error" | "external" | "facebook-fill" | "facebook" | "filters" | "flag" | "globe" | "infinity" | "info-fill" | "info" | "link" | "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" | "search" | "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
+ 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" | "chevron-down" | "chevron-left" | "chevron-right" | "chevron-up" | "chocolate-menu" | "clock" | "comment" | "company" | "compare" | "copy" | "data-cards" | "delete" | "directory" | "doc-download" | "doc" | "download" | "draggable" | "edit" | "enter" | "error-fill" | "error" | "external" | "facebook-fill" | "facebook" | "flag" | "globe" | "infinity" | "info-fill" | "info" | "list-search" | "list" | "loader" | "location" | "locked" | "login" | "logout" | "menu" | "minus" | "notification" | "overflow-menu-horizontal" | "overflow-menu-vertical" | "password" | "pin" | "plus" | "printer" | "question-fill" | "question" | "refresh" | "remove" | "sandglass" | "save" | "settings" | "shopping-cart" | "sort-date" | "star-fill" | "star" | "telegram" | "timer" | "tool" | "truck" | "unlocked" | "upload" | "user-avatar" | "user-group" | "visibility-off" | "visibility-on" | "vk" | "winner" | "workspace" | "youtube">;
34
32
  default: undefined;
35
- validator: (value: "add" | "alert-fill" | "alert" | "analog" | "arrow-down" | "arrow-left-bottom" | "arrow-left-top" | "arrow-left" | "arrow-right-bottom" | "arrow-right-top" | "arrow-right" | "arrow-up" | "arrows-vertical" | "calendar" | "card-bank" | "category" | "check-fill" | "check" | "chevron-down" | "chevron-left" | "chevron-right" | "chevron-up" | "chocolate-menu" | "clock" | "comment" | "company" | "compare" | "copy" | "data-cards" | "delete" | "directory" | "doc-download" | "doc" | "download" | "draggable" | "edit" | "enter" | "error-fill" | "error" | "external" | "facebook-fill" | "facebook" | "filters" | "flag" | "globe" | "infinity" | "info-fill" | "info" | "link" | "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" | "search" | "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;
33
+ validator: (value: "link" | "filters" | "search" | "add" | "alert-fill" | "alert" | "analog" | "arrow-down" | "arrow-left-bottom" | "arrow-left-top" | "arrow-left" | "arrow-right-bottom" | "arrow-right-top" | "arrow-right" | "arrow-up" | "arrows-vertical" | "calendar" | "card-bank" | "category" | "check-fill" | "check" | "chevron-down" | "chevron-left" | "chevron-right" | "chevron-up" | "chocolate-menu" | "clock" | "comment" | "company" | "compare" | "copy" | "data-cards" | "delete" | "directory" | "doc-download" | "doc" | "download" | "draggable" | "edit" | "enter" | "error-fill" | "error" | "external" | "facebook-fill" | "facebook" | "flag" | "globe" | "infinity" | "info-fill" | "info" | "list-search" | "list" | "loader" | "location" | "locked" | "login" | "logout" | "menu" | "minus" | "notification" | "overflow-menu-horizontal" | "overflow-menu-vertical" | "password" | "pin" | "plus" | "printer" | "question-fill" | "question" | "refresh" | "remove" | "sandglass" | "save" | "settings" | "shopping-cart" | "sort-date" | "star-fill" | "star" | "telegram" | "timer" | "tool" | "truck" | "unlocked" | "upload" | "user-avatar" | "user-group" | "visibility-off" | "visibility-on" | "vk" | "winner" | "workspace" | "youtube") => boolean;
36
34
  };
37
35
  /**
38
36
  * Заголовок элемента списка
@@ -52,8 +50,8 @@ declare const _sfc_main: import("vue").DefineComponent<{
52
50
  * Значение элемента списка
53
51
  */
54
52
  value: {
55
- type: PropType<string | number>;
56
- default: undefined;
53
+ type: PropType<any>;
54
+ default: null;
57
55
  };
58
56
  /**
59
57
  * Активное состояние
@@ -86,12 +84,19 @@ declare const _sfc_main: import("vue").DefineComponent<{
86
84
  classes: import("vue").ComputedRef<{
87
85
  'cds-list-item--active': boolean;
88
86
  'cds-list-item--clickable': boolean;
87
+ 'cds-list-item--selected': boolean;
89
88
  }>;
90
89
  disabledClasses: import("vue").ComputedRef<string | undefined>;
91
90
  tabindex: number | undefined;
92
91
  onClick: (event: MouseEvent) => void;
93
92
  onKeyDown: false | ((event: KeyboardEvent) => void);
94
- }, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, "click"[], "click", import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<{
93
+ }, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {
94
+ /**
95
+ * Событие выбора элемента списка
96
+ * @type { MouseEvent | KeyboardEvent | TouchEvent }
97
+ */
98
+ click: (event: MouseEvent | KeyboardEvent | TouchEvent) => true;
99
+ }, string, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<{
95
100
  disabled: {
96
101
  type: PropType<boolean>;
97
102
  default: boolean; /**
@@ -105,25 +110,23 @@ declare const _sfc_main: import("vue").DefineComponent<{
105
110
  };
106
111
  href: {
107
112
  type: PropType<string>;
108
- default: undefined; /**
109
- * Активное состояние
110
- */
113
+ default: undefined;
111
114
  };
112
115
  to: {
113
116
  type: PropType<import("vue-router").RouteLocationRaw>;
114
117
  default: undefined;
115
118
  };
116
119
  prependIcon: {
117
- type: PropType<"add" | "alert-fill" | "alert" | "analog" | "arrow-down" | "arrow-left-bottom" | "arrow-left-top" | "arrow-left" | "arrow-right-bottom" | "arrow-right-top" | "arrow-right" | "arrow-up" | "arrows-vertical" | "calendar" | "card-bank" | "category" | "check-fill" | "check" | "chevron-down" | "chevron-left" | "chevron-right" | "chevron-up" | "chocolate-menu" | "clock" | "comment" | "company" | "compare" | "copy" | "data-cards" | "delete" | "directory" | "doc-download" | "doc" | "download" | "draggable" | "edit" | "enter" | "error-fill" | "error" | "external" | "facebook-fill" | "facebook" | "filters" | "flag" | "globe" | "infinity" | "info-fill" | "info" | "link" | "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" | "search" | "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">; /**
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" | "chevron-down" | "chevron-left" | "chevron-right" | "chevron-up" | "chocolate-menu" | "clock" | "comment" | "company" | "compare" | "copy" | "data-cards" | "delete" | "directory" | "doc-download" | "doc" | "download" | "draggable" | "edit" | "enter" | "error-fill" | "error" | "external" | "facebook-fill" | "facebook" | "flag" | "globe" | "infinity" | "info-fill" | "info" | "list-search" | "list" | "loader" | "location" | "locked" | "login" | "logout" | "menu" | "minus" | "notification" | "overflow-menu-horizontal" | "overflow-menu-vertical" | "password" | "pin" | "plus" | "printer" | "question-fill" | "question" | "refresh" | "remove" | "sandglass" | "save" | "settings" | "shopping-cart" | "sort-date" | "star-fill" | "star" | "telegram" | "timer" | "tool" | "truck" | "unlocked" | "upload" | "user-avatar" | "user-group" | "visibility-off" | "visibility-on" | "vk" | "winner" | "workspace" | "youtube">; /**
118
121
  * Активное состояние
119
122
  */
120
123
  default: undefined;
121
- validator: (value: "add" | "alert-fill" | "alert" | "analog" | "arrow-down" | "arrow-left-bottom" | "arrow-left-top" | "arrow-left" | "arrow-right-bottom" | "arrow-right-top" | "arrow-right" | "arrow-up" | "arrows-vertical" | "calendar" | "card-bank" | "category" | "check-fill" | "check" | "chevron-down" | "chevron-left" | "chevron-right" | "chevron-up" | "chocolate-menu" | "clock" | "comment" | "company" | "compare" | "copy" | "data-cards" | "delete" | "directory" | "doc-download" | "doc" | "download" | "draggable" | "edit" | "enter" | "error-fill" | "error" | "external" | "facebook-fill" | "facebook" | "filters" | "flag" | "globe" | "infinity" | "info-fill" | "info" | "link" | "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" | "search" | "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;
124
+ validator: (value: "link" | "filters" | "search" | "add" | "alert-fill" | "alert" | "analog" | "arrow-down" | "arrow-left-bottom" | "arrow-left-top" | "arrow-left" | "arrow-right-bottom" | "arrow-right-top" | "arrow-right" | "arrow-up" | "arrows-vertical" | "calendar" | "card-bank" | "category" | "check-fill" | "check" | "chevron-down" | "chevron-left" | "chevron-right" | "chevron-up" | "chocolate-menu" | "clock" | "comment" | "company" | "compare" | "copy" | "data-cards" | "delete" | "directory" | "doc-download" | "doc" | "download" | "draggable" | "edit" | "enter" | "error-fill" | "error" | "external" | "facebook-fill" | "facebook" | "flag" | "globe" | "infinity" | "info-fill" | "info" | "list-search" | "list" | "loader" | "location" | "locked" | "login" | "logout" | "menu" | "minus" | "notification" | "overflow-menu-horizontal" | "overflow-menu-vertical" | "password" | "pin" | "plus" | "printer" | "question-fill" | "question" | "refresh" | "remove" | "sandglass" | "save" | "settings" | "shopping-cart" | "sort-date" | "star-fill" | "star" | "telegram" | "timer" | "tool" | "truck" | "unlocked" | "upload" | "user-avatar" | "user-group" | "visibility-off" | "visibility-on" | "vk" | "winner" | "workspace" | "youtube") => boolean;
122
125
  };
123
126
  appendIcon: {
124
- type: PropType<"add" | "alert-fill" | "alert" | "analog" | "arrow-down" | "arrow-left-bottom" | "arrow-left-top" | "arrow-left" | "arrow-right-bottom" | "arrow-right-top" | "arrow-right" | "arrow-up" | "arrows-vertical" | "calendar" | "card-bank" | "category" | "check-fill" | "check" | "chevron-down" | "chevron-left" | "chevron-right" | "chevron-up" | "chocolate-menu" | "clock" | "comment" | "company" | "compare" | "copy" | "data-cards" | "delete" | "directory" | "doc-download" | "doc" | "download" | "draggable" | "edit" | "enter" | "error-fill" | "error" | "external" | "facebook-fill" | "facebook" | "filters" | "flag" | "globe" | "infinity" | "info-fill" | "info" | "link" | "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" | "search" | "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">;
127
+ 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" | "chevron-down" | "chevron-left" | "chevron-right" | "chevron-up" | "chocolate-menu" | "clock" | "comment" | "company" | "compare" | "copy" | "data-cards" | "delete" | "directory" | "doc-download" | "doc" | "download" | "draggable" | "edit" | "enter" | "error-fill" | "error" | "external" | "facebook-fill" | "facebook" | "flag" | "globe" | "infinity" | "info-fill" | "info" | "list-search" | "list" | "loader" | "location" | "locked" | "login" | "logout" | "menu" | "minus" | "notification" | "overflow-menu-horizontal" | "overflow-menu-vertical" | "password" | "pin" | "plus" | "printer" | "question-fill" | "question" | "refresh" | "remove" | "sandglass" | "save" | "settings" | "shopping-cart" | "sort-date" | "star-fill" | "star" | "telegram" | "timer" | "tool" | "truck" | "unlocked" | "upload" | "user-avatar" | "user-group" | "visibility-off" | "visibility-on" | "vk" | "winner" | "workspace" | "youtube">;
125
128
  default: undefined;
126
- validator: (value: "add" | "alert-fill" | "alert" | "analog" | "arrow-down" | "arrow-left-bottom" | "arrow-left-top" | "arrow-left" | "arrow-right-bottom" | "arrow-right-top" | "arrow-right" | "arrow-up" | "arrows-vertical" | "calendar" | "card-bank" | "category" | "check-fill" | "check" | "chevron-down" | "chevron-left" | "chevron-right" | "chevron-up" | "chocolate-menu" | "clock" | "comment" | "company" | "compare" | "copy" | "data-cards" | "delete" | "directory" | "doc-download" | "doc" | "download" | "draggable" | "edit" | "enter" | "error-fill" | "error" | "external" | "facebook-fill" | "facebook" | "filters" | "flag" | "globe" | "infinity" | "info-fill" | "info" | "link" | "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" | "search" | "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;
129
+ validator: (value: "link" | "filters" | "search" | "add" | "alert-fill" | "alert" | "analog" | "arrow-down" | "arrow-left-bottom" | "arrow-left-top" | "arrow-left" | "arrow-right-bottom" | "arrow-right-top" | "arrow-right" | "arrow-up" | "arrows-vertical" | "calendar" | "card-bank" | "category" | "check-fill" | "check" | "chevron-down" | "chevron-left" | "chevron-right" | "chevron-up" | "chocolate-menu" | "clock" | "comment" | "company" | "compare" | "copy" | "data-cards" | "delete" | "directory" | "doc-download" | "doc" | "download" | "draggable" | "edit" | "enter" | "error-fill" | "error" | "external" | "facebook-fill" | "facebook" | "flag" | "globe" | "infinity" | "info-fill" | "info" | "list-search" | "list" | "loader" | "location" | "locked" | "login" | "logout" | "menu" | "minus" | "notification" | "overflow-menu-horizontal" | "overflow-menu-vertical" | "password" | "pin" | "plus" | "printer" | "question-fill" | "question" | "refresh" | "remove" | "sandglass" | "save" | "settings" | "shopping-cart" | "sort-date" | "star-fill" | "star" | "telegram" | "timer" | "tool" | "truck" | "unlocked" | "upload" | "user-avatar" | "user-group" | "visibility-off" | "visibility-on" | "vk" | "winner" | "workspace" | "youtube") => boolean;
127
130
  };
128
131
  /**
129
132
  * Заголовок элемента списка
@@ -143,8 +146,8 @@ declare const _sfc_main: import("vue").DefineComponent<{
143
146
  * Значение элемента списка
144
147
  */
145
148
  value: {
146
- type: PropType<string | number>;
147
- default: undefined;
149
+ type: PropType<any>;
150
+ default: null;
148
151
  };
149
152
  /**
150
153
  * Активное состояние
@@ -161,18 +164,18 @@ declare const _sfc_main: import("vue").DefineComponent<{
161
164
  default: boolean;
162
165
  };
163
166
  }>> & {
164
- onClick?: ((...args: any[]) => any) | undefined;
167
+ onClick?: ((event: MouseEvent | KeyboardEvent | TouchEvent) => any) | undefined;
165
168
  }, {
166
169
  description: string;
167
- prependIcon: "add" | "alert-fill" | "alert" | "analog" | "arrow-down" | "arrow-left-bottom" | "arrow-left-top" | "arrow-left" | "arrow-right-bottom" | "arrow-right-top" | "arrow-right" | "arrow-up" | "arrows-vertical" | "calendar" | "card-bank" | "category" | "check-fill" | "check" | "chevron-down" | "chevron-left" | "chevron-right" | "chevron-up" | "chocolate-menu" | "clock" | "comment" | "company" | "compare" | "copy" | "data-cards" | "delete" | "directory" | "doc-download" | "doc" | "download" | "draggable" | "edit" | "enter" | "error-fill" | "error" | "external" | "facebook-fill" | "facebook" | "filters" | "flag" | "globe" | "infinity" | "info-fill" | "info" | "link" | "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" | "search" | "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";
168
- appendIcon: "add" | "alert-fill" | "alert" | "analog" | "arrow-down" | "arrow-left-bottom" | "arrow-left-top" | "arrow-left" | "arrow-right-bottom" | "arrow-right-top" | "arrow-right" | "arrow-up" | "arrows-vertical" | "calendar" | "card-bank" | "category" | "check-fill" | "check" | "chevron-down" | "chevron-left" | "chevron-right" | "chevron-up" | "chocolate-menu" | "clock" | "comment" | "company" | "compare" | "copy" | "data-cards" | "delete" | "directory" | "doc-download" | "doc" | "download" | "draggable" | "edit" | "enter" | "error-fill" | "error" | "external" | "facebook-fill" | "facebook" | "filters" | "flag" | "globe" | "infinity" | "info-fill" | "info" | "link" | "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" | "search" | "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";
169
- disabled: boolean;
170
170
  href: string;
171
171
  to: import("vue-router").RouteLocationRaw;
172
+ disabled: boolean;
172
173
  tag: string;
173
- active: boolean;
174
- value: string | number;
175
174
  title: string;
175
+ value: any;
176
+ prependIcon: "link" | "filters" | "search" | "add" | "alert-fill" | "alert" | "analog" | "arrow-down" | "arrow-left-bottom" | "arrow-left-top" | "arrow-left" | "arrow-right-bottom" | "arrow-right-top" | "arrow-right" | "arrow-up" | "arrows-vertical" | "calendar" | "card-bank" | "category" | "check-fill" | "check" | "chevron-down" | "chevron-left" | "chevron-right" | "chevron-up" | "chocolate-menu" | "clock" | "comment" | "company" | "compare" | "copy" | "data-cards" | "delete" | "directory" | "doc-download" | "doc" | "download" | "draggable" | "edit" | "enter" | "error-fill" | "error" | "external" | "facebook-fill" | "facebook" | "flag" | "globe" | "infinity" | "info-fill" | "info" | "list-search" | "list" | "loader" | "location" | "locked" | "login" | "logout" | "menu" | "minus" | "notification" | "overflow-menu-horizontal" | "overflow-menu-vertical" | "password" | "pin" | "plus" | "printer" | "question-fill" | "question" | "refresh" | "remove" | "sandglass" | "save" | "settings" | "shopping-cart" | "sort-date" | "star-fill" | "star" | "telegram" | "timer" | "tool" | "truck" | "unlocked" | "upload" | "user-avatar" | "user-group" | "visibility-off" | "visibility-on" | "vk" | "winner" | "workspace" | "youtube";
177
+ appendIcon: "link" | "filters" | "search" | "add" | "alert-fill" | "alert" | "analog" | "arrow-down" | "arrow-left-bottom" | "arrow-left-top" | "arrow-left" | "arrow-right-bottom" | "arrow-right-top" | "arrow-right" | "arrow-up" | "arrows-vertical" | "calendar" | "card-bank" | "category" | "check-fill" | "check" | "chevron-down" | "chevron-left" | "chevron-right" | "chevron-up" | "chocolate-menu" | "clock" | "comment" | "company" | "compare" | "copy" | "data-cards" | "delete" | "directory" | "doc-download" | "doc" | "download" | "draggable" | "edit" | "enter" | "error-fill" | "error" | "external" | "facebook-fill" | "facebook" | "flag" | "globe" | "infinity" | "info-fill" | "info" | "list-search" | "list" | "loader" | "location" | "locked" | "login" | "logout" | "menu" | "minus" | "notification" | "overflow-menu-horizontal" | "overflow-menu-vertical" | "password" | "pin" | "plus" | "printer" | "question-fill" | "question" | "refresh" | "remove" | "sandglass" | "save" | "settings" | "shopping-cart" | "sort-date" | "star-fill" | "star" | "telegram" | "timer" | "tool" | "truck" | "unlocked" | "upload" | "user-avatar" | "user-group" | "visibility-off" | "visibility-on" | "vk" | "winner" | "workspace" | "youtube";
178
+ active: boolean;
176
179
  isClickable: boolean;
177
180
  }>;
178
181
  export default _sfc_main;
@@ -55,8 +55,8 @@ declare const _sfc_main: import("vue").DefineComponent<{
55
55
  };
56
56
  }>>, {
57
57
  description: string;
58
- size: "xs" | "sm" | "md" | "lg" | "xl";
59
58
  fixed: boolean;
59
+ size: "xs" | "sm" | "md" | "lg" | "xl";
60
60
  overlay: boolean;
61
61
  }>;
62
62
  export default _sfc_main;
@@ -1,6 +1,41 @@
1
1
  import type { PropType } from 'vue';
2
2
  export declare const componentName = "CdsMenu";
3
3
  declare const _sfc_main: import("vue").DefineComponent<{
4
+ transition: {
5
+ type: PropType<string | boolean | (import("vue").TransitionProps & {
6
+ component?: import("vue").Component<any, any, any, import("vue").ComputedOptions, import("vue").MethodOptions> | undefined;
7
+ })>;
8
+ default: string;
9
+ validator: (value: unknown) => boolean;
10
+ };
11
+ height: {
12
+ type: PropType<string | number>;
13
+ default: string;
14
+ };
15
+ maxHeight: {
16
+ type: PropType<string | number>;
17
+ default: string;
18
+ };
19
+ maxWidth: {
20
+ type: PropType<string | number>;
21
+ default: string;
22
+ };
23
+ minHeight: {
24
+ type: PropType<string | number>;
25
+ default: string;
26
+ };
27
+ minWidth: {
28
+ type: PropType<string | number>;
29
+ default: string;
30
+ };
31
+ width: {
32
+ type: PropType<string | number>;
33
+ default: string;
34
+ };
35
+ eager: {
36
+ type: PropType<boolean>;
37
+ default: boolean;
38
+ };
4
39
  scrollStrategy: Omit<{
5
40
  type: PropType<"none" | "close" | "block" | "reposition" | ((data: import("../CdsOverlay/composable").IScrollStrategyData, props: import("../CdsOverlay/composable").IScrollStrategyProps, scope: import("vue").EffectScope) => void)>;
6
41
  default: string;
@@ -84,10 +119,6 @@ declare const _sfc_main: import("vue").DefineComponent<{
84
119
  type: PropType<boolean>;
85
120
  default: boolean;
86
121
  };
87
- eager: {
88
- type: PropType<boolean>;
89
- default: boolean;
90
- };
91
122
  disabled: {
92
123
  type: PropType<boolean>;
93
124
  default: boolean;
@@ -107,6 +138,10 @@ declare const _sfc_main: import("vue").DefineComponent<{
107
138
  type: PropType<boolean>;
108
139
  default: boolean;
109
140
  };
141
+ closeOnBack: {
142
+ type: PropType<boolean>;
143
+ default: boolean;
144
+ };
110
145
  zIndex: {
111
146
  type: PropType<string | number>;
112
147
  default: number;
@@ -132,6 +167,10 @@ declare const _sfc_main: import("vue").DefineComponent<{
132
167
  default: string;
133
168
  validator: (value: unknown) => boolean;
134
169
  };
170
+ eager: {
171
+ type: PropType<boolean>;
172
+ default: boolean;
173
+ };
135
174
  scrollStrategy: {
136
175
  type: PropType<"none" | "close" | "block" | "reposition" | ((data: import("../CdsOverlay/composable").IScrollStrategyData, props: import("../CdsOverlay/composable").IScrollStrategyProps, scope: import("vue").EffectScope) => void)>;
137
176
  default: string;
@@ -220,10 +259,6 @@ declare const _sfc_main: import("vue").DefineComponent<{
220
259
  type: PropType<boolean>;
221
260
  default: boolean;
222
261
  };
223
- eager: {
224
- type: PropType<boolean>;
225
- default: boolean;
226
- };
227
262
  disabled: {
228
263
  type: PropType<boolean>;
229
264
  default: boolean;
@@ -240,6 +275,10 @@ declare const _sfc_main: import("vue").DefineComponent<{
240
275
  type: PropType<boolean>;
241
276
  default: boolean;
242
277
  };
278
+ closeOnBack: {
279
+ type: PropType<boolean>;
280
+ default: boolean;
281
+ };
243
282
  zIndex: {
244
283
  type: PropType<string | number>;
245
284
  default: number;
@@ -262,7 +301,11 @@ declare const _sfc_main: import("vue").DefineComponent<{
262
301
  globalTop: Readonly<import("vue").Ref<boolean>>;
263
302
  localTop: import("vue").ComputedRef<boolean>;
264
303
  updateLocation: import("vue").Ref<((event: Event) => void) | undefined>;
265
- }, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, ("update:modelValue" | "click:outside" | "afterLeave")[], "update:modelValue" | "click:outside" | "afterLeave", import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<{
304
+ }, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {
305
+ 'update:modelValue': (value: boolean) => true;
306
+ 'click:outside': (event: MouseEvent) => true;
307
+ afterLeave: () => true;
308
+ }, string, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<{
266
309
  transition: {
267
310
  type: PropType<string | boolean | (import("vue").TransitionProps & {
268
311
  component?: import("vue").Component<any, any, any, import("vue").ComputedOptions, import("vue").MethodOptions> | undefined;
@@ -270,6 +313,10 @@ declare const _sfc_main: import("vue").DefineComponent<{
270
313
  default: string;
271
314
  validator: (value: unknown) => boolean;
272
315
  };
316
+ eager: {
317
+ type: PropType<boolean>;
318
+ default: boolean;
319
+ };
273
320
  scrollStrategy: {
274
321
  type: PropType<"none" | "close" | "block" | "reposition" | ((data: import("../CdsOverlay/composable").IScrollStrategyData, props: import("../CdsOverlay/composable").IScrollStrategyProps, scope: import("vue").EffectScope) => void)>;
275
322
  default: string;
@@ -358,10 +405,6 @@ declare const _sfc_main: import("vue").DefineComponent<{
358
405
  type: PropType<boolean>;
359
406
  default: boolean;
360
407
  };
361
- eager: {
362
- type: PropType<boolean>;
363
- default: boolean;
364
- };
365
408
  disabled: {
366
409
  type: PropType<boolean>;
367
410
  default: boolean;
@@ -378,6 +421,10 @@ declare const _sfc_main: import("vue").DefineComponent<{
378
421
  type: PropType<boolean>;
379
422
  default: boolean;
380
423
  };
424
+ closeOnBack: {
425
+ type: PropType<boolean>;
426
+ default: boolean;
427
+ };
381
428
  zIndex: {
382
429
  type: PropType<string | number>;
383
430
  default: number;
@@ -395,27 +442,27 @@ declare const _sfc_main: import("vue").DefineComponent<{
395
442
  default: boolean;
396
443
  };
397
444
  }>> & {
398
- onAfterLeave?: ((...args: any[]) => any) | undefined;
399
- "onUpdate:modelValue"?: ((...args: any[]) => any) | undefined;
400
- "onClick:outside"?: ((...args: any[]) => any) | undefined;
445
+ onAfterLeave?: (() => any) | undefined;
446
+ "onUpdate:modelValue"?: ((value: boolean) => any) | undefined;
447
+ "onClick:outside"?: ((event: MouseEvent) => any) | undefined;
401
448
  }, {
402
- location: import('../../utils').TAnchor;
403
449
  disabled: boolean;
450
+ location: import('../../utils').TAnchor;
404
451
  transition: string | boolean | (import("vue").TransitionProps & {
405
452
  component?: import("vue").Component<any, any, any, import("vue").ComputedOptions, import("vue").MethodOptions> | undefined;
406
453
  });
407
454
  origin: import('../../utils').TAnchor | "auto" | "overlap";
408
455
  modelValue: boolean;
409
- activatorProps: Record<string, any>;
410
456
  attach: string | boolean | Element;
411
457
  contained: boolean;
412
- eager: boolean;
413
458
  persistent: boolean;
414
459
  scrim: string | boolean;
460
+ closeOnBack: boolean;
415
461
  zIndex: string | number;
416
462
  contentClasses: string | string[] | Record<string, boolean>;
417
463
  contentProps: Record<string, unknown>;
418
464
  activator: string | import("vue").ComponentPublicInstance<{}, {}, {}, {}, {}, {}, {}, {}, false, import("vue").ComponentOptionsBase<any, any, any, any, any, any, any, any, any, {}, {}, string>, {}> | Element;
465
+ activatorProps: Record<string, any>;
419
466
  openOnClick: boolean | undefined;
420
467
  openOnHover: boolean;
421
468
  openOnFocus: boolean | undefined;
@@ -427,6 +474,7 @@ declare const _sfc_main: import("vue").DefineComponent<{
427
474
  } | undefined);
428
475
  offset: string | number | number[];
429
476
  scrollStrategy: "none" | "close" | "block" | "reposition" | ((data: import("../CdsOverlay/composable").IScrollStrategyData, props: import("../CdsOverlay/composable").IScrollStrategyProps, scope: import("vue").EffectScope) => void);
477
+ eager: boolean;
430
478
  height: string | number;
431
479
  maxHeight: string | number;
432
480
  maxWidth: string | number;
@@ -436,7 +484,48 @@ declare const _sfc_main: import("vue").DefineComponent<{
436
484
  absolute: boolean;
437
485
  }> | undefined>;
438
486
  openChildren: import("vue").Ref<number>;
439
- }, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, "update:modelValue"[], "update:modelValue", import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<{
487
+ }, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {
488
+ /**
489
+ * Событие при изменении значения (v-model)
490
+ * @type { boolean }
491
+ */
492
+ 'update:modelValue': (value: boolean) => true;
493
+ }, string, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<{
494
+ transition: {
495
+ type: PropType<string | boolean | (import("vue").TransitionProps & {
496
+ component?: import("vue").Component<any, any, any, import("vue").ComputedOptions, import("vue").MethodOptions> | undefined;
497
+ })>;
498
+ default: string;
499
+ validator: (value: unknown) => boolean;
500
+ };
501
+ height: {
502
+ type: PropType<string | number>;
503
+ default: string;
504
+ };
505
+ maxHeight: {
506
+ type: PropType<string | number>;
507
+ default: string;
508
+ };
509
+ maxWidth: {
510
+ type: PropType<string | number>;
511
+ default: string;
512
+ };
513
+ minHeight: {
514
+ type: PropType<string | number>;
515
+ default: string;
516
+ };
517
+ minWidth: {
518
+ type: PropType<string | number>;
519
+ default: string;
520
+ };
521
+ width: {
522
+ type: PropType<string | number>;
523
+ default: string;
524
+ };
525
+ eager: {
526
+ type: PropType<boolean>;
527
+ default: boolean;
528
+ };
440
529
  scrollStrategy: Omit<{
441
530
  type: PropType<"none" | "close" | "block" | "reposition" | ((data: import("../CdsOverlay/composable").IScrollStrategyData, props: import("../CdsOverlay/composable").IScrollStrategyProps, scope: import("vue").EffectScope) => void)>;
442
531
  default: string;
@@ -520,10 +609,6 @@ declare const _sfc_main: import("vue").DefineComponent<{
520
609
  type: PropType<boolean>;
521
610
  default: boolean;
522
611
  };
523
- eager: {
524
- type: PropType<boolean>;
525
- default: boolean;
526
- };
527
612
  disabled: {
528
613
  type: PropType<boolean>;
529
614
  default: boolean;
@@ -543,6 +628,10 @@ declare const _sfc_main: import("vue").DefineComponent<{
543
628
  type: PropType<boolean>;
544
629
  default: boolean;
545
630
  };
631
+ closeOnBack: {
632
+ type: PropType<boolean>;
633
+ default: boolean;
634
+ };
546
635
  zIndex: {
547
636
  type: PropType<string | number>;
548
637
  default: number;
@@ -560,23 +649,26 @@ declare const _sfc_main: import("vue").DefineComponent<{
560
649
  default: undefined;
561
650
  };
562
651
  }>> & {
563
- "onUpdate:modelValue"?: ((...args: any[]) => any) | undefined;
652
+ "onUpdate:modelValue"?: ((value: boolean) => any) | undefined;
564
653
  }, {
565
- location: import('../../utils').TAnchor;
566
654
  disabled: boolean;
655
+ location: import('../../utils').TAnchor;
656
+ transition: string | boolean | (import("vue").TransitionProps & {
657
+ component?: import("vue").Component<any, any, any, import("vue").ComputedOptions, import("vue").MethodOptions> | undefined;
658
+ });
567
659
  origin: import('../../utils').TAnchor | "auto" | "overlap";
568
660
  id: string;
569
661
  modelValue: boolean;
570
- activatorProps: Record<string, any>;
571
662
  attach: string | boolean | Element;
572
663
  contained: boolean;
573
- eager: boolean;
574
664
  persistent: boolean;
575
665
  scrim: NonNullable<string | boolean>;
666
+ closeOnBack: boolean;
576
667
  zIndex: string | number;
577
668
  contentClasses: string | string[] | Record<string, boolean>;
578
669
  contentProps: Record<string, unknown>;
579
670
  activator: string | import("vue").ComponentPublicInstance<{}, {}, {}, {}, {}, {}, {}, {}, false, import("vue").ComponentOptionsBase<any, any, any, any, any, any, any, any, any, {}, {}, string>, {}> | Element;
671
+ activatorProps: Record<string, any>;
580
672
  openOnClick: boolean | undefined;
581
673
  openOnHover: boolean;
582
674
  openOnFocus: boolean | undefined;
@@ -588,5 +680,12 @@ declare const _sfc_main: import("vue").DefineComponent<{
588
680
  } | undefined)>;
589
681
  offset: string | number | number[];
590
682
  scrollStrategy: NonNullable<"none" | "close" | "block" | "reposition" | ((data: import("../CdsOverlay/composable").IScrollStrategyData, props: import("../CdsOverlay/composable").IScrollStrategyProps, scope: import("vue").EffectScope) => void)>;
683
+ eager: boolean;
684
+ height: string | number;
685
+ maxHeight: string | number;
686
+ maxWidth: string | number;
687
+ minHeight: string | number;
688
+ minWidth: string | number;
689
+ width: string | number;
591
690
  }>;
592
691
  export default _sfc_main;
@@ -0,0 +1 @@
1
+ export { default as CdsMenu } from './CdsMenu.vue';