@central-design-system/components 3.0.0-alpha.9 → 3.0.0-beta.2

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 (264) hide show
  1. package/dist/cds.css +1 -1
  2. package/dist/cds.d.ts +31 -1
  3. package/dist/cds.es.js +13731 -5362
  4. package/dist/cds.umd.js +18 -1
  5. package/dist/components/CdsAutocomplete/CdsAutocomplete.vue.d.ts +963 -0
  6. package/dist/components/CdsAutocomplete/index.d.ts +1 -0
  7. package/dist/components/CdsBadge/CdsBadge.vue.d.ts +4 -7
  8. package/dist/components/CdsBadge/index.d.ts +1 -0
  9. package/dist/components/CdsBreadcrumbs/CdsBreadcrumbs.vue.d.ts +1 -5
  10. package/dist/components/CdsBreadcrumbs/CdsBreadcrumbsItem.vue.d.ts +1 -6
  11. package/dist/components/CdsButton/CdsButton.vue.d.ts +84 -33
  12. package/dist/components/CdsCheckbox/CdsCheckbox.vue.d.ts +10 -56
  13. package/dist/components/CdsCheckbox/CdsCheckboxGroup.vue.d.ts +8 -8
  14. package/dist/components/CdsCombobox/CdsCombobox.vue.d.ts +687 -588
  15. package/dist/components/CdsCombobox/composable/highlight.d.ts +1 -1
  16. package/dist/components/CdsCombobox/composable/index.d.ts +1 -0
  17. package/dist/components/CdsCombobox/index.d.ts +1 -0
  18. package/dist/components/CdsContainer/CdsContainer.vue.d.ts +205 -0
  19. package/dist/components/CdsContainer/CdsContainerItem.vue.d.ts +123 -0
  20. package/dist/components/CdsContainer/context.d.ts +15 -0
  21. package/dist/components/CdsContainer/index.d.ts +2 -0
  22. package/dist/components/CdsDatePicker/CdsDatePicker.vue.d.ts +13 -46
  23. package/dist/components/CdsDatePicker/index.d.ts +1 -0
  24. package/dist/components/CdsDrawer/CdsDrawer.vue.d.ts +8 -3
  25. package/dist/components/CdsDrawer/index.d.ts +1 -0
  26. package/dist/components/CdsDropdown/CdsDropdown.vue.d.ts +668 -618
  27. package/dist/components/CdsDropdown/composable/index.d.ts +1 -0
  28. package/dist/components/CdsDropdown/composable/scrolling.d.ts +7 -0
  29. package/dist/components/CdsDropdown/index.d.ts +1 -0
  30. package/dist/components/CdsEmptyState/CdsEmptyState.vue.d.ts +4 -4
  31. package/dist/components/CdsEmptyState/index.d.ts +1 -0
  32. package/dist/components/CdsExpandablePanel/CdsExpandablePanel.vue.d.ts +119 -0
  33. package/dist/components/CdsExpandablePanel/CdsExpandablePanelContent.vue.d.ts +15 -0
  34. package/dist/components/CdsExpandablePanel/CdsExpandablePanelTitle.vue.d.ts +55 -0
  35. package/dist/components/CdsExpandablePanel/CdsExpandablePanels.vue.d.ts +115 -0
  36. package/dist/components/CdsExpandablePanel/composable/expandablePanelTitleProps.d.ts +31 -0
  37. package/dist/components/CdsExpandablePanel/composable/expandablePanels.d.ts +16 -0
  38. package/dist/components/CdsExpandablePanel/composable/index.d.ts +1 -0
  39. package/dist/components/CdsExpandablePanel/index.d.ts +4 -0
  40. package/dist/components/CdsFooter/CdsFooter.vue.d.ts +75 -0
  41. package/dist/components/CdsFooter/index.d.ts +1 -0
  42. package/dist/components/CdsForm/CdsForm.vue.d.ts +2 -29
  43. package/dist/components/CdsForm/index.d.ts +1 -0
  44. package/dist/components/CdsGrid/index.d.ts +3 -0
  45. package/dist/components/CdsHeader/CdsHeader.vue.d.ts +75 -0
  46. package/dist/components/CdsHeader/index.d.ts +1 -0
  47. package/dist/components/CdsIcon/CdsIcon.vue.d.ts +3 -3
  48. package/dist/components/CdsInput/CdsInput.vue.d.ts +24 -37
  49. package/dist/components/CdsInput/CdsInputDescription.vue.d.ts +1 -1
  50. package/dist/components/CdsInput/CdsInputLabel.vue.d.ts +1 -1
  51. package/dist/components/CdsInput/CdsInputMessages.vue.d.ts +1 -1
  52. package/dist/components/CdsLayout/CdsLayout.vue.d.ts +36 -0
  53. package/dist/components/CdsLayout/components/LayoutResizeObserver.d.ts +19 -0
  54. package/dist/components/CdsLayout/components/LayoutScrollObserver.d.ts +55 -0
  55. package/dist/components/CdsLayout/components/index.d.ts +2 -0
  56. package/dist/components/CdsLayout/context.d.ts +33 -0
  57. package/dist/components/CdsLayout/index.d.ts +1 -0
  58. package/dist/components/CdsLink/CdsLink.vue.d.ts +1 -1
  59. package/dist/components/CdsList/CdsList.vue.d.ts +21 -11
  60. package/dist/components/CdsList/CdsListGroup.vue.d.ts +8 -8
  61. package/dist/components/CdsList/CdsListItem.vue.d.ts +19 -31
  62. package/dist/components/CdsLoader/CdsLoader.vue.d.ts +1 -1
  63. package/dist/components/CdsMain/CdsMain.vue.d.ts +3 -0
  64. package/dist/components/CdsMain/context.d.ts +4 -0
  65. package/dist/components/CdsMain/index.d.ts +1 -0
  66. package/dist/components/CdsMenu/CdsMenu.vue.d.ts +14 -331
  67. package/dist/components/CdsModal/CdsModal.vue.d.ts +447 -0
  68. package/dist/components/CdsModal/index.d.ts +1 -0
  69. package/dist/components/CdsNotification/CdsNotification.vue.d.ts +155 -0
  70. package/dist/components/CdsNotification/CdsNotificationAlert.vue.d.ts +454 -0
  71. package/dist/components/CdsNotification/composable/index.d.ts +1 -0
  72. package/dist/components/CdsNotification/composable/notification.d.ts +64 -0
  73. package/dist/components/CdsNotification/index.d.ts +2 -0
  74. package/dist/components/CdsOverlay/CdsOverlay.vue.d.ts +14 -11
  75. package/dist/components/CdsOverlay/composable/locationStrategies.d.ts +18 -0
  76. package/dist/components/CdsPage/CdsPage.vue.d.ts +25 -0
  77. package/dist/components/CdsPage/index.d.ts +1 -0
  78. package/dist/components/CdsPagination/CdsPagination.vue.d.ts +3 -8
  79. package/dist/components/CdsPagination/index.d.ts +1 -0
  80. package/dist/components/CdsProgress/CdsProgress.vue.d.ts +145 -0
  81. package/dist/components/CdsProgress/index.d.ts +1 -0
  82. package/dist/components/CdsRadioButton/CdsRadio.vue.d.ts +222 -8
  83. package/dist/components/CdsRadioButton/CdsRadioButton.vue.d.ts +8 -8
  84. package/dist/components/CdsRadioButton/index.d.ts +2 -0
  85. package/dist/components/CdsSelect/CdsSelect.vue.d.ts +121 -115
  86. package/dist/components/CdsSelect/index.d.ts +1 -0
  87. package/dist/components/CdsSidebar/CdsSidebar.vue.d.ts +8 -2
  88. package/dist/components/CdsSidebar/index.d.ts +1 -0
  89. package/dist/components/CdsSkeletonLoader/CdsSkeletonLoader.vue.d.ts +121 -0
  90. package/dist/components/CdsSkeletonLoader/index.d.ts +1 -0
  91. package/dist/components/CdsSkeletonLoader/types.d.ts +37 -0
  92. package/dist/components/CdsSlideGroup/CdsSlideGroup.vue.d.ts +162 -0
  93. package/dist/components/CdsSlideGroup/CdsSlideGroupItem.vue.d.ts +43 -0
  94. package/dist/components/CdsSlideGroup/index.d.ts +2 -0
  95. package/dist/components/CdsSlideGroup/utils/calculate.d.ts +14 -0
  96. package/dist/components/CdsSlideGroup/utils/index.d.ts +1 -0
  97. package/dist/components/CdsStages/index.d.ts +1 -0
  98. package/dist/components/CdsStatus/index.d.ts +1 -0
  99. package/dist/components/CdsSteps/CdsSteps.vue.d.ts +163 -0
  100. package/dist/components/CdsSteps/CdsStepsItem.vue.d.ts +84 -0
  101. package/dist/components/CdsSteps/context.d.ts +11 -0
  102. package/dist/components/CdsSteps/index.d.ts +2 -0
  103. package/dist/components/CdsSteps/svg/_CdsStepCurrentIcon.vue.d.ts +2 -0
  104. package/dist/components/CdsSteps/svg/_CdsStepsIconIncomplete.vue.d.ts +2 -0
  105. package/dist/components/CdsTable/CdsTable.vue.d.ts +1162 -0
  106. package/dist/components/CdsTable/CdsTableColumn.vue.d.ts +10 -0
  107. package/dist/components/CdsTable/CdsTableColumnGroup.vue.d.ts +10 -0
  108. package/dist/components/CdsTable/components/Body/Body.d.ts +12 -0
  109. package/dist/components/CdsTable/components/Body/BodyRow.d.ts +22 -0
  110. package/dist/components/CdsTable/components/Body/ExpandedRow.d.ts +13 -0
  111. package/dist/components/CdsTable/components/Body/index.d.ts +1 -0
  112. package/dist/components/CdsTable/components/Cell/Cell.d.ts +34 -0
  113. package/dist/components/CdsTable/components/Cell/MeasureCell.d.ts +7 -0
  114. package/dist/components/CdsTable/components/Cell/index.d.ts +2 -0
  115. package/dist/components/CdsTable/components/ColGroup/ColGroup.d.ts +8 -0
  116. package/dist/components/CdsTable/components/ColGroup/index.d.ts +1 -0
  117. package/dist/components/CdsTable/components/Filter/FilterDropdown.d.ts +14 -0
  118. package/dist/components/CdsTable/components/Filter/FilterSearch.d.ts +9 -0
  119. package/dist/components/CdsTable/components/Filter/FilterWrapper.d.ts +4 -0
  120. package/dist/components/CdsTable/components/Filter/index.d.ts +1 -0
  121. package/dist/components/CdsTable/components/FixedHolder/FixedHolder.d.ts +21 -0
  122. package/dist/components/CdsTable/components/FixedHolder/index.d.ts +1 -0
  123. package/dist/components/CdsTable/components/Footer/Footer.d.ts +8 -0
  124. package/dist/components/CdsTable/components/Footer/index.d.ts +1 -0
  125. package/dist/components/CdsTable/components/Header/DragHandle.d.ts +44 -0
  126. package/dist/components/CdsTable/components/Header/Header.d.ts +11 -0
  127. package/dist/components/CdsTable/components/Header/HeaderRow.d.ts +15 -0
  128. package/dist/components/CdsTable/components/Header/index.d.ts +1 -0
  129. package/dist/components/CdsTable/components/Icons/ExpandIcon.d.ts +12 -0
  130. package/dist/components/CdsTable/components/Panel/Panel.d.ts +4 -0
  131. package/dist/components/CdsTable/components/Panel/index.d.ts +1 -0
  132. package/dist/components/CdsTable/components/ResizeObserver/ResizeObserver.d.ts +11 -0
  133. package/dist/components/CdsTable/components/ResizeObserver/index.d.ts +1 -0
  134. package/dist/components/CdsTable/components/StickyScrollbar/StickyScrollbar.d.ts +15 -0
  135. package/dist/components/CdsTable/components/StickyScrollbar/index.d.ts +1 -0
  136. package/dist/components/CdsTable/components/Table/InternalTable.d.ts +1154 -0
  137. package/dist/components/CdsTable/components/TableProvider.d.ts +1147 -0
  138. package/dist/components/CdsTable/composable/columns.d.ts +28 -0
  139. package/dist/components/CdsTable/composable/filter.d.ts +16 -0
  140. package/dist/components/CdsTable/composable/flat.d.ts +17 -0
  141. package/dist/components/CdsTable/composable/frame.d.ts +6 -0
  142. package/dist/components/CdsTable/composable/index.d.ts +10 -0
  143. package/dist/components/CdsTable/composable/pagination.d.ts +18 -0
  144. package/dist/components/CdsTable/composable/selection.d.ts +23 -0
  145. package/dist/components/CdsTable/composable/sorter.d.ts +21 -0
  146. package/dist/components/CdsTable/composable/sticky.d.ts +12 -0
  147. package/dist/components/CdsTable/composable/table.d.ts +649 -0
  148. package/dist/components/CdsTable/constants.d.ts +2 -0
  149. package/dist/components/CdsTable/context/body.d.ts +19 -0
  150. package/dist/components/CdsTable/context/expandedRow.d.ts +10 -0
  151. package/dist/components/CdsTable/context/hover.d.ts +9 -0
  152. package/dist/components/CdsTable/context/index.d.ts +8 -0
  153. package/dist/components/CdsTable/context/resize.d.ts +9 -0
  154. package/dist/components/CdsTable/context/slots.d.ts +17 -0
  155. package/dist/components/CdsTable/context/sticky.d.ts +2 -0
  156. package/dist/components/CdsTable/context/summary.d.ts +14 -0
  157. package/dist/components/CdsTable/context/table.d.ts +20 -0
  158. package/dist/components/CdsTable/index.d.ts +6 -0
  159. package/dist/components/CdsTable/interface.d.ts +323 -0
  160. package/dist/components/CdsTable/utils/column.d.ts +7 -0
  161. package/dist/components/CdsTable/utils/expand.d.ts +2 -0
  162. package/dist/components/CdsTable/utils/fixed.d.ts +13 -0
  163. package/dist/components/CdsTable/utils/index.d.ts +5 -0
  164. package/dist/components/CdsTable/utils/listener.d.ts +5 -0
  165. package/dist/components/CdsTable/utils/value.d.ts +10 -0
  166. package/dist/components/CdsTabs/CdsTab.vue.d.ts +132 -0
  167. package/dist/components/CdsTabs/CdsTabs.vue.d.ts +225 -0
  168. package/dist/components/CdsTabs/index.d.ts +2 -0
  169. package/dist/components/CdsTabs/shared.d.ts +3 -0
  170. package/dist/components/CdsTabs/utils/helpers.d.ts +2 -0
  171. package/dist/components/CdsTabs/utils/index.d.ts +1 -0
  172. package/dist/components/CdsTag/CdsTag.vue.d.ts +2 -2
  173. package/dist/components/CdsTextArea/CdsTextArea.vue.d.ts +102 -104
  174. package/dist/components/CdsTextArea/index.d.ts +1 -0
  175. package/dist/components/CdsTextInput/CdsTextInput.vue.d.ts +137 -139
  176. package/dist/components/CdsTimePicker/CdsTimePicker.vue.d.ts +10 -37
  177. package/dist/components/CdsTimePicker/index.d.ts +1 -0
  178. package/dist/components/CdsToggle/CdsToggle.vue.d.ts +192 -0
  179. package/dist/components/CdsToggle/index.d.ts +1 -0
  180. package/dist/components/CdsToolbar/CdsToolbar.vue.d.ts +45 -0
  181. package/dist/components/CdsToolbar/CdsToolbarTitle.vue.d.ts +18 -0
  182. package/dist/components/CdsToolbar/index.d.ts +2 -0
  183. package/dist/components/CdsTooltip/CdsTooltip.vue.d.ts +15 -331
  184. package/dist/components/CdsTooltip/index.d.ts +1 -0
  185. package/dist/components/CdsTree/composable/index.d.ts +1 -0
  186. package/dist/components/CdsTree/composable/tree.d.ts +6 -0
  187. package/dist/components/CdsTree/interface.d.ts +60 -0
  188. package/dist/components/CdsTree/utils/conduct.d.ts +11 -0
  189. package/dist/components/CdsTree/utils/data.d.ts +36 -0
  190. package/dist/components/CdsTree/utils/index.d.ts +2 -0
  191. package/dist/components/CdsUploader/CdsUploader.vue.d.ts +525 -0
  192. package/dist/components/CdsUploader/components/AjaxUploader.d.ts +342 -0
  193. package/dist/components/CdsUploader/components/UploadList/ListItem.d.ts +400 -0
  194. package/dist/components/CdsUploader/components/UploadList/UploadList.d.ts +403 -0
  195. package/dist/components/CdsUploader/components/index.d.ts +2 -0
  196. package/dist/components/CdsUploader/composable/index.d.ts +2 -0
  197. package/dist/components/CdsUploader/composable/request.d.ts +4 -0
  198. package/dist/components/CdsUploader/composable/upload.d.ts +360 -0
  199. package/dist/components/CdsUploader/index.d.ts +1 -0
  200. package/dist/components/CdsUploader/interface.d.ts +98 -0
  201. package/dist/components/CdsUploader/utils/accept.d.ts +2 -0
  202. package/dist/components/CdsUploader/utils/helpers.d.ts +5 -0
  203. package/dist/components/CdsUploader/utils/index.d.ts +4 -0
  204. package/dist/components/CdsUploader/utils/traverseFileTree.d.ts +14 -0
  205. package/dist/components/CdsUploader/utils/uid.d.ts +1 -0
  206. package/dist/components/index.d.ts +79 -1
  207. package/dist/composable/align.d.ts +17 -0
  208. package/dist/composable/datetime.d.ts +2 -18
  209. package/dist/composable/display.d.ts +3 -0
  210. package/dist/composable/field.d.ts +19 -3
  211. package/dist/composable/filter.d.ts +2 -2
  212. package/dist/composable/group.d.ts +139 -0
  213. package/dist/composable/icon.d.ts +2 -2
  214. package/dist/composable/index.d.ts +8 -0
  215. package/dist/composable/input.d.ts +1 -1
  216. package/dist/composable/intersectionObserver.d.ts +4 -0
  217. package/dist/composable/items.d.ts +6 -0
  218. package/dist/composable/layout.d.ts +79 -0
  219. package/dist/composable/locale.d.ts +18 -0
  220. package/dist/composable/nested/nested.d.ts +1 -2
  221. package/dist/composable/overlay.d.ts +8 -0
  222. package/dist/composable/resizeObserver.d.ts +1 -1
  223. package/dist/composable/select.d.ts +100 -15
  224. package/dist/composable/ssrBoot.d.ts +6 -0
  225. package/dist/composable/state.d.ts +13 -0
  226. package/dist/composable/status.d.ts +5 -1
  227. package/dist/composable/text.d.ts +3 -1
  228. package/dist/composable/variant.d.ts +26 -0
  229. package/dist/create.d.ts +2 -0
  230. package/dist/directives/index.d.ts +1 -0
  231. package/dist/directives/touch/index.d.ts +46 -0
  232. package/dist/globals.d.ts +5 -0
  233. package/dist/locale/en.d.ts +3 -0
  234. package/dist/locale/index.d.ts +23 -10
  235. package/dist/transitions/index.d.ts +61 -0
  236. package/dist/transitions/modalTransition.d.ts +8 -0
  237. package/dist/utils/{date.d.ts → date/date.d.ts} +10 -2
  238. package/dist/utils/dom/classNames.d.ts +4 -0
  239. package/dist/utils/dom/dom.d.ts +11 -0
  240. package/dist/utils/dom/getScrollParent.d.ts +16 -0
  241. package/dist/utils/dom/hRender.d.ts +9 -0
  242. package/dist/utils/dom/scrollTo.d.ts +10 -0
  243. package/dist/utils/dom/warn.d.ts +1 -0
  244. package/dist/utils/dom/wrapperRaf.d.ts +4 -0
  245. package/dist/utils/helpers.d.ts +63 -2
  246. package/dist/utils/index.d.ts +18 -9
  247. package/dist/utils/use/copyToClipboard.d.ts +1 -0
  248. package/dist/utils/use/eagerComputed.d.ts +3 -0
  249. package/dist/utils/use/pickAttrs.d.ts +11 -0
  250. package/dist/utils/use/reactiveComputed.d.ts +4 -0
  251. package/dist/utils/use/reactivePick.d.ts +8 -0
  252. package/dist/utils/use/toReactive.d.ts +8 -0
  253. package/dist/utils/use/toValue.d.ts +5 -0
  254. package/package.json +8 -4
  255. package/src/scss/modules/_reset.scss +5 -0
  256. package/src/scss/modules/_transition.scss +72 -1
  257. package/src/scss/themes/index.ts +1 -1
  258. package/dist/utils/dom.d.ts +0 -6
  259. package/dist/utils/getScrollParent.d.ts +0 -3
  260. /package/dist/utils/{anchor.d.ts → dom/anchor.d.ts} +0 -0
  261. /package/dist/utils/{animation.d.ts → dom/animation.d.ts} +0 -0
  262. /package/dist/utils/{box.d.ts → dom/box.d.ts} +0 -0
  263. /package/dist/utils/{globals.d.ts → dom/globals.d.ts} +0 -0
  264. /package/dist/utils/{cache.d.ts → use/cache.d.ts} +0 -0
