@progress/kendo-vue-layout 8.0.3-develop.2 → 8.0.3-develop.3

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (140) hide show
  1. package/actionsheet/ActionSheet.d.ts +234 -0
  2. package/actionsheet/ActionSheetContent.d.ts +25 -0
  3. package/actionsheet/ActionSheetFooter.d.ts +25 -0
  4. package/actionsheet/ActionSheetHeader.d.ts +34 -0
  5. package/actionsheet/ActionSheetItem.d.ts +65 -0
  6. package/actionsheet/interfaces/ActionSheetContentProps.d.ts +16 -0
  7. package/actionsheet/interfaces/ActionSheetFooterProps.d.ts +16 -0
  8. package/actionsheet/interfaces/ActionSheetHeaderProps.d.ts +20 -0
  9. package/actionsheet/interfaces/ActionSheetItemProps.d.ts +81 -0
  10. package/appbar/AppBar.d.ts +60 -0
  11. package/appbar/AppBarSection.d.ts +21 -0
  12. package/appbar/AppBarSpacer.d.ts +30 -0
  13. package/appbar/interfaces/AppBarProps.d.ts +74 -0
  14. package/appbar/interfaces/AppBarSectionProps.d.ts +12 -0
  15. package/appbar/interfaces/AppBarSpacerProps.d.ts +14 -0
  16. package/bottomnavigation/BottomNavigation.d.ts +117 -0
  17. package/bottomnavigation/BottomNavigationItem.d.ts +59 -0
  18. package/bottomnavigation/BottomNavigationItemProps.d.ts +61 -0
  19. package/bottomnavigation/BottomNavigationProps.d.ts +154 -0
  20. package/bottomnavigation/models/events.d.ts +25 -0
  21. package/bottomnavigation/models/utils.d.ts +43 -0
  22. package/breadcrumb/Breadcrumb.d.ts +143 -0
  23. package/breadcrumb/BreadcrumbDelimiter.d.ts +21 -0
  24. package/breadcrumb/BreadcrumbLink.d.ts +63 -0
  25. package/breadcrumb/BreadcrumbListItem.d.ts +30 -0
  26. package/breadcrumb/BreadcrumbOrderedList.d.ts +42 -0
  27. package/breadcrumb/interfaces/BreadcrumbDelimiterProps.d.ts +24 -0
  28. package/breadcrumb/interfaces/BreadcrumbLinkProps.d.ts +61 -0
  29. package/breadcrumb/interfaces/BreadcrumbListItemProps.d.ts +24 -0
  30. package/breadcrumb/interfaces/BreadcrumbOrderedListProps.d.ts +42 -0
  31. package/breadcrumb/interfaces/BreadcrumbProps.d.ts +138 -0
  32. package/card/Avatar.d.ts +76 -0
  33. package/card/Card.d.ts +50 -0
  34. package/card/CardActions.d.ts +52 -0
  35. package/card/CardBody.d.ts +12 -0
  36. package/card/CardFooter.d.ts +12 -0
  37. package/card/CardHeader.d.ts +12 -0
  38. package/card/CardImage.d.ts +17 -0
  39. package/card/CardSubtitle.d.ts +12 -0
  40. package/card/CardTitle.d.ts +12 -0
  41. package/card/interfaces/AvatarProps.d.ts +79 -0
  42. package/card/interfaces/CardActionsProps.d.ts +29 -0
  43. package/card/interfaces/CardBodyProps.d.ts +9 -0
  44. package/card/interfaces/CardFooterProps.d.ts +9 -0
  45. package/card/interfaces/CardHeaderProps.d.ts +9 -0
  46. package/card/interfaces/CardImageProps.d.ts +13 -0
  47. package/card/interfaces/CardProps.d.ts +34 -0
  48. package/card/interfaces/CardSubtitleProps.d.ts +9 -0
  49. package/card/interfaces/CardTitleProps.d.ts +9 -0
  50. package/card/interfaces/Enums.d.ts +39 -0
  51. package/card/interfaces/Enums.js +1 -1
  52. package/card/interfaces/Enums.mjs +5 -5
  53. package/dist/cdn/js/kendo-vue-layout.js +1 -1
  54. package/drawer/Drawer.d.ts +148 -0
  55. package/drawer/DrawerContent.d.ts +84 -0
  56. package/drawer/DrawerItem.d.ts +81 -0
  57. package/drawer/DrawerNavigation.d.ts +47 -0
  58. package/drawer/context/DrawerContext.d.ts +24 -0
  59. package/drawer/interfaces/DrawerAnimation.d.ts +21 -0
  60. package/drawer/interfaces/DrawerContentProps.d.ts +12 -0
  61. package/drawer/interfaces/DrawerItemHandle.d.ts +24 -0
  62. package/drawer/interfaces/DrawerItemProps.d.ts +55 -0
  63. package/drawer/interfaces/DrawerNavigationProps.d.ts +21 -0
  64. package/drawer/interfaces/DrawerProps.d.ts +92 -0
  65. package/drawer/interfaces/DrawerSelectEvent.d.ts +20 -0
  66. package/expansionpanel/ExpansionPanel.d.ts +59 -0
  67. package/expansionpanel/ExpansionPanel.mjs +1 -1
  68. package/expansionpanel/ExpansionPanelContent.d.ts +12 -0
  69. package/expansionpanel/interfaces.d.ts +95 -0
  70. package/expansionpanel/main.d.ts +10 -0
  71. package/gridlayout/GridLayout.d.ts +61 -0
  72. package/gridlayout/GridLayoutItem.d.ts +35 -0
  73. package/gridlayout/interfaces/GridLayoutColumnProps.d.ts +17 -0
  74. package/gridlayout/interfaces/GridLayoutItemProps.d.ts +46 -0
  75. package/gridlayout/interfaces/GridLayoutProps.d.ts +102 -0
  76. package/gridlayout/interfaces/GridLayoutRowProps.d.ts +17 -0
  77. package/index.d.mts +86 -4954
  78. package/index.d.ts +86 -4954
  79. package/menu/BaseMenuItemInternalProps.d.ts +27 -0
  80. package/menu/MenuProps.d.ts +58 -0
  81. package/menu/components/Menu.d.ts +117 -0
  82. package/menu/components/MenuItemArrow.d.ts +52 -0
  83. package/menu/components/MenuItemArrow.mjs +2 -2
  84. package/menu/components/MenuItemInternal.d.ts +173 -0
  85. package/menu/components/MenuItemLink.d.ts +53 -0
  86. package/menu/consts.d.ts +61 -0
  87. package/menu/events.d.ts +21 -0
  88. package/menu/models/BaseMenuItem.d.ts +65 -0
  89. package/menu/models/MenuItemModel.d.ts +26 -0
  90. package/menu/utils/DirectionHolder.d.ts +18 -0
  91. package/menu/utils/MouseOverHandler.d.ts +24 -0
  92. package/menu/utils/getNewItemIdUponKeyboardNavigation.d.ts +14 -0
  93. package/menu/utils/hoverDelay.d.ts +16 -0
  94. package/menu/utils/itemsIdsUtils.d.ts +71 -0
  95. package/menu/utils/itemsIdsUtils.mjs +49 -49
  96. package/menu/utils/misc.d.ts +23 -0
  97. package/menu/utils/prepareInputItemsForInternalWork.d.ts +12 -0
  98. package/messages/main.d.ts +22 -0
  99. package/package-metadata.d.ts +12 -0
  100. package/package-metadata.js +1 -1
  101. package/package-metadata.mjs +2 -2
  102. package/package.json +15 -9
  103. package/panelbar/PanelBar.d.ts +88 -0
  104. package/panelbar/PanelBarItem.d.ts +87 -0
  105. package/panelbar/interfaces/NavigationAction.d.ts +15 -0
  106. package/panelbar/interfaces/PanelBarItemClickEventArguments.d.ts +14 -0
  107. package/panelbar/interfaces/PanelBarItemProps.d.ts +97 -0
  108. package/panelbar/interfaces/PanelBarProps.d.ts +65 -0
  109. package/panelbar/interfaces/PanelBarSelectEventArguments.d.ts +20 -0
  110. package/panelbar/interfaces/RenderPanelBarItem.d.ts +21 -0
  111. package/panelbar/util.d.ts +42 -0
  112. package/splitter/Splitter.d.ts +170 -0
  113. package/splitter/SplitterBar.d.ts +72 -0
  114. package/splitter/SplitterPane.d.ts +101 -0
  115. package/stacklayout/StackLayout.d.ts +64 -0
  116. package/stacklayout/StackLayoutProps.d.ts +82 -0
  117. package/stepper/Step.d.ts +120 -0
  118. package/stepper/Stepper.d.ts +195 -0
  119. package/stepper/contants.d.ts +15 -0
  120. package/stepper/context/StepperContext.d.ts +23 -0
  121. package/stepper/interfaces/StepChangeEvent.d.ts +16 -0
  122. package/stepper/interfaces/StepFocusEvent.d.ts +12 -0
  123. package/stepper/interfaces/StepHandle.d.ts +20 -0
  124. package/stepper/interfaces/StepProps.d.ts +91 -0
  125. package/stepper/interfaces/StepperChangeEvent.d.ts +16 -0
  126. package/stepper/interfaces/StepperFocusEvent.d.ts +12 -0
  127. package/stepper/interfaces/StepperHandle.d.ts +20 -0
  128. package/stepper/interfaces/StepperOnNavigateEvent.d.ts +30 -0
  129. package/stepper/interfaces/StepperProps.d.ts +95 -0
  130. package/stepper/messages/main.d.ts +22 -0
  131. package/tabstrip/TabStrip.d.ts +171 -0
  132. package/tabstrip/TabStripContent.d.ts +71 -0
  133. package/tabstrip/TabStripNavigation.d.ts +101 -0
  134. package/tabstrip/TabStripNavigationItem.d.ts +118 -0
  135. package/tabstrip/TabStripTab.d.ts +59 -0
  136. package/tabstrip/utils.d.ts +8 -0
  137. package/tilelayout/ResizeHandlers.d.ts +84 -0
  138. package/tilelayout/Tile.d.ts +105 -0
  139. package/tilelayout/TileLayout.d.ts +126 -0
  140. package/tilelayout/interfaces/main.d.ts +205 -0
