@worknice/whiteboard 0.68.1 → 0.70.0

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 (55) hide show
  1. package/dist/controls/Action.stories.d.ts +2 -0
  2. package/dist/controls/Button.d.ts +3 -1
  3. package/dist/controls/Button.js +10 -2
  4. package/dist/controls/Button.stories.d.ts +3 -1
  5. package/dist/controls/ButtonLink.js +6 -0
  6. package/dist/controls/Disclosure.d.ts +1 -1
  7. package/dist/controls/Disclosure.js +2 -1
  8. package/dist/controls/Disclosure.stories.d.ts +3 -1
  9. package/dist/controls/MenuButton.d.ts +4 -1
  10. package/dist/controls/MenuButton.js +12 -3
  11. package/dist/controls/MenuButton.stories.d.ts +2 -1
  12. package/dist/hud/NavOrgLogo.d.ts +8 -0
  13. package/dist/hud/NavOrgLogo.js +45 -0
  14. package/dist/hud/NavOrgLogo.module.js +7 -0
  15. package/dist/hud/{NavTitle_module.css → NavOrgLogo_module.css} +8 -3
  16. package/dist/icons/components/CalendarPlus.d.ts +5 -0
  17. package/dist/icons/components/CalendarPlus.js +14 -0
  18. package/dist/icons/components/FileCirclePlus.d.ts +5 -0
  19. package/dist/icons/components/FileCirclePlus.js +14 -0
  20. package/dist/icons/components/FileImport.d.ts +5 -0
  21. package/dist/icons/components/FileImport.js +14 -0
  22. package/dist/icons/components/index.d.ts +3 -0
  23. package/dist/icons/components/index.js +7 -1
  24. package/dist/icons/svgs/CalendarPlus.js +2 -0
  25. package/dist/icons/svgs/FileCirclePlus.js +2 -0
  26. package/dist/icons/svgs/FileImport.js +2 -0
  27. package/dist/layouts/FullLayout.d.ts +3 -4
  28. package/dist/layouts/FullLayout.js +37 -38
  29. package/dist/layouts/FullLayout.module.js +4 -4
  30. package/dist/layouts/FullLayout_module.css +95 -71
  31. package/dist/presentation/Container_module.css +3 -3
  32. package/dist/presentation/Header.js +1 -0
  33. package/dist/presentation/Header.module.js +1 -0
  34. package/dist/presentation/Header_module.css +24 -3
  35. package/dist/presentation/PageHeader.d.ts +14 -0
  36. package/dist/presentation/PageHeader.js +36 -0
  37. package/dist/presentation/PageHeader.module.js +7 -0
  38. package/dist/presentation/PageHeader_module.css +19 -0
  39. package/dist/presentation/RichList/RichList.d.ts +6 -2
  40. package/dist/presentation/RichList/RichList.js +59 -9
  41. package/dist/presentation/RichList/RichListRow.js +2 -1
  42. package/dist/presentation/RichList/RichListSkeleton.js +16 -8
  43. package/dist/presentation/RichList/RichListSkeleton.module.js +2 -1
  44. package/dist/presentation/RichList/RichListSkeleton_module.css +9 -4
  45. package/dist/presentation/RichList/helpers.d.ts +4 -0
  46. package/dist/presentation/RichList/helpers.js +7 -4
  47. package/dist/presentation/RichList/types.d.ts +7 -0
  48. package/dist/shared.css +0 -9
  49. package/dist/static/svg/CalendarPlus.svg +1 -0
  50. package/dist/static/svg/FileCirclePlus.svg +1 -0
  51. package/dist/static/svg/FileImport.svg +1 -0
  52. package/package.json +2 -2
  53. package/dist/hud/NavTitle.d.ts +0 -8
  54. package/dist/hud/NavTitle.js +0 -43
  55. package/dist/hud/NavTitle.module.js +0 -6
@@ -11,9 +11,11 @@ declare const meta: {
11
11
  } & ({
12
12
  children: import("react").ReactNode;
13
13
  icon?: import("react").ReactNode;
14
+ iconRight?: import("react").ReactNode;
14
15
  } | {
15
16
  children?: import("react").ReactNode;
16
17
  icon: import("react").ReactNode;
18
+ iconRight?: import("react").ReactNode;
17
19
  })) & {
18
20
  onClick: (event: React.MouseEvent) => void | Promise<void>;
19
21
  }) => import("react/jsx-runtime").JSX.Element;
@@ -15,13 +15,15 @@ type Props = {
15
15
  } & ({
16
16
  children: ReactNode;
17
17
  icon?: ReactNode;
18
+ iconRight?: ReactNode;
18
19
  } | {
19
20
  children?: ReactNode;
20
21
  /** The icon to render, use an instance of the Icon component */
21
22
  icon: ReactNode;
23
+ iconRight?: ReactNode;
22
24
  });
23
25
  /**
24
26
  * Main button component, using onClick to trigger the action. For links, use ButtonLink.
25
27
  */
26
- declare const Button: ({ children, disabled, icon, id, onClick, size, type, title, tooltip, }: Props) => import("react/jsx-runtime").JSX.Element;
28
+ declare const Button: ({ children, disabled, icon, iconRight, id, onClick, size, type, title, tooltip, }: Props) => import("react/jsx-runtime").JSX.Element;
27
29
  export default Button;
@@ -5,7 +5,7 @@ import * as __WEBPACK_EXTERNAL_MODULE_react__ from "react";
5
5
  import * as __WEBPACK_EXTERNAL_MODULE__presentation_Tooltip_js_95312a0d__ from "../presentation/Tooltip.js";
6
6
  import * as __WEBPACK_EXTERNAL_MODULE__utils_TrackingContext_js_139012da__ from "../utils/TrackingContext.js";
7
7
  import * as __WEBPACK_EXTERNAL_MODULE__Button_module_js_2e345e34__ from "./Button.module.js";
