@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.
- 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,143 @@
|
|
|
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
|
+
import { BreadcrumbLinkMouseEvent } from './interfaces/BreadcrumbProps';
|
|
10
|
+
/**
|
|
11
|
+
* @hidden
|
|
12
|
+
*/
|
|
13
|
+
export interface BreadcrumbComputed {
|
|
14
|
+
[key: string]: any;
|
|
15
|
+
itemClasses: object;
|
|
16
|
+
}
|
|
17
|
+
/**
|
|
18
|
+
* Represents the Breadcrumb component.
|
|
19
|
+
*/
|
|
20
|
+
declare const Breadcrumb: import('vue').DefineComponent<import('vue').ExtractPropTypes<{
|
|
21
|
+
id: PropType<string>;
|
|
22
|
+
tabIndex: PropType<number>;
|
|
23
|
+
disabled: PropType<boolean>;
|
|
24
|
+
collapseMode: {
|
|
25
|
+
type: PropType<"none" | "wrap" | "auto">;
|
|
26
|
+
default: string;
|
|
27
|
+
validator: (value: string) => boolean;
|
|
28
|
+
};
|
|
29
|
+
ariaLabel: {
|
|
30
|
+
type: PropType<string>;
|
|
31
|
+
default: string;
|
|
32
|
+
};
|
|
33
|
+
breadcrumbOrderedList: PropType<import('vue').Component<import('..').BreadcrumbOrderedListProps>>;
|
|
34
|
+
breadcrumbListItem: PropType<import('vue').Component<import('..').BreadcrumbListItemProps>>;
|
|
35
|
+
breadcrumbDelimiter: PropType<import('vue').Component<import('..').BreadcrumbDelimiterProps>>;
|
|
36
|
+
breadcrumbLink: PropType<import('vue').Component<import('..').BreadcrumbLinkProps>>;
|
|
37
|
+
dataItems: {
|
|
38
|
+
type: PropType<import('./interfaces/BreadcrumbProps').BreadcrumbDataModel[]>;
|
|
39
|
+
default: any[];
|
|
40
|
+
};
|
|
41
|
+
size: {
|
|
42
|
+
type: PropType<"small" | "medium" | "large">;
|
|
43
|
+
};
|
|
44
|
+
dir: {
|
|
45
|
+
type: PropType<"rtl" | "ltr">;
|
|
46
|
+
default: any;
|
|
47
|
+
};
|
|
48
|
+
valueField: {
|
|
49
|
+
type: PropType<string>;
|
|
50
|
+
default: string;
|
|
51
|
+
};
|
|
52
|
+
textField: {
|
|
53
|
+
type: PropType<string>;
|
|
54
|
+
default: string;
|
|
55
|
+
};
|
|
56
|
+
svgIconField: {
|
|
57
|
+
type: PropType<string>;
|
|
58
|
+
default: string;
|
|
59
|
+
};
|
|
60
|
+
iconField: {
|
|
61
|
+
type: PropType<string>;
|
|
62
|
+
default: string;
|
|
63
|
+
};
|
|
64
|
+
onSelect: PropType<(event: BreadcrumbLinkMouseEvent) => void>;
|
|
65
|
+
onKeydown: PropType<(event: any) => void>;
|
|
66
|
+
}>, {
|
|
67
|
+
breadcrumbRef: import('vue').Ref<any, any>;
|
|
68
|
+
}, {
|
|
69
|
+
currentDir: string;
|
|
70
|
+
localData: import('./interfaces/BreadcrumbProps').BreadcrumbDataModel[];
|
|
71
|
+
listItems: any[];
|
|
72
|
+
itemsData: any[];
|
|
73
|
+
addDelimiter: boolean;
|
|
74
|
+
}, {
|
|
75
|
+
itemClasses(): BreadcrumbComputed['itemClasses'];
|
|
76
|
+
}, {
|
|
77
|
+
getLastHiddenItemWidth(): any[];
|
|
78
|
+
calculateMedia(): void;
|
|
79
|
+
handleSelect(event: any): void;
|
|
80
|
+
handleKeyDown(event: any): void;
|
|
81
|
+
}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {
|
|
82
|
+
select: (event: BreadcrumbLinkMouseEvent) => true;
|
|
83
|
+
keydown: any;
|
|
84
|
+
}, string, import('vue').PublicProps, Readonly<import('vue').ExtractPropTypes<{
|
|
85
|
+
id: PropType<string>;
|
|
86
|
+
tabIndex: PropType<number>;
|
|
87
|
+
disabled: PropType<boolean>;
|
|
88
|
+
collapseMode: {
|
|
89
|
+
type: PropType<"none" | "wrap" | "auto">;
|
|
90
|
+
default: string;
|
|
91
|
+
validator: (value: string) => boolean;
|
|
92
|
+
};
|
|
93
|
+
ariaLabel: {
|
|
94
|
+
type: PropType<string>;
|
|
95
|
+
default: string;
|
|
96
|
+
};
|
|
97
|
+
breadcrumbOrderedList: PropType<import('vue').Component<import('..').BreadcrumbOrderedListProps>>;
|
|
98
|
+
breadcrumbListItem: PropType<import('vue').Component<import('..').BreadcrumbListItemProps>>;
|
|
99
|
+
breadcrumbDelimiter: PropType<import('vue').Component<import('..').BreadcrumbDelimiterProps>>;
|
|
100
|
+
breadcrumbLink: PropType<import('vue').Component<import('..').BreadcrumbLinkProps>>;
|
|
101
|
+
dataItems: {
|
|
102
|
+
type: PropType<import('./interfaces/BreadcrumbProps').BreadcrumbDataModel[]>;
|
|
103
|
+
default: any[];
|
|
104
|
+
};
|
|
105
|
+
size: {
|
|
106
|
+
type: PropType<"small" | "medium" | "large">;
|
|
107
|
+
};
|
|
108
|
+
dir: {
|
|
109
|
+
type: PropType<"rtl" | "ltr">;
|
|
110
|
+
default: any;
|
|
111
|
+
};
|
|
112
|
+
valueField: {
|
|
113
|
+
type: PropType<string>;
|
|
114
|
+
default: string;
|
|
115
|
+
};
|
|
116
|
+
textField: {
|
|
117
|
+
type: PropType<string>;
|
|
118
|
+
default: string;
|
|
119
|
+
};
|
|
120
|
+
svgIconField: {
|
|
121
|
+
type: PropType<string>;
|
|
122
|
+
default: string;
|
|
123
|
+
};
|
|
124
|
+
iconField: {
|
|
125
|
+
type: PropType<string>;
|
|
126
|
+
default: string;
|
|
127
|
+
};
|
|
128
|
+
onSelect: PropType<(event: BreadcrumbLinkMouseEvent) => void>;
|
|
129
|
+
onKeydown: PropType<(event: any) => void>;
|
|
130
|
+
}>> & Readonly<{
|
|
131
|
+
onSelect?: (event: BreadcrumbLinkMouseEvent) => any;
|
|
132
|
+
onKeydown?: (...args: any[] | unknown[]) => any;
|
|
133
|
+
}>, {
|
|
134
|
+
ariaLabel: string;
|
|
135
|
+
dir: "rtl" | "ltr";
|
|
136
|
+
collapseMode: "none" | "wrap" | "auto";
|
|
137
|
+
dataItems: import('./interfaces/BreadcrumbProps').BreadcrumbDataModel[];
|
|
138
|
+
valueField: string;
|
|
139
|
+
textField: string;
|
|
140
|
+
svgIconField: string;
|
|
141
|
+
iconField: string;
|
|
142
|
+
}, {}, {}, {}, string, import('vue').ComponentProvideOptions, true, {}, any>;
|
|
143
|
+
export { Breadcrumb };
|
|
@@ -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
|
+
import { PropType } from 'vue';
|
|
9
|
+
/**
|
|
10
|
+
* Represents the BreadcrumbDelimiter component.
|
|
11
|
+
*/
|
|
12
|
+
declare const BreadcrumbDelimiter: import('vue').DefineComponent<import('vue').ExtractPropTypes<{
|
|
13
|
+
id: PropType<string>;
|
|
14
|
+
dir: PropType<string>;
|
|
15
|
+
tabIndex: PropType<number>;
|
|
16
|
+
}>, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {}, string, import('vue').PublicProps, Readonly<import('vue').ExtractPropTypes<{
|
|
17
|
+
id: PropType<string>;
|
|
18
|
+
dir: PropType<string>;
|
|
19
|
+
tabIndex: PropType<number>;
|
|
20
|
+
}>> & Readonly<{}>, {}, {}, {}, {}, string, import('vue').ComponentProvideOptions, true, {}, any>;
|
|
21
|
+
export { BreadcrumbDelimiter };
|
|
@@ -0,0 +1,63 @@
|
|
|
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 BreadcrumbLinkComputed {
|
|
13
|
+
[key: string]: any;
|
|
14
|
+
itemClasses: object;
|
|
15
|
+
}
|
|
16
|
+
/**
|
|
17
|
+
* Represents the BreadcrumbLink component.
|
|
18
|
+
*/
|
|
19
|
+
declare const BreadcrumbLink: import('vue').DefineComponent<import('vue').ExtractPropTypes<{
|
|
20
|
+
id: PropType<string>;
|
|
21
|
+
tabIndex: PropType<number>;
|
|
22
|
+
dir: PropType<string>;
|
|
23
|
+
disabled: PropType<boolean>;
|
|
24
|
+
text: PropType<string>;
|
|
25
|
+
svgIcon: PropType<import('vue').VNode<import('vue').RendererNode, import('vue').RendererElement, {
|
|
26
|
+
[key: string]: any;
|
|
27
|
+
}>>;
|
|
28
|
+
icon: PropType<import('vue').VNode<import('vue').RendererNode, import('vue').RendererElement, {
|
|
29
|
+
[key: string]: any;
|
|
30
|
+
}>>;
|
|
31
|
+
ariaCurrent: PropType<boolean>;
|
|
32
|
+
isLast: PropType<boolean>;
|
|
33
|
+
isFirst: PropType<boolean>;
|
|
34
|
+
onSelect: PropType<(event: any) => void>;
|
|
35
|
+
}>, {
|
|
36
|
+
linkRef: import('vue').Ref<any, any>;
|
|
37
|
+
}, {}, {
|
|
38
|
+
itemClasses(): BreadcrumbLinkComputed['itemClasses'];
|
|
39
|
+
}, {
|
|
40
|
+
focus(): void;
|
|
41
|
+
handleSelect(event: any): void;
|
|
42
|
+
handleKeyDown(event: any): void;
|
|
43
|
+
}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, ("select" | "keydown")[], "select" | "keydown", import('vue').PublicProps, Readonly<import('vue').ExtractPropTypes<{
|
|
44
|
+
id: PropType<string>;
|
|
45
|
+
tabIndex: PropType<number>;
|
|
46
|
+
dir: PropType<string>;
|
|
47
|
+
disabled: PropType<boolean>;
|
|
48
|
+
text: PropType<string>;
|
|
49
|
+
svgIcon: PropType<import('vue').VNode<import('vue').RendererNode, import('vue').RendererElement, {
|
|
50
|
+
[key: string]: any;
|
|
51
|
+
}>>;
|
|
52
|
+
icon: PropType<import('vue').VNode<import('vue').RendererNode, import('vue').RendererElement, {
|
|
53
|
+
[key: string]: any;
|
|
54
|
+
}>>;
|
|
55
|
+
ariaCurrent: PropType<boolean>;
|
|
56
|
+
isLast: PropType<boolean>;
|
|
57
|
+
isFirst: PropType<boolean>;
|
|
58
|
+
onSelect: PropType<(event: any) => void>;
|
|
59
|
+
}>> & Readonly<{
|
|
60
|
+
onKeydown?: (...args: any[]) => any;
|
|
61
|
+
onSelect?: (...args: any[]) => any;
|
|
62
|
+
}>, {}, {}, {}, {}, string, import('vue').ComponentProvideOptions, true, {}, any>;
|
|
63
|
+
export { BreadcrumbLink };
|
|
@@ -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 BreadcrumbListItemComputed {
|
|
13
|
+
[key: string]: any;
|
|
14
|
+
itemClasses: object;
|
|
15
|
+
}
|
|
16
|
+
/**
|
|
17
|
+
* @hidden
|
|
18
|
+
*/
|
|
19
|
+
declare const BreadcrumbListItem: import('vue').DefineComponent<import('vue').ExtractPropTypes<{
|
|
20
|
+
id: PropType<string>;
|
|
21
|
+
isFirstItem: PropType<boolean>;
|
|
22
|
+
isLastItem: PropType<boolean>;
|
|
23
|
+
}>, {}, {}, {
|
|
24
|
+
itemClasses(): BreadcrumbListItemComputed['itemClasses'];
|
|
25
|
+
}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {}, string, import('vue').PublicProps, Readonly<import('vue').ExtractPropTypes<{
|
|
26
|
+
id: PropType<string>;
|
|
27
|
+
isFirstItem: PropType<boolean>;
|
|
28
|
+
isLastItem: PropType<boolean>;
|
|
29
|
+
}>> & Readonly<{}>, {}, {}, {}, {}, string, import('vue').ComponentProvideOptions, true, {}, any>;
|
|
30
|
+
export { BreadcrumbListItem };
|
|
@@ -0,0 +1,42 @@
|
|
|
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 BreadcrumbOrderedListComputed {
|
|
13
|
+
[key: string]: any;
|
|
14
|
+
itemClasses: object;
|
|
15
|
+
}
|
|
16
|
+
/**
|
|
17
|
+
* @hidden
|
|
18
|
+
*/
|
|
19
|
+
declare const BreadcrumbOrderedList: import('vue').DefineComponent<import('vue').ExtractPropTypes<{
|
|
20
|
+
rootItem: PropType<boolean>;
|
|
21
|
+
id: PropType<string>;
|
|
22
|
+
dir: PropType<string>;
|
|
23
|
+
tabIndex: PropType<number>;
|
|
24
|
+
disabled: PropType<boolean>;
|
|
25
|
+
collapseMode: {
|
|
26
|
+
type: PropType<"none" | "wrap" | "auto">;
|
|
27
|
+
validator: (value: string) => any;
|
|
28
|
+
};
|
|
29
|
+
}>, {}, {}, {
|
|
30
|
+
itemClasses(): BreadcrumbOrderedListComputed['itemClasses'];
|
|
31
|
+
}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {}, string, import('vue').PublicProps, Readonly<import('vue').ExtractPropTypes<{
|
|
32
|
+
rootItem: PropType<boolean>;
|
|
33
|
+
id: PropType<string>;
|
|
34
|
+
dir: PropType<string>;
|
|
35
|
+
tabIndex: PropType<number>;
|
|
36
|
+
disabled: PropType<boolean>;
|
|
37
|
+
collapseMode: {
|
|
38
|
+
type: PropType<"none" | "wrap" | "auto">;
|
|
39
|
+
validator: (value: string) => any;
|
|
40
|
+
};
|
|
41
|
+
}>> & Readonly<{}>, {}, {}, {}, {}, string, import('vue').ComponentProvideOptions, true, {}, any>;
|
|
42
|
+
export { BreadcrumbOrderedList };
|
|
@@ -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
|
+
* Represents the properties of BreadcrumbDelimiter component.
|
|
10
|
+
*/
|
|
11
|
+
export interface BreadcrumbDelimiterProps {
|
|
12
|
+
/**
|
|
13
|
+
* Sets the `id` property of the BreadcrumbDelimiter component.
|
|
14
|
+
*/
|
|
15
|
+
id?: string;
|
|
16
|
+
/**
|
|
17
|
+
* Sets the `tabIndex` attribute to the BreadcrumbDelimiter.
|
|
18
|
+
*/
|
|
19
|
+
tabIndex?: number;
|
|
20
|
+
/**
|
|
21
|
+
* @hidden
|
|
22
|
+
*/
|
|
23
|
+
dir?: string;
|
|
24
|
+
}
|
|
@@ -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 { VNode } from 'vue';
|
|
9
|
+
/**
|
|
10
|
+
* Represents the properties of BreadcrumbLink component.
|
|
11
|
+
*/
|
|
12
|
+
export interface BreadcrumbLinkProps {
|
|
13
|
+
/**
|
|
14
|
+
* Sets the `id` property of the top `div` element of the BreadcrumbLink.
|
|
15
|
+
*/
|
|
16
|
+
id?: string;
|
|
17
|
+
/**
|
|
18
|
+
* Sets the `tabIndex` attribute to the BreadcrumbLink.
|
|
19
|
+
*/
|
|
20
|
+
tabIndex?: number;
|
|
21
|
+
/**
|
|
22
|
+
* The Breadcrumb direction `ltr` or `rtl`.
|
|
23
|
+
*/
|
|
24
|
+
dir?: string;
|
|
25
|
+
/**
|
|
26
|
+
* Determines the `disabled` mode of the BreadcrumbLink. If `true`, the component is disabled.
|
|
27
|
+
*/
|
|
28
|
+
disabled?: boolean;
|
|
29
|
+
/**
|
|
30
|
+
* Represents the `text` of the BreadcrumbLink component.
|
|
31
|
+
*/
|
|
32
|
+
text?: string;
|
|
33
|
+
/**
|
|
34
|
+
* Represents the `svgIcon` of the BreadcrumbLink component.
|
|
35
|
+
*/
|
|
36
|
+
svgIcon?: VNode;
|
|
37
|
+
/**
|
|
38
|
+
* Represents the `icon` of the BreadcrumbLink component.
|
|
39
|
+
*/
|
|
40
|
+
icon?: VNode;
|
|
41
|
+
/**
|
|
42
|
+
* Represents the `onSelect` event. Triggered after click on the BreadcrumbLink item.
|
|
43
|
+
*/
|
|
44
|
+
onSelect?: (event: any) => void;
|
|
45
|
+
/**
|
|
46
|
+
* Represents the `onKeydown` event. Triggered after key down on the BreadcrumbLink item.
|
|
47
|
+
*/
|
|
48
|
+
onKeydown?: (event: any) => void;
|
|
49
|
+
/**
|
|
50
|
+
* Sets the `aria-current` value.
|
|
51
|
+
*/
|
|
52
|
+
ariaCurrent?: boolean;
|
|
53
|
+
/**
|
|
54
|
+
* @hidden
|
|
55
|
+
*/
|
|
56
|
+
isLast?: boolean;
|
|
57
|
+
/**
|
|
58
|
+
* @hidden
|
|
59
|
+
*/
|
|
60
|
+
isFirst?: boolean;
|
|
61
|
+
}
|
|
@@ -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 interface BreadcrumbListItemProps {
|
|
12
|
+
/**
|
|
13
|
+
* Sets the `id` property of the top `div` element of the BreadcrumbListItem.
|
|
14
|
+
*/
|
|
15
|
+
id?: string;
|
|
16
|
+
/**
|
|
17
|
+
* @hidden
|
|
18
|
+
*/
|
|
19
|
+
isFirstItem: boolean;
|
|
20
|
+
/**
|
|
21
|
+
* @hidden
|
|
22
|
+
*/
|
|
23
|
+
isLastItem: boolean;
|
|
24
|
+
}
|
|
@@ -0,0 +1,42 @@
|
|
|
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 BreadcrumbOrderedListProps {
|
|
12
|
+
/**
|
|
13
|
+
* Sets the `id` property of the top `div` element of the BreadcrumbOrderedList.
|
|
14
|
+
*/
|
|
15
|
+
id?: string;
|
|
16
|
+
/**
|
|
17
|
+
* Sets the `tabIndex` attribute to the BreadcrumbOrderedList.
|
|
18
|
+
*/
|
|
19
|
+
tabIndex?: number;
|
|
20
|
+
/**
|
|
21
|
+
* The BreadcrumbOrderedList direction `ltr` or `rtl`.
|
|
22
|
+
*/
|
|
23
|
+
dir?: string;
|
|
24
|
+
/**
|
|
25
|
+
* Sets the Collapse mode of the Breadcrumb.
|
|
26
|
+
* The available values are:
|
|
27
|
+
* - `auto`(default)—Items are automatically collapsed based on the width of the Breadcrumb. First and last item always remain visible.
|
|
28
|
+
* - `wrap`—Items are wrapped on multiple rows when their total width is bigger than the width of the BreadCrumb.
|
|
29
|
+
* - `none`—All items are expanded on the same row. This scenario is useful when the Breadcrumb needs to be scrolled.
|
|
30
|
+
*
|
|
31
|
+
* For more information and example refer to the [Collapse Modes]({% slug collapse_modes_breadcrumb %}) article.
|
|
32
|
+
*/
|
|
33
|
+
collapseMode?: 'auto' | 'wrap' | 'none';
|
|
34
|
+
/**
|
|
35
|
+
* Determines the `disabled` mode of the BreadcrumbOrderedList. If `true`, the component is disabled.
|
|
36
|
+
*/
|
|
37
|
+
disabled?: boolean;
|
|
38
|
+
/**
|
|
39
|
+
* @hidden
|
|
40
|
+
*/
|
|
41
|
+
rootItem?: boolean;
|
|
42
|
+
}
|
|
@@ -0,0 +1,138 @@
|
|
|
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 { Component, VNode } from 'vue';
|
|
9
|
+
import { BreadcrumbOrderedListProps } from './BreadcrumbOrderedListProps';
|
|
10
|
+
import { BreadcrumbLinkProps } from './BreadcrumbLinkProps';
|
|
11
|
+
import { BreadcrumbListItemProps } from './BreadcrumbListItemProps';
|
|
12
|
+
import { BreadcrumbDelimiterProps } from './BreadcrumbDelimiterProps';
|
|
13
|
+
/**
|
|
14
|
+
* Represents the BreadcrumbDataModel object type.
|
|
15
|
+
*/
|
|
16
|
+
export interface BreadcrumbDataModel {
|
|
17
|
+
/**
|
|
18
|
+
* Represents the `id` of the dataItems object.
|
|
19
|
+
* Used for setting the `key` of the BreadcrumbListItem component and the `id` of the BreadcrumbLink component.
|
|
20
|
+
*/
|
|
21
|
+
id?: string;
|
|
22
|
+
/**
|
|
23
|
+
* Represents the `text` used inside the BreadcrumbLink component.
|
|
24
|
+
*/
|
|
25
|
+
text?: string;
|
|
26
|
+
/**
|
|
27
|
+
* Represents the `svgIcon` used inside the BreadcrumbLink component.
|
|
28
|
+
*/
|
|
29
|
+
svgIcon?: VNode;
|
|
30
|
+
/**
|
|
31
|
+
* Represents the `icon` used inside the BreadcrumbLink component.
|
|
32
|
+
*/
|
|
33
|
+
icon?: VNode;
|
|
34
|
+
/**
|
|
35
|
+
* @hidden
|
|
36
|
+
*/
|
|
37
|
+
disabled?: boolean;
|
|
38
|
+
}
|
|
39
|
+
/**
|
|
40
|
+
* Represents the `BreadcrumbLinkMouseEvent`.
|
|
41
|
+
*/
|
|
42
|
+
export interface BreadcrumbLinkMouseEvent {
|
|
43
|
+
/**
|
|
44
|
+
* Represents the `id` of the `BreadcrumbLinkMouseEvent`.
|
|
45
|
+
*/
|
|
46
|
+
id?: string;
|
|
47
|
+
/**
|
|
48
|
+
* A Vue native DOM event.
|
|
49
|
+
*/
|
|
50
|
+
nativeEvent: any;
|
|
51
|
+
}
|
|
52
|
+
export interface BreadcrumbProps {
|
|
53
|
+
/**
|
|
54
|
+
* Sets the `id` property of the top `div` element of the Breadcrumb.
|
|
55
|
+
*/
|
|
56
|
+
id?: string;
|
|
57
|
+
/**
|
|
58
|
+
* Represents the Breadcrumb ordered list component.
|
|
59
|
+
*/
|
|
60
|
+
breadcrumbOrderedList?: Component<BreadcrumbOrderedListProps>;
|
|
61
|
+
/**
|
|
62
|
+
* Represents the Breadcrumb list item component.
|
|
63
|
+
*/
|
|
64
|
+
breadcrumbListItem?: Component<BreadcrumbListItemProps>;
|
|
65
|
+
/**
|
|
66
|
+
* Represents the Breadcrumb delimiter component.
|
|
67
|
+
*/
|
|
68
|
+
breadcrumbDelimiter?: Component<BreadcrumbDelimiterProps>;
|
|
69
|
+
/**
|
|
70
|
+
* Represents the Breadcrumb link component.
|
|
71
|
+
*/
|
|
72
|
+
breadcrumbLink?: Component<BreadcrumbLinkProps>;
|
|
73
|
+
/**
|
|
74
|
+
* Represents the dataItems of the Breadcrumb from type BreadcrumbDataModel.
|
|
75
|
+
*/
|
|
76
|
+
dataItems: BreadcrumbDataModel[];
|
|
77
|
+
/**
|
|
78
|
+
* Specifies the padding of all Breadcrumb elements.
|
|
79
|
+
*
|
|
80
|
+
* The possible values are:
|
|
81
|
+
* * `small`
|
|
82
|
+
* * `medium`
|
|
83
|
+
* * `large`
|
|
84
|
+
*
|
|
85
|
+
* @default `undefined`
|
|
86
|
+
*/
|
|
87
|
+
size?: 'small' | 'medium' | 'large';
|
|
88
|
+
/**
|
|
89
|
+
* The Breadcrumb direction `ltr` or `rtl`.
|
|
90
|
+
*/
|
|
91
|
+
dir?: 'ltr' | 'rtl';
|
|
92
|
+
/**
|
|
93
|
+
* Sets the `tabIndex` attribute to the Breadcrumb.
|
|
94
|
+
*/
|
|
95
|
+
tabIndex?: number;
|
|
96
|
+
/**
|
|
97
|
+
* Sets the Collapse mode of the Breadcrumb.
|
|
98
|
+
* The available values are:
|
|
99
|
+
* - `auto`(default)—Items are automatically collapsed based on the width of the Breadcrumb. First and last item always remain visible.
|
|
100
|
+
* - `wrap`—Items are wrapped on multiple rows when their total width is bigger than the width of the BreadCrumb.
|
|
101
|
+
* - `none`—All items are expanded on the same row. This scenario is useful when the Breadcrumb needs to be scrolled.
|
|
102
|
+
*
|
|
103
|
+
* For more information and example refer to the [Collapse Modes]({% slug collapse_modes_breadcrumb %}) article.
|
|
104
|
+
*/
|
|
105
|
+
collapseMode?: 'auto' | 'wrap' | 'none';
|
|
106
|
+
/**
|
|
107
|
+
* Determines the `disabled` mode of the Breadcrumb. If `true`, the component is disabled.
|
|
108
|
+
*/
|
|
109
|
+
disabled?: boolean;
|
|
110
|
+
/**
|
|
111
|
+
* Represents the `value` field. Used for setting the key of the BreadcrumbListItem component and the `id` of the BreadcrumbLink component.
|
|
112
|
+
*/
|
|
113
|
+
valueField?: string;
|
|
114
|
+
/**
|
|
115
|
+
* Represents the `text` field. Used for setting the `text` inside the BreadcrumbLink component.
|
|
116
|
+
*/
|
|
117
|
+
textField?: string;
|
|
118
|
+
/**
|
|
119
|
+
* Represents the `svgIcon` field. Used for setting the `svgIcon` inside the BreadcrumbLink component.
|
|
120
|
+
*/
|
|
121
|
+
svgIconField?: string;
|
|
122
|
+
/**
|
|
123
|
+
* Represents the `icon` field. Used for setting the `icon` inside the BreadcrumbLink component.
|
|
124
|
+
*/
|
|
125
|
+
iconField?: string;
|
|
126
|
+
/**
|
|
127
|
+
* Represents the `onSelect` event. Triggered after click on the Breadcrumb.
|
|
128
|
+
*/
|
|
129
|
+
onSelect?: (event: BreadcrumbLinkMouseEvent) => void;
|
|
130
|
+
/**
|
|
131
|
+
* Triggered on onKeydown event.
|
|
132
|
+
*/
|
|
133
|
+
onKeydown?: (event: any) => void;
|
|
134
|
+
/**
|
|
135
|
+
* Represents the label of the Breadcrumb component.
|
|
136
|
+
*/
|
|
137
|
+
ariaLabel?: string;
|
|
138
|
+
}
|
package/card/Avatar.d.ts
ADDED
|
@@ -0,0 +1,76 @@
|
|
|
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 { avatarType } from './interfaces/Enums';
|
|
9
|
+
import { PropType } from 'vue';
|
|
10
|
+
/**
|
|
11
|
+
* @hidden
|
|
12
|
+
*/
|
|
13
|
+
export interface AvatarComputed {
|
|
14
|
+
[key: string]: any;
|
|
15
|
+
wrapperClass: object;
|
|
16
|
+
innerClass: object;
|
|
17
|
+
}
|
|
18
|
+
/**
|
|
19
|
+
* @hidden
|
|
20
|
+
*/
|
|
21
|
+
declare const Avatar: import('vue').DefineComponent<import('vue').ExtractPropTypes<{
|
|
22
|
+
type: {
|
|
23
|
+
type: PropType<string>;
|
|
24
|
+
default: avatarType;
|
|
25
|
+
validator: (value: string) => boolean;
|
|
26
|
+
};
|
|
27
|
+
border: PropType<boolean>;
|
|
28
|
+
rounded: {
|
|
29
|
+
type: PropType<string>;
|
|
30
|
+
validator: (value: string) => boolean;
|
|
31
|
+
};
|
|
32
|
+
fillMode: {
|
|
33
|
+
type: PropType<string>;
|
|
34
|
+
validator: (value: string) => boolean;
|
|
35
|
+
};
|
|
36
|
+
size: {
|
|
37
|
+
type: PropType<"small" | "medium" | "large">;
|
|
38
|
+
validator: (value: string) => boolean;
|
|
39
|
+
};
|
|
40
|
+
themeColor: {
|
|
41
|
+
type: PropType<string>;
|
|
42
|
+
default: string;
|
|
43
|
+
validator: (value: string) => boolean;
|
|
44
|
+
};
|
|
45
|
+
}>, {}, {}, {
|
|
46
|
+
wrapperClass(): AvatarComputed['wrapperClass'];
|
|
47
|
+
innerClass(): AvatarComputed['innerClass'];
|
|
48
|
+
}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {}, string, import('vue').PublicProps, Readonly<import('vue').ExtractPropTypes<{
|
|
49
|
+
type: {
|
|
50
|
+
type: PropType<string>;
|
|
51
|
+
default: avatarType;
|
|
52
|
+
validator: (value: string) => boolean;
|
|
53
|
+
};
|
|
54
|
+
border: PropType<boolean>;
|
|
55
|
+
rounded: {
|
|
56
|
+
type: PropType<string>;
|
|
57
|
+
validator: (value: string) => boolean;
|
|
58
|
+
};
|
|
59
|
+
fillMode: {
|
|
60
|
+
type: PropType<string>;
|
|
61
|
+
validator: (value: string) => boolean;
|
|
62
|
+
};
|
|
63
|
+
size: {
|
|
64
|
+
type: PropType<"small" | "medium" | "large">;
|
|
65
|
+
validator: (value: string) => boolean;
|
|
66
|
+
};
|
|
67
|
+
themeColor: {
|
|
68
|
+
type: PropType<string>;
|
|
69
|
+
default: string;
|
|
70
|
+
validator: (value: string) => boolean;
|
|
71
|
+
};
|
|
72
|
+
}>> & Readonly<{}>, {
|
|
73
|
+
type: string;
|
|
74
|
+
themeColor: string;
|
|
75
|
+
}, {}, {}, {}, string, import('vue').ComponentProvideOptions, true, {}, any>;
|
|
76
|
+
export { Avatar };
|