@central-design-system/components 2.30.0 → 3.0.0-alpha.0

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 (283) hide show
  1. package/dist/cds.css +1 -111
  2. package/dist/cds.d.ts +31 -0
  3. package/dist/cds.es.js +2159 -0
  4. package/dist/cds.umd.js +1 -0
  5. package/dist/components/CdsBadge/CdsBadge.vue.d.ts +32 -0
  6. package/dist/components/CdsButton/CdsButton.vue.d.ts +140 -0
  7. package/dist/components/CdsDrawer/CdsDrawer.vue.d.ts +179 -0
  8. package/dist/components/CdsGrid/CdsCol.vue.d.ts +73 -0
  9. package/dist/components/CdsGrid/CdsGrid.vue.d.ts +55 -0
  10. package/dist/components/CdsGrid/CdsRow.vue.d.ts +37 -0
  11. package/dist/components/CdsGrid/composable/column.d.ts +84 -0
  12. package/dist/components/CdsGrid/composable/grid.d.ts +24 -0
  13. package/dist/components/CdsGrid/composable/index.d.ts +4 -0
  14. package/dist/components/CdsGrid/composable/subgrid.d.ts +20 -0
  15. package/dist/components/CdsGrid/composable/wide.d.ts +12 -0
  16. package/dist/components/CdsGrid/mode/CSSGrid.d.ts +5 -0
  17. package/dist/components/CdsGrid/mode/FlexGrid.d.ts +5 -0
  18. package/dist/components/CdsGrid/types.d.ts +27 -0
  19. package/dist/components/CdsIcon/CdsIcon.vue.d.ts +44 -0
  20. package/dist/components/CdsIcon/index.d.ts +1 -0
  21. package/dist/components/CdsLink/CdsLink.vue.d.ts +50 -0
  22. package/dist/components/CdsList/CdsList.vue.d.ts +170 -0
  23. package/dist/components/CdsList/CdsListGroup.vue.d.ts +125 -0
  24. package/dist/components/CdsList/CdsListItem.vue.d.ts +172 -0
  25. package/dist/components/CdsList/composable/depth.d.ts +3 -0
  26. package/dist/components/CdsList/composable/index.d.ts +2 -0
  27. package/dist/components/CdsList/composable/list.d.ts +19 -0
  28. package/dist/components/CdsList/index.d.ts +3 -0
  29. package/dist/components/CdsLoader/CdsLoader.vue.d.ts +62 -0
  30. package/dist/components/CdsLoader/index.d.ts +1 -0
  31. package/dist/components/CdsStatus/CdsStatus.vue.d.ts +46 -0
  32. package/dist/components/CdsTag/CdsTag.vue.d.ts +96 -0
  33. package/dist/components/index.d.ts +18 -0
  34. package/dist/composable/appearance.d.ts +24 -0
  35. package/dist/composable/color.d.ts +21 -0
  36. package/dist/composable/dark.d.ts +19 -0
  37. package/dist/composable/disabled.d.ts +19 -0
  38. package/dist/composable/focus.d.ts +12 -0
  39. package/dist/composable/icon.d.ts +32 -0
  40. package/dist/composable/index.d.ts +17 -0
  41. package/dist/composable/items.d.ts +78 -0
  42. package/dist/composable/link.d.ts +36 -0
  43. package/dist/composable/loading.d.ts +19 -0
  44. package/dist/composable/nested/nested.d.ts +85 -0
  45. package/dist/composable/nested/openStrategies.d.ts +25 -0
  46. package/dist/composable/nested/selectStrategies.d.ts +21 -0
  47. package/dist/composable/proxyModel.d.ts +8 -0
  48. package/dist/composable/render.d.ts +2 -0
  49. package/dist/composable/size.d.ts +24 -0
  50. package/dist/composable/status.d.ts +21 -0
  51. package/dist/composable/tag.d.ts +16 -0
  52. package/dist/composable/text.d.ts +17 -0
  53. package/dist/composable/toggleScope.d.ts +2 -0
  54. package/dist/directives/index.d.ts +2 -0
  55. package/dist/plugins/index.d.ts +2 -0
  56. package/dist/shims-vue.d.ts +24 -0
  57. package/dist/transitions/createTransition.d.ts +9 -0
  58. package/dist/transitions/expandTransition.d.ts +19 -0
  59. package/dist/transitions/index.d.ts +14 -0
  60. package/dist/types/CdsOptions.d.ts +3 -0
  61. package/dist/utils/changeCase/lowerCase.d.ts +8 -0
  62. package/dist/utils/changeCase/noCase.d.ts +10 -0
  63. package/dist/utils/changeCase/paramCase.d.ts +3 -0
  64. package/dist/utils/changeCase/pascalCase.d.ts +5 -0
  65. package/dist/utils/getCurrentInstance.d.ts +13 -0
  66. package/dist/utils/helpers.d.ts +49 -0
  67. package/dist/utils/index.d.ts +7 -0
  68. package/dist/utils/propsFactory.d.ts +52 -0
  69. package/nuxt.js +13 -0
  70. package/package.json +37 -80
  71. package/src/scss/index.scss +10 -0
  72. package/{dist/mixins/scss → src/scss/mixins}/layout/_convert.scss +4 -2
  73. package/{dist/mixins/scss → src/scss/mixins}/layout/_layout.scss +0 -0
  74. package/{dist/mixins/scss → src/scss/mixins}/layout/_mini-unit.scss +0 -0
  75. package/{dist/mixins/scss → src/scss/mixins}/layout/_spacing.scss +0 -0
  76. package/src/scss/mixins/layout/exports/_mini-unit.module.scss +5 -0
  77. package/src/scss/mixins/layout/exports/_spacing-all.module.scss +3 -0
  78. package/src/scss/mixins/layout/exports/_spacing-fluid.module.scss +8 -0
  79. package/src/scss/mixins/layout/exports/_spacing-layout.module.scss +11 -0
  80. package/src/scss/mixins/layout/exports/_spacing.module.scss +16 -0
  81. package/{dist/mixins/scss → src/scss/mixins}/layout/index.scss +0 -2
  82. package/{dist/mixins/scss → src/scss/mixins}/motion.scss +0 -0
  83. package/{dist/mixins/scss → src/scss/mixins}/typo.scss +0 -67
  84. package/src/scss/modules/_reset.scss +113 -0
  85. package/src/scss/modules/_transition.scss +26 -0
  86. package/src/scss/modules/_typography.scss +36 -0
  87. package/src/scss/modules/_variables.scss +9 -0
  88. package/src/scss/modules/grid/_aspect-ratio.scss +62 -0
  89. package/src/scss/modules/grid/_breakpoint.scss +195 -0
  90. package/src/scss/modules/grid/_config.scss +88 -0
  91. package/src/scss/modules/grid/_css-grid.scss +445 -0
  92. package/src/scss/modules/grid/_flex-grid.scss +39 -0
  93. package/src/scss/modules/grid/_mixins.scss +307 -0
  94. package/src/scss/modules/grid/exports/_config.module.scss +9 -0
  95. package/src/scss/modules/grid/index.scss +5 -0
  96. package/src/scss/themes/b2b/tokens-map.scss +139 -0
  97. package/src/scss/themes/b2b/tokens.json +2190 -0
  98. package/{dist/tokens → src/scss/themes}/b2b/variables.css +0 -0
  99. package/src/scss/themes/cds/tokens-map.scss +138 -0
  100. package/src/scss/themes/cds/tokens.json +2184 -0
  101. package/{dist/tokens → src/scss/themes}/cds/variables.css +0 -1
  102. package/src/scss/themes/index.ts +43 -0
  103. package/src/scss/utility/display.scss +13 -0
  104. package/src/scss/utility/flexbox.scss +37 -0
  105. package/src/scss/utility/generatedFiles/generatedStyles.json +1 -0
  106. package/src/scss/utility/generatedFiles/generatedStyles.scss +300 -0
  107. package/src/scss/utility/index.scss +7 -0
  108. package/src/scss/utility/layout.scss +11 -0
  109. package/src/scss/utility/lists.scss +76 -0
  110. package/src/scss/utility/spacing.scss +89 -0
  111. package/src/scss/utility/typography.scss +16 -0
  112. package/src/scss/utility/variables.scss +116 -0
  113. package/README.md +0 -87
  114. package/build/utils/postInstall.js +0 -20
  115. package/build/utils/print.js +0 -38
  116. package/dist/CdsAccordion/index.js +0 -8
  117. package/dist/CdsAccordion/styles.css +0 -11
  118. package/dist/CdsBadge/index.js +0 -8
  119. package/dist/CdsBadge/styles.css +0 -9
  120. package/dist/CdsBreadcrumbs/index.js +0 -8
  121. package/dist/CdsBreadcrumbs/styles.css +0 -11
  122. package/dist/CdsButton/index.js +0 -8
  123. package/dist/CdsButton/styles.css +0 -11
  124. package/dist/CdsCheckbox/index.js +0 -8
  125. package/dist/CdsCheckbox/styles.css +0 -15
  126. package/dist/CdsCombobox/index.js +0 -8
  127. package/dist/CdsCombobox/styles.css +0 -15
  128. package/dist/CdsContainer/index.js +0 -8
  129. package/dist/CdsContainer/styles.css +0 -11
  130. package/dist/CdsContentSwitcher/index.js +0 -8
  131. package/dist/CdsContentSwitcher/styles.css +0 -15
  132. package/dist/CdsDataTable/index.js +0 -8
  133. package/dist/CdsDataTable/styles.css +0 -21
  134. package/dist/CdsDatePicker/index.js +0 -24
  135. package/dist/CdsDatePicker/styles.css +0 -15
  136. package/dist/CdsDrawer/index.js +0 -8
  137. package/dist/CdsDrawer/styles.css +0 -17
  138. package/dist/CdsDropdown/index.js +0 -8
  139. package/dist/CdsDropdown/styles.css +0 -15
  140. package/dist/CdsEmptyState/index.js +0 -8
  141. package/dist/CdsEmptyState/styles.css +0 -9
  142. package/dist/CdsFooter/index.js +0 -8
  143. package/dist/CdsFooter/styles.css +0 -17
  144. package/dist/CdsForm/index.js +0 -8
  145. package/dist/CdsForm/styles.css +0 -15
  146. package/dist/CdsGrid/index.js +0 -8
  147. package/dist/CdsGrid/styles.css +0 -9
  148. package/dist/CdsHeader/index.js +0 -8
  149. package/dist/CdsHeader/styles.css +0 -11
  150. package/dist/CdsIcon/index.js +0 -8
  151. package/dist/CdsIcon/styles.css +0 -9
  152. package/dist/CdsImage/index.js +0 -8
  153. package/dist/CdsImage/styles.css +0 -9
  154. package/dist/CdsInput/index.js +0 -8
  155. package/dist/CdsInput/styles.css +0 -13
  156. package/dist/CdsLink/index.js +0 -8
  157. package/dist/CdsLink/styles.css +0 -9
  158. package/dist/CdsList/index.js +0 -8
  159. package/dist/CdsList/styles.css +0 -9
  160. package/dist/CdsLoading/index.js +0 -8
  161. package/dist/CdsLoading/styles.css +0 -9
  162. package/dist/CdsModal/index.js +0 -8
  163. package/dist/CdsModal/styles.css +0 -15
  164. package/dist/CdsMultiselect/index.js +0 -8
  165. package/dist/CdsMultiselect/styles.css +0 -17
  166. package/dist/CdsNotification/index.js +0 -8
  167. package/dist/CdsNotification/styles.css +0 -21
  168. package/dist/CdsOverflowMenu/index.js +0 -8
  169. package/dist/CdsOverflowMenu/styles.css +0 -21
  170. package/dist/CdsPagination/index.js +0 -8
  171. package/dist/CdsPagination/styles.css +0 -13
  172. package/dist/CdsRadioButton/index.js +0 -8
  173. package/dist/CdsRadioButton/styles.css +0 -15
  174. package/dist/CdsSearch/index.js +0 -8
  175. package/dist/CdsSearch/styles.css +0 -19
  176. package/dist/CdsSelect/index.js +0 -8
  177. package/dist/CdsSelect/styles.css +0 -15
  178. package/dist/CdsSidebar/index.js +0 -8
  179. package/dist/CdsSidebar/styles.css +0 -15
  180. package/dist/CdsSkeleton/index.js +0 -8
  181. package/dist/CdsSkeleton/styles.css +0 -9
  182. package/dist/CdsStages/index.js +0 -8
  183. package/dist/CdsStages/styles.css +0 -9
  184. package/dist/CdsStatus/index.js +0 -8
  185. package/dist/CdsStatus/styles.css +0 -15
  186. package/dist/CdsSteps/index.js +0 -8
  187. package/dist/CdsSteps/styles.css +0 -19
  188. package/dist/CdsTable/index.js +0 -16
  189. package/dist/CdsTable/styles.css +0 -21
  190. package/dist/CdsTabs/index.js +0 -8
  191. package/dist/CdsTabs/styles.css +0 -9
  192. package/dist/CdsTag/index.js +0 -8
  193. package/dist/CdsTag/styles.css +0 -11
  194. package/dist/CdsTextArea/index.js +0 -8
  195. package/dist/CdsTextArea/styles.css +0 -17
  196. package/dist/CdsTextInput/index.js +0 -8
  197. package/dist/CdsTextInput/styles.css +0 -15
  198. package/dist/CdsToggle/index.js +0 -8
  199. package/dist/CdsToggle/styles.css +0 -9
  200. package/dist/CdsTooltip/index.js +0 -8
  201. package/dist/CdsTooltip/styles.css +0 -13
  202. package/dist/CdsUploader/index.js +0 -14
  203. package/dist/CdsUploader/styles.css +0 -25
  204. package/dist/cds.js +0 -38
  205. package/dist/cds.min.css +0 -7
  206. package/dist/cds.min.js +0 -38
  207. package/dist/index.html +0 -60
  208. package/dist/mixins/scss/layout/_breakpoint.scss +0 -237
  209. package/dist/mixins/scss/layout/_key-height.scss +0 -90
  210. package/dist/mixins/scss/layout/_spacing-export.scss +0 -34
  211. package/dist/mixins/scss/layout/_utilities.scss +0 -33
  212. package/dist/types/CdsAccordion.ts +0 -4
  213. package/dist/types/CdsAccordionItem.ts +0 -10
  214. package/dist/types/CdsBreadcrumbs.ts +0 -11
  215. package/dist/types/CdsBreadcrumbsItem.ts +0 -12
  216. package/dist/types/CdsButton.ts +0 -30
  217. package/dist/types/CdsCheckbox.ts +0 -20
  218. package/dist/types/CdsCheckboxGroup.ts +0 -14
  219. package/dist/types/CdsCol.ts +0 -38
  220. package/dist/types/CdsCombobox.ts +0 -42
  221. package/dist/types/CdsContainer.ts +0 -32
  222. package/dist/types/CdsContentSwitcher.ts +0 -4
  223. package/dist/types/CdsContentSwitcherButton.ts +0 -21
  224. package/dist/types/CdsDataTable.ts +0 -48
  225. package/dist/types/CdsDatePicker.ts +0 -40
  226. package/dist/types/CdsDrawer.ts +0 -25
  227. package/dist/types/CdsDrawerGroup.ts +0 -8
  228. package/dist/types/CdsDrawerItem.ts +0 -12
  229. package/dist/types/CdsDrawerLabel.ts +0 -4
  230. package/dist/types/CdsDropdown.ts +0 -14
  231. package/dist/types/CdsEmptyState.ts +0 -10
  232. package/dist/types/CdsFooter.ts +0 -17
  233. package/dist/types/CdsFooterService.ts +0 -16
  234. package/dist/types/CdsForm.ts +0 -4
  235. package/dist/types/CdsFormGroup.ts +0 -8
  236. package/dist/types/CdsFormItem.ts +0 -4
  237. package/dist/types/CdsGrid.ts +0 -16
  238. package/dist/types/CdsHeader.ts +0 -27
  239. package/dist/types/CdsHeaderService.ts +0 -4
  240. package/dist/types/CdsIcon.ts +0 -6
  241. package/dist/types/CdsLink.ts +0 -22
  242. package/dist/types/CdsList.ts +0 -6
  243. package/dist/types/CdsLoading.ts +0 -14
  244. package/dist/types/CdsModal.ts +0 -17
  245. package/dist/types/CdsMultiselect.ts +0 -33
  246. package/dist/types/CdsNotification.ts +0 -22
  247. package/dist/types/CdsOverflowMenu.ts +0 -16
  248. package/dist/types/CdsPagination.ts +0 -12
  249. package/dist/types/CdsRadioButton.ts +0 -29
  250. package/dist/types/CdsRow.ts +0 -18
  251. package/dist/types/CdsSearch.ts +0 -24
  252. package/dist/types/CdsSelect.ts +0 -37
  253. package/dist/types/CdsSkeleton.ts +0 -14
  254. package/dist/types/CdsStages.ts +0 -10
  255. package/dist/types/CdsStatus.ts +0 -22
  256. package/dist/types/CdsSteps.ts +0 -22
  257. package/dist/types/CdsStepsItem.ts +0 -12
  258. package/dist/types/CdsTable.ts +0 -46
  259. package/dist/types/CdsTabs.ts +0 -19
  260. package/dist/types/CdsTabsItem.ts +0 -18
  261. package/dist/types/CdsTag.ts +0 -20
  262. package/dist/types/CdsTextArea.ts +0 -26
  263. package/dist/types/CdsTextInput.ts +0 -32
  264. package/dist/types/CdsToggle.ts +0 -18
  265. package/dist/types/CdsTooltip.ts +0 -18
  266. package/dist/types/CdsTooltipDefinition.ts +0 -16
  267. package/dist/types/CdsTooltipInteractive.ts +0 -11
  268. package/dist/types/CdsUploader.ts +0 -44
  269. package/dist/types/Sidebar.ts +0 -17
  270. package/dist/types/types.ts +0 -2
  271. package/dist/utils/convertRemToPx.js +0 -9
  272. package/dist/utils/deepFind.js +0 -14
  273. package/dist/utils/expiringStorage.js +0 -28
  274. package/dist/utils/helpers.js +0 -33
  275. package/dist/utils/index.js +0 -1
  276. package/dist/utils/isCorrectTag.js +0 -5
  277. package/dist/utils/isRightProps.js +0 -5
  278. package/dist/utils/memoize.js +0 -8
  279. package/dist/utils/suffixPropName.js +0 -12
  280. package/dist/utils/test/deepFind.test.js +0 -18
  281. package/dist/utils/test/isCorrectTag.test.js +0 -9
  282. package/dist/utils/test/isCorrectTagDataSet.js +0 -51
  283. package/dist/utils/validationProps.js +0 -7
