@altinn/altinn-components 0.10.0 → 0.10.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.
Files changed (45) hide show
  1. package/dist/assets/DialogHeading.css +1 -1
  2. package/dist/assets/DialogListItem.css +1 -1
  3. package/dist/assets/ListItemBase.css +1 -1
  4. package/dist/assets/ListItemHeader.css +1 -1
  5. package/dist/assets/ListItemLabel.css +1 -1
  6. package/dist/assets/ListItemLink.css +1 -0
  7. package/dist/assets/ListItemMedia.css +1 -1
  8. package/dist/assets/ListItemSelect.css +1 -1
  9. package/dist/components/AccessAreaList/AccessAreaListItem.js +6 -6
  10. package/dist/components/Dialog/DialogByline.d.ts +1 -1
  11. package/dist/components/Dialog/DialogHeading.d.ts +4 -4
  12. package/dist/components/Dialog/DialogHeading.js +7 -7
  13. package/dist/components/Dialog/DialogLabel.d.ts +3 -3
  14. package/dist/components/Dialog/DialogLabel.js +1 -1
  15. package/dist/components/Dialog/DialogListItem.d.ts +9 -20
  16. package/dist/components/Dialog/DialogListItem.js +76 -83
  17. package/dist/components/Dialog/index.d.ts +0 -1
  18. package/dist/components/Dialog/index.js +27 -29
  19. package/dist/components/List/List.d.ts +4 -3
  20. package/dist/components/List/List.js +12 -4
  21. package/dist/components/List/ListItem.d.ts +2 -0
  22. package/dist/components/List/ListItem.stories.js +88 -80
  23. package/dist/components/List/ListItemBase.d.ts +1 -1
  24. package/dist/components/List/ListItemBase.js +8 -8
  25. package/dist/components/List/ListItemHeader.d.ts +5 -13
  26. package/dist/components/List/ListItemHeader.js +48 -59
  27. package/dist/components/List/ListItemHeader.stories.js +33 -41
  28. package/dist/components/List/ListItemLabel.js +6 -6
  29. package/dist/components/List/ListItemLink.d.ts +16 -0
  30. package/dist/components/List/ListItemLink.js +35 -0
  31. package/dist/components/List/ListItemMedia.d.ts +2 -3
  32. package/dist/components/List/ListItemMedia.js +21 -29
  33. package/dist/components/List/ListItemSelect.js +9 -9
  34. package/dist/components/List/index.d.ts +1 -0
  35. package/dist/components/List/index.js +18 -16
  36. package/dist/components/ResourceList/ResourceList.d.ts +1 -1
  37. package/dist/components/ResourceList/ResourceList.js +1 -1
  38. package/dist/components/ResourceList/ResourceList.stories.js +2 -2
  39. package/dist/components/Searchbar/Searchbar.stories.js +10 -8
  40. package/dist/components/index.js +104 -104
  41. package/dist/index.js +123 -123
  42. package/package.json +1 -1
  43. package/dist/assets/DialogBorder.css +0 -1
  44. package/dist/components/Dialog/DialogBorder.d.ts +0 -10
  45. package/dist/components/Dialog/DialogBorder.js +0 -8
@@ -1,14 +1,14 @@
1
1
  import { jsx as e, jsxs as r, Fragment as o } from "react/jsx-runtime";
2
2
  import { Skeleton as a } from "../Skeleton/Skeleton.js";
