@progress/kendo-react-layout 9.0.0-develop.9 → 9.0.1-develop.1
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.js +1 -1
- package/actionsheet/ActionSheet.mjs +148 -146
- package/dist/cdn/js/kendo-react-layout.js +1 -1
- package/index.d.mts +38 -41
- package/index.d.ts +38 -41
- package/index.js +1 -1
- package/index.mjs +39 -38
- package/package-metadata.mjs +1 -1
- package/package.json +7 -7
package/index.d.mts
CHANGED
|
@@ -20,45 +20,7 @@ import { SVGIcon } from '@progress/kendo-react-common';
|
|
|
20
20
|
/**
|
|
21
21
|
* Represents the [KendoReact ActionSheet]({% slug overview_actionsheet %}) component.
|
|
22
22
|
*/
|
|
23
|
-
export declare
|
|
24
|
-
/** @hidden */
|
|
25
|
-
static displayName: string;
|
|
26
|
-
/** @hidden */
|
|
27
|
-
static propTypes: {
|
|
28
|
-
items: PropTypes.Requireable<any[]>;
|
|
29
|
-
subTitle: PropTypes.Requireable<string>;
|
|
30
|
-
title: PropTypes.Requireable<string>;
|
|
31
|
-
navigatable: PropTypes.Requireable<boolean>;
|
|
32
|
-
navigatableElements: PropTypes.Requireable<any[]>;
|
|
33
|
-
};
|
|
34
|
-
/** @hidden */
|
|
35
|
-
static defaultProps: {
|
|
36
|
-
navigatable: boolean;
|
|
37
|
-
navigatableElements: never[];
|
|
38
|
-
};
|
|
39
|
-
private actionSheetRef;
|
|
40
|
-
private actionSheetTitleClass;
|
|
41
|
-
private ariaLabeledBy;
|
|
42
|
-
private navigation?;
|
|
43
|
-
private animationDuration;
|
|
44
|
-
private bottomPosition;
|
|
45
|
-
/** @hidden */
|
|
46
|
-
constructor(props: ActionSheetProps);
|
|
47
|
-
/** @hidden */
|
|
48
|
-
componentDidMount(): void;
|
|
49
|
-
/** @hidden */
|
|
50
|
-
componentDidUpdate(_prevProps: Readonly<ActionSheetProps>, prevState: Readonly<ActionSheetState>): void;
|
|
51
|
-
/** @hidden */
|
|
52
|
-
render(): JSX_2.Element;
|
|
53
|
-
private handleKeyDown;
|
|
54
|
-
private onTab;
|
|
55
|
-
private handleOverlayClick;
|
|
56
|
-
private handleItemClick;
|
|
57
|
-
private onEnter;
|
|
58
|
-
private onEscape;
|
|
59
|
-
private hideActionSheet;
|
|
60
|
-
private children;
|
|
61
|
-
}
|
|
23
|
+
export declare const ActionSheet: React_2.ForwardRefExoticComponent<ActionSheetProps & React_2.RefAttributes<ActionSheetHandle | null>>;
|
|
62
24
|
|
|
63
25
|
/**
|
|
64
26
|
* @hidden
|
|
@@ -89,11 +51,42 @@ export declare interface ActionSheetContentProps extends ActionSheetChildrenProp
|
|
|
89
51
|
overflowHidden?: boolean;
|
|
90
52
|
}
|
|
91
53
|
|
|
54
|
+
/**
|
|
55
|
+
* The default props of the ActionSheet component.
|
|
56
|
+
*/
|
|
57
|
+
export declare const actionSheetDefaultProps: ActionSheetDefaultPropsType;
|
|
58
|
+
|
|
59
|
+
/**
|
|
60
|
+
* The default props interface of the ActionSheet component.
|
|
61
|
+
*/
|
|
62
|
+
export declare type ActionSheetDefaultPropsType = {
|
|
63
|
+
/**
|
|
64
|
+
* Specifies if the ActionSheet can be navigatable with keyboard.
|
|
65
|
+
* Defaults to `true`.
|
|
66
|
+
*
|
|
67
|
+
* @default true
|
|
68
|
+
*/
|
|
69
|
+
navigatable: boolean;
|
|
70
|
+
/**
|
|
71
|
+
* Specifies the selectors of the navigatable elements inside the templates of the ActionSheet.
|
|
72
|
+
*
|
|
73
|
+
* @default []
|
|
74
|
+
*/
|
|
75
|
+
navigatableElements: string[];
|
|
76
|
+
};
|
|
77
|
+
|
|
92
78
|
/**
|
|
93
79
|
* The KendoReact ActionSheetFooter component.
|
|
94
80
|
*/
|
|
95
81
|
export declare const ActionSheetFooter: React_2.FunctionComponent<ActionSheetChildrenProps>;
|
|
96
82
|
|
|
83
|
+
/**
|
|
84
|
+
* Represent the `ref` of the ActionSheet component.
|
|
85
|
+
*/
|
|
86
|
+
export declare interface ActionSheetHandle {
|
|
87
|
+
props: ActionSheetProps;
|
|
88
|
+
}
|
|
89
|
+
|
|
97
90
|
/**
|
|
98
91
|
* The KendoReact ActionSheetHeader component.
|
|
99
92
|
*/
|
|
@@ -225,12 +218,16 @@ export declare interface ActionSheetProps {
|
|
|
225
218
|
/**
|
|
226
219
|
* Specifies if the ActionSheet can be navigatable with keyboard.
|
|
227
220
|
* Defaults to `true`.
|
|
221
|
+
*
|
|
222
|
+
* @default true
|
|
228
223
|
*/
|
|
229
|
-
navigatable
|
|
224
|
+
navigatable?: boolean;
|
|
230
225
|
/**
|
|
231
226
|
* Specifies the selectors of the navigatable elements inside the templates of the ActionSheet.
|
|
227
|
+
*
|
|
228
|
+
* @default []
|
|
232
229
|
*/
|
|
233
|
-
navigatableElements
|
|
230
|
+
navigatableElements?: string[];
|
|
234
231
|
/**
|
|
235
232
|
* Controls the popup animation. By default, the open and close animations are disabled.
|
|
236
233
|
*/
|
package/index.d.ts
CHANGED
|
@@ -20,45 +20,7 @@ import { SVGIcon } from '@progress/kendo-react-common';
|
|
|
20
20
|
/**
|
|
21
21
|
* Represents the [KendoReact ActionSheet]({% slug overview_actionsheet %}) component.
|
|
22
22
|
*/
|
|
23
|
-
export declare
|
|
24
|
-
/** @hidden */
|
|
25
|
-
static displayName: string;
|
|
26
|
-
/** @hidden */
|
|
27
|
-
static propTypes: {
|
|
28
|
-
items: PropTypes.Requireable<any[]>;
|
|
29
|
-
subTitle: PropTypes.Requireable<string>;
|
|
30
|
-
title: PropTypes.Requireable<string>;
|
|
31
|
-
navigatable: PropTypes.Requireable<boolean>;
|
|
32
|
-
navigatableElements: PropTypes.Requireable<any[]>;
|
|
33
|
-
};
|
|
34
|
-
/** @hidden */
|
|
35
|
-
static defaultProps: {
|
|
36
|
-
navigatable: boolean;
|
|
37
|
-
navigatableElements: never[];
|
|
38
|
-
};
|
|
39
|
-
private actionSheetRef;
|
|
40
|
-
private actionSheetTitleClass;
|
|
41
|
-
private ariaLabeledBy;
|
|
42
|
-
private navigation?;
|
|
43
|
-
private animationDuration;
|
|
44
|
-
private bottomPosition;
|
|
45
|
-
/** @hidden */
|
|
46
|
-
constructor(props: ActionSheetProps);
|
|
47
|
-
/** @hidden */
|
|
48
|
-
componentDidMount(): void;
|
|
49
|
-
/** @hidden */
|
|
50
|
-
componentDidUpdate(_prevProps: Readonly<ActionSheetProps>, prevState: Readonly<ActionSheetState>): void;
|
|
51
|
-
/** @hidden */
|
|
52
|
-
render(): JSX_2.Element;
|
|
53
|
-
private handleKeyDown;
|
|
54
|
-
private onTab;
|
|
55
|
-
private handleOverlayClick;
|
|
56
|
-
private handleItemClick;
|
|
57
|
-
private onEnter;
|
|
58
|
-
private onEscape;
|
|
59
|
-
private hideActionSheet;
|
|
60
|
-
private children;
|
|
61
|
-
}
|
|
23
|
+
export declare const ActionSheet: React_2.ForwardRefExoticComponent<ActionSheetProps & React_2.RefAttributes<ActionSheetHandle | null>>;
|
|
62
24
|
|
|
63
25
|
/**
|
|
64
26
|
* @hidden
|
|
@@ -89,11 +51,42 @@ export declare interface ActionSheetContentProps extends ActionSheetChildrenProp
|
|
|
89
51
|
overflowHidden?: boolean;
|
|
90
52
|
}
|
|
91
53
|
|
|
54
|
+
/**
|
|
55
|
+
* The default props of the ActionSheet component.
|
|
56
|
+
*/
|
|
57
|
+
export declare const actionSheetDefaultProps: ActionSheetDefaultPropsType;
|
|
58
|
+
|
|
59
|
+
/**
|
|
60
|
+
* The default props interface of the ActionSheet component.
|
|
61
|
+
*/
|
|
62
|
+
export declare type ActionSheetDefaultPropsType = {
|
|
63
|
+
/**
|
|
64
|
+
* Specifies if the ActionSheet can be navigatable with keyboard.
|
|
65
|
+
* Defaults to `true`.
|
|
66
|
+
*
|
|
67
|
+
* @default true
|
|
68
|
+
*/
|
|
69
|
+
navigatable: boolean;
|
|
70
|
+
/**
|
|
71
|
+
* Specifies the selectors of the navigatable elements inside the templates of the ActionSheet.
|
|
72
|
+
*
|
|
73
|
+
* @default []
|
|
74
|
+
*/
|
|
75
|
+
navigatableElements: string[];
|
|
76
|
+
};
|
|
77
|
+
|
|
92
78
|
/**
|
|
93
79
|
* The KendoReact ActionSheetFooter component.
|
|
94
80
|
*/
|
|
95
81
|
export declare const ActionSheetFooter: React_2.FunctionComponent<ActionSheetChildrenProps>;
|
|
96
82
|
|
|
83
|
+
/**
|
|
84
|
+
* Represent the `ref` of the ActionSheet component.
|
|
85
|
+
*/
|
|
86
|
+
export declare interface ActionSheetHandle {
|
|
87
|
+
props: ActionSheetProps;
|
|
88
|
+
}
|
|
89
|
+
|
|
97
90
|
/**
|
|
98
91
|
* The KendoReact ActionSheetHeader component.
|
|
99
92
|
*/
|
|
@@ -225,12 +218,16 @@ export declare interface ActionSheetProps {
|
|
|
225
218
|
/**
|
|
226
219
|
* Specifies if the ActionSheet can be navigatable with keyboard.
|
|
227
220
|
* Defaults to `true`.
|
|
221
|
+
*
|
|
222
|
+
* @default true
|
|
228
223
|
*/
|
|
229
|
-
navigatable
|
|
224
|
+
navigatable?: boolean;
|
|
230
225
|
/**
|
|
231
226
|
* Specifies the selectors of the navigatable elements inside the templates of the ActionSheet.
|
|
227
|
+
*
|
|
228
|
+
* @default []
|
|
232
229
|
*/
|
|
233
|
-
navigatableElements
|
|
230
|
+
navigatableElements?: string[];
|
|
234
231
|
/**
|
|
235
232
|
* Controls the popup animation. By default, the open and close animations are disabled.
|
|
236
233
|
*/
|
package/index.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 client";"use strict";Object.defineProperty(exports,Symbol.toStringTag,{value:"Module"});const a=require("./menu/components/Menu.js"),i=require("./tabstrip/TabStrip.js"),
|
|
8
|
+
"use client";"use strict";Object.defineProperty(exports,Symbol.toStringTag,{value:"Module"});const a=require("./menu/components/Menu.js"),i=require("./tabstrip/TabStrip.js"),l=require("./menu/components/MenuItemInternal.js"),t=require("./menu/components/MenuItemArrow.js"),m=require("./splitter/SplitterBar.js"),n=require("@progress/kendo-react-common"),p=require("./tabstrip/TabStripContent.js"),S=require("./tabstrip/TabStripNavigation.js"),q=require("./tabstrip/TabStripNavigationItem.js"),C=require("./tabstrip/TabStripTab.js"),b=require("./panelbar/PanelBar.js"),I=require("./panelbar/PanelBarItem.js"),e=require("./panelbar/util.js"),B=require("./menu/components/MenuItemLink.js"),A=require("./menu/components/MenuItem.js"),g=require("./splitter/Splitter.js"),h=require("./splitter/SplitterPane.js"),T=require("./card/Card.js"),N=require("./card/CardHeader.js"),y=require("./card/CardTitle.js"),L=require("./card/CardBody.js"),w=require("./card/CardActions.js"),M=require("./card/CardImage.js"),D=require("./card/CardSubtitle.js"),P=require("./card/CardFooter.js"),v=require("./card/Avatar.js"),f=require("./drawer/Drawer.js"),F=require("./drawer/DrawerNavigation.js"),k=require("./drawer/DrawerContent.js"),E=require("./drawer/DrawerItem.js"),x=require("./stepper/Stepper.js"),H=require("./stepper/Step.js"),O=require("./appbar/AppBar.js"),G=require("./appbar/AppBarSection.js"),V=require("./appbar/AppBarSpacer.js"),R=require("./tilelayout/TileLayout.js"),j=require("./bottomnavigation/BottomNavigation.js"),K=require("./bottomnavigation/BottomNavigationItem.js"),U=require("./stacklayout/StackLayout.js"),Y=require("./gridlayout/GridLayout.js"),$=require("./gridlayout/GridLayoutItem.js"),z=require("./breadcrumb/Breadcrumb.js"),J=require("./breadcrumb/BreadcrumbOrderedList.js"),Q=require("./breadcrumb/BreadcrumbListItem.js"),W=require("./breadcrumb/BreadcrumbDelimiter.js"),X=require("./breadcrumb/BreadcrumbLink.js"),o=require("./actionsheet/ActionSheet.js"),Z=require("./actionsheet/ActionSheetItem.js"),u=require("./actionsheet/ActionSheetHeader.js"),s=require("./actionsheet/ActionSheetContent.js"),c=require("./actionsheet/ActionSheetFooter.js"),_=require("./timeline/Timeline.js"),d=require("./timeline/utils.js"),ee=require("./contextmenu/ContextMenu.js"),te=require("./expansionpanel/ExpansionPanel.js"),re=require("./expansionpanel/ExpansionPanelContent.js"),r=n.withIdHOC(a.Menu);r.displayName="KendoReactMenu";const ae=n.withIdHOC(i.TabStrip);r.displayName="KendoReactMenu";exports.MenuClassComponent=a.Menu;exports.TabStripClassComponent=i.TabStrip;exports.MenuItemInternalsList=l.MenuItemInternalsList;exports.MenuItemArrow=t.MenuItemArrow;exports.downArrowName=t.downArrowName;exports.leftArrowName=t.leftArrowName;exports.rightArrowName=t.rightArrowName;exports.SplitterBar=m.SplitterBar;exports.TabStripContent=p.TabStripContent;exports.TabStripNavigation=S.TabStripNavigation;exports.TabStripNavigationItem=q.TabStripNavigationItem;exports.TabStripTab=C.TabStripTab;exports.PanelBar=b.PanelBar;exports.PanelBarItem=I.PanelBarItem;Object.defineProperty(exports,"PanelBarUtils",{enumerable:!0,get:()=>e.PanelBarUtils});exports.flatChildren=e.flatChildren;exports.flatVisibleChildren=e.flatVisibleChildren;exports.flatVisibleItems=e.flatVisibleItems;exports.getFirstId=e.getFirstId;exports.getFocusedChild=e.getFocusedChild;exports.getInitialState=e.getInitialState;exports.isArrayEqual=e.isArrayEqual;exports.isPresent=e.isPresent;exports.renderChildren=e.renderChildren;exports.MenuItemLink=B.MenuItemLink;exports.MenuItem=A.MenuItem;exports.Splitter=g.Splitter;exports.SplitterPane=h.SplitterPane;exports.Card=T.Card;exports.CardHeader=N.CardHeader;exports.CardTitle=y.CardTitle;exports.CardBody=L.CardBody;exports.CardActions=w.CardActions;exports.CardImage=M.CardImage;exports.CardSubtitle=D.CardSubtitle;exports.CardFooter=P.CardFooter;exports.Avatar=v.Avatar;exports.Drawer=f.Drawer;exports.DrawerNavigation=F.DrawerNavigation;exports.DrawerContent=k.DrawerContent;exports.DrawerItem=E.DrawerItem;exports.Stepper=x.Stepper;exports.Step=H.Step;exports.AppBar=O.AppBar;exports.AppBarSection=G.AppBarSection;exports.AppBarSpacer=V.AppBarSpacer;exports.TileLayout=R.TileLayout;exports.BottomNavigation=j.BottomNavigation;exports.BottomNavigationItem=K.BottomNavigationItem;exports.StackLayout=U.StackLayout;exports.GridLayout=Y.GridLayout;exports.GridLayoutItem=$.GridLayoutItem;exports.Breadcrumb=z.Breadcrumb;exports.BreadcrumbOrderedList=J.BreadcrumbOrderedList;exports.BreadcrumbListItem=Q.BreadcrumbListItem;exports.BreadcrumbDelimiter=W.BreadcrumbDelimiter;exports.BreadcrumbLink=X.BreadcrumbLink;exports.ActionSheet=o.ActionSheet;exports.actionSheetDefaultProps=o.actionSheetDefaultProps;exports.ActionSheetItem=Z.ActionSheetItem;exports.ActionSheetHeader=u.ActionSheetHeader;exports.headerDisplayName=u.headerDisplayName;exports.ActionSheetContent=s.ActionSheetContent;exports.contentDisplayName=s.contentDisplayName;exports.ActionSheetFooter=c.ActionSheetFooter;exports.footerDisplayName=c.footerDisplayName;exports.Timeline=_.Timeline;exports.addYearsFlags=d.addYearsFlags;exports.sortEventList=d.sortEventList;exports.ContextMenu=ee.ContextMenu;exports.ExpansionPanel=te.ExpansionPanel;exports.ExpansionPanelContent=re.ExpansionPanelContent;exports.Menu=r;exports.TabStrip=ae;
|
package/index.mjs
CHANGED
|
@@ -9,16 +9,16 @@
|
|
|
9
9
|
import { Menu as o } from "./menu/components/Menu.mjs";
|
|
10
10
|
import { TabStrip as t } from "./tabstrip/TabStrip.mjs";
|
|
11
11
|
import { MenuItemInternalsList as x } from "./menu/components/MenuItemInternal.mjs";
|
|
12
|
-
import { MenuItemArrow as
|
|
13
|
-
import { SplitterBar as
|
|
12
|
+
import { MenuItemArrow as s, downArrowName as d, leftArrowName as u, rightArrowName as S } from "./menu/components/MenuItemArrow.mjs";
|
|
13
|
+
import { SplitterBar as C } from "./splitter/SplitterBar.mjs";
|
|
14
14
|
import { withIdHOC as r } from "@progress/kendo-react-common";
|
|
15
15
|
import { TabStripContent as I } from "./tabstrip/TabStripContent.mjs";
|
|
16
16
|
import { TabStripNavigation as B } from "./tabstrip/TabStripNavigation.mjs";
|
|
17
|
-
import { TabStripNavigationItem as
|
|
17
|
+
import { TabStripNavigationItem as N } from "./tabstrip/TabStripNavigationItem.mjs";
|
|
18
18
|
import { TabStripTab as g } from "./tabstrip/TabStripTab.mjs";
|
|
19
19
|
import { PanelBar as M } from "./panelbar/PanelBar.mjs";
|
|
20
20
|
import { PanelBarItem as L } from "./panelbar/PanelBarItem.mjs";
|
|
21
|
-
import { PanelBarUtils as
|
|
21
|
+
import { PanelBarUtils as P, flatChildren as v, flatVisibleChildren as F, flatVisibleItems as E, getFirstId as k, getFocusedChild as H, getInitialState as G, isArrayEqual as K, isPresent as O, renderChildren as R } from "./panelbar/util.mjs";
|
|
22
22
|
import { MenuItemLink as $ } from "./menu/components/MenuItemLink.mjs";
|
|
23
23
|
import { MenuItem as U } from "./menu/components/MenuItem.mjs";
|
|
24
24
|
import { Splitter as j } from "./splitter/Splitter.mjs";
|
|
@@ -31,17 +31,17 @@ import { CardActions as ar } from "./card/CardActions.mjs";
|
|
|
31
31
|
import { CardImage as pr } from "./card/CardImage.mjs";
|
|
32
32
|
import { CardSubtitle as nr } from "./card/CardSubtitle.mjs";
|
|
33
33
|
import { CardFooter as xr } from "./card/CardFooter.mjs";
|
|
34
|
-
import { Avatar as
|
|
34
|
+
import { Avatar as sr } from "./card/Avatar.mjs";
|
|
35
35
|
import { Drawer as ur } from "./drawer/Drawer.mjs";
|
|
36
|
-
import { DrawerNavigation as
|
|
36
|
+
import { DrawerNavigation as cr } from "./drawer/DrawerNavigation.mjs";
|
|
37
37
|
import { DrawerContent as br } from "./drawer/DrawerContent.mjs";
|
|
38
38
|
import { DrawerItem as Ar } from "./drawer/DrawerItem.mjs";
|
|
39
|
-
import { Stepper as
|
|
39
|
+
import { Stepper as hr } from "./stepper/Stepper.mjs";
|
|
40
40
|
import { Step as Tr } from "./stepper/Step.mjs";
|
|
41
41
|
import { AppBar as yr } from "./appbar/AppBar.mjs";
|
|
42
42
|
import { AppBarSection as wr } from "./appbar/AppBarSection.mjs";
|
|
43
43
|
import { AppBarSpacer as Dr } from "./appbar/AppBarSpacer.mjs";
|
|
44
|
-
import { TileLayout as
|
|
44
|
+
import { TileLayout as vr } from "./tilelayout/TileLayout.mjs";
|
|
45
45
|
import { BottomNavigation as Er } from "./bottomnavigation/BottomNavigation.mjs";
|
|
46
46
|
import { BottomNavigationItem as Hr } from "./bottomnavigation/BottomNavigationItem.mjs";
|
|
47
47
|
import { StackLayout as Kr } from "./stacklayout/StackLayout.mjs";
|
|
@@ -52,15 +52,15 @@ import { BreadcrumbOrderedList as jr } from "./breadcrumb/BreadcrumbOrderedList.
|
|
|
52
52
|
import { BreadcrumbListItem as Jr } from "./breadcrumb/BreadcrumbListItem.mjs";
|
|
53
53
|
import { BreadcrumbDelimiter as Wr } from "./breadcrumb/BreadcrumbDelimiter.mjs";
|
|
54
54
|
import { BreadcrumbLink as Zr } from "./breadcrumb/BreadcrumbLink.mjs";
|
|
55
|
-
import { ActionSheet as re } from "./actionsheet/ActionSheet.mjs";
|
|
56
|
-
import { ActionSheetItem as
|
|
57
|
-
import { ActionSheetHeader as
|
|
58
|
-
import { ActionSheetContent as
|
|
59
|
-
import { ActionSheetFooter as
|
|
60
|
-
import { Timeline as
|
|
61
|
-
import { addYearsFlags as
|
|
62
|
-
import { ContextMenu as
|
|
63
|
-
import { ExpansionPanel as
|
|
55
|
+
import { ActionSheet as re, actionSheetDefaultProps as ee } from "./actionsheet/ActionSheet.mjs";
|
|
56
|
+
import { ActionSheetItem as te } from "./actionsheet/ActionSheetItem.mjs";
|
|
57
|
+
import { ActionSheetHeader as me, headerDisplayName as pe } from "./actionsheet/ActionSheetHeader.mjs";
|
|
58
|
+
import { ActionSheetContent as ne, contentDisplayName as fe } from "./actionsheet/ActionSheetContent.mjs";
|
|
59
|
+
import { ActionSheetFooter as le, footerDisplayName as se } from "./actionsheet/ActionSheetFooter.mjs";
|
|
60
|
+
import { Timeline as ue } from "./timeline/Timeline.mjs";
|
|
61
|
+
import { addYearsFlags as ce, sortEventList as Ce } from "./timeline/utils.mjs";
|
|
62
|
+
import { ContextMenu as Ie } from "./contextmenu/ContextMenu.mjs";
|
|
63
|
+
import { ExpansionPanel as Be } from "./expansionpanel/ExpansionPanel.mjs";
|
|
64
64
|
import { ExpansionPanelContent as Ne } from "./expansionpanel/ExpansionPanelContent.mjs";
|
|
65
65
|
const e = r(o);
|
|
66
66
|
e.displayName = "KendoReactMenu";
|
|
@@ -68,14 +68,14 @@ const i = r(t);
|
|
|
68
68
|
e.displayName = "KendoReactMenu";
|
|
69
69
|
export {
|
|
70
70
|
re as ActionSheet,
|
|
71
|
-
|
|
72
|
-
|
|
73
|
-
|
|
74
|
-
|
|
71
|
+
ne as ActionSheetContent,
|
|
72
|
+
le as ActionSheetFooter,
|
|
73
|
+
me as ActionSheetHeader,
|
|
74
|
+
te as ActionSheetItem,
|
|
75
75
|
yr as AppBar,
|
|
76
76
|
wr as AppBarSection,
|
|
77
77
|
Dr as AppBarSpacer,
|
|
78
|
-
|
|
78
|
+
sr as Avatar,
|
|
79
79
|
Er as BottomNavigation,
|
|
80
80
|
Hr as BottomNavigationItem,
|
|
81
81
|
Ur as Breadcrumb,
|
|
@@ -91,49 +91,50 @@ export {
|
|
|
91
91
|
pr as CardImage,
|
|
92
92
|
nr as CardSubtitle,
|
|
93
93
|
rr as CardTitle,
|
|
94
|
-
|
|
94
|
+
Ie as ContextMenu,
|
|
95
95
|
ur as Drawer,
|
|
96
96
|
br as DrawerContent,
|
|
97
97
|
Ar as DrawerItem,
|
|
98
|
-
|
|
99
|
-
|
|
98
|
+
cr as DrawerNavigation,
|
|
99
|
+
Be as ExpansionPanel,
|
|
100
100
|
Ne as ExpansionPanelContent,
|
|
101
101
|
Rr as GridLayout,
|
|
102
102
|
$r as GridLayoutItem,
|
|
103
103
|
e as Menu,
|
|
104
104
|
o as MenuClassComponent,
|
|
105
105
|
U as MenuItem,
|
|
106
|
-
|
|
106
|
+
s as MenuItemArrow,
|
|
107
107
|
x as MenuItemInternalsList,
|
|
108
108
|
$ as MenuItemLink,
|
|
109
109
|
M as PanelBar,
|
|
110
110
|
L as PanelBarItem,
|
|
111
|
-
|
|
111
|
+
P as PanelBarUtils,
|
|
112
112
|
j as Splitter,
|
|
113
|
-
|
|
113
|
+
C as SplitterBar,
|
|
114
114
|
J as SplitterPane,
|
|
115
115
|
Kr as StackLayout,
|
|
116
116
|
Tr as Step,
|
|
117
|
-
|
|
117
|
+
hr as Stepper,
|
|
118
118
|
i as TabStrip,
|
|
119
119
|
t as TabStripClassComponent,
|
|
120
120
|
I as TabStripContent,
|
|
121
121
|
B as TabStripNavigation,
|
|
122
|
-
|
|
122
|
+
N as TabStripNavigationItem,
|
|
123
123
|
g as TabStripTab,
|
|
124
|
-
|
|
125
|
-
|
|
126
|
-
|
|
127
|
-
|
|
128
|
-
|
|
129
|
-
|
|
124
|
+
vr as TileLayout,
|
|
125
|
+
ue as Timeline,
|
|
126
|
+
ee as actionSheetDefaultProps,
|
|
127
|
+
ce as addYearsFlags,
|
|
128
|
+
fe as contentDisplayName,
|
|
129
|
+
d as downArrowName,
|
|
130
|
+
v as flatChildren,
|
|
130
131
|
F as flatVisibleChildren,
|
|
131
132
|
E as flatVisibleItems,
|
|
132
|
-
|
|
133
|
+
se as footerDisplayName,
|
|
133
134
|
k as getFirstId,
|
|
134
135
|
H as getFocusedChild,
|
|
135
136
|
G as getInitialState,
|
|
136
|
-
|
|
137
|
+
pe as headerDisplayName,
|
|
137
138
|
K as isArrayEqual,
|
|
138
139
|
O as isPresent,
|
|
139
140
|
u as leftArrowName,
|
package/package-metadata.mjs
CHANGED
|
@@ -10,7 +10,7 @@ const e = {
|
|
|
10
10
|
name: "@progress/kendo-react-layout",
|
|
11
11
|
productName: "KendoReact",
|
|
12
12
|
productCodes: ["KENDOUIREACT", "KENDOUICOMPLETE"],
|
|
13
|
-
publishDate:
|
|
13
|
+
publishDate: 1731421738,
|
|
14
14
|
version: "",
|
|
15
15
|
licensingDocsUrl: "https://www.telerik.com/kendo-react-ui/components/my-license/"
|
|
16
16
|
};
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@progress/kendo-react-layout",
|
|
3
|
-
"version": "9.0.
|
|
3
|
+
"version": "9.0.1-develop.1",
|
|
4
4
|
"description": "React Layout components enable you to create a perceptive and intuitive layout of web projects. KendoReact Layout package",
|
|
5
5
|
"author": "Progress",
|
|
6
6
|
"license": "SEE LICENSE IN LICENSE.md",
|
|
@@ -23,12 +23,12 @@
|
|
|
23
23
|
"sideEffects": false,
|
|
24
24
|
"peerDependencies": {
|
|
25
25
|
"@progress/kendo-licensing": "^1.3.4",
|
|
26
|
-
"@progress/kendo-react-animation": "9.0.
|
|
27
|
-
"@progress/kendo-react-common": "9.0.
|
|
28
|
-
"@progress/kendo-react-intl": "9.0.
|
|
29
|
-
"@progress/kendo-react-popup": "9.0.
|
|
30
|
-
"@progress/kendo-react-progressbars": "9.0.
|
|
31
|
-
"@progress/kendo-svg-icons": "^
|
|
26
|
+
"@progress/kendo-react-animation": "9.0.1-develop.1",
|
|
27
|
+
"@progress/kendo-react-common": "9.0.1-develop.1",
|
|
28
|
+
"@progress/kendo-react-intl": "9.0.1-develop.1",
|
|
29
|
+
"@progress/kendo-react-popup": "9.0.1-develop.1",
|
|
30
|
+
"@progress/kendo-react-progressbars": "9.0.1-develop.1",
|
|
31
|
+
"@progress/kendo-svg-icons": "^4.0.0",
|
|
32
32
|
"react": "^16.8.2 || ^17.0.0 || ^18.0.0",
|
|
33
33
|
"react-dom": "^16.8.2 || ^17.0.0 || ^18.0.0"
|
|
34
34
|
},
|