@@ -0,0 +1,37 @@
1
+ export declare const componentName = "CdsRow";
2
+ declare const _sfc_main: import("vue").DefineComponent<{
3
+ condensed: {
4
+ type: import("vue").PropType<boolean>;
5
+ default: boolean;
6
+ };
7
+ narrow: {
8
+ type: import("vue").PropType<boolean>;
9
+ default: boolean;
10
+ };
11
+ tag: {
12
+ type: import("vue").PropType<string>;
13
+ default: string;
14
+ description: string;
15
+ };
16
+ }, () => import("vue").VNode<import("vue").RendererNode, import("vue").RendererElement, {
17
+ [key: string]: any;
18
+ }>, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<{
19
+ condensed: {
20
+ type: import("vue").PropType<boolean>;
21
+ default: boolean;
22
+ };
23
+ narrow: {
24
+ type: import("vue").PropType<boolean>;
25
+ default: boolean;
26
+ };
27
+ tag: {
28
+ type: import("vue").PropType<string>;
29
+ default: string;
30
+ description: string;
31
+ };
32
+ }>>, {
33
+ tag: string;
34
+ condensed: boolean;
35
+ narrow: boolean;
36
+ }>;
37
+ export default _sfc_main;
@@ -0,0 +1,84 @@
1
+ import type { PropType } from 'vue';
2
+ import type { TColumnBreakpoint, TColumnSpan, TColumnFlexBreakpoint, TColumnGridBreakpoint, TColumnSpanType } from '../types';
3
+ export interface IColumnProps {
4
+ tag: string | undefined;
5
+ xs: TColumnBreakpoint<TColumnGridBreakpoint | TColumnFlexBreakpoint> | undefined;
6
+ sm: TColumnBreakpoint<TColumnGridBreakpoint | TColumnFlexBreakpoint> | undefined;
7
+ md: TColumnBreakpoint<TColumnGridBreakpoint | TColumnFlexBreakpoint> | undefined;
8
+ lg: TColumnBreakpoint<TColumnGridBreakpoint | TColumnFlexBreakpoint> | undefined;
9
+ xl: TColumnBreakpoint<TColumnGridBreakpoint | TColumnFlexBreakpoint> | undefined;
10
+ span: TColumnSpan<TColumnSpanType>;
11
+ }
12
+ export interface IUseColumn {
13
+ breakpoints: TColumnBreakpoint<TColumnGridBreakpoint | TColumnFlexBreakpoint>[];
14
+ }
15
+ export declare const makeColumnProps: <Defaults extends {
16
+ xs?: unknown;
17
+ sm?: unknown;
18
+ md?: unknown;
19
+ lg?: unknown;
20
+ xl?: unknown;
21
+ span?: unknown;
22
+ } = {}>(defaults?: Defaults | undefined) => import('../../../utils').AppendDefault<{
23
+ /**
24
+ * >320px
25
+ */
26
+ xs: {
27
+ type: PropType<TColumnBreakpoint<TColumnGridBreakpoint | TColumnFlexBreakpoint>>;
28
+ default: undefined;
29
+ };
30
+ /**
31
+ * >672px
32
+ */
33
+ sm: {
34
+ type: PropType<TColumnBreakpoint<TColumnGridBreakpoint | TColumnFlexBreakpoint>>;
35
+ default: undefined;
36
+ };
37
+ /**
38
+ * >1056px
39
+ */
40
+ md: {
41
+ type: PropType<TColumnBreakpoint<TColumnGridBreakpoint | TColumnFlexBreakpoint>>;
42
+ default: undefined;
43
+ };
44
+ /**
45
+ * >1312px
46
+ */
47
+ lg: {
48
+ type: PropType<TColumnBreakpoint<TColumnGridBreakpoint | TColumnFlexBreakpoint>>;
49
+ default: undefined;
50
+ };
51
+ /**
52
+ * >1584px
53
+ */
54
+ xl: {
55
+ type: PropType<TColumnBreakpoint<TColumnGridBreakpoint | TColumnFlexBreakpoint>>;
56
+ default: undefined;
57
+ };
58
+ /**
59
+ * Only CSS Grid supported. Постоянный диапазон колонок, start или end значения, которые не изменятся.
60
+ */
61
+ span: {
62
+ type: PropType<string | number | TColumnSpanType>;
63
+ default: undefined;
64
+ };
65
+ }, Defaults>;
66
+ export declare const useBreakpoints: (props: IColumnProps) => IUseColumn;
67
+ /**
68
+ * Build the appropriate grid className for the given set of breakpoints.
69
+ * @param {Array<boolean|number|TColumnGridBreakpoint>} breakpoints
70
+ * @param prefix
71
+ * @returns {string}
72
+ */
73
+ export declare const getClassNameForGridBreakpoints: (breakpoints: TColumnBreakpoint<TColumnGridBreakpoint>[], prefix: string) => string;
74
+ /**
75
+ * Build the appropriate flex className for the given set of breakpoints.
76
+ * @param {Array<boolean|number|TColumnFlexBreakpoint>} breakpoints
77
+ * @param prefix
78
+ * @returns {string}
79
+ */
80
+ export declare const getClassNameForFlexBreakpoints: (breakpoints: TColumnBreakpoint<TColumnFlexBreakpoint>[], prefix: string) => string;
81
+ /**
82
+ * Build the appropriate className for a span value
83
+ */
84
+ export declare const getClassNameForSpan: (value: TColumnSpan<TColumnSpanType>, prefix: string) => string;
@@ -0,0 +1,24 @@
1
+ import type { PropType } from 'vue';
2
+ export interface IUseGrid {
3
+ prefix: string;
4
+ }
5
+ export declare const makeGridProps: <Defaults extends {
6
+ condensed?: unknown;
7
+ narrow?: unknown;
8
+ } = {}>(defaults?: Defaults | undefined) => import('../../../utils').AppendDefault<{
9
+ /**
10
+ * Конденсированная сетка. Уменьшенный отступ до 1px по обеим сторонам
11
+ */
12
+ condensed: {
13
+ type: PropType<boolean>;
14
+ default: boolean;
15
+ };
16
+ /**
17
+ * Узкая сетка
18
+ */
19
+ narrow: {
20
+ type: PropType<boolean>;
21
+ default: boolean;
22
+ };
23
+ }, Defaults>;
24
+ export declare const useGrid: () => IUseGrid;
@@ -0,0 +1,4 @@
1
+ export * from './grid';
2
+ export * from './subgrid';
3
+ export * from './wide';
4
+ export * from './column';
@@ -0,0 +1,20 @@
1
+ import type { PropType } from 'vue';
2
+ import type { IGridProps } from '../types';
3
+ export interface ISubgridProps extends IGridProps {
4
+ subgrid: boolean;
5
+ }
6
+ export interface IUseSubgrid {
7
+ suffix: string;
8
+ }
9
+ export declare const makeSubgridProps: <Defaults extends {
10
+ subgrid?: unknown;
11
+ } = {}>(defaults?: Defaults | undefined) => import('../../../utils').AppendDefault<{
12
+ /**
13
+ * Only CSS Grid supported. Вложенная сетка
14
+ */
15
+ subgrid: {
16
+ type: PropType<boolean>;
17
+ default: boolean;
18
+ };
19
+ }, Defaults>;
20
+ export declare const useSubgrid: (props: ISubgridProps) => IUseSubgrid;
@@ -0,0 +1,12 @@
1
+ import type { PropType } from 'vue';
2
+ export declare const makeWideProps: <Defaults extends {
3
+ wide?: unknown;
4
+ } = {}>(defaults?: Defaults | undefined) => import('../../../utils').AppendDefault<{
5
+ /**
6
+ * Удаляет max-width по умолчанию и растягивает сетку на всю ширину контейнера
7
+ */
8
+ wide: {
9
+ type: PropType<boolean>;
10
+ default: boolean;
11
+ };
12
+ }, Defaults>;
@@ -0,0 +1,5 @@
1
+ import type { SetupContext } from 'vue';
2
+ import type { ISubgridProps } from '../composable';
3
+ export declare function CSSGrid(props: ISubgridProps, context: SetupContext): () => import("vue").VNode<import("vue").RendererNode, import("vue").RendererElement, {
4
+ [key: string]: any;
5
+ }>;
@@ -0,0 +1,5 @@
1
+ import type { SetupContext } from 'vue';
2
+ import type { IGridProps } from '../types';
3
+ export declare function FlexGrid(props: IGridProps, context: SetupContext): () => import("vue").VNode<import("vue").RendererNode, import("vue").RendererElement, {
4
+ [key: string]: any;
5
+ }>;
@@ -0,0 +1,27 @@
1
+ export interface IGridProps {
2
+ tag: string;
3
+ condensed: boolean;
4
+ narrow: boolean;
5
+ wide: boolean;
6
+ }
7
+
8
+ export type TColumnBreakpoint<T> = T | boolean | number | string;
9
+ export type TColumnSpan<T> = T | string | number | undefined;
10
+
11
+ export type TColumnGridBreakpoint = {
12
+ span?: string | number | TPercentSpan;
13
+ offset?: number | string;
14
+ start?: number | string;
15
+ end?: number | string;
16
+ };
17
+ export type TColumnFlexBreakpoint = {
18
+ span?: string | number | boolean;
19
+ offset?: number | string;
20
+ order?: number | string;
21
+ };
22
+ export type TColumnSpanType = {
23
+ span?: string | number | TPercentSpan;
24
+ start?: number | string;
25
+ end?: number | string;
26
+ };
27
+ export type TPercentSpan = '25%' | '50%' | '75%' | '100%';
@@ -0,0 +1,44 @@
1
+ import { PropType } from 'vue';
2
+ import { TCdsIconsName } from '@central-design-system/icons';
3
+ export declare const componentName = "CdsIcon";
4
+ declare const _sfc_main: import("vue").DefineComponent<{
5
+ size: {
6
+ type: PropType<"xs" | "sm" | "md" | "lg" | "xl">;
7
+ default: string;
8
+ available: readonly ["xs", "sm", "md", "lg", "xl"];
9
+ validator: (value: "xs" | "sm" | "md" | "lg" | "xl") => boolean;
10
+ };
11
+ name: {
12
+ /**
13
+ * Название иконки
14
+ */
15
+ 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" | "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">;
16
+ default: undefined;
17
+ validator: (value: TCdsIconsName) => boolean;
18
+ };
19
+ }, {
20
+ iconComponent: import("vue").ComputedRef<string>;
21
+ sizeClasses: import("vue").ComputedRef<string>;
22
+ } | {
23
+ sizeClasses: import("vue").ComputedRef<string>;
24
+ iconComponent?: undefined;
25
+ }, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, never[], never, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<{
26
+ size: {
27
+ type: PropType<"xs" | "sm" | "md" | "lg" | "xl">;
28
+ default: string;
29
+ available: readonly ["xs", "sm", "md", "lg", "xl"];
30
+ validator: (value: "xs" | "sm" | "md" | "lg" | "xl") => boolean;
31
+ };
32
+ name: {
33
+ /**
34
+ * Название иконки
35
+ */
36
+ 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" | "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">;
37
+ default: undefined;
38
+ validator: (value: TCdsIconsName) => boolean;
39
+ };
40
+ }>> & {}, {
41
+ name: "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" | "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";
42
+ size: "xs" | "sm" | "md" | "lg" | "xl";
43
+ }>;
44
+ export default _sfc_main;
@@ -0,0 +1 @@
1
+ export { default as CdsIcon } from './CdsIcon.vue';
@@ -0,0 +1,50 @@
1
+ export declare const componentName = "CdsLink";
2
+ declare const _sfc_main: import("vue").DefineComponent<{
3
+ disabled: {
4
+ type: import("vue").PropType<boolean>;
5
+ default: boolean;
6
+ };
7
+ href: {
8
+ type: import("vue").PropType<string>;
9
+ default: undefined;
10
+ };
11
+ to: {
12
+ type: import("vue").PropType<import("vue-router").RouteLocationRaw>;
13
+ default: undefined;
14
+ };
15
+ text: {
16
+ type: import("vue").PropType<string>;
17
+ default: undefined;
18
+ };
19
+ }, {
20
+ tag: import("vue").ComputedRef<string>;
21
+ to: import("vue").ComputedRef<import("vue-router").RouteLocationRaw | undefined>;
22
+ href: import("vue").ComputedRef<string | undefined>;
23
+ disabledClasses: import("vue").ComputedRef<string | undefined>;
24
+ handleClick: (event: MouseEvent) => void;
25
+ }, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, "click"[], "click", import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<{
26
+ disabled: {
27
+ type: import("vue").PropType<boolean>;
28
+ default: boolean;
29
+ };
30
+ href: {
31
+ type: import("vue").PropType<string>;
32
+ default: undefined;
33
+ };
34
+ to: {
35
+ type: import("vue").PropType<import("vue-router").RouteLocationRaw>;
36
+ default: undefined;
37
+ };
38
+ text: {
39
+ type: import("vue").PropType<string>;
40
+ default: undefined;
41
+ };
42
+ }>> & {
43
+ onClick?: ((...args: any[]) => any) | undefined;
44
+ }, {
45
+ text: string;
46
+ disabled: boolean;
47
+ href: string;
48
+ to: import("vue-router").RouteLocationRaw;
49
+ }>;
50
+ export default _sfc_main;
@@ -0,0 +1,170 @@
1
+ import type { PropType } from 'vue';
2
+ export declare const componentName = "CdsList";
3
+ declare const _sfc_main: import("vue").DefineComponent<{
4
+ selectStrategy: {
5
+ type: PropType<NonNullable<import("../../composable/nested/selectStrategies").TSelectStrategyProp>>;
6
+ default: NonNullable<import("../../composable/nested/selectStrategies").TSelectStrategyProp>;
7
+ };
8
+ openStrategy: {
9
+ type: PropType<NonNullable<import("../../composable/nested/openStrategies").TOpenStrategyProp>>;
10
+ default: NonNullable<import("../../composable/nested/openStrategies").TOpenStrategyProp>;
11
+ };
12
+ opened: PropType<unknown[]>;
13
+ selected: PropType<unknown[]>;
14
+ required: BooleanConstructor;
15
+ dark: {
16
+ type: PropType<boolean>;
17
+ default: boolean;
18
+ };
19
+ disabled: {
20
+ type: PropType<boolean>;
21
+ default: boolean;
22
+ };
23
+ size: Omit<{
24
+ type: PropType<"xs" | "sm" | "md" | "lg" | "xl">;
25
+ default: string;
26
+ available: readonly ["xs", "sm", "md", "lg", "xl"];
27
+ validator: (value: "xs" | "sm" | "md" | "lg" | "xl") => boolean;
28
+ }, "default" | "type"> & {
29
+ type: PropType<NonNullable<"xs" | "sm" | "md" | "lg" | "xl">>;
30
+ default: NonNullable<"xs" | "sm" | "md" | "lg" | "xl">;
31
+ };
32
+ tag: {
33
+ type: PropType<string>;
34
+ default: string;
35
+ description: string;
36
+ };
37
+ items: {
38
+ type: PropType<any[]>;
39
+ default: () => never[];
40
+ };
41
+ itemTitle: {
42
+ type: PropType<import("../../utils").SelectItemKey>;
43
+ default: string;
44
+ };
45
+ itemValue: {
46
+ type: PropType<import("../../utils").SelectItemKey>;
47
+ default: string; /**
48
+ * Событие открытия элемента списка, возвращает массив id открытых элементов списка
49
+ * @type { unknown[] }
50
+ */
51
+ };
52
+ itemChildren: {
53
+ type: PropType<import("../../utils").SelectItemKey>; /**
54
+ * Событие открытия элемента списка по клику, возвращает id элемента и его состояние
55
+ * @type {{ id: unknown; value: boolean; path: unknown[], event: Event }}
56
+ */
57
+ default: string;
58
+ };
59
+ itemProps: {
60
+ type: PropType<import("../../utils").SelectItemKey>;
61
+ default: string;
62
+ };
63
+ returnObject: {
64
+ type: PropType<boolean>;
65
+ default: boolean;
66
+ };
67
+ /**
68
+ * Количество строк в описании элемента списка
69
+ */
70
+ lines: {
71
+ type: PropType<false | "one" | "two" | "three">;
72
+ default: string;
73
+ };
74
+ }, {
75
+ open: (id: unknown, value: boolean, event?: Event | undefined) => void;
76
+ select: (id: unknown, value: boolean, event?: Event | undefined) => void;
77
+ focus: (location?: import("../../composable").TFocusLocation | undefined) => void;
78
+ }, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, ("update:selected" | "update:opened" | "click:open" | "click:select")[], "update:selected" | "update:opened" | "click:open" | "click:select", import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<{
79
+ selectStrategy: {
80
+ type: PropType<NonNullable<import("../../composable/nested/selectStrategies").TSelectStrategyProp>>;
81
+ default: NonNullable<import("../../composable/nested/selectStrategies").TSelectStrategyProp>;
82
+ };
83
+ openStrategy: {
84
+ type: PropType<NonNullable<import("../../composable/nested/openStrategies").TOpenStrategyProp>>;
85
+ default: NonNullable<import("../../composable/nested/openStrategies").TOpenStrategyProp>;
86
+ };
87
+ opened: PropType<unknown[]>;
88
+ selected: PropType<unknown[]>;
89
+ required: BooleanConstructor;
90
+ dark: {
91
+ type: PropType<boolean>;
92
+ default: boolean;
93
+ };
94
+ disabled: {
95
+ type: PropType<boolean>;
96
+ default: boolean;
97
+ };
98
+ size: Omit<{
99
+ type: PropType<"xs" | "sm" | "md" | "lg" | "xl">;
100
+ default: string;
101
+ available: readonly ["xs", "sm", "md", "lg", "xl"];
102
+ validator: (value: "xs" | "sm" | "md" | "lg" | "xl") => boolean;
103
+ }, "default" | "type"> & {
104
+ type: PropType<NonNullable<"xs" | "sm" | "md" | "lg" | "xl">>;
105
+ default: NonNullable<"xs" | "sm" | "md" | "lg" | "xl">;
106
+ };
107
+ tag: {
108
+ type: PropType<string>;
109
+ default: string;
110
+ description: string;
111
+ };
112
+ items: {
113
+ type: PropType<any[]>;
114
+ default: () => never[];
115
+ };
116
+ itemTitle: {
117
+ type: PropType<import("../../utils").SelectItemKey>;
118
+ default: string;
119
+ };
120
+ itemValue: {
121
+ type: PropType<import("../../utils").SelectItemKey>;
122
+ default: string; /**
123
+ * Событие открытия элемента списка, возвращает массив id открытых элементов списка
124
+ * @type { unknown[] }
125
+ */
126
+ };
127
+ itemChildren: {
128
+ type: PropType<import("../../utils").SelectItemKey>; /**
129
+ * Событие открытия элемента списка по клику, возвращает id элемента и его состояние
130
+ * @type {{ id: unknown; value: boolean; path: unknown[], event: Event }}
131
+ */
132
+ default: string;
133
+ };
134
+ itemProps: {
135
+ type: PropType<import("../../utils").SelectItemKey>;
136
+ default: string;
137
+ };
138
+ returnObject: {
139
+ type: PropType<boolean>;
140
+ default: boolean;
141
+ };
142
+ /**
143
+ * Количество строк в описании элемента списка
144
+ */
145
+ lines: {
146
+ type: PropType<false | "one" | "two" | "three">;
147
+ default: string;
148
+ };
149
+ }>> & {
150
+ "onUpdate:selected"?: ((...args: any[]) => any) | undefined;
151
+ "onUpdate:opened"?: ((...args: any[]) => any) | undefined;
152
+ "onClick:open"?: ((...args: any[]) => any) | undefined;
153
+ "onClick:select"?: ((...args: any[]) => any) | undefined;
154
+ }, {
155
+ dark: boolean;
156
+ required: boolean;
157
+ size: NonNullable<"xs" | "sm" | "md" | "lg" | "xl">;
158
+ disabled: boolean;
159
+ tag: string;
160
+ items: any[];
161
+ itemTitle: import("../../utils").SelectItemKey;
162
+ itemValue: import("../../utils").SelectItemKey;
163
+ itemChildren: import("../../utils").SelectItemKey;
164
+ itemProps: import("../../utils").SelectItemKey;
165
+ returnObject: boolean;
166
+ selectStrategy: NonNullable<import("../../composable/nested/selectStrategies").TSelectStrategyProp>;
167
+ openStrategy: NonNullable<import("../../composable/nested/openStrategies").TOpenStrategyProp>;
168
+ lines: false | "one" | "two" | "three";
169
+ }>;
170
+ export default _sfc_main;
@@ -0,0 +1,125 @@
1
+ import type { PropType } from 'vue';
2
+ export declare const componentName = "CdsListGroup";
3
+ declare const _sfc_main: import("vue").DefineComponent<{
4
+ tag: {
5
+ type: PropType<string>;
6
+ default: string;
7
+ description: string;
8
+ };
9
+ /**
10
+ * Заголовок группы списка
11
+ */
12
+ title: {
13
+ type: PropType<string>;
14
+ default: undefined;
15
+ };
16
+ /**
17
+ * Иконка свернутой группы списка
18
+ */
19
+ collapseIcon: {
20
+ 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" | "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">;
21
+ default: string;
22
+ };
23
+ /**
24
+ * Иконка развернутой группы списка
25
+ */
26
+ expandIcon: {
27
+ 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" | "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">;
28
+ default: string;
29
+ };
30
+ /**
31
+ * Значение группы списка
32
+ */
33
+ value: {
34
+ type: PropType<string | number>;
35
+ default: undefined;
36
+ };
37
+ /**
38
+ * Группа списка на всю ширину
39
+ */
40
+ fluid: {
41
+ type: PropType<boolean>;
42
+ default: boolean;
43
+ };
44
+ /**
45
+ * Подгруппа списка
46
+ */
47
+ subgroup: {
48
+ type: PropType<boolean>;
49
+ default: boolean;
50
+ };
51
+ }, {
52
+ id: import("vue").ComputedRef<string>;
53
+ isOpen: import("vue").ComputedRef<boolean>;
54
+ activatorProps: import("vue").ComputedRef<{
55
+ onClick: (event: Event) => void;
56
+ id: string;
57
+ 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" | "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";
58
+ class: string;
59
+ isClickable: boolean;
60
+ }>;
61
+ isExpandable: import("vue").ComputedRef<boolean>;
62
+ classes: import("vue").ComputedRef<{
63
+ 'cds-list-group--open': boolean;
64
+ 'cds-list-group--prepend': boolean | undefined;
65
+ 'cds-list-group--fluid': boolean;
66
+ 'cds-list-group--subgroup': boolean;
67
+ }>;
68
+ }, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<{
69
+ tag: {
70
+ type: PropType<string>;
71
+ default: string;
72
+ description: string;
73
+ };
74
+ /**
75
+ * Заголовок группы списка
76
+ */
77
+ title: {
78
+ type: PropType<string>;
79
+ default: undefined;
80
+ };
81
+ /**
82
+ * Иконка свернутой группы списка
83
+ */
84
+ collapseIcon: {
85
+ 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" | "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">;
86
+ default: string;
87
+ };
88
+ /**
89
+ * Иконка развернутой группы списка
90
+ */
91
+ expandIcon: {
92
+ 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" | "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">;
93
+ default: string;
94
+ };
95
+ /**
96
+ * Значение группы списка
97
+ */
98
+ value: {
99
+ type: PropType<string | number>;
100
+ default: undefined;
101
+ };
102
+ /**
103
+ * Группа списка на всю ширину
104
+ */
105
+ fluid: {
106
+ type: PropType<boolean>;
107
+ default: boolean;
108
+ };
109
+ /**
110
+ * Подгруппа списка
111
+ */
112
+ subgroup: {
113
+ type: PropType<boolean>;
114
+ default: boolean;
115
+ };
116
+ }>>, {
117
+ tag: string;
118
+ title: string;
119
+ value: string | number;
120
+ collapseIcon: "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" | "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";
121
+ expandIcon: "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" | "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";
122
+ fluid: boolean;
123
+ subgroup: boolean;
124
+ }>;
125
+ export default _sfc_main;