3
- import '../../assets/ListItemLabel.css';const d = "_label_1jhqj_3", m = "_title_1jhqj_36", h = "_description_1jhqj_43", s = {
3
+ import '../../assets/ListItemLabel.css';const d = "_label_5sijq_3", m = "_title_5sijq_27", p = "_description_5sijq_34", s = {
4
4
  label: d,
5
5
  title: m,
6
- description: h
7
- }, j = ({ loading: l = !1, size: t = "sm", title: c, description: n, children: i }) => /* @__PURE__ */ e("span", { className: s.label, "data-size": t, children: i || /* @__PURE__ */ r(o, { children: [
8
- /* @__PURE__ */ e("h2", { className: s.title, "data-size": t, children: /* @__PURE__ */ e(a, { loading: l, children: c }) }),
6
+ description: p
7
+ }, b = ({ loading: i = !1, size: t = "sm", title: c, description: n, children: l }) => /* @__PURE__ */ e("span", { className: s.label, "data-size": t, children: l || /* @__PURE__ */ r(o, { children: [
8
+ /* @__PURE__ */ e("h2", { className: s.title, "data-size": t, children: /* @__PURE__ */ e(a, { loading: i, children: c }) }),
9
9
  " ",
10
- /* @__PURE__ */ e("p", { className: s.description, "data-size": t, children: /* @__PURE__ */ e(a, { loading: l, children: n }) })
10
+ /* @__PURE__ */ e("p", { className: s.description, "data-size": t, children: /* @__PURE__ */ e(a, { loading: i, children: n }) })
11
11
  ] }) });
12
12
  export {
13
- j as ListItemLabel
13
+ b as ListItemLabel
14
14
  };
@@ -0,0 +1,16 @@
1
+ import { ElementType, KeyboardEventHandler, ReactNode } from 'react';
2
+ import { ListItemSize } from './ListItemBase';
3
+ export interface ListItemLinkProps {
4
+ size?: ListItemSize;
5
+ as?: ElementType;
6
+ href?: string;
7
+ onClick?: () => void;
8
+ onKeyPress?: KeyboardEventHandler;
9
+ tabIndex?: number;
10
+ loading?: boolean;
11
+ disabled?: boolean;
12
+ selected?: boolean;
13
+ className?: string;
14
+ children?: ReactNode;
15
+ }
16
+ export declare const ListItemLink: ({ size, as, loading, disabled, selected, href, onClick, onKeyPress, tabIndex, className, children, }: ListItemLinkProps) => import("react/jsx-runtime").JSX.Element;
@@ -0,0 +1,35 @@
1
+ import { jsx as c } from "react/jsx-runtime";
2
+ import { c as x } from "../../index-L8X2o7IH.js";
3
+ import '../../assets/ListItemLink.css';const _ = "_link_4l8am_1", b = {
4
+ link: _
5
+ }, j = ({
6
+ size: n,
7
+ as: s,
8
+ loading: e,
9
+ disabled: i,
10
+ selected: r,
11
+ href: o,
12
+ onClick: t,
13
+ onKeyPress: a,
14
+ tabIndex: p,
15
+ className: d,
16
+ children: l
17
+ }) => /* @__PURE__ */ c(
18
+ s || "button",
19
+ {
20
+ className: x(b.link, d),
21
+ href: o,
22
+ onKeyPress: (m) => {
23
+ m.key === "Enter" && (t == null || t()), a == null || a(m);
24
+ },
25
+ onClick: t,
26
+ tabIndex: p,
27
+ "aria-disabled": e || i,
28
+ "aria-selected": r,
29
+ "data-size": n,
30
+ children: l
31
+ }
32
+ );
33
+ export {
34
+ j as ListItemLink
35
+ };
@@ -1,14 +1,13 @@
1
1
  import { ReactNode } from 'react';
2
2
  import { AvatarGroupProps, AvatarProps } from '../Avatar';
3
3
  import { IconName } from '../Icon';
4
- import { ListItemColor, ListItemSize } from './ListItemBase';
4
+ import { ListItemSize } from './ListItemBase';
5
5
  export interface ListItemMediaProps {
6
6
  loading?: boolean;
7
- color?: ListItemColor;
8
7
  size?: ListItemSize;
9
8
  icon?: IconName;
10
9
  avatar?: AvatarProps;
11
10
  avatarGroup?: AvatarGroupProps;
12
11
  children?: ReactNode;
13
12
  }
14
- export declare const ListItemMedia: ({ loading, size, color, icon, avatar, avatarGroup, children, }: ListItemMediaProps) => false | import("react/jsx-runtime").JSX.Element;
13
+ export declare const ListItemMedia: ({ loading, size, icon, avatar, avatarGroup, children }: ListItemMediaProps) => false | import("react/jsx-runtime").JSX.Element;
@@ -1,47 +1,39 @@
1
- import { jsx as r, jsxs as d } from "react/jsx-runtime";
2
- import { Avatar as x } from "../Avatar/Avatar.js";
3
- import { AvatarGroup as p } from "../Avatar/AvatarGroup.js";
4
- import { Icon as n } from "../Icon/Icon.js";
1
+ import { jsx as r, jsxs as c } from "react/jsx-runtime";
2
+ import { Avatar as d } from "../Avatar/Avatar.js";
3
+ import { AvatarGroup as v } from "../Avatar/AvatarGroup.js";
4
+ import { Icon as l } from "../Icon/Icon.js";
5
5
  import "../Icon/SvgIcon.js";
6
6
  import "../../index-L8X2o7IH.js";
7
7
  import { Skeleton as f } from "../Skeleton/Skeleton.js";
8
- import '../../assets/ListItemMedia.css';const u = "_media_14b0z_3", v = "_icon_14b0z_24", a = {
9
- media: u,
10
- icon: v
11
- }, m = {
8
+ import '../../assets/ListItemMedia.css';const p = "_media_1hvg4_3", u = "_icon_1hvg4_21", m = {
9
+ media: p,
10
+ icon: u
11
+ }, a = {
12
12
  avatar: {
13
- xs: "xs",
13
+ xs: "sm",
14
14
  sm: "sm",
15
15
  md: "md",
16
- lg: "lg",
17
- xl: "xl"
16
+ lg: "md",
17
+ xl: "lg"
18
18
  },
19
19
  avatarGroup: {
20
- xs: "xs",
21
- sm: "xs",
22
- md: "sm",
20
+ xs: "sm",
21
+ sm: "sm",
22
+ md: "md",
23
23
  lg: "md",
24
24
  xl: "lg"
25
25
  }
26
- }, I = ({
27
- loading: i,
28
- size: t = "sm",
29
- color: c = "transparent",
30
- icon: s,
31
- avatar: o,
32
- avatarGroup: e,
33
- children: l
34
- }) => !s && !o && !e && !l ? !1 : i ? /* @__PURE__ */ r(f, { loading: i, variant: "circle", size: t, className: a.media, children: /* @__PURE__ */ r(n, { name: "airplane", variant: "outline", className: a.icon }) }) : /* @__PURE__ */ d("div", { className: a.media, "data-size": t, "data-color": s ? c : null, children: [
35
- s && /* @__PURE__ */ r(n, { name: s, variant: "outline", className: a.icon }) || o && /* @__PURE__ */ r(x, { ...o, size: m == null ? void 0 : m.avatar[t], className: a.avatar }) || e && /* @__PURE__ */ r(
36
- p,
26
+ }, G = ({ loading: i, size: s = "sm", icon: t, avatar: o, avatarGroup: e, children: n }) => !t && !o && !e && !n ? !1 : i ? /* @__PURE__ */ r(f, { loading: i, variant: "circle", size: s, className: m.media, children: /* @__PURE__ */ r(l, { name: "airplane", variant: "outline", className: m.icon }) }) : /* @__PURE__ */ c("div", { className: m.media, "data-size": s, children: [
27
+ t && /* @__PURE__ */ r(l, { name: t, variant: "outline", className: m.icon }) || o && /* @__PURE__ */ r(d, { ...o, size: a == null ? void 0 : a.avatar[s], className: m.avatar }) || e && /* @__PURE__ */ r(
28
+ v,
37
29
  {
38
30
  ...e,
39
- size: m == null ? void 0 : m.avatarGroup[t],
40
- className: a.avatarGroup
31
+ size: a == null ? void 0 : a.avatarGroup[s],
32
+ className: m.avatarGroup
41
33
  }
42
34
  ),
43
- l
35
+ n
44
36
  ] });
45
37
  export {
46
- I as ListItemMedia
38
+ G as ListItemMedia
47
39
  };
@@ -1,14 +1,14 @@
1
- import { jsxs as c, jsx as n } from "react/jsx-runtime";
2
- import { c as l } from "../../index-L8X2o7IH.js";
1
+ import { jsxs as l, jsx as o } from "react/jsx-runtime";
2
+ import { c as m } from "../../index-L8X2o7IH.js";
3
3
  import "../Icon/SvgIcon.js";
4
4
  import { CheckboxIcon as a } from "../Icon/CheckboxIcon.js";
5
- import '../../assets/ListItemSelect.css';const r = "_label_1niu5_1", m = "_input_1niu5_39", p = "_icon_1niu5_44", t = {
6
- label: r,
7
- input: m,
8
- icon: p
9
- }, f = ({ size: o, checked: e = !1, onChange: s, className: i }) => /* @__PURE__ */ c("label", { className: l(t.label, i), "data-size": o, children: [
10
- /* @__PURE__ */ n("input", { type: "checkbox", checked: e, onChange: s, className: t.input, tabIndex: -1 }),
11
- /* @__PURE__ */ n(a, { hover: !0, checked: e, className: t.icon })
5
+ import '../../assets/ListItemSelect.css';const i = "_label_1gmbm_1", r = "_input_1gmbm_32", b = "_icon_1gmbm_37", t = {
6
+ label: i,
7
+ input: r,
8
+ icon: b
9
+ }, f = ({ size: s, checked: e = !1, onChange: c, className: n }) => /* @__PURE__ */ l("label", { className: m(t.label, n), "data-size": s, children: [
10
+ /* @__PURE__ */ o("input", { type: "checkbox", checked: e, onChange: c, className: t.input, tabIndex: -1 }),
11
+ /* @__PURE__ */ o(a, { hover: !0, checked: e, className: t.icon })
12
12
  ] });
13
13
  export {
14
14
  f as ListItemSelect
@@ -1,4 +1,5 @@
1
1
  export * from './ListItemBase';
2
+ export * from './ListItemLink';
2
3
  export * from './ListItemHeader';
3
4
  export * from './ListItemLabel';
4
5
  export * from './ListItemMedia';
@@ -1,20 +1,22 @@
1
1
  import { ListItemBase as o } from "./ListItemBase.js";
2
- import { ListItemHeader as m } from "./ListItemHeader.js";
3
- import { ListItemLabel as i } from "./ListItemLabel.js";
4
- import { ListItemMedia as f } from "./ListItemMedia.js";
5
- import { ListItemControls as x } from "./ListItemControls.js";
6
- import { ListItemSelect as a } from "./ListItemSelect.js";
7
- import { ListItem as d } from "./ListItem.js";
8
- import { ListBase as b } from "./ListBase.js";
9
- import { List as n } from "./List.js";
2
+ import { ListItemLink as m } from "./ListItemLink.js";
3
+ import { ListItemHeader as i } from "./ListItemHeader.js";
4
+ import { ListItemLabel as f } from "./ListItemLabel.js";
5
+ import { ListItemMedia as x } from "./ListItemMedia.js";
6
+ import { ListItemControls as a } from "./ListItemControls.js";
7
+ import { ListItemSelect as d } from "./ListItemSelect.js";
8
+ import { ListItem as B } from "./ListItem.js";
9
+ import { ListBase as c } from "./ListBase.js";
10
+ import { List as C } from "./List.js";
10
11
  export {
11
- n as List,
12
- b as ListBase,
13
- d as ListItem,
12
+ C as List,
13
+ c as ListBase,
14
+ B as ListItem,
14
15
  o as ListItemBase,
15
- x as ListItemControls,
16
- m as ListItemHeader,
17
- i as ListItemLabel,
18
- f as ListItemMedia,
19
- a as ListItemSelect
16
+ a as ListItemControls,
17
+ i as ListItemHeader,
18
+ f as ListItemLabel,
19
+ m as ListItemLink,
20
+ x as ListItemMedia,
21
+ d as ListItemSelect
20
22
  };
@@ -3,4 +3,4 @@ import { ResourceListItemProps } from './ResourceListItem';
3
3
  export interface ResourceListProps extends Omit<ListProps, 'items'> {
4
4
  items: ResourceListItemProps[];
5
5
  }
6
- export declare const ResourceList: ({ items, size, ...props }: ResourceListProps) => import("react/jsx-runtime").JSX.Element;
6
+ export declare const ResourceList: ({ items, defaultItemSize, ...props }: ResourceListProps) => import("react/jsx-runtime").JSX.Element;
@@ -6,7 +6,7 @@ import "../Autocomplete/AutocompleteBase.js";
6
6
  import "../RootProvider/RootProvider.js";
7
7
  import { ResourceListItem as p } from "./ResourceListItem.js";
8
8
  import { ListBase as s } from "../List/ListBase.js";
9
- const x = ({ items: o, size: t = "md", ...m }) => /* @__PURE__ */ e(s, { ...m, children: o.map((r) => /* @__PURE__ */ i(p, { ...r, key: r.id, size: t })) });
9
+ const x = ({ items: o, defaultItemSize: t = "md", ...m }) => /* @__PURE__ */ e(s, { ...m, children: o.map((r) => /* @__PURE__ */ i(p, { ...r, key: r.id, size: t })) });
10
10
  export {
11
11
  x as ResourceList
12
12
  };
@@ -245,10 +245,10 @@ const o = [
245
245
  args: {
246
246
  spacing: "md",
247
247
  items: r,
248
- size: "md"
248
+ defaultItemSize: "md"
249
249
  },
250
250
  argTypes: {
251
- size: {
251
+ defaultItemSize: {
252
252
  options: ["sm", "md", "lg"],
253
253
  control: {
254
254
  type: "inline-radio"
@@ -1,4 +1,4 @@
1
- import { jsxs as l, jsx as n } from "react/jsx-runtime";
1
+ import { jsxs as l, jsx as o } from "react/jsx-runtime";
2
2
  import { useState as s } from "react";
3
3
  import { Searchbar as i } from "./Searchbar.js";
4
4
  const S = {
@@ -66,22 +66,22 @@ const S = {
66
66
  }
67
67
  }
68
68
  }, C = (d) => {
69
- const [t, o] = s(""), [p, a] = s(!1), c = (e) => {
70
- o(e.target.value);
69
+ const [t, n] = s(""), [p, a] = s(!1), c = (e) => {
70
+ n(e.target.value);
71
71
  }, u = () => {
72
- o("");
72
+ n("");
73
73
  }, g = [
74
74
  {
75
75
  id: "inbox",
76
76
  label: t ? () => /* @__PURE__ */ l("span", { children: [
77
- /* @__PURE__ */ n("mark", { children: t }),
77
+ /* @__PURE__ */ o("mark", { children: t }),
78
78
  " i innboksen"
79
79
  ] }) : "Alt i innboksen"
80
80
  },
81
81
  {
82
82
  id: "global",
83
83
  label: t ? () => /* @__PURE__ */ l("span", { children: [
84
- /* @__PURE__ */ n("mark", { children: t }),
84
+ /* @__PURE__ */ o("mark", { children: t }),
85
85
  " i hele Altinn"
86
86
  ] }) : "Alt i hele Altinn"
87
87
  }
@@ -91,10 +91,12 @@ const S = {
91
91
  type: "scope"
92
92
  })), r = t ? [
93
93
  {
94
+ type: "dialog",
94
95
  href: "#skatt-2024",
95
96
  title: "Skattemelding 2024"
96
97
  },
97
98
  {
99
+ type: "dialog",
98
100
  href: "#skatt-2024",
99
101
  title: "Skattemelding 2025"
100
102
  }
@@ -105,7 +107,7 @@ const S = {
105
107
  })) : [], m = [...g, ...r].map((e) => ({
106
108
  ...e,
107
109
  onClick: () => {
108
- console.log(JSON.stringify(e));
110
+ console.info("clicked", JSON.stringify(e));
109
111
  }
110
112
  })), h = {
111
113
  groups: {
@@ -115,7 +117,7 @@ const S = {
115
117
  },
116
118
  items: m
117
119
  };
118
- return /* @__PURE__ */ n(
120
+ return /* @__PURE__ */ o(
119
121
  i,
120
122
  {
121
123
  ...d,
@@ -9,7 +9,7 @@ import { BookmarksListItem as g } from "./Bookmarks/BookmarksListItem.js";
9
9
  import { QueryItem as I, QueryLabel as D } from "./Bookmarks/QueryLabel.js";
10
10
  import { BookmarksSection as d } from "./Bookmarks/BookmarksSection.js";
11
11
  import { ButtonBase as S } from "./Button/ButtonBase.js";
12
- import { ButtonLabel as A } from "./Button/ButtonLabel.js";
12
+ import { ButtonLabel as y } from "./Button/ButtonLabel.js";
13
13
  import { ButtonIcon as T } from "./Button/ButtonIcon.js";
14
14
  import { Button as h } from "./Button/Button.js";
15
15
  import { ComboButton as P } from "./Button/ComboButton.js";
@@ -24,54 +24,54 @@ import { DialogMetadata as V } from "./Dialog/DialogMetadata.js";
24
24
  import { DialogByline as X } from "./Dialog/DialogByline.js";
25
25
  import { DialogActions as Z } from "./Dialog/DialogActions.js";
26
26
  import { DialogActivityLog as $ } from "./Dialog/DialogActivityLog.js";
27
- import { DialogBorder as ro } from "./Dialog/DialogBorder.js";
28
- import { DialogContent as to } from "./Dialog/DialogContent.js";
29
- import { DialogSection as po } from "./Dialog/DialogSection.js";
30
- import { DialogSeenBy as xo } from "./Dialog/DialogSeenBy.js";
31
- import { DialogSelect as io } from "./Dialog/DialogSelect.js";
32
- import { DialogStatus as so, DialogStatusEnum as lo } from "./Dialog/DialogStatus.js";
33
- import { DialogHeading as uo } from "./Dialog/DialogHeading.js";
34
- import { DialogTouchedBy as go } from "./Dialog/DialogTouchedBy.js";
35
- import { DialogLabel as Io } from "./Dialog/DialogLabel.js";
36
- import { DialogAttachments as Mo } from "./Dialog/DialogAttachments.js";
37
- import { DialogTransmissions as So } from "./Dialog/DialogTransmissions.js";
38
- import { DialogTimeline as Ao } from "./Dialog/DialogTimeline.js";
39
- import { DialogTimelineItem as To } from "./Dialog/DialogTimelineItem.js";
40
- import { DialogHistory as ho } from "./Dialog/DialogHistory.js";
41
- import { DialogHistoryItem as Po } from "./Dialog/DialogHistoryItem.js";
42
- import { DropdownBase as vo } from "./Dropdown/DropdownBase.js";
43
- import { Backdrop as Ro } from "./Dropdown/Backdrop.js";
44
- import { DrawerBase as Oo } from "./Dropdown/DrawerBase.js";
45
- import { DrawerHeader as Eo } from "./Dropdown/DrawerHeader.js";
46
- import { DrawerFooter as jo } from "./Dropdown/DrawerFooter.js";
47
- import { DrawerButton as zo } from "./Dropdown/DrawerButton.js";
48
- import { DrawerBody as Ko } from "./Dropdown/DrawerBody.js";
49
- import { DrawerOrDropdown as Vo } from "./Dropdown/DrawerOrDropdown.js";
50
- import { Footer as Xo } from "./Footer/Footer.js";
51
- import { AccountMenu as Zo } from "./GlobalMenu/AccountMenu.js";
52
- import { GlobalMenu as $o } from "./GlobalMenu/GlobalMenu.js";
53
- import { AccountButton as rr } from "./GlobalMenu/AccountButton.js";
54
- import { BackButton as tr } from "./GlobalMenu/BackButton.js";
55
- import { LogoutButton as pr } from "./GlobalMenu/LogoutButton.js";
56
- import { Header as xr } from "./Header/Header.js";
57
- import { HeaderBase as ir } from "./Header/HeaderBase.js";
58
- import { HeaderLogo as sr } from "./Header/HeaderLogo.js";
59
- import { HeaderButton as cr } from "./Header/HeaderButton.js";
60
- import { Icon as Lr } from "./Icon/Icon.js";
61
- import { SvgIcon as Br } from "./Icon/SvgIcon.js";
62
- import { CheckboxIcon as Dr } from "./Icon/CheckboxIcon.js";
63
- import { RadioIcon as dr } from "./Icon/RadioIcon.js";
64
- import { ProgressIcon as Sr } from "./Icon/ProgressIcon.js";
65
- import { iconsMap as Ar } from "./Icon/iconsMap.js";
66
- import { LayoutBase as Tr } from "./Layout/LayoutBase.js";
67
- import { LayoutBody as hr } from "./Layout/LayoutBody.js";
68
- import { LayoutContent as Pr } from "./Layout/LayoutContent.js";
69
- import { LayoutSidebar as vr } from "./Layout/LayoutSidebar.js";
70
- import { Layout as Rr } from "./Layout/Layout.js";
71
- import { ActionHeader as Or } from "./LayoutAction/ActionHeader.js";
72
- import { ActionFooter as Er } from "./LayoutAction/ActionFooter.js";
73
- import { ActionMenu as jr } from "./LayoutAction/ActionMenu.js";
74
- import { ListItemBase as zr } from "./List/ListItemBase.js";
27
+ import { DialogContent as ro } from "./Dialog/DialogContent.js";
28
+ import { DialogSection as to } from "./Dialog/DialogSection.js";
29
+ import { DialogSeenBy as po } from "./Dialog/DialogSeenBy.js";
30
+ import { DialogSelect as xo } from "./Dialog/DialogSelect.js";
31
+ import { DialogStatus as io, DialogStatusEnum as no } from "./Dialog/DialogStatus.js";
32
+ import { DialogHeading as lo } from "./Dialog/DialogHeading.js";
33
+ import { DialogTouchedBy as uo } from "./Dialog/DialogTouchedBy.js";
34
+ import { DialogLabel as go } from "./Dialog/DialogLabel.js";
35
+ import { DialogAttachments as Io } from "./Dialog/DialogAttachments.js";
36
+ import { DialogTransmissions as Mo } from "./Dialog/DialogTransmissions.js";
37
+ import { DialogTimeline as So } from "./Dialog/DialogTimeline.js";
38
+ import { DialogTimelineItem as yo } from "./Dialog/DialogTimelineItem.js";
39
+ import { DialogHistory as To } from "./Dialog/DialogHistory.js";
40
+ import { DialogHistoryItem as ho } from "./Dialog/DialogHistoryItem.js";
41
+ import { DropdownBase as Po } from "./Dropdown/DropdownBase.js";
42
+ import { Backdrop as vo } from "./Dropdown/Backdrop.js";
43
+ import { DrawerBase as Ro } from "./Dropdown/DrawerBase.js";
44
+ import { DrawerHeader as Oo } from "./Dropdown/DrawerHeader.js";
45
+ import { DrawerFooter as Eo } from "./Dropdown/DrawerFooter.js";
46
+ import { DrawerButton as jo } from "./Dropdown/DrawerButton.js";
47
+ import { DrawerBody as zo } from "./Dropdown/DrawerBody.js";
48
+ import { DrawerOrDropdown as Ko } from "./Dropdown/DrawerOrDropdown.js";
49
+ import { Footer as Vo } from "./Footer/Footer.js";
50
+ import { AccountMenu as Xo } from "./GlobalMenu/AccountMenu.js";
51
+ import { GlobalMenu as Zo } from "./GlobalMenu/GlobalMenu.js";
52
+ import { AccountButton as $o } from "./GlobalMenu/AccountButton.js";
53
+ import { BackButton as rr } from "./GlobalMenu/BackButton.js";
54
+ import { LogoutButton as tr } from "./GlobalMenu/LogoutButton.js";
55
+ import { Header as pr } from "./Header/Header.js";
56
+ import { HeaderBase as xr } from "./Header/HeaderBase.js";
57
+ import { HeaderLogo as ir } from "./Header/HeaderLogo.js";
58
+ import { HeaderButton as sr } from "./Header/HeaderButton.js";
59
+ import { Icon as cr } from "./Icon/Icon.js";
60
+ import { SvgIcon as Lr } from "./Icon/SvgIcon.js";
61
+ import { CheckboxIcon as Br } from "./Icon/CheckboxIcon.js";
62
+ import { RadioIcon as Dr } from "./Icon/RadioIcon.js";
63
+ import { ProgressIcon as dr } from "./Icon/ProgressIcon.js";
64
+ import { iconsMap as Sr } from "./Icon/iconsMap.js";
65
+ import { LayoutBase as yr } from "./Layout/LayoutBase.js";
66
+ import { LayoutBody as Tr } from "./Layout/LayoutBody.js";
67
+ import { LayoutContent as hr } from "./Layout/LayoutContent.js";
68
+ import { LayoutSidebar as Pr } from "./Layout/LayoutSidebar.js";
69
+ import { Layout as vr } from "./Layout/Layout.js";
70
+ import { ActionHeader as Rr } from "./LayoutAction/ActionHeader.js";
71
+ import { ActionFooter as Or } from "./LayoutAction/ActionFooter.js";
72
+ import { ActionMenu as Er } from "./LayoutAction/ActionMenu.js";
73
+ import { ListItemBase as jr } from "./List/ListItemBase.js";
74
+ import { ListItemLink as zr } from "./List/ListItemLink.js";
75
75
  import { ListItemHeader as Kr } from "./List/ListItemHeader.js";
76
76
  import { ListItemLabel as Vr } from "./List/ListItemLabel.js";
77
77
  import { ListItemMedia as Xr } from "./List/ListItemMedia.js";
@@ -89,7 +89,7 @@ import { MenuOption as Be } from "./Menu/MenuOption.js";
89
89
  import { MenuSearch as De } from "./Menu/MenuSearch.js";
90
90
  import { MenuHeader as de } from "./Menu/MenuHeader.js";
91
91
  import { MenuItems as Se } from "./Menu/MenuItems.js";
92
- import { MenuBase as Ae, MenuList as ke, MenuListItem as Te } from "./Menu/MenuBase.js";
92
+ import { MenuBase as ye, MenuList as Ae, MenuListItem as Te } from "./Menu/MenuBase.js";
93
93
  import { Menu as he } from "./Menu/Menu.js";
94
94
  import { MetaBase as Pe } from "./Meta/MetaBase.js";
95
95
  import { MetaList as ve, MetaListItem as Fe } from "./Meta/MetaList.js";
@@ -114,7 +114,7 @@ import { ToolbarButton as Bt } from "./Toolbar/ToolbarButton.js";
114
114
  import { Toolbar as Dt } from "./Toolbar/Toolbar.js";
115
115
  import { ToolbarSearch as dt } from "./Toolbar/ToolbarSearch.js";
116
116
  import { ToolbarFilter as St } from "./Toolbar/ToolbarFilter.js";
117
- import { ToolbarDaterange as At } from "./Toolbar/ToolbarDaterange.js";
117
+ import { ToolbarDaterange as yt } from "./Toolbar/ToolbarDaterange.js";
118
118
  import { PageBase as Tt } from "./Page/PageBase.js";
119
119
  import { PageNav as ht } from "./Page/PageNav.js";
120
120
  import { PageHeader as Pt } from "./Page/PageHeader.js";
@@ -135,19 +135,19 @@ export {
135
135
  $t as AccessAreaListItem,
136
136
  tm as AccessPackageList,
137
137
  rm as AccessPackageListItem,
138
- rr as AccountButton,
139
- Zo as AccountMenu,
140
- Er as ActionFooter,
141
- Or as ActionHeader,
142
- jr as ActionMenu,
138
+ $o as AccountButton,
139
+ Xo as AccountMenu,
140
+ Or as ActionFooter,
141
+ Rr as ActionHeader,
142
+ Er as ActionMenu,
143
143
  Ot as Article,
144
144
  e as AttachmentLink,
145
145
  m as AttachmentList,
146
146
  a as Autocomplete,
147
147
  f as Avatar,
148
148
  n as AvatarGroup,
149
- tr as BackButton,
150
- Ro as Backdrop,
149
+ rr as BackButton,
150
+ vo as Backdrop,
151
151
  l as Badge,
152
152
  u as BookmarksList,
153
153
  g as BookmarksListItem,
@@ -155,68 +155,68 @@ export {
155
155
  h as Button,
156
156
  S as ButtonBase,
157
157
  T as ButtonIcon,
158
- A as ButtonLabel,
158
+ y as ButtonLabel,
159
159
  R as Byline,
160
- Dr as CheckboxIcon,
160
+ Br as CheckboxIcon,
161
161
  P as ComboButton,
162
162
  O as ContextMenu,
163
163
  E as Dialog,
164
164
  Z as DialogActions,
165
165
  $ as DialogActivityLog,
166
- Mo as DialogAttachments,
167
- ro as DialogBorder,
166
+ Io as DialogAttachments,
168
167
  X as DialogByline,
169
- to as DialogContent,
170
- uo as DialogHeading,
171
- ho as DialogHistory,
172
- Po as DialogHistoryItem,
173
- Io as DialogLabel,
168
+ ro as DialogContent,
169
+ lo as DialogHeading,
170
+ To as DialogHistory,
171
+ ho as DialogHistoryItem,
172
+ go as DialogLabel,
174
173
  j as DialogList,
175
174
  z as DialogListGroup,
176
175
  K as DialogListItem,
177
176
  V as DialogMetadata,
178
- po as DialogSection,
179
- xo as DialogSeenBy,
180
- io as DialogSelect,
181
- so as DialogStatus,
182
- lo as DialogStatusEnum,
183
- Ao as DialogTimeline,
184
- To as DialogTimelineItem,
185
- go as DialogTouchedBy,
186
- So as DialogTransmissions,
187
- Oo as DrawerBase,
188
- Ko as DrawerBody,
189
- zo as DrawerButton,
190
- jo as DrawerFooter,
191
- Eo as DrawerHeader,
192
- Vo as DrawerOrDropdown,
193
- vo as DropdownBase,
194
- Xo as Footer,
195
- $o as GlobalMenu,
196
- xr as Header,
197
- ir as HeaderBase,
198
- cr as HeaderButton,
199
- sr as HeaderLogo,
177
+ to as DialogSection,
178
+ po as DialogSeenBy,
179
+ xo as DialogSelect,
180
+ io as DialogStatus,
181
+ no as DialogStatusEnum,
182
+ So as DialogTimeline,
183
+ yo as DialogTimelineItem,
184
+ uo as DialogTouchedBy,
185
+ Mo as DialogTransmissions,
186
+ Ro as DrawerBase,
187
+ zo as DrawerBody,
188
+ jo as DrawerButton,
189
+ Eo as DrawerFooter,
190
+ Oo as DrawerHeader,
191
+ Ko as DrawerOrDropdown,
192
+ Po as DropdownBase,
193
+ Vo as Footer,
194
+ Zo as GlobalMenu,
195
+ pr as Header,
196
+ xr as HeaderBase,
197
+ sr as HeaderButton,
198
+ ir as HeaderLogo,
200
199
  Vt as Heading,
201
- Lr as Icon,
200
+ cr as Icon,
202
201
  v as IconButton,
203
- Rr as Layout,
204
- Tr as LayoutBase,
205
- hr as LayoutBody,
206
- Pr as LayoutContent,
207
- vr as LayoutSidebar,
202
+ vr as Layout,
203
+ yr as LayoutBase,
204
+ Tr as LayoutBody,
205
+ hr as LayoutContent,
206
+ Pr as LayoutSidebar,
208
207
  pe as List,
209
208
  te as ListBase,
210
209
  re as ListItem,
211
- zr as ListItemBase,
210
+ jr as ListItemBase,
212
211
  Zr as ListItemControls,
213
212
  Kr as ListItemHeader,
214
213
  Vr as ListItemLabel,
214
+ zr as ListItemLink,
215
215
  Xr as ListItemMedia,
216
216
  $r as ListItemSelect,
217
- pr as LogoutButton,
217
+ tr as LogoutButton,
218
218
  he as Menu,
219
- Ae as MenuBase,
219
+ ye as MenuBase,
220
220
  de as MenuHeader,
221
221
  Le as MenuInputField,
222
222
  ce as MenuItem,
@@ -224,7 +224,7 @@ export {
224
224
  ie as MenuItemLabel,
225
225
  se as MenuItemMedia,
226
226
  Se as MenuItems,
227
- ke as MenuList,
227
+ Ae as MenuList,
228
228
  Te as MenuListItem,
229
229
  Be as MenuOption,
230
230
  De as MenuSearch,
@@ -240,10 +240,10 @@ export {
240
240
  Tt as PageBase,
241
241
  Pt as PageHeader,
242
242
  ht as PageNav,
243
- Sr as ProgressIcon,
243
+ dr as ProgressIcon,
244
244
  I as QueryItem,
245
245
  D as QueryLabel,
246
- dr as RadioIcon,
246
+ Dr as RadioIcon,
247
247
  Xt as ResourceList,
248
248
  Zt as ResourceListItem,
249
249
  We as RootProvider,
@@ -256,19 +256,19 @@ export {
256
256
  rt as SnackbarBase,
257
257
  pt as SnackbarLabel,
258
258
  tt as SnackbarMedia,
259
- Br as SvgIcon,
259
+ Lr as SvgIcon,
260
260
  ct as Timeline,
261
261
  it as TimelineBase,
262
262
  st as TimelineSection,
263
263
  Dt as Toolbar,
264
264
  Lt as ToolbarBase,
265
265
  Bt as ToolbarButton,
266
- At as ToolbarDaterange,
266
+ yt as ToolbarDaterange,
267
267
  St as ToolbarFilter,
268
268
  dt as ToolbarSearch,
269
269
  jt as TransmissionItem,
270
270
  zt as TransmissionList,
271
271
  Kt as Typography,
272
- Ar as iconsMap,
272
+ Sr as iconsMap,
273
273
  Xe as useRootContext
274
274
  };