@progress/kendo-vue-layout 8.0.3-develop.2 → 8.0.3-develop.4
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
package/card/Card.d.ts
ADDED
|
@@ -0,0 +1,50 @@
|
|
|
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 { cardType, cardOrientation } from './interfaces/Enums';
|
|
9
|
+
import { PropType } from 'vue';
|
|
10
|
+
/**
|
|
11
|
+
* @hidden
|
|
12
|
+
*/
|
|
13
|
+
export interface CardComputed {
|
|
14
|
+
[key: string]: any;
|
|
15
|
+
wrapperClass: object;
|
|
16
|
+
}
|
|
17
|
+
/**
|
|
18
|
+
* @hidden
|
|
19
|
+
*/
|
|
20
|
+
declare const Card: import('vue').DefineComponent<import('vue').ExtractPropTypes<{
|
|
21
|
+
dir: PropType<string>;
|
|
22
|
+
type: {
|
|
23
|
+
type: PropType<string>;
|
|
24
|
+
default: cardType;
|
|
25
|
+
validator: (value: string) => any;
|
|
26
|
+
};
|
|
27
|
+
orientation: {
|
|
28
|
+
type: PropType<string>;
|
|
29
|
+
default: cardOrientation;
|
|
30
|
+
validator: (value: string) => any;
|
|
31
|
+
};
|
|
32
|
+
}>, {}, {}, {
|
|
33
|
+
wrapperClass(): CardComputed['wrapperClass'];
|
|
34
|
+
}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {}, string, import('vue').PublicProps, Readonly<import('vue').ExtractPropTypes<{
|
|
35
|
+
dir: PropType<string>;
|
|
36
|
+
type: {
|
|
37
|
+
type: PropType<string>;
|
|
38
|
+
default: cardType;
|
|
39
|
+
validator: (value: string) => any;
|
|
40
|
+
};
|
|
41
|
+
orientation: {
|
|
42
|
+
type: PropType<string>;
|
|
43
|
+
default: cardOrientation;
|
|
44
|
+
validator: (value: string) => any;
|
|
45
|
+
};
|
|
46
|
+
}>> & Readonly<{}>, {
|
|
47
|
+
type: string;
|
|
48
|
+
orientation: string;
|
|
49
|
+
}, {}, {}, {}, string, import('vue').ComponentProvideOptions, true, {}, any>;
|
|
50
|
+
export { Card };
|
|
@@ -0,0 +1,52 @@
|
|
|
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 { cardActionsLayout, cardOrientation } from './interfaces/Enums';
|
|
9
|
+
import { PropType } from 'vue';
|
|
10
|
+
/**
|
|
11
|
+
* @hidden
|
|
12
|
+
*/
|
|
13
|
+
export interface CardActionsComputed {
|
|
14
|
+
[key: string]: any;
|
|
15
|
+
wrapperClass: object;
|
|
16
|
+
}
|
|
17
|
+
/**
|
|
18
|
+
* @hidden
|
|
19
|
+
*/
|
|
20
|
+
declare const CardActions: import('vue').DefineComponent<import('vue').ExtractPropTypes<{
|
|
21
|
+
layout: {
|
|
22
|
+
type: PropType<string>;
|
|
23
|
+
default: cardActionsLayout;
|
|
24
|
+
validator: (value: string) => any;
|
|
25
|
+
};
|
|
26
|
+
orientation: {
|
|
27
|
+
type: PropType<string>;
|
|
28
|
+
default: cardOrientation;
|
|
29
|
+
validator: (value: string) => any;
|
|
30
|
+
};
|
|
31
|
+
}>, {}, {}, {
|
|
32
|
+
wrapperClass(): {
|
|
33
|
+
[x: string]: boolean;
|
|
34
|
+
'k-card-actions': boolean;
|
|
35
|
+
'k-actions': boolean;
|
|
36
|
+
};
|
|
37
|
+
}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {}, string, import('vue').PublicProps, Readonly<import('vue').ExtractPropTypes<{
|
|
38
|
+
layout: {
|
|
39
|
+
type: PropType<string>;
|
|
40
|
+
default: cardActionsLayout;
|
|
41
|
+
validator: (value: string) => any;
|
|
42
|
+
};
|
|
43
|
+
orientation: {
|
|
44
|
+
type: PropType<string>;
|
|
45
|
+
default: cardOrientation;
|
|
46
|
+
validator: (value: string) => any;
|
|
47
|
+
};
|
|
48
|
+
}>> & Readonly<{}>, {
|
|
49
|
+
orientation: string;
|
|
50
|
+
layout: string;
|
|
51
|
+
}, {}, {}, {}, string, import('vue').ComponentProvideOptions, true, {}, any>;
|
|
52
|
+
export { CardActions };
|
|
@@ -0,0 +1,12 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* @license
|
|
3
|
+
*-------------------------------------------------------------------------------------------
|
|
4
|
+
* Copyright © 2026 Progress Software Corporation. All rights reserved.
|
|
5
|
+
* Licensed under commercial license. See LICENSE.md in the package root for more information
|
|
6
|
+
*-------------------------------------------------------------------------------------------
|
|
7
|
+
*/
|
|
8
|
+
/**
|
|
9
|
+
* @hidden
|
|
10
|
+
*/
|
|
11
|
+
declare const CardBody: import('vue').DefineComponent<{}, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {}, string, import('vue').PublicProps, Readonly<{}> & Readonly<{}>, {}, {}, {}, {}, string, import('vue').ComponentProvideOptions, true, {}, any>;
|
|
12
|
+
export { CardBody };
|
|
@@ -0,0 +1,12 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* @license
|
|
3
|
+
*-------------------------------------------------------------------------------------------
|
|
4
|
+
* Copyright © 2026 Progress Software Corporation. All rights reserved.
|
|
5
|
+
* Licensed under commercial license. See LICENSE.md in the package root for more information
|
|
6
|
+
*-------------------------------------------------------------------------------------------
|
|
7
|
+
*/
|
|
8
|
+
/**
|
|
9
|
+
* @hidden
|
|
10
|
+
*/
|
|
11
|
+
declare const CardFooter: import('vue').DefineComponent<{}, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {}, string, import('vue').PublicProps, Readonly<{}> & Readonly<{}>, {}, {}, {}, {}, string, import('vue').ComponentProvideOptions, true, {}, any>;
|
|
12
|
+
export { CardFooter };
|
|
@@ -0,0 +1,12 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* @license
|
|
3
|
+
*-------------------------------------------------------------------------------------------
|
|
4
|
+
* Copyright © 2026 Progress Software Corporation. All rights reserved.
|
|
5
|
+
* Licensed under commercial license. See LICENSE.md in the package root for more information
|
|
6
|
+
*-------------------------------------------------------------------------------------------
|
|
7
|
+
*/
|
|
8
|
+
/**
|
|
9
|
+
* @hidden
|
|
10
|
+
*/
|
|
11
|
+
declare const CardHeader: import('vue').DefineComponent<{}, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {}, string, import('vue').PublicProps, Readonly<{}> & Readonly<{}>, {}, {}, {}, {}, string, import('vue').ComponentProvideOptions, true, {}, any>;
|
|
12
|
+
export { CardHeader };
|
|
@@ -0,0 +1,17 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* @license
|
|
3
|
+
*-------------------------------------------------------------------------------------------
|
|
4
|
+
* Copyright © 2026 Progress Software Corporation. All rights reserved.
|
|
5
|
+
* Licensed under commercial license. See LICENSE.md in the package root for more information
|
|
6
|
+
*-------------------------------------------------------------------------------------------
|
|
7
|
+
*/
|
|
8
|
+
import { PropType } from 'vue';
|
|
9
|
+
/**
|
|
10
|
+
* @hidden
|
|
11
|
+
*/
|
|
12
|
+
declare const CardImage: import('vue').DefineComponent<import('vue').ExtractPropTypes<{
|
|
13
|
+
src: PropType<string>;
|
|
14
|
+
}>, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {}, string, import('vue').PublicProps, Readonly<import('vue').ExtractPropTypes<{
|
|
15
|
+
src: PropType<string>;
|
|
16
|
+
}>> & Readonly<{}>, {}, {}, {}, {}, string, import('vue').ComponentProvideOptions, true, {}, any>;
|
|
17
|
+
export { CardImage };
|
|
@@ -0,0 +1,12 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* @license
|
|
3
|
+
*-------------------------------------------------------------------------------------------
|
|
4
|
+
* Copyright © 2026 Progress Software Corporation. All rights reserved.
|
|
5
|
+
* Licensed under commercial license. See LICENSE.md in the package root for more information
|
|
6
|
+
*-------------------------------------------------------------------------------------------
|
|
7
|
+
*/
|
|
8
|
+
/**
|
|
9
|
+
* @hidden
|
|
10
|
+
*/
|
|
11
|
+
declare const CardSubtitle: import('vue').DefineComponent<{}, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {}, string, import('vue').PublicProps, Readonly<{}> & Readonly<{}>, {}, {}, {}, {}, string, import('vue').ComponentProvideOptions, true, {}, any>;
|
|
12
|
+
export { CardSubtitle };
|
|
@@ -0,0 +1,12 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* @license
|
|
3
|
+
*-------------------------------------------------------------------------------------------
|
|
4
|
+
* Copyright © 2026 Progress Software Corporation. All rights reserved.
|
|
5
|
+
* Licensed under commercial license. See LICENSE.md in the package root for more information
|
|
6
|
+
*-------------------------------------------------------------------------------------------
|
|
7
|
+
*/
|
|
8
|
+
/**
|
|
9
|
+
* @hidden
|
|
10
|
+
*/
|
|
11
|
+
declare const CardTitle: import('vue').DefineComponent<{}, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {}, string, import('vue').PublicProps, Readonly<{}> & Readonly<{}>, {}, {}, {}, {}, string, import('vue').ComponentProvideOptions, true, {}, any>;
|
|
12
|
+
export { CardTitle };
|
|
@@ -0,0 +1,79 @@
|
|
|
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 { avatarShape, avatarType } from './Enums';
|
|
9
|
+
export interface AvatarProps {
|
|
10
|
+
/**
|
|
11
|
+
* Specifies the appearance fill style of the Avatar.
|
|
12
|
+
*
|
|
13
|
+
* The possible values are:
|
|
14
|
+
* * `solid` (Default)
|
|
15
|
+
* * `outline`
|
|
16
|
+
*
|
|
17
|
+
*/
|
|
18
|
+
fillMode?: null | 'solid' | 'outline' | string;
|
|
19
|
+
/**
|
|
20
|
+
* @hidden
|
|
21
|
+
*/
|
|
22
|
+
shape?: avatarShape | string;
|
|
23
|
+
/**
|
|
24
|
+
* Specifies the size of the Avatar
|
|
25
|
+
*
|
|
26
|
+
* The possible values are:
|
|
27
|
+
* * `small`
|
|
28
|
+
* * `medium` (Default)
|
|
29
|
+
* * `large`
|
|
30
|
+
*
|
|
31
|
+
*/
|
|
32
|
+
size?: null | 'small' | 'medium' | 'large';
|
|
33
|
+
/**
|
|
34
|
+
* Sets a border to the Avatar.
|
|
35
|
+
*/
|
|
36
|
+
border?: boolean;
|
|
37
|
+
/**
|
|
38
|
+
* Configures the `roundness` of the Button.
|
|
39
|
+
*
|
|
40
|
+
* The available options are:
|
|
41
|
+
* - small
|
|
42
|
+
* - medium
|
|
43
|
+
* - large
|
|
44
|
+
* - full
|
|
45
|
+
* - null—Does not set a rounded `className`.
|
|
46
|
+
*
|
|
47
|
+
* @default `medium`
|
|
48
|
+
*/
|
|
49
|
+
rounded?: null | 'small' | 'medium' | 'large' | 'full' | string;
|
|
50
|
+
/**
|
|
51
|
+
* Set the type of the Avatar.
|
|
52
|
+
*
|
|
53
|
+
* The supported values are:
|
|
54
|
+
* * `image`
|
|
55
|
+
* * `text`
|
|
56
|
+
* * `icon`
|
|
57
|
+
*/
|
|
58
|
+
type?: avatarType | string;
|
|
59
|
+
/**
|
|
60
|
+
* Configures the `themeColor` of the Button.
|
|
61
|
+
*
|
|
62
|
+
* The available options are:
|
|
63
|
+
* - base
|
|
64
|
+
* - primary
|
|
65
|
+
* - secondary
|
|
66
|
+
* - tertiary
|
|
67
|
+
* - info
|
|
68
|
+
* - success
|
|
69
|
+
* - error
|
|
70
|
+
* - warning
|
|
71
|
+
* - dark
|
|
72
|
+
* - light
|
|
73
|
+
* - inverse
|
|
74
|
+
* - null—Does not set a themeColor `className`.
|
|
75
|
+
*
|
|
76
|
+
* @default `base`
|
|
77
|
+
*/
|
|
78
|
+
themeColor?: null | 'base' | 'primary' | 'secondary' | 'tertiary' | 'info' | 'success' | 'error' | 'warning' | 'dark' | 'light' | 'inverse' | string;
|
|
79
|
+
}
|
|
@@ -0,0 +1,29 @@
|
|
|
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 { cardActionsLayout, cardOrientation } from './Enums';
|
|
9
|
+
export interface CardActionsProps {
|
|
10
|
+
/**
|
|
11
|
+
* Set the layout of the actions.
|
|
12
|
+
*
|
|
13
|
+
* The supported values are:
|
|
14
|
+
* * (Default) `start`
|
|
15
|
+
* * `center`
|
|
16
|
+
* * `end`
|
|
17
|
+
* * `stretched`
|
|
18
|
+
*/
|
|
19
|
+
layout?: cardActionsLayout | string;
|
|
20
|
+
/**
|
|
21
|
+
* Specifies the orientation of the Card action buttons.
|
|
22
|
+
*
|
|
23
|
+
* * The possible values are:
|
|
24
|
+
* * (Default) `horizontal`
|
|
25
|
+
* * `vertical`
|
|
26
|
+
*
|
|
27
|
+
*/
|
|
28
|
+
orientation?: cardOrientation | string;
|
|
29
|
+
}
|
|
@@ -0,0 +1,9 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* @license
|
|
3
|
+
*-------------------------------------------------------------------------------------------
|
|
4
|
+
* Copyright © 2026 Progress Software Corporation. All rights reserved.
|
|
5
|
+
* Licensed under commercial license. See LICENSE.md in the package root for more information
|
|
6
|
+
*-------------------------------------------------------------------------------------------
|
|
7
|
+
*/
|
|
8
|
+
export interface CardBodyProps {
|
|
9
|
+
}
|
|
@@ -0,0 +1,9 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* @license
|
|
3
|
+
*-------------------------------------------------------------------------------------------
|
|
4
|
+
* Copyright © 2026 Progress Software Corporation. All rights reserved.
|
|
5
|
+
* Licensed under commercial license. See LICENSE.md in the package root for more information
|
|
6
|
+
*-------------------------------------------------------------------------------------------
|
|
7
|
+
*/
|
|
8
|
+
export interface CardFooterProps {
|
|
9
|
+
}
|
|
@@ -0,0 +1,9 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* @license
|
|
3
|
+
*-------------------------------------------------------------------------------------------
|
|
4
|
+
* Copyright © 2026 Progress Software Corporation. All rights reserved.
|
|
5
|
+
* Licensed under commercial license. See LICENSE.md in the package root for more information
|
|
6
|
+
*-------------------------------------------------------------------------------------------
|
|
7
|
+
*/
|
|
8
|
+
export interface CardHeaderProps {
|
|
9
|
+
}
|
|
@@ -0,0 +1,13 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* @license
|
|
3
|
+
*-------------------------------------------------------------------------------------------
|
|
4
|
+
* Copyright © 2026 Progress Software Corporation. All rights reserved.
|
|
5
|
+
* Licensed under commercial license. See LICENSE.md in the package root for more information
|
|
6
|
+
*-------------------------------------------------------------------------------------------
|
|
7
|
+
*/
|
|
8
|
+
export interface CardImageProps {
|
|
9
|
+
/**
|
|
10
|
+
* Set the source of the image.
|
|
11
|
+
*/
|
|
12
|
+
src?: string;
|
|
13
|
+
}
|
|
@@ -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 { cardType, cardOrientation } from './Enums';
|
|
9
|
+
export interface CardProps {
|
|
10
|
+
/**
|
|
11
|
+
* Sets the [dir](https://www.w3schools.com/tags/att_global_dir.asp) of the Card.
|
|
12
|
+
*/
|
|
13
|
+
dir?: string;
|
|
14
|
+
/**
|
|
15
|
+
* Set the type of the Card.
|
|
16
|
+
*
|
|
17
|
+
* The supported values are:
|
|
18
|
+
* * `default`
|
|
19
|
+
* * `primary`
|
|
20
|
+
* * `info`
|
|
21
|
+
* * `success`
|
|
22
|
+
* * `warning`
|
|
23
|
+
* * `error`
|
|
24
|
+
*/
|
|
25
|
+
type?: cardType | string;
|
|
26
|
+
/**
|
|
27
|
+
* Set the orientation of the Card.
|
|
28
|
+
*
|
|
29
|
+
* The supported values are:
|
|
30
|
+
* * `horizontal` - Default
|
|
31
|
+
* * `vertical`
|
|
32
|
+
*/
|
|
33
|
+
orientation?: cardOrientation | string;
|
|
34
|
+
}
|
|
@@ -0,0 +1,9 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* @license
|
|
3
|
+
*-------------------------------------------------------------------------------------------
|
|
4
|
+
* Copyright © 2026 Progress Software Corporation. All rights reserved.
|
|
5
|
+
* Licensed under commercial license. See LICENSE.md in the package root for more information
|
|
6
|
+
*-------------------------------------------------------------------------------------------
|
|
7
|
+
*/
|
|
8
|
+
export interface CardSubtitleProps {
|
|
9
|
+
}
|
|
@@ -0,0 +1,9 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* @license
|
|
3
|
+
*-------------------------------------------------------------------------------------------
|
|
4
|
+
* Copyright © 2026 Progress Software Corporation. All rights reserved.
|
|
5
|
+
* Licensed under commercial license. See LICENSE.md in the package root for more information
|
|
6
|
+
*-------------------------------------------------------------------------------------------
|
|
7
|
+
*/
|
|
8
|
+
export interface CardTitleProps {
|
|
9
|
+
}
|
|
@@ -0,0 +1,39 @@
|
|
|
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 avatarShape {
|
|
12
|
+
CIRCLE = "circle",
|
|
13
|
+
SQUARE = "square",
|
|
14
|
+
ROUNDED = "rounded",
|
|
15
|
+
RECTANGLE = "rectangle"
|
|
16
|
+
}
|
|
17
|
+
export declare enum avatarType {
|
|
18
|
+
TEXT = "text",
|
|
19
|
+
IMAGE = "image",
|
|
20
|
+
ICON = "icon"
|
|
21
|
+
}
|
|
22
|
+
export declare enum cardOrientation {
|
|
23
|
+
HORIZONTAL = "horizontal",
|
|
24
|
+
VERTICAL = "vertical"
|
|
25
|
+
}
|
|
26
|
+
export declare enum cardType {
|
|
27
|
+
DEFAULT = "default",
|
|
28
|
+
primary = "primary",
|
|
29
|
+
INFO = "info",
|
|
30
|
+
SUCCESS = "success",
|
|
31
|
+
WARNING = "warning",
|
|
32
|
+
ERROR = "error"
|
|
33
|
+
}
|
|
34
|
+
export declare enum cardActionsLayout {
|
|
35
|
+
START = "start",
|
|
36
|
+
CENTER = "center",
|
|
37
|
+
END = "end",
|
|
38
|
+
STRETCHED = "stretched"
|
|
39
|
+
}
|
package/card/interfaces/Enums.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"});let e=function(t){return t.TEXT="text",t.IMAGE="image",t.ICON="icon",t}({}),n=function(t){return t.HORIZONTAL="horizontal",t.VERTICAL="vertical",t}({}),r=function(t){return t.DEFAULT="default",t.primary="primary",t.INFO="info",t.SUCCESS="success",t.WARNING="warning",t.ERROR="error",t}({}),i=function(t){return t.START="start",t.CENTER="center",t.END="end",t.STRETCHED="stretched",t}({});exports.avatarType=e;exports.cardActionsLayout=i;exports.cardOrientation=n;exports.cardType=r;
|
|
8
|
+
"use strict";Object.defineProperty(exports,Symbol.toStringTag,{value:"Module"});let e=(function(t){return t.TEXT="text",t.IMAGE="image",t.ICON="icon",t})({}),n=(function(t){return t.HORIZONTAL="horizontal",t.VERTICAL="vertical",t})({}),r=(function(t){return t.DEFAULT="default",t.primary="primary",t.INFO="info",t.SUCCESS="success",t.WARNING="warning",t.ERROR="error",t})({}),i=(function(t){return t.START="start",t.CENTER="center",t.END="end",t.STRETCHED="stretched",t})({});exports.avatarType=e;exports.cardActionsLayout=i;exports.cardOrientation=n;exports.cardType=r;
|
|
@@ -5,15 +5,15 @@
|
|
|
5
5
|
* Licensed under commercial license. See LICENSE.md in the package root for more information
|
|
6
6
|
*-------------------------------------------------------------------------------------------
|
|
7
7
|
*/
|
|
8
|
-
let t = /* @__PURE__ */ function(n) {
|
|
8
|
+
let t = /* @__PURE__ */ (function(n) {
|
|
9
9
|
return n.TEXT = "text", n.IMAGE = "image", n.ICON = "icon", n;
|
|
10
|
-
}({}), e = /* @__PURE__ */ function(n) {
|
|
10
|
+
})({}), e = /* @__PURE__ */ (function(n) {
|
|
11
11
|
return n.HORIZONTAL = "horizontal", n.VERTICAL = "vertical", n;
|
|
12
|
-
}({}), E = /* @__PURE__ */ function(n) {
|
|
12
|
+
})({}), E = /* @__PURE__ */ (function(n) {
|
|
13
13
|
return n.DEFAULT = "default", n.primary = "primary", n.INFO = "info", n.SUCCESS = "success", n.WARNING = "warning", n.ERROR = "error", n;
|
|
14
|
-
}({}), r = /* @__PURE__ */ function(n) {
|
|
14
|
+
})({}), r = /* @__PURE__ */ (function(n) {
|
|
15
15
|
return n.START = "start", n.CENTER = "center", n.END = "end", n.STRETCHED = "stretched", n;
|
|
16
|
-
}({});
|
|
16
|
+
})({});
|
|
17
17
|
export {
|
|
18
18
|
t as avatarType,
|
|
19
19
|
r as cardActionsLayout,
|