@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,18 @@
|
|
|
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 declare class DirectionHolder {
|
|
12
|
+
private phase;
|
|
13
|
+
private previousIsDirectionRightToLeft?;
|
|
14
|
+
private isDirectionRightToLeft?;
|
|
15
|
+
getIsDirectionRightToLeft(): boolean;
|
|
16
|
+
setIsDirectionRightToLeft(value: boolean): void;
|
|
17
|
+
hasDirectionChanged(): boolean;
|
|
18
|
+
}
|
|
@@ -0,0 +1,24 @@
|
|
|
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 declare class MouseOverHandler {
|
|
12
|
+
private openOnClick;
|
|
13
|
+
private resetMenu;
|
|
14
|
+
private openItem;
|
|
15
|
+
private isMouseOverEnabled;
|
|
16
|
+
private mouseDown;
|
|
17
|
+
constructor(openOnClick: boolean | undefined, resetMenu: any, openItem: any);
|
|
18
|
+
set OpenOnClick(value: boolean | undefined);
|
|
19
|
+
handleItemSelectedViaKeyboard(): void;
|
|
20
|
+
get IsMouseOverEnabled(): boolean;
|
|
21
|
+
handleItemMouseDown(): void;
|
|
22
|
+
handleItemFocus(): void;
|
|
23
|
+
handleItemClick(itemId: string, clickedItemIsWithDefaultClose: boolean): void;
|
|
24
|
+
}
|
|
@@ -0,0 +1,14 @@
|
|
|
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 { MenuItemInternalModel } from '../models/MenuItemModel';
|
|
9
|
+
/**
|
|
10
|
+
* @hidden
|
|
11
|
+
* Returns the `itemId` (string) for applicable key codes even when the id has not changed.
|
|
12
|
+
* For key codes that are not applicable, returns `undefined`.
|
|
13
|
+
*/
|
|
14
|
+
export declare function getNewItemIdUponKeyboardNavigation(sourceItems: MenuItemInternalModel[], sourceItemId: string, keyCode: number, key: string, isMenuVertical?: boolean, isDirectionRightToLeft?: boolean): string;
|
|
@@ -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
|
+
import { MenuProps } from '../MenuProps';
|
|
9
|
+
/**
|
|
10
|
+
* @hidden
|
|
11
|
+
*/
|
|
12
|
+
export declare function getHoverOpenDelay(props: MenuProps): number;
|
|
13
|
+
/**
|
|
14
|
+
* @hidden
|
|
15
|
+
*/
|
|
16
|
+
export declare function getHoverCloseDelay(props: MenuProps): number;
|
|
@@ -0,0 +1,71 @@
|
|
|
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 declare const EMPTY_ID = "";
|
|
12
|
+
/**
|
|
13
|
+
* @hidden
|
|
14
|
+
*/
|
|
15
|
+
export declare const ZERO_LEVEL_ZERO_ITEM_ID = "0";
|
|
16
|
+
/**
|
|
17
|
+
* @hidden
|
|
18
|
+
*/
|
|
19
|
+
export declare const SEPARATOR = "_";
|
|
20
|
+
/**
|
|
21
|
+
* @hidden
|
|
22
|
+
*/
|
|
23
|
+
export declare function getItemById(itemId: string, items: any): any;
|
|
24
|
+
/**
|
|
25
|
+
* @hidden
|
|
26
|
+
*/
|
|
27
|
+
export declare function getRootParentId(itemId: string): string;
|
|
28
|
+
/**
|
|
29
|
+
* @hidden
|
|
30
|
+
*/
|
|
31
|
+
export declare function getIdWithoutRootParentId(itemId: string): string;
|
|
32
|
+
/**
|
|
33
|
+
* @hidden
|
|
34
|
+
*/
|
|
35
|
+
export declare function getFirstChildId(itemId: string): string;
|
|
36
|
+
/**
|
|
37
|
+
* @hidden
|
|
38
|
+
*/
|
|
39
|
+
export declare function shouldOpenItem(itemId: string, lastItemIdToBeOpened: string): boolean;
|
|
40
|
+
/**
|
|
41
|
+
* @hidden
|
|
42
|
+
*/
|
|
43
|
+
export declare function createId(childId: string, parentId?: string): string;
|
|
44
|
+
/**
|
|
45
|
+
* @hidden
|
|
46
|
+
*/
|
|
47
|
+
export declare function getDirectParentId(itemId: string): string;
|
|
48
|
+
/**
|
|
49
|
+
* @hidden
|
|
50
|
+
*/
|
|
51
|
+
export declare function isIdEmptyOrZeroLevel(itemId: string): boolean;
|
|
52
|
+
/**
|
|
53
|
+
* @hidden
|
|
54
|
+
*/
|
|
55
|
+
export declare function isIdZeroLevel(itemId: string): boolean;
|
|
56
|
+
/**
|
|
57
|
+
* @hidden
|
|
58
|
+
*/
|
|
59
|
+
export declare function isIdFirstLevel(itemId: string): boolean;
|
|
60
|
+
/**
|
|
61
|
+
* @hidden
|
|
62
|
+
*/
|
|
63
|
+
export declare function isFirstItemFromSiblings(itemId: string): boolean;
|
|
64
|
+
/**
|
|
65
|
+
* @hidden
|
|
66
|
+
*/
|
|
67
|
+
export declare function getShortId(itemId: string): string;
|
|
68
|
+
/**
|
|
69
|
+
* @hidden
|
|
70
|
+
*/
|
|
71
|
+
export declare function getDirectSiblingIdForLevelZero(next: boolean, shortItemId: string, siblingsCount: number): string;
|
|
@@ -5,76 +5,76 @@
|
|
|
5
5
|
* Licensed under commercial license. See LICENSE.md in the package root for more information
|
|
6
6
|
*-------------------------------------------------------------------------------------------
|
|
7
7
|
*/
|
|
8
|
-
const
|
|
9
|
-
function
|
|
10
|
-
if (
|
|
8
|
+
const E = "", A = "0", O = "_";
|
|
9
|
+
function o(n, r) {
|
|
10
|
+
if (u(n))
|
|
11
11
|
return r[Number(n)];
|
|
12
12
|
{
|
|
13
|
-
const
|
|
14
|
-
return
|
|
13
|
+
const t = r[Number(i(n))];
|
|
14
|
+
return t.items ? o(c(n), t.items) : void 0;
|
|
15
15
|
}
|
|
16
16
|
}
|
|
17
|
-
function
|
|
18
|
-
return
|
|
17
|
+
function i(n) {
|
|
18
|
+
return e(n) ? n : n.split("_")[0];
|
|
19
19
|
}
|
|
20
|
-
function
|
|
21
|
-
if (
|
|
20
|
+
function c(n) {
|
|
21
|
+
if (e(n))
|
|
22
22
|
return n;
|
|
23
23
|
{
|
|
24
|
-
const r = n.indexOf(
|
|
24
|
+
const r = n.indexOf("_");
|
|
25
25
|
return n.substring(r + 1);
|
|
26
26
|
}
|
|
27
27
|
}
|
|
28
|
-
function
|
|
29
|
-
return
|
|
30
|
-
}
|
|
31
|
-
function x(n, r) {
|
|
32
|
-
return r.indexOf(n) === 0 ? r.length === n.length || r.charAt(n.length) === t : !1;
|
|
28
|
+
function S(n) {
|
|
29
|
+
return f("0", n);
|
|
33
30
|
}
|
|
34
|
-
function
|
|
35
|
-
return r ? r
|
|
31
|
+
function g(n, r) {
|
|
32
|
+
return r.indexOf(n) === 0 ? r.length === n.length || r.charAt(n.length) === "_" : !1;
|
|
36
33
|
}
|
|
37
|
-
function
|
|
38
|
-
|
|
39
|
-
return r < 0 ? u : n.substring(0, r);
|
|
34
|
+
function f(n, r) {
|
|
35
|
+
return r ? r + "_" + n : n;
|
|
40
36
|
}
|
|
41
|
-
function
|
|
42
|
-
|
|
37
|
+
function l(n) {
|
|
38
|
+
const r = n.lastIndexOf("_");
|
|
39
|
+
return r < 0 ? "" : n.substring(0, r);
|
|
43
40
|
}
|
|
44
|
-
function
|
|
45
|
-
return n
|
|
41
|
+
function e(n) {
|
|
42
|
+
return n === "" || n.indexOf("_") < 0;
|
|
46
43
|
}
|
|
47
|
-
function
|
|
48
|
-
return
|
|
44
|
+
function u(n) {
|
|
45
|
+
return n !== "" && n.indexOf("_") < 0;
|
|
49
46
|
}
|
|
50
|
-
function
|
|
51
|
-
return
|
|
47
|
+
function P(n) {
|
|
48
|
+
return R(n) === 1;
|
|
52
49
|
}
|
|
53
50
|
function a(n) {
|
|
54
|
-
|
|
51
|
+
return s(n) === "0";
|
|
52
|
+
}
|
|
53
|
+
function s(n) {
|
|
54
|
+
const r = n.lastIndexOf("_");
|
|
55
55
|
return r < 0 ? n : n.substring(r + 1);
|
|
56
56
|
}
|
|
57
|
-
function
|
|
58
|
-
return
|
|
57
|
+
function T(n, r, t) {
|
|
58
|
+
return u(r) ? n ? Number(r) < t - 1 ? (Number(r) + 1).toString() : "0" : Number(r) > 0 ? (Number(r) - 1).toString() : (t - 1).toString() : r;
|
|
59
59
|
}
|
|
60
|
-
function
|
|
61
|
-
return n.split(
|
|
60
|
+
function R(n) {
|
|
61
|
+
return n.split("_").length - 1;
|
|
62
62
|
}
|
|
63
63
|
export {
|
|
64
|
-
|
|
65
|
-
|
|
66
|
-
|
|
67
|
-
|
|
68
|
-
|
|
69
|
-
|
|
70
|
-
|
|
71
|
-
|
|
72
|
-
|
|
73
|
-
|
|
74
|
-
|
|
75
|
-
|
|
76
|
-
|
|
77
|
-
|
|
78
|
-
|
|
79
|
-
|
|
64
|
+
E as EMPTY_ID,
|
|
65
|
+
O as SEPARATOR,
|
|
66
|
+
A as ZERO_LEVEL_ZERO_ITEM_ID,
|
|
67
|
+
f as createId,
|
|
68
|
+
l as getDirectParentId,
|
|
69
|
+
T as getDirectSiblingIdForLevelZero,
|
|
70
|
+
S as getFirstChildId,
|
|
71
|
+
c as getIdWithoutRootParentId,
|
|
72
|
+
o as getItemById,
|
|
73
|
+
i as getRootParentId,
|
|
74
|
+
s as getShortId,
|
|
75
|
+
a as isFirstItemFromSiblings,
|
|
76
|
+
e as isIdEmptyOrZeroLevel,
|
|
77
|
+
P as isIdFirstLevel,
|
|
78
|
+
u as isIdZeroLevel,
|
|
79
|
+
g as shouldOpenItem
|
|
80
80
|
};
|
|
@@ -0,0 +1,23 @@
|
|
|
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 declare function getPopupSettings(itemId: string, isMenuVertical: boolean, isDirectionRightToLeft?: boolean): any;
|
|
12
|
+
/**
|
|
13
|
+
* @hidden
|
|
14
|
+
*/
|
|
15
|
+
export declare function getChildrenPosition(itemId: string, isMenuVertical: boolean, isDirectionRightToLeft?: boolean): "leftward" | "rightward" | "downward";
|
|
16
|
+
/**
|
|
17
|
+
* @hidden
|
|
18
|
+
*/
|
|
19
|
+
export declare function convertBoolDirectionToString(isDirectionRightToLeft?: boolean): "rtl" | "ltr";
|
|
20
|
+
/**
|
|
21
|
+
* @hidden
|
|
22
|
+
*/
|
|
23
|
+
export declare function getDOMElementId(menuGuid: string, itemId: string): string;
|
|
@@ -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
|
+
import { MenuItemModel } from '../models/MenuItemModel';
|
|
9
|
+
/**
|
|
10
|
+
* @hidden
|
|
11
|
+
*/
|
|
12
|
+
export declare function prepareInputItemsForInternalWork(this: any, models?: MenuItemModel[]): any;
|
|
@@ -0,0 +1,22 @@
|
|
|
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 declare const separatorAriaMessage = "drawer.separatorAriaMessage";
|
|
12
|
+
/**
|
|
13
|
+
* @hidden
|
|
14
|
+
*/
|
|
15
|
+
export declare const splitterPaneLabel = "splitter.splitterPaneLabel";
|
|
16
|
+
/**
|
|
17
|
+
* @hidden
|
|
18
|
+
*/
|
|
19
|
+
export declare const messages: {
|
|
20
|
+
"drawer.separatorAriaMessage": string;
|
|
21
|
+
"splitter.splitterPaneLabel": string;
|
|
22
|
+
};
|
|
@@ -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
|
+
import { PackageMetadata } from '@progress/kendo-licensing';
|
|
9
|
+
/**
|
|
10
|
+
* @hidden
|
|
11
|
+
*/
|
|
12
|
+
export declare const packageMetadata: PackageMetadata;
|
package/package-metadata.js
CHANGED
|
@@ -5,4 +5,4 @@
|
|
|
5
5
|
* Licensed under commercial license. See LICENSE.md in the package root for more information
|
|
6
6
|
*-------------------------------------------------------------------------------------------
|
|
7
7
|
*/
|
|
8
|
-
"use strict";Object.defineProperty(exports,Symbol.toStringTag,{value:"Module"});const e={name:"@progress/kendo-vue-layout",productName:"Kendo UI for Vue",productCode:"KENDOUIVUE",productCodes:["KENDOUIVUE"],publishDate:
|
|
8
|
+
"use strict";Object.defineProperty(exports,Symbol.toStringTag,{value:"Module"});const e={name:"@progress/kendo-vue-layout",productName:"Kendo UI for Vue",productCode:"KENDOUIVUE",productCodes:["KENDOUIVUE"],publishDate: 1773401372,version:"8.0.3-develop.3",licensingDocsUrl:"https://www.telerik.com/kendo-vue-ui/components/my-license/?utm_medium=product&utm_source=vue&utm_campaign=kendo-ui-vue-purchase-license-keys-warning"};exports.packageMetadata=e;
|
package/package-metadata.mjs
CHANGED
|
@@ -10,8 +10,8 @@ const e = {
|
|
|
10
10
|
productName: "Kendo UI for Vue",
|
|
11
11
|
productCode: "KENDOUIVUE",
|
|
12
12
|
productCodes: ["KENDOUIVUE"],
|
|
13
|
-
publishDate:
|
|
14
|
-
version: "8.0.3-develop.
|
|
13
|
+
publishDate: 1773401372,
|
|
14
|
+
version: "8.0.3-develop.3",
|
|
15
15
|
licensingDocsUrl: "https://www.telerik.com/kendo-vue-ui/components/my-license/?utm_medium=product&utm_source=vue&utm_campaign=kendo-ui-vue-purchase-license-keys-warning"
|
|
16
16
|
};
|
|
17
17
|
export {
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@progress/kendo-vue-layout",
|
|
3
|
-
"version": "8.0.3-develop.
|
|
3
|
+
"version": "8.0.3-develop.3",
|
|
4
4
|
"description": "TODO",
|
|
5
5
|
"author": "Progress",
|
|
6
6
|
"license": "SEE LICENSE IN LICENSE.md",
|
|
@@ -9,8 +9,14 @@
|
|
|
9
9
|
"types": "./index.d.ts",
|
|
10
10
|
"exports": {
|
|
11
11
|
".": {
|
|
12
|
-
"import":
|
|
13
|
-
|
|
12
|
+
"import": {
|
|
13
|
+
"types": "./index.d.mts",
|
|
14
|
+
"default": "./index.mjs"
|
|
15
|
+
},
|
|
16
|
+
"require": {
|
|
17
|
+
"types": "./index.d.ts",
|
|
18
|
+
"default": "./index.js"
|
|
19
|
+
}
|
|
14
20
|
},
|
|
15
21
|
"./package.json": {
|
|
16
22
|
"default": "./package.json"
|
|
@@ -19,11 +25,11 @@
|
|
|
19
25
|
"sideEffects": false,
|
|
20
26
|
"peerDependencies": {
|
|
21
27
|
"@progress/kendo-licensing": "^1.7.2",
|
|
22
|
-
"@progress/kendo-vue-animation": "8.0.3-develop.
|
|
23
|
-
"@progress/kendo-vue-common": "8.0.3-develop.
|
|
24
|
-
"@progress/kendo-vue-intl": "8.0.3-develop.
|
|
25
|
-
"@progress/kendo-vue-popup": "8.0.3-develop.
|
|
26
|
-
"@progress/kendo-vue-progressbars": "8.0.3-develop.
|
|
28
|
+
"@progress/kendo-vue-animation": "8.0.3-develop.3",
|
|
29
|
+
"@progress/kendo-vue-common": "8.0.3-develop.3",
|
|
30
|
+
"@progress/kendo-vue-intl": "8.0.3-develop.3",
|
|
31
|
+
"@progress/kendo-vue-popup": "8.0.3-develop.3",
|
|
32
|
+
"@progress/kendo-vue-progressbars": "8.0.3-develop.3",
|
|
27
33
|
"@progress/kendo-svg-icons": "^4.4.0",
|
|
28
34
|
"vue": "^3.0.2"
|
|
29
35
|
},
|
|
@@ -44,7 +50,7 @@
|
|
|
44
50
|
"package": {
|
|
45
51
|
"productName": "Kendo UI for Vue",
|
|
46
52
|
"productCode": "KENDOUIVUE",
|
|
47
|
-
"publishDate":
|
|
53
|
+
"publishDate": 1773401372,
|
|
48
54
|
"licensingDocsUrl": "https://www.telerik.com/kendo-vue-ui/components/my-license/?utm_medium=product&utm_source=vue&utm_campaign=kendo-ui-vue-purchase-license-keys-warning"
|
|
49
55
|
}
|
|
50
56
|
},
|
|
@@ -0,0 +1,88 @@
|
|
|
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 { PanelBarItemClickEventArguments } from './interfaces/PanelBarItemClickEventArguments';
|
|
9
|
+
import { PanelBarSelectEventArguments } from './interfaces/PanelBarSelectEventArguments';
|
|
10
|
+
import { NavigationAction } from './interfaces/NavigationAction';
|
|
11
|
+
import { PropType } from 'vue';
|
|
12
|
+
export interface PanelBarData {
|
|
13
|
+
currentFocused?: string;
|
|
14
|
+
wrapperFocused?: boolean;
|
|
15
|
+
currentSelected?: string;
|
|
16
|
+
currentExpanded: string[];
|
|
17
|
+
}
|
|
18
|
+
/**
|
|
19
|
+
*
|
|
20
|
+
* ### props <span class='code'>[PanelBarProps]({% slug api_layout_panelbarprops %})</span>
|
|
21
|
+
* The props of the PanelBar component.
|
|
22
|
+
*/
|
|
23
|
+
declare const PanelBar: import('vue').DefineComponent<import('vue').ExtractPropTypes<{
|
|
24
|
+
animation: {
|
|
25
|
+
type: PropType<boolean>;
|
|
26
|
+
default: boolean;
|
|
27
|
+
};
|
|
28
|
+
items: PropType<any[]>;
|
|
29
|
+
dir: PropType<string>;
|
|
30
|
+
selected: PropType<string | number>;
|
|
31
|
+
expanded: {
|
|
32
|
+
type: PropType<string[]>;
|
|
33
|
+
default: any;
|
|
34
|
+
};
|
|
35
|
+
focused: PropType<string | number>;
|
|
36
|
+
expandMode: {
|
|
37
|
+
type: PropType<import('./interfaces/PanelBarProps').PanelBarExpandMode>;
|
|
38
|
+
default: string;
|
|
39
|
+
validator: (value: string) => boolean;
|
|
40
|
+
};
|
|
41
|
+
className: PropType<string>;
|
|
42
|
+
keepItemsMounted: PropType<boolean>;
|
|
43
|
+
}>, {}, PanelBarData, {
|
|
44
|
+
selectedItem(): any;
|
|
45
|
+
expandedItems(): any;
|
|
46
|
+
computedItems(): any;
|
|
47
|
+
}, {
|
|
48
|
+
handleSelect(event: PanelBarItemClickEventArguments): void;
|
|
49
|
+
onSelect(event: any): void;
|
|
50
|
+
onFocus(event: any, step?: number): void;
|
|
51
|
+
onNavigate(event: any, action: NavigationAction): void;
|
|
52
|
+
handleWrapperFocus(): void;
|
|
53
|
+
handleWrapperBlur(): void;
|
|
54
|
+
handleKeyDown(event: any): void;
|
|
55
|
+
}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {
|
|
56
|
+
select: (event: PanelBarSelectEventArguments) => true;
|
|
57
|
+
keydown: any;
|
|
58
|
+
}, string, import('vue').PublicProps, Readonly<import('vue').ExtractPropTypes<{
|
|
59
|
+
animation: {
|
|
60
|
+
type: PropType<boolean>;
|
|
61
|
+
default: boolean;
|
|
62
|
+
};
|
|
63
|
+
items: PropType<any[]>;
|
|
64
|
+
dir: PropType<string>;
|
|
65
|
+
selected: PropType<string | number>;
|
|
66
|
+
expanded: {
|
|
67
|
+
type: PropType<string[]>;
|
|
68
|
+
default: any;
|
|
69
|
+
};
|
|
70
|
+
focused: PropType<string | number>;
|
|
71
|
+
expandMode: {
|
|
72
|
+
type: PropType<import('./interfaces/PanelBarProps').PanelBarExpandMode>;
|
|
73
|
+
default: string;
|
|
74
|
+
validator: (value: string) => boolean;
|
|
75
|
+
};
|
|
76
|
+
className: PropType<string>;
|
|
77
|
+
keepItemsMounted: PropType<boolean>;
|
|
78
|
+
}>> & Readonly<{
|
|
79
|
+
onSelect?: (event: PanelBarSelectEventArguments) => any;
|
|
80
|
+
onKeydown?: (...args: any[] | unknown[]) => any;
|
|
81
|
+
}>, {
|
|
82
|
+
animation: boolean;
|
|
83
|
+
expanded: string[];
|
|
84
|
+
expandMode: import('./interfaces/PanelBarProps').PanelBarExpandMode;
|
|
85
|
+
}, {}, {}, {}, string, () => {
|
|
86
|
+
dispatchItemSelect: any;
|
|
87
|
+
}, true, {}, any>;
|
|
88
|
+
export { PanelBar };
|
|
@@ -0,0 +1,87 @@
|
|
|
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 PanelBarGroupProps {
|
|
13
|
+
item?: object;
|
|
14
|
+
items?: any[];
|
|
15
|
+
animation?: boolean;
|
|
16
|
+
expanded?: boolean;
|
|
17
|
+
disabled?: boolean;
|
|
18
|
+
content?: any;
|
|
19
|
+
keepItemsMounted?: boolean;
|
|
20
|
+
uniquePrivateKey?: string | number;
|
|
21
|
+
}
|
|
22
|
+
/**
|
|
23
|
+
* @hidden
|
|
24
|
+
*/
|
|
25
|
+
export interface PanelBarGroupData {
|
|
26
|
+
show: boolean;
|
|
27
|
+
}
|
|
28
|
+
/**
|
|
29
|
+
* @hidden
|
|
30
|
+
*/
|
|
31
|
+
declare const PanelBarItem: import('vue').DefineComponent<import('vue').ExtractPropTypes<{
|
|
32
|
+
item: PropType<any>;
|
|
33
|
+
items: PropType<any[]>;
|
|
34
|
+
animation: PropType<boolean>;
|
|
35
|
+
expanded: PropType<boolean>;
|
|
36
|
+
disabled: PropType<boolean>;
|
|
37
|
+
selected: PropType<boolean>;
|
|
38
|
+
level: PropType<number>;
|
|
39
|
+
title: {
|
|
40
|
+
type: PropType<any>;
|
|
41
|
+
default: () => string;
|
|
42
|
+
};
|
|
43
|
+
id: PropType<string | number>;
|
|
44
|
+
focused: PropType<boolean>;
|
|
45
|
+
keepItemsMounted: PropType<boolean>;
|
|
46
|
+
uniquePrivateKey: PropType<string | number>;
|
|
47
|
+
parentUniquePrivateKey: PropType<string[]>;
|
|
48
|
+
parentExpanded: PropType<boolean>;
|
|
49
|
+
headerClassName: PropType<string>;
|
|
50
|
+
iconClass: PropType<string>;
|
|
51
|
+
imageUrl: PropType<string>;
|
|
52
|
+
icon: PropType<string>;
|
|
53
|
+
svgIcon: PropType<import('@progress/kendo-vue-common').SVGIcon>;
|
|
54
|
+
content: PropType<any>;
|
|
55
|
+
header: PropType<any>;
|
|
56
|
+
}>, {}, {}, {}, {
|
|
57
|
+
handleItemClick(): void;
|
|
58
|
+
childFactory(child: any): any;
|
|
59
|
+
}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {}, string, import('vue').PublicProps, Readonly<import('vue').ExtractPropTypes<{
|
|
60
|
+
item: PropType<any>;
|
|
61
|
+
items: PropType<any[]>;
|
|
62
|
+
animation: PropType<boolean>;
|
|
63
|
+
expanded: PropType<boolean>;
|
|
64
|
+
disabled: PropType<boolean>;
|
|
65
|
+
selected: PropType<boolean>;
|
|
66
|
+
level: PropType<number>;
|
|
67
|
+
title: {
|
|
68
|
+
type: PropType<any>;
|
|
69
|
+
default: () => string;
|
|
70
|
+
};
|
|
71
|
+
id: PropType<string | number>;
|
|
72
|
+
focused: PropType<boolean>;
|
|
73
|
+
keepItemsMounted: PropType<boolean>;
|
|
74
|
+
uniquePrivateKey: PropType<string | number>;
|
|
75
|
+
parentUniquePrivateKey: PropType<string[]>;
|
|
76
|
+
parentExpanded: PropType<boolean>;
|
|
77
|
+
headerClassName: PropType<string>;
|
|
78
|
+
iconClass: PropType<string>;
|
|
79
|
+
imageUrl: PropType<string>;
|
|
80
|
+
icon: PropType<string>;
|
|
81
|
+
svgIcon: PropType<import('@progress/kendo-vue-common').SVGIcon>;
|
|
82
|
+
content: PropType<any>;
|
|
83
|
+
header: PropType<any>;
|
|
84
|
+
}>> & Readonly<{}>, {
|
|
85
|
+
title: any;
|
|
86
|
+
}, {}, {}, {}, string, import('vue').ComponentProvideOptions, true, {}, any>;
|
|
87
|
+
export { PanelBarItem };
|
|
@@ -0,0 +1,15 @@
|
|
|
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 declare enum NavigationAction {
|
|
12
|
+
Toggle = 0,
|
|
13
|
+
Next = 1,
|
|
14
|
+
Previous = 2
|
|
15
|
+
}
|
|
@@ -0,0 +1,14 @@
|
|
|
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 PanelBarItemClickEventArguments {
|
|
12
|
+
uniquePrivateKey: number;
|
|
13
|
+
target: any;
|
|
14
|
+
}
|