@progress/kendo-react-layout 14.5.0-develop.9 → 15.0.0-develop.2
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/README.md +4 -4
- package/actionsheet/ActionSheet.js +1 -1
- package/actionsheet/ActionSheet.mjs +18 -19
- package/actionsheet/ActionSheetItem.js +1 -1
- package/actionsheet/ActionSheetItem.mjs +1 -3
- package/bottomnavigation/BottomNavigation.js +1 -1
- package/bottomnavigation/BottomNavigation.mjs +85 -69
- package/bottomnavigation/BottomNavigationItem.js +1 -1
- package/bottomnavigation/BottomNavigationItem.mjs +34 -33
- package/bottomnavigation/messages/index.d.ts +17 -0
- package/bottomnavigation/messages/index.js +8 -0
- package/bottomnavigation/messages/index.mjs +14 -0
- package/breadcrumb/Breadcrumb.js +1 -1
- package/breadcrumb/Breadcrumb.mjs +30 -28
- package/breadcrumb/BreadcrumbLink.js +1 -1
- package/breadcrumb/BreadcrumbLink.mjs +26 -26
- package/breadcrumb/messages/index.d.ts +17 -0
- package/breadcrumb/messages/index.js +8 -0
- package/breadcrumb/messages/index.mjs +14 -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/DrawerItem.js +1 -1
- package/drawer/DrawerItem.mjs +22 -23
- package/drawer/interfaces/DrawerProps.d.ts +8 -0
- package/expansionpanel/ExpansionPanel.js +1 -1
- package/expansionpanel/ExpansionPanel.mjs +50 -50
- package/expansionpanel/ExpansionPanelContent.js +1 -1
- package/expansionpanel/ExpansionPanelContent.mjs +7 -4
- 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 +94 -91
- package/panelbar/PanelBarItem.js +1 -1
- package/panelbar/PanelBarItem.mjs +13 -15
- package/panelbar/interfaces/PanelBarProps.d.ts +8 -0
- package/panelbar/interfaces/RenderPanelBarItem.d.ts +1 -0
- package/panelbar/util.d.ts +1 -1
- package/panelbar/util.js +1 -1
- package/panelbar/util.mjs +62 -59
- package/splitter/SplitterBar.d.ts +1 -0
- package/splitter/SplitterBar.js +1 -1
- package/splitter/SplitterBar.mjs +64 -56
- package/stepper/Step.js +1 -1
- package/stepper/Step.mjs +79 -85
- package/stepper/Stepper.js +1 -1
- package/stepper/Stepper.mjs +134 -133
- package/stepper/interfaces/StepperProps.d.ts +8 -1
- package/stepper/messages/index.d.ts +12 -2
- package/stepper/messages/index.js +1 -1
- package/stepper/messages/index.mjs +8 -4
- package/tabstrip/TabStrip.d.ts +8 -1
- package/tabstrip/TabStrip.js +1 -1
- package/tabstrip/TabStrip.mjs +126 -125
- package/tilelayout/InternalTile.js +1 -1
- package/tilelayout/InternalTile.mjs +119 -115
- package/tilelayout/TileLayout.js +1 -1
- package/tilelayout/TileLayout.mjs +58 -58
- package/timeline/TimelineCard.d.ts +2 -0
- package/timeline/TimelineCard.js +1 -1
- package/timeline/TimelineCard.mjs +16 -15
- package/timeline/TimelineHorizontal.js +1 -1
- package/timeline/TimelineHorizontal.mjs +105 -101
|
@@ -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
|
+
/**
|
|
9
|
+
* @hidden
|
|
10
|
+
*/
|
|
11
|
+
export declare const bottomNavigationAriaLabel = "bottomNavigation.ariaLabel";
|
|
12
|
+
/**
|
|
13
|
+
* @hidden
|
|
14
|
+
*/
|
|
15
|
+
export declare const messages: {
|
|
16
|
+
"bottomNavigation.ariaLabel": string;
|
|
17
|
+
};
|
|
@@ -0,0 +1,8 @@
|
|
|
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
|
+
"use strict";Object.defineProperty(exports,Symbol.toStringTag,{value:"Module"});const t="bottomNavigation.ariaLabel",a={[t]:"Bottom navigation"};exports.bottomNavigationAriaLabel=t;exports.messages=a;
|
|
@@ -0,0 +1,14 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* @license
|
|
3
|
+
*-------------------------------------------------------------------------------------------
|
|
4
|
+
* Copyright © 2026 Progress Software Corporation. All rights reserved.
|
|
5
|
+
* Licensed under commercial license. See LICENSE.md in the package root for more information
|
|
6
|
+
*-------------------------------------------------------------------------------------------
|
|
7
|
+
*/
|
|
8
|
+
const a = "bottomNavigation.ariaLabel", o = {
|
|
9
|
+
[a]: "Bottom navigation"
|
|
10
|
+
};
|
|
11
|
+
export {
|
|
12
|
+
a as bottomNavigationAriaLabel,
|
|
13
|
+
o as messages
|
|
14
|
+
};
|
package/breadcrumb/Breadcrumb.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 T=require("react"),n=require("prop-types"),o=require("@progress/kendo-react-common"),q=require("@progress/kendo-react-intl"),L=require("./messages/index.js"),M=require("./BreadcrumbListItem.js"),R=require("./BreadcrumbDelimiter.js"),w=require("./BreadcrumbLink.js"),j=require("./BreadcrumbOrderedList.js");function x(e){const l=Object.create(null,{[Symbol.toStringTag]:{value:"Module"}});if(e){for(const i in e)if(i!=="default"){const a=Object.getOwnPropertyDescriptor(e,i);Object.defineProperty(l,i,a.get?a:{enumerable:!0,get:()=>e[i]})}}return l.default=e,Object.freeze(l)}const r=x(T),F=r.forwardRef((e,l)=>{const i=r.useRef(null),a=r.useRef(null),y=r.useMemo(()=>e.breadcrumbOrderedList||j.BreadcrumbOrderedList,[e.breadcrumbOrderedList]),I=r.useMemo(()=>e.breadcrumbListItem||M.BreadcrumbListItem,[e.breadcrumbListItem]),D=r.useMemo(()=>e.breadcrumbDelimiter||R.BreadcrumbDelimiter,[e.breadcrumbDelimiter]),k=r.useMemo(()=>e.breadcrumbLink||w.BreadcrumbLink,[e.breadcrumbLink]),E=r.useCallback(()=>{a.current&&a.current.focus()},[a]),B=r.useMemo(()=>e.disabled||!1,[e.disabled]);r.useImperativeHandle(i,()=>({element:a.current,focus:E,props:e})),r.useImperativeHandle(l,()=>i.current);const h=q.useLocalization(),g=o.useDir(a,e.dir),S=t=>{i.current&&o.dispatchEvent(e.onItemSelect,t,t.target,{id:t.target.id})},C=t=>{i.current&&o.dispatchEvent(e.onKeyDown,t,t.target,{id:t.target.id})},v=e.valueField||b.valueField,O=e.iconField||b.iconField,u=e.iconClassField||b.iconClassField,m=e.textField||b.textField,f=e.size;return r.createElement("nav",{"aria-label":e.ariaLabel||h.toLanguageString(L.breadcrumbAriaLabel,L.messages[L.breadcrumbAriaLabel]),id:e.id,style:e.style,ref:a,dir:g,className:o.classNames("k-breadcrumb k-breadcrumb-wrap",{"k-rtl":g==="rtl","k-disabled":B,[`k-breadcrumb-${o.kendoThemeMaps.sizeMap[f]||f}`]:f},e.className)},r.createElement(y,{rootItem:!0},r.createElement(r.Fragment,null,e.data.map((t,c,s)=>{const d=t[v];if(c===0)return r.createElement(I,{key:d,isFirstItem:!0,isLastItem:s.length-1===c},r.createElement(k,{isLast:s.length-1===c,isFirst:!0,id:String(d),icon:t[O]||void 0,iconClass:t[u]?String(t[u]):void 0,text:t[m]?String(t[m]):void 0,disabled:t.disabled||!1,onItemSelect:S,onKeyDown:C,...e}))}))),r.createElement(y,{rootItem:!1},r.createElement(r.Fragment,null,e.data.map((t,c,s)=>{const d=t[v];if(c!==0)return r.createElement(I,{key:d,isFirstItem:!1,isLastItem:s.length-1===c},r.createElement(D,{dir:g}),r.createElement(k,{isLast:s.length-1===c,isFirst:!1,id:String(d),icon:t[O]||void 0,iconClass:t[u]?String(t[u]):void 0,text:t[m]?String(t[m]):void 0,disabled:t.disabled||!1,onItemSelect:S,onKeyDown:C,...e}))}))))}),z={id:n.string,style:n.object,className:n.string,breadcrumbOrderedList:n.elementType,breadcrumbListItem:n.elementType,breadcrumbDelimiter:n.elementType,breadcrumbLink:n.elementType,data:n.arrayOf(n.shape({id:n.string,text:n.string,icon:n.any,iconClass:n.string})),dir:n.oneOf(["ltr","rtl"]),disabled:n.bool,valueField:n.string,textField:n.string,iconField:n.string,iconClassField:n.string,onItemSelect:n.func,ariaLabel:n.string},b={valueField:"id",textField:"text",iconField:"icon",iconClassField:"iconClass"};F.displayName="KendoReactBreadcrumb";F.propTypes=z;exports.Breadcrumb=F;
|
|
@@ -7,48 +7,50 @@
|
|
|
7
7
|
*/
|
|
8
8
|
import * as r from "react";
|
|
9
9
|
import i from "prop-types";
|
|
10
|
-
import { useDir as
|
|
11
|
-
import {
|
|
12
|
-
import {
|
|
13
|
-
import {
|
|
14
|
-
import {
|
|
10
|
+
import { useDir as O, classNames as w, kendoThemeMaps as x, dispatchEvent as C } from "@progress/kendo-react-common";
|
|
11
|
+
import { useLocalization as B } from "@progress/kendo-react-intl";
|
|
12
|
+
import { breadcrumbAriaLabel as S, messages as R } from "./messages/index.mjs";
|
|
13
|
+
import { BreadcrumbListItem as z } from "./BreadcrumbListItem.mjs";
|
|
14
|
+
import { BreadcrumbDelimiter as K } from "./BreadcrumbDelimiter.mjs";
|
|
15
|
+
import { BreadcrumbLink as N } from "./BreadcrumbLink.mjs";
|
|
16
|
+
import { BreadcrumbOrderedList as H } from "./BreadcrumbOrderedList.mjs";
|
|
15
17
|
const v = r.forwardRef((e, E) => {
|
|
16
|
-
const
|
|
17
|
-
() => e.breadcrumbOrderedList ||
|
|
18
|
+
const c = r.useRef(null), n = r.useRef(null), f = r.useMemo(
|
|
19
|
+
() => e.breadcrumbOrderedList || H,
|
|
18
20
|
[e.breadcrumbOrderedList]
|
|
19
21
|
), g = r.useMemo(
|
|
20
|
-
() => e.breadcrumbListItem ||
|
|
22
|
+
() => e.breadcrumbListItem || z,
|
|
21
23
|
[e.breadcrumbListItem]
|
|
22
|
-
),
|
|
23
|
-
() => e.breadcrumbDelimiter ||
|
|
24
|
+
), D = r.useMemo(
|
|
25
|
+
() => e.breadcrumbDelimiter || K,
|
|
24
26
|
[e.breadcrumbDelimiter]
|
|
25
|
-
), F = r.useMemo(() => e.breadcrumbLink ||
|
|
27
|
+
), F = r.useMemo(() => e.breadcrumbLink || N, [e.breadcrumbLink]), h = r.useCallback(() => {
|
|
26
28
|
n.current && n.current.focus();
|
|
27
|
-
}, [n]),
|
|
28
|
-
r.useImperativeHandle(
|
|
29
|
+
}, [n]), T = r.useMemo(() => e.disabled || !1, [e.disabled]);
|
|
30
|
+
r.useImperativeHandle(c, () => ({
|
|
29
31
|
element: n.current,
|
|
30
|
-
focus:
|
|
32
|
+
focus: h,
|
|
31
33
|
props: e
|
|
32
|
-
})), r.useImperativeHandle(E, () =>
|
|
33
|
-
const u =
|
|
34
|
-
|
|
34
|
+
})), r.useImperativeHandle(E, () => c.current);
|
|
35
|
+
const M = B(), u = O(n, e.dir), L = (t) => {
|
|
36
|
+
c.current && C(e.onItemSelect, t, t.target, { id: t.target.id });
|
|
35
37
|
}, y = (t) => {
|
|
36
|
-
|
|
37
|
-
}, I = e.valueField || o.valueField, k = e.iconField || o.iconField,
|
|
38
|
+
c.current && C(e.onKeyDown, t, t.target, { id: t.target.id });
|
|
39
|
+
}, I = e.valueField || o.valueField, k = e.iconField || o.iconField, d = e.iconClassField || o.iconClassField, m = e.textField || o.textField, b = e.size;
|
|
38
40
|
return /* @__PURE__ */ r.createElement(
|
|
39
41
|
"nav",
|
|
40
42
|
{
|
|
41
|
-
"aria-label": e.ariaLabel,
|
|
43
|
+
"aria-label": e.ariaLabel || M.toLanguageString(S, R[S]),
|
|
42
44
|
id: e.id,
|
|
43
45
|
style: e.style,
|
|
44
46
|
ref: n,
|
|
45
47
|
dir: u,
|
|
46
|
-
className:
|
|
48
|
+
className: w(
|
|
47
49
|
"k-breadcrumb k-breadcrumb-wrap",
|
|
48
50
|
{
|
|
49
51
|
"k-rtl": u === "rtl",
|
|
50
|
-
"k-disabled":
|
|
51
|
-
[`k-breadcrumb-${
|
|
52
|
+
"k-disabled": T,
|
|
53
|
+
[`k-breadcrumb-${x.sizeMap[b] || b}`]: b
|
|
52
54
|
},
|
|
53
55
|
e.className
|
|
54
56
|
)
|
|
@@ -63,7 +65,7 @@ const v = r.forwardRef((e, E) => {
|
|
|
63
65
|
isFirst: !0,
|
|
64
66
|
id: String(s),
|
|
65
67
|
icon: t[k] || void 0,
|
|
66
|
-
iconClass: t[
|
|
68
|
+
iconClass: t[d] ? String(t[d]) : void 0,
|
|
67
69
|
text: t[m] ? String(t[m]) : void 0,
|
|
68
70
|
disabled: t.disabled || !1,
|
|
69
71
|
onItemSelect: L,
|
|
@@ -75,14 +77,14 @@ const v = r.forwardRef((e, E) => {
|
|
|
75
77
|
/* @__PURE__ */ r.createElement(f, { rootItem: !1 }, /* @__PURE__ */ r.createElement(r.Fragment, null, e.data.map((t, a, l) => {
|
|
76
78
|
const s = t[I];
|
|
77
79
|
if (a !== 0)
|
|
78
|
-
return /* @__PURE__ */ r.createElement(g, { key: s, isFirstItem: !1, isLastItem: l.length - 1 === a }, /* @__PURE__ */ r.createElement(
|
|
80
|
+
return /* @__PURE__ */ r.createElement(g, { key: s, isFirstItem: !1, isLastItem: l.length - 1 === a }, /* @__PURE__ */ r.createElement(D, { dir: u }), /* @__PURE__ */ r.createElement(
|
|
79
81
|
F,
|
|
80
82
|
{
|
|
81
83
|
isLast: l.length - 1 === a,
|
|
82
84
|
isFirst: !1,
|
|
83
85
|
id: String(s),
|
|
84
86
|
icon: t[k] || void 0,
|
|
85
|
-
iconClass: t[
|
|
87
|
+
iconClass: t[d] ? String(t[d]) : void 0,
|
|
86
88
|
text: t[m] ? String(t[m]) : void 0,
|
|
87
89
|
disabled: t.disabled || !1,
|
|
88
90
|
onItemSelect: L,
|
|
@@ -92,7 +94,7 @@ const v = r.forwardRef((e, E) => {
|
|
|
92
94
|
));
|
|
93
95
|
})))
|
|
94
96
|
);
|
|
95
|
-
}),
|
|
97
|
+
}), P = {
|
|
96
98
|
id: i.string,
|
|
97
99
|
style: i.object,
|
|
98
100
|
className: i.string,
|
|
@@ -123,7 +125,7 @@ const v = r.forwardRef((e, E) => {
|
|
|
123
125
|
iconClassField: "iconClass"
|
|
124
126
|
};
|
|
125
127
|
v.displayName = "KendoReactBreadcrumb";
|
|
126
|
-
v.propTypes =
|
|
128
|
+
v.propTypes = P;
|
|
127
129
|
export {
|
|
128
130
|
v as Breadcrumb
|
|
129
131
|
};
|
|
@@ -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 b=require("react"),t=require("prop-types"),l=require("@progress/kendo-react-common");function m(e){const
|
|
8
|
+
"use strict";Object.defineProperty(exports,Symbol.toStringTag,{value:"Module"});const b=require("react"),t=require("prop-types"),l=require("@progress/kendo-react-common");function m(e){const d=Object.create(null,{[Symbol.toStringTag]:{value:"Module"}});if(e){for(const c in e)if(c!=="default"){const a=Object.getOwnPropertyDescriptor(e,c);Object.defineProperty(d,c,a.get?a:{enumerable:!0,get:()=>e[c]})}}return d.default=e,Object.freeze(d)}const n=m(b),r=n.forwardRef((e,d)=>{const c=n.useRef(null),a=n.useRef(null),s=n.useCallback(()=>{a.current&&a.current.focus()},[a]);n.useImperativeHandle(c,()=>({element:a.current,focus:s,props:e})),n.useImperativeHandle(d,()=>c.current);const u=n.useCallback(i=>{e.id&&l.dispatchEvent(e.onItemSelect,i,i.target,{id:e.id})},[e.onItemSelect]),o=n.useCallback(i=>{e.id&&l.dispatchEvent(e.onKeyDown,i,i.target,{id:e.id})},[e.onKeyDown]);return n.createElement("a",{href:"#","aria-current":e.ariaCurrent||e.isLast?"page":void 0,"aria-disabled":e.disabled||e.isLast||void 0,id:e.id,ref:a,style:e.style,dir:l.useDir(a,e.dir),tabIndex:l.getTabIndex(e.tabIndex,e.disabled),className:l.classNames(e.className,{"k-breadcrumb-root-link":e.isFirst,"k-breadcrumb-link":!e.isFirst,"k-breadcrumb-icontext-link":(e.icon!==void 0||e.iconClass!==void 0)&&e.text,"k-breadcrumb-icon-link":(e.icon!==void 0||e.iconClass!==void 0)&&!e.text,"k-disabled":e.disabled}),onClick:i=>{i.preventDefault(),u(i)},onKeyDown:o},e.iconClass?n.createElement("span",{className:l.classNames("k-icon",e.iconClass)}):e.icon?e.icon:"",e.text&&n.createElement("span",{className:"k-breadcrumb-item-text"},e.text))}),f={id:t.string,className:t.string,tabIndex:t.number,style:t.object,dir:t.string,disabled:t.bool,text:t.string,icon:t.node,iconClass:t.string,onClick:t.func,ariaCurrent:t.bool};r.displayName="KendoReactBreadcrumbLink";r.propTypes=f;exports.BreadcrumbLink=r;
|
|
@@ -6,27 +6,27 @@
|
|
|
6
6
|
*-------------------------------------------------------------------------------------------
|
|
7
7
|
*/
|
|
8
8
|
import * as t from "react";
|
|
9
|
-
import
|
|
9
|
+
import a from "prop-types";
|
|
10
10
|
import { dispatchEvent as l, classNames as d, getTabIndex as o, useDir as k } from "@progress/kendo-react-common";
|
|
11
11
|
const r = t.forwardRef((e, s) => {
|
|
12
|
-
const c = t.useRef(null),
|
|
13
|
-
|
|
14
|
-
}, [
|
|
12
|
+
const c = t.useRef(null), n = t.useRef(null), m = t.useCallback(() => {
|
|
13
|
+
n.current && n.current.focus();
|
|
14
|
+
}, [n]);
|
|
15
15
|
t.useImperativeHandle(c, () => ({
|
|
16
|
-
element:
|
|
16
|
+
element: n.current,
|
|
17
17
|
focus: m,
|
|
18
18
|
props: e
|
|
19
19
|
})), t.useImperativeHandle(s, () => c.current);
|
|
20
20
|
const u = t.useCallback(
|
|
21
|
-
(
|
|
22
|
-
e.id && l(e.onItemSelect,
|
|
21
|
+
(i) => {
|
|
22
|
+
e.id && l(e.onItemSelect, i, i.target, {
|
|
23
23
|
id: e.id
|
|
24
24
|
});
|
|
25
25
|
},
|
|
26
26
|
[e.onItemSelect]
|
|
27
27
|
), b = t.useCallback(
|
|
28
|
-
(
|
|
29
|
-
e.id && l(e.onKeyDown,
|
|
28
|
+
(i) => {
|
|
29
|
+
e.id && l(e.onKeyDown, i, i.target, {
|
|
30
30
|
id: e.id
|
|
31
31
|
});
|
|
32
32
|
},
|
|
@@ -36,12 +36,12 @@ const r = t.forwardRef((e, s) => {
|
|
|
36
36
|
"a",
|
|
37
37
|
{
|
|
38
38
|
href: "#",
|
|
39
|
-
"aria-current": e.ariaCurrent
|
|
40
|
-
|
|
39
|
+
"aria-current": e.ariaCurrent || e.isLast ? "page" : void 0,
|
|
40
|
+
"aria-disabled": e.disabled || e.isLast || void 0,
|
|
41
41
|
id: e.id,
|
|
42
|
-
ref:
|
|
42
|
+
ref: n,
|
|
43
43
|
style: e.style,
|
|
44
|
-
dir: k(
|
|
44
|
+
dir: k(n, e.dir),
|
|
45
45
|
tabIndex: o(e.tabIndex, e.disabled),
|
|
46
46
|
className: d(e.className, {
|
|
47
47
|
"k-breadcrumb-root-link": e.isFirst,
|
|
@@ -50,8 +50,8 @@ const r = t.forwardRef((e, s) => {
|
|
|
50
50
|
"k-breadcrumb-icon-link": (e.icon !== void 0 || e.iconClass !== void 0) && !e.text,
|
|
51
51
|
"k-disabled": e.disabled
|
|
52
52
|
}),
|
|
53
|
-
onClick: (
|
|
54
|
-
|
|
53
|
+
onClick: (i) => {
|
|
54
|
+
i.preventDefault(), u(i);
|
|
55
55
|
},
|
|
56
56
|
onKeyDown: b
|
|
57
57
|
},
|
|
@@ -59,17 +59,17 @@ const r = t.forwardRef((e, s) => {
|
|
|
59
59
|
e.text && /* @__PURE__ */ t.createElement("span", { className: "k-breadcrumb-item-text" }, e.text)
|
|
60
60
|
);
|
|
61
61
|
}), f = {
|
|
62
|
-
id:
|
|
63
|
-
className:
|
|
64
|
-
tabIndex:
|
|
65
|
-
style:
|
|
66
|
-
dir:
|
|
67
|
-
disabled:
|
|
68
|
-
text:
|
|
69
|
-
icon:
|
|
70
|
-
iconClass:
|
|
71
|
-
onClick:
|
|
72
|
-
ariaCurrent:
|
|
62
|
+
id: a.string,
|
|
63
|
+
className: a.string,
|
|
64
|
+
tabIndex: a.number,
|
|
65
|
+
style: a.object,
|
|
66
|
+
dir: a.string,
|
|
67
|
+
disabled: a.bool,
|
|
68
|
+
text: a.string,
|
|
69
|
+
icon: a.node,
|
|
70
|
+
iconClass: a.string,
|
|
71
|
+
onClick: a.func,
|
|
72
|
+
ariaCurrent: a.bool
|
|
73
73
|
};
|
|
74
74
|
r.displayName = "KendoReactBreadcrumbLink";
|
|
75
75
|
r.propTypes = f;
|
|
@@ -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
|
+
/**
|
|
9
|
+
* @hidden
|
|
10
|
+
*/
|
|
11
|
+
export declare const breadcrumbAriaLabel = "breadcrumb.ariaLabel";
|
|
12
|
+
/**
|
|
13
|
+
* @hidden
|
|
14
|
+
*/
|
|
15
|
+
export declare const messages: {
|
|
16
|
+
"breadcrumb.ariaLabel": string;
|
|
17
|
+
};
|
|
@@ -0,0 +1,8 @@
|
|
|
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
|
+
"use strict";Object.defineProperty(exports,Symbol.toStringTag,{value:"Module"});const e="breadcrumb.ariaLabel",a={[e]:"Breadcrumb"};exports.breadcrumbAriaLabel=e;exports.messages=a;
|
|
@@ -0,0 +1,14 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* @license
|
|
3
|
+
*-------------------------------------------------------------------------------------------
|
|
4
|
+
* Copyright © 2026 Progress Software Corporation. All rights reserved.
|
|
5
|
+
* Licensed under commercial license. See LICENSE.md in the package root for more information
|
|
6
|
+
*-------------------------------------------------------------------------------------------
|
|
7
|
+
*/
|
|
8
|
+
const a = "breadcrumb.ariaLabel", r = {
|
|
9
|
+
[a]: "Breadcrumb"
|
|
10
|
+
};
|
|
11
|
+
export {
|
|
12
|
+
a as breadcrumbAriaLabel,
|
|
13
|
+
r as messages
|
|
14
|
+
};
|