@luscii-healthtech/web-ui 33.2.0 → 35.0.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.
package/dist/index.d.ts CHANGED
@@ -41,12 +41,10 @@ export { Table, type TableProps } from "./components/Table/Table";
41
41
  export { prepareClientSidePagination } from "./components/Table/Table.utils";
42
42
  export { type TableFieldConfig, type TableFieldContent, type TableFieldText, type TableFieldAction, } from "./components/Table/Table.types";
43
43
  export { LoadingIndicator, type LoadingIndicatorProps, } from "./components/LoadingIndicator/LoadingIndicator";
44
- export { default as Menu } from "./components/Menu/Menu";
45
44
  export { List, ListItem, type ListProps, type ListItemProps, type DraggableListProps, type SortableListProps, type SortableListItemProps, type OnAssetLoadErrorPayload, getDndListItemProps, } from "./components/List";
46
45
  export { CheckboxList, type CheckboxListProps, } from "./components/CheckboxList/CheckboxList";
47
46
  export { CheckboxListModal, type CheckboxListModalProps, } from "./components/CheckBoxListModal/CheckboxListModal";
48
47
  export { NavLayout, type Props as NavLayoutProps, } from "./components/NavMenu/NavLayout";
49
- export { NavMenu } from "./components/NavMenu/NavMenu";
50
48
  export { NotificationBanner, type NotificationBannerColor, type NotificationBannerLinkProps, } from "./components/NotificationBanner/NotificationBanner";
51
49
  export { Page, CRUDPage, type CRUDPageProps } from "./components/Page";
52
50
  export { PaginationMenu } from "./components/PaginationMenu/PaginationMenu";
@@ -3122,21 +3122,21 @@ var img$1 = "data:image/svg+xml,%3csvg width='8' height='14' viewBox='0 0 8 14'
3122
3122
  var css_248z$8 = "/**\n * --- DEPRECATED ---\n * DON'T USE ANYTHING FROM THIS FILE IN FUTURE CHANGES. WE SHOULD BE\n * USING TAILWIND CLASSES DIRECTLY IN OUR COMPONENTS.\n */\n.cweb-dropdown {\n display: flex;\n justify-content: flex-start;\n flex-direction: column;\n align-items: flex-start;\n position: relative;\n outline: none;\n border-radius: 4px;\n}\n.cweb-dropdown:focus {\n outline: 4px solid rgba(0, 159, 227, 0.3);\n}\n.cweb-dropdown > .dropdown-header {\n display: flex;\n justify-content: space-between;\n flex-direction: row;\n align-items: center;\n align-self: stretch;\n height: 44px;\n border-radius: 4px;\n transition: all 0.4s ease;\n}\n.cweb-dropdown > .dropdown-header > .dropdown-header-icon {\n opacity: 0.5;\n transition: opacity 0.3s ease-in-out;\n}\n.cweb-dropdown > .dropdown-header:hover > .dropdown-header-icon {\n opacity: 1;\n}\n.cweb-dropdown > .dropdown-list {\n box-shadow: 0px 2px 4px -2px rgba(0, 0, 0, 0.56);\n display: none;\n position: absolute;\n top: 100%;\n z-index: 1;\n width: 100%;\n max-height: 360px;\n overflow-y: auto;\n align-self: stretch;\n margin-top: 8px;\n padding: 0;\n background-color: #ffffff;\n list-style: none;\n border: 1px solid #d1d5db;\n border-radius: 4px;\n}\n.cweb-dropdown > .dropdown-list > .dropdown-list-item {\n cursor: pointer;\n}\n.cweb-dropdown > .dropdown-list > .dropdown-list-item-group > .dropdown-list-item {\n cursor: pointer;\n}\n.cweb-dropdown.is-open > .dropdown-list {\n display: block;\n margin-bottom: 32px;\n}\n.cweb-dropdown.is-open > .dropdown-list.wider {\n width: 200%;\n}";
3123
3123
  styleInject(css_248z$8);
3124
3124
 
3125
- var __defProp$4 = Object.defineProperty;
3125
+ var __defProp$3 = Object.defineProperty;
3126
3126
  var __defProps$1 = Object.defineProperties;
3127
3127
  var __getOwnPropDescs$1 = Object.getOwnPropertyDescriptors;
3128
3128
  var __getOwnPropSymbols$2 = Object.getOwnPropertySymbols;
