@progress/kendo-react-layout 9.0.0-develop.1 → 9.0.0-develop.3

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (63) hide show
  1. package/README.md +82 -82
  2. package/actionsheet/ActionSheet.js +1 -1
  3. package/actionsheet/ActionSheet.mjs +25 -38
  4. package/actionsheet/ActionSheetFooter.mjs +1 -10
  5. package/actionsheet/ActionSheetHeader.mjs +1 -10
  6. package/actionsheet/ActionSheetItem.mjs +10 -7
  7. package/appbar/AppBar.mjs +5 -30
  8. package/appbar/AppBarSection.mjs +4 -17
  9. package/appbar/AppBarSpacer.mjs +6 -16
  10. package/bottomnavigation/BottomNavigation.mjs +30 -54
  11. package/bottomnavigation/BottomNavigationItem.mjs +63 -61
  12. package/breadcrumb/Breadcrumb.mjs +39 -63
  13. package/breadcrumb/BreadcrumbDelimiter.mjs +29 -24
  14. package/breadcrumb/BreadcrumbLink.mjs +16 -18
  15. package/breadcrumb/BreadcrumbListItem.mjs +31 -29
  16. package/breadcrumb/BreadcrumbOrderedList.mjs +47 -42
  17. package/card/Avatar.mjs +15 -1
  18. package/card/CardBody.mjs +1 -11
  19. package/card/CardFooter.mjs +1 -11
  20. package/card/CardHeader.mjs +1 -11
  21. package/card/CardImage.mjs +1 -4
  22. package/card/CardSubtitle.mjs +1 -11
  23. package/card/CardTitle.mjs +1 -11
  24. package/dist/cdn/js/kendo-react-layout.js +1 -1
  25. package/drawer/Drawer.mjs +10 -21
  26. package/drawer/DrawerContent.mjs +6 -3
  27. package/drawer/DrawerItem.mjs +10 -10
  28. package/drawer/DrawerNavigation.mjs +109 -130
  29. package/expansionpanel/ExpansionPanel.mjs +12 -15
  30. package/expansionpanel/ExpansionPanelContent.mjs +3 -9
  31. package/gridlayout/GridLayout.mjs +1 -10
  32. package/gridlayout/GridLayoutItem.mjs +1 -10
  33. package/menu/components/MenuItemLink.mjs +4 -17
  34. package/menu/utils/getNewItemIdUponKeyboardNavigation.js +1 -1
  35. package/menu/utils/getNewItemIdUponKeyboardNavigation.mjs +55 -57
  36. package/menu/utils/hoverDelay.js +1 -1
  37. package/menu/utils/hoverDelay.mjs +2 -2
  38. package/menu/utils/itemsIdsUtils.js +1 -1
  39. package/menu/utils/itemsIdsUtils.mjs +14 -18
  40. package/menu/utils/misc.js +1 -1
  41. package/menu/utils/misc.mjs +2 -2
  42. package/menu/utils/prepareInputItemsForInternalWork.js +1 -1
  43. package/menu/utils/prepareInputItemsForInternalWork.mjs +30 -31
  44. package/package-metadata.mjs +1 -1
  45. package/package.json +6 -6
  46. package/panelbar/PanelBar.mjs +2 -7
  47. package/panelbar/util.js +1 -1
  48. package/panelbar/util.mjs +27 -40
  49. package/splitter/SplitterBar.mjs +23 -40
  50. package/splitter/SplitterPane.mjs +1 -11
  51. package/stacklayout/StackLayout.mjs +2 -14
  52. package/stepper/Step.mjs +25 -46
  53. package/stepper/Stepper.js +1 -1
  54. package/stepper/Stepper.mjs +59 -78
  55. package/tabstrip/TabStripContent.mjs +2 -14
  56. package/tabstrip/TabStripTab.mjs +2 -9
  57. package/tilelayout/InternalTile.mjs +31 -19
  58. package/tilelayout/ResizeHandlers.mjs +7 -1
  59. package/tilelayout/TileLayout.mjs +24 -20
  60. package/timeline/TimelineCard.mjs +1 -4
  61. package/timeline/TimelineHorizontal.mjs +52 -63
  62. package/timeline/TimelineVertical.mjs +7 -5
  63. package/timeline/utils.mjs +4 -1