@@ -0,0 +1,454 @@
1
+ import { PropType } from 'vue';
2
+ export declare const componentName = "CdsNotificationAlert";
3
+ declare const _sfc_main: import("vue").DefineComponent<{
4
+ transition: Omit<{
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
+ }, "default" | "type"> & {
11
+ type: PropType<NonNullable<string | boolean | (import("vue").TransitionProps & {
12
+ component?: import("vue").Component<any, any, any, import("vue").ComputedOptions, import("vue").MethodOptions> | undefined;
13
+ })>>;
14
+ default: NonNullable<string | boolean | (import("vue").TransitionProps & {
15
+ component?: import("vue").Component<any, any, any, import("vue").ComputedOptions, import("vue").MethodOptions> | undefined;
16
+ })>;
17
+ };
18
+ locationStrategy: {
19
+ type: PropType<"static" | "connected" | ((data: import("../CdsOverlay/composable").ILocationStrategyData, props: import("../CdsOverlay/composable").ILocationStrategyProps, contentStyles: import("vue").Ref<Record<string, string>>) => {
20
+ updateLocation: (event: Event) => void;
21
+ } | undefined)>;
22
+ default: string;
23
+ validator: (value: any) => boolean;
24
+ };
25
+ location: Omit<{
26
+ type: PropType<import('../../utils').TAnchor>;
27
+ default: string;
28
+ }, "default" | "type"> & {
29
+ type: PropType<NonNullable<import('../../utils').TAnchor>>;
30
+ default: NonNullable<import('../../utils').TAnchor>;
31
+ };
32
+ origin: {
33
+ type: PropType<import('../../utils').TAnchor | "auto" | "overlap">;
34
+ default: string;
35
+ };
36
+ offset: {
37
+ type: PropType<string | number | number[]>;
38
+ default: null;
39
+ };
40
+ height: {
41
+ type: PropType<string | number>;
42
+ default: string;
43
+ };
44
+ width: {
45
+ type: PropType<string | number>;
46
+ default: string;
47
+ };
48
+ maxHeight: {
49
+ type: PropType<string | number>;
50
+ default: string;
51
+ };
52
+ maxWidth: {
53
+ type: PropType<string | number>;
54
+ default: string;
55
+ };
56
+ minHeight: {
57
+ type: PropType<string | number>;
58
+ default: string;
59
+ };
60
+ minWidth: {
61
+ type: PropType<string | number>;
62
+ default: string;
63
+ };
64
+ closeDelay: {
65
+ type: PropType<string | number>;
66
+ default: null;
67
+ };
68
+ openDelay: {
69
+ type: PropType<string | number>;
70
+ default: null;
71
+ };
72
+ eager: {
73
+ type: PropType<boolean>;
74
+ default: boolean;
75
+ };
76
+ activator: {
77
+ type: PropType<string | import("vue").ComponentPublicInstance<{}, {}, {}, {}, {}, {}, {}, {}, false, import("vue").ComponentOptionsBase<any, any, any, any, any, any, any, any, any, {}, {}, string>, {}> | Element>;
78
+ default: null;
79
+ };
80
+ activatorProps: {
81
+ type: PropType<Record<string, any>>;
82
+ default: () => {};
83
+ };
84
+ openOnClick: {
85
+ type: PropType<boolean | undefined>;
86
+ default: undefined;
87
+ };
88
+ openOnHover: {
89
+ type: PropType<boolean>;
90
+ default: boolean;
91
+ };
92
+ openOnFocus: {
93
+ type: PropType<boolean | undefined>;
94
+ default: undefined;
95
+ };
96
+ closeOnContentClick: {
97
+ type: PropType<boolean>;
98
+ default: boolean;
99
+ };
100
+ attach: {
101
+ type: PropType<string | boolean | Element>;
102
+ default: boolean;
103
+ };
104
+ contained: {
105
+ type: PropType<boolean>;
106
+ default: boolean;
107
+ };
108
+ disabled: {
109
+ type: PropType<boolean>;
110
+ default: boolean;
111
+ };
112
+ persistent: {
113
+ type: PropType<boolean>;
114
+ default: boolean;
115
+ };
116
+ scrim: {
117
+ type: PropType<string | boolean>;
118
+ default: boolean;
119
+ };
120
+ modelValue: {
121
+ type: PropType<boolean>;
122
+ default: boolean;
123
+ };
124
+ closeOnBack: {
125
+ type: PropType<boolean>;
126
+ default: boolean;
127
+ };
128
+ zIndex: {
129
+ type: PropType<string | number>;
130
+ default: number;
131
+ };
132
+ contentClasses: {
133
+ type: PropType<string | string[] | Record<string, boolean>>;
134
+ default: null;
135
+ };
136
+ contentProps: {
137
+ type: PropType<Record<string, unknown>>;
138
+ default: () => {};
139
+ };
140
+ noClickAnimation: {
141
+ type: PropType<boolean>;
142
+ default: boolean;
143
+ };
144
+ locale: {
145
+ type: PropType<"ru" | "en" | import("../../locale").ILocale>;
146
+ default: undefined;
147
+ };
148
+ tag: {
149
+ type: PropType<string>;
150
+ default: string;
151
+ description: string;
152
+ };
153
+ status: {
154
+ type: PropType<"error" | "info" | "success" | "warning" | "progress">;
155
+ default: string;
156
+ available: readonly ["info", "success", "warning", "error", "progress"];
157
+ description: string;
158
+ validator: (value: "error" | "info" | "success" | "warning" | "progress") => boolean;
159
+ };
160
+ variant: {
161
+ type: PropType<any>;
162
+ default: string;
163
+ validator: (value: "default" | "important") => boolean;
164
+ };
165
+ icon: {
166
+ type: PropType<false | "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" | "source" | "star-fill" | "star" | "telegram" | "timer" | "tool" | "truck" | "unlocked" | "upload" | "user-avatar" | "user-group" | "visibility-off" | "visibility-on" | "vk" | "winner" | "workspace" | "youtube">;
167
+ default: null;
168
+ };
169
+ customIcon: {
170
+ 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" | "source" | "star-fill" | "star" | "telegram" | "timer" | "tool" | "truck" | "unlocked" | "upload" | "user-avatar" | "user-group" | "visibility-off" | "visibility-on" | "vk" | "winner" | "workspace" | "youtube" | undefined>;
171
+ default: undefined;
172
+ 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" | "source" | "star-fill" | "star" | "telegram" | "timer" | "tool" | "truck" | "unlocked" | "upload" | "user-avatar" | "user-group" | "visibility-off" | "visibility-on" | "vk" | "winner" | "workspace" | "youtube" | undefined) => boolean;
173
+ };
174
+ closable: {
175
+ type: BooleanConstructor;
176
+ default: boolean;
177
+ };
178
+ closeLabel: {
179
+ type: PropType<string>;
180
+ default: string;
181
+ };
182
+ closeIcon: {
183
+ 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" | "source" | "star-fill" | "star" | "telegram" | "timer" | "tool" | "truck" | "unlocked" | "upload" | "user-avatar" | "user-group" | "visibility-off" | "visibility-on" | "vk" | "winner" | "workspace" | "youtube">;
184
+ default: string;
185
+ 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" | "source" | "star-fill" | "star" | "telegram" | "timer" | "tool" | "truck" | "unlocked" | "upload" | "user-avatar" | "user-group" | "visibility-off" | "visibility-on" | "vk" | "winner" | "workspace" | "youtube") => boolean;
186
+ };
187
+ text: {
188
+ type: PropType<string>;
189
+ default: undefined;
190
+ };
191
+ title: {
192
+ type: PropType<string>;
193
+ default: string;
194
+ };
195
+ /**
196
+ * Время (мс) через которое уведомление будет закрыто
197
+ */
198
+ timeout: {
199
+ type: PropType<string | number>;
200
+ default: number;
201
+ };
202
+ }, {}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {
203
+ 'update:modelValue': (value: boolean) => true;
204
+ }, string, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<{
205
+ transition: Omit<{
206
+ type: PropType<string | boolean | (import("vue").TransitionProps & {
207
+ component?: import("vue").Component<any, any, any, import("vue").ComputedOptions, import("vue").MethodOptions> | undefined;
208
+ })>;
209
+ default: string;
210
+ validator: (value: unknown) => boolean;
211
+ }, "default" | "type"> & {
212
+ type: PropType<NonNullable<string | boolean | (import("vue").TransitionProps & {
213
+ component?: import("vue").Component<any, any, any, import("vue").ComputedOptions, import("vue").MethodOptions> | undefined;
214
+ })>>;
215
+ default: NonNullable<string | boolean | (import("vue").TransitionProps & {
216
+ component?: import("vue").Component<any, any, any, import("vue").ComputedOptions, import("vue").MethodOptions> | undefined;
217
+ })>;
218
+ };
219
+ locationStrategy: {
220
+ type: PropType<"static" | "connected" | ((data: import("../CdsOverlay/composable").ILocationStrategyData, props: import("../CdsOverlay/composable").ILocationStrategyProps, contentStyles: import("vue").Ref<Record<string, string>>) => {
221
+ updateLocation: (event: Event) => void;
222
+ } | undefined)>;
223
+ default: string;
224
+ validator: (value: any) => boolean;
225
+ };
226
+ location: Omit<{
227
+ type: PropType<import('../../utils').TAnchor>;
228
+ default: string;
229
+ }, "default" | "type"> & {
230
+ type: PropType<NonNullable<import('../../utils').TAnchor>>;
231
+ default: NonNullable<import('../../utils').TAnchor>;
232
+ };
233
+ origin: {
234
+ type: PropType<import('../../utils').TAnchor | "auto" | "overlap">;
235
+ default: string;
236
+ };
237
+ offset: {
238
+ type: PropType<string | number | number[]>;
239
+ default: null;
240
+ };
241
+ height: {
242
+ type: PropType<string | number>;
243
+ default: string;
244
+ };
245
+ width: {
246
+ type: PropType<string | number>;
247
+ default: string;
248
+ };
249
+ maxHeight: {
250
+ type: PropType<string | number>;
251
+ default: string;
252
+ };
253
+ maxWidth: {
254
+ type: PropType<string | number>;
255
+ default: string;
256
+ };
257
+ minHeight: {
258
+ type: PropType<string | number>;
259
+ default: string;
260
+ };
261
+ minWidth: {
262
+ type: PropType<string | number>;
263
+ default: string;
264
+ };
265
+ closeDelay: {
266
+ type: PropType<string | number>;
267
+ default: null;
268
+ };
269
+ openDelay: {
270
+ type: PropType<string | number>;
271
+ default: null;
272
+ };
273
+ eager: {
274
+ type: PropType<boolean>;
275
+ default: boolean;
276
+ };
277
+ activator: {
278
+ type: PropType<string | import("vue").ComponentPublicInstance<{}, {}, {}, {}, {}, {}, {}, {}, false, import("vue").ComponentOptionsBase<any, any, any, any, any, any, any, any, any, {}, {}, string>, {}> | Element>;
279
+ default: null;
280
+ };
281
+ activatorProps: {
282
+ type: PropType<Record<string, any>>;
283
+ default: () => {};
284
+ };
285
+ openOnClick: {
286
+ type: PropType<boolean | undefined>;
287
+ default: undefined;
288
+ };
289
+ openOnHover: {
290
+ type: PropType<boolean>;
291
+ default: boolean;
292
+ };
293
+ openOnFocus: {
294
+ type: PropType<boolean | undefined>;
295
+ default: undefined;
296
+ };
297
+ closeOnContentClick: {
298
+ type: PropType<boolean>;
299
+ default: boolean;
300
+ };
301
+ attach: {
302
+ type: PropType<string | boolean | Element>;
303
+ default: boolean;
304
+ };
305
+ contained: {
306
+ type: PropType<boolean>;
307
+ default: boolean;
308
+ };
309
+ disabled: {
310
+ type: PropType<boolean>;
311
+ default: boolean;
312
+ };
313
+ persistent: {
314
+ type: PropType<boolean>;
315
+ default: boolean;
316
+ };
317
+ scrim: {
318
+ type: PropType<string | boolean>;
319
+ default: boolean;
320
+ };
321
+ modelValue: {
322
+ type: PropType<boolean>;
323
+ default: boolean;
324
+ };
325
+ closeOnBack: {
326
+ type: PropType<boolean>;
327
+ default: boolean;
328
+ };
329
+ zIndex: {
330
+ type: PropType<string | number>;
331
+ default: number;
332
+ };
333
+ contentClasses: {
334
+ type: PropType<string | string[] | Record<string, boolean>>;
335
+ default: null;
336
+ };
337
+ contentProps: {
338
+ type: PropType<Record<string, unknown>>;
339
+ default: () => {};
340
+ };
341
+ noClickAnimation: {
342
+ type: PropType<boolean>;
343
+ default: boolean;
344
+ };
345
+ locale: {
346
+ type: PropType<"ru" | "en" | import("../../locale").ILocale>;
347
+ default: undefined;
348
+ };
349
+ tag: {
350
+ type: PropType<string>;
351
+ default: string;
352
+ description: string;
353
+ };
354
+ status: {
355
+ type: PropType<"error" | "info" | "success" | "warning" | "progress">;
356
+ default: string;
357
+ available: readonly ["info", "success", "warning", "error", "progress"];
358
+ description: string;
359
+ validator: (value: "error" | "info" | "success" | "warning" | "progress") => boolean;
360
+ };
361
+ variant: {
362
+ type: PropType<any>;
363
+ default: string;
364
+ validator: (value: "default" | "important") => boolean;
365
+ };
366
+ icon: {
367
+ type: PropType<false | "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" | "source" | "star-fill" | "star" | "telegram" | "timer" | "tool" | "truck" | "unlocked" | "upload" | "user-avatar" | "user-group" | "visibility-off" | "visibility-on" | "vk" | "winner" | "workspace" | "youtube">;
368
+ default: null;
369
+ };
370
+ customIcon: {
371
+ 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" | "source" | "star-fill" | "star" | "telegram" | "timer" | "tool" | "truck" | "unlocked" | "upload" | "user-avatar" | "user-group" | "visibility-off" | "visibility-on" | "vk" | "winner" | "workspace" | "youtube" | undefined>;
372
+ default: undefined;
373
+ 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" | "source" | "star-fill" | "star" | "telegram" | "timer" | "tool" | "truck" | "unlocked" | "upload" | "user-avatar" | "user-group" | "visibility-off" | "visibility-on" | "vk" | "winner" | "workspace" | "youtube" | undefined) => boolean;
374
+ };
375
+ closable: {
376
+ type: BooleanConstructor;
377
+ default: boolean;
378
+ };
379
+ closeLabel: {
380
+ type: PropType<string>;
381
+ default: string;
382
+ };
383
+ closeIcon: {
384
+ 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" | "source" | "star-fill" | "star" | "telegram" | "timer" | "tool" | "truck" | "unlocked" | "upload" | "user-avatar" | "user-group" | "visibility-off" | "visibility-on" | "vk" | "winner" | "workspace" | "youtube">;
385
+ default: string;
386
+ 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" | "source" | "star-fill" | "star" | "telegram" | "timer" | "tool" | "truck" | "unlocked" | "upload" | "user-avatar" | "user-group" | "visibility-off" | "visibility-on" | "vk" | "winner" | "workspace" | "youtube") => boolean;
387
+ };
388
+ text: {
389
+ type: PropType<string>;
390
+ default: undefined;
391
+ };
392
+ title: {
393
+ type: PropType<string>;
394
+ default: string;
395
+ };
396
+ /**
397
+ * Время (мс) через которое уведомление будет закрыто
398
+ */
399
+ timeout: {
400
+ type: PropType<string | number>;
401
+ default: number;
402
+ };
403
+ }>> & {
404
+ "onUpdate:modelValue"?: ((value: boolean) => any) | undefined;
405
+ }, {
406
+ title: string;
407
+ tag: string;
408
+ disabled: boolean;
409
+ location: NonNullable<import('../../utils').TAnchor>;
410
+ text: string;
411
+ modelValue: boolean;
412
+ locale: "ru" | "en" | import("../../locale").ILocale;
413
+ icon: false | "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" | "source" | "star-fill" | "star" | "telegram" | "timer" | "tool" | "truck" | "unlocked" | "upload" | "user-avatar" | "user-group" | "visibility-off" | "visibility-on" | "vk" | "winner" | "workspace" | "youtube";
414
+ eager: boolean;
415
+ transition: NonNullable<string | boolean | (import("vue").TransitionProps & {
416
+ component?: import("vue").Component<any, any, any, import("vue").ComputedOptions, import("vue").MethodOptions> | undefined;
417
+ })>;
418
+ attach: string | boolean | Element;
419
+ contained: boolean;
420
+ persistent: boolean;
421
+ scrim: string | boolean;
422
+ closeOnBack: boolean;
423
+ zIndex: string | number;
424
+ contentClasses: string | string[] | Record<string, boolean>;
425
+ contentProps: Record<string, unknown>;
426
+ noClickAnimation: boolean;
427
+ activator: string | import("vue").ComponentPublicInstance<{}, {}, {}, {}, {}, {}, {}, {}, false, import("vue").ComponentOptionsBase<any, any, any, any, any, any, any, any, any, {}, {}, string>, {}> | Element;
428
+ activatorProps: Record<string, any>;
429
+ openOnClick: boolean | undefined;
430
+ openOnHover: boolean;
431
+ openOnFocus: boolean | undefined;
432
+ closeOnContentClick: boolean;
433
+ closeDelay: string | number;
434
+ openDelay: string | number;
435
+ locationStrategy: "static" | "connected" | ((data: import("../CdsOverlay/composable").ILocationStrategyData, props: import("../CdsOverlay/composable").ILocationStrategyProps, contentStyles: import("vue").Ref<Record<string, string>>) => {
436
+ updateLocation: (event: Event) => void;
437
+ } | undefined);
438
+ origin: import('../../utils').TAnchor | "auto" | "overlap";
439
+ offset: string | number | number[];
440
+ height: string | number;
441
+ width: string | number;
442
+ maxHeight: string | number;
443
+ maxWidth: string | number;
444
+ minHeight: string | number;
445
+ minWidth: string | number;
446
+ variant: any;
447
+ customIcon: "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" | "source" | "star-fill" | "star" | "telegram" | "timer" | "tool" | "truck" | "unlocked" | "upload" | "user-avatar" | "user-group" | "visibility-off" | "visibility-on" | "vk" | "winner" | "workspace" | "youtube" | undefined;
448
+ closable: boolean;
449
+ closeLabel: string;
450
+ closeIcon: "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" | "source" | "star-fill" | "star" | "telegram" | "timer" | "tool" | "truck" | "unlocked" | "upload" | "user-avatar" | "user-group" | "visibility-off" | "visibility-on" | "vk" | "winner" | "workspace" | "youtube";
451
+ status: "error" | "info" | "success" | "warning" | "progress";
452
+ timeout: string | number;
453
+ }>;
454
+ export default _sfc_main;
@@ -0,0 +1 @@
1
+ export * from './notification';
@@ -0,0 +1,64 @@
1
+ import { ComputedRef } from 'vue';
2
+ import type { TCdsIconsName } from '@central-design-system/icons';
3
+ import type { PropType } from 'vue';
4
+ import type { TStatus } from '../../../composable';
5
+ export declare type TNotificationLocale = {
6
+ closeLabel?: string;
7
+ };
8
+ export interface INotificationProps {
9
+ closable?: boolean;
10
+ customIcon?: TCdsIconsName;
11
+ closeLabel?: string;
12
+ closeIcon?: TCdsIconsName;
13
+ status: TStatus;
14
+ icon?: TCdsIconsName | false;
15
+ }
16
+ export interface IUseNotification {
17
+ icon: ComputedRef<TCdsIconsName | undefined>;
18
+ }
19
+ export declare const makeNotificationProps: <Defaults extends {
20
+ icon?: unknown;
21
+ customIcon?: unknown;
22
+ closable?: unknown;
23
+ closeLabel?: unknown;
24
+ closeIcon?: unknown;
25
+ } = {}>(defaults?: Defaults | undefined) => import('../../../utils').AppendDefault<{
26
+ /**
27
+ * Иконка
28
+ */
29
+ icon: {
30
+ type: PropType<false | "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" | "source" | "star-fill" | "star" | "telegram" | "timer" | "tool" | "truck" | "unlocked" | "upload" | "user-avatar" | "user-group" | "visibility-off" | "visibility-on" | "vk" | "winner" | "workspace" | "youtube">;
31
+ default: null;
32
+ };
33
+ /**
34
+ * Своя иконка
35
+ */
36
+ customIcon: {
37
+ 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" | "source" | "star-fill" | "star" | "telegram" | "timer" | "tool" | "truck" | "unlocked" | "upload" | "user-avatar" | "user-group" | "visibility-off" | "visibility-on" | "vk" | "winner" | "workspace" | "youtube" | undefined>;
38
+ default: undefined;
39
+ validator: (value?: TCdsIconsName) => boolean;
40
+ };
41
+ /**
42
+ * Кнопка закрытия
43
+ */
44
+ closable: {
45
+ type: BooleanConstructor;
46
+ default: boolean;
47
+ };
48
+ /**
49
+ * Лейбл кнопки закрытия
50
+ */
51
+ closeLabel: {
52
+ type: PropType<string>;
53
+ default: string;
54
+ };
55
+ /**
56
+ * Иконка кнопки закрытия
57
+ */
58
+ closeIcon: {
59
+ 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" | "source" | "star-fill" | "star" | "telegram" | "timer" | "tool" | "truck" | "unlocked" | "upload" | "user-avatar" | "user-group" | "visibility-off" | "visibility-on" | "vk" | "winner" | "workspace" | "youtube">;
60
+ default: string;
61
+ validator: (value: TCdsIconsName) => boolean;
62
+ };
63
+ }, Defaults>;
64
+ export declare function useNotification(props: INotificationProps): IUseNotification;
@@ -0,0 +1,2 @@
1
+ export { default as CdsNotification } from './CdsNotification.vue';
2
+ export { default as CdsNotificationAlert } from './CdsNotificationAlert.vue';
@@ -132,6 +132,10 @@ declare const _sfc_main: import("vue").DefineComponent<{
132
132
  type: PropType<Record<string, unknown>>;
133
133
  default: () => {};
134
134
  };