8
- const ButtonElement = ({ children, disabled, icon, id, onClick, size, type, title, trackingContext })=>/*#__PURE__*/ (0, __WEBPACK_EXTERNAL_MODULE_react_jsx_runtime_225474f2__.jsxs)("button", {
8
+ const ButtonElement = ({ children, disabled, icon, iconRight, id, onClick, size, type, title, trackingContext })=>/*#__PURE__*/ (0, __WEBPACK_EXTERNAL_MODULE_react_jsx_runtime_225474f2__.jsxs)("button", {
9
9
  className: (0, __WEBPACK_EXTERNAL_MODULE_clsx__["default"])(__WEBPACK_EXTERNAL_MODULE__Button_module_js_2e345e34__["default"].button, {
10
10
  [__WEBPACK_EXTERNAL_MODULE__Button_module_js_2e345e34__["default"].primary]: "submit" === type || "primary" === type,
11
11
  [__WEBPACK_EXTERNAL_MODULE__Button_module_js_2e345e34__["default"].danger]: "danger" === type,
@@ -23,20 +23,27 @@ const ButtonElement = ({ children, disabled, icon, id, onClick, size, type, titl
23
23
  type: "submit" === type ? "submit" : "button",
24
24
  children: [
25
25
  icon ? /*#__PURE__*/ (0, __WEBPACK_EXTERNAL_MODULE_react_jsx_runtime_225474f2__.jsx)("span", {
26
+ "data-button-part": "icon",
26
27
  children: icon
27
28
  }) : null,
28
29
  children ? /*#__PURE__*/ (0, __WEBPACK_EXTERNAL_MODULE_react_jsx_runtime_225474f2__.jsx)("span", {
30
+ "data-button-part": "label",
29
31
  children: children
32
+ }) : null,
33
+ iconRight ? /*#__PURE__*/ (0, __WEBPACK_EXTERNAL_MODULE_react_jsx_runtime_225474f2__.jsx)("span", {
34
+ "data-button-part": "icon-right",
35
+ children: iconRight
30
36
  }) : null
31
37
  ]
32
38
  });
33
- const Button = ({ children, disabled, icon, id, onClick, size, type = "primary", title, tooltip })=>{
39
+ const Button = ({ children, disabled, icon, iconRight, id, onClick, size, type = "primary", title, tooltip })=>{
34
40
  const trackingContext = (0, __WEBPACK_EXTERNAL_MODULE_react__.useContext)(__WEBPACK_EXTERNAL_MODULE__utils_TrackingContext_js_139012da__["default"]);
35
41
  return tooltip ? /*#__PURE__*/ (0, __WEBPACK_EXTERNAL_MODULE_react_jsx_runtime_225474f2__.jsx)(__WEBPACK_EXTERNAL_MODULE__presentation_Tooltip_js_95312a0d__["default"], {
36
42
  content: tooltip,
37
43
  children: /*#__PURE__*/ (0, __WEBPACK_EXTERNAL_MODULE_react_jsx_runtime_225474f2__.jsx)(ButtonElement, {
38
44
  disabled: disabled,
39
45
  icon: icon,
46
+ iconRight: iconRight,
40
47
  id: id,
41
48
  onClick: onClick,
42
49
  size: size,
@@ -49,6 +56,7 @@ const Button = ({ children, disabled, icon, id, onClick, size, type = "primary",
49
56
  }) : /*#__PURE__*/ (0, __WEBPACK_EXTERNAL_MODULE_react_jsx_runtime_225474f2__.jsx)(ButtonElement, {
50
57
  disabled: disabled,
51
58
  icon: icon,
59
+ iconRight: iconRight,
52
60
  id: id,
53
61
  onClick: onClick,
54
62
  size: size,
@@ -1,6 +1,6 @@
1
1
  import type { StoryObj } from "@storybook/nextjs-vite";
2
2
  declare const meta: {
3
- component: ({ children, disabled, icon, id, onClick, size, type, title, tooltip, }: {
3
+ component: ({ children, disabled, icon, iconRight, id, onClick, size, type, title, tooltip, }: {
4
4
  disabled?: boolean;
5
5
  id?: string;
6
6
  onClick?: (event: React.MouseEvent) => void;
@@ -11,9 +11,11 @@ declare const meta: {
11
11
  } & ({
12
12
  children: import("react").ReactNode;
13
13
  icon?: import("react").ReactNode;
14
+ iconRight?: import("react").ReactNode;
14
15
  } | {
15
16
  children?: import("react").ReactNode;
16
17
  icon: import("react").ReactNode;
18
+ iconRight?: import("react").ReactNode;
17
19
  })) => import("react/jsx-runtime").JSX.Element;
18
20
  argTypes: {
19
21
  id: {
@@ -13,12 +13,15 @@ const ButtonLink = ({ children, disabled, download, external, href, icon, iconRi
13
13
  className: (0, __WEBPACK_EXTERNAL_MODULE_clsx__["default"])(__WEBPACK_EXTERNAL_MODULE__ButtonLink_module_js_d4c014da__["default"].button, __WEBPACK_EXTERNAL_MODULE__ButtonLink_module_js_d4c014da__["default"].disabled, __WEBPACK_EXTERNAL_MODULE__ButtonLink_module_js_d4c014da__["default"].small),
14
14
  children: [
15
15
  icon ? /*#__PURE__*/ (0, __WEBPACK_EXTERNAL_MODULE_react_jsx_runtime_225474f2__.jsx)("span", {
16
+ "data-button-part": "icon",
16
17
  children: icon
17
18
  }) : null,
18
19
  children ? /*#__PURE__*/ (0, __WEBPACK_EXTERNAL_MODULE_react_jsx_runtime_225474f2__.jsx)("span", {
20
+ "data-button-part": "label",
19
21
  children: children
20
22
  }) : null,
21
23
  iconRight ? /*#__PURE__*/ (0, __WEBPACK_EXTERNAL_MODULE_react_jsx_runtime_225474f2__.jsx)("span", {
24
+ "data-button-part": "icon-right",
22
25
  children: iconRight
23
26
  }) : null
24
27
  ]
@@ -38,12 +41,15 @@ const ButtonLink = ({ children, disabled, download, external, href, icon, iconRi
38
41
  target: external ? "_blank" : "_self",
39
42
  children: [
40
43
  icon ? /*#__PURE__*/ (0, __WEBPACK_EXTERNAL_MODULE_react_jsx_runtime_225474f2__.jsx)("span", {
44
+ "data-button-part": "icon",
41
45
  children: icon
42
46
  }) : null,
43
47
  children ? /*#__PURE__*/ (0, __WEBPACK_EXTERNAL_MODULE_react_jsx_runtime_225474f2__.jsx)("span", {
48
+ "data-button-part": "label",
44
49
  children: children
45
50
  }) : null,
46
51
  iconRight ? /*#__PURE__*/ (0, __WEBPACK_EXTERNAL_MODULE_react_jsx_runtime_225474f2__.jsx)("span", {
52
+ "data-button-part": "icon-right",
47
53
  children: iconRight
48
54
  }) : null
49
55
  ]
@@ -7,5 +7,5 @@ type Props = ComponentProps<typeof Button> & {
7
7
  * A disclosure component that renders a component when clicked.
8
8
  * It is intended to be used with a modal or a confirmation modal.
9
9
  */
10
- declare const Disclosure: ({ render, children, disabled, icon, id, size, title, tooltip, type, }: Omit<Props, "onClick">) => import("react/jsx-runtime").JSX.Element;
10
+ declare const Disclosure: ({ render, children, disabled, icon, iconRight, id, size, title, tooltip, type, }: Omit<Props, "onClick">) => import("react/jsx-runtime").JSX.Element;
11
11
  export default Disclosure;
@@ -1,7 +1,7 @@
1
1
  import * as __WEBPACK_EXTERNAL_MODULE_react_jsx_runtime_225474f2__ from "react/jsx-runtime";
2
2
  import * as __WEBPACK_EXTERNAL_MODULE_react__ from "react";
3
3
  import * as __WEBPACK_EXTERNAL_MODULE__Button_js_17bdd71d__ from "./Button.js";
4
- const Disclosure = ({ render, children, disabled, icon, id, size, title, tooltip, type = "secondary" })=>{
4
+ const Disclosure = ({ render, children, disabled, icon, iconRight, id, size, title, tooltip, type = "secondary" })=>{
5
5
  const [open, setOpen] = (0, __WEBPACK_EXTERNAL_MODULE_react__.useState)(false);
6
6
  return /*#__PURE__*/ (0, __WEBPACK_EXTERNAL_MODULE_react_jsx_runtime_225474f2__.jsxs)(__WEBPACK_EXTERNAL_MODULE_react_jsx_runtime_225474f2__.Fragment, {
7
7
  children: [
@@ -12,6 +12,7 @@ const Disclosure = ({ render, children, disabled, icon, id, size, title, tooltip
12
12
  title: title,
13
13
  disabled: disabled,
14
14
  icon: icon,
15
+ iconRight: iconRight,
15
16
  id: id,
16
17
  onClick: ()=>{
17
18
  setOpen((current)=>!current);
@@ -1,6 +1,6 @@
1
1
  import type { StoryObj } from "@storybook/nextjs-vite";
2
2
  declare const meta: {
3
- component: ({ render, children, disabled, icon, id, size, title, tooltip, type, }: Omit<({
3
+ component: ({ render, children, disabled, icon, iconRight, id, size, title, tooltip, type, }: Omit<({
4
4
  disabled?: boolean;
5
5
  id?: string;
6
6
  onClick?: (event: React.MouseEvent) => void;
@@ -11,9 +11,11 @@ declare const meta: {
11
11
  } & ({
12
12
  children: import("react").ReactNode;
13
13
  icon?: import("react").ReactNode;
14
+ iconRight?: import("react").ReactNode;
14
15
  } | {
15
16
  children?: import("react").ReactNode;
16
17
  icon: import("react").ReactNode;
18
+ iconRight?: import("react").ReactNode;
17
19
  })) & {
18
20
  render: (onClose: () => void) => import("react").ReactNode;
19
21
  }, "onClick">) => import("react/jsx-runtime").JSX.Element;
@@ -1,3 +1,4 @@
1
+ import { type Placement } from "@floating-ui/react";
1
2
  import { type ReactNode } from "react";
2
3
  type Option = {
3
4
  id: string;
@@ -14,6 +15,7 @@ type Option = {
14
15
  } | {
15
16
  href: string;
16
17
  external?: boolean;
18
+ download?: string | boolean;
17
19
  type: "link";
18
20
  });
19
21
  type Props = {
@@ -27,6 +29,7 @@ type Props = {
27
29
  displaySearch?: boolean;
28
30
  iconRight?: ReactNode;
29
31
  fullWidth?: boolean;
32
+ placement?: Placement;
30
33
  } & ({
31
34
  children: ReactNode;
32
35
  icon?: ReactNode;
@@ -45,6 +48,6 @@ type Props = {
45
48
  options: Array<Option | null>;
46
49
  }>;
47
50
  });
48
- declare const MenuButton: ({ autoFocus, ariaLabel, disabled, id, size, type, options, optionGroups, searchPlaceholder, children, icon, iconRight, displaySearch, fullWidth, }: Props) => import("react/jsx-runtime").JSX.Element;
51
+ declare const MenuButton: ({ autoFocus, ariaLabel, disabled, id, size, type, options, optionGroups, searchPlaceholder, children, icon, iconRight, displaySearch, fullWidth, placement, }: Props) => import("react/jsx-runtime").JSX.Element;
49
52
  export default MenuButton;
50
53
  export type { Option as MenuButtonOption };
@@ -16,7 +16,7 @@ import * as __WEBPACK_EXTERNAL_MODULE__utils_search_js_89d5ae26__ from "../utils
16
16
  import * as __WEBPACK_EXTERNAL_MODULE__utils_useNextContext_js_47529181__ from "../utils/useNextContext.js";
17
17
  import * as __WEBPACK_EXTERNAL_MODULE__Button_js_17bdd71d__ from "./Button.js";
18
18
  import * as __WEBPACK_EXTERNAL_MODULE__MenuButton_module_js_872b1a55__ from "./MenuButton.module.js";
19
- const MenuButton = ({ autoFocus = false, ariaLabel, disabled = false, id, size = "normal", type = "secondary", options, optionGroups, searchPlaceholder, children, icon, iconRight, displaySearch = false, fullWidth = false })=>{
19
+ const MenuButton = ({ autoFocus = false, ariaLabel, disabled = false, id, size = "normal", type = "secondary", options, optionGroups, searchPlaceholder, children, icon, iconRight, displaySearch = false, fullWidth = false, placement = "bottom-start" })=>{
20
20
  const listboxId = (0, __WEBPACK_EXTERNAL_MODULE_react__.useId)();
21
21
  const generatedButtonId = (0, __WEBPACK_EXTERNAL_MODULE_react__.useId)();
22
22
  const buttonId = id ?? generatedButtonId;
@@ -53,7 +53,7 @@ const MenuButton = ({ autoFocus = false, ariaLabel, disabled = false, id, size =
53
53
  setSearchTerm("");
54
54
  },
55
55
  whileElementsMounted: __WEBPACK_EXTERNAL_MODULE__floating_ui_react_3ddd630a__.autoUpdate,
56
- placement: "bottom-start",
56
+ placement,
57
57
  middleware: [
58
58
  (0, __WEBPACK_EXTERNAL_MODULE__floating_ui_react_3ddd630a__.flip)(),
59
59
  (0, __WEBPACK_EXTERNAL_MODULE__floating_ui_react_3ddd630a__.offset)(4),
@@ -153,7 +153,13 @@ const MenuButton = ({ autoFocus = false, ariaLabel, disabled = false, id, size =
153
153
  optionsRef.current[index] = node;
154
154
  }
155
155
  }),
156
- children: option.external ? /*#__PURE__*/ (0, __WEBPACK_EXTERNAL_MODULE_react_jsx_runtime_225474f2__.jsx)("a", {
156
+ children: void 0 !== option.download ? /*#__PURE__*/ (0, __WEBPACK_EXTERNAL_MODULE_react_jsx_runtime_225474f2__.jsx)("a", {
157
+ href: option.href,
158
+ download: option.download,
159
+ "aria-disabled": option.disabled,
160
+ className: __WEBPACK_EXTERNAL_MODULE__MenuButton_module_js_872b1a55__["default"].listItemLink,
161
+ children: optionContent
162
+ }) : option.external ? /*#__PURE__*/ (0, __WEBPACK_EXTERNAL_MODULE_react_jsx_runtime_225474f2__.jsx)("a", {
157
163
  href: option.href,
158
164
  "aria-disabled": option.disabled,
159
165
  target: "_blank",
@@ -268,12 +274,15 @@ const MenuButton = ({ autoFocus = false, ariaLabel, disabled = false, id, size =
268
274
  loading ? /*#__PURE__*/ (0, __WEBPACK_EXTERNAL_MODULE_react_jsx_runtime_225474f2__.jsx)(__WEBPACK_EXTERNAL_MODULE__icons_components_Loading_js_dc1ebb83__["default"], {
269
275
  animate: true
270
276
  }) : icon ? /*#__PURE__*/ (0, __WEBPACK_EXTERNAL_MODULE_react_jsx_runtime_225474f2__.jsx)("span", {
277
+ "data-button-part": "icon",
271
278
  children: icon
272
279
  }) : null,
273
280
  children ? /*#__PURE__*/ (0, __WEBPACK_EXTERNAL_MODULE_react_jsx_runtime_225474f2__.jsx)("span", {
281
+ "data-button-part": "label",
274
282
  children: children
275
283
  }) : null,
276
284
  iconRight ? /*#__PURE__*/ (0, __WEBPACK_EXTERNAL_MODULE_react_jsx_runtime_225474f2__.jsx)("span", {
285
+ "data-button-part": "icon-right",
277
286
  children: iconRight
278
287
  }) : null
279
288
  ]
@@ -1,6 +1,6 @@
1
1
  import type { StoryObj } from "@storybook/nextjs-vite";
2
2
  declare const meta: {
3
- component: ({ autoFocus, ariaLabel, disabled, id, size, type, options, optionGroups, searchPlaceholder, children, icon, iconRight, displaySearch, fullWidth, }: {
3
+ component: ({ autoFocus, ariaLabel, disabled, id, size, type, options, optionGroups, searchPlaceholder, children, icon, iconRight, displaySearch, fullWidth, placement, }: {
4
4
  autoFocus?: boolean;
5
5
  ariaLabel?: string;
6
6
  disabled?: boolean;
@@ -11,6 +11,7 @@ declare const meta: {
11
11
  displaySearch?: boolean;
12
12
  iconRight?: import("react").ReactNode;
13
13
  fullWidth?: boolean;
14
+ placement?: import("@floating-ui/react-dom").Placement;
14
15
  } & (({
15
16
  children: import("react").ReactNode;
16
17
  icon?: import("react").ReactNode;
@@ -0,0 +1,8 @@
1
+ type Props = {
2
+ demo: boolean;
3
+ href: string;
4
+ logo: string;
5
+ title: string;
6
+ };
7
+ declare const NavOrgLogo: ({ demo, href, logo, title }: Props) => import("react/jsx-runtime").JSX.Element;
8
+ export default NavOrgLogo;
@@ -0,0 +1,45 @@
1
+ "use client";
2
+ import * as __WEBPACK_EXTERNAL_MODULE_react_jsx_runtime_225474f2__ from "react/jsx-runtime";
3
+ import * as __WEBPACK_EXTERNAL_MODULE_clsx__ from "clsx";
4
+ import * as __WEBPACK_EXTERNAL_MODULE__worknice_whiteboard_presentation_Badge_506c1dd3__ from "@worknice/whiteboard/presentation/Badge";
5
+ import * as __WEBPACK_EXTERNAL_MODULE__worknice_whiteboard_presentation_PlainText_c60690e6__ from "@worknice/whiteboard/presentation/PlainText";
6
+ import * as __WEBPACK_EXTERNAL_MODULE__utils_useNextContext_js_47529181__ from "../utils/useNextContext.js";
7
+ import * as __WEBPACK_EXTERNAL_MODULE__NavOrgLogo_module_js_c2323e5a__ from "./NavOrgLogo.module.js";
8
+ const NavOrgLogo = ({ demo, href, logo, title })=>{
9
+ const { Link } = (0, __WEBPACK_EXTERNAL_MODULE__utils_useNextContext_js_47529181__["default"])();
10
+ return /*#__PURE__*/ (0, __WEBPACK_EXTERNAL_MODULE_react_jsx_runtime_225474f2__.jsxs)(Link, {
11
+ href: href,
12
+ className: (0, __WEBPACK_EXTERNAL_MODULE_clsx__["default"])(__WEBPACK_EXTERNAL_MODULE__NavOrgLogo_module_js_c2323e5a__["default"].container, __WEBPACK_EXTERNAL_MODULE__NavOrgLogo_module_js_c2323e5a__["default"].link),
13
+ title: title,
14
+ children: [
15
+ /*#__PURE__*/ (0, __WEBPACK_EXTERNAL_MODULE_react_jsx_runtime_225474f2__.jsx)("div", {
16
+ className: __WEBPACK_EXTERNAL_MODULE__NavOrgLogo_module_js_c2323e5a__["default"].logo,
17
+ children: /*#__PURE__*/ (0, __WEBPACK_EXTERNAL_MODULE_react_jsx_runtime_225474f2__.jsx)("img", {
18
+ src: logo,
19
+ alt: ""
20
+ })
21
+ }),
22
+ /*#__PURE__*/ (0, __WEBPACK_EXTERNAL_MODULE_react_jsx_runtime_225474f2__.jsx)("div", {
23
+ style: {
24
+ overflow: "hidden",
25
+ display: "grid"
26
+ },
27
+ children: /*#__PURE__*/ (0, __WEBPACK_EXTERNAL_MODULE_react_jsx_runtime_225474f2__.jsx)(__WEBPACK_EXTERNAL_MODULE__worknice_whiteboard_presentation_PlainText_c60690e6__["default"], {
28
+ font: "regular-bold",
29
+ tone: "default",
30
+ truncate: true,
31
+ children: title
32
+ })
33
+ }),
34
+ demo ? /*#__PURE__*/ (0, __WEBPACK_EXTERNAL_MODULE_react_jsx_runtime_225474f2__.jsx)("div", {
35
+ className: __WEBPACK_EXTERNAL_MODULE__NavOrgLogo_module_js_c2323e5a__["default"].demo,
36
+ children: /*#__PURE__*/ (0, __WEBPACK_EXTERNAL_MODULE_react_jsx_runtime_225474f2__.jsx)(__WEBPACK_EXTERNAL_MODULE__worknice_whiteboard_presentation_Badge_506c1dd3__["default"], {
37
+ color: "grey",
38
+ children: "Demo"
39
+ })
40
+ }) : null
41
+ ]
42
+ });
43
+ };
44
+ const NavOrgLogo_rslib_entry_ = NavOrgLogo;
45
+ export { NavOrgLogo_rslib_entry_ as default };
@@ -0,0 +1,7 @@
1
+ import "./NavOrgLogo_module.css";
2
+ const NavOrgLogo_module_rslib_entry_ = {
3
+ container: "container-M4y0wy",
4
+ link: "link-s4hzH2",
5
+ logo: "logo-nGmSzb"
6
+ };
7
+ export { NavOrgLogo_module_rslib_entry_ as default };
@@ -1,4 +1,4 @@
1
- .container-tfjjA7 {
1
+ .container-M4y0wy {
2
2
  --logo-size: 48px;
3
3
  --image-size: 48px;
4
4
  border-radius: 11px;
@@ -11,7 +11,12 @@
11
11
  display: grid;
12
12
  }
13
13
 
14
- .logo-s11ueh {
14
+ .link-s4hzH2 {
15
+ color: inherit;
16
+ text-decoration: none;
17
+ }
18
+
19
+ .logo-nGmSzb {
15
20
  height: var(--logo-size);
16
21
  width: var(--logo-size);
17
22
  background: #fff;
@@ -22,7 +27,7 @@
22
27
  box-shadow: 0 0 0 .5px #3c3c435c;
23
28
  }
24
29
 
25
- .logo-s11ueh img {
30
+ .logo-nGmSzb img {
26
31
  height: var(--image-size);
27
32
  max-width: none;
28
33
  width: var(--image-size);
@@ -0,0 +1,5 @@
1
+ declare const _default: {
2
+ ({ size, tone, animate }: import("../types").IconProps): import("react/jsx-runtime").JSX.Element;
3
+ displayName: string;
4
+ };
5
+ export default _default;
@@ -0,0 +1,14 @@
1
+ import * as __WEBPACK_EXTERNAL_MODULE_react_jsx_runtime_225474f2__ from "react/jsx-runtime";
2
+ import * as __WEBPACK_EXTERNAL_MODULE__createIcon_js_4dc54f83__ from "../createIcon.js";
3
+ const CalendarPlusSvg = (props)=>/*#__PURE__*/ (0, __WEBPACK_EXTERNAL_MODULE_react_jsx_runtime_225474f2__.jsx)("svg", {
4
+ xmlns: "http://www.w3.org/2000/svg",
5
+ viewBox: "0 0 640 640",
6
+ "aria-hidden": "true",
7
+ fill: "currentColor",
8
+ ...props,
9
+ children: /*#__PURE__*/ (0, __WEBPACK_EXTERNAL_MODULE_react_jsx_runtime_225474f2__.jsx)("path", {
10
+ d: "M216 64C229.3 64 240 74.7 240 88L240 128L400 128L400 88C400 74.7 410.7 64 424 64C437.3 64 448 74.7 448 88L448 128L480 128C515.3 128 544 156.7 544 192L544 480C544 515.3 515.3 544 480 544L160 544C124.7 544 96 515.3 96 480L96 192C96 156.7 124.7 128 160 128L192 128L192 88C192 74.7 202.7 64 216 64zM216 176L160 176C151.2 176 144 183.2 144 192L144 480C144 488.8 151.2 496 160 496L480 496C488.8 496 496 488.8 496 480L496 192C496 183.2 488.8 176 480 176L216 176zM320 240C333.3 240 344 250.7 344 264L344 312L392 312C405.3 312 416 322.7 416 336C416 349.3 405.3 360 392 360L344 360L344 408C344 421.3 333.3 432 320 432C306.7 432 296 421.3 296 408L296 360L248 360C234.7 360 224 349.3 224 336C224 322.7 234.7 312 248 312L296 312L296 264C296 250.7 306.7 240 320 240z"
11
+ })
12
+ });
13
+ const CalendarPlus_rslib_entry_ = (0, __WEBPACK_EXTERNAL_MODULE__createIcon_js_4dc54f83__.createIcon)(CalendarPlusSvg);
14
+ export { CalendarPlus_rslib_entry_ as default };
@@ -0,0 +1,5 @@
1
+ declare const _default: {
2
+ ({ size, tone, animate }: import("../types").IconProps): import("react/jsx-runtime").JSX.Element;
3
+ displayName: string;
4
+ };
5
+ export default _default;
@@ -0,0 +1,14 @@
1
+ import * as __WEBPACK_EXTERNAL_MODULE_react_jsx_runtime_225474f2__ from "react/jsx-runtime";
2
+ import * as __WEBPACK_EXTERNAL_MODULE__createIcon_js_4dc54f83__ from "../createIcon.js";
3
+ const FileCirclePlusSvg = (props)=>/*#__PURE__*/ (0, __WEBPACK_EXTERNAL_MODULE_react_jsx_runtime_225474f2__.jsx)("svg", {
4
+ xmlns: "http://www.w3.org/2000/svg",
5
+ viewBox: "0 0 640 640",
6
+ "aria-hidden": "true",
7
+ fill: "currentColor",
8
+ ...props,
9
+ children: /*#__PURE__*/ (0, __WEBPACK_EXTERNAL_MODULE_react_jsx_runtime_225474f2__.jsx)("path", {
10
+ d: "M240 112L128 112C119.2 112 112 119.2 112 128L112 512C112 520.8 119.2 528 128 528L282.9 528C289 545.3 297.5 561.4 308 576L128 576C92.7 576 64 547.3 64 512L64 128C64 92.7 92.7 64 128 64L261.5 64C278.5 64 294.8 70.7 306.8 82.7L429.3 205.3C441.3 217.3 448 233.6 448 250.6L448 272.1L312 272.1C272.2 272.1 240 239.9 240 200.1L240 112.1zM380.1 224L288 131.9L288 200C288 213.3 298.7 224 312 224L380.1 224zM464 320C543.5 320 608 384.5 608 464C608 543.5 543.5 608 464 608C384.5 608 320 543.5 320 464C320 384.5 384.5 320 464 320zM480 400C480 391.2 472.8 384 464 384C455.2 384 448 391.2 448 400L448 448L400 448C391.2 448 384 455.2 384 464C384 472.8 391.2 480 400 480L448 480L448 528C448 536.8 455.2 544 464 544C472.8 544 480 536.8 480 528L480 480L528 480C536.8 480 544 472.8 544 464C544 455.2 536.8 448 528 448L480 448L480 400z"
11
+ })
12
+ });
13
+ const FileCirclePlus_rslib_entry_ = (0, __WEBPACK_EXTERNAL_MODULE__createIcon_js_4dc54f83__.createIcon)(FileCirclePlusSvg);
14
+ export { FileCirclePlus_rslib_entry_ as default };
@@ -0,0 +1,5 @@
1
+ declare const _default: {
2
+ ({ size, tone, animate }: import("../types").IconProps): import("react/jsx-runtime").JSX.Element;
3
+ displayName: string;
4
+ };
5
+ export default _default;
@@ -0,0 +1,14 @@
1
+ import * as __WEBPACK_EXTERNAL_MODULE_react_jsx_runtime_225474f2__ from "react/jsx-runtime";
2
+ import * as __WEBPACK_EXTERNAL_MODULE__createIcon_js_4dc54f83__ from "../createIcon.js";
3
+ const FileImportSvg = (props)=>/*#__PURE__*/ (0, __WEBPACK_EXTERNAL_MODULE_react_jsx_runtime_225474f2__.jsx)("svg", {
4
+ xmlns: "http://www.w3.org/2000/svg",
5
+ viewBox: "0 0 640 640",
6
+ "aria-hidden": "true",
7
+ fill: "currentColor",
8
+ ...props,
9
+ children: /*#__PURE__*/ (0, __WEBPACK_EXTERNAL_MODULE_react_jsx_runtime_225474f2__.jsx)("path", {
10
+ d: "M192 112L304 112L304 200C304 239.8 336.2 272 376 272L464 272L464 512C464 520.8 456.8 528 448 528L192 528C183.2 528 176 520.8 176 512L176 464L128 464L128 512C128 547.3 156.7 576 192 576L448 576C483.3 576 512 547.3 512 512L512 250.5C512 233.5 505.3 217.2 493.3 205.2L370.7 82.7C358.7 70.7 342.5 64 325.5 64L192 64C156.7 64 128 92.7 128 128L128 320L176 320L176 128C176 119.2 183.2 112 192 112zM352 131.9L444.1 224L376 224C362.7 224 352 213.3 352 200L352 131.9zM64 392C64 405.3 74.7 416 88 416L310.1 416L279.1 447C269.7 456.4 269.7 471.6 279.1 480.9C288.5 490.2 303.7 490.3 313 480.9L385 408.9C394.4 399.5 394.4 384.3 385 375L313 303C303.6 293.6 288.4 293.6 279.1 303C269.8 312.4 269.7 327.6 279.1 336.9L310.1 367.9L88 367.9C74.7 367.9 64 378.6 64 391.9z"
11
+ })
12
+ });
13
+ const FileImport_rslib_entry_ = (0, __WEBPACK_EXTERNAL_MODULE__createIcon_js_4dc54f83__.createIcon)(FileImportSvg);
14
+ export { FileImport_rslib_entry_ as default };
@@ -17,6 +17,7 @@ export { default as Bolt } from "./Bolt";
17
17
  export { default as BookOpenLines } from "./BookOpenLines";
18
18
  export { default as Bug } from "./Bug";
19
19
  export { default as Calendar } from "./Calendar";
20
+ export { default as CalendarPlus } from "./CalendarPlus";
20
21
  export { default as Cancel } from "./Cancel";
21
22
  export { default as CaratDown } from "./CaratDown";
22
23
  export { default as CaratLeft } from "./CaratLeft";
@@ -42,7 +43,9 @@ export { default as Email } from "./Email";
42
43
  export { default as EmergencyContact } from "./EmergencyContact";
43
44
  export { default as Events } from "./Events";
44
45
  export { default as External } from "./External";
46
+ export { default as FileCirclePlus } from "./FileCirclePlus";
45
47
  export { default as FileExport } from "./FileExport";
48
+ export { default as FileImport } from "./FileImport";
46
49
  export { default as Filter } from "./Filter";
47
50
  export { default as FilterList } from "./FilterList";
48
51
  export { default as FitView } from "./FitView";
@@ -17,6 +17,7 @@ import * as __WEBPACK_EXTERNAL_MODULE__Bolt_js_bc9530b4__ from "./Bolt.js";
17
17
  import * as __WEBPACK_EXTERNAL_MODULE__BookOpenLines_js_26283204__ from "./BookOpenLines.js";
18
18
  import * as __WEBPACK_EXTERNAL_MODULE__Bug_js_35fe86cc__ from "./Bug.js";
19
19
  import * as __WEBPACK_EXTERNAL_MODULE__Calendar_js_88f7807d__ from "./Calendar.js";
20
+ import * as __WEBPACK_EXTERNAL_MODULE__CalendarPlus_js_36447c7d__ from "./CalendarPlus.js";
20
21
  import * as __WEBPACK_EXTERNAL_MODULE__Cancel_js_46715474__ from "./Cancel.js";
21
22
  import * as __WEBPACK_EXTERNAL_MODULE__CaratDown_js_a65ce237__ from "./CaratDown.js";
22
23
  import * as __WEBPACK_EXTERNAL_MODULE__CaratLeft_js_ee0c1462__ from "./CaratLeft.js";
@@ -42,7 +43,9 @@ import * as __WEBPACK_EXTERNAL_MODULE__Email_js_312f1c70__ from "./Email.js";
42
43
  import * as __WEBPACK_EXTERNAL_MODULE__EmergencyContact_js_8107fe89__ from "./EmergencyContact.js";
43
44
  import * as __WEBPACK_EXTERNAL_MODULE__Events_js_f62d9e1f__ from "./Events.js";
44
45
  import * as __WEBPACK_EXTERNAL_MODULE__External_js_f57b3137__ from "./External.js";
46
+ import * as __WEBPACK_EXTERNAL_MODULE__FileCirclePlus_js_8a998d41__ from "./FileCirclePlus.js";
45
47
  import * as __WEBPACK_EXTERNAL_MODULE__FileExport_js_b58980f9__ from "./FileExport.js";
48
+ import * as __WEBPACK_EXTERNAL_MODULE__FileImport_js_364e619c__ from "./FileImport.js";
46
49
  import * as __WEBPACK_EXTERNAL_MODULE__Filter_js_962e7a68__ from "./Filter.js";
47
50
  import * as __WEBPACK_EXTERNAL_MODULE__FilterList_js_14d71870__ from "./FilterList.js";
48
51
  import * as __WEBPACK_EXTERNAL_MODULE__FitView_js_91c9e961__ from "./FitView.js";
@@ -128,6 +131,7 @@ var __webpack_exports__Bolt = __WEBPACK_EXTERNAL_MODULE__Bolt_js_bc9530b4__["def
128
131
  var __webpack_exports__BookOpenLines = __WEBPACK_EXTERNAL_MODULE__BookOpenLines_js_26283204__["default"];
129
132
  var __webpack_exports__Bug = __WEBPACK_EXTERNAL_MODULE__Bug_js_35fe86cc__["default"];
130
133
  var __webpack_exports__Calendar = __WEBPACK_EXTERNAL_MODULE__Calendar_js_88f7807d__["default"];
134
+ var __webpack_exports__CalendarPlus = __WEBPACK_EXTERNAL_MODULE__CalendarPlus_js_36447c7d__["default"];
131
135
  var __webpack_exports__Cancel = __WEBPACK_EXTERNAL_MODULE__Cancel_js_46715474__["default"];
132
136
  var __webpack_exports__CaratDown = __WEBPACK_EXTERNAL_MODULE__CaratDown_js_a65ce237__["default"];
133
137
  var __webpack_exports__CaratLeft = __WEBPACK_EXTERNAL_MODULE__CaratLeft_js_ee0c1462__["default"];
@@ -153,7 +157,9 @@ var __webpack_exports__Email = __WEBPACK_EXTERNAL_MODULE__Email_js_312f1c70__["d
153
157
  var __webpack_exports__EmergencyContact = __WEBPACK_EXTERNAL_MODULE__EmergencyContact_js_8107fe89__["default"];
154
158
  var __webpack_exports__Events = __WEBPACK_EXTERNAL_MODULE__Events_js_f62d9e1f__["default"];
155
159
  var __webpack_exports__External = __WEBPACK_EXTERNAL_MODULE__External_js_f57b3137__["default"];
160
+ var __webpack_exports__FileCirclePlus = __WEBPACK_EXTERNAL_MODULE__FileCirclePlus_js_8a998d41__["default"];
156
161
  var __webpack_exports__FileExport = __WEBPACK_EXTERNAL_MODULE__FileExport_js_b58980f9__["default"];
162
+ var __webpack_exports__FileImport = __WEBPACK_EXTERNAL_MODULE__FileImport_js_364e619c__["default"];
157
163
  var __webpack_exports__Filter = __WEBPACK_EXTERNAL_MODULE__Filter_js_962e7a68__["default"];
158
164
  var __webpack_exports__FilterList = __WEBPACK_EXTERNAL_MODULE__FilterList_js_14d71870__["default"];
159
165
  var __webpack_exports__FitView = __WEBPACK_EXTERNAL_MODULE__FitView_js_91c9e961__["default"];
@@ -220,4 +226,4 @@ var __webpack_exports__UserPlus = __WEBPACK_EXTERNAL_MODULE__UserPlus_js_796202e
220
226
  var __webpack_exports__Visible = __WEBPACK_EXTERNAL_MODULE__Visible_js_aa1c6acc__["default"];
221
227
  var __webpack_exports__Warning = __WEBPACK_EXTERNAL_MODULE__Warning_js_d0de15e9__["default"];
222
228
  var __webpack_exports__Workflows = __WEBPACK_EXTERNAL_MODULE__Workflows_js_35639a49__["default"];
223
- export { __webpack_exports__Approval as Approval, __webpack_exports__Apps as Apps, __webpack_exports__Archive as Archive, __webpack_exports__ArrowLeft as ArrowLeft, __webpack_exports__ArrowRight as ArrowRight, __webpack_exports__ArrowTurnLeftUp as ArrowTurnLeftUp, __webpack_exports__ArrowsCompress as ArrowsCompress, __webpack_exports__ArrowsExpand as ArrowsExpand, __webpack_exports__ArrowsUpDown as ArrowsUpDown, __webpack_exports__Assign as Assign, __webpack_exports__AssignmentCertificate as AssignmentCertificate, __webpack_exports__AssignmentDocument as AssignmentDocument, __webpack_exports__AssignmentForm as AssignmentForm, __webpack_exports__AssignmentQuestionnaire as AssignmentQuestionnaire, __webpack_exports__BankAccount as BankAccount, __webpack_exports__Bolt as Bolt, __webpack_exports__BookOpenLines as BookOpenLines, __webpack_exports__Bug as Bug, __webpack_exports__Calendar as Calendar, __webpack_exports__Cancel as Cancel, __webpack_exports__CaratDown as CaratDown, __webpack_exports__CaratLeft as CaratLeft, __webpack_exports__CaratRight as CaratRight, __webpack_exports__CaratUp as CaratUp, __webpack_exports__CheckMark as CheckMark, __webpack_exports__ChevronDown as ChevronDown, __webpack_exports__ChevronLeft as ChevronLeft, __webpack_exports__ChevronRight as ChevronRight, __webpack_exports__ChevronUp as ChevronUp, __webpack_exports__Clock as Clock, __webpack_exports__Close as Close, __webpack_exports__Columns as Columns, __webpack_exports__Comment as Comment, __webpack_exports__Copy as Copy, __webpack_exports__Dash as Dash, __webpack_exports__Delete as Delete, __webpack_exports__Directory as Directory, __webpack_exports__DocumentProcessingFailed as DocumentProcessingFailed, __webpack_exports__Download as Download, __webpack_exports__Edit as Edit, __webpack_exports__Email as Email, __webpack_exports__EmergencyContact as EmergencyContact, __webpack_exports__Events as Events, __webpack_exports__External as External, __webpack_exports__FileExport as FileExport, __webpack_exports__Filter as Filter, __webpack_exports__FilterList as FilterList, __webpack_exports__FitView as FitView, __webpack_exports__Globe as Globe, __webpack_exports__GripLines as GripLines, __webpack_exports__Help as Help, __webpack_exports__Hidden as Hidden, __webpack_exports__History as History, __webpack_exports__Inbox as Inbox, __webpack_exports__Info as Info, __webpack_exports__Insights as Insights, __webpack_exports__Job as Job, __webpack_exports__Leave as Leave, __webpack_exports__Lightbulb as Lightbulb, __webpack_exports__Loading as Loading, __webpack_exports__LocationCheck as LocationCheck, __webpack_exports__Logout as Logout, __webpack_exports__Messages as Messages, __webpack_exports__Microsoft as Microsoft, __webpack_exports__Minus as Minus, __webpack_exports__Newspaper as Newspaper, __webpack_exports__Overflow as Overflow, __webpack_exports__Paperwork as Paperwork, __webpack_exports__PaperworkAssigned as PaperworkAssigned, __webpack_exports__PaperworkDraft as PaperworkDraft, __webpack_exports__PaperworkExpired as PaperworkExpired, __webpack_exports__PaperworkExpiringSoon as PaperworkExpiringSoon, __webpack_exports__PaperworkMissing as PaperworkMissing, __webpack_exports__PaperworkProcessed as PaperworkProcessed, __webpack_exports__PaperworkSubmitted as PaperworkSubmitted, __webpack_exports__People as People, __webpack_exports__Phone as Phone, __webpack_exports__Plus as Plus, __webpack_exports__Positions as Positions, __webpack_exports__Profile as Profile, __webpack_exports__ProfileFemale as ProfileFemale, __webpack_exports__ProfileMale as ProfileMale, __webpack_exports__QuestionMark as QuestionMark, __webpack_exports__Remuneration as Remuneration, __webpack_exports__Reschedule as Reschedule, __webpack_exports__Restore as Restore, __webpack_exports__Review as Review, __webpack_exports__Schedule as Schedule, __webpack_exports__Search as Search, __webpack_exports__Settings as Settings, __webpack_exports__Shield as Shield, __webpack_exports__Sidebar as Sidebar, __webpack_exports__Sliders as Sliders, __webpack_exports__SortAsc as SortAsc, __webpack_exports__SortDefault as SortDefault, __webpack_exports__SortDes as SortDes, __webpack_exports__StepsComplete as StepsComplete, __webpack_exports__StepsCurrent as StepsCurrent, __webpack_exports__StepsIncomplete as StepsIncomplete, __webpack_exports__Submit as Submit, __webpack_exports__Success as Success, __webpack_exports__SuperFund as SuperFund, __webpack_exports__Sync as Sync, __webpack_exports__Table as Table, __webpack_exports__Task as Task, __webpack_exports__Tax as Tax, __webpack_exports__Tenure as Tenure, __webpack_exports__UserPlus as UserPlus, __webpack_exports__Visible as Visible, __webpack_exports__Warning as Warning, __webpack_exports__Workflows as Workflows };
229
+ export { __webpack_exports__Approval as Approval, __webpack_exports__Apps as Apps, __webpack_exports__Archive as Archive, __webpack_exports__ArrowLeft as ArrowLeft, __webpack_exports__ArrowRight as ArrowRight, __webpack_exports__ArrowTurnLeftUp as ArrowTurnLeftUp, __webpack_exports__ArrowsCompress as ArrowsCompress, __webpack_exports__ArrowsExpand as ArrowsExpand, __webpack_exports__ArrowsUpDown as ArrowsUpDown, __webpack_exports__Assign as Assign, __webpack_exports__AssignmentCertificate as AssignmentCertificate, __webpack_exports__AssignmentDocument as AssignmentDocument, __webpack_exports__AssignmentForm as AssignmentForm, __webpack_exports__AssignmentQuestionnaire as AssignmentQuestionnaire, __webpack_exports__BankAccount as BankAccount, __webpack_exports__Bolt as Bolt, __webpack_exports__BookOpenLines as BookOpenLines, __webpack_exports__Bug as Bug, __webpack_exports__Calendar as Calendar, __webpack_exports__CalendarPlus as CalendarPlus, __webpack_exports__Cancel as Cancel, __webpack_exports__CaratDown as CaratDown, __webpack_exports__CaratLeft as CaratLeft, __webpack_exports__CaratRight as CaratRight, __webpack_exports__CaratUp as CaratUp, __webpack_exports__CheckMark as CheckMark, __webpack_exports__ChevronDown as ChevronDown, __webpack_exports__ChevronLeft as ChevronLeft, __webpack_exports__ChevronRight as ChevronRight, __webpack_exports__ChevronUp as ChevronUp, __webpack_exports__Clock as Clock, __webpack_exports__Close as Close, __webpack_exports__Columns as Columns, __webpack_exports__Comment as Comment, __webpack_exports__Copy as Copy, __webpack_exports__Dash as Dash, __webpack_exports__Delete as Delete, __webpack_exports__Directory as Directory, __webpack_exports__DocumentProcessingFailed as DocumentProcessingFailed, __webpack_exports__Download as Download, __webpack_exports__Edit as Edit, __webpack_exports__Email as Email, __webpack_exports__EmergencyContact as EmergencyContact, __webpack_exports__Events as Events, __webpack_exports__External as External, __webpack_exports__FileCirclePlus as FileCirclePlus, __webpack_exports__FileExport as FileExport, __webpack_exports__FileImport as FileImport, __webpack_exports__Filter as Filter, __webpack_exports__FilterList as FilterList, __webpack_exports__FitView as FitView, __webpack_exports__Globe as Globe, __webpack_exports__GripLines as GripLines, __webpack_exports__Help as Help, __webpack_exports__Hidden as Hidden, __webpack_exports__History as History, __webpack_exports__Inbox as Inbox, __webpack_exports__Info as Info, __webpack_exports__Insights as Insights, __webpack_exports__Job as Job, __webpack_exports__Leave as Leave, __webpack_exports__Lightbulb as Lightbulb, __webpack_exports__Loading as Loading, __webpack_exports__LocationCheck as LocationCheck, __webpack_exports__Logout as Logout, __webpack_exports__Messages as Messages, __webpack_exports__Microsoft as Microsoft, __webpack_exports__Minus as Minus, __webpack_exports__Newspaper as Newspaper, __webpack_exports__Overflow as Overflow, __webpack_exports__Paperwork as Paperwork, __webpack_exports__PaperworkAssigned as PaperworkAssigned, __webpack_exports__PaperworkDraft as PaperworkDraft, __webpack_exports__PaperworkExpired as PaperworkExpired, __webpack_exports__PaperworkExpiringSoon as PaperworkExpiringSoon, __webpack_exports__PaperworkMissing as PaperworkMissing, __webpack_exports__PaperworkProcessed as PaperworkProcessed, __webpack_exports__PaperworkSubmitted as PaperworkSubmitted, __webpack_exports__People as People, __webpack_exports__Phone as Phone, __webpack_exports__Plus as Plus, __webpack_exports__Positions as Positions, __webpack_exports__Profile as Profile, __webpack_exports__ProfileFemale as ProfileFemale, __webpack_exports__ProfileMale as ProfileMale, __webpack_exports__QuestionMark as QuestionMark, __webpack_exports__Remuneration as Remuneration, __webpack_exports__Reschedule as Reschedule, __webpack_exports__Restore as Restore, __webpack_exports__Review as Review, __webpack_exports__Schedule as Schedule, __webpack_exports__Search as Search, __webpack_exports__Settings as Settings, __webpack_exports__Shield as Shield, __webpack_exports__Sidebar as Sidebar, __webpack_exports__Sliders as Sliders, __webpack_exports__SortAsc as SortAsc, __webpack_exports__SortDefault as SortDefault, __webpack_exports__SortDes as SortDes, __webpack_exports__StepsComplete as StepsComplete, __webpack_exports__StepsCurrent as StepsCurrent, __webpack_exports__StepsIncomplete as StepsIncomplete, __webpack_exports__Submit as Submit, __webpack_exports__Success as Success, __webpack_exports__SuperFund as SuperFund, __webpack_exports__Sync as Sync, __webpack_exports__Table as Table, __webpack_exports__Task as Task, __webpack_exports__Tax as Tax, __webpack_exports__Tenure as Tenure, __webpack_exports__UserPlus as UserPlus, __webpack_exports__Visible as Visible, __webpack_exports__Warning as Warning, __webpack_exports__Workflows as Workflows };
@@ -0,0 +1,2 @@
1
+ import CalendarPlus_rslib_entry_namespaceObject from "../../static/svg/CalendarPlus.svg";
2
+ export { CalendarPlus_rslib_entry_namespaceObject as default };
@@ -0,0 +1,2 @@
1
+ import FileCirclePlus_rslib_entry_namespaceObject from "../../static/svg/FileCirclePlus.svg";
2
+ export { FileCirclePlus_rslib_entry_namespaceObject as default };
@@ -0,0 +1,2 @@
1
+ import FileImport_rslib_entry_namespaceObject from "../../static/svg/FileImport.svg";
2
+ export { FileImport_rslib_entry_namespaceObject as default };
@@ -1,21 +1,20 @@
1
1
  import { type Dispatch, type ReactNode, type SetStateAction } from "react";
2
2
  type Props = {
3
3
  aside?: ReactNode;
4
- backLink?: ReactNode;
5
4
  navigation?: ReactNode;
6
5
  children: ReactNode;
7
6
  header?: ReactNode;
8
7
  mainNavChildren?: ReactNode;
9
8
  menuState: "open" | "closed" | undefined;
10
- navTitle?: ReactNode;
11
9
  setMenuState: Dispatch<SetStateAction<"open" | "closed" | undefined>>;
12
10
  summary?: ReactNode;
13
- toolbarChildren?: ReactNode;
11
+ navToolbarStart?: ReactNode;
12
+ navFooter?: ReactNode;
14
13
  padding?: "default" | "none";
15
14
  asidePosition?: {
16
15
  desktop: "asideLast" | "asideFirst";
17
16
  mobile: "asideLast" | "asideFirst";
18
17
  };
19
18
  };
20
- declare const FullLayout: ({ aside, asidePosition, backLink, navigation, children, header, mainNavChildren, menuState, navTitle, setMenuState, summary, toolbarChildren, padding, }: Props) => import("react/jsx-runtime").JSX.Element;
19
+ declare const FullLayout: ({ aside, asidePosition, navigation, children, header, mainNavChildren, menuState, setMenuState, summary, navToolbarStart, navFooter, padding, }: Props) => import("react/jsx-runtime").JSX.Element;
21
20
  export default FullLayout;