3129
3129
  var __hasOwnProp$2 = Object.prototype.hasOwnProperty;
3130
3130
  var __propIsEnum$2 = Object.prototype.propertyIsEnumerable;
3131
- var __defNormalProp$4 = (obj, key, value) => key in obj ? __defProp$4(obj, key, { enumerable: true, configurable: true, writable: true, value }) : obj[key] = value;
3131
+ var __defNormalProp$3 = (obj, key, value) => key in obj ? __defProp$3(obj, key, { enumerable: true, configurable: true, writable: true, value }) : obj[key] = value;
3132
3132
  var __spreadValues$2 = (a, b) => {
3133
3133
  for (var prop in b || (b = {}))
3134
3134
  if (__hasOwnProp$2.call(b, prop))
3135
- __defNormalProp$4(a, prop, b[prop]);
3135
+ __defNormalProp$3(a, prop, b[prop]);
3136
3136
  if (__getOwnPropSymbols$2)
3137
3137
  for (var prop of __getOwnPropSymbols$2(b)) {
3138
3138
  if (__propIsEnum$2.call(b, prop))
3139
- __defNormalProp$4(a, prop, b[prop]);
3139
+ __defNormalProp$3(a, prop, b[prop]);
3140
3140
  }
3141
3141
  return a;
3142
3142
  };
@@ -3153,8 +3153,8 @@ var __objRest$1 = (source, exclude) => {
3153
3153
  }
3154
3154
  return target;
3155
3155
  };