@@ -0,0 +1,59 @@
1
+ /**
2
+ * @license
3
+ *-------------------------------------------------------------------------------------------
4
+ * Copyright © 2026 Progress Software Corporation. All rights reserved.
5
+ * Licensed under commercial license. See LICENSE.md in the package root for more information
6
+ *-------------------------------------------------------------------------------------------
7
+ */
8
+ /**
9
+ * @hidden
10
+ */
11
+ declare const ExpansionPanel: import('vue').DefineComponent<import('vue').ExtractPropTypes<{
12
+ dir: StringConstructor;
13
+ id: StringConstructor;
14
+ tabIndex: NumberConstructor;
15
+ title: StringConstructor;
16
+ subtitle: StringConstructor;
17
+ titleRender: (ObjectConstructor | StringConstructor | FunctionConstructor)[];
18
+ subtitleRender: (ObjectConstructor | StringConstructor | FunctionConstructor)[];
19
+ expandIcon: StringConstructor;
20
+ expandSvgIcon: ObjectConstructor;
21
+ collapseIcon: StringConstructor;
22
+ collapseSvgIcon: ObjectConstructor;
23
+ expanded: BooleanConstructor;
24
+ disabled: BooleanConstructor;
25
+ }>, {}, {
26
+ focused: boolean;
27
+ }, {
28
+ wrapperClass(): {
29
+ 'k-expander': boolean;
30
+ 'k-expanded': any;
31
+ 'k-focus': boolean;
32
+ 'k-disabled': any;
33
+ };
34
+ expandIconName(): string;
35
+ expandSVGIcon(): any;
36
+ }, {
37
+ onClick(event: any): void;
38
+ onKeyDown(event: any): void;
39
+ handleFocus(): void;
40
+ handleBlur(): void;
41
+ }, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {}, string, import('vue').PublicProps, Readonly<import('vue').ExtractPropTypes<{
42
+ dir: StringConstructor;
43
+ id: StringConstructor;
44
+ tabIndex: NumberConstructor;
45
+ title: StringConstructor;
46
+ subtitle: StringConstructor;
47
+ titleRender: (ObjectConstructor | StringConstructor | FunctionConstructor)[];
48
+ subtitleRender: (ObjectConstructor | StringConstructor | FunctionConstructor)[];
49
+ expandIcon: StringConstructor;
50
+ expandSvgIcon: ObjectConstructor;
51
+ collapseIcon: StringConstructor;
52
+ collapseSvgIcon: ObjectConstructor;
53
+ expanded: BooleanConstructor;
54
+ disabled: BooleanConstructor;
55
+ }>> & Readonly<{}>, {
56
+ disabled: boolean;
57
+ expanded: boolean;
58
+ }, {}, {}, {}, string, import('vue').ComponentProvideOptions, true, {}, any>;
59
+ export { ExpansionPanel };
@@ -5,7 +5,7 @@
5
5
  * Licensed under commercial license. See LICENSE.md in the package root for more information
