@progress/kendo-vue-layout 8.0.3-develop.1 → 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.
- package/actionsheet/ActionSheet.d.ts +234 -0
- package/actionsheet/ActionSheetContent.d.ts +25 -0
- package/actionsheet/ActionSheetFooter.d.ts +25 -0
- package/actionsheet/ActionSheetHeader.d.ts +34 -0
- package/actionsheet/ActionSheetItem.d.ts +65 -0
- package/actionsheet/interfaces/ActionSheetContentProps.d.ts +16 -0
- package/actionsheet/interfaces/ActionSheetFooterProps.d.ts +16 -0
- package/actionsheet/interfaces/ActionSheetHeaderProps.d.ts +20 -0
- package/actionsheet/interfaces/ActionSheetItemProps.d.ts +81 -0
- package/appbar/AppBar.d.ts +60 -0
- package/appbar/AppBarSection.d.ts +21 -0
- package/appbar/AppBarSpacer.d.ts +30 -0
- package/appbar/interfaces/AppBarProps.d.ts +74 -0
- package/appbar/interfaces/AppBarSectionProps.d.ts +12 -0
- package/appbar/interfaces/AppBarSpacerProps.d.ts +14 -0
- package/bottomnavigation/BottomNavigation.d.ts +117 -0
- package/bottomnavigation/BottomNavigationItem.d.ts +59 -0
- package/bottomnavigation/BottomNavigationItemProps.d.ts +61 -0
- package/bottomnavigation/BottomNavigationProps.d.ts +154 -0
- package/bottomnavigation/models/events.d.ts +25 -0
- package/bottomnavigation/models/utils.d.ts +43 -0
- package/breadcrumb/Breadcrumb.d.ts +143 -0
- package/breadcrumb/BreadcrumbDelimiter.d.ts +21 -0
- package/breadcrumb/BreadcrumbLink.d.ts +63 -0
- package/breadcrumb/BreadcrumbListItem.d.ts +30 -0
- package/breadcrumb/BreadcrumbOrderedList.d.ts +42 -0
- package/breadcrumb/interfaces/BreadcrumbDelimiterProps.d.ts +24 -0
- package/breadcrumb/interfaces/BreadcrumbLinkProps.d.ts +61 -0
- package/breadcrumb/interfaces/BreadcrumbListItemProps.d.ts +24 -0
- package/breadcrumb/interfaces/BreadcrumbOrderedListProps.d.ts +42 -0
- package/breadcrumb/interfaces/BreadcrumbProps.d.ts +138 -0
- package/card/Avatar.d.ts +76 -0
- package/card/Card.d.ts +50 -0
- package/card/CardActions.d.ts +52 -0
- package/card/CardBody.d.ts +12 -0
- package/card/CardFooter.d.ts +12 -0
- package/card/CardHeader.d.ts +12 -0
- package/card/CardImage.d.ts +17 -0
- package/card/CardSubtitle.d.ts +12 -0
- package/card/CardTitle.d.ts +12 -0
- package/card/interfaces/AvatarProps.d.ts +79 -0
- package/card/interfaces/CardActionsProps.d.ts +29 -0
- package/card/interfaces/CardBodyProps.d.ts +9 -0
- package/card/interfaces/CardFooterProps.d.ts +9 -0
- package/card/interfaces/CardHeaderProps.d.ts +9 -0
- package/card/interfaces/CardImageProps.d.ts +13 -0
- package/card/interfaces/CardProps.d.ts +34 -0
- package/card/interfaces/CardSubtitleProps.d.ts +9 -0
- package/card/interfaces/CardTitleProps.d.ts +9 -0
- package/card/interfaces/Enums.d.ts +39 -0
- package/card/interfaces/Enums.js +1 -1
- package/card/interfaces/Enums.mjs +5 -5
- package/dist/cdn/js/kendo-vue-layout.js +1 -1
- package/drawer/Drawer.d.ts +148 -0
- package/drawer/DrawerContent.d.ts +84 -0
- package/drawer/DrawerItem.d.ts +81 -0
- package/drawer/DrawerNavigation.d.ts +47 -0
- package/drawer/context/DrawerContext.d.ts +24 -0
- package/drawer/interfaces/DrawerAnimation.d.ts +21 -0
- package/drawer/interfaces/DrawerContentProps.d.ts +12 -0
- package/drawer/interfaces/DrawerItemHandle.d.ts +24 -0
- package/drawer/interfaces/DrawerItemProps.d.ts +55 -0
- package/drawer/interfaces/DrawerNavigationProps.d.ts +21 -0
- package/drawer/interfaces/DrawerProps.d.ts +92 -0
- package/drawer/interfaces/DrawerSelectEvent.d.ts +20 -0
- package/expansionpanel/ExpansionPanel.d.ts +59 -0
- package/expansionpanel/ExpansionPanel.mjs +1 -1
- package/expansionpanel/ExpansionPanelContent.d.ts +12 -0
- package/expansionpanel/interfaces.d.ts +95 -0
- package/expansionpanel/main.d.ts +10 -0
- package/gridlayout/GridLayout.d.ts +61 -0
- package/gridlayout/GridLayoutItem.d.ts +35 -0
- package/gridlayout/interfaces/GridLayoutColumnProps.d.ts +17 -0
- package/gridlayout/interfaces/GridLayoutItemProps.d.ts +46 -0
- package/gridlayout/interfaces/GridLayoutProps.d.ts +102 -0
- package/gridlayout/interfaces/GridLayoutRowProps.d.ts +17 -0
- package/index.d.mts +86 -4954
- package/index.d.ts +86 -4954
- package/menu/BaseMenuItemInternalProps.d.ts +27 -0
- package/menu/MenuProps.d.ts +58 -0
- package/menu/components/Menu.d.ts +117 -0
- package/menu/components/MenuItemArrow.d.ts +52 -0
- package/menu/components/MenuItemArrow.mjs +2 -2
- package/menu/components/MenuItemInternal.d.ts +173 -0
- package/menu/components/MenuItemLink.d.ts +53 -0
- package/menu/consts.d.ts +61 -0
- package/menu/events.d.ts +21 -0
- package/menu/models/BaseMenuItem.d.ts +65 -0
- package/menu/models/MenuItemModel.d.ts +26 -0
- package/menu/utils/DirectionHolder.d.ts +18 -0
- package/menu/utils/MouseOverHandler.d.ts +24 -0
- package/menu/utils/getNewItemIdUponKeyboardNavigation.d.ts +14 -0
- package/menu/utils/hoverDelay.d.ts +16 -0
- package/menu/utils/itemsIdsUtils.d.ts +71 -0
- package/menu/utils/itemsIdsUtils.mjs +49 -49
- package/menu/utils/misc.d.ts +23 -0
- package/menu/utils/prepareInputItemsForInternalWork.d.ts +12 -0
- package/messages/main.d.ts +22 -0
- package/package-metadata.d.ts +12 -0
- package/package-metadata.js +1 -1
- package/package-metadata.mjs +2 -2
- package/package.json +15 -9
- package/panelbar/PanelBar.d.ts +88 -0
- package/panelbar/PanelBarItem.d.ts +87 -0
- package/panelbar/interfaces/NavigationAction.d.ts +15 -0
- package/panelbar/interfaces/PanelBarItemClickEventArguments.d.ts +14 -0
- package/panelbar/interfaces/PanelBarItemProps.d.ts +97 -0
- package/panelbar/interfaces/PanelBarProps.d.ts +65 -0
- package/panelbar/interfaces/PanelBarSelectEventArguments.d.ts +20 -0
- package/panelbar/interfaces/RenderPanelBarItem.d.ts +21 -0
- package/panelbar/util.d.ts +42 -0
- package/splitter/Splitter.d.ts +170 -0
- package/splitter/SplitterBar.d.ts +72 -0
- package/splitter/SplitterPane.d.ts +101 -0
- package/stacklayout/StackLayout.d.ts +64 -0
- package/stacklayout/StackLayoutProps.d.ts +82 -0
- package/stepper/Step.d.ts +120 -0
- package/stepper/Stepper.d.ts +195 -0
- package/stepper/contants.d.ts +15 -0
- package/stepper/context/StepperContext.d.ts +23 -0
- package/stepper/interfaces/StepChangeEvent.d.ts +16 -0
- package/stepper/interfaces/StepFocusEvent.d.ts +12 -0
- package/stepper/interfaces/StepHandle.d.ts +20 -0
- package/stepper/interfaces/StepProps.d.ts +91 -0
- package/stepper/interfaces/StepperChangeEvent.d.ts +16 -0
- package/stepper/interfaces/StepperFocusEvent.d.ts +12 -0
- package/stepper/interfaces/StepperHandle.d.ts +20 -0
- package/stepper/interfaces/StepperOnNavigateEvent.d.ts +30 -0
- package/stepper/interfaces/StepperProps.d.ts +95 -0
- package/stepper/messages/main.d.ts +22 -0
- package/tabstrip/TabStrip.d.ts +171 -0
- package/tabstrip/TabStripContent.d.ts +71 -0
- package/tabstrip/TabStripNavigation.d.ts +101 -0
- package/tabstrip/TabStripNavigationItem.d.ts +118 -0
- package/tabstrip/TabStripTab.d.ts +59 -0
- package/tabstrip/utils.d.ts +8 -0
- package/tilelayout/ResizeHandlers.d.ts +84 -0
- package/tilelayout/Tile.d.ts +105 -0
- package/tilelayout/TileLayout.d.ts +126 -0
- package/tilelayout/interfaces/main.d.ts +205 -0
|
@@ -0,0 +1,234 @@
|
|
|
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 { Navigation } from '@progress/kendo-vue-common';
|
|
9
|
+
import { ActionSheetItemProps } from './interfaces/ActionSheetItemProps';
|
|
10
|
+
import { PropType } from 'vue';
|
|
11
|
+
/**
|
|
12
|
+
* The props of the ActionSheet component.
|
|
13
|
+
*/
|
|
14
|
+
export interface ActionSheetProps {
|
|
15
|
+
/**
|
|
16
|
+
* The collection of items that will be rendered in the ActionSheet.
|
|
17
|
+
*/
|
|
18
|
+
items?: ActionSheetItemProps[];
|
|
19
|
+
/**
|
|
20
|
+
* Specifies the text that is rendered under the title.
|
|
21
|
+
*/
|
|
22
|
+
subTitle?: string;
|
|
23
|
+
/**
|
|
24
|
+
* Specifies the text that is rendered as title.
|
|
25
|
+
*/
|
|
26
|
+
title?: string;
|
|
27
|
+
/**
|
|
28
|
+
* Fires when the modal overlay is clicked.
|
|
29
|
+
*/
|
|
30
|
+
onClose?: (event: any) => void;
|
|
31
|
+
/**
|
|
32
|
+
* Fires when an ActionSheet item is clicked.
|
|
33
|
+
*/
|
|
34
|
+
onItemselect?: (event: {
|
|
35
|
+
syntheticEvent: any;
|
|
36
|
+
title?: string;
|
|
37
|
+
item?: any;
|
|
38
|
+
}) => void;
|
|
39
|
+
/**
|
|
40
|
+
* Specifies the `tabIndex` of the ActionSheet.
|
|
41
|
+
*/
|
|
42
|
+
tabIndex?: number;
|
|
43
|
+
/**
|
|
44
|
+
* Specifies if the ActionSheet can be navigatable with keyboard.
|
|
45
|
+
* Defaults to `true`.
|
|
46
|
+
*/
|
|
47
|
+
navigatable?: boolean;
|
|
48
|
+
/**
|
|
49
|
+
* Specifies the selectors of the navigatable elements inside the templates of the ActionSheet.
|
|
50
|
+
*/
|
|
51
|
+
navigatableElements?: string[];
|
|
52
|
+
/**
|
|
53
|
+
* Controls the popup animation. By default, the animation is enabled.
|
|
54
|
+
*/
|
|
55
|
+
animation?: boolean;
|
|
56
|
+
/**
|
|
57
|
+
* @hidden
|
|
58
|
+
*/
|
|
59
|
+
animationStyles?: any;
|
|
60
|
+
/**
|
|
61
|
+
* @hidden
|
|
62
|
+
* Used to render the close button in the header of the ActionSheet.
|
|
63
|
+
*/
|
|
64
|
+
actions?: any;
|
|
65
|
+
/**
|
|
66
|
+
* Specifies the duration of the transition for the entering and closing Animation. Defaults to `300ms`.
|
|
67
|
+
*/
|
|
68
|
+
animationDuration?: number;
|
|
69
|
+
/**
|
|
70
|
+
* The CSS classes that will be rendered on the inner ActionSheet element.
|
|
71
|
+
*/
|
|
72
|
+
className?: string;
|
|
73
|
+
/**
|
|
74
|
+
* The CSS classes that will be rendered on the DOM element that wraps the header section of the ActionSheet element.
|
|
75
|
+
*/
|
|
76
|
+
headerClassName?: string;
|
|
77
|
+
/**
|
|
78
|
+
* The CSS classes that will be rendered on the DOM element that wraps the footer section of the ActionSheet element.
|
|
79
|
+
*/
|
|
80
|
+
footerClassName?: string;
|
|
81
|
+
/**
|
|
82
|
+
* The CSS classes that will be rendered on the DOM element that wraps the content section of the ActionSheet element.
|
|
83
|
+
*/
|
|
84
|
+
contentClassName?: string;
|
|
85
|
+
/**
|
|
86
|
+
* The custom Styles that will be applied on the DOM element that wraps the header section of the ActionSheet element.
|
|
87
|
+
*/
|
|
88
|
+
headerStyle?: string;
|
|
89
|
+
/**
|
|
90
|
+
* Sets the header content of the ActionSheet either as string that is pointing to a slot template of as render function.
|
|
91
|
+
*/
|
|
92
|
+
header?: string | Function;
|
|
93
|
+
/**
|
|
94
|
+
* Sets the content content of the ActionSheet either as string that is pointing to a slot template of as render function.
|
|
95
|
+
*/
|
|
96
|
+
content?: string | Function;
|
|
97
|
+
/**
|
|
98
|
+
* Sets the footer content of the ActionSheet either as string that is pointing to a slot template of as render function.
|
|
99
|
+
*/
|
|
100
|
+
footer?: string | Function;
|
|
101
|
+
/**
|
|
102
|
+
* Sets the item content of the ActionSheet either as string that is pointing to a slot template of as render function.
|
|
103
|
+
*/
|
|
104
|
+
item?: string | Function;
|
|
105
|
+
/**
|
|
106
|
+
* Specifies the state of the ActionSheet.
|
|
107
|
+
*/
|
|
108
|
+
expand?: boolean;
|
|
109
|
+
}
|
|
110
|
+
/**
|
|
111
|
+
* @hidden
|
|
112
|
+
*/
|
|
113
|
+
declare const ActionSheet: import('vue').DefineComponent<import('vue').ExtractPropTypes<{
|
|
114
|
+
expand: PropType<boolean>;
|
|
115
|
+
animation: {
|
|
116
|
+
type: PropType<boolean>;
|
|
117
|
+
default: boolean;
|
|
118
|
+
};
|
|
119
|
+
animationDuration: {
|
|
120
|
+
type: PropType<number>;
|
|
121
|
+
default: number;
|
|
122
|
+
};
|
|
123
|
+
animationStyles: PropType<any>;
|
|
124
|
+
tabIndex: PropType<number>;
|
|
125
|
+
items: PropType<ActionSheetItemProps[]>;
|
|
126
|
+
subTitle: PropType<string>;
|
|
127
|
+
title: PropType<string>;
|
|
128
|
+
className: PropType<string>;
|
|
129
|
+
headerClassName: {
|
|
130
|
+
type: PropType<string>;
|
|
131
|
+
default: any;
|
|
132
|
+
};
|
|
133
|
+
contentClassName: {
|
|
134
|
+
type: PropType<string>;
|
|
135
|
+
default: any;
|
|
136
|
+
};
|
|
137
|
+
headerStyle: {
|
|
138
|
+
type: PropType<string>;
|
|
139
|
+
default: any;
|
|
140
|
+
};
|
|
141
|
+
footerClassName: {
|
|
142
|
+
type: PropType<string>;
|
|
143
|
+
default: any;
|
|
144
|
+
};
|
|
145
|
+
header: PropType<string | Function>;
|
|
146
|
+
content: PropType<string | Function>;
|
|
147
|
+
footer: PropType<string | Function>;
|
|
148
|
+
item: PropType<string | Function>;
|
|
149
|
+
navigatable: {
|
|
150
|
+
type: PropType<boolean>;
|
|
151
|
+
default: boolean;
|
|
152
|
+
};
|
|
153
|
+
navigatableElements: {
|
|
154
|
+
type: PropType<string[]>;
|
|
155
|
+
default: () => any[];
|
|
156
|
+
};
|
|
157
|
+
actions: PropType<any>;
|
|
158
|
+
onClose: PropType<(event: any) => void>;
|
|
159
|
+
}>, {}, {
|
|
160
|
+
show: boolean;
|
|
161
|
+
slide: boolean;
|
|
162
|
+
}, {
|
|
163
|
+
topGroupItems(): Array<ActionSheetItemProps> | undefined;
|
|
164
|
+
bottomGroupItems(): Array<ActionSheetItemProps> | undefined;
|
|
165
|
+
shouldRenderSeparator(): boolean;
|
|
166
|
+
}, {
|
|
167
|
+
handleKeyDown(e: any): void;
|
|
168
|
+
onTab(target: HTMLElement, nav: Navigation, ev: any): void;
|
|
169
|
+
handleOverlayClick(ev: any): void;
|
|
170
|
+
handleItemClick(ev: {
|
|
171
|
+
syntheticEvent: any;
|
|
172
|
+
title?: string;
|
|
173
|
+
item?: any;
|
|
174
|
+
}): void;
|
|
175
|
+
onEnter(target: HTMLElement, nav: Navigation, ev: any): void;
|
|
176
|
+
onEscape(_target: HTMLElement, _nav: Navigation, ev: any): void;
|
|
177
|
+
hideActionSheet(): void;
|
|
178
|
+
}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {}, string, import('vue').PublicProps, Readonly<import('vue').ExtractPropTypes<{
|
|
179
|
+
expand: PropType<boolean>;
|
|
180
|
+
animation: {
|
|
181
|
+
type: PropType<boolean>;
|
|
182
|
+
default: boolean;
|
|
183
|
+
};
|
|
184
|
+
animationDuration: {
|
|
185
|
+
type: PropType<number>;
|
|
186
|
+
default: number;
|
|
187
|
+
};
|
|
188
|
+
animationStyles: PropType<any>;
|
|
189
|
+
tabIndex: PropType<number>;
|
|
190
|
+
items: PropType<ActionSheetItemProps[]>;
|
|
191
|
+
subTitle: PropType<string>;
|
|
192
|
+
title: PropType<string>;
|
|
193
|
+
className: PropType<string>;
|
|
194
|
+
headerClassName: {
|
|
195
|
+
type: PropType<string>;
|
|
196
|
+
default: any;
|
|
197
|
+
};
|
|
198
|
+
contentClassName: {
|
|
199
|
+
type: PropType<string>;
|
|
200
|
+
default: any;
|
|
201
|
+
};
|
|
202
|
+
headerStyle: {
|
|
203
|
+
type: PropType<string>;
|
|
204
|
+
default: any;
|
|
205
|
+
};
|
|
206
|
+
footerClassName: {
|
|
207
|
+
type: PropType<string>;
|
|
208
|
+
default: any;
|
|
209
|
+
};
|
|
210
|
+
header: PropType<string | Function>;
|
|
211
|
+
content: PropType<string | Function>;
|
|
212
|
+
footer: PropType<string | Function>;
|
|
213
|
+
item: PropType<string | Function>;
|
|
214
|
+
navigatable: {
|
|
215
|
+
type: PropType<boolean>;
|
|
216
|
+
default: boolean;
|
|
217
|
+
};
|
|
218
|
+
navigatableElements: {
|
|
219
|
+
type: PropType<string[]>;
|
|
220
|
+
default: () => any[];
|
|
221
|
+
};
|
|
222
|
+
actions: PropType<any>;
|
|
223
|
+
onClose: PropType<(event: any) => void>;
|
|
224
|
+
}>> & Readonly<{}>, {
|
|
225
|
+
animation: boolean;
|
|
226
|
+
contentClassName: string;
|
|
227
|
+
animationDuration: number;
|
|
228
|
+
headerClassName: string;
|
|
229
|
+
headerStyle: string;
|
|
230
|
+
footerClassName: string;
|
|
231
|
+
navigatable: boolean;
|
|
232
|
+
navigatableElements: string[];
|
|
233
|
+
}, {}, {}, {}, string, import('vue').ComponentProvideOptions, true, {}, any>;
|
|
234
|
+
export { ActionSheet };
|
|
@@ -0,0 +1,25 @@
|
|
|
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
|
+
* @hidden
|
|
11
|
+
*/
|
|
12
|
+
declare const ActionSheetContent: import('vue').DefineComponent<import('vue').ExtractPropTypes<{
|
|
13
|
+
contentClassName: {
|
|
14
|
+
type: PropType<string>;
|
|
15
|
+
default: any;
|
|
16
|
+
};
|
|
17
|
+
}>, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {}, string, import('vue').PublicProps, Readonly<import('vue').ExtractPropTypes<{
|
|
18
|
+
contentClassName: {
|
|
19
|
+
type: PropType<string>;
|
|
20
|
+
default: any;
|
|
21
|
+
};
|
|
22
|
+
}>> & Readonly<{}>, {
|
|
23
|
+
contentClassName: string;
|
|
24
|
+
}, {}, {}, {}, string, import('vue').ComponentProvideOptions, true, {}, any>;
|
|
25
|
+
export { ActionSheetContent };
|
|
@@ -0,0 +1,25 @@
|
|
|
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
|
+
* @hidden
|
|
11
|
+
*/
|
|
12
|
+
declare const ActionSheetFooter: import('vue').DefineComponent<import('vue').ExtractPropTypes<{
|
|
13
|
+
footerClassName: {
|
|
14
|
+
type: PropType<string>;
|
|
15
|
+
default: any;
|
|
16
|
+
};
|
|
17
|
+
}>, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {}, string, import('vue').PublicProps, Readonly<import('vue').ExtractPropTypes<{
|
|
18
|
+
footerClassName: {
|
|
19
|
+
type: PropType<string>;
|
|
20
|
+
default: any;
|
|
21
|
+
};
|
|
22
|
+
}>> & Readonly<{}>, {
|
|
23
|
+
footerClassName: string;
|
|
24
|
+
}, {}, {}, {}, string, import('vue').ComponentProvideOptions, true, {}, any>;
|
|
25
|
+
export { ActionSheetFooter };
|
|
@@ -0,0 +1,34 @@
|
|
|
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
|
+
* @hidden
|
|
11
|
+
*/
|
|
12
|
+
declare const ActionSheetHeader: import('vue').DefineComponent<import('vue').ExtractPropTypes<{
|
|
13
|
+
headerClassName: {
|
|
14
|
+
type: PropType<string>;
|
|
15
|
+
default: any;
|
|
16
|
+
};
|
|
17
|
+
headerStyle: {
|
|
18
|
+
type: PropType<string>;
|
|
19
|
+
default: any;
|
|
20
|
+
};
|
|
21
|
+
}>, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {}, string, import('vue').PublicProps, Readonly<import('vue').ExtractPropTypes<{
|
|
22
|
+
headerClassName: {
|
|
23
|
+
type: PropType<string>;
|
|
24
|
+
default: any;
|
|
25
|
+
};
|
|
26
|
+
headerStyle: {
|
|
27
|
+
type: PropType<string>;
|
|
28
|
+
default: any;
|
|
29
|
+
};
|
|
30
|
+
}>> & Readonly<{}>, {
|
|
31
|
+
headerClassName: string;
|
|
32
|
+
headerStyle: string;
|
|
33
|
+
}, {}, {}, {}, string, import('vue').ComponentProvideOptions, true, {}, any>;
|
|
34
|
+
export { ActionSheetHeader };
|
|
@@ -0,0 +1,65 @@
|
|
|
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
|
+
* @hidden
|
|
11
|
+
*/
|
|
12
|
+
declare const ActionSheetItem: import('vue').DefineComponent<import('vue').ExtractPropTypes<{
|
|
13
|
+
id: PropType<number>;
|
|
14
|
+
description: PropType<string>;
|
|
15
|
+
disabled: PropType<boolean>;
|
|
16
|
+
group: {
|
|
17
|
+
type: PropType<string>;
|
|
18
|
+
validator: (value?: string) => any;
|
|
19
|
+
};
|
|
20
|
+
item: PropType<object>;
|
|
21
|
+
icon: PropType<string>;
|
|
22
|
+
svgIcon: PropType<import('@progress/kendo-vue-common').SVGIcon>;
|
|
23
|
+
iconColor: PropType<string>;
|
|
24
|
+
iconSize: PropType<string>;
|
|
25
|
+
content: PropType<string | Function>;
|
|
26
|
+
title: PropType<string>;
|
|
27
|
+
tabIndex: {
|
|
28
|
+
type: PropType<number>;
|
|
29
|
+
default: number;
|
|
30
|
+
};
|
|
31
|
+
}>, {}, {}, {
|
|
32
|
+
wrapperClass(): {
|
|
33
|
+
'k-actionsheet-item': boolean;
|
|
34
|
+
'k-cursor-pointer': boolean;
|
|
35
|
+
'k-disabled': any;
|
|
36
|
+
};
|
|
37
|
+
}, {
|
|
38
|
+
onClick(event: any): void;
|
|
39
|
+
}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {
|
|
40
|
+
click: any;
|
|
41
|
+
}, string, import('vue').PublicProps, Readonly<import('vue').ExtractPropTypes<{
|
|
42
|
+
id: PropType<number>;
|
|
43
|
+
description: PropType<string>;
|
|
44
|
+
disabled: PropType<boolean>;
|
|
45
|
+
group: {
|
|
46
|
+
type: PropType<string>;
|
|
47
|
+
validator: (value?: string) => any;
|
|
48
|
+
};
|
|
49
|
+
item: PropType<object>;
|
|
50
|
+
icon: PropType<string>;
|
|
51
|
+
svgIcon: PropType<import('@progress/kendo-vue-common').SVGIcon>;
|
|
52
|
+
iconColor: PropType<string>;
|
|
53
|
+
iconSize: PropType<string>;
|
|
54
|
+
content: PropType<string | Function>;
|
|
55
|
+
title: PropType<string>;
|
|
56
|
+
tabIndex: {
|
|
57
|
+
type: PropType<number>;
|
|
58
|
+
default: number;
|
|
59
|
+
};
|
|
60
|
+
}>> & Readonly<{
|
|
61
|
+
onClick?: (...args: any[] | unknown[]) => any;
|
|
62
|
+
}>, {
|
|
63
|
+
tabIndex: number;
|
|
64
|
+
}, {}, {}, {}, string, import('vue').ComponentProvideOptions, true, {}, any>;
|
|
65
|
+
export { ActionSheetItem };
|
|
@@ -0,0 +1,16 @@
|
|
|
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 ActionSheetContent component.
|
|
10
|
+
*/
|
|
11
|
+
export interface ActionSheetContentProps {
|
|
12
|
+
/**
|
|
13
|
+
* Sets additional CSS classes to the ActionSheetContent.
|
|
14
|
+
*/
|
|
15
|
+
contentClassName?: string;
|
|
16
|
+
}
|
|
@@ -0,0 +1,16 @@
|
|
|
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 ActionSheetFooter component.
|
|
10
|
+
*/
|
|
11
|
+
export interface ActionSheetFooterProps {
|
|
12
|
+
/**
|
|
13
|
+
* Sets additional CSS classes to the ActionSheetFooter.
|
|
14
|
+
*/
|
|
15
|
+
footerClassName?: string;
|
|
16
|
+
}
|
|
@@ -0,0 +1,20 @@
|
|
|
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 ActionSheetHeader component.
|
|
10
|
+
*/
|
|
11
|
+
export interface ActionSheetHeaderProps {
|
|
12
|
+
/**
|
|
13
|
+
* Sets additional CSS classes to the ActionSheetHeader.
|
|
14
|
+
*/
|
|
15
|
+
headerClassName?: string;
|
|
16
|
+
/**
|
|
17
|
+
* Sets additional CSS styles to the ActionSheetHeader.
|
|
18
|
+
*/
|
|
19
|
+
headerStyle?: string;
|
|
20
|
+
}
|
|
@@ -0,0 +1,81 @@
|
|
|
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
|
+
* Represents the props of the Kendo UI for Vue ActionSheetItem.
|
|
11
|
+
*/
|
|
12
|
+
export interface ActionSheetItemProps {
|
|
13
|
+
/**
|
|
14
|
+
* Sets additional CSS classes to the ActionSheetItem.
|
|
15
|
+
*/
|
|
16
|
+
class?: string;
|
|
17
|
+
/**
|
|
18
|
+
* Sets additional CSS styles to the ActionSheetItem.
|
|
19
|
+
*/
|
|
20
|
+
style?: object;
|
|
21
|
+
/**
|
|
22
|
+
* Specifies additional text rendered under the item's title.
|
|
23
|
+
*/
|
|
24
|
+
description?: string;
|
|
25
|
+
/**
|
|
26
|
+
* Specifies if the ActionSheet item is initially disabled.
|
|
27
|
+
*/
|
|
28
|
+
disabled?: boolean;
|
|
29
|
+
/**
|
|
30
|
+
* Defines the group of the item. Items can be segregated in two groups - `top` and `bottom`.
|
|
31
|
+
* Each specifying whether the ActionSheet item will be rendered over the separator or under it.
|
|
32
|
+
*/
|
|
33
|
+
group?: 'top' | 'bottom' | string;
|
|
34
|
+
/**
|
|
35
|
+
* Defines the icon rendered inside the ActionSheet item.
|
|
36
|
+
*/
|
|
37
|
+
icon?: string;
|
|
38
|
+
/**
|
|
39
|
+
* Defines an SVGIcon to be rendered inside the ActionSheet item.
|
|
40
|
+
*/
|
|
41
|
+
svgIcon?: SVGIcon;
|
|
42
|
+
/**
|
|
43
|
+
* Defines an size of the icon or SVGIcon that is rendered inside the ActionSheet item.
|
|
44
|
+
*/
|
|
45
|
+
iconSize?: string;
|
|
46
|
+
/**
|
|
47
|
+
* Defines the color of the icon or SVGIcon that is rendered inside the ActionSheet item.
|
|
48
|
+
*/
|
|
49
|
+
iconColor?: string;
|
|
50
|
+
/**
|
|
51
|
+
* Specifies the text content of the ActionSheet item.
|
|
52
|
+
*/
|
|
53
|
+
title?: string;
|
|
54
|
+
/**
|
|
55
|
+
* @hidden
|
|
56
|
+
*/
|
|
57
|
+
item?: object;
|
|
58
|
+
/**
|
|
59
|
+
* Sets the content of the ActionSheetItem either as string that is pointing to a slot template of as render function.
|
|
60
|
+
*/
|
|
61
|
+
content?: string | Function;
|
|
62
|
+
/**
|
|
63
|
+
* @hidden
|
|
64
|
+
*/
|
|
65
|
+
onClick?: (event: {
|
|
66
|
+
event: any;
|
|
67
|
+
title?: string;
|
|
68
|
+
}) => void;
|
|
69
|
+
/**
|
|
70
|
+
* @hidden
|
|
71
|
+
*/
|
|
72
|
+
onKeydown?: (event: any, title: string | undefined, id: number | undefined) => void;
|
|
73
|
+
/**
|
|
74
|
+
* @hidden
|
|
75
|
+
*/
|
|
76
|
+
id?: number;
|
|
77
|
+
/**
|
|
78
|
+
* The tabIndex of the ActionSheetItem.
|
|
79
|
+
*/
|
|
80
|
+
tabIndex?: number;
|
|
81
|
+
}
|
|
@@ -0,0 +1,60 @@
|
|
|
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
|
+
* @hidden
|
|
11
|
+
*/
|
|
12
|
+
export interface AppBarComputed {
|
|
13
|
+
[key: string]: any;
|
|
14
|
+
wrapperClass: object;
|
|
15
|
+
}
|
|
16
|
+
/**
|
|
17
|
+
* @hidden
|
|
18
|
+
*/
|
|
19
|
+
declare const AppBar: import('vue').DefineComponent<import('vue').ExtractPropTypes<{
|
|
20
|
+
id: PropType<string>;
|
|
21
|
+
themeColor: {
|
|
22
|
+
type: PropType<string>;
|
|
23
|
+
default: string;
|
|
24
|
+
};
|
|
25
|
+
position: {
|
|
26
|
+
type: PropType<string>;
|
|
27
|
+
default: string;
|
|
28
|
+
validator: (value: string) => any;
|
|
29
|
+
};
|
|
30
|
+
positionMode: {
|
|
31
|
+
type: PropType<string>;
|
|
32
|
+
default: string;
|
|
33
|
+
validator: (value: string) => any;
|
|
34
|
+
};
|
|
35
|
+
}>, {}, {}, {
|
|
36
|
+
wrapperClass(): AppBarComputed['wrapperClass'];
|
|
37
|
+
}, {
|
|
38
|
+
focus(): void;
|
|
39
|
+
}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {}, string, import('vue').PublicProps, Readonly<import('vue').ExtractPropTypes<{
|
|
40
|
+
id: PropType<string>;
|
|
41
|
+
themeColor: {
|
|
42
|
+
type: PropType<string>;
|
|
43
|
+
default: string;
|
|
44
|
+
};
|
|
45
|
+
position: {
|
|
46
|
+
type: PropType<string>;
|
|
47
|
+
default: string;
|
|
48
|
+
validator: (value: string) => any;
|
|
49
|
+
};
|
|
50
|
+
positionMode: {
|
|
51
|
+
type: PropType<string>;
|
|
52
|
+
default: string;
|
|
53
|
+
validator: (value: string) => any;
|
|
54
|
+
};
|
|
55
|
+
}>> & Readonly<{}>, {
|
|
56
|
+
themeColor: string;
|
|
57
|
+
position: string;
|
|
58
|
+
positionMode: string;
|
|
59
|
+
}, {}, {}, {}, string, import('vue').ComponentProvideOptions, true, {}, any>;
|
|
60
|
+
export { AppBar };
|
|
@@ -0,0 +1,21 @@
|
|
|
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
|
+
export interface AppBarSectionComputed {
|
|
12
|
+
[key: string]: any;
|
|
13
|
+
wrapperClass: object;
|
|
14
|
+
}
|
|
15
|
+
/**
|
|
16
|
+
* @hidden
|
|
17
|
+
*/
|
|
18
|
+
declare const AppBarSection: import('vue').DefineComponent<{}, {}, {}, {}, {
|
|
19
|
+
focus(): void;
|
|
20
|
+
}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {}, string, import('vue').PublicProps, Readonly<{}> & Readonly<{}>, {}, {}, {}, {}, string, import('vue').ComponentProvideOptions, true, {}, any>;
|
|
21
|
+
export { AppBarSection };
|
|
@@ -0,0 +1,30 @@
|
|
|
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
|
+
* @hidden
|
|
11
|
+
*/
|
|
12
|
+
export interface AppBarSpacerComputed {
|
|
13
|
+
[key: string]: any;
|
|
14
|
+
spacerClasses: object;
|
|
15
|
+
spacerStyles: object;
|
|
16
|
+
}
|
|
17
|
+
/**
|
|
18
|
+
* @hidden
|
|
19
|
+
*/
|
|
20
|
+
declare const AppBarSpacer: import('vue').DefineComponent<import('vue').ExtractPropTypes<{
|
|
21
|
+
width: PropType<string | number>;
|
|
22
|
+
}>, {}, {}, {
|
|
23
|
+
spacerClasses(): AppBarSpacerComputed['spacerClasses'];
|
|
24
|
+
spacerStyles(): AppBarSpacerComputed['spacerStyles'];
|
|
25
|
+
}, {
|
|
26
|
+
focus(): void;
|
|
27
|
+
}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {}, string, import('vue').PublicProps, Readonly<import('vue').ExtractPropTypes<{
|
|
28
|
+
width: PropType<string | number>;
|
|
29
|
+
}>> & Readonly<{}>, {}, {}, {}, {}, string, import('vue').ComponentProvideOptions, true, {}, any>;
|
|
30
|
+
export { AppBarSpacer };
|