3156
- var __publicField$2 = (obj, key, value) => {
3157
- __defNormalProp$4(obj, typeof key !== "symbol" ? key + "" : key, value);
3156
+ var __publicField$1 = (obj, key, value) => {
3157
+ __defNormalProp$3(obj, typeof key !== "symbol" ? key + "" : key, value);
3158
3158
  return value;
3159
3159
  };
3160
3160
  const ITEM_QUERY_FIELD_NAMES = {
@@ -3203,12 +3203,12 @@ const getTotalItemCount = (items) => {
3203
3203
  class Dropdown extends React.PureComponent {
3204
3204
  constructor(props) {
3205
3205
  super(props);
3206
- __publicField$2(this, "handleClickOutside", (event) => {
3206
+ __publicField$1(this, "handleClickOutside", (event) => {
3207
3207
  if (this.rootRef && !this.rootRef.contains(event.target)) {
3208
3208
  this.closeDropdown();
3209
3209
  }
3210
3210
  });
3211
- __publicField$2(this, "handleKeyDown", (event) => {
3211
+ __publicField$1(this, "handleKeyDown", (event) => {
3212
3212
  const { items, isDropdownOpen, highlightIndex } = this.state;
3213
3213
  if (event.keyCode === keyCodes.ENTER) {
3214
3214
  event.preventDefault();
@@ -3246,7 +3246,7 @@ class Dropdown extends React.PureComponent {
3246
3246
  this.rootRef.blur();
3247
3247
  }
3248
3248
  });
3249
- __publicField$2(this, "findItem", (items, fieldName, fieldValue) => {
3249
+ __publicField$1(this, "findItem", (items, fieldName, fieldValue) => {
3250
3250
  let selectedItem;
3251
3251
  for (let i = 0; i < items.length; i++) {
3252
3252
  const item = items[i];
@@ -3267,7 +3267,7 @@ class Dropdown extends React.PureComponent {
3267
3267
  }
3268
3268
  return selectedItem;
3269
3269
  });
3270
- __publicField$2(this, "openDropdown", () => {
3270
+ __publicField$1(this, "openDropdown", () => {
3271
3271
  this.setState((prevState) => {
3272
3272
  return {
3273
3273
  isDropdownOpen: true,
@@ -3275,27 +3275,27 @@ class Dropdown extends React.PureComponent {
3275
3275
  };
3276
3276
  });
3277
3277
  });
3278
- __publicField$2(this, "closeDropdown", () => {
3278
+ __publicField$1(this, "closeDropdown", () => {
3279
3279
  this.setState({
3280
3280
  isDropdownOpen: false,
3281
3281
  highlightIndex: null
3282
3282
  });
3283
3283
  });
3284
- __publicField$2(this, "setSelectedItem", (item) => {
3284
+ __publicField$1(this, "setSelectedItem", (item) => {
3285
3285
  this.setState({
3286
3286
  selectedItem: item
3287
3287
  });
3288
3288
  });
3289
- __publicField$2(this, "findSelectedItem", (selectedIndex) => {
3289
+ __publicField$1(this, "findSelectedItem", (selectedIndex) => {
3290
3290
  return this.rootRef.querySelectorAll(".dropdown-list-item")[selectedIndex];
3291
3291
  });
3292
- __publicField$2(this, "scrollToHighlightedItem", (selectedIndex) => {
3292
+ __publicField$1(this, "scrollToHighlightedItem", (selectedIndex) => {
3293
3293
  const selectedItem = this.findSelectedItem(selectedIndex);
3294
3294
  if (this.dropdownListRef.scrollTo) {
3295
3295
  this.dropdownListRef.scrollTo(0, selectedItem.offsetTop);
3296
3296
  }
3297
3297
  });
3298
- __publicField$2(this, "increaseHighlightIndexIfPossible", () => {
3298
+ __publicField$1(this, "increaseHighlightIndexIfPossible", () => {
3299
3299
  this.setState((prevState) => {
3300
3300
  const newHighlightIndex = prevState.highlightIndex < prevState.totalItemCount - 1 ? prevState.highlightIndex + 1 : prevState.highlightIndex;
3301
3301
  if (newHighlightIndex !== prevState.highlightIndex) {
@@ -3306,7 +3306,7 @@ class Dropdown extends React.PureComponent {
3306
3306
  };
3307
3307
  });
3308
3308
  });
3309
- __publicField$2(this, "decreaseHighlightIndexIfPossible", () => {
3309
+ __publicField$1(this, "decreaseHighlightIndexIfPossible", () => {
3310
3310
  this.setState((prevState) => {
3311
3311
  const newHighlightIndex = prevState.highlightIndex > 0 ? prevState.highlightIndex - 1 : prevState.highlightIndex;
3312
3312
  if (newHighlightIndex !== prevState.highlightIndex) {
@@ -3317,13 +3317,13 @@ class Dropdown extends React.PureComponent {
3317
3317
  };
3318
3318
  });
3319
3319
  });
3320
- __publicField$2(this, "selectItem", (item) => {
3320
+ __publicField$1(this, "selectItem", (item) => {
3321
3321
  const { onItemSelect } = this.props;
3322
3322
  this.closeDropdown();
3323
3323
  this.setSelectedItem(item);
3324
3324
  onItemSelect(item);
3325
3325
  });
3326
- __publicField$2(this, "renderIndividualItem", (item) => {
3326
+ __publicField$1(this, "renderIndividualItem", (item) => {
3327
3327
  const { highlightIndex } = this.state;
3328
3328
  const isItemSelected = item.highlightIndex === highlightIndex;
3329
3329
  const itemClassName = classNames__default.default("dropdown-list-item ui-p-3", {
@@ -3359,7 +3359,7 @@ class Dropdown extends React.PureComponent {
3359
3359
  )
3360
3360
  );
3361
3361
  });
3362
- __publicField$2(this, "renderGroupedItems", (item) => {
3362
+ __publicField$1(this, "renderGroupedItems", (item) => {
3363
3363
  return /* @__PURE__ */ React__namespace.default.createElement("div", { className: "dropdown-list-item-group", key: item.groupKey }, item.title && /* @__PURE__ */ React__namespace.default.createElement("div", { className: "ui-bg-main-background ui-p-3", tabIndex: "-1" }, /* @__PURE__ */ React__namespace.default.createElement(
3364
3364
  Text,
3365
3365
  {
@@ -3372,7 +3372,7 @@ class Dropdown extends React.PureComponent {
3372
3372
  }
3373
3373
  )), item.subItems.map((subItem) => this.renderIndividualItem(subItem)));
3374
3374
  });
3375
- __publicField$2(this, "renderItems", () => {
3375
+ __publicField$1(this, "renderItems", () => {
3376
3376
  const { items } = this.state;
3377
3377
  return /* @__PURE__ */ React__namespace.default.createElement(
3378
3378
  "div",
@@ -4259,72 +4259,6 @@ function Table(_a) {
4259
4259
  );
4260
4260
  }
4261
4261
 
4262
- var __defProp$3 = Object.defineProperty;
4263
- var __defNormalProp$3 = (obj, key, value) => key in obj ? __defProp$3(obj, key, { enumerable: true, configurable: true, writable: true, value }) : obj[key] = value;
4264
- var __publicField$1 = (obj, key, value) => {
4265
- __defNormalProp$3(obj, typeof key !== "symbol" ? key + "" : key, value);
4266
- return value;
4267
- };
4268
- class Menu extends React.PureComponent {
4269
- constructor(props) {
4270
- super(props);
4271
- __publicField$1(this, "handleClickOutside", (event) => {
4272
- if (this.rootRef && !this.rootRef.contains(event.target)) {
4273
- this.closeMenu();
4274
- }
4275
- });
4276
- __publicField$1(this, "handleIconClick", (event) => {
4277
- event.preventDefault();
4278
- event.stopPropagation();
4279
- this.openMenu();
4280
- });
4281
- __publicField$1(this, "openMenu", () => {
4282
- this.setState({
4283
- isOpen: true
4284
- });
4285
- });
4286
- __publicField$1(this, "closeMenu", () => {
4287
- this.setState({
4288
- isOpen: false
4289
- });
4290
- });
4291
- this.state = {
4292
- isOpen: false
4293
- };
4294
- }
4295
- componentDidMount() {
4296
- document.addEventListener("mousedown", this.handleClickOutside);
4297
- }
4298
- componentWillUnmount() {
4299
- document.removeEventListener("mousedown", this.handleClickOutside);
4300
- }
4301
- render() {
4302
- const { children, className } = this.props;
4303
- const { isOpen } = this.state;
4304
- const containerClassName = classNames__default.default("cweb-menu", className, {
4305
- "is-open": isOpen
4306
- });
4307
- return /* @__PURE__ */ React__namespace.default.createElement(
4308
- "div",
4309
- {
4310
- className: containerClassName,
4311
- ref: (element) => this.rootRef = element
4312
- },
4313
- isOpen ? /* @__PURE__ */ React__namespace.default.createElement("div", { className: "ui-min-w-[300px] ui-rounded ui-border ui-border-slate-300 ui-p-6 ui-shadow-md" }, children) : /* @__PURE__ */ React__namespace.default.createElement(
4314
- Button,
4315
- {
4316
- role: "tertiary",
4317
- onClick: this.handleIconClick,
4318
- className: "chart-button"
4319
- }
4320
- )
4321
- );
4322
- }
4323
- }
4324
- __publicField$1(Menu, "propTypes", {
4325
- children: PropTypes__default.default.node.isRequired
4326
- });
4327
-
4328
4262
  var CheckboxState;
4329
4263
  (function(CheckboxState2) {
4330
4264
  CheckboxState2["CHECKED"] = "checked";
@@ -4615,147 +4549,6 @@ const NavLayout = (props) => {
4615
4549
  );
4616
4550
  };
4617
4551
 
4618
- const NavMenuFooter = ({ text, subtext, visible = true }) => {
4619
- if (!visible) {
4620
- return null;
4621
- }
4622
- return React__namespace.default.createElement(
4623
- "div",
4624
- { className: "-ui-mx-1 ui-border-t ui-border-slate-600 ui-bg-nav-menu" },
4625
- React__namespace.default.createElement(
4626
- FlexRow,
4627
- { backgroundColor: "transparent", hasPadding: true, alignItems: "center", spacing: "none" },
4628
- React__namespace.default.createElement(
4629
- FlexColumn,
4630
- { backgroundColor: "transparent", spacing: "none" },
4631
- React__namespace.default.createElement(Text, { text, title: text, color: "white", className: "ui-max-w-50 ui-break-normal" }),
4632
- subtext && React__namespace.default.createElement(Text, { text: subtext, type: "sm", color: "white", truncate: true, className: "ui-max-w-50", title: subtext })
4633
- )
4634
- )
4635
- );
4636
- };
4637
-
4638
- const NavMenuItem = (props) => {
4639
- var _a, _b;
4640
- const [currentImg, setCurrentImg] = React.useState(props.isSelected ? props.imgOnHover : props.img);
4641
- const classes = classNames__default.default([
4642
- "ui-h-11",
4643
- "ui-flex",
4644
- "ui-flex-row",
4645
- "ui-items-center",
4646
- "ui-w-auto",
4647
- "ui-px-4",
4648
- "ui-mb-1",
4649
- "ui-rounded",
4650
- "hover:ui-bg-gray-600",
4651
- "ui-transition",
4652
- "ui-ease-in",
4653
- "ui-duration-150",
4654
- "lg:last:ui-pb-2",
4655
- "focus:ui-outline-primary",
4656
- "ui-group"
4657
- ], {
4658
- "ui-bg-nav-menu": !props.isSelected,
4659
- "ui-bg-gray-600": props.isSelected
4660
- });
4661
- const handleOnMouseOver = () => {
4662
- if (!props.isSelected) {
4663
- setCurrentImg(props.imgOnHover);
4664
- }
4665
- };
4666
- const handleOnMouseOut = () => {
4667
- if (!props.isSelected) {
4668
- setCurrentImg(props.img);
4669
- }
4670
- };
4671
- return React__namespace.createElement(
4672
- "a",
4673
- { href: (_b = (_a = props.href) !== null && _a !== void 0 ? _a : props.linkTo) !== null && _b !== void 0 ? _b : "#", "data-test-id": props.dataTestId, className: classes, onMouseOver: handleOnMouseOver, onMouseOut: handleOnMouseOut, onClick: handleMenuClick },
4674
- React__namespace.createElement("img", { src: currentImg, className: "ui-ml-0 ui-mr-4" }),
4675
- React__namespace.createElement(Text, { type: "strong", text: props.title, hoverInGroup: true, color: "slate-200", hoverColor: "white" })
4676
- );
4677
- function handleMenuClick(event) {
4678
- var _a2;
4679
- if (event.metaKey || event.ctrlKey) {
4680
- return;
4681
- }
4682
- event.preventDefault();
4683
- (_a2 = props.trackEvent) === null || _a2 === void 0 ? void 0 : _a2.call(props);
4684
- if (props.isExternal) {
4685
- window.open(props.href, "_blank");
4686
- } else if (props.href) {
4687
- window.location.assign(props.href);
4688
- } else if (props.linkTo) {
4689
- router.navigate(props.linkTo);
4690
- }
4691
- }
4692
- };
4693
-
4694
- const NavMenuHeader = (props) => {
4695
- const { text, visible = true, onClick, belowHeader } = props;
4696
- if (!visible) {
4697
- return React__namespace.default.createElement("div", { "data-test-id": "separator", className: "ui-mb-1 ui-border-b ui-border-slate-600" });
4698
- }
4699
- const onClickHandler = () => onClick === null || onClick === void 0 ? void 0 : onClick();
4700
- return React__namespace.default.createElement(
4701
- React__namespace.default.Fragment,
4702
- null,
4703
- React__namespace.default.createElement(
4704
- "div",
4705
- { onClick: onClickHandler, className: classNames__default.default({
4706
- "ui-cursor-pointer": onClick
4707
- }), role: "link" },
4708
- React__namespace.default.createElement(Text, { text, type: "xl-strong", color: "white", className: "ui-max-w-55 ui-break-normal ui-pl-4 ui-pt-6", clampLines: true }),
4709
- belowHeader && React__namespace.default.createElement("div", { className: "ui-pl-4 ui-pt-1" }, belowHeader)
4710
- ),
4711
- React__namespace.default.createElement("div", { "data-test-id": "separator", className: "ui-mb-1 ui-mt-5 ui-border-b ui-border-slate-600" })
4712
- );
4713
- };
4714
-
4715
- const NavMenuContent = ({ roleItems, publicItems, authenticationItems, isUserAuthenticated, navMenuHeaderProps: organizationNameWidgetProps, navMenuFooterProps: loggedInUserWidgetProps }) => {
4716
- return React__namespace.default.createElement(
4717
- "div",
4718
- { className: classNames__default.default("ui-flex ui-w-60 ui-flex-col ui-bg-nav-menu ui-px-1 ui-pb-1 ui-shadow-lg lg:ui-relative lg:ui-h-full") },
4719
- React__namespace.default.createElement(NavMenuHeader, Object.assign({}, organizationNameWidgetProps)),
4720
- !isUserAuthenticated && React__namespace.default.createElement(NavMenuItem, Object.assign({}, authenticationItems.login, { key: authenticationItems.login.title })),
4721
- roleItems.map((item) => React__namespace.default.createElement(NavMenuItem, Object.assign({}, item, { key: item.title || item.dataTestId }))),
4722
- React__namespace.default.createElement(Divider, { dark: true }),
4723
- React__namespace.default.createElement("div", { className: "ui-mt-1" }, publicItems.map((item) => React__namespace.default.createElement(NavMenuItem, Object.assign({}, item, { key: item.title || item.dataTestId })))),
4724
- React__namespace.default.createElement(
4725
- "div",
4726
- { className: "ui-mt-auto" },
4727
- isUserAuthenticated && React__namespace.default.createElement(NavMenuItem, Object.assign({}, authenticationItems.logout, { key: authenticationItems.logout.title })),
4728
- React__namespace.default.createElement(NavMenuFooter, Object.assign({}, loggedInUserWidgetProps))
4729
- )
4730
- );
4731
- };
4732
-
4733
- function NavMenu(props) {
4734
- const [isOpen, setIsOpen] = React.useState(false);
4735
- const handleToggleOpen = () => {
4736
- setIsOpen(!isOpen);
4737
- };
4738
- return React__namespace.default.createElement(
4739
- React__namespace.default.Fragment,
4740
- null,
4741
- React__namespace.default.createElement(
4742
- "div",
4743
- { className: "ui-hidden ui-h-screen lg:ui-flex" },
4744
- React__namespace.default.createElement(NavMenuContent, Object.assign({}, props))
4745
- ),
4746
- React__namespace.default.createElement(
4747
- "div",
4748
- { className: "ui-relative ui-flex ui-w-screen ui-items-center ui-bg-nav-header ui-p-2 ui-shadow-lg lg:ui-hidden" },
4749
- React__namespace.default.createElement(Button, { hasIcon: true, role: "secondaryDark", iconName: isOpen ? "close" : "hamburger", onClick: handleToggleOpen })
4750
- ),
4751
- isOpen && React__namespace.default.createElement(
4752
- "div",
4753
- { className: "ui-absolute ui-z-20" },
4754
- React__namespace.default.createElement(NavMenuContent, Object.assign({}, props))
4755
- )
4756
- );
4757
- }
4758
-
4759
4552
  var css_248z$6 = ".cweb-page {\n width: 100%;\n max-width: 1140px;\n margin: 32px auto 0 auto;\n}\n.cweb-page .cweb-page-breadcrumbs {\n margin-bottom: 16px;\n}\n.cweb-page .page-spinner {\n margin-left: 8px;\n margin-bottom: 4px;\n}\n.cweb-page .page-spinner img {\n width: 21px;\n}\n.cweb-page .cweb-page-header {\n display: flex;\n align-items: center;\n width: 100%;\n flex-grow: 0;\n}\n.cweb-page .cweb-page-header .cweb-page-title {\n display: inline;\n}\n.cweb-page .cweb-page-header.accessory-right {\n flex-direction: row;\n justify-content: space-between;\n align-items: center;\n}\n.cweb-page .cweb-page-header.accessory-bottom {\n flex-direction: column;\n align-items: flex-start;\n}\n@media screen and (max-width: 426px) {\n .cweb-page .cweb-page-header.accessory-bottom {\n max-width: 75vw;\n }\n .cweb-page .cweb-page-header.accessory-bottom img {\n max-width: 10vw;\n }\n .cweb-page .cweb-page-header.accessory-bottom button p {\n font-size: 4vw;\n }\n}\n.cweb-page .cweb-page-header.accessory-bottom .cweb-page-title {\n margin-bottom: 8px;\n display: inline;\n}";
4760
4553
  styleInject(css_248z$6);
4761
4554
 
@@ -7058,14 +6851,12 @@ exports.LockIcon = LockIcon;
7058
6851
  exports.LogInIcon = LogInIcon;
7059
6852
  exports.LogOutIcon = LogOutIcon;
7060
6853
  exports.MediaPicker = MediaPicker;
7061
- exports.Menu = Menu;
7062
6854
  exports.MessageWithArrowIcon = MessageWithArrowIcon;
7063
6855
  exports.MessagesIcon = MessageWithArrowIcon;
7064
6856
  exports.Modal = Modal;
7065
6857
  exports.MoreIcon = MoreIcon;
7066
6858
  exports.MouseIcon = MouseIcon;
7067
6859
  exports.NavLayout = NavLayout;
7068
- exports.NavMenu = NavMenu;
7069
6860
  exports.NoteIcon = NoteIcon;
7070
6861
  exports.NotesIcon = NoteIcon;
7071
6862
  exports.NotificationBanner = NotificationBanner;