@progress/kendo-react-layout 14.5.0-develop.13 → 14.5.0-develop.14
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/MenuMcpWrapper.d.ts +17 -0
- package/MenuMcpWrapper.js +8 -0
- package/MenuMcpWrapper.mjs +18 -0
- package/dist/cdn/js/kendo-react-layout.js +1 -1
- package/drawer/Drawer.js +1 -1
- package/drawer/Drawer.mjs +63 -63
- package/drawer/interfaces/DrawerProps.d.ts +8 -0
- package/index.d.mts +1 -2
- package/index.d.ts +1 -2
- package/index.js +1 -1
- package/index.mjs +128 -130
- package/menu/MenuProps.d.ts +6 -0
- package/package-metadata.js +1 -1
- package/package-metadata.mjs +2 -2
- package/package.json +8 -8
- package/panelbar/PanelBar.js +1 -1
- package/panelbar/PanelBar.mjs +92 -90
- package/panelbar/interfaces/PanelBarProps.d.ts +8 -0
- package/stepper/Stepper.js +1 -1
- package/stepper/Stepper.mjs +109 -107
- package/stepper/interfaces/StepperProps.d.ts +8 -1
- package/tabstrip/TabStrip.d.ts +8 -1
- package/tabstrip/TabStrip.js +1 -1
- package/tabstrip/TabStrip.mjs +126 -125
package/drawer/Drawer.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
|
|
8
|
+
"use strict";Object.defineProperty(exports,Symbol.toStringTag,{value:"Module"});const I=require("react"),e=require("prop-types"),M=require("./context/DrawerContext.js"),T=require("./DrawerNavigation.js"),u=require("@progress/kendo-react-common");function W(n){const o=Object.create(null,{[Symbol.toStringTag]:{value:"Module"}});if(n){for(const r in n)if(r!=="default"){const a=Object.getOwnPropertyDescriptor(n,r);Object.defineProperty(o,r,a.get?a:{enumerable:!0,get:()=>n[r]})}}return o.default=n,Object.freeze(o)}const t=W(I),m=t.forwardRef((n,o)=>{const{expanded:r=i.expanded,mode:a=i.mode,position:y=i.position,className:g,drawerClassName:h,children:k,style:D,animation:N=i.animation,mini:f=i.mini,width:C=i.width,miniWidth:x,items:c,item:R,tabIndex:O,onOverlayClick:S,onSelect:l}=n,s=t.useRef(null),w=t.useRef(null),p=t.useCallback(()=>{s.current&&s.current.focus()},[]),b=t.useCallback(()=>({element:s.current,focus:p}),[p]);t.useImperativeHandle(o,b),t.useImperativeHandle(w,b),u.useWebMcpRegister("drawer",w,n,n.webMcp);const E=t.useCallback((P,q,d)=>{if(c&&l){const H={itemTarget:P,itemIndex:q,syntheticEvent:d,nativeEvent:d&&d.nativeEvent,target:void 0};l.call(void 0,H)}},[c,l]),v=u.useDir(s,n.dir),j=u.classNames({"k-drawer-container":!0,"k-drawer-expanded":r,"k-drawer-overlay":a==="overlay","k-drawer-push":a==="push","k-drawer-mini":f&&!r},g);return t.createElement(M.DrawerContext.Provider,{value:{animation:N,expanded:r,mode:a,position:y,mini:f,dir:v,items:c,item:R,width:C,miniWidth:x,onOverlayClick:S,onSelect:E}},t.createElement("div",{className:j,ref:s,dir:v,style:D,tabIndex:O},c&&t.createElement(T.DrawerNavigation,{className:h}),k))});m.propTypes={animation:e.any,expanded:e.bool,children:e.any,className:e.string,dir:e.string,mode:e.string,position:e.string,mini:e.bool,style:e.object,tabIndex:e.number,width:e.number,miniWidth:e.number,selected:e.number,onSelect:e.func,onOverlayClick:e.func};const i={animation:!0,expanded:!1,mode:"overlay",position:"start",mini:!1,width:240};m.displayName="KendoDrawer";exports.Drawer=m;
|
package/drawer/Drawer.mjs
CHANGED
|
@@ -5,85 +5,85 @@
|
|
|
5
5
|
* Licensed under commercial license. See LICENSE.md in the package root for more information
|
|
6
6
|
*-------------------------------------------------------------------------------------------
|
|
7
7
|
*/
|
|
8
|
-
import * as
|
|
8
|
+
import * as a from "react";
|
|
9
9
|
import e from "prop-types";
|
|
10
|
-
import { DrawerContext as
|
|
11
|
-
import { DrawerNavigation as
|
|
12
|
-
import { useDir as
|
|
13
|
-
const
|
|
10
|
+
import { DrawerContext as M } from "./context/DrawerContext.mjs";
|
|
11
|
+
import { DrawerNavigation as O } from "./DrawerNavigation.mjs";
|
|
12
|
+
import { useWebMcpRegister as T, useDir as j, classNames as K } from "@progress/kendo-react-common";
|
|
13
|
+
const w = a.forwardRef((t, v) => {
|
|
14
14
|
const {
|
|
15
|
-
expanded:
|
|
16
|
-
mode:
|
|
17
|
-
position:
|
|
18
|
-
className:
|
|
19
|
-
drawerClassName:
|
|
20
|
-
children:
|
|
21
|
-
style:
|
|
22
|
-
animation:
|
|
23
|
-
mini:
|
|
24
|
-
width:
|
|
25
|
-
miniWidth:
|
|
26
|
-
items:
|
|
27
|
-
item:
|
|
28
|
-
tabIndex:
|
|
29
|
-
onOverlayClick:
|
|
30
|
-
onSelect:
|
|
31
|
-
} =
|
|
32
|
-
|
|
33
|
-
}, [])
|
|
34
|
-
n.useImperativeHandle(
|
|
35
|
-
p,
|
|
15
|
+
expanded: o = n.expanded,
|
|
16
|
+
mode: s = n.mode,
|
|
17
|
+
position: b = n.position,
|
|
18
|
+
className: y,
|
|
19
|
+
drawerClassName: h,
|
|
20
|
+
children: k,
|
|
21
|
+
style: x,
|
|
22
|
+
animation: N = n.animation,
|
|
23
|
+
mini: m = n.mini,
|
|
24
|
+
width: g = n.width,
|
|
25
|
+
miniWidth: C,
|
|
26
|
+
items: i,
|
|
27
|
+
item: E,
|
|
28
|
+
tabIndex: R,
|
|
29
|
+
onOverlayClick: D,
|
|
30
|
+
onSelect: l
|
|
31
|
+
} = t, r = a.useRef(null), c = a.useRef(null), u = a.useCallback(() => {
|
|
32
|
+
r.current && r.current.focus();
|
|
33
|
+
}, []), f = a.useCallback(
|
|
36
34
|
() => ({
|
|
37
|
-
element:
|
|
38
|
-
focus:
|
|
39
|
-
})
|
|
35
|
+
element: r.current,
|
|
36
|
+
focus: u
|
|
37
|
+
}),
|
|
38
|
+
[u]
|
|
40
39
|
);
|
|
41
|
-
|
|
42
|
-
|
|
43
|
-
|
|
44
|
-
|
|
40
|
+
a.useImperativeHandle(v, f), a.useImperativeHandle(c, f), T("drawer", c, t, t.webMcp);
|
|
41
|
+
const H = a.useCallback(
|
|
42
|
+
(S, P, d) => {
|
|
43
|
+
if (i && l) {
|
|
44
|
+
const W = {
|
|
45
45
|
itemTarget: S,
|
|
46
|
-
itemIndex:
|
|
47
|
-
syntheticEvent:
|
|
48
|
-
nativeEvent:
|
|
46
|
+
itemIndex: P,
|
|
47
|
+
syntheticEvent: d,
|
|
48
|
+
nativeEvent: d && d.nativeEvent,
|
|
49
49
|
target: void 0
|
|
50
50
|
};
|
|
51
|
-
|
|
51
|
+
l.call(void 0, W);
|
|
52
52
|
}
|
|
53
53
|
},
|
|
54
|
-
[
|
|
55
|
-
),
|
|
54
|
+
[i, l]
|
|
55
|
+
), p = j(r, t.dir), I = K(
|
|
56
56
|
{
|
|
57
57
|
"k-drawer-container": !0,
|
|
58
|
-
"k-drawer-expanded":
|
|
59
|
-
"k-drawer-overlay":
|
|
60
|
-
"k-drawer-push":
|
|
61
|
-
"k-drawer-mini":
|
|
58
|
+
"k-drawer-expanded": o,
|
|
59
|
+
"k-drawer-overlay": s === "overlay",
|
|
60
|
+
"k-drawer-push": s === "push",
|
|
61
|
+
"k-drawer-mini": m && !o
|
|
62
62
|
},
|
|
63
|
-
|
|
63
|
+
y
|
|
64
64
|
);
|
|
65
|
-
return /* @__PURE__ */
|
|
66
|
-
|
|
65
|
+
return /* @__PURE__ */ a.createElement(
|
|
66
|
+
M.Provider,
|
|
67
67
|
{
|
|
68
68
|
value: {
|
|
69
|
-
animation:
|
|
70
|
-
expanded:
|
|
71
|
-
mode:
|
|
72
|
-
position:
|
|
73
|
-
mini:
|
|
74
|
-
dir:
|
|
75
|
-
items:
|
|
76
|
-
item:
|
|
77
|
-
width:
|
|
78
|
-
miniWidth:
|
|
79
|
-
onOverlayClick:
|
|
80
|
-
onSelect:
|
|
69
|
+
animation: N,
|
|
70
|
+
expanded: o,
|
|
71
|
+
mode: s,
|
|
72
|
+
position: b,
|
|
73
|
+
mini: m,
|
|
74
|
+
dir: p,
|
|
75
|
+
items: i,
|
|
76
|
+
item: E,
|
|
77
|
+
width: g,
|
|
78
|
+
miniWidth: C,
|
|
79
|
+
onOverlayClick: D,
|
|
80
|
+
onSelect: H
|
|
81
81
|
}
|
|
82
82
|
},
|
|
83
|
-
/* @__PURE__ */
|
|
83
|
+
/* @__PURE__ */ a.createElement("div", { className: I, ref: r, dir: p, style: x, tabIndex: R }, i && /* @__PURE__ */ a.createElement(O, { className: h }), k)
|
|
84
84
|
);
|
|
85
85
|
});
|
|
86
|
-
|
|
86
|
+
w.propTypes = {
|
|
87
87
|
animation: e.any,
|
|
88
88
|
expanded: e.bool,
|
|
89
89
|
children: e.any,
|
|
@@ -100,7 +100,7 @@ u.propTypes = {
|
|
|
100
100
|
onSelect: e.func,
|
|
101
101
|
onOverlayClick: e.func
|
|
102
102
|
};
|
|
103
|
-
const
|
|
103
|
+
const n = {
|
|
104
104
|
animation: !0,
|
|
105
105
|
expanded: !1,
|
|
106
106
|
mode: "overlay",
|
|
@@ -108,7 +108,7 @@ const r = {
|
|
|
108
108
|
mini: !1,
|
|
109
109
|
width: 240
|
|
110
110
|
};
|
|
111
|
-
|
|
111
|
+
w.displayName = "KendoDrawer";
|
|
112
112
|
export {
|
|
113
|
-
|
|
113
|
+
w as Drawer
|
|
114
114
|
};
|
|
@@ -8,6 +8,7 @@
|
|
|
8
8
|
import { DrawerSelectEvent } from './DrawerSelectEvent';
|
|
9
9
|
import { DrawerAnimation } from '../interfaces/DrawerAnimation';
|
|
10
10
|
import { DrawerItemProps } from './DrawerItemProps';
|
|
11
|
+
import { WebMcpProps } from '@progress/kendo-react-common';
|
|
11
12
|
import * as React from 'react';
|
|
12
13
|
/**
|
|
13
14
|
* The properties of the [KendoReact Drawer component](https://www.telerik.com/kendo-react-ui/components/layout/drawer).
|
|
@@ -168,4 +169,11 @@ export interface DrawerProps {
|
|
|
168
169
|
* ```
|
|
169
170
|
*/
|
|
170
171
|
onSelect?: (event: DrawerSelectEvent) => void;
|
|
172
|
+
/**
|
|
173
|
+
* Enables Web MCP tool registration so AI agents can interact with this Drawer.
|
|
174
|
+
* Set to `true` to use the provider-level `dataName`, or pass a config object to override.
|
|
175
|
+
*
|
|
176
|
+
* Requires a `WebMcpProvider` ancestor from `@progress/kendo-react-webmcp`.
|
|
177
|
+
*/
|
|
178
|
+
webMcp?: boolean | WebMcpProps;
|
|
171
179
|
}
|
package/index.d.mts
CHANGED
|
@@ -11,8 +11,7 @@ import { TabStrip as TabStripClassComponent, TabStripScrollableProps, TabStripSe
|
|
|
11
11
|
import { MenuItemInternalsList } from './menu/components/MenuItemInternal.js';
|
|
12
12
|
import { downArrowName, leftArrowName, rightArrowName } from './menu/components/MenuItemArrow.js';
|
|
13
13
|
import { SplitterBar } from './splitter/SplitterBar.js';
|
|
14
|
-
|
|
15
|
-
declare const Menu: import('react').ForwardRefExoticComponent<MenuProps & import('react').RefAttributes<any>>;
|
|
14
|
+
import { MenuWrapper as Menu } from './MenuMcpWrapper.js';
|
|
16
15
|
/** @hidden */
|
|
17
16
|
declare const TabStrip: import('react').ForwardRefExoticComponent<TabStripProps & import('react').RefAttributes<any>>;
|
|
18
17
|
export { TabStrip, TabStripClassComponent, TabStripScrollableProps, TabStripSelectEventArguments, TabStripProps, Menu, MenuProps, MenuState, MenuHandle, MenuClassComponent, MenuItemInternalsList, downArrowName, leftArrowName, rightArrowName, SplitterBar };
|
package/index.d.ts
CHANGED
|
@@ -11,8 +11,7 @@ import { TabStrip as TabStripClassComponent, TabStripScrollableProps, TabStripSe
|
|
|
11
11
|
import { MenuItemInternalsList } from './menu/components/MenuItemInternal.js';
|
|
12
12
|
import { downArrowName, leftArrowName, rightArrowName } from './menu/components/MenuItemArrow.js';
|
|
13
13
|
import { SplitterBar } from './splitter/SplitterBar.js';
|
|
14
|
-
|
|
15
|
-
declare const Menu: import('react').ForwardRefExoticComponent<MenuProps & import('react').RefAttributes<any>>;
|
|
14
|
+
import { MenuWrapper as Menu } from './MenuMcpWrapper.js';
|
|
16
15
|
/** @hidden */
|
|
17
16
|
declare const TabStrip: import('react').ForwardRefExoticComponent<TabStripProps & import('react').RefAttributes<any>>;
|
|
18
17
|
export { TabStrip, TabStripClassComponent, TabStripScrollableProps, TabStripSelectEventArguments, TabStripProps, Menu, MenuProps, MenuState, MenuHandle, MenuClassComponent, MenuItemInternalsList, downArrowName, leftArrowName, rightArrowName, SplitterBar };
|
package/index.js
CHANGED
|
@@ -6,4 +6,4 @@
|
|
|
6
6
|
*-------------------------------------------------------------------------------------------
|
|
7
7
|
*/
|
|
8
8
|
"use client";
|
|
9
|
-
"use strict";Object.defineProperty(exports,Symbol.toStringTag,{value:"Module"});const
|
|
9
|
+
"use strict";Object.defineProperty(exports,Symbol.toStringTag,{value:"Module"});const l=require("./menu/components/Menu.js"),a=require("./tabstrip/TabStrip.js"),p=require("./menu/components/MenuItemInternal.js"),t=require("./menu/components/MenuItemArrow.js"),m=require("./splitter/SplitterBar.js"),S=require("@progress/kendo-react-common"),q=require("./MenuMcpWrapper.js"),C=require("./tabstrip/TabStripContent.js"),A=require("./tabstrip/TabStripNavigation.js"),I=require("./tabstrip/TabStripNavigationItem.js"),b=require("./tabstrip/TabStripTab.js"),B=require("./panelbar/PanelBar.js"),i=require("./panelbar/PanelBarItem.js"),e=require("./panelbar/util.js"),h=require("./menu/components/MenuItemLink.js"),T=require("./menu/components/MenuItem.js"),y=require("./splitter/Splitter.js"),g=require("./splitter/SplitterPane.js"),L=require("./card/Card.js"),w=require("./card/CardHeader.js"),N=require("./card/CardTitle.js"),D=require("./card/CardBody.js"),P=require("./card/CardActions.js"),v=require("./card/CardImage.js"),M=require("./card/CardSubtitle.js"),f=require("./card/CardFooter.js"),r=require("./card/interfaces/Enums.js"),F=require("./card/Avatar.js"),E=require("./drawer/Drawer.js"),k=require("./drawer/DrawerNavigation.js"),x=require("./drawer/DrawerContent.js"),V=require("./drawer/DrawerItem.js"),O=require("./stepper/Stepper.js"),H=require("./stepper/Step.js"),G=require("./appbar/AppBar.js"),j=require("./appbar/AppBarSection.js"),U=require("./appbar/AppBarSpacer.js"),W=require("./tilelayout/TileLayout.js"),Y=require("./bottomnavigation/BottomNavigation.js"),R=require("./bottomnavigation/BottomNavigationItem.js"),$=require("./stacklayout/StackLayout.js"),z=require("./gridlayout/GridLayout.js"),J=require("./gridlayout/GridLayoutItem.js"),K=require("./breadcrumb/Breadcrumb.js"),Q=require("./breadcrumb/BreadcrumbOrderedList.js"),X=require("./breadcrumb/BreadcrumbListItem.js"),Z=require("./breadcrumb/BreadcrumbDelimiter.js"),_=require("./breadcrumb/BreadcrumbLink.js"),n=require("./actionsheet/ActionSheet.js"),ee=require("./actionsheet/ActionSheetItem.js"),o=require("./actionsheet/ActionSheetView.js"),u=require("./actionsheet/ActionSheetHeader.js"),s=require("./actionsheet/ActionSheetContent.js"),c=require("./actionsheet/ActionSheetFooter.js"),te=require("./timeline/Timeline.js"),d=require("./timeline/utils.js"),re=require("./contextmenu/ContextMenu.js"),ae=require("./expansionpanel/ExpansionPanel.js"),ie=require("./expansionpanel/ExpansionPanelContent.js"),ne=S.withIdHOC(a.TabStrip);exports.MenuClassComponent=l.Menu;exports.TabStripClassComponent=a.TabStrip;exports.MenuItemInternalsList=p.MenuItemInternalsList;exports.MenuItemArrow=t.MenuItemArrow;exports.downArrowName=t.downArrowName;exports.leftArrowName=t.leftArrowName;exports.rightArrowName=t.rightArrowName;exports.SplitterBar=m.SplitterBar;exports.Menu=q.MenuWrapper;exports.TabStripContent=C.TabStripContent;exports.TabStripNavigation=A.TabStripNavigation;exports.TabStripNavigationItem=I.TabStripNavigationItem;exports.TabStripTab=b.TabStripTab;exports.PanelBar=B.PanelBar;exports.PanelBarItem=i.PanelBarItem;exports.panelBarItemDefaultProps=i.panelBarItemDefaultProps;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=h.MenuItemLink;exports.MenuItem=T.MenuItem;exports.Splitter=y.Splitter;exports.SplitterPane=g.SplitterPane;exports.Card=L.Card;exports.CardHeader=w.CardHeader;exports.CardTitle=N.CardTitle;exports.CardBody=D.CardBody;exports.CardActions=P.CardActions;exports.CardImage=v.CardImage;exports.CardSubtitle=M.CardSubtitle;exports.CardFooter=f.CardFooter;exports.avatarType=r.avatarType;exports.cardActionsLayout=r.cardActionsLayout;exports.cardOrientation=r.cardOrientation;exports.cardType=r.cardType;exports.Avatar=F.Avatar;exports.Drawer=E.Drawer;exports.DrawerNavigation=k.DrawerNavigation;exports.DrawerContent=x.DrawerContent;exports.DrawerItem=V.DrawerItem;exports.Stepper=O.Stepper;exports.Step=H.Step;exports.AppBar=G.AppBar;exports.AppBarSection=j.AppBarSection;exports.AppBarSpacer=U.AppBarSpacer;exports.TileLayout=W.TileLayout;exports.BottomNavigation=Y.BottomNavigation;exports.BottomNavigationItem=R.BottomNavigationItem;exports.StackLayout=$.StackLayout;exports.GridLayout=z.GridLayout;exports.GridLayoutItem=J.GridLayoutItem;exports.Breadcrumb=K.Breadcrumb;exports.BreadcrumbOrderedList=Q.BreadcrumbOrderedList;exports.BreadcrumbListItem=X.BreadcrumbListItem;exports.BreadcrumbDelimiter=Z.BreadcrumbDelimiter;exports.BreadcrumbLink=_.BreadcrumbLink;exports.ActionSheet=n.ActionSheet;exports.actionSheetDefaultProps=n.actionSheetDefaultProps;exports.ActionSheetItem=ee.ActionSheetItem;exports.ActionSheetView=o.ActionSheetView;exports.ActionSheetViewDisplayName=o.ActionSheetViewDisplayName;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=te.Timeline;exports.addYearsFlags=d.addYearsFlags;exports.sortEventList=d.sortEventList;exports.ContextMenu=re.ContextMenu;exports.ExpansionPanel=ae.ExpansionPanel;exports.ExpansionPanelContent=ie.ExpansionPanelContent;exports.TabStrip=ne;
|
package/index.mjs
CHANGED
|
@@ -6,148 +6,146 @@
|
|
|
6
6
|
*-------------------------------------------------------------------------------------------
|
|
7
7
|
*/
|
|
8
8
|
"use client";
|
|
9
|
-
import { Menu as
|
|
10
|
-
import { TabStrip as
|
|
11
|
-
import { MenuItemInternalsList as
|
|
12
|
-
import { MenuItemArrow as l, downArrowName as s, leftArrowName as
|
|
13
|
-
import { SplitterBar as
|
|
14
|
-
import { withIdHOC as
|
|
15
|
-
import {
|
|
16
|
-
import {
|
|
9
|
+
import { Menu as i } from "./menu/components/Menu.mjs";
|
|
10
|
+
import { TabStrip as r } from "./tabstrip/TabStrip.mjs";
|
|
11
|
+
import { MenuItemInternalsList as f } from "./menu/components/MenuItemInternal.mjs";
|
|
12
|
+
import { MenuItemArrow as l, downArrowName as s, leftArrowName as d, rightArrowName as S } from "./menu/components/MenuItemArrow.mjs";
|
|
13
|
+
import { SplitterBar as u } from "./splitter/SplitterBar.mjs";
|
|
14
|
+
import { withIdHOC as e } from "@progress/kendo-react-common";
|
|
15
|
+
import { MenuWrapper as A } from "./MenuMcpWrapper.mjs";
|
|
16
|
+
import { TabStripContent as b } from "./tabstrip/TabStripContent.mjs";
|
|
17
|
+
import { TabStripNavigation as h } from "./tabstrip/TabStripNavigation.mjs";
|
|
17
18
|
import { TabStripNavigationItem as y } from "./tabstrip/TabStripNavigationItem.mjs";
|
|
18
|
-
import { TabStripTab as
|
|
19
|
-
import { PanelBar as
|
|
20
|
-
import { PanelBarItem as
|
|
21
|
-
import { PanelBarUtils as
|
|
22
|
-
import { MenuItemLink as
|
|
23
|
-
import { MenuItem as
|
|
24
|
-
import { Splitter as
|
|
25
|
-
import { SplitterPane as
|
|
26
|
-
import { Card as
|
|
27
|
-
import { CardHeader as
|
|
28
|
-
import { CardTitle as
|
|
29
|
-
import { CardBody as
|
|
19
|
+
import { TabStripTab as N } from "./tabstrip/TabStripTab.mjs";
|
|
20
|
+
import { PanelBar as D } from "./panelbar/PanelBar.mjs";
|
|
21
|
+
import { PanelBarItem as M, panelBarItemDefaultProps as P } from "./panelbar/PanelBarItem.mjs";
|
|
22
|
+
import { PanelBarUtils as F, flatChildren as E, flatVisibleChildren as V, flatVisibleItems as k, getFirstId as H, getFocusedChild as O, getInitialState as G, isArrayEqual as q, isPresent as U, renderChildren as W } from "./panelbar/util.mjs";
|
|
23
|
+
import { MenuItemLink as $ } from "./menu/components/MenuItemLink.mjs";
|
|
24
|
+
import { MenuItem as z } from "./menu/components/MenuItem.mjs";
|
|
25
|
+
import { Splitter as K } from "./splitter/Splitter.mjs";
|
|
26
|
+
import { SplitterPane as R } from "./splitter/SplitterPane.mjs";
|
|
27
|
+
import { Card as Z } from "./card/Card.mjs";
|
|
28
|
+
import { CardHeader as rr } from "./card/CardHeader.mjs";
|
|
29
|
+
import { CardTitle as or } from "./card/CardTitle.mjs";
|
|
30
|
+
import { CardBody as ar } from "./card/CardBody.mjs";
|
|
30
31
|
import { CardActions as mr } from "./card/CardActions.mjs";
|
|
31
|
-
import { CardImage as
|
|
32
|
-
import { CardSubtitle as
|
|
33
|
-
import { CardFooter as
|
|
34
|
-
import { avatarType as
|
|
35
|
-
import { Avatar as
|
|
36
|
-
import { Drawer as
|
|
37
|
-
import { DrawerNavigation as
|
|
38
|
-
import { DrawerContent as
|
|
39
|
-
import { DrawerItem as
|
|
40
|
-
import { Stepper as
|
|
41
|
-
import { Step as
|
|
42
|
-
import { AppBar as
|
|
43
|
-
import { AppBarSection as
|
|
44
|
-
import { AppBarSpacer as
|
|
45
|
-
import { TileLayout as
|
|
46
|
-
import { BottomNavigation as
|
|
47
|
-
import { BottomNavigationItem as
|
|
48
|
-
import { StackLayout as
|
|
49
|
-
import { GridLayout as
|
|
50
|
-
import { GridLayoutItem as
|
|
51
|
-
import { Breadcrumb as
|
|
52
|
-
import { BreadcrumbOrderedList as
|
|
53
|
-
import { BreadcrumbListItem as
|
|
54
|
-
import { BreadcrumbDelimiter as
|
|
55
|
-
import { BreadcrumbLink as
|
|
56
|
-
import { ActionSheet as
|
|
57
|
-
import { ActionSheetItem as
|
|
58
|
-
import { ActionSheetView as
|
|
32
|
+
import { CardImage as nr } from "./card/CardImage.mjs";
|
|
33
|
+
import { CardSubtitle as xr } from "./card/CardSubtitle.mjs";
|
|
34
|
+
import { CardFooter as sr } from "./card/CardFooter.mjs";
|
|
35
|
+
import { avatarType as Sr, cardActionsLayout as cr, cardOrientation as ur, cardType as Cr } from "./card/interfaces/Enums.mjs";
|
|
36
|
+
import { Avatar as Ir } from "./card/Avatar.mjs";
|
|
37
|
+
import { Drawer as Br } from "./drawer/Drawer.mjs";
|
|
38
|
+
import { DrawerNavigation as Tr } from "./drawer/DrawerNavigation.mjs";
|
|
39
|
+
import { DrawerContent as wr } from "./drawer/DrawerContent.mjs";
|
|
40
|
+
import { DrawerItem as gr } from "./drawer/DrawerItem.mjs";
|
|
41
|
+
import { Stepper as Lr } from "./stepper/Stepper.mjs";
|
|
42
|
+
import { Step as Pr } from "./stepper/Step.mjs";
|
|
43
|
+
import { AppBar as Fr } from "./appbar/AppBar.mjs";
|
|
44
|
+
import { AppBarSection as Vr } from "./appbar/AppBarSection.mjs";
|
|
45
|
+
import { AppBarSpacer as Hr } from "./appbar/AppBarSpacer.mjs";
|
|
46
|
+
import { TileLayout as Gr } from "./tilelayout/TileLayout.mjs";
|
|
47
|
+
import { BottomNavigation as Ur } from "./bottomnavigation/BottomNavigation.mjs";
|
|
48
|
+
import { BottomNavigationItem as Yr } from "./bottomnavigation/BottomNavigationItem.mjs";
|
|
49
|
+
import { StackLayout as jr } from "./stacklayout/StackLayout.mjs";
|
|
50
|
+
import { GridLayout as Jr } from "./gridlayout/GridLayout.mjs";
|
|
51
|
+
import { GridLayoutItem as Qr } from "./gridlayout/GridLayoutItem.mjs";
|
|
52
|
+
import { Breadcrumb as Xr } from "./breadcrumb/Breadcrumb.mjs";
|
|
53
|
+
import { BreadcrumbOrderedList as _r } from "./breadcrumb/BreadcrumbOrderedList.mjs";
|
|
54
|
+
import { BreadcrumbListItem as ee } from "./breadcrumb/BreadcrumbListItem.mjs";
|
|
55
|
+
import { BreadcrumbDelimiter as te } from "./breadcrumb/BreadcrumbDelimiter.mjs";
|
|
56
|
+
import { BreadcrumbLink as pe } from "./breadcrumb/BreadcrumbLink.mjs";
|
|
57
|
+
import { ActionSheet as ie, actionSheetDefaultProps as ne } from "./actionsheet/ActionSheet.mjs";
|
|
58
|
+
import { ActionSheetItem as xe } from "./actionsheet/ActionSheetItem.mjs";
|
|
59
|
+
import { ActionSheetView as se, ActionSheetViewDisplayName as de } from "./actionsheet/ActionSheetView.mjs";
|
|
59
60
|
import { ActionSheetHeader as ce, headerDisplayName as ue } from "./actionsheet/ActionSheetHeader.mjs";
|
|
60
|
-
import { ActionSheetContent as
|
|
61
|
-
import { ActionSheetFooter as
|
|
61
|
+
import { ActionSheetContent as Ae, contentDisplayName as Ie } from "./actionsheet/ActionSheetContent.mjs";
|
|
62
|
+
import { ActionSheetFooter as Be, footerDisplayName as he } from "./actionsheet/ActionSheetFooter.mjs";
|
|
62
63
|
import { Timeline as ye } from "./timeline/Timeline.mjs";
|
|
63
|
-
import { addYearsFlags as
|
|
64
|
-
import { ContextMenu as
|
|
65
|
-
import { ExpansionPanel as
|
|
66
|
-
import { ExpansionPanelContent as
|
|
67
|
-
const
|
|
68
|
-
e.displayName = "KendoReactMenu";
|
|
69
|
-
const i = r(t);
|
|
70
|
-
e.displayName = "KendoReactMenu";
|
|
64
|
+
import { addYearsFlags as Ne, sortEventList as ge } from "./timeline/utils.mjs";
|
|
65
|
+
import { ContextMenu as Le } from "./contextmenu/ContextMenu.mjs";
|
|
66
|
+
import { ExpansionPanel as Pe } from "./expansionpanel/ExpansionPanel.mjs";
|
|
67
|
+
import { ExpansionPanelContent as Fe } from "./expansionpanel/ExpansionPanelContent.mjs";
|
|
68
|
+
const a = e(r);
|
|
71
69
|
export {
|
|
72
|
-
|
|
73
|
-
|
|
74
|
-
|
|
70
|
+
ie as ActionSheet,
|
|
71
|
+
Ae as ActionSheetContent,
|
|
72
|
+
Be as ActionSheetFooter,
|
|
75
73
|
ce as ActionSheetHeader,
|
|
76
|
-
|
|
77
|
-
|
|
78
|
-
|
|
79
|
-
|
|
80
|
-
|
|
81
|
-
|
|
82
|
-
|
|
83
|
-
|
|
84
|
-
|
|
85
|
-
|
|
86
|
-
|
|
87
|
-
|
|
88
|
-
|
|
89
|
-
|
|
90
|
-
|
|
74
|
+
xe as ActionSheetItem,
|
|
75
|
+
se as ActionSheetView,
|
|
76
|
+
de as ActionSheetViewDisplayName,
|
|
77
|
+
Fr as AppBar,
|
|
78
|
+
Vr as AppBarSection,
|
|
79
|
+
Hr as AppBarSpacer,
|
|
80
|
+
Ir as Avatar,
|
|
81
|
+
Ur as BottomNavigation,
|
|
82
|
+
Yr as BottomNavigationItem,
|
|
83
|
+
Xr as Breadcrumb,
|
|
84
|
+
te as BreadcrumbDelimiter,
|
|
85
|
+
pe as BreadcrumbLink,
|
|
86
|
+
ee as BreadcrumbListItem,
|
|
87
|
+
_r as BreadcrumbOrderedList,
|
|
88
|
+
Z as Card,
|
|
91
89
|
mr as CardActions,
|
|
92
|
-
|
|
93
|
-
|
|
94
|
-
|
|
95
|
-
|
|
96
|
-
|
|
97
|
-
|
|
98
|
-
|
|
99
|
-
|
|
100
|
-
|
|
101
|
-
|
|
102
|
-
|
|
103
|
-
|
|
104
|
-
|
|
105
|
-
|
|
106
|
-
|
|
107
|
-
|
|
108
|
-
|
|
109
|
-
|
|
90
|
+
ar as CardBody,
|
|
91
|
+
sr as CardFooter,
|
|
92
|
+
rr as CardHeader,
|
|
93
|
+
nr as CardImage,
|
|
94
|
+
xr as CardSubtitle,
|
|
95
|
+
or as CardTitle,
|
|
96
|
+
Le as ContextMenu,
|
|
97
|
+
Br as Drawer,
|
|
98
|
+
wr as DrawerContent,
|
|
99
|
+
gr as DrawerItem,
|
|
100
|
+
Tr as DrawerNavigation,
|
|
101
|
+
Pe as ExpansionPanel,
|
|
102
|
+
Fe as ExpansionPanelContent,
|
|
103
|
+
Jr as GridLayout,
|
|
104
|
+
Qr as GridLayoutItem,
|
|
105
|
+
A as Menu,
|
|
106
|
+
i as MenuClassComponent,
|
|
107
|
+
z as MenuItem,
|
|
110
108
|
l as MenuItemArrow,
|
|
111
|
-
|
|
112
|
-
|
|
113
|
-
|
|
114
|
-
|
|
115
|
-
|
|
116
|
-
|
|
117
|
-
|
|
118
|
-
|
|
119
|
-
|
|
120
|
-
|
|
121
|
-
|
|
122
|
-
|
|
123
|
-
|
|
124
|
-
|
|
125
|
-
|
|
109
|
+
f as MenuItemInternalsList,
|
|
110
|
+
$ as MenuItemLink,
|
|
111
|
+
D as PanelBar,
|
|
112
|
+
M as PanelBarItem,
|
|
113
|
+
F as PanelBarUtils,
|
|
114
|
+
K as Splitter,
|
|
115
|
+
u as SplitterBar,
|
|
116
|
+
R as SplitterPane,
|
|
117
|
+
jr as StackLayout,
|
|
118
|
+
Pr as Step,
|
|
119
|
+
Lr as Stepper,
|
|
120
|
+
a as TabStrip,
|
|
121
|
+
r as TabStripClassComponent,
|
|
122
|
+
b as TabStripContent,
|
|
123
|
+
h as TabStripNavigation,
|
|
126
124
|
y as TabStripNavigationItem,
|
|
127
|
-
|
|
128
|
-
|
|
125
|
+
N as TabStripTab,
|
|
126
|
+
Gr as TileLayout,
|
|
129
127
|
ye as Timeline,
|
|
130
|
-
|
|
131
|
-
|
|
132
|
-
|
|
128
|
+
ne as actionSheetDefaultProps,
|
|
129
|
+
Ne as addYearsFlags,
|
|
130
|
+
Sr as avatarType,
|
|
133
131
|
cr as cardActionsLayout,
|
|
134
132
|
ur as cardOrientation,
|
|
135
|
-
|
|
136
|
-
|
|
133
|
+
Cr as cardType,
|
|
134
|
+
Ie as contentDisplayName,
|
|
137
135
|
s as downArrowName,
|
|
138
|
-
|
|
139
|
-
|
|
140
|
-
|
|
141
|
-
|
|
142
|
-
|
|
143
|
-
|
|
144
|
-
|
|
136
|
+
E as flatChildren,
|
|
137
|
+
V as flatVisibleChildren,
|
|
138
|
+
k as flatVisibleItems,
|
|
139
|
+
he as footerDisplayName,
|
|
140
|
+
H as getFirstId,
|
|
141
|
+
O as getFocusedChild,
|
|
142
|
+
G as getInitialState,
|
|
145
143
|
ue as headerDisplayName,
|
|
146
|
-
|
|
147
|
-
|
|
148
|
-
|
|
149
|
-
|
|
150
|
-
|
|
151
|
-
|
|
152
|
-
|
|
144
|
+
q as isArrayEqual,
|
|
145
|
+
U as isPresent,
|
|
146
|
+
d as leftArrowName,
|
|
147
|
+
P as panelBarItemDefaultProps,
|
|
148
|
+
W as renderChildren,
|
|
149
|
+
S as rightArrowName,
|
|
150
|
+
ge as sortEventList
|
|
153
151
|
};
|
package/menu/MenuProps.d.ts
CHANGED
|
@@ -8,6 +8,7 @@
|
|
|
8
8
|
import { MenuItemModel } from './models/MenuItemModel';
|
|
9
9
|
import { MenuSelectEvent, MenuCloseEvent } from './events';
|
|
10
10
|
import { PopupAnimation } from '@progress/kendo-react-popup';
|
|
11
|
+
import { WebMcpProps } from '@progress/kendo-react-common';
|
|
11
12
|
/**
|
|
12
13
|
* The properties of the [KendoReact Menu component](https://www.telerik.com/kendo-react-ui/components/layout/menu).
|
|
13
14
|
*/
|
|
@@ -189,4 +190,9 @@ export interface MenuProps {
|
|
|
189
190
|
* ```
|
|
190
191
|
*/
|
|
191
192
|
onClose?: (event: MenuCloseEvent) => void;
|
|
193
|
+
/**
|
|
194
|
+
* Enables Web MCP tool registration for this component.
|
|
195
|
+
* Requires a parent `WebMcpProvider` from `@progress/kendo-react-webmcp`.
|
|
196
|
+
*/
|
|
197
|
+
webMcp?: boolean | WebMcpProps;
|
|
192
198
|
}
|
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=Object.freeze({name:"@progress/kendo-react-layout",productName:"KendoReact",productCode:"KENDOUIREACT",productCodes:["KENDOUIREACT"],publishDate:
|
|
8
|
+
"use strict";Object.defineProperty(exports,Symbol.toStringTag,{value:"Module"});const e=Object.freeze({name:"@progress/kendo-react-layout",productName:"KendoReact",productCode:"KENDOUIREACT",productCodes:["KENDOUIREACT"],publishDate: 1778745569,version:"14.5.0-develop.14",licensingDocsUrl:"https://www.telerik.com/kendo-react-ui/components/my-license/"});exports.packageMetadata=e;
|
package/package-metadata.mjs
CHANGED
|
@@ -7,7 +7,7 @@ export const packageMetadata = Object.freeze({
|
|
|
7
7
|
productName: 'KendoReact',
|
|
8
8
|
productCode: 'KENDOUIREACT',
|
|
9
9
|
productCodes: ['KENDOUIREACT'],
|
|
10
|
-
publishDate:
|
|
11
|
-
version: '14.5.0-develop.
|
|
10
|
+
publishDate: 1778745569,
|
|
11
|
+
version: '14.5.0-develop.14',
|
|
12
12
|
licensingDocsUrl: 'https://www.telerik.com/kendo-react-ui/components/my-license/'
|
|
13
13
|
});
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@progress/kendo-react-layout",
|
|
3
|
-
"version": "14.5.0-develop.
|
|
3
|
+
"version": "14.5.0-develop.14",
|
|
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",
|
|
@@ -26,12 +26,12 @@
|
|
|
26
26
|
"sideEffects": false,
|
|
27
27
|
"peerDependencies": {
|
|
28
28
|
"@progress/kendo-licensing": "^1.7.2",
|
|
29
|
-
"@progress/kendo-react-animation": "14.5.0-develop.
|
|
30
|
-
"@progress/kendo-react-buttons": "14.5.0-develop.
|
|
31
|
-
"@progress/kendo-react-common": "14.5.0-develop.
|
|
32
|
-
"@progress/kendo-react-intl": "14.5.0-develop.
|
|
33
|
-
"@progress/kendo-react-popup": "14.5.0-develop.
|
|
34
|
-
"@progress/kendo-react-progressbars": "14.5.0-develop.
|
|
29
|
+
"@progress/kendo-react-animation": "14.5.0-develop.14",
|
|
30
|
+
"@progress/kendo-react-buttons": "14.5.0-develop.14",
|
|
31
|
+
"@progress/kendo-react-common": "14.5.0-develop.14",
|
|
32
|
+
"@progress/kendo-react-intl": "14.5.0-develop.14",
|
|
33
|
+
"@progress/kendo-react-popup": "14.5.0-develop.14",
|
|
34
|
+
"@progress/kendo-react-progressbars": "14.5.0-develop.14",
|
|
35
35
|
"@progress/kendo-svg-icons": "^4.9.0 || ^5.0.0",
|
|
36
36
|
"react": "^18.0.0 || ^19.0.0",
|
|
37
37
|
"react-dom": "^18.0.0 || ^19.0.0"
|
|
@@ -76,7 +76,7 @@
|
|
|
76
76
|
"package": {
|
|
77
77
|
"productName": "KendoReact",
|
|
78
78
|
"productCode": "KENDOUIREACT",
|
|
79
|
-
"publishDate":
|
|
79
|
+
"publishDate": 1778745569,
|
|
80
80
|
"licensingDocsUrl": "https://www.telerik.com/kendo-react-ui/components/my-license/"
|
|
81
81
|
}
|
|
82
82
|
},
|