package/card/Avatar.mjs CHANGED
@@ -46,7 +46,21 @@ n.propTypes = {
46
46
  rounded: a.oneOf([null, "small", "medium", "large", "full"]),
47
47
  fillMode: a.oneOf([null, "solid", "outline"]),
48
48
  /* eslint-disable max-len */
49
- themeColor: a.oneOf([null, "base", "dark", "error", "info", "inverse", "inverse", "light", "primary", "secondary", "success", "tertiary", "warning"])
49
+ themeColor: a.oneOf([
50
+ null,
51
+ "base",
52
+ "dark",
53
+ "error",
54
+ "info",
55
+ "inverse",
56
+ "inverse",
57
+ "light",
58
+ "primary",
59
+ "secondary",
60
+ "success",
61
+ "tertiary",
62
+ "warning"
63
+ ])
50
64
  };
51
65
  export {
52
66
  n as Avatar
package/card/CardBody.mjs CHANGED
@@ -9,17 +9,7 @@
9
9
  import * as s from "react";
10
10
  import r from "prop-types";
11
11
  import { classNames as a } from "@progress/kendo-react-common";
12
- const t = (e) => /* @__PURE__ */ s.createElement(
13
- "div",
14
- {
15
- style: e.style,
16
- className: a(
17
- "k-card-body",
18
- e.className
19
- )
20
- },
21
- e.children
22
- );
12
+ const t = (e) => /* @__PURE__ */ s.createElement("div", { style: e.style, className: a("k-card-body", e.className) }, e.children);
23
13
  t.propTypes = {
24
14
  className: r.string
25
15
  };
@@ -9,17 +9,7 @@
9
9
  import * as r from "react";
10
10
  import s from "prop-types";
11
11
  import { classNames as t } from "@progress/kendo-react-common";
12
- const a = (e) => /* @__PURE__ */ r.createElement(
13
- "div",
14
- {
15
- style: e.style,
16
- className: t(
17
- "k-card-footer",
18
- e.className
19
- )
20
- },
21
- e.children
22
- );
12
+ const a = (e) => /* @__PURE__ */ r.createElement("div", { style: e.style, className: t("k-card-footer", e.className) }, e.children);
23
13
  a.propTypes = {
24
14
  className: s.string
25
15
  };
@@ -9,17 +9,7 @@
9
9
  import * as r from "react";
10
10
  import a from "prop-types";
11
11
  import { classNames as s } from "@progress/kendo-react-common";
12
- const t = (e) => /* @__PURE__ */ r.createElement(
13
- "div",
14
- {
15
- style: e.style,
16
- className: s(
17
- "k-card-header",
18
- e.className
19
- )
20
- },
21
- e.children
22
- );
12
+ const t = (e) => /* @__PURE__ */ r.createElement("div", { style: e.style, className: s("k-card-header", e.className) }, e.children);
23
13
  t.propTypes = {
24
14
  className: a.string
25
15
  };
@@ -18,10 +18,7 @@ const c = (e) => {
18
18
  "img",
19
19
  {
20
20
  style: s.style,
21
- className: t(
22
- "k-card-media",
23
- s.className
24
- ),
21
+ className: t("k-card-media", s.className),
25
22
  src: s.src,
26
23
  alt: s.alt
27
24
  }
@@ -9,17 +9,7 @@
9
9
  import * as t from "react";
10
10
  import s from "prop-types";
11
11
  import { classNames as r } from "@progress/kendo-react-common";
12
- const a = (e) => /* @__PURE__ */ t.createElement(
13
- "div",
14
- {
15
- style: e.style,
16
- className: r(
17
- "k-card-subtitle",
18
- e.className
19
- )
20
- },
21
- e.children
22
- );
12
+ const a = (e) => /* @__PURE__ */ t.createElement("div", { style: e.style, className: r("k-card-subtitle", e.className) }, e.children);
23
13
  a.propTypes = {
24
14
  className: s.string
25
15
  };
@@ -9,17 +9,7 @@
9
9
  import * as t from "react";
10
10
  import s from "prop-types";
11
11
  import { classNames as r } from "@progress/kendo-react-common";
12
- const a = (e) => /* @__PURE__ */ t.createElement(
13
- "div",
14
- {
15
- style: e.style,
16
- className: r(
17
- "k-card-title",
18
- e.className
19
- )
20
- },
21
- e.children
22
- );
12
+ const a = (e) => /* @__PURE__ */ t.createElement("div", { style: e.style, className: r("k-card-title", e.className) }, e.children);
23
13
  a.propTypes = {
24
14
  className: s.string
25
15
  };