6
6
  *-------------------------------------------------------------------------------------------
7
7
  */
8
- import { defineComponent as S, createVNode as a, h as s } from "vue";
8
+ import { defineComponent as S, h as s, createVNode as a } from "vue";
9
9
  import { Keys as o, getDefaultSlots as $, templateRendering as i, getListeners as d, getTemplate as r, getTabIndex as v, Icon as C, getIconName as l, validatePackage as R } from "@progress/kendo-vue-common";
10
10
  import { chevronUpIcon as w, chevronDownIcon as y } from "@progress/kendo-svg-icons";
11
11
  import { packageMetadata as F } from "../package-metadata.mjs";
@@ -0,0 +1,12 @@
1
+ /**
2
+ * @license
3
+ *-------------------------------------------------------------------------------------------
4
+ * Copyright © 2026 Progress Software Corporation. All rights reserved.
5
+ * Licensed under commercial license. See LICENSE.md in the package root for more information
6
+ *-------------------------------------------------------------------------------------------
7
+ */
8
+ /**
9
+ * @hidden
10
+ */
11
+ declare const ExpansionPanelContent: import('vue').DefineComponent<{}, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {}, string, import('vue').PublicProps, Readonly<{}> & Readonly<{}>, {}, {}, {}, {}, string, import('vue').ComponentProvideOptions, true, {}, any>;
12
+ export { ExpansionPanelContent };
@@ -0,0 +1,95 @@
1
+ /**
2
+ * @license
3
+ *-------------------------------------------------------------------------------------------
4
+ * Copyright © 2026 Progress Software Corporation. All rights reserved.
5
+ * Licensed under commercial license. See LICENSE.md in the package root for more information
6
+ *-------------------------------------------------------------------------------------------
7
+ */
8
+ import { SVGIcon } from '@progress/kendo-vue-common';
9
+ /**
10
+ * The ExpansionPanel ref.
11
+ */
12
+ export interface ExpansionPanelHandle {
13
+ /**
14
+ * The ExpansionPanel element.
15
+ */
16
+ element: HTMLDivElement | null;
17
+ }
18
+ /**
19
+ * The arguments for the `onAction` ExpansionPanel event.
20
+ */
21
+ export interface ExpansionPanelActionEvent {
22
+ /**
23
+ * Represents the `expanded` state of the ExpansionPanel.
24
+ */
25
+ expanded: boolean;
26
+ }
27
+ /**
28
+ * The props of the ExpansionPanel component.
29
+ */
30
+ export interface ExpansionPanelProps {
31
+ /**
32
+ * Sets additional CSS classes to the ExpansionPanel.
33
+ */
34
+ class?: string;
35
+ /**
36
+ * Sets the `id` property of the root ExpansionPanel element.
37
+ */
38
+ id?: string;
39
+ /**
40
+ * Specifies the primary text in the header of the ExpansionPanel.
41
+ */
42
+ title?: string;
43
+ /**
44
+ * Specifies the secondary text in the header of the ExpansionPanel, which is rendered next to the collapse/expand icon.
45
+ */
46
+ subtitle?: string;
47
+ /**
48
+ * Specifies the primary text template in the header of the ExpansionPanel.
49
+ */
50
+ titleRender?: any;
51
+ /**
52
+ * Specifies the secondary text in the header of the ExpansionPanel, which is rendered next to the collapse/expand icon.
53
+ */
54
+ subtitleRender?: any;
55
+ /**
56
+ * Sets a custom icon via css class(es), for the expanded state of the ExpansionPanel.
57
+ */
58
+ expandIcon?: string;
59
+ /**
60
+ * Defines an SVGIcon to be rendered within the expand arrow.
61
+ */
62
+ expandSvgIcon?: SVGIcon;
63
+ /**
64
+ * Sets a custom icon via css class(es), for the collapsed state of the ExpansionPanel.
65
+ */
66
+ collapseIcon?: string;
67
+ /**
68
+ * Defines an SVGIcon to be rendered within the collapse arrow.
69
+ */
70
+ collapseSvgIcon?: SVGIcon;
71
+ /**
72
+ * Sets the `dir` property of the ExpansionPanel.
73
+ */
74
+ dir?: string;
75
+ /**
76
+ * Sets the `tabIndex` property of the ExpansionPanel.
77
+ */
78
+ tabIndex?: number;
79
+ /**
80
+ * Sets the `expanded` state of the ExpansionPanel.
81
+ */
82
+ expanded?: boolean;
83
+ /**
84
+ * Sets the `disabled` state of the ExpansionPanel.
85
+ */
86
+ disabled?: boolean;
87
+ /**
88
+ * Sets `aria-controls`. The value should represent the `id` of the controlled content element.
89
+ */
90
+ ariaControls?: string;
91
+ /**
92
+ * The event handler that will be fired when the expanded state of the ExpansionPanel is about to change.
93
+ */
94
+ onAction?: (event: ExpansionPanelActionEvent) => void;
95
+ }
@@ -0,0 +1,10 @@
1
+ /**
2
+ * @license
3
+ *-------------------------------------------------------------------------------------------
4
+ * Copyright © 2026 Progress Software Corporation. All rights reserved.
5
+ * Licensed under commercial license. See LICENSE.md in the package root for more information
6
+ *-------------------------------------------------------------------------------------------
7
+ */
8
+ export * from './ExpansionPanel';
9
+ export * from './ExpansionPanelContent';
10
+ export * from './interfaces';
@@ -0,0 +1,61 @@
1
+ /**
2
+ * @license
3
+ *-------------------------------------------------------------------------------------------
4
+ * Copyright © 2026 Progress Software Corporation. All rights reserved.
5
+ * Licensed under commercial license. See LICENSE.md in the package root for more information
6
+ *-------------------------------------------------------------------------------------------
7
+ */
8
+ import { GridLayoutAlign } from './interfaces/GridLayoutProps';
9
+ import { GridLayoutItemProps } from './interfaces/GridLayoutItemProps';
10
+ import { PropType } from 'vue';
11
+ /**
12
+ * @hidden
13
+ */
14
+ declare const GridLayout: import('vue').DefineComponent<import('vue').ExtractPropTypes<{
15
+ id: PropType<string>;
16
+ gap: {
17
+ type: PropType<import('./interfaces/GridLayoutProps').GridLayoutGap>;
18
+ };
19
+ align: {
20
+ type: PropType<any>;
21
+ validator: (value: GridLayoutAlign) => any;
22
+ };
23
+ rows: PropType<import('..').GridLayoutRowProps[]>;
24
+ cols: PropType<import('..').GridLayoutColumnProps[]>;
25
+ items: PropType<GridLayoutItemProps[]>;
26
+ }>, {}, {}, {
27
+ hAlign(): any;
28
+ vAlign(): any;
29
+ gridLayoutClasses(): {
30
+ 'k-grid-layout': boolean;
31
+ 'k-justify-items-start': boolean;
32
+ 'k-justify-items-center': boolean;
33
+ 'k-justify-items-end': boolean;
34
+ 'k-justify-items-stretch': boolean;
35
+ 'k-align-items-start': boolean;
36
+ 'k-align-items-center': boolean;
37
+ 'k-align-items-end': boolean;
38
+ 'k-align-items-stretch': boolean;
39
+ };
40
+ gapStyle(): string;
41
+ gridTemplateRowsStyle(): any;
42
+ gridTemplateColumnsStyle(): any;
43
+ gridLayoutStyles(): {
44
+ gap: any;
45
+ gridTemplateColumns: any;
46
+ gridTemplateRows: any;
47
+ };
48
+ }, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {}, string, import('vue').PublicProps, Readonly<import('vue').ExtractPropTypes<{
49
+ id: PropType<string>;
50
+ gap: {
51
+ type: PropType<import('./interfaces/GridLayoutProps').GridLayoutGap>;
52
+ };
53
+ align: {
54
+ type: PropType<any>;
55
+ validator: (value: GridLayoutAlign) => any;
56
+ };
57
+ rows: PropType<import('..').GridLayoutRowProps[]>;
58
+ cols: PropType<import('..').GridLayoutColumnProps[]>;
59
+ items: PropType<GridLayoutItemProps[]>;
60
+ }>> & Readonly<{}>, {}, {}, {}, {}, string, import('vue').ComponentProvideOptions, true, {}, any>;
61
+ export { GridLayout };
@@ -0,0 +1,35 @@
1
+ /**
2
+ * @license
3
+ *-------------------------------------------------------------------------------------------
4
+ * Copyright © 2026 Progress Software Corporation. All rights reserved.
5
+ * Licensed under commercial license. See LICENSE.md in the package root for more information
6
+ *-------------------------------------------------------------------------------------------
7
+ */
8
+ import { PropType } from 'vue';
9
+ /**
10
+ * Represents the Object which is passed to the [`ref`](https://vuejs.org/docs/refs-and-the-dom.html)
11
+ * callback of the GridLayoutItem component.
12
+ */
13
+ /**
14
+ * @hidden
15
+ */
16
+ declare const GridLayoutItem: import('vue').DefineComponent<import('vue').ExtractPropTypes<{
17
+ content: PropType<any>;
18
+ id: PropType<string>;
19
+ col: PropType<number>;
20
+ colSpan: PropType<number>;
21
+ row: PropType<number>;
22
+ rowSpan: PropType<number>;
23
+ }>, {}, {}, {
24
+ gridLayoutItemStyles(): {
25
+ gridArea: string;
26
+ };
27
+ }, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {}, string, import('vue').PublicProps, Readonly<import('vue').ExtractPropTypes<{
28
+ content: PropType<any>;
29
+ id: PropType<string>;
30
+ col: PropType<number>;
31
+ colSpan: PropType<number>;
32
+ row: PropType<number>;
33
+ rowSpan: PropType<number>;
34
+ }>> & Readonly<{}>, {}, {}, {}, {}, string, import('vue').ComponentProvideOptions, true, {}, any>;
35
+ export { GridLayoutItem };
@@ -0,0 +1,17 @@
1
+ /**
2
+ * @license
3
+ *-------------------------------------------------------------------------------------------
4
+ * Copyright © 2026 Progress Software Corporation. All rights reserved.
5
+ * Licensed under commercial license. See LICENSE.md in the package root for more information
6
+ *-------------------------------------------------------------------------------------------
7
+ */
8
+ /**
9
+ * Represents the props of the [Kendo UI for Vue GridLayout column]({% slug overview_gridlayout %}).
10
+ */
11
+ export interface GridLayoutColumnProps {
12
+ /**
13
+ * Specifies the width of the GridLayout
14
+ * column ([see example]({% slug overview_gridlayout %})).
15
+ */
16
+ width?: number | string;
17
+ }
@@ -0,0 +1,46 @@
1
+ /**
2
+ * @license
3
+ *-------------------------------------------------------------------------------------------
4
+ * Copyright © 2026 Progress Software Corporation. All rights reserved.
5
+ * Licensed under commercial license. See LICENSE.md in the package root for more information
6
+ *-------------------------------------------------------------------------------------------
7
+ */
8
+ /**
9
+ * Represents the props of the [Kendo UI for Vue GridLayoutItem component]({% slug overview_gridlayout %}).
10
+ */
11
+ export interface GridLayoutItemProps {
12
+ /**
13
+ * Sets additional CSS classes to the GridLayoutItem.
14
+ */
15
+ class?: string;
16
+ /**
17
+ * Sets additional CSS styles to the GridLayoutItem.
18
+ */
19
+ style?: any;
20
+ /**
21
+ * Sets the `id` property of the root GridLayoutItem element.
22
+ */
23
+ id?: string;
24
+ /**
25
+ * Defines the column line from which the element will start ([see example]({% slug items_gridlayout %}#toc-items)).
26
+ */
27
+ col?: number;
28
+ /**
29
+ * Specifies the number of columns over which the element will span ([see example]({% slug items_gridlayout %}#toc-items)).
30
+ * Defaults to `1`.
31
+ */
32
+ colSpan?: number;
33
+ /**
34
+ * Defines the row line from which the element will start ([see example]({% slug items_gridlayout %}#toc-items)).
35
+ */
36
+ row?: number;
37
+ /**
38
+ * Specifies the number of rows over which the element will span ([see example]({% slug items_gridlayout %}#toc-items)).
39
+ * Defaults to `1`.
40
+ */
41
+ rowSpan?: number;
42
+ /**
43
+ * Sets the content of the GridLayoutItem.
44
+ */
45
+ content?: any;
46
+ }
@@ -0,0 +1,102 @@
1
+ /**
2
+ * @license
3
+ *-------------------------------------------------------------------------------------------
4
+ * Copyright © 2026 Progress Software Corporation. All rights reserved.
5
+ * Licensed under commercial license. See LICENSE.md in the package root for more information
6
+ *-------------------------------------------------------------------------------------------
7
+ */
8
+ import { GridLayoutColumnProps } from './GridLayoutColumnProps';
9
+ import { GridLayoutItemProps } from './GridLayoutItemProps';
10
+ import { GridLayoutRowProps } from './GridLayoutRowProps';
11
+ /**
12
+ * Represents the props of the [Kendo UI for Vue GridLayout component]({% slug overview_gridlayout %}).
13
+ */
14
+ export interface GridLayoutProps {
15
+ /**
16
+ * Sets additional CSS classes to the GridLayout.
17
+ */
18
+ className?: string;
19
+ /**
20
+ * Sets additional CSS styles to the GridLayout.
21
+ */
22
+ style?: any;
23
+ /**
24
+ * Sets the `id` property of the root GridLayout element.
25
+ */
26
+ id?: string;
27
+ /**
28
+ * Specifies the gaps between the elements ([see example]({% slug layout_gridlayout_gaps %})).
29
+ *
30
+ * * The possible keys are:
31
+ * * `rows`
32
+ * * `columns`
33
+ */
34
+ gap?: GridLayoutGap;
35
+ /**
36
+ * Specifies the horizontal and vertical alignment of the inner GridLayout elements (see demos
37
+ * [here]({% slug layout_gridlayout_alignment %}#toc-horizontal-alignment) and [here]({% slug layout_gridlayout_alignment %}#toc-vertical-alignment)).
38
+ *
39
+ * The possible keys are:
40
+ * * `horizontal`&mdash;Defines the possible horizontal alignment of the inner GridLayout elements.
41
+ * * `start`&mdash;Uses the start point of the container.
42
+ * * `center`&mdash;Uses the central point of the container.
43
+ * * `end`&mdash;Uses the end point of the container.
44
+ * * (Default)`stretch`&mdash;Stretches the items to fill the width of the container.
45
+ * * `vertical`&mdash; Defines the possible vertical alignment of the inner GridLayout elements.
46
+ * * `top`&mdash;Uses the top point of the container.
47
+ * * `middle`&mdash;Uses the middle point of the container.
48
+ * * `bottom`&mdash;Uses the bottom point of the container.
49
+ * * (Default)`stretch`&mdash;Stretches the items to fill the height of the container.
50
+ */
51
+ align?: GridLayoutAlign | any;
52
+ /**
53
+ * Specifies the default number of columns and their widths ([see example]({% slug layout_gridlayout_rowscolumns %})).
54
+ */
55
+ cols?: GridLayoutColumnProps[];
56
+ /**
57
+ * Specifies the default number of rows and their height ([see example]({% slug layout_gridlayout_rowscolumns %})).
58
+ */
59
+ rows?: GridLayoutRowProps[];
60
+ /**
61
+ * The collection of GridLayoutItemProps.
62
+ */
63
+ items?: GridLayoutItemProps[];
64
+ }
65
+ /**
66
+ * Specifies the gaps between the elements.
67
+ */
68
+ export interface GridLayoutGap {
69
+ /**
70
+ * Represents the row gap between the elements
71
+ */
72
+ rows?: number | string;
73
+ /**
74
+ * Represents the column gap between the elements
75
+ */
76
+ cols?: number | string;
77
+ }
78
+ /**
79
+ * Specifies the horizontal and vertical alignment of the inner GridLayout elements.
80
+ */
81
+ export interface GridLayoutAlign {
82
+ /**
83
+ * Defines the possible horizontal alignment of the inner GridLayout elements.
84
+ *
85
+ * The available values are:
86
+ * - `start`&mdash;Uses the start point of the container.
87
+ * - `center`&mdash;Uses the center point of the container.
88
+ * - `end`&mdash;Uses the end point of the container.
89
+ * - (Default)`stretch`&mdash;Stretches the items to fill the width of the container.
90
+ */
91
+ horizontal?: 'start' | 'center' | 'end' | 'stretch';
92
+ /**
93
+ * Defines the possible vertical alignment of the inner GridLayout elements.
94
+ *
95
+ * The available values are:
96
+ * - `top`&mdash;Uses the top point of the container.
97
+ * - `middle`&mdash;Uses the middle point of the container.
98
+ * - `bottom`&mdash;Uses the bottom point of the container.
99
+ * - (Default)`stretch`&mdash;Stretches the items to fill the height of the container.
100
+ */
101
+ vertical?: 'top' | 'middle' | 'bottom' | 'stretch';
102
+ }
@@ -0,0 +1,17 @@
1
+ /**
2
+ * @license
3
+ *-------------------------------------------------------------------------------------------
4
+ * Copyright © 2026 Progress Software Corporation. All rights reserved.
5
+ * Licensed under commercial license. See LICENSE.md in the package root for more information
6
+ *-------------------------------------------------------------------------------------------
7
+ */
8
+ /**
9
+ * Represents the props of the [Kendo UI for Vue GridLayout row]({% slug overview_gridlayout %}).
10
+ */
11
+ export interface GridLayoutRowProps {
12
+ /**
13
+ * Specifies the height of the GridLayout
14
+ * row ([see example]({% slug overview_gridlayout %})).
15
+ */
16
+ height?: number | string;
17
+ }