@altinn/altinn-components 0.7.0 → 0.7.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.
Files changed (91) hide show
  1. package/dist/assets/DialogBorder.css +1 -1
  2. package/dist/assets/DialogHeadings.css +1 -1
  3. package/dist/assets/DialogListItem.css +1 -1
  4. package/dist/assets/DialogSummary.css +1 -0
  5. package/dist/assets/HeaderButton.css +1 -1
  6. package/dist/assets/ListItemBase.css +1 -1
  7. package/dist/assets/ListItemControls.css +1 -0
  8. package/dist/assets/ListItemLabel.css +1 -1
  9. package/dist/assets/ListItemSelect.css +1 -0
  10. package/dist/assets/MenuItemBase.css +1 -1
  11. package/dist/assets/MenuSearch.css +1 -1
  12. package/dist/assets/Skeleton.css +1 -0
  13. package/dist/assets/ToolbarSearch.css +1 -1
  14. package/dist/components/ContextMenu/ContextMenu.d.ts +2 -1
  15. package/dist/components/ContextMenu/ContextMenu.js +19 -8
  16. package/dist/components/ContextMenu/ContextMenuBase.d.ts +2 -1
  17. package/dist/components/ContextMenu/ContextMenuBase.js +19 -18
  18. package/dist/components/Dialog/DialogActions.d.ts +1 -2
  19. package/dist/components/Dialog/DialogBorder.d.ts +2 -1
  20. package/dist/components/Dialog/DialogBorder.js +6 -6
  21. package/dist/components/Dialog/DialogHeadings.d.ts +2 -1
  22. package/dist/components/Dialog/DialogHeadings.js +37 -32
  23. package/dist/components/Dialog/DialogListItem.d.ts +3 -1
  24. package/dist/components/Dialog/DialogListItem.js +72 -68
  25. package/dist/components/Dialog/DialogListItem.stories.js +40 -34
  26. package/dist/components/Dialog/DialogMetadata.d.ts +3 -1
  27. package/dist/components/Dialog/DialogMetadata.js +26 -25
  28. package/dist/components/Dialog/DialogStatus.d.ts +2 -1
  29. package/dist/components/Dialog/DialogStatus.js +11 -9
  30. package/dist/components/Dialog/DialogSummary.d.ts +12 -0
  31. package/dist/components/Dialog/DialogSummary.js +8 -0
  32. package/dist/components/Dialog/DialogTitle.d.ts +2 -1
  33. package/dist/components/Dialog/DialogTitle.js +10 -9
  34. package/dist/components/Dialog/DialogTouchedBy.d.ts +2 -1
  35. package/dist/components/Dialog/DialogTouchedBy.js +4 -4
  36. package/dist/components/GlobalMenu/AccountButton.js +1 -1
  37. package/dist/components/GlobalMenu/AccountMenu.js +16 -15
  38. package/dist/components/Header/Header.d.ts +3 -1
  39. package/dist/components/Header/Header.js +30 -29
  40. package/dist/components/Header/HeaderButton.d.ts +3 -1
  41. package/dist/components/Header/HeaderButton.js +37 -29
  42. package/dist/components/Header/HeaderButton.stories.js +10 -6
  43. package/dist/components/List/List.js +3 -2
  44. package/dist/components/List/ListItem.d.ts +1 -1
  45. package/dist/components/List/ListItem.js +33 -41
  46. package/dist/components/List/ListItem.stories.js +61 -32
  47. package/dist/components/List/ListItemBase.d.ts +15 -12
  48. package/dist/components/List/ListItemBase.js +49 -45
  49. package/dist/components/List/ListItemControls.d.ts +13 -0
  50. package/dist/components/List/ListItemControls.js +19 -0
  51. package/dist/components/List/ListItemHeader.d.ts +14 -2
  52. package/dist/components/List/ListItemHeader.js +29 -6
  53. package/dist/components/List/ListItemLabel.d.ts +2 -1
  54. package/dist/components/List/ListItemLabel.js +10 -9
  55. package/dist/components/List/ListItemMedia.d.ts +2 -1
  56. package/dist/components/List/ListItemMedia.js +23 -21
  57. package/dist/components/List/ListItemSelect.d.ts +12 -0
  58. package/dist/components/List/ListItemSelect.js +15 -0
  59. package/dist/components/List/index.d.ts +2 -1
  60. package/dist/components/List/index.js +14 -12
  61. package/dist/components/Menu/MenuItem.d.ts +7 -8
  62. package/dist/components/Menu/MenuItem.js +35 -21
  63. package/dist/components/Menu/MenuItem.stories.js +37 -35
  64. package/dist/components/Menu/MenuItemBase.d.ts +15 -13
  65. package/dist/components/Menu/MenuItemBase.js +59 -57
  66. package/dist/components/Menu/MenuSearch.d.ts +2 -1
  67. package/dist/components/Menu/MenuSearch.js +39 -19
  68. package/dist/components/Menu/MenuSearch.stories.js +10 -7
  69. package/dist/components/Meta/MetaItem.d.ts +2 -1
  70. package/dist/components/Meta/MetaItem.js +9 -8
  71. package/dist/components/Meta/MetaTimestamp.d.ts +2 -1
  72. package/dist/components/Meta/MetaTimestamp.js +14 -6
  73. package/dist/components/Searchbar/AutocompleteItem.js +10 -10
  74. package/dist/components/Searchbar/ScopeListItem.js +3 -2
  75. package/dist/components/Skeleton/Skeleton.d.ts +11 -0
  76. package/dist/components/Skeleton/Skeleton.js +9 -0
  77. package/dist/components/Skeleton/index.d.ts +1 -0
  78. package/dist/components/Skeleton/index.js +4 -0
  79. package/dist/components/Toolbar/Toolbar.js +1 -1
  80. package/dist/components/Toolbar/ToolbarSearch.d.ts +2 -1
  81. package/dist/components/Toolbar/ToolbarSearch.js +38 -18
  82. package/dist/components/Toolbar/ToolbarSearch.stories.js +8 -5
  83. package/dist/components/index.js +100 -98
  84. package/dist/index.js +123 -121
  85. package/package.json +1 -1
  86. package/dist/assets/ListItemAction.css +0 -1
  87. package/dist/assets/ListItemFooter.css +0 -1
  88. package/dist/components/List/ListItemAction.d.ts +0 -8
  89. package/dist/components/List/ListItemAction.js +0 -8
  90. package/dist/components/List/ListItemFooter.d.ts +0 -11
  91. package/dist/components/List/ListItemFooter.js +0 -17