135
+ noClickAnimation: {
136
+ type: PropType<boolean>;
137
+ default: boolean;
138
+ };
135
139
  /**
136
140
  * Применяет position: absolute к содержимому оверлея
137
141
  */
@@ -139,13 +143,7 @@ declare const _sfc_main: import("vue").DefineComponent<{
139
143
  type: PropType<boolean>;
140
144
  default: boolean;
141
145
  };
142
- }, {
143
- activatorEl: import("vue").Ref<HTMLElement | undefined>;
144
- contentEl: import("vue").Ref<HTMLElement | undefined>;
145
- globalTop: Readonly<import("vue").Ref<boolean>>;
146
- localTop: import("vue").ComputedRef<boolean>;
147
- updateLocation: import("vue").Ref<((event: Event) => void) | undefined>;
148
- }, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {
146
+ }, {}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {
149
147
  /**
150
148
  * Событие при изменении значения (v-model)
151
149
  * @type { boolean }
@@ -291,6 +289,10 @@ declare const _sfc_main: import("vue").DefineComponent<{
291
289
  type: PropType<Record<string, unknown>>;
292
290
  default: () => {};
293
291
  };
292
+ noClickAnimation: {
293
+ type: PropType<boolean>;
294
+ default: boolean;
295
+ };
294
296
  /**
295
297
  * Применяет position: absolute к содержимому оверлея
296
298
  */
@@ -299,17 +301,17 @@ declare const _sfc_main: import("vue").DefineComponent<{
299
301
  default: boolean;
300
302
  };
301
303
  }>> & {
302
- onAfterLeave?: (() => any) | undefined;
303
304
  "onUpdate:modelValue"?: ((value: boolean) => any) | undefined;
305
+ onAfterLeave?: (() => any) | undefined;
304
306
  "onClick:outside"?: ((event: MouseEvent) => any) | undefined;
305
307
  }, {
306
308
  disabled: boolean;
307
309
  location: import('../../utils').TAnchor;
310
+ modelValue: boolean;
311
+ eager: boolean;
308
312
  transition: string | boolean | (import("vue").TransitionProps & {
309
313
  component?: import("vue").Component<any, any, any, import("vue").ComputedOptions, import("vue").MethodOptions> | undefined;
310
314
  });
311
- origin: import('../../utils').TAnchor | "auto" | "overlap";
312
- modelValue: boolean;
313
315
  attach: string | boolean | Element;
314
316
  contained: boolean;
315
317
  persistent: boolean;
@@ -318,6 +320,7 @@ declare const _sfc_main: import("vue").DefineComponent<{
318
320
  zIndex: string | number;
319
321
  contentClasses: string | string[] | Record<string, boolean>;
320
322
  contentProps: Record<string, unknown>;
323
+ noClickAnimation: boolean;
321
324
  activator: string | import("vue").ComponentPublicInstance<{}, {}, {}, {}, {}, {}, {}, {}, false, import("vue").ComponentOptionsBase<any, any, any, any, any, any, any, any, any, {}, {}, string>, {}> | Element;
322
325
  activatorProps: Record<string, any>;
323
326
  openOnClick: boolean | undefined;
@@ -329,9 +332,9 @@ declare const _sfc_main: import("vue").DefineComponent<{
329
332
  locationStrategy: "static" | "connected" | ((data: import("./composable").ILocationStrategyData, props: import("./composable").ILocationStrategyProps, contentStyles: import("vue").Ref<Record<string, string>>) => {
330
333
  updateLocation: (event: Event) => void;
331
334
  } | undefined);
335
+ origin: import('../../utils').TAnchor | "auto" | "overlap";
332
336
  offset: string | number | number[];
333
337
  scrollStrategy: "none" | "close" | "block" | "reposition" | ((data: import("./composable").IScrollStrategyData, props: import("./composable").IScrollStrategyProps, scope: import("vue").EffectScope) => void);
334
- eager: boolean;
335
338
  height: string | number;
336
339
  width: string | number;
337
340
  maxHeight: string | number;