@stenajs-webui/panels 22.4.2 → 22.4.4
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/README.md +55 -11
- package/dist/components/image-carousel/ImageCarousel.d.ts +1 -4
- package/dist/index.es.js +68 -71
- package/dist/index.es.js.map +1 -1
- package/dist/index.js +2 -2
- package/dist/index.js.map +1 -1
- package/package.json +10 -8
package/README.md
CHANGED
|
@@ -1,15 +1,59 @@
|
|
|
1
|
-
# stenajs-webui/panels
|
|
1
|
+
# @stenajs-webui/panels
|
|
2
2
|
|
|
3
|
-
This package contains larger, more use
|
|
3
|
+
This package contains larger, more use‑case driven components built by composing primitives from other `@stenajs-webui/*` packages.
|
|
4
4
|
|
|
5
|
-
|
|
5
|
+
Use these panels to quickly assemble common application scaffolding and rich UI building blocks.
|
|
6
6
|
|
|
7
|
-
## Components
|
|
7
|
+
## Components overview
|
|
8
8
|
|
|
9
|
-
-
|
|
10
|
-
-
|
|
11
|
-
-
|
|
12
|
-
-
|
|
13
|
-
-
|
|
14
|
-
-
|
|
15
|
-
-
|
|
9
|
+
- ActionMenuButton (and variants) — Buttons that open contextual action menus.
|
|
10
|
+
- CheckboxMenu — Menu with checkable items for multi‑select actions.
|
|
11
|
+
- Collapsible — Expand/collapse container with helpers for lists and grouped content.
|
|
12
|
+
- Drawer — Slide‑in container for side panels and temporary content.
|
|
13
|
+
- ErrorPanel & ErrorScreen — Display error messages and recovery actions.
|
|
14
|
+
- ImageCarousel — Inline image carousel with fullscreen, zoom, captions and counter.
|
|
15
|
+
- LoadingPanel & LoadingScreen — Loading placeholders for panels and full screen.
|
|
16
|
+
- NavBar — Application top navigation with buttons, search field, user menu, etc.
|
|
17
|
+
- Notifications — Toasts and in‑app notifications (Notification, NotificationList, UnreadDot).
|
|
18
|
+
- PageHeader — Page header layout and helpers (heading and rows).
|
|
19
|
+
- ProductCard — Rich product presentation card (uses ImageCarousel under the hood).
|
|
20
|
+
- ProductSummaryCard — Compact summary variant of product information.
|
|
21
|
+
- SelectedItemsActionsPanel — Sticky panel for bulk actions.
|
|
22
|
+
- SidebarMenu — Collapsible/pinnable sidebar navigation and rail menu.
|
|
23
|
+
|
|
24
|
+
Note: Not all subcomponents are listed; see Storybook for examples and usage.
|
|
25
|
+
|
|
26
|
+
## ImageCarousel usage
|
|
27
|
+
|
|
28
|
+
ImageCarousel relies on `yet-another-react-lightbox` and some of its plugins. Required styles are now included automatically by the panels package when you use ImageCarousel or components that render it (no manual CSS imports needed).
|
|
29
|
+
|
|
30
|
+
Basic example:
|
|
31
|
+
|
|
32
|
+
<ImageCarousel
|
|
33
|
+
images={[
|
|
34
|
+
{
|
|
35
|
+
url: "https://example.com/image-900x600.jpg",
|
|
36
|
+
alt: "Front view",
|
|
37
|
+
width: 900,
|
|
38
|
+
height: 600,
|
|
39
|
+
title: "Front view",
|
|
40
|
+
description: "Click to open fullscreen",
|
|
41
|
+
fullscreenImage: {
|
|
42
|
+
url: "https://example.com/image-1800x1200.jpg",
|
|
43
|
+
width: 1800,
|
|
44
|
+
height: 1200,
|
|
45
|
+
},
|
|
46
|
+
},
|
|
47
|
+
]}
|
|
48
|
+
altLabelPrevious="Previous image"
|
|
49
|
+
altLabelNext="Next image"
|
|
50
|
+
altLabelClose="Close"
|
|
51
|
+
altLabelZoomIn="Zoom in"
|
|
52
|
+
altLabelZoomOut="Zoom out"
|
|
53
|
+
/>
|
|
54
|
+
|
|
55
|
+
Accessibility: Provide meaningful alt text and labels for all controls as shown above.
|
|
56
|
+
|
|
57
|
+
## ProductCard
|
|
58
|
+
|
|
59
|
+
ProductCard uses ImageCarousel internally to display images. The required lightbox styles are bundled automatically when using the component.
|
|
@@ -1,8 +1,5 @@
|
|
|
1
1
|
import * as React from "react";
|
|
2
|
-
import "./
|
|
3
|
-
import "yet-another-react-lightbox/styles.css";
|
|
4
|
-
import "yet-another-react-lightbox/plugins/counter.css";
|
|
5
|
-
import "yet-another-react-lightbox/plugins/captions.css";
|
|
2
|
+
import "./yarl.css";
|
|
6
3
|
export interface CarouselImage {
|
|
7
4
|
url: string;
|
|
8
5
|
alt: string;
|
package/dist/index.es.js
CHANGED
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
(function(){"use strict";try{if(typeof document<"u"){var r=document.createElement("style");r.appendChild(document.createTextNode("._navBar_kzibd_1{--swui-navbar-background-color: var(--lhds-color-ui-50);--swui-navbar-item-background-color-hover: var(--lhds-color-blue-700);--swui-navbar-item-background-color-selected: var(--lhds-color-blue-600);--swui-navbar-item-background-color-selected-hover: var( --lhds-color-blue-700 );--swui-nav-bar-height: 48px;background-color:var(--swui-navbar-background-color);height:var(--swui-nav-bar-height);min-height:var(--swui-nav-bar-height)}._navBarButton_b3x3w_1:hover{background:var(--lhds-color-ui-100)}._navBarButton_b3x3w_1:focus-visible{background:var(--lhds-color-ui-200)}._navBarButton_b3x3w_1:active{background:var(--lhds-color-ui-200)}._navBarButton_b3x3w_1._selected_b3x3w_14{background:var(--lhds-color-blue-200)}._navBarButton_b3x3w_1._selected_b3x3w_14:hover{background:var(--lhds-color-blue-100)}._navBarButton_b3x3w_1._selected_b3x3w_14:focus-visible{background:var(--lhds-color-blue-300)}._navBarButton_b3x3w_1._selected_b3x3w_14:active{background:var(--lhds-color-blue-200)}._navBarNotificationButton_1wt3y_1{--current-background-color: var(--lhds-color-ui-400);--current-outline-color: var(--modern-blue);background-color:var(--current-background-color);border-color:transparent;color:var(--lhds-color-ui-50);--swui-nav-bar-notification-shake-count: 3;transition:.5s width}._navBarNotificationButton_1wt3y_1:hover{--current-background-color: var(--lhds-color-red-500);--current-outline-color: var(--lhds-color-red-500)}._navBarNotificationButton_1wt3y_1:active{--current-background-color: var(--lhds-color-red-600);--current-outline-color: var(--lhds-color-red-600)}._navBarNotificationButton_1wt3y_1._unread_1wt3y_23 ._icon_1wt3y_23{transform-origin:top center;animation:_shake_1wt3y_1 1.5s ease-in-out var(--swui-nav-bar-notification-shake-count)}._navBarNotificationButton_1wt3y_1._unread_1wt3y_23{--current-background-color: var(--lhds-color-red-500);--current-outline-color: var(--lhds-color-red-500)}._navBarNotificationButton_1wt3y_1._unread_1wt3y_23:hover{--current-background-color: var(--lhds-color-red-600);--current-outline-color: var(--lhds-color-red-600)}._navBarNotificationButton_1wt3y_1._unread_1wt3y_23:active{--current-background-color: var(--lhds-color-red-700);--current-outline-color: var(--lhds-color-red-700)}._navBarNotificationButton_1wt3y_1:focus-visible{outline:var(--swui-focus-outline);outline-color:var(--current-outline-color);outline-offset:var(--swui-focus-outline-width)}@keyframes _shake_1wt3y_1{0%{transform:rotate(0)}7%{transform:rotate(20deg)}15%{transform:rotate(-20deg)}22%{transform:rotate(16deg)}30%{transform:rotate(-16deg)}38%{transform:rotate(6deg)}42%{transform:rotate(-6deg)}46%{transform:rotate(2deg)}to{transform:rotate(0)}}._navBarSearchFieldInput_1rp8g_1._navBarSearchFieldInput_1rp8g_1{line-height:2.7rem;color:var(--lhds-color-ui-800)}._navBarSearchFieldInput_1rp8g_1._navBarSearchFieldInput_1rp8g_1::placeholder{color:var(--lhds-color-blue-600)}._navBarSearchFieldInput_1rp8g_1._navBarSearchFieldInput_1rp8g_1{padding:0 var(--swui-metrics-indent)}._navBarSearchFieldWrapper_1rp8g_12._navBarSearchFieldWrapper_1rp8g_12{background:var(--lhds-color-ui-200);border-color:transparent}._navBarSearchFieldWrapper_1rp8g_12._navBarSearchFieldWrapper_1rp8g_12:hover{border-color:transparent}._navBarSearchFieldWrapper_1rp8g_12._navBarSearchFieldWrapper_1rp8g_12{padding:0 var(--swui-metrics-indent);border-radius:var(--swui-max-border-radius)}._navBarSearchFieldWrapper_1rp8g_12._navBarSearchFieldWrapper_1rp8g_12._withButton_1rp8g_24{padding-right:1px}._navBarSearchFieldWrapper_1rp8g_12._navBarSearchFieldWrapper_1rp8g_12:focus-within{color:var(--lhds-color-ui-800);background:var(--lhds-color-ui-50)}._navBarSearchFieldWrapper_1rp8g_12._navBarSearchFieldWrapper_1rp8g_12 ._clearButton_1rp8g_33{border-radius:var(--swui-max-border-radius)}._navBarUserButton_10f9z_1:hover{background:var(--lhds-color-ui-100)}._navBarUserButton_10f9z_1:focus-visible{background:var(--lhds-color-ui-200)}._navBarUserButton_10f9z_1:active{background:var(--lhds-color-ui-200)}._unreadDot_l8bni_1{position:relative}._unreadDot_l8bni_1 ._dot_l8bni_4{top:1px;right:1px;position:absolute;width:8px;height:8px;border-radius:var(--swui-max-border-radius);background:var(--lhds-color-blue-500)}._notification_1hao0_1{display:flex;flex-direction:column;width:100%;background:var(--lhds-color-ui-50)}._notification_1hao0_1 ._body_1hao0_7{padding-left:64px;padding-right:24px;padding-bottom:16px}._notification_1hao0_1._standard_1hao0_13._unread_1hao0_14{background:var(--lhds-color-blue-50)}._notification_1hao0_1._danger_1hao0_19{background:var(--lhds-color-red-100)}._notificationList_1rkvu_1{display:flex;flex-direction:column;gap:2px;background:var(--lhds-color-ui-200)}._clickable_1ijxc_1{--swui-toast-border-color: transparent;--swui-toast-item-border-color-hover: var(--lhds-color-blue-500);--current-border-color: var(--swui-toast-border-color);border-width:1px;border-style:solid;border-color:var(--current-border-color);position:absolute;top:0;left:0;right:0;bottom:0;border-radius:8px;background-color:transparent;width:100%;cursor:pointer}._clickable_1ijxc_1:hover{--current-border-color: var(--swui-toast-item-border-color-hover)}._nonClickable_1ijxc_27{position:relative;z-index:1;pointer-events:none}._nonClickable_1ijxc_27 a,._nonClickable_1ijxc_27 button{pointer-events:auto}._sidebarMenuCollapsibleGroupBox_ikek9_1{background:var(--lhds-color-ui-200);border-radius:var(--swui-border-radius);gap:var(--swui-metrics-space);display:flex;flex-direction:column;padding:var(--swui-metrics-space);--current-text-size: var(--swui-font-size-small)}._sidebarMenu_1bx5w_1{--swui-sidebar-menu-separator-color: var(--swui-white);--swui-sidebar-menu-text-color: var(--lhds-color-ui-900);--swui-sidebar-menu-icon-color: var(--lhds-color-ui-900);--swui-sidebar-menu-background-color: transparent;--swui-sidebar-menu-background-color-hover: var(--lhds-color-ui-400);--swui-sidebar-menu-background-color-focus: var(--lhds-color-ui-400);--swui-sidebar-menu-background-color-active: var(--lhds-color-ui-300);--swui-sidebar-menu-background-selected: var(--lhds-color-blue-100);--swui-sidebar-menu-background-selected-hover: var(--lhds-color-blue-200);--swui-sidebar-menu-background-selected-focus: var(--lhds-color-blue-200);--swui-sidebar-menu-background-selected-active: var(--lhds-color-blue-100);--current-background-color: var(--swui-sidebar-menu-background-color);--current-background-color-hover: var( --swui-sidebar-menu-background-color-hover );--current-background-color-focus: var( --swui-sidebar-menu-background-color-focus );--current-background-color-active: var( --swui-sidebar-menu-background-color-active );--current-background-selected: var(--swui-sidebar-menu-background-selected);--current-background-selected-hover: var( --swui-sidebar-menu-background-selected-hover );--current-background-selected-focus: var( --swui-sidebar-menu-background-selected-focus );--current-background-selected-active: var( --swui-sidebar-menu-background-selected-active )}._sidebarMenu_1bx5w_1 ._sidebarItems_1bx5w_38{--current-separator-color: var(--swui-sidebar-menu-separator-color);--current-text-color: var(--swui-sidebar-menu-text-color);--current-icon-color: var(--swui-sidebar-menu-icon-color)}._sidebarMenu_1bx5w_1{background-color:var(--current-background-color);height:100dvh}._sidebarMenu_1bx5w_1 ._scrollContainer_1bx5w_48{background:var(--current-background-color);height:100%;overflow:auto}._stenaFlag_108h7_1{height:32px}._productCard_19x6b_1{max-width:560px}@media (max-width: 768px){._productCard_19x6b_1{max-width:unset}}")),document.head.appendChild(r)}}catch(o){console.error("vite-plugin-css-injected-by-js",o)}})();
|
|
1
|
+
(function(){"use strict";try{if(typeof document<"u"){var r=document.createElement("style");r.appendChild(document.createTextNode("._navBar_kzibd_1{--swui-navbar-background-color: var(--lhds-color-ui-50);--swui-navbar-item-background-color-hover: var(--lhds-color-blue-700);--swui-navbar-item-background-color-selected: var(--lhds-color-blue-600);--swui-navbar-item-background-color-selected-hover: var( --lhds-color-blue-700 );--swui-nav-bar-height: 48px;background-color:var(--swui-navbar-background-color);height:var(--swui-nav-bar-height);min-height:var(--swui-nav-bar-height)}._navBarButton_b3x3w_1:hover{background:var(--lhds-color-ui-100)}._navBarButton_b3x3w_1:focus-visible{background:var(--lhds-color-ui-200)}._navBarButton_b3x3w_1:active{background:var(--lhds-color-ui-200)}._navBarButton_b3x3w_1._selected_b3x3w_14{background:var(--lhds-color-blue-200)}._navBarButton_b3x3w_1._selected_b3x3w_14:hover{background:var(--lhds-color-blue-100)}._navBarButton_b3x3w_1._selected_b3x3w_14:focus-visible{background:var(--lhds-color-blue-300)}._navBarButton_b3x3w_1._selected_b3x3w_14:active{background:var(--lhds-color-blue-200)}._navBarNotificationButton_1wt3y_1{--current-background-color: var(--lhds-color-ui-400);--current-outline-color: var(--modern-blue);background-color:var(--current-background-color);border-color:transparent;color:var(--lhds-color-ui-50);--swui-nav-bar-notification-shake-count: 3;transition:.5s width}._navBarNotificationButton_1wt3y_1:hover{--current-background-color: var(--lhds-color-red-500);--current-outline-color: var(--lhds-color-red-500)}._navBarNotificationButton_1wt3y_1:active{--current-background-color: var(--lhds-color-red-600);--current-outline-color: var(--lhds-color-red-600)}._navBarNotificationButton_1wt3y_1._unread_1wt3y_23 ._icon_1wt3y_23{transform-origin:top center;animation:_shake_1wt3y_1 1.5s ease-in-out var(--swui-nav-bar-notification-shake-count)}._navBarNotificationButton_1wt3y_1._unread_1wt3y_23{--current-background-color: var(--lhds-color-red-500);--current-outline-color: var(--lhds-color-red-500)}._navBarNotificationButton_1wt3y_1._unread_1wt3y_23:hover{--current-background-color: var(--lhds-color-red-600);--current-outline-color: var(--lhds-color-red-600)}._navBarNotificationButton_1wt3y_1._unread_1wt3y_23:active{--current-background-color: var(--lhds-color-red-700);--current-outline-color: var(--lhds-color-red-700)}._navBarNotificationButton_1wt3y_1:focus-visible{outline:var(--swui-focus-outline);outline-color:var(--current-outline-color);outline-offset:var(--swui-focus-outline-width)}@keyframes _shake_1wt3y_1{0%{transform:rotate(0)}7%{transform:rotate(20deg)}15%{transform:rotate(-20deg)}22%{transform:rotate(16deg)}30%{transform:rotate(-16deg)}38%{transform:rotate(6deg)}42%{transform:rotate(-6deg)}46%{transform:rotate(2deg)}to{transform:rotate(0)}}._navBarSearchFieldInput_1rp8g_1._navBarSearchFieldInput_1rp8g_1{line-height:2.7rem;color:var(--lhds-color-ui-800)}._navBarSearchFieldInput_1rp8g_1._navBarSearchFieldInput_1rp8g_1::placeholder{color:var(--lhds-color-blue-600)}._navBarSearchFieldInput_1rp8g_1._navBarSearchFieldInput_1rp8g_1{padding:0 var(--swui-metrics-indent)}._navBarSearchFieldWrapper_1rp8g_12._navBarSearchFieldWrapper_1rp8g_12{background:var(--lhds-color-ui-200);border-color:transparent}._navBarSearchFieldWrapper_1rp8g_12._navBarSearchFieldWrapper_1rp8g_12:hover{border-color:transparent}._navBarSearchFieldWrapper_1rp8g_12._navBarSearchFieldWrapper_1rp8g_12{padding:0 var(--swui-metrics-indent);border-radius:var(--swui-max-border-radius)}._navBarSearchFieldWrapper_1rp8g_12._navBarSearchFieldWrapper_1rp8g_12._withButton_1rp8g_24{padding-right:1px}._navBarSearchFieldWrapper_1rp8g_12._navBarSearchFieldWrapper_1rp8g_12:focus-within{color:var(--lhds-color-ui-800);background:var(--lhds-color-ui-50)}._navBarSearchFieldWrapper_1rp8g_12._navBarSearchFieldWrapper_1rp8g_12 ._clearButton_1rp8g_33{border-radius:var(--swui-max-border-radius)}._navBarUserButton_10f9z_1:hover{background:var(--lhds-color-ui-100)}._navBarUserButton_10f9z_1:focus-visible{background:var(--lhds-color-ui-200)}._navBarUserButton_10f9z_1:active{background:var(--lhds-color-ui-200)}._unreadDot_l8bni_1{position:relative}._unreadDot_l8bni_1 ._dot_l8bni_4{top:1px;right:1px;position:absolute;width:8px;height:8px;border-radius:var(--swui-max-border-radius);background:var(--lhds-color-blue-500)}._notification_1hao0_1{display:flex;flex-direction:column;width:100%;background:var(--lhds-color-ui-50)}._notification_1hao0_1 ._body_1hao0_7{padding-left:64px;padding-right:24px;padding-bottom:16px}._notification_1hao0_1._standard_1hao0_13._unread_1hao0_14{background:var(--lhds-color-blue-50)}._notification_1hao0_1._danger_1hao0_19{background:var(--lhds-color-red-100)}._notificationList_1rkvu_1{display:flex;flex-direction:column;gap:2px;background:var(--lhds-color-ui-200)}._clickable_1ijxc_1{--swui-toast-border-color: transparent;--swui-toast-item-border-color-hover: var(--lhds-color-blue-500);--current-border-color: var(--swui-toast-border-color);border-width:1px;border-style:solid;border-color:var(--current-border-color);position:absolute;top:0;left:0;right:0;bottom:0;border-radius:8px;background-color:transparent;width:100%;cursor:pointer}._clickable_1ijxc_1:hover{--current-border-color: var(--swui-toast-item-border-color-hover)}._nonClickable_1ijxc_27{position:relative;z-index:1;pointer-events:none}._nonClickable_1ijxc_27 a,._nonClickable_1ijxc_27 button{pointer-events:auto}._sidebarMenuCollapsibleGroupBox_ikek9_1{background:var(--lhds-color-ui-200);border-radius:var(--swui-border-radius);gap:var(--swui-metrics-space);display:flex;flex-direction:column;padding:var(--swui-metrics-space);--current-text-size: var(--swui-font-size-small)}._sidebarMenu_1bx5w_1{--swui-sidebar-menu-separator-color: var(--swui-white);--swui-sidebar-menu-text-color: var(--lhds-color-ui-900);--swui-sidebar-menu-icon-color: var(--lhds-color-ui-900);--swui-sidebar-menu-background-color: transparent;--swui-sidebar-menu-background-color-hover: var(--lhds-color-ui-400);--swui-sidebar-menu-background-color-focus: var(--lhds-color-ui-400);--swui-sidebar-menu-background-color-active: var(--lhds-color-ui-300);--swui-sidebar-menu-background-selected: var(--lhds-color-blue-100);--swui-sidebar-menu-background-selected-hover: var(--lhds-color-blue-200);--swui-sidebar-menu-background-selected-focus: var(--lhds-color-blue-200);--swui-sidebar-menu-background-selected-active: var(--lhds-color-blue-100);--current-background-color: var(--swui-sidebar-menu-background-color);--current-background-color-hover: var( --swui-sidebar-menu-background-color-hover );--current-background-color-focus: var( --swui-sidebar-menu-background-color-focus );--current-background-color-active: var( --swui-sidebar-menu-background-color-active );--current-background-selected: var(--swui-sidebar-menu-background-selected);--current-background-selected-hover: var( --swui-sidebar-menu-background-selected-hover );--current-background-selected-focus: var( --swui-sidebar-menu-background-selected-focus );--current-background-selected-active: var( --swui-sidebar-menu-background-selected-active )}._sidebarMenu_1bx5w_1 ._sidebarItems_1bx5w_38{--current-separator-color: var(--swui-sidebar-menu-separator-color);--current-text-color: var(--swui-sidebar-menu-text-color);--current-icon-color: var(--swui-sidebar-menu-icon-color)}._sidebarMenu_1bx5w_1{background-color:var(--current-background-color);height:100dvh}._sidebarMenu_1bx5w_1 ._scrollContainer_1bx5w_48{background:var(--current-background-color);height:100%;overflow:auto}._stenaFlag_108h7_1{height:32px}._productCard_19x6b_1{max-width:560px}@media (max-width: 768px){._productCard_19x6b_1{max-width:unset}}.yarl__fullsize{height:100%;width:100%}.yarl__relative{position:relative}.yarl__portal{bottom:0;left:0;opacity:0;overflow:hidden;position:fixed;right:0;top:0;transition:opacity var(--yarl__fade_animation_duration,.25s) var(--yarl__fade_animation_timing_function,ease);z-index:var(--yarl__portal_zindex,9999)}.yarl__portal_open{opacity:1}.yarl__container{background-color:var(--yarl__container_background_color,var(--yarl__color_backdrop,#000));bottom:0;left:0;outline:none;overflow:hidden;overscroll-behavior:var(--yarl__controller_overscroll_behavior,contain);position:absolute;right:0;top:0;touch-action:var(--yarl__controller_touch_action,none);-webkit-user-select:none;user-select:none}.yarl__carousel{align-content:center;align-items:stretch;display:flex;flex:0 0 auto;height:100%;justify-content:center;opacity:var(--yarl__pull_opacity,1);transform:translate(var(--yarl__swipe_offset,0),var(--yarl__pull_offset,0));width:calc(100% + (var(--yarl__carousel_slides_count) - 1)*(100% + var(--yarl__carousel_spacing_px, 0)*1px + var(--yarl__carousel_spacing_percent, 0)*1%))}.yarl__carousel_with_slides{column-gap:calc(var(--yarl__carousel_spacing_px, 0)*1px + 100/(var(--yarl__carousel_slides_count)*100 + (var(--yarl__carousel_slides_count) - 1)*var(--yarl__carousel_spacing_percent, 0))*var(--yarl__carousel_spacing_percent, 0)*1%)}.yarl__flex_center{align-content:center;align-items:center;display:flex;justify-content:center}.yarl__slide{flex:1;overflow:hidden;padding:calc(var(--yarl__carousel_padding_px, 0)*1px + 100/(var(--yarl__carousel_slides_count)*100 + (var(--yarl__carousel_slides_count) - 1)*var(--yarl__carousel_spacing_percent, 0))*var(--yarl__carousel_padding_percent, 0)*1%);position:relative}[dir=rtl] .yarl__slide{--yarl__direction:-1}.yarl__slide_image{max-height:100%;max-width:100%;object-fit:contain;touch-action:var(--yarl__controller_touch_action,none);user-select:none;-webkit-user-select:none;-webkit-touch-callout:none}.yarl__slide_image_cover{height:100%;object-fit:cover;width:100%}.yarl__slide_image_loading{opacity:0}@media screen and (min-width:800px){.yarl__slide_wrapper:not(.yarl__slide_wrapper_interactive) .yarl__slide_image{-webkit-backface-visibility:hidden;-webkit-transform:translateZ(0);-webkit-transform-style:preserve-3d}}.yarl__slide_placeholder{left:50%;line-height:0;position:absolute;top:50%;transform:translate(-50%) translateY(-50%)}.yarl__slide_loading{animation:yarl__delayed_fadein 1s linear;color:var(--yarl__slide_icon_loading_color,var(--yarl__color_button,hsla(0,0%,100%,.8)))}.yarl__slide_loading line{animation:yarl__stroke_opacity 1s linear infinite}.yarl__slide_loading line:first-of-type{animation-delay:-1.875s}.yarl__slide_loading line:nth-of-type(2){animation-delay:-1.75s}.yarl__slide_loading line:nth-of-type(3){animation-delay:-1.625s}.yarl__slide_loading line:nth-of-type(4){animation-delay:-1.5s}.yarl__slide_loading line:nth-of-type(5){animation-delay:-1.375s}.yarl__slide_loading line:nth-of-type(6){animation-delay:-1.25s}.yarl__slide_loading line:nth-of-type(7){animation-delay:-1.125s}.yarl__slide_loading line:nth-of-type(8){animation-delay:-1s}.yarl__slide_error{color:var(--yarl__slide_icon_error_color,red);height:var(--yarl__slide_icon_error_size,48px);width:var(--yarl__slide_icon_error_size,48px)}@media (prefers-reduced-motion){.yarl__portal,.yarl__slide{transition:unset}.yarl__slide_loading,.yarl__slide_loading line{animation:unset}}.yarl__toolbar{bottom:auto;display:flex;justify-content:flex-end;left:auto;padding:var(--yarl__toolbar_padding,8px);position:absolute;right:0;top:0}[dir=rtl] .yarl__toolbar{bottom:auto;left:0;right:auto;top:0}.yarl__icon{height:var(--yarl__icon_size,32px);width:var(--yarl__icon_size,32px)}.yarl__button{-webkit-appearance:none;-moz-appearance:none;appearance:none;background-color:var(--yarl__button_background_color,transparent);border:var(--yarl__button_border,0);color:var(--yarl__color_button,hsla(0,0%,100%,.8));cursor:pointer;filter:var(--yarl__button_filter,drop-shadow(2px 2px 2px rgba(0,0,0,.8)));line-height:0;margin:var(--yarl__button_margin,0);outline:none;padding:var(--yarl__button_padding,8px);-webkit-tap-highlight-color:transparent}.yarl__button:focus{color:var(--yarl__color_button_active,#fff)}.yarl__button:focus:not(:focus-visible){color:var(--yarl__color_button,hsla(0,0%,100%,.8))}.yarl__button:focus-visible{color:var(--yarl__color_button_active,#fff)}@media (hover:hover){.yarl__button:focus-visible:hover,.yarl__button:focus:hover,.yarl__button:hover{color:var(--yarl__color_button_active,#fff)}}.yarl__button:disabled{color:var(--yarl__color_button_disabled,hsla(0,0%,100%,.4));cursor:default}.yarl__navigation_next,.yarl__navigation_prev{padding:var(--yarl__navigation_button_padding,24px 16px);position:absolute;top:50%;transform:translateY(-50%)}.yarl__navigation_prev{left:0}[dir=rtl] .yarl__navigation_prev{left:unset;right:0;transform:translateY(-50%) rotate(180deg)}.yarl__navigation_next{right:0}[dir=rtl] .yarl__navigation_next{left:0;right:unset;transform:translateY(-50%) rotate(180deg)}.yarl__no_scroll{height:100%;overflow:hidden;overscroll-behavior:none}@keyframes yarl__delayed_fadein{0%{opacity:0}80%{opacity:0}to{opacity:1}}@keyframes yarl__stroke_opacity{0%{stroke-opacity:1}to{stroke-opacity:.125}}.yarl__counter{bottom:var(--yarl__counter_bottom,unset);color:var(--yarl__counter_color,var(--yarl__color_button,hsla(0,0%,100%,.8)));filter:var(--yarl__counter_filter,drop-shadow(2px 2px 2px rgba(0,0,0,.8)));left:var(--yarl__counter_left,0);line-height:var(--yarl__counter_line_height,var(--yarl__icon_size,32px));margin:var(--yarl__counter_margin,var(--yarl__toolbar_padding,8px));padding:var(--yarl__counter_padding,var(--yarl__button_padding,8px));position:var(--yarl__counter_position,absolute);right:var(--yarl__counter_right,unset);top:var(--yarl__counter_top,0);-webkit-user-select:var(--yarl__counter_user_select,none);user-select:var(--yarl__counter_user_select,none)}.yarl__slide_captions_container{background:var(--yarl__slide_captions_container_background,rgba(0,0,0,.5));left:var(--yarl__slide_captions_container_left,0);padding:var(--yarl__slide_captions_container_padding,16px);position:absolute;right:var(--yarl__slide_captions_container_right,0);-webkit-transform:translateZ(0)}.yarl__slide_title{color:var(--yarl__slide_title_color,#fff);font-size:var(--yarl__slide_title_font_size,125%);font-weight:var(--yarl__slide_title_font_weight,bolder);max-width:calc(100% - var(--yarl__toolbar_width, 0px));overflow:hidden;text-overflow:ellipsis;white-space:nowrap}.yarl__slide_title_container{top:var(--yarl__slide_title_container_top,0)}.yarl__slide_description{display:-webkit-box;-webkit-hyphens:auto;hyphens:auto;overflow:hidden;-webkit-box-orient:vertical;-webkit-line-clamp:var(--yarl__slide_description_max_lines,3);color:var(--yarl__slide_description_color,#fff);text-align:var(--yarl__slide_description_text_align,start)}.yarl__slide_description_container{bottom:var(--yarl__slide_description_container_bottom,0)}.yarl__slide_title.yarl__slide_title.yarl__slide_title{font-family:var(--swui-font-primary);font-size:var(--swui-font-size-large);font-weight:var(--swui-font-weight-text)}.yarl__slide_title_container.yarl__slide_title_container.yarl__slide_title_container{height:48px;margin:calc(var(--swui-metrics-space) * 1);display:flex;align-items:center;padding-left:calc(var(--swui-metrics-space) * 10)}.yarl__slide_description.yarl__slide_description.yarl__slide_description{font-family:var(--swui-font-primary);font-size:var(--swui-font-size-large);font-weight:var(--swui-font-weight-text)}.yarl__slide_description_container.yarl__slide_description_container.yarl__slide_description_container{display:flex;align-items:center;padding-left:calc(var(--swui-metrics-space) * 3);padding-bottom:calc(var(--swui-metrics-space) * 4)}.yarl__counter.yarl__counter{height:48px;margin:calc(var(--swui-metrics-space) * 1);display:flex;align-items:center;font-family:var(--swui-font-primary);font-size:var(--swui-font-size-large);font-weight:var(--swui-font-weight-text)}")),document.head.appendChild(r)}}catch(a){console.error("vite-plugin-css-injected-by-js",a)}})();
|
|
2
2
|
import { jsx as e, Fragment as M, jsxs as r } from "react/jsx-runtime";
|
|
3
3
|
import { ActionMenu as ue, ActionMenuContext as ke, stenaAngleDown as he, PrimaryButton as pe, SecondaryButton as I, FlatButton as E, stenaHamburger as me, BaseButton as Ie, stenaBellFilled as Se, TextInputButton as Ne, stenaTimes as Me, stenaUserCircle as Re, CircledIcon as G, CloseButton as ge, MenuButton as T, Icon as X, stenaMail as ze, Card as je, CardBody as Fe, stenaTripFerryXl as Pe, Spinner as J, StenaFlag as Ae, stenaAngleLeftDouble as be, stenaPin as $e, IconMenuButton as Y, IconMenuButtonLink as Le, MenuButtonLink as De, Tag as We, ShimmerBox as R, stenaAngleLeft as re, stenaAngleRight as oe, stenaSearchPlus as He, stenaSearchMinus as Ue, stenaTimesThick as qe } from "@stenajs-webui/elements";
|
|
4
4
|
import * as Ee from "react";
|
|
@@ -14,9 +14,6 @@ import Je from "yet-another-react-lightbox/plugins/inline";
|
|
|
14
14
|
import Ye from "yet-another-react-lightbox/plugins/captions";
|
|
15
15
|
import en from "yet-another-react-lightbox/plugins/counter";
|
|
16
16
|
import nn from "yet-another-react-lightbox/plugins/zoom";
|
|
17
|
-
import "yet-another-react-lightbox/styles.css";
|
|
18
|
-
import "yet-another-react-lightbox/plugins/counter.css";
|
|
19
|
-
import "yet-another-react-lightbox/plugins/captions.css";
|
|
20
17
|
const te = ({
|
|
21
18
|
renderItems: n,
|
|
22
19
|
placement: t = "bottom",
|
|
@@ -66,7 +63,7 @@ const te = ({
|
|
|
66
63
|
)
|
|
67
64
|
}
|
|
68
65
|
) });
|
|
69
|
-
},
|
|
66
|
+
}, ft = (n) => /* @__PURE__ */ e(te, { buttonComponent: pe, ...n }), xt = (n) => /* @__PURE__ */ e(te, { buttonComponent: I, ...n }), tn = (n) => /* @__PURE__ */ e(te, { buttonComponent: E, ...n }), rn = "1px solid var(--lhds-color-ui-300)", vt = ({
|
|
70
67
|
renderMenu: n,
|
|
71
68
|
...t
|
|
72
69
|
}) => /* @__PURE__ */ e(
|
|
@@ -105,7 +102,7 @@ const te = ({
|
|
|
105
102
|
className: n,
|
|
106
103
|
onClick: t
|
|
107
104
|
}
|
|
108
|
-
),
|
|
105
|
+
), Ct = ({
|
|
109
106
|
left: n,
|
|
110
107
|
className: t,
|
|
111
108
|
showMenuButton: i = !1,
|
|
@@ -169,7 +166,7 @@ const te = ({
|
|
|
169
166
|
}
|
|
170
167
|
);
|
|
171
168
|
}
|
|
172
|
-
),
|
|
169
|
+
), _t = (n) => /* @__PURE__ */ e(z, { whiteSpace: "nowrap", variant: "h4", as: "h1", ...n }), yt = ({
|
|
173
170
|
content: n,
|
|
174
171
|
children: t,
|
|
175
172
|
appendTo: i,
|
|
@@ -196,7 +193,7 @@ const te = ({
|
|
|
196
193
|
unread: hn,
|
|
197
194
|
icon: pn,
|
|
198
195
|
shake: mn
|
|
199
|
-
},
|
|
196
|
+
}, wt = ee(function({
|
|
200
197
|
count: n,
|
|
201
198
|
unread: t = !1,
|
|
202
199
|
className: i,
|
|
@@ -228,7 +225,7 @@ const te = ({
|
|
|
228
225
|
navBarSearchFieldWrapper: bn,
|
|
229
226
|
withButton: fn,
|
|
230
227
|
clearButton: xn
|
|
231
|
-
},
|
|
228
|
+
}, Bt = ({
|
|
232
229
|
placeholder: n = "Search",
|
|
233
230
|
className: t,
|
|
234
231
|
wrapperClassName: i,
|
|
@@ -260,7 +257,7 @@ const te = ({
|
|
|
260
257
|
}
|
|
261
258
|
), vn = "_navBarUserButton_10f9z_1", Cn = {
|
|
262
259
|
navBarUserButton: vn
|
|
263
|
-
},
|
|
260
|
+
}, kt = ({
|
|
264
261
|
className: n,
|
|
265
262
|
username: t,
|
|
266
263
|
initials: i,
|
|
@@ -343,7 +340,7 @@ const te = ({
|
|
|
343
340
|
standard: Sn,
|
|
344
341
|
unread: Nn,
|
|
345
342
|
danger: Mn
|
|
346
|
-
},
|
|
343
|
+
}, It = ({
|
|
347
344
|
variant: n = "standard",
|
|
348
345
|
children: t,
|
|
349
346
|
unread: i,
|
|
@@ -363,7 +360,7 @@ const te = ({
|
|
|
363
360
|
}
|
|
364
361
|
), Rn = "_notificationList_1rkvu_1", zn = {
|
|
365
362
|
notificationList: Rn
|
|
366
|
-
},
|
|
363
|
+
}, St = ({
|
|
367
364
|
children: n
|
|
368
365
|
}) => /* @__PURE__ */ r("div", { className: zn.notificationList, children: [
|
|
369
366
|
n,
|
|
@@ -371,7 +368,7 @@ const te = ({
|
|
|
371
368
|
] }), jn = "_clickable_1ijxc_1", Fn = "_nonClickable_1ijxc_27", V = {
|
|
372
369
|
clickable: jn,
|
|
373
370
|
nonClickable: Fn
|
|
374
|
-
},
|
|
371
|
+
}, Nt = ({
|
|
375
372
|
onClick: n,
|
|
376
373
|
onClickAriaLabel: t,
|
|
377
374
|
children: i,
|
|
@@ -417,9 +414,9 @@ const te = ({
|
|
|
417
414
|
...o
|
|
418
415
|
}
|
|
419
416
|
)
|
|
420
|
-
),
|
|
417
|
+
), Mt = ({
|
|
421
418
|
children: n
|
|
422
|
-
}) => /* @__PURE__ */ e(p, { gap: 1, children: n }),
|
|
419
|
+
}) => /* @__PURE__ */ e(p, { gap: 1, children: n }), Rt = ({
|
|
423
420
|
value: n,
|
|
424
421
|
onValueChange: t,
|
|
425
422
|
onChange: i,
|
|
@@ -444,7 +441,7 @@ const te = ({
|
|
|
444
441
|
}
|
|
445
442
|
), An = "_sidebarMenuCollapsibleGroupBox_ikek9_1", $n = {
|
|
446
443
|
sidebarMenuCollapsibleGroupBox: An
|
|
447
|
-
}, Ln = ({ children: n }) => /* @__PURE__ */ e("div", { className: $n.sidebarMenuCollapsibleGroupBox, children: n }),
|
|
444
|
+
}, Ln = ({ children: n }) => /* @__PURE__ */ e("div", { className: $n.sidebarMenuCollapsibleGroupBox, children: n }), zt = ({ children: n }) => /* @__PURE__ */ e(d, { spacing: !0, indent: !0, children: /* @__PURE__ */ e(f, { variant: "overline", size: "smaller", children: n }) }), jt = ({ text: n = "No content" }) => /* @__PURE__ */ r(p, { indent: !0, spacing: !0, flex: 1, alignItems: "center", children: [
|
|
448
445
|
/* @__PURE__ */ e(X, { icon: ze, color: m("--lhds-color-ui-500") }),
|
|
449
446
|
/* @__PURE__ */ e(x, {}),
|
|
450
447
|
/* @__PURE__ */ e(f, { size: "small", color: m("--lhds-color-ui-500"), children: n })
|
|
@@ -471,7 +468,7 @@ const te = ({
|
|
|
471
468
|
o
|
|
472
469
|
] })
|
|
473
470
|
] }) }) });
|
|
474
|
-
},
|
|
471
|
+
}, Ft = (n) => /* @__PURE__ */ e(
|
|
475
472
|
d,
|
|
476
473
|
{
|
|
477
474
|
width: "100%",
|
|
@@ -486,7 +483,7 @@ const te = ({
|
|
|
486
483
|
/* @__PURE__ */ e(J, { size: "small" }),
|
|
487
484
|
/* @__PURE__ */ e(x, { num: 4 }),
|
|
488
485
|
/* @__PURE__ */ e(z, { variant: "h4", children: n })
|
|
489
|
-
] }),
|
|
486
|
+
] }), Pt = (n) => /* @__PURE__ */ e(
|
|
490
487
|
d,
|
|
491
488
|
{
|
|
492
489
|
width: "100%",
|
|
@@ -495,7 +492,7 @@ const te = ({
|
|
|
495
492
|
alignItems: "center",
|
|
496
493
|
children: /* @__PURE__ */ e(Wn, { ...n })
|
|
497
494
|
}
|
|
498
|
-
),
|
|
495
|
+
), At = ({
|
|
499
496
|
renderBreadCrumbs: n,
|
|
500
497
|
renderPageHeading: t,
|
|
501
498
|
renderTabs: i,
|
|
@@ -511,7 +508,7 @@ const te = ({
|
|
|
511
508
|
i == null ? void 0 : i()
|
|
512
509
|
] }),
|
|
513
510
|
o
|
|
514
|
-
] }),
|
|
511
|
+
] }), $t = (n) => /* @__PURE__ */ e(c, { indent: 3, spacing: !0, ...n }), Lt = ({
|
|
515
512
|
icon: n,
|
|
516
513
|
heading: t,
|
|
517
514
|
headingLevel: i = "h2",
|
|
@@ -550,7 +547,7 @@ const te = ({
|
|
|
550
547
|
isPinned: n,
|
|
551
548
|
onClick: t,
|
|
552
549
|
label: i
|
|
553
|
-
}) => /* @__PURE__ */ e(T, { onClick: t, label: i ?? (n ? "Unpin menu" : "Pin menu"), leftIcon: n ? be : $e }),
|
|
550
|
+
}) => /* @__PURE__ */ e(T, { onClick: t, label: i ?? (n ? "Unpin menu" : "Pin menu"), leftIcon: n ? be : $e }), Dt = ({
|
|
554
551
|
className: n,
|
|
555
552
|
children: t,
|
|
556
553
|
onCloseClick: i,
|
|
@@ -588,7 +585,7 @@ const te = ({
|
|
|
588
585
|
] }), q = Ge(!1), ie = () => Oe(q), Kn = ({
|
|
589
586
|
label: n,
|
|
590
587
|
...t
|
|
591
|
-
}) => /* @__PURE__ */ e(_e, { label: n, placement: "right", appendTo: document.body, children: /* @__PURE__ */ e(Y, { ...t }) }),
|
|
588
|
+
}) => /* @__PURE__ */ e(_e, { label: n, placement: "right", appendTo: document.body, children: /* @__PURE__ */ e(Y, { ...t }) }), Wt = ({
|
|
592
589
|
closeButtonVisible: n,
|
|
593
590
|
onClickCloseButton: t,
|
|
594
591
|
onClickMenuButton: i,
|
|
@@ -634,7 +631,7 @@ const te = ({
|
|
|
634
631
|
label: n,
|
|
635
632
|
leftIcon: t,
|
|
636
633
|
...i
|
|
637
|
-
}) => t == null ? null : /* @__PURE__ */ e(_e, { label: n, placement: "right", children: /* @__PURE__ */ e(Le, { icon: t, ...i }) }),
|
|
634
|
+
}) => t == null ? null : /* @__PURE__ */ e(_e, { label: n, placement: "right", children: /* @__PURE__ */ e(Le, { icon: t, ...i }) }), Ht = (n) => ie() ? /* @__PURE__ */ e(Qn, { ...n }) : /* @__PURE__ */ e(De, { ...n }), Tn = ({
|
|
638
635
|
children: n,
|
|
639
636
|
label: t,
|
|
640
637
|
icon: i,
|
|
@@ -661,7 +658,7 @@ const te = ({
|
|
|
661
658
|
}
|
|
662
659
|
)
|
|
663
660
|
}
|
|
664
|
-
),
|
|
661
|
+
), Ut = ({
|
|
665
662
|
children: n,
|
|
666
663
|
label: t,
|
|
667
664
|
leftIcon: i,
|
|
@@ -682,13 +679,13 @@ const te = ({
|
|
|
682
679
|
children: /* @__PURE__ */ e(Ln, { children: n })
|
|
683
680
|
}
|
|
684
681
|
);
|
|
685
|
-
},
|
|
682
|
+
}, qt = (n) => /* @__PURE__ */ e(
|
|
686
683
|
Ve,
|
|
687
684
|
{
|
|
688
685
|
color: m("--lhds-color-ui-400"),
|
|
689
686
|
...n
|
|
690
687
|
}
|
|
691
|
-
),
|
|
688
|
+
), Et = ({ numItemsSelected: n, label: t, afterLabelContent: i, rightContent: o }) => /* @__PURE__ */ r(
|
|
692
689
|
c,
|
|
693
690
|
{
|
|
694
691
|
indent: 3,
|
|
@@ -716,9 +713,9 @@ const te = ({
|
|
|
716
713
|
/* @__PURE__ */ e(c, { gap: 2, children: o })
|
|
717
714
|
]
|
|
718
715
|
}
|
|
719
|
-
),
|
|
716
|
+
), Gt = ({ children: n }) => /* @__PURE__ */ e(c, { spacing: 0.5, indent: 0.5, flex: 1, children: n }), Xn = "_productCard_19x6b_1", Jn = {
|
|
720
717
|
productCard: Xn
|
|
721
|
-
},
|
|
718
|
+
}, Ot = ({
|
|
722
719
|
renderSelectedProductCard: n,
|
|
723
720
|
renderEditButton: t,
|
|
724
721
|
children: i,
|
|
@@ -759,7 +756,7 @@ const te = ({
|
|
|
759
756
|
)
|
|
760
757
|
]
|
|
761
758
|
}
|
|
762
|
-
), Yn = ({ children: n }) => /* @__PURE__ */ e(f, { variant: "bold", style: { fontSize: "2.0rem" }, children: n }),
|
|
759
|
+
), Yn = ({ children: n }) => /* @__PURE__ */ e(f, { variant: "bold", style: { fontSize: "2.0rem" }, children: n }), Vt = ({
|
|
763
760
|
description: n,
|
|
764
761
|
subDescription: t,
|
|
765
762
|
descriptionTags: i,
|
|
@@ -812,7 +809,7 @@ const te = ({
|
|
|
812
809
|
b
|
|
813
810
|
] })
|
|
814
811
|
] });
|
|
815
|
-
},
|
|
812
|
+
}, Kt = ({ renderImage: n }) => /* @__PURE__ */ r(p, { children: [
|
|
816
813
|
n == null ? void 0 : n(),
|
|
817
814
|
/* @__PURE__ */ r(d, { gap: 3, spacing: 4, indent: 4, background: m("--moln"), children: [
|
|
818
815
|
/* @__PURE__ */ e(d, { gap: 0.5, children: /* @__PURE__ */ e(
|
|
@@ -835,13 +832,13 @@ const te = ({
|
|
|
835
832
|
/* @__PURE__ */ e(p, { children: /* @__PURE__ */ e(R, { width: "150px", height: "1.4rem", borderRadius: "8px" }) }),
|
|
836
833
|
/* @__PURE__ */ e(x, {})
|
|
837
834
|
] })
|
|
838
|
-
] }),
|
|
835
|
+
] }), Zt = ({
|
|
839
836
|
label: n,
|
|
840
837
|
children: t
|
|
841
838
|
}) => /* @__PURE__ */ r(d, { background: m("--mussla"), indent: 2, spacing: 2, gap: 2, children: [
|
|
842
839
|
/* @__PURE__ */ e(z, { variant: "h3", as: "h2", color: "white", children: n }),
|
|
843
840
|
t
|
|
844
|
-
] }),
|
|
841
|
+
] }), Qt = ({
|
|
845
842
|
title: n,
|
|
846
843
|
variant: t = "normal",
|
|
847
844
|
loading: i,
|
|
@@ -936,7 +933,7 @@ const te = ({
|
|
|
936
933
|
default:
|
|
937
934
|
xe(n);
|
|
938
935
|
}
|
|
939
|
-
},
|
|
936
|
+
}, Tt = ({ iconLeft: n, ...t }) => /* @__PURE__ */ e(
|
|
940
937
|
d,
|
|
941
938
|
{
|
|
942
939
|
borderRadius: "16px",
|
|
@@ -991,7 +988,7 @@ const te = ({
|
|
|
991
988
|
query: "(max-width: 1160px)"
|
|
992
989
|
});
|
|
993
990
|
return { deviceSize: t ? "small-mobile" : n ? "mobile" : i ? "tablet" : o ? "tablet-wide" : "desktop" };
|
|
994
|
-
}, tt = (n, t) => n === t || de.indexOf(n) > de.indexOf(t),
|
|
991
|
+
}, tt = (n, t) => n === t || de.indexOf(n) > de.indexOf(t), Xt = (n) => {
|
|
995
992
|
const { deviceSize: t } = Be();
|
|
996
993
|
return {
|
|
997
994
|
visible: U(
|
|
@@ -999,7 +996,7 @@ const te = ({
|
|
|
999
996
|
[t, n]
|
|
1000
997
|
)
|
|
1001
998
|
};
|
|
1002
|
-
},
|
|
999
|
+
}, Jt = ({
|
|
1003
1000
|
images: n,
|
|
1004
1001
|
altLabelPrevious: t,
|
|
1005
1002
|
altLabelZoomIn: i,
|
|
@@ -1174,52 +1171,52 @@ const te = ({
|
|
|
1174
1171
|
});
|
|
1175
1172
|
export {
|
|
1176
1173
|
tn as ActionMenuFlatButton,
|
|
1177
|
-
|
|
1178
|
-
|
|
1179
|
-
|
|
1174
|
+
ft as ActionMenuPrimaryButton,
|
|
1175
|
+
xt as ActionMenuSecondaryButton,
|
|
1176
|
+
vt as CheckboxMenu,
|
|
1180
1177
|
Pn as Collapsible,
|
|
1181
|
-
|
|
1182
|
-
|
|
1183
|
-
|
|
1184
|
-
|
|
1178
|
+
jt as CollapsibleEmptyContent,
|
|
1179
|
+
zt as CollapsibleGroupHeading,
|
|
1180
|
+
Mt as CollapsibleList,
|
|
1181
|
+
Rt as CollapsibleWithCheckbox,
|
|
1185
1182
|
Dn as ErrorPanel,
|
|
1186
|
-
|
|
1187
|
-
|
|
1183
|
+
Ft as ErrorScreen,
|
|
1184
|
+
Jt as ImageCarousel,
|
|
1188
1185
|
Wn as LoadingPanel,
|
|
1189
|
-
|
|
1190
|
-
|
|
1186
|
+
Pt as LoadingScreen,
|
|
1187
|
+
Ct as NavBar,
|
|
1191
1188
|
dn as NavBarButton,
|
|
1192
|
-
|
|
1193
|
-
|
|
1194
|
-
|
|
1195
|
-
|
|
1196
|
-
|
|
1197
|
-
|
|
1189
|
+
_t as NavBarHeading,
|
|
1190
|
+
wt as NavBarNotificationButton,
|
|
1191
|
+
yt as NavBarPopoverButton,
|
|
1192
|
+
Bt as NavBarSearchField,
|
|
1193
|
+
kt as NavBarUserButton,
|
|
1194
|
+
It as Notification,
|
|
1198
1195
|
we as NotificationHeader,
|
|
1199
|
-
|
|
1200
|
-
|
|
1201
|
-
|
|
1202
|
-
|
|
1203
|
-
|
|
1204
|
-
|
|
1205
|
-
|
|
1206
|
-
|
|
1207
|
-
|
|
1208
|
-
|
|
1209
|
-
|
|
1210
|
-
|
|
1211
|
-
|
|
1212
|
-
|
|
1196
|
+
St as NotificationList,
|
|
1197
|
+
At as PageHeader,
|
|
1198
|
+
$t as PageHeaderRow,
|
|
1199
|
+
Lt as PageHeading,
|
|
1200
|
+
Ot as ProductCard,
|
|
1201
|
+
Vt as ProductCardContentItem,
|
|
1202
|
+
Kt as ProductCardContentItemSkeletor,
|
|
1203
|
+
Qt as ProductSummaryCard,
|
|
1204
|
+
Tt as ProductSummaryCardSkeletor,
|
|
1205
|
+
Gt as SelectedItemsActionsPadding,
|
|
1206
|
+
Et as SelectedItemsActionsPanel,
|
|
1207
|
+
Zt as SelectedProductCard,
|
|
1208
|
+
Dt as SidebarMenu,
|
|
1209
|
+
Ut as SidebarMenuCollapsible,
|
|
1213
1210
|
Ln as SidebarMenuCollapsibleGroupBox,
|
|
1214
1211
|
Zn as SidebarMenuHeading,
|
|
1215
|
-
|
|
1216
|
-
|
|
1217
|
-
|
|
1218
|
-
|
|
1212
|
+
Ht as SidebarMenuLink,
|
|
1213
|
+
qt as SidebarMenuSeparator,
|
|
1214
|
+
Wt as SidebarRailMenu,
|
|
1215
|
+
Nt as Toast,
|
|
1219
1216
|
wn as UnreadDot,
|
|
1220
1217
|
Bn as getIconBgColorFromVariant,
|
|
1221
1218
|
tt as isDeviceSameOrLarger,
|
|
1222
1219
|
Be as useDeviceSize,
|
|
1223
|
-
|
|
1220
|
+
Xt as useLayoutVisibility
|
|
1224
1221
|
};
|
|
1225
1222
|
//# sourceMappingURL=index.es.js.map
|