@@ -2,6 +2,7 @@ import { ElementType, ReactNode } from 'react';
2
2
  import { IconName } from '../Icon';
3
3
  import { MetaItemSize, MetaItemVariant } from './MetaItemBase';
4
4
  export interface MetaItemProps {
5
+ loading?: boolean;
5
6
  /** Render as element */
6
7
  as?: ElementType;
7
8
  /** Meta size */
@@ -15,4 +16,4 @@ export interface MetaItemProps {
15
16
  /** classname */
16
17
  className?: string;
17
18
  }
18
- export declare const MetaItem: ({ size, variant, icon, children, ...rest }: MetaItemProps) => import("react/jsx-runtime").JSX.Element;
19
+ export declare const MetaItem: ({ loading, size, variant, icon, children, ...rest }: MetaItemProps) => import("react/jsx-runtime").JSX.Element;
@@ -1,11 +1,12 @@
1
- import { jsxs as p, jsx as r } from "react/jsx-runtime";
2
- import { MetaItemBase as x } from "./MetaItemBase.js";
3
- import { MetaItemLabel as M } from "./MetaItemLabel.js";
4
- import { MetaItemMedia as f } from "./MetaItemMedia.js";
5
- const j = ({ size: t = "xs", variant: e = "text", icon: m, children: o, ...a }) => /* @__PURE__ */ p(x, { variant: e, size: t, ...a, children: [
6
- m && /* @__PURE__ */ r(f, { icon: m, size: t }),
7
- /* @__PURE__ */ r(M, { variant: e, size: t, children: o })
8
- ] });
1
+ import { jsx as e, jsxs as x } from "react/jsx-runtime";
2
+ import { Skeleton as M } from "../Skeleton/Skeleton.js";
3
+ import { MetaItemBase as a } from "./MetaItemBase.js";
4
+ import { MetaItemLabel as s } from "./MetaItemLabel.js";
5
+ import { MetaItemMedia as I } from "./MetaItemMedia.js";
6
+ const j = ({ loading: m, size: t = "xs", variant: r = "text", icon: o, children: p, ...f }) => /* @__PURE__ */ e(a, { variant: r, size: t, ...f, children: /* @__PURE__ */ x(M, { loading: m, children: [
7
+ !m && o && /* @__PURE__ */ e(I, { size: t, icon: o }),
8
+ /* @__PURE__ */ e(s, { variant: r, size: t, children: p })
9
+ ] }) });
9
10
  export {
10
11
  j as MetaItem
11
12
  };
@@ -2,6 +2,7 @@ import { ReactNode } from 'react';
2
2
  import { IconName } from '../Icon';
3
3
  import { MetaItemSize, MetaItemVariant } from './MetaItemBase';
4
4
  export interface MetaTimestampProps {
5
+ loading?: boolean;
5
6
  /** Meta size */
6
7
  size?: MetaItemSize;
7
8
  /** Variant */
@@ -13,4 +14,4 @@ export interface MetaTimestampProps {
13
14
  /** Label */
14
15
  children?: ReactNode;
15
16
  }
16
- export declare const MetaTimestamp: ({ size, variant, datetime, icon, children }: MetaTimestampProps) => import("react/jsx-runtime").JSX.Element;
17
+ export declare const MetaTimestamp: ({ loading, size, variant, datetime, icon, children, }: MetaTimestampProps) => import("react/jsx-runtime").JSX.Element;
@@ -1,11 +1,19 @@
1
- import { jsxs as p, jsx as r } from "react/jsx-runtime";
2
- import { MetaItemBase as s } from "./MetaItemBase.js";
1
+ import { jsx as e, jsxs as s } from "react/jsx-runtime";
2
+ import { Skeleton as f } from "../Skeleton/Skeleton.js";
3
+ import { MetaItemBase as i } from "./MetaItemBase.js";
3
4
  import { MetaItemLabel as x } from "./MetaItemLabel.js";
4
5
  import { MetaItemMedia as M } from "./MetaItemMedia.js";
5
- const j = ({ size: t = "xs", variant: e = "text", datetime: o, icon: m, children: a }) => /* @__PURE__ */ p(s, { as: "time", variant: e, datetime: o, size: t, children: [
6
- m && /* @__PURE__ */ r(M, { size: t, icon: m }),
7
- /* @__PURE__ */ r(x, { variant: e, size: t, children: a })
8
- ] });
6
+ const j = ({
7
+ loading: m,
8
+ size: t = "xs",
9
+ variant: r = "text",
10
+ datetime: p,
11
+ icon: o,
12
+ children: a
13
+ }) => /* @__PURE__ */ e(i, { as: "time", variant: r, datetime: p, size: t, children: /* @__PURE__ */ s(f, { loading: m, children: [
14
+ !m && o && /* @__PURE__ */ e(M, { size: t, icon: o }),
15
+ /* @__PURE__ */ e(x, { variant: r, size: t, children: a })
16
+ ] }) });
9
17
  export {
10
18
  j as MetaTimestamp
11
19
  };
@@ -1,26 +1,26 @@
1
- import { jsx as t } from "react/jsx-runtime";
1
+ import { jsx as o } from "react/jsx-runtime";
2
2
  import "react";
3
3
  import "../../index-L8X2o7IH.js";
4
4
  import "../Icon/SvgIcon.js";
5
5
  import "../RootProvider/RootProvider.js";
6
6
  import { DialogListItem as r } from "../Dialog/DialogListItem.js";
7
- import { ListItem as i } from "../List/ListItem.js";
8
- import { BookmarksListItem as s } from "../Bookmarks/BookmarksListItem.js";
7
+ import { ListItem as n } from "../List/ListItem.js";
8
+ import { BookmarksListItem as i } from "../Bookmarks/BookmarksListItem.js";
9
9
  import { ScopeListItem as e } from "./ScopeListItem.js";
10
- const I = ({ type: m, ...o }) => {
10
+ const h = ({ type: m, ...t }) => {
11
11
  switch (m) {
12
12
  case "scope":
13
- return /* @__PURE__ */ t(e, { ...o, shadow: "none" });
13
+ return /* @__PURE__ */ o(e, { ...t, shadow: "none", tabIndex: -1 });
14
14
  case "information":
15
- return /* @__PURE__ */ t(e, { ...o, shadow: "none" });
15
+ return /* @__PURE__ */ o(e, { ...t, shadow: "none", tabIndex: -1 });
16
16
  case "bookmark":
17
- return /* @__PURE__ */ t(s, { ...o, shadow: "none", size: "sm" });
17
+ return /* @__PURE__ */ o(i, { ...t, shadow: "none", size: "sm", tabIndex: -1 });
18
18
  case "dialog":
19
- return /* @__PURE__ */ t(r, { ...o, shadow: "none", size: "sm" });
19
+ return /* @__PURE__ */ o(r, { ...t, shadow: "none", size: "sm", tabIndex: -1 });
20
20
  default:
21
- return /* @__PURE__ */ t(i, { ...o, shadow: "none", size: "sm" });
21
+ return /* @__PURE__ */ o(n, { ...t, shadow: "none", size: "sm", tabIndex: -1 });
22
22
  }
23
23
  };
24
24
  export {
25
- I as AutocompleteItem
25
+ h as AutocompleteItem
26
26
  };
@@ -2,10 +2,11 @@ import { jsx as i } from "react/jsx-runtime";
2
2
  import "../../index-L8X2o7IH.js";
3
3
  import "../Icon/SvgIcon.js";
4
4
  import "react";
5
+ import "../RootProvider/RootProvider.js";
5
6
  import { ListItem as m } from "../List/ListItem.js";
6
7
  import '../../assets/ScopeListItem.css';const r = "_item_1a3bc_1", e = {
7
8
  item: r
8
- }, h = ({ as: s = "a", label: t, ...o }) => /* @__PURE__ */ i(m, { className: e.item, linkIcon: "chevron-right", ...o, children: typeof t == "function" ? t() : t });
9
+ }, I = ({ as: s = "a", label: t, ...o }) => /* @__PURE__ */ i(m, { className: e.item, linkIcon: "chevron-right", ...o, children: typeof t == "function" ? t() : t });
9
10
  export {
10
- h as ScopeListItem
11
+ I as ScopeListItem
11
12
  };
@@ -0,0 +1,11 @@
1
+ import { ReactNode } from 'react';
2
+ export type SkeletonVariant = 'circle' | 'text';
3
+ interface SkeletonProps {
4
+ loading?: boolean;
5
+ variant?: SkeletonVariant;
6
+ size?: string;
7
+ children?: ReactNode;
8
+ className?: string;
9
+ }
10
+ export declare const Skeleton: ({ loading, size, variant, className, children }: SkeletonProps) => string | number | boolean | Iterable<ReactNode> | import("react/jsx-runtime").JSX.Element | null | undefined;
11
+ export {};
@@ -0,0 +1,9 @@
1
+ import { jsx as n } from "react/jsx-runtime";
2
+ import { c as r } from "../../index-L8X2o7IH.js";
3
+ import '../../assets/Skeleton.css';const f = "_skelaton_10sb8_1", l = "_fade_10sb8_1", c = {
4
+ skelaton: f,
5
+ fade: l
6
+ }, k = ({ loading: t = !1, size: s, variant: e = "text", className: o, children: a }) => t ? /* @__PURE__ */ n("span", { className: r(c.skelaton, o), "data-size": s, "data-loading": t, "data-variant": e, children: a }) : a;
7
+ export {
8
+ k as Skeleton
9
+ };
@@ -0,0 +1 @@
1
+ export * from './Skeleton';
@@ -0,0 +1,4 @@
1
+ import { Skeleton as r } from "./Skeleton.js";
2
+ export {
3
+ r as Skeleton
4
+ };
@@ -48,6 +48,7 @@ const Y = ({
48
48
  };
49
49
  return /* @__PURE__ */ V(z, { open: i === "toolbar", onClose: M, children: [
50
50
  F && /* @__PURE__ */ c(G, { onToggle: () => t("menu", ""), expanded: (e == null ? void 0 : e.type) === "menu", ...F }),
51
+ T && /* @__PURE__ */ c(H, { ...T }),
51
52
  L.map((o) => /* @__PURE__ */ c(
52
53
  D,
53
54
  {
@@ -84,7 +85,6 @@ const Y = ({
84
85
  }))
85
86
  }
86
87
  ),
87
- T && /* @__PURE__ */ c(H, { ...T }),
88
88
  N
89
89
  ] });
90
90
  };
@@ -4,5 +4,6 @@ export interface ToolbarSearchProps {
4
4
  name: string;
5
5
  value: string;
6
6
  onChange: ChangeEventHandler;
7
+ onClear?: () => void;
7
8
  }
8
- export declare const ToolbarSearch: ({ value, name, placeholder, onChange }: ToolbarSearchProps) => import("react/jsx-runtime").JSX.Element;
9
+ export declare const ToolbarSearch: ({ value, name, placeholder, onChange, onClear }: ToolbarSearchProps) => import("react/jsx-runtime").JSX.Element;
@@ -1,20 +1,40 @@
1
- import { jsx as t } from "react/jsx-runtime";
2
- import '../../assets/ToolbarSearch.css';const i = "_input_cwjz7_1", _ = "_button_cwjz7_11", l = "_close_cwjz7_16", r = "_icon_cwjz7_20", c = {
3
- input: i,
4
- button: _,
5
- close: l,
6
- icon: r
7
- }, p = ({ value: o, name: n, placeholder: s = "Søk", onChange: e }) => /* @__PURE__ */ t("div", { className: c.field, children: /* @__PURE__ */ t(
8
- "input",
9
- {
10
- type: "search",
11
- value: o,
12
- name: n,
13
- placeholder: s,
14
- className: c.input,
15
- onChange: e
16
- }
17
- ) });
1
+ import { jsxs as r, jsx as c } from "react/jsx-runtime";
2
+ import { Icon as a } from "../Icon/Icon.js";
3
+ import "../Icon/SvgIcon.js";
4
+ import "../../index-L8X2o7IH.js";
5
+ import "react";
6
+ import { IconButton as l } from "../Button/IconButton.js";
7
+ import "../RootProvider/RootProvider.js";
8
+ import '../../assets/ToolbarSearch.css';const m = "_field_dvezx_1", p = "_icon_dvezx_5", d = "_input_dvezx_14", _ = "_clear_dvezx_30", o = {
9
+ field: m,
10
+ icon: p,
11
+ input: d,
12
+ clear: _
13
+ }, N = ({ value: e, name: n, placeholder: s = "Search", onChange: t, onClear: i }) => /* @__PURE__ */ r("div", { className: o.field, children: [
14
+ /* @__PURE__ */ c(
15
+ "input",
16
+ {
17
+ type: "search",
18
+ value: e,
19
+ name: n,
20
+ placeholder: s,
21
+ className: o.input,
22
+ onChange: t
23
+ }
24
+ ),
25
+ /* @__PURE__ */ c(a, { name: "magnifying-glass", className: o.icon }),
26
+ i && /* @__PURE__ */ c(
27
+ l,
28
+ {
29
+ icon: "x-mark",
30
+ color: "secondary",
31
+ variant: "solid",
32
+ size: "custom",
33
+ className: o.clear,
34
+ onClick: i
35
+ }
36
+ )
37
+ ] });
18
38
  export {
19
- p as ToolbarSearch
39
+ N as ToolbarSearch
20
40
  };
@@ -1,14 +1,17 @@
1
+ import { fn as o } from "@storybook/test";
1
2
  import { ToolbarSearch as a } from "./ToolbarSearch.js";
2
- const t = {
3
+ const e = {
3
4
  title: "Toolbar/ToolbarSearch",
4
5
  component: a,
5
6
  tags: ["autodocs"],
6
7
  parameters: {},
7
8
  args: {}
8
- }, r = {
9
- args: {}
9
+ }, s = {
10
+ args: {
11
+ onClear: o()
12
+ }
10
13
  };
11
14
  export {
12
- r as Default,
13
- t as default
15
+ s as Default,
16
+ e as default
14
17
  };
@@ -4,7 +4,7 @@ import { Avatar as p } from "./Avatar/Avatar.js";
4
4
  import { AvatarGroup as f } from "./Avatar/AvatarGroup.js";
5
5
  import { Badge as n } from "./Badge/Badge.js";
6
6
  import { BookmarksList as u } from "./Bookmarks/BookmarksList.js";
7
- import { BookmarksListItem as l } from "./Bookmarks/BookmarksListItem.js";
7
+ import { BookmarksListItem as B } from "./Bookmarks/BookmarksListItem.js";
8
8
  import { QueryItem as c, QueryLabel as L } from "./Bookmarks/QueryLabel.js";
9
9
  import { ButtonBase as d } from "./Button/ButtonBase.js";
10
10
  import { ButtonLabel as I } from "./Button/ButtonLabel.js";
@@ -13,7 +13,7 @@ import { Button as S } from "./Button/Button.js";
13
13
  import { ComboButton as A } from "./Button/ComboButton.js";
14
14
  import { IconButton as h } from "./Button/IconButton.js";
15
15
  import { ContextMenu as T } from "./ContextMenu/ContextMenu.js";
16
- import { Dialog as C } from "./Dialog/Dialog.js";
16
+ import { Dialog as F } from "./Dialog/Dialog.js";
17
17
  import { DialogList as R } from "./Dialog/DialogList.js";
18
18
  import { DialogMetadata as O } from "./Dialog/DialogMetadata.js";
19
19
  import { DialogListItem as E } from "./Dialog/DialogListItem.js";
@@ -30,7 +30,7 @@ import { DialogHeaderBase as ao } from "./Dialog/DialogHeaderBase.js";
30
30
  import { DialogHeadings as xo } from "./Dialog/DialogHeadings.js";
31
31
  import { DialogHistory as io } from "./Dialog/DialogHistory.js";
32
32
  import { DialogNav as so } from "./Dialog/DialogNav.js";
33
- import { DialogSectionBase as Bo } from "./Dialog/DialogSectionBase.js";
33
+ import { DialogSectionBase as lo } from "./Dialog/DialogSectionBase.js";
34
34
  import { DialogSeenBy as go } from "./Dialog/DialogSeenBy.js";
35
35
  import { DialogSelect as Lo } from "./Dialog/DialogSelect.js";
36
36
  import { DialogStatus as Mo, DialogStatusEnum as Io } from "./Dialog/DialogStatus.js";
@@ -39,7 +39,7 @@ import { DialogTouchedBy as So } from "./Dialog/DialogTouchedBy.js";
39
39
  import { DialogLabel as Ao } from "./Dialog/DialogLabel.js";
40
40
  import { DropdownBase as ho } from "./Dropdown/DropdownBase.js";
41
41
  import { Backdrop as To } from "./Dropdown/Backdrop.js";
42
- import { DrawerBase as Co } from "./Dropdown/DrawerBase.js";
42
+ import { DrawerBase as Fo } from "./Dropdown/DrawerBase.js";
43
43
  import { DrawerHeader as Ro } from "./Dropdown/DrawerHeader.js";
44
44
  import { DrawerFooter as Oo } from "./Dropdown/DrawerFooter.js";
45
45
  import { DrawerButton as Eo } from "./Dropdown/DrawerButton.js";
@@ -56,7 +56,7 @@ import { HeaderBase as ar } from "./Header/HeaderBase.js";
56
56
  import { HeaderLogo as xr } from "./Header/HeaderLogo.js";
57
57
  import { HeaderButton as ir } from "./Header/HeaderButton.js";
58
58
  import { HistoryList as sr } from "./History/HistoryList.js";
59
- import { HistoryItem as Br } from "./History/HistoryItem.js";
59
+ import { HistoryItem as lr } from "./History/HistoryItem.js";
60
60
  import { Icon as gr } from "./Icon/Icon.js";
61
61
  import { SvgIcon as Lr } from "./Icon/SvgIcon.js";
62
62
  import { CheckboxIcon as dr } from "./Icon/CheckboxIcon.js";
@@ -66,54 +66,55 @@ import { iconsMap as Sr } from "./Icon/iconsMap.js";
66
66
  import { LayoutBase as Ar } from "./Layout/LayoutBase.js";
67
67
  import { LayoutBody as hr } from "./Layout/LayoutBody.js";
68
68
  import { LayoutContent as Tr } from "./Layout/LayoutContent.js";
69
- import { LayoutSidebar as Cr } from "./Layout/LayoutSidebar.js";
69
+ import { LayoutSidebar as Fr } from "./Layout/LayoutSidebar.js";
70
70
  import { Layout as Rr } from "./Layout/Layout.js";
71
71
  import { ActionHeader as Or } from "./LayoutAction/ActionHeader.js";
72
72
  import { ActionFooter as Er } from "./LayoutAction/ActionFooter.js";
73
73
  import { ActionMenu as jr } from "./LayoutAction/ActionMenu.js";
74
74
  import { ListItemBase as zr } from "./List/ListItemBase.js";
75
75
  import { ListItemHeader as Kr } from "./List/ListItemHeader.js";
76
- import { ListItemFooter as Vr } from "./List/ListItemFooter.js";
77
- import { ListItemLabel as Xr } from "./List/ListItemLabel.js";
78
- import { ListItemMedia as Zr } from "./List/ListItemMedia.js";
79
- import { ListItem as $r } from "./List/ListItem.js";
80
- import { ListBase as re } from "./List/ListBase.js";
81
- import { List as te } from "./List/List.js";
82
- import { MenuItemBase as ae } from "./Menu/MenuItemBase.js";
83
- import { MenuItemLabel as xe } from "./Menu/MenuItemLabel.js";
84
- import { MenuItemMedia as ie } from "./Menu/MenuItemMedia.js";
85
- import { MenuItem as se } from "./Menu/MenuItem.js";
86
- import { MenuInputField as Be } from "./Menu/MenuInputField.js";
87
- import { MenuOption as ge } from "./Menu/MenuOption.js";
88
- import { MenuSearch as Le } from "./Menu/MenuSearch.js";
89
- import { MenuHeader as de } from "./Menu/MenuHeader.js";
90
- import { MenuItems as Ie } from "./Menu/MenuItems.js";
91
- import { MenuBase as ye, MenuList as He, MenuListItem as Se } from "./Menu/MenuBase.js";
92
- import { Menu as Ae } from "./Menu/Menu.js";
93
- import { MetaBase as he } from "./Meta/MetaBase.js";
94
- import { MetaList as Te, MetaListItem as ve } from "./Meta/MetaList.js";
95
- import { MetaItemBase as Pe } from "./Meta/MetaItemBase.js";
96
- import { MetaItemMedia as Ge } from "./Meta/MetaItemMedia.js";
97
- import { MetaItemLabel as Qe } from "./Meta/MetaItemLabel.js";
98
- import { MetaItem as Ne } from "./Meta/MetaItem.js";
99
- import { MetaProgress as qe } from "./Meta/MetaProgress.js";
100
- import { MetaTimestamp as Je } from "./Meta/MetaTimestamp.js";
101
- import { RootProvider as Ue, useRootContext as Ve } from "./RootProvider/RootProvider.js";
102
- import { Searchbar as Xe } from "./Searchbar/Searchbar.js";
103
- import { Snackbar as Ze } from "./Snackbar/Snackbar.js";
104
- import { SnackbarBase as $e } from "./Snackbar/SnackbarBase.js";
105
- import { SnackbarMedia as rt } from "./Snackbar/SnackbarMedia.js";
106
- import { SnackbarLabel as tt } from "./Snackbar/SnackbarLabel.js";
107
- import { ToolbarBase as at } from "./Toolbar/ToolbarBase.js";
108
- import { ToolbarButton as xt } from "./Toolbar/ToolbarButton.js";
109
- import { Toolbar as it } from "./Toolbar/Toolbar.js";
110
- import { PageBase as st } from "./Page/PageBase.js";
111
- import { PageHeader as Bt } from "./Page/PageHeader.js";
112
- import { SectionBase as gt } from "./Page/SectionBase.js";
113
- import { SectionHeader as Lt } from "./Page/SectionHeader.js";
114
- import { SectionFooter as dt } from "./Page/SectionFooter.js";
115
- import { Typography as It } from "./Typography/Typography.js";
116
- import { Heading as yt } from "./Typography/Heading.js";
76
+ import { ListItemLabel as Vr } from "./List/ListItemLabel.js";
77
+ import { ListItemMedia as Xr } from "./List/ListItemMedia.js";
78
+ import { ListItemControls as Zr } from "./List/ListItemControls.js";
79
+ import { ListItemSelect as $r } from "./List/ListItemSelect.js";
80
+ import { ListItem as re } from "./List/ListItem.js";
81
+ import { ListBase as te } from "./List/ListBase.js";
82
+ import { List as ae } from "./List/List.js";
83
+ import { MenuItemBase as xe } from "./Menu/MenuItemBase.js";
84
+ import { MenuItemLabel as ie } from "./Menu/MenuItemLabel.js";
85
+ import { MenuItemMedia as se } from "./Menu/MenuItemMedia.js";
86
+ import { MenuItem as le } from "./Menu/MenuItem.js";
87
+ import { MenuInputField as ge } from "./Menu/MenuInputField.js";
88
+ import { MenuOption as Le } from "./Menu/MenuOption.js";
89
+ import { MenuSearch as de } from "./Menu/MenuSearch.js";
90
+ import { MenuHeader as Ie } from "./Menu/MenuHeader.js";
91
+ import { MenuItems as ye } from "./Menu/MenuItems.js";
92
+ import { MenuBase as Se, MenuList as ke, MenuListItem as Ae } from "./Menu/MenuBase.js";
93
+ import { Menu as he } from "./Menu/Menu.js";
94
+ import { MetaBase as Te } from "./Meta/MetaBase.js";
95
+ import { MetaList as Fe, MetaListItem as Pe } from "./Meta/MetaList.js";
96
+ import { MetaItemBase as Ge } from "./Meta/MetaItemBase.js";
97
+ import { MetaItemMedia as Qe } from "./Meta/MetaItemMedia.js";
98
+ import { MetaItemLabel as Ne } from "./Meta/MetaItemLabel.js";
99
+ import { MetaItem as qe } from "./Meta/MetaItem.js";
100
+ import { MetaProgress as Je } from "./Meta/MetaProgress.js";
101
+ import { MetaTimestamp as Ue } from "./Meta/MetaTimestamp.js";
102
+ import { RootProvider as We, useRootContext as Xe } from "./RootProvider/RootProvider.js";
103
+ import { Searchbar as Ze } from "./Searchbar/Searchbar.js";
104
+ import { Snackbar as $e } from "./Snackbar/Snackbar.js";
105
+ import { SnackbarBase as rt } from "./Snackbar/SnackbarBase.js";
106
+ import { SnackbarMedia as tt } from "./Snackbar/SnackbarMedia.js";
107
+ import { SnackbarLabel as at } from "./Snackbar/SnackbarLabel.js";
108
+ import { ToolbarBase as xt } from "./Toolbar/ToolbarBase.js";
109
+ import { ToolbarButton as it } from "./Toolbar/ToolbarButton.js";
110
+ import { Toolbar as st } from "./Toolbar/Toolbar.js";
111
+ import { PageBase as lt } from "./Page/PageBase.js";
112
+ import { PageHeader as gt } from "./Page/PageHeader.js";
113
+ import { SectionBase as Lt } from "./Page/SectionBase.js";
114
+ import { SectionHeader as dt } from "./Page/SectionHeader.js";
115
+ import { SectionFooter as It } from "./Page/SectionFooter.js";
116
+ import { Typography as yt } from "./Typography/Typography.js";
117
+ import { Heading as St } from "./Typography/Heading.js";
117
118
  export {
118
119
  Zo as AccountButton,
119
120
  Vo as AccountMenu,
@@ -128,7 +129,7 @@ export {
128
129
  To as Backdrop,
129
130
  n as Badge,
130
131
  u as BookmarksList,
131
- l as BookmarksListItem,
132
+ B as BookmarksListItem,
132
133
  S as Button,
133
134
  d as ButtonBase,
134
135
  y as ButtonIcon,
@@ -136,7 +137,7 @@ export {
136
137
  dr as CheckboxIcon,
137
138
  A as ComboButton,
138
139
  T as ContextMenu,
139
- C as Dialog,
140
+ F as Dialog,
140
141
  j as DialogActions,
141
142
  z as DialogActivityLog,
142
143
  K as DialogArticleBase,
@@ -154,14 +155,14 @@ export {
154
155
  E as DialogListItem,
155
156
  O as DialogMetadata,
156
157
  so as DialogNav,
157
- Bo as DialogSectionBase,
158
+ lo as DialogSectionBase,
158
159
  go as DialogSeenBy,
159
160
  Lo as DialogSelect,
160
161
  Mo as DialogStatus,
161
162
  Io as DialogStatusEnum,
162
163
  yo as DialogTitle,
163
164
  So as DialogTouchedBy,
164
- Co as DrawerBase,
165
+ Fo as DrawerBase,
165
166
  jo as DrawerBody,
166
167
  Eo as DrawerButton,
167
168
  Oo as DrawerFooter,
@@ -174,8 +175,8 @@ export {
174
175
  ar as HeaderBase,
175
176
  ir as HeaderButton,
176
177
  xr as HeaderLogo,
177
- yt as Heading,
178
- Br as HistoryItem,
178
+ St as Heading,
179
+ lr as HistoryItem,
179
180
  sr as HistoryList,
180
181
  gr as Icon,
181
182
  h as IconButton,
@@ -183,58 +184,59 @@ export {
183
184
  Ar as LayoutBase,
184
185
  hr as LayoutBody,
185
186
  Tr as LayoutContent,
186
- Cr as LayoutSidebar,
187
- te as List,
188
- re as ListBase,
189
- $r as ListItem,
187
+ Fr as LayoutSidebar,
188
+ ae as List,
189
+ te as ListBase,
190
+ re as ListItem,
190
191
  zr as ListItemBase,
191
- Vr as ListItemFooter,
192
+ Zr as ListItemControls,
192
193
  Kr as ListItemHeader,
193
- Xr as ListItemLabel,
194
- Zr as ListItemMedia,
194
+ Vr as ListItemLabel,
195
+ Xr as ListItemMedia,
196
+ $r as ListItemSelect,
195
197
  rr as LogoutButton,
196
- Ae as Menu,
197
- ye as MenuBase,
198
- de as MenuHeader,
199
- Be as MenuInputField,
200
- se as MenuItem,
201
- ae as MenuItemBase,
202
- xe as MenuItemLabel,
203
- ie as MenuItemMedia,
204
- Ie as MenuItems,
205
- He as MenuList,
206
- Se as MenuListItem,
207
- ge as MenuOption,
208
- Le as MenuSearch,
209
- he as MetaBase,
210
- Ne as MetaItem,
211
- Pe as MetaItemBase,
212
- Qe as MetaItemLabel,
213
- Ge as MetaItemMedia,
214
- Te as MetaList,
215
- ve as MetaListItem,
216
- qe as MetaProgress,
217
- Je as MetaTimestamp,
218
- st as PageBase,
219
- Bt as PageHeader,
198
+ he as Menu,
199
+ Se as MenuBase,
200
+ Ie as MenuHeader,
201
+ ge as MenuInputField,
202
+ le as MenuItem,
203
+ xe as MenuItemBase,
204
+ ie as MenuItemLabel,
205
+ se as MenuItemMedia,
206
+ ye as MenuItems,
207
+ ke as MenuList,
208
+ Ae as MenuListItem,
209
+ Le as MenuOption,
210
+ de as MenuSearch,
211
+ Te as MetaBase,
212
+ qe as MetaItem,
213
+ Ge as MetaItemBase,
214
+ Ne as MetaItemLabel,
215
+ Qe as MetaItemMedia,
216
+ Fe as MetaList,
217
+ Pe as MetaListItem,
218
+ Je as MetaProgress,
219
+ Ue as MetaTimestamp,
220
+ lt as PageBase,
221
+ gt as PageHeader,
220
222
  yr as ProgressIcon,
221
223
  c as QueryItem,
222
224
  L as QueryLabel,
223
225
  Ir as RadioIcon,
224
- Ue as RootProvider,
225
- Xe as Searchbar,
226
- gt as SectionBase,
227
- dt as SectionFooter,
228
- Lt as SectionHeader,
229
- Ze as Snackbar,
230
- $e as SnackbarBase,
231
- tt as SnackbarLabel,
232
- rt as SnackbarMedia,
226
+ We as RootProvider,
227
+ Ze as Searchbar,
228
+ Lt as SectionBase,
229
+ It as SectionFooter,
230
+ dt as SectionHeader,
231
+ $e as Snackbar,
232
+ rt as SnackbarBase,
233
+ at as SnackbarLabel,
234
+ tt as SnackbarMedia,
233
235
  Lr as SvgIcon,
234
- it as Toolbar,
235
- at as ToolbarBase,
236
- xt as ToolbarButton,
237
- It as Typography,
236
+ st as Toolbar,
237
+ xt as ToolbarBase,
238
+ it as ToolbarButton,
239
+ yt as Typography,
238
240
  Sr as iconsMap,
239
- Ve as useRootContext
241
+ Xe as useRootContext
240
242
  };