@tedi-design-system/react 18.0.0-rc.6 → 18.0.0-rc.8
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/_virtual/index.cjs10.js +1 -1
- package/_virtual/index.cjs11.js +1 -1
- package/_virtual/index.cjs12.js +1 -1
- package/_virtual/index.cjs13.js +1 -1
- package/_virtual/index.cjs5.js +1 -1
- package/_virtual/index.cjs6.js +1 -1
- package/_virtual/index.cjs7.js +1 -1
- package/_virtual/index.cjs8.js +1 -1
- package/_virtual/index.cjs9.js +1 -1
- package/_virtual/index.es10.js +1 -1
- package/_virtual/index.es11.js +1 -1
- package/_virtual/index.es12.js +1 -1
- package/_virtual/index.es13.js +4 -2
- package/_virtual/index.es14.js +2 -2
- package/_virtual/index.es5.js +2 -4
- package/_virtual/index.es6.js +1 -1
- package/_virtual/index.es7.js +1 -1
- package/_virtual/index.es8.js +1 -1
- package/_virtual/index.es9.js +1 -1
- package/bundle-stats.html +1 -1
- package/external/@mui/system/colorManipulator.cjs.js +1 -1
- package/external/@mui/system/colorManipulator.es.js +2 -2
- package/external/@mui/system/createStyled.cjs.js +1 -1
- package/external/@mui/system/createStyled.es.js +6 -6
- package/external/@mui/system/useThemeWithoutDefault.cjs.js +1 -1
- package/external/@mui/system/useThemeWithoutDefault.es.js +1 -1
- package/external/hoist-non-react-statics/external/react-is/cjs/react-is.development.cjs.js +1 -1
- package/external/hoist-non-react-statics/external/react-is/cjs/react-is.development.es.js +1 -1
- package/external/hoist-non-react-statics/external/react-is/cjs/react-is.production.min.cjs.js +1 -1
- package/external/hoist-non-react-statics/external/react-is/cjs/react-is.production.min.es.js +1 -1
- package/external/hoist-non-react-statics/external/react-is/index.cjs.js +1 -1
- package/external/hoist-non-react-statics/external/react-is/index.es.js +1 -1
- package/external/prop-types/external/react-is/cjs/react-is.development.cjs.js +1 -1
- package/external/prop-types/external/react-is/cjs/react-is.development.es.js +1 -1
- package/external/prop-types/external/react-is/cjs/react-is.production.min.cjs.js +1 -1
- package/external/prop-types/external/react-is/cjs/react-is.production.min.es.js +1 -1
- package/external/prop-types/external/react-is/index.cjs.js +1 -1
- package/external/prop-types/external/react-is/index.es.js +1 -1
- package/external/react-is/index.cjs.js +1 -1
- package/external/react-is/index.es.js +1 -1
- package/external/toposort/index.cjs.js +1 -1
- package/external/toposort/index.es.js +1 -1
- package/index.css +1 -1
- package/package.json +1 -1
- package/src/tedi/components/layout/mobile-nav/components/mobile-nav-toggle/mobile-nav-toggle.cjs.js +1 -0
- package/src/tedi/components/layout/mobile-nav/components/mobile-nav-toggle/mobile-nav-toggle.d.ts +52 -0
- package/src/tedi/components/layout/mobile-nav/components/mobile-nav-toggle/mobile-nav-toggle.es.js +68 -0
- package/src/tedi/components/layout/mobile-nav/components/mobile-nav-toggle/mobile-nav-toggle.module.scss.cjs.js +1 -0
- package/src/tedi/components/layout/mobile-nav/components/mobile-nav-toggle/mobile-nav-toggle.module.scss.es.js +9 -0
- package/src/tedi/components/layout/mobile-nav/index.d.ts +2 -0
- package/src/tedi/components/layout/mobile-nav/mobile-nav.cjs.js +1 -0
- package/src/tedi/components/layout/mobile-nav/mobile-nav.d.ts +20 -0
- package/src/tedi/components/layout/{sidenav/components/sidenav-mobile/sidenav-mobile.es.js → mobile-nav/mobile-nav.es.js} +21 -20
- package/src/tedi/components/layout/sidenav/index.d.ts +2 -2
- package/src/tedi/components/layout/sidenav/sidenav.cjs.js +1 -1
- package/src/tedi/components/layout/sidenav/sidenav.d.ts +2 -11
- package/src/tedi/components/layout/sidenav/sidenav.es.js +27 -27
- package/src/tedi/components/layout/top-nav/components/top-nav-group/top-nav-group.cjs.js +1 -0
- package/src/tedi/components/layout/top-nav/components/top-nav-group/top-nav-group.d.ts +34 -0
- package/src/tedi/components/layout/top-nav/components/top-nav-group/top-nav-group.es.js +33 -0
- package/src/tedi/components/layout/top-nav/components/top-nav-item/top-nav-item.cjs.js +1 -0
- package/src/tedi/components/layout/top-nav/components/top-nav-item/top-nav-item.d.ts +66 -0
- package/src/tedi/components/layout/top-nav/components/top-nav-item/top-nav-item.es.js +101 -0
- package/src/tedi/components/layout/top-nav/components/top-nav-separator/top-nav-separator.cjs.js +1 -0
- package/src/tedi/components/layout/top-nav/components/top-nav-separator/top-nav-separator.d.ts +11 -0
- package/src/tedi/components/layout/top-nav/components/top-nav-separator/top-nav-separator.es.js +9 -0
- package/src/tedi/components/layout/top-nav/components/top-nav-subitem/top-nav-subitem.cjs.js +1 -0
- package/src/tedi/components/layout/top-nav/components/top-nav-subitem/top-nav-subitem.d.ts +28 -0
- package/src/tedi/components/layout/top-nav/components/top-nav-subitem/top-nav-subitem.es.js +30 -0
- package/src/tedi/components/layout/top-nav/index.d.ts +5 -0
- package/src/tedi/components/layout/top-nav/top-nav-context.cjs.js +1 -0
- package/src/tedi/components/layout/top-nav/top-nav-context.d.ts +11 -0
- package/src/tedi/components/layout/top-nav/top-nav-context.es.js +6 -0
- package/src/tedi/components/layout/top-nav/top-nav.cjs.js +1 -0
- package/src/tedi/components/layout/top-nav/top-nav.d.ts +91 -0
- package/src/tedi/components/layout/top-nav/top-nav.es.js +171 -0
- package/src/tedi/components/layout/top-nav/top-nav.module.scss.cjs.js +1 -0
- package/src/tedi/components/layout/top-nav/top-nav.module.scss.es.js +28 -0
- package/src/tedi/components/overlays/overlay/overlay-content.cjs.js +1 -1
- package/src/tedi/components/overlays/overlay/overlay-content.es.js +35 -32
- package/src/tedi/helpers/hooks/use-breakpoint.cjs.js +1 -1
- package/src/tedi/helpers/hooks/use-breakpoint.d.ts +7 -0
- package/src/tedi/helpers/hooks/use-breakpoint.es.js +22 -14
- package/src/tedi/index.d.ts +2 -0
- package/tedi.cjs.js +1 -1
- package/tedi.es.js +213 -200
- package/src/tedi/components/layout/sidenav/components/sidenav-mobile/sidenav-mobile.cjs.js +0 -1
- package/src/tedi/components/layout/sidenav/components/sidenav-mobile/sidenav-mobile.d.ts +0 -14
- package/src/tedi/components/layout/sidenav/components/sidenav-toggle/sidenav-toggle.cjs.js +0 -1
- package/src/tedi/components/layout/sidenav/components/sidenav-toggle/sidenav-toggle.d.ts +0 -31
- package/src/tedi/components/layout/sidenav/components/sidenav-toggle/sidenav-toggle.es.js +0 -48
- package/src/tedi/components/layout/sidenav/components/sidenav-toggle/sidenav-toggle.module.scss.cjs.js +0 -1
- package/src/tedi/components/layout/sidenav/components/sidenav-toggle/sidenav-toggle.module.scss.es.js +0 -8
package/tedi.es.js
CHANGED
|
@@ -8,22 +8,22 @@ import { Truncate as u } from "./src/tedi/components/content/truncate/truncate.e
|
|
|
8
8
|
import { Calendar as c } from "./src/tedi/components/content/calendar/calendar.es.js";
|
|
9
9
|
import { Spinner as b } from "./src/tedi/components/loaders/spinner/spinner.es.js";
|
|
10
10
|
import { Tag as S } from "./src/tedi/components/tags/tag/tag.es.js";
|
|
11
|
-
import { StatusBadge as
|
|
12
|
-
import { StatusIndicator as
|
|
11
|
+
import { StatusBadge as I } from "./src/tedi/components/tags/status-badge/status-badge.es.js";
|
|
12
|
+
import { StatusIndicator as B } from "./src/tedi/components/tags/status-indicator/status-indicator.es.js";
|
|
13
13
|
import { ClosingButton as M } from "./src/tedi/components/buttons/closing-button/closing-button.es.js";
|
|
14
|
-
import { Button as
|
|
15
|
-
import { InfoButton as
|
|
16
|
-
import { FloatingButton as
|
|
17
|
-
import { ButtonGroup as
|
|
14
|
+
import { Button as h } from "./src/tedi/components/buttons/button/button.es.js";
|
|
15
|
+
import { InfoButton as G } from "./src/tedi/components/buttons/info-button/info-button.es.js";
|
|
16
|
+
import { FloatingButton as k } from "./src/tedi/components/buttons/floating-button/floating-button.es.js";
|
|
17
|
+
import { ButtonGroup as H } from "./src/tedi/components/buttons/button-group/button-group.es.js";
|
|
18
18
|
import { Collapse as A } from "./src/tedi/components/buttons/collapse/collapse.es.js";
|
|
19
|
-
import { Alert as
|
|
20
|
-
import { sendNotification as
|
|
21
|
-
import { HashTrigger as
|
|
22
|
-
import { Link as
|
|
23
|
-
import { TextField as
|
|
24
|
-
import { TextArea as
|
|
25
|
-
import { NumberField as
|
|
26
|
-
import { Toggle as
|
|
19
|
+
import { Alert as E } from "./src/tedi/components/notifications/alert/alert.es.js";
|
|
20
|
+
import { sendNotification as W } from "./src/tedi/components/notifications/toast/toast.es.js";
|
|
21
|
+
import { HashTrigger as O } from "./src/tedi/components/navigation/hash-trigger/hash-trigger.es.js";
|
|
22
|
+
import { Link as K } from "./src/tedi/components/navigation/link/link.es.js";
|
|
23
|
+
import { TextField as j } from "./src/tedi/components/form/textfield/textfield.es.js";
|
|
24
|
+
import { TextArea as J } from "./src/tedi/components/form/textarea/textarea.es.js";
|
|
25
|
+
import { NumberField as X } from "./src/tedi/components/form/number-field/number-field.es.js";
|
|
26
|
+
import { Toggle as Z } from "./src/tedi/components/form/toggle/toggle.es.js";
|
|
27
27
|
import { FeedbackText as oo } from "./src/tedi/components/form/feedback-text/feedback-text.es.js";
|
|
28
28
|
import { Search as eo } from "./src/tedi/components/form/search/search.es.js";
|
|
29
29
|
import { Radio as po } from "./src/tedi/components/form/radio/radio.es.js";
|
|
@@ -34,21 +34,21 @@ import { TimeField as so } from "./src/tedi/components/form/time-field/time-fiel
|
|
|
34
34
|
import { TimePicker as To } from "./src/tedi/components/form/time-picker/time-picker.es.js";
|
|
35
35
|
import { Checkbox as Co } from "./src/tedi/components/form/checkbox/checkbox.es.js";
|
|
36
36
|
import { Slider as go } from "./src/tedi/components/form/slider/slider.es.js";
|
|
37
|
-
import { DateField as
|
|
38
|
-
import { Field as
|
|
39
|
-
import { Separator as
|
|
40
|
-
import { Print as
|
|
41
|
-
import { StretchContent as
|
|
42
|
-
import { ScrollVisibility as
|
|
43
|
-
import { ScrollFade as
|
|
44
|
-
import { Affix as
|
|
37
|
+
import { DateField as vo } from "./src/tedi/components/form/date-field/date-field.es.js";
|
|
38
|
+
import { Field as Po } from "./src/tedi/components/form/field/field.es.js";
|
|
39
|
+
import { Separator as Fo } from "./src/tedi/components/misc/separator/separator.es.js";
|
|
40
|
+
import { Print as No } from "./src/tedi/components/misc/print/print.es.js";
|
|
41
|
+
import { StretchContent as Do } from "./src/tedi/components/misc/stretch-content/stretch-content.es.js";
|
|
42
|
+
import { ScrollVisibility as Lo } from "./src/tedi/components/misc/scroll-visibility/scroll-visibility.es.js";
|
|
43
|
+
import { ScrollFade as wo } from "./src/tedi/components/misc/scroll-fade/scroll-fade.es.js";
|
|
44
|
+
import { Affix as yo } from "./src/tedi/components/misc/affix/affix.es.js";
|
|
45
45
|
import { Ellipsis as Ro } from "./src/tedi/components/misc/ellipsis/ellipsis.es.js";
|
|
46
|
-
import { StyleProvider as
|
|
47
|
-
import { AccessibilityContext as
|
|
48
|
-
import { useDeclareLoader as
|
|
49
|
-
import { ThemeProvider as
|
|
50
|
-
import { PrintingProvider as
|
|
51
|
-
import { List as
|
|
46
|
+
import { StyleProvider as Vo } from "./src/tedi/providers/style-provider/style-provider.es.js";
|
|
47
|
+
import { AccessibilityContext as zo, AccessibilityProvider as Oo } from "./src/tedi/providers/accessibility-provider/accessibility-provider.es.js";
|
|
48
|
+
import { useDeclareLoader as Ko } from "./src/tedi/providers/accessibility-provider/use-declare-loader.es.js";
|
|
49
|
+
import { ThemeProvider as jo, useTheme as qo } from "./src/tedi/providers/theme-provider/theme-provider.es.js";
|
|
50
|
+
import { PrintingProvider as Qo, usePrint as Xo } from "./src/tedi/providers/printing-provider/printing-provider.es.js";
|
|
51
|
+
import { List as Zo } from "./src/tedi/components/content/list/list.es.js";
|
|
52
52
|
import { ListItem as or } from "./src/tedi/components/content/list/list-item.es.js";
|
|
53
53
|
import { Table as er, groupRowSpan as tr } from "./src/tedi/components/content/table/table.es.js";
|
|
54
54
|
import { TableContext as xr, useTableContext as mr } from "./src/tedi/components/content/table/table-context.es.js";
|
|
@@ -59,214 +59,227 @@ import { TableToolbar as ur } from "./src/tedi/components/content/table/table-to
|
|
|
59
59
|
import { TextGroup as cr } from "./src/tedi/components/content/text-group/text-group.es.js";
|
|
60
60
|
import { TextGroupList as br } from "./src/tedi/components/content/text-group/text-group-list/text-group-list.es.js";
|
|
61
61
|
import { Skeleton as Sr } from "./src/tedi/components/loaders/skeleton/skeleton.es.js";
|
|
62
|
-
import { SkeletonBlock as
|
|
63
|
-
import { VerticalSpacing as
|
|
62
|
+
import { SkeletonBlock as Ir } from "./src/tedi/components/loaders/skeleton/skeleton-block/skeleton-block.es.js";
|
|
63
|
+
import { VerticalSpacing as Br } from "./src/tedi/components/layout/vertical-spacing/vertical-spacing.es.js";
|
|
64
64
|
import { VerticalSpacingItem as Mr } from "./src/tedi/components/layout/vertical-spacing/vertical-spacing-item.es.js";
|
|
65
|
-
import { Row as
|
|
66
|
-
import { Col as
|
|
67
|
-
import {
|
|
68
|
-
import {
|
|
69
|
-
import {
|
|
70
|
-
import {
|
|
71
|
-
import {
|
|
72
|
-
import {
|
|
73
|
-
import {
|
|
74
|
-
import {
|
|
75
|
-
import {
|
|
76
|
-
import {
|
|
77
|
-
import {
|
|
78
|
-
import {
|
|
79
|
-
import {
|
|
80
|
-
import {
|
|
81
|
-
import {
|
|
82
|
-
import {
|
|
83
|
-
import {
|
|
84
|
-
import {
|
|
85
|
-
import {
|
|
86
|
-
import {
|
|
87
|
-
import {
|
|
88
|
-
import {
|
|
89
|
-
import {
|
|
90
|
-
import {
|
|
91
|
-
import {
|
|
92
|
-
import {
|
|
93
|
-
import {
|
|
94
|
-
import {
|
|
95
|
-
import {
|
|
96
|
-
import {
|
|
97
|
-
import {
|
|
98
|
-
import {
|
|
99
|
-
import {
|
|
100
|
-
import {
|
|
101
|
-
import {
|
|
102
|
-
import {
|
|
103
|
-
import {
|
|
104
|
-
import {
|
|
105
|
-
import {
|
|
106
|
-
import {
|
|
107
|
-
import {
|
|
108
|
-
import {
|
|
109
|
-
import {
|
|
110
|
-
import {
|
|
111
|
-
import {
|
|
112
|
-
import {
|
|
113
|
-
import {
|
|
114
|
-
import {
|
|
115
|
-
import {
|
|
116
|
-
import {
|
|
117
|
-
import {
|
|
118
|
-
import {
|
|
119
|
-
import {
|
|
120
|
-
import {
|
|
121
|
-
import {
|
|
122
|
-
import {
|
|
123
|
-
import {
|
|
124
|
-
import {
|
|
125
|
-
import {
|
|
126
|
-
import {
|
|
127
|
-
import {
|
|
65
|
+
import { Row as hr } from "./src/tedi/components/layout/grid/row.es.js";
|
|
66
|
+
import { Col as Gr } from "./src/tedi/components/layout/grid/col.es.js";
|
|
67
|
+
import { TopNavGroup as kr } from "./src/tedi/components/layout/top-nav/components/top-nav-group/top-nav-group.es.js";
|
|
68
|
+
import { TopNavItem as Hr } from "./src/tedi/components/layout/top-nav/components/top-nav-item/top-nav-item.es.js";
|
|
69
|
+
import { TopNavSeparator as Ar } from "./src/tedi/components/layout/top-nav/components/top-nav-separator/top-nav-separator.es.js";
|
|
70
|
+
import { TopNavSubItem as Er } from "./src/tedi/components/layout/top-nav/components/top-nav-subitem/top-nav-subitem.es.js";
|
|
71
|
+
import { TopNav as Wr } from "./src/tedi/components/layout/top-nav/top-nav.es.js";
|
|
72
|
+
import { MobileNav as Or, SideNavMobile as Ur } from "./src/tedi/components/layout/mobile-nav/mobile-nav.es.js";
|
|
73
|
+
import { MobileNavToggle as _r, SidenavToggle as jr } from "./src/tedi/components/layout/mobile-nav/components/mobile-nav-toggle/mobile-nav-toggle.es.js";
|
|
74
|
+
import { EmptyState as Jr } from "./src/tedi/components/misc/empty-state/empty-state.es.js";
|
|
75
|
+
import { ToastContainer as Xr } from "./external/react-toastify/dist/index.es.js";
|
|
76
|
+
import { Card as Zr } from "./src/tedi/components/cards/card/card.es.js";
|
|
77
|
+
import { CardHeader as oe } from "./src/tedi/components/cards/card/card-header/card-header.es.js";
|
|
78
|
+
import { CardNotification as ee } from "./src/tedi/components/cards/card/card-notification/card-notification.es.js";
|
|
79
|
+
import { CardContent as pe } from "./src/tedi/components/cards/card/card-content/card-content.es.js";
|
|
80
|
+
import { Breadcrumbs as me } from "./src/tedi/components/navigation/breadcrumbs/breadcrumbs.es.js";
|
|
81
|
+
import { Pagination as ae } from "./src/tedi/components/navigation/pagination/pagination.es.js";
|
|
82
|
+
import { usePagination as ne } from "./src/tedi/components/navigation/pagination/use-pagination.es.js";
|
|
83
|
+
import { Tabs as se } from "./src/tedi/components/navigation/tabs/tabs.es.js";
|
|
84
|
+
import { TabsContext as ue, useTabsContext as Te } from "./src/tedi/components/navigation/tabs/tabs-context.es.js";
|
|
85
|
+
import { TabsList as Ce } from "./src/tedi/components/navigation/tabs/tabs-list/tabs-list.es.js";
|
|
86
|
+
import { TabsTrigger as ge } from "./src/tedi/components/navigation/tabs/tabs-trigger/tabs-trigger.es.js";
|
|
87
|
+
import { TabsContent as ve } from "./src/tedi/components/navigation/tabs/tabs-content/tabs-content.es.js";
|
|
88
|
+
import { ChoiceGroup as Pe } from "./src/tedi/components/form/choice-group/choice-group.es.js";
|
|
89
|
+
import { ChoiceGroupContext as Fe } from "./src/tedi/components/form/choice-group/choice-group-context.es.js";
|
|
90
|
+
import { ChoiceGroupItem as Ne } from "./src/tedi/components/form/choice-group/components/choice-group-item/choice-group-item.es.js";
|
|
91
|
+
import { Filter as De } from "./src/tedi/components/filter/filter/filter.es.js";
|
|
92
|
+
import { FilterGroup as Le } from "./src/tedi/components/filter/filter/filter-group.es.js";
|
|
93
|
+
import { FilterGroupContext as we } from "./src/tedi/components/filter/filter/filter-group-context.es.js";
|
|
94
|
+
import { InputGroupBase as ye, useInputGroup as Ae, useOptionalInputGroup as Re } from "./src/tedi/components/form/input-group/input-group.es.js";
|
|
95
|
+
import { Prefix as Ve } from "./src/tedi/components/form/input-group/components/prefix/prefix.es.js";
|
|
96
|
+
import { Suffix as ze } from "./src/tedi/components/form/input-group/components/suffix/suffix.es.js";
|
|
97
|
+
import { Input as Ue } from "./src/tedi/components/form/input-group/components/input/input.es.js";
|
|
98
|
+
import { Tooltip as _e } from "./src/tedi/components/overlays/tooltip/tooltip.es.js";
|
|
99
|
+
import { TooltipContent as qe } from "./src/tedi/components/overlays/tooltip/tooltip-content.es.js";
|
|
100
|
+
import { TooltipTrigger as Qe } from "./src/tedi/components/overlays/tooltip/tooltip-trigger.es.js";
|
|
101
|
+
import { Popover as Ye } from "./src/tedi/components/overlays/popover/popover.es.js";
|
|
102
|
+
import { PopoverContent as $e } from "./src/tedi/components/overlays/popover/popover-content.es.js";
|
|
103
|
+
import { PopoverContext as rt } from "./src/tedi/components/overlays/popover/popover-context.es.js";
|
|
104
|
+
import { PopoverTrigger as tt } from "./src/tedi/components/overlays/popover/popover-trigger.es.js";
|
|
105
|
+
import { Dropdown as xt } from "./src/tedi/components/overlays/dropdown/dropdown.es.js";
|
|
106
|
+
import { DropdownContext as ft, useDropdownContext as at } from "./src/tedi/components/overlays/dropdown/dropdown-context.es.js";
|
|
107
|
+
import { DropdownContent as nt } from "./src/tedi/components/overlays/dropdown/dropdown-content/dropdown-content.es.js";
|
|
108
|
+
import { DropdownTrigger as st } from "./src/tedi/components/overlays/dropdown/dropdown-trigger/dropdown-trigger.es.js";
|
|
109
|
+
import { DropdownItem as ut } from "./src/tedi/components/overlays/dropdown/dropdown-item/dropdown-item.es.js";
|
|
110
|
+
import { Modal as ct } from "./src/tedi/components/overlays/modal/modal.es.js";
|
|
111
|
+
import { ModalTrigger as bt } from "./src/tedi/components/overlays/modal/modal-trigger/modal-trigger.es.js";
|
|
112
|
+
import { ModalContent as St } from "./src/tedi/components/overlays/modal/modal-content/modal-content.es.js";
|
|
113
|
+
import { ModalHeader as It } from "./src/tedi/components/overlays/modal/modal-header/modal-header.es.js";
|
|
114
|
+
import { ModalBody as Bt } from "./src/tedi/components/overlays/modal/modal-body/modal-body.es.js";
|
|
115
|
+
import { ModalFooter as Mt } from "./src/tedi/components/overlays/modal/modal-footer/modal-footer.es.js";
|
|
116
|
+
import { ModalCloser as ht } from "./src/tedi/components/overlays/modal/modal-closer/modal-closer.es.js";
|
|
117
|
+
import { ModalContext as Gt, useModal as Lt, useModalContext as kt } from "./src/tedi/components/overlays/modal/modal-context.es.js";
|
|
118
|
+
import { SideNav as Ht } from "./src/tedi/components/layout/sidenav/sidenav.es.js";
|
|
119
|
+
import { SideNavDropdown as At } from "./src/tedi/components/layout/sidenav/components/sidenav-dropdown/sidenav-dropdown.es.js";
|
|
120
|
+
import { SideNavItem as Et } from "./src/tedi/components/layout/sidenav/components/sidenav-item/sidenav-item.es.js";
|
|
121
|
+
import { useIsMounted as Wt } from "./src/tedi/helpers/hooks/use-is-mounted.es.js";
|
|
122
|
+
import { BREAKPOINT_WIDTHS as Ot, breakpoints as Ut, isBreakpointBelow as Kt, useBreakpoint as _t } from "./src/tedi/helpers/hooks/use-breakpoint.es.js";
|
|
123
|
+
import { useBreakpointProps as qt } from "./src/tedi/helpers/hooks/use-breakpoint-props.es.js";
|
|
124
|
+
import { useElementSize as Qt } from "./src/tedi/helpers/hooks/use-element-size.es.js";
|
|
125
|
+
import { useScroll as Yt } from "./src/tedi/helpers/hooks/use-scroll.es.js";
|
|
126
|
+
import { useIsTouchDevice as $t } from "./src/tedi/helpers/hooks/use-is-touch-device.es.js";
|
|
127
|
+
import { useFileUpload as rp } from "./src/tedi/helpers/hooks/use-file-upload.es.js";
|
|
128
|
+
import { useWhatInput as tp } from "./src/tedi/helpers/hooks/use-what-input.es.js";
|
|
129
|
+
import { useScrollFade as xp } from "./src/tedi/helpers/hooks/use-scroll-fade.es.js";
|
|
130
|
+
import { useLabels as fp } from "./src/tedi/providers/label-provider/use-labels.es.js";
|
|
131
|
+
import { LabelContext as ip, LabelProvider as np } from "./src/tedi/providers/label-provider/label-provider.es.js";
|
|
132
|
+
import { labelsMap as sp, validateLabelRecord as dp, validateLabelValues as up } from "./src/tedi/providers/label-provider/labels-map.es.js";
|
|
128
133
|
export {
|
|
129
|
-
|
|
130
|
-
|
|
131
|
-
|
|
132
|
-
|
|
133
|
-
|
|
134
|
-
|
|
135
|
-
|
|
134
|
+
zo as AccessibilityContext,
|
|
135
|
+
Oo as AccessibilityProvider,
|
|
136
|
+
yo as Affix,
|
|
137
|
+
E as Alert,
|
|
138
|
+
Ot as BREAKPOINT_WIDTHS,
|
|
139
|
+
me as Breadcrumbs,
|
|
140
|
+
h as Button,
|
|
141
|
+
H as ButtonGroup,
|
|
136
142
|
c as Calendar,
|
|
137
|
-
|
|
138
|
-
|
|
139
|
-
|
|
140
|
-
|
|
143
|
+
Zr as Card,
|
|
144
|
+
pe as CardContent,
|
|
145
|
+
oe as CardHeader,
|
|
146
|
+
ee as CardNotification,
|
|
141
147
|
Co as Checkbox,
|
|
142
|
-
|
|
143
|
-
|
|
144
|
-
|
|
148
|
+
Pe as ChoiceGroup,
|
|
149
|
+
Fe as ChoiceGroupContext,
|
|
150
|
+
Ne as ChoiceGroupItem,
|
|
145
151
|
M as ClosingButton,
|
|
146
|
-
|
|
152
|
+
Gr as Col,
|
|
147
153
|
A as Collapse,
|
|
148
|
-
|
|
149
|
-
|
|
150
|
-
|
|
151
|
-
|
|
152
|
-
|
|
153
|
-
|
|
154
|
+
vo as DateField,
|
|
155
|
+
xt as Dropdown,
|
|
156
|
+
nt as DropdownContent,
|
|
157
|
+
ft as DropdownContext,
|
|
158
|
+
ut as DropdownItem,
|
|
159
|
+
st as DropdownTrigger,
|
|
154
160
|
Ro as Ellipsis,
|
|
155
|
-
|
|
161
|
+
Jr as EmptyState,
|
|
156
162
|
oo as FeedbackText,
|
|
157
|
-
|
|
163
|
+
Po as Field,
|
|
158
164
|
ao as FileDropzone,
|
|
159
165
|
mo as FileUpload,
|
|
160
|
-
|
|
161
|
-
|
|
162
|
-
|
|
163
|
-
|
|
164
|
-
|
|
166
|
+
De as Filter,
|
|
167
|
+
Le as FilterGroup,
|
|
168
|
+
we as FilterGroupContext,
|
|
169
|
+
k as FloatingButton,
|
|
170
|
+
O as HashTrigger,
|
|
165
171
|
p as Heading,
|
|
166
172
|
s as HeadingWithIcon,
|
|
167
173
|
m as Icon,
|
|
168
|
-
|
|
169
|
-
|
|
170
|
-
|
|
174
|
+
G as InfoButton,
|
|
175
|
+
Ue as Input,
|
|
176
|
+
ye as InputGroupBase,
|
|
171
177
|
a as Label,
|
|
172
|
-
|
|
173
|
-
|
|
174
|
-
|
|
175
|
-
|
|
178
|
+
ip as LabelContext,
|
|
179
|
+
np as LabelProvider,
|
|
180
|
+
K as Link,
|
|
181
|
+
Zo as List,
|
|
176
182
|
or as ListItem,
|
|
177
|
-
|
|
178
|
-
|
|
179
|
-
|
|
180
|
-
|
|
181
|
-
|
|
182
|
-
|
|
183
|
-
|
|
184
|
-
|
|
185
|
-
|
|
186
|
-
|
|
187
|
-
|
|
188
|
-
|
|
189
|
-
|
|
190
|
-
|
|
191
|
-
|
|
192
|
-
|
|
193
|
-
|
|
183
|
+
Or as MobileNav,
|
|
184
|
+
_r as MobileNavToggle,
|
|
185
|
+
ct as Modal,
|
|
186
|
+
Bt as ModalBody,
|
|
187
|
+
ht as ModalCloser,
|
|
188
|
+
St as ModalContent,
|
|
189
|
+
Gt as ModalContext,
|
|
190
|
+
Mt as ModalFooter,
|
|
191
|
+
It as ModalHeader,
|
|
192
|
+
bt as ModalTrigger,
|
|
193
|
+
X as NumberField,
|
|
194
|
+
ae as Pagination,
|
|
195
|
+
Ye as Popover,
|
|
196
|
+
$e as PopoverContent,
|
|
197
|
+
rt as PopoverContext,
|
|
198
|
+
tt as PopoverTrigger,
|
|
199
|
+
Ve as Prefix,
|
|
200
|
+
No as Print,
|
|
201
|
+
Qo as PrintingProvider,
|
|
194
202
|
po as Radio,
|
|
195
|
-
|
|
196
|
-
|
|
197
|
-
|
|
203
|
+
hr as Row,
|
|
204
|
+
wo as ScrollFade,
|
|
205
|
+
Lo as ScrollVisibility,
|
|
198
206
|
eo as Search,
|
|
199
207
|
n as Section,
|
|
200
208
|
no as Select,
|
|
201
|
-
|
|
202
|
-
|
|
203
|
-
|
|
204
|
-
|
|
205
|
-
|
|
206
|
-
|
|
209
|
+
Fo as Separator,
|
|
210
|
+
Ht as SideNav,
|
|
211
|
+
At as SideNavDropdown,
|
|
212
|
+
Et as SideNavItem,
|
|
213
|
+
Ur as SideNavMobile,
|
|
214
|
+
jr as SidenavToggle,
|
|
207
215
|
Sr as Skeleton,
|
|
208
|
-
|
|
216
|
+
Ir as SkeletonBlock,
|
|
209
217
|
go as Slider,
|
|
210
218
|
b as Spinner,
|
|
211
|
-
|
|
212
|
-
|
|
213
|
-
|
|
214
|
-
|
|
215
|
-
|
|
219
|
+
I as StatusBadge,
|
|
220
|
+
B as StatusIndicator,
|
|
221
|
+
Do as StretchContent,
|
|
222
|
+
Vo as StyleProvider,
|
|
223
|
+
ze as Suffix,
|
|
216
224
|
er as Table,
|
|
217
225
|
nr as TableColumnsMenu,
|
|
218
226
|
xr as TableContext,
|
|
219
227
|
sr as TableHeaderButton,
|
|
220
228
|
ur as TableToolbar,
|
|
221
|
-
|
|
222
|
-
|
|
223
|
-
|
|
224
|
-
|
|
225
|
-
|
|
229
|
+
se as Tabs,
|
|
230
|
+
ve as TabsContent,
|
|
231
|
+
ue as TabsContext,
|
|
232
|
+
Ce as TabsList,
|
|
233
|
+
ge as TabsTrigger,
|
|
226
234
|
S as Tag,
|
|
227
235
|
e as Text,
|
|
228
|
-
|
|
229
|
-
|
|
236
|
+
J as TextArea,
|
|
237
|
+
j as TextField,
|
|
230
238
|
cr as TextGroup,
|
|
231
239
|
br as TextGroupList,
|
|
232
|
-
|
|
240
|
+
jo as ThemeProvider,
|
|
233
241
|
so as TimeField,
|
|
234
242
|
To as TimePicker,
|
|
235
|
-
|
|
236
|
-
|
|
237
|
-
|
|
238
|
-
|
|
239
|
-
|
|
243
|
+
Xr as ToastContainer,
|
|
244
|
+
Z as Toggle,
|
|
245
|
+
_e as Tooltip,
|
|
246
|
+
qe as TooltipContent,
|
|
247
|
+
Qe as TooltipTrigger,
|
|
248
|
+
Wr as TopNav,
|
|
249
|
+
kr as TopNavGroup,
|
|
250
|
+
Hr as TopNavItem,
|
|
251
|
+
Ar as TopNavSeparator,
|
|
252
|
+
Er as TopNavSubItem,
|
|
240
253
|
u as Truncate,
|
|
241
|
-
|
|
254
|
+
Br as VerticalSpacing,
|
|
242
255
|
Mr as VerticalSpacingItem,
|
|
243
|
-
|
|
256
|
+
Ut as breakpoints,
|
|
244
257
|
tr as groupRowSpan,
|
|
245
|
-
|
|
246
|
-
|
|
247
|
-
|
|
248
|
-
|
|
249
|
-
|
|
250
|
-
|
|
251
|
-
|
|
252
|
-
|
|
253
|
-
|
|
254
|
-
|
|
255
|
-
|
|
256
|
-
|
|
257
|
-
|
|
258
|
-
|
|
259
|
-
|
|
260
|
-
|
|
261
|
-
|
|
262
|
-
|
|
263
|
-
|
|
264
|
-
|
|
258
|
+
Kt as isBreakpointBelow,
|
|
259
|
+
sp as labelsMap,
|
|
260
|
+
W as sendNotification,
|
|
261
|
+
_t as useBreakpoint,
|
|
262
|
+
qt as useBreakpointProps,
|
|
263
|
+
Ko as useDeclareLoader,
|
|
264
|
+
at as useDropdownContext,
|
|
265
|
+
Qt as useElementSize,
|
|
266
|
+
rp as useFileUpload,
|
|
267
|
+
Ae as useInputGroup,
|
|
268
|
+
Wt as useIsMounted,
|
|
269
|
+
$t as useIsTouchDevice,
|
|
270
|
+
fp as useLabels,
|
|
271
|
+
Lt as useModal,
|
|
272
|
+
kt as useModalContext,
|
|
273
|
+
Re as useOptionalInputGroup,
|
|
274
|
+
ne as usePagination,
|
|
275
|
+
Xo as usePrint,
|
|
276
|
+
Yt as useScroll,
|
|
277
|
+
xp as useScrollFade,
|
|
265
278
|
mr as useTableContext,
|
|
266
279
|
ar as useTablePersistence,
|
|
267
|
-
|
|
268
|
-
|
|
269
|
-
|
|
270
|
-
|
|
271
|
-
|
|
280
|
+
Te as useTabsContext,
|
|
281
|
+
qo as useTheme,
|
|
282
|
+
tp as useWhatInput,
|
|
283
|
+
dp as validateLabelRecord,
|
|
284
|
+
up as validateLabelValues
|
|
272
285
|
};
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
"use strict";Object.defineProperty(exports,Symbol.toStringTag,{value:"Module"});const t=require("react/jsx-runtime"),H=require("../../../../../../../external/@floating-ui/react/dist/floating-ui.react.cjs.js"),l=require("../../../../../../../external/classnames/index.cjs.js"),m=require("react"),d=require("../../../../base/icon/icon.cjs.js"),f=require("../../../../buttons/button/button.cjs.js"),n=require("../../sidenav.module.scss.cjs.js"),q=require("../sidenav-item/sidenav-item.cjs.js"),U=require("../../../../../providers/label-provider/use-labels.cjs.js"),D=({navItems:h,ariaLabel:y,linkAs:v,isOpen:M,onClose:r,showOverlay:w=!0,id:B,className:G})=>{var k,g,p,I,S,C,L;const{getLabel:b}=U.useLabels(),[s,c]=m.useState([{items:h}]);m.useEffect(()=>{c([{items:h}])},[h]);const a=s[s.length-1],P=s.length===1,x=e=>{var _;const i=!!(e.subItems||e.subItemGroups),o=!!(e.href||e.to);if(!i){r();return}const u=((_=e.subItemGroups)==null?void 0:_.flatMap(E=>E.subItems))||e.subItems||[];c([...s,{items:u,parent:e,renderParentLink:o}])},R=()=>{c(s.slice(0,-1))},T=()=>{c([s[0]])},z=((g=(k=a.parent)==null?void 0:k.subItems)==null?void 0:g.length)??((I=(p=a.parent)==null?void 0:p.subItemGroups)==null?void 0:I.length),F=s.length>1&&!(a.renderParentLink&&z),N=(e,i)=>i===1?!(e.subItems||e.subItemGroups)?t.jsx(q.SideNavItem,{...e,as:v,level:i,onItemClick:r,className:l.default(n.default["tedi-sidenav__item--mobile"],e.className)}):t.jsx("li",{className:l.default(n.default["tedi-sidenav__item"],n.default["tedi-sidenav__item--mobile"]),children:t.jsxs("button",{onClick:()=>x(e),className:n.default["tedi-sidenav__link"],children:[e.icon&&t.jsx(d.Icon,{name:typeof e.icon=="string"?e.icon:e.icon.name,color:"white",className:n.default["tedi-sidenav__icon"]}),t.jsx("span",{className:n.default["tedi-sidenav__title"],children:e.children}),t.jsx(d.Icon,{name:"expand_more",color:"white",className:n.default["tedi-sidenav__toggle-icon"]})]})}):O(e,i),O=(e,i)=>{const o=!!(e.href||e.to),u=!!(e.subItems||e.subItemGroups);return o?t.jsx(q.SideNavItem,{...e,as:v,level:i,icon:void 0,onItemClick:r,className:l.default(n.default["tedi-sidenav__sub-item"],e.className)}):t.jsx("li",{className:l.default(n.default["tedi-sidenav__item"]),children:t.jsxs(f.Button,{noStyle:!0,onClick:()=>u?x(e):r(),className:n.default["tedi-sidenav__link"],children:[t.jsx("span",{className:n.default["tedi-sidenav__title"],children:e.children}),u?t.jsx(d.Icon,{name:"expand_more",color:"white",className:n.default["tedi-sidenav__toggle-icon"]}):null]})})},j=t.jsxs("nav",{"data-name":"mobile-sidenav",className:l.default(n.default["tedi-sidenav"],n.default["tedi-sidenav--mobile"],G),"aria-label":y,id:B,children:[t.jsx("div",{className:n.default["tedi-sidenav__list"],children:!P&&t.jsxs("div",{className:n.default["tedi-sidenav__back-buttons"],children:[s.length>1&&t.jsxs(f.Button,{noStyle:!0,onClick:T,className:l.default(n.default["tedi-sidenav__link"],n.default["tedi-sidenav__back-button"]),children:[t.jsx(d.Icon,{name:"arrow_back",size:16,color:"white"}),t.jsx("span",{children:b("sidenav.backToMainMenu")})]}),s.length>2&&t.jsxs(f.Button,{noStyle:!0,onClick:R,className:l.default(n.default["tedi-sidenav__link"],n.default["tedi-sidenav__back-button"]),children:[t.jsx(d.Icon,{name:"arrow_back",size:16,color:"white"}),t.jsx("span",{children:((C=(S=s[s.length-1])==null?void 0:S.parent)==null?void 0:C.children)+" "+b("sidenav.backtoMenu")})]})]})}),F&&t.jsx("div",{className:l.default(n.default["tedi-sidenav__subheading"],n.default["tedi-sidenav__subheading--mobile"]),children:(L=a.parent)==null?void 0:L.children}),t.jsxs("ul",{className:n.default["tedi-sidenav__list"],role:"menubar",children:[a.renderParentLink&&a.parent&&t.jsx("li",{className:n.default["tedi-sidenav__list-item"],children:t.jsx("div",{className:l.default(n.default["tedi-sidenav__collapse"]),children:N(a.parent,s.length)})}),!a.renderParentLink&&a.items.map((e,i)=>t.jsx(m.Fragment,{children:N(e,s.length)},e.id||i))]})]});return M?w?t.jsx(H.FloatingOverlay,{style:{top:"0",position:"relative",height:"100%"},className:n.default["tedi-sidenav__overlay"],children:j}):j:null};exports.SideNavMobile=D;
|
|
@@ -1,14 +0,0 @@
|
|
|
1
|
-
import { default as React } from 'react';
|
|
2
|
-
import { SideNavItemProps } from '../sidenav-item/sidenav-item';
|
|
3
|
-
type SideNavMobileProps<C extends React.ElementType = 'a'> = {
|
|
4
|
-
navItems: SideNavItemProps<C>[];
|
|
5
|
-
ariaLabel: string;
|
|
6
|
-
linkAs?: C;
|
|
7
|
-
isOpen: boolean;
|
|
8
|
-
onClose: () => void;
|
|
9
|
-
showOverlay?: boolean;
|
|
10
|
-
id?: string;
|
|
11
|
-
className?: string;
|
|
12
|
-
};
|
|
13
|
-
export declare const SideNavMobile: <C extends React.ElementType = "a">({ navItems, ariaLabel, linkAs, isOpen, onClose, showOverlay, id, className, }: SideNavMobileProps<C>) => import("react/jsx-runtime").JSX.Element | null;
|
|
14
|
-
export {};
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
"use strict";Object.defineProperties(exports,{__esModule:{value:!0},[Symbol.toStringTag]:{value:"Module"}});const p=require("react/jsx-runtime"),b=require("../../../../../../../external/classnames/index.cjs.js"),_=require("../../../../buttons/button/button.cjs.js"),y=require("../../../../buttons/floating-button/floating-button.cjs.js"),o=require("./sidenav-toggle.module.scss.cjs.js"),m=require("../../../../../providers/label-provider/use-labels.cjs.js"),i=({menuOpen:l,toggleMenu:s,referenceRef:n,getReferenceProps:a=()=>({}),variant:e="mobile",className:c})=>{const{getLabel:d}=m.useLabels(),u=d("header.toggle",l),r=b.default(o.default["tedi-sidenav-toggle"],{[o.default["tedi-sidenav-toggle--open"]]:l,[o.default[`tedi-sidenav-toggle--${e}`]]:!0},c),g=e==="collapse"?y.FloatingButton:_.Button,f=t=>{(t.key==="Enter"||t.key===" ")&&(t.preventDefault(),s(!l))};return p.jsx(g,{...a(),ref:n,icon:{name:e==="collapse"?l?"right_panel_open":"left_panel_open":l?"close":"menu",className:o.default["tedi-sidenav-toggle__icon"],size:e==="collapse"?18:24},visualType:e==="collapse"?"secondary":"primary",className:r,onClick:()=>s(!l),onKeyDown:f,position:e==="collapse"?"absolute":"static",size:e==="collapse"?"small":"",children:u})};exports.SidenavToggle=i;exports.default=i;
|
|
@@ -1,31 +0,0 @@
|
|
|
1
|
-
import { default as React } from 'react';
|
|
2
|
-
import { UnknownType } from '../../../../../types/commonTypes';
|
|
3
|
-
export type SidenavToggleVariant = 'mobile' | 'collapse';
|
|
4
|
-
export type SidenavToggleProps = {
|
|
5
|
-
/**
|
|
6
|
-
* Is the menu open (for mobile) or expanded (for collapse)
|
|
7
|
-
*/
|
|
8
|
-
menuOpen: boolean;
|
|
9
|
-
/**
|
|
10
|
-
* Toggle open/collapse state
|
|
11
|
-
*/
|
|
12
|
-
toggleMenu: (open: boolean) => void;
|
|
13
|
-
/**
|
|
14
|
-
* Optional ref to attach to button (for floating UI etc.)
|
|
15
|
-
*/
|
|
16
|
-
referenceRef?: React.Ref<UnknownType>;
|
|
17
|
-
/**
|
|
18
|
-
* Optional props passed from floating UI
|
|
19
|
-
*/
|
|
20
|
-
getReferenceProps?: () => UnknownType;
|
|
21
|
-
/**
|
|
22
|
-
* Variant of toggle (mobile overlay or collapse control)
|
|
23
|
-
*/
|
|
24
|
-
variant?: SidenavToggleVariant;
|
|
25
|
-
/**
|
|
26
|
-
* Add custom class to override styles
|
|
27
|
-
*/
|
|
28
|
-
className?: string;
|
|
29
|
-
};
|
|
30
|
-
export declare const SidenavToggle: ({ menuOpen, toggleMenu, referenceRef, getReferenceProps, variant, className, }: SidenavToggleProps) => import("react/jsx-runtime").JSX.Element;
|
|
31
|
-
export default SidenavToggle;
|
|
@@ -1,48 +0,0 @@
|
|
|
1
|
-
import { jsx as d } from "react/jsx-runtime";
|
|
2
|
-
import f from "../../../../../../../external/classnames/index.es.js";
|
|
3
|
-
import { Button as y } from "../../../../buttons/button/button.es.js";
|
|
4
|
-
import { FloatingButton as _ } from "../../../../buttons/floating-button/floating-button.es.js";
|
|
5
|
-
import l from "./sidenav-toggle.module.scss.es.js";
|
|
6
|
-
import { useLabels as b } from "../../../../../providers/label-provider/use-labels.es.js";
|
|
7
|
-
const L = ({
|
|
8
|
-
menuOpen: o,
|
|
9
|
-
toggleMenu: t,
|
|
10
|
-
referenceRef: i,
|
|
11
|
-
getReferenceProps: a = () => ({}),
|
|
12
|
-
variant: e = "mobile",
|
|
13
|
-
className: c
|
|
14
|
-
}) => {
|
|
15
|
-
const { getLabel: r } = b(), n = r("header.toggle", o), p = f(
|
|
16
|
-
l["tedi-sidenav-toggle"],
|
|
17
|
-
{
|
|
18
|
-
[l["tedi-sidenav-toggle--open"]]: o,
|
|
19
|
-
[l[`tedi-sidenav-toggle--${e}`]]: !0
|
|
20
|
-
},
|
|
21
|
-
c
|
|
22
|
-
), m = e === "collapse" ? _ : y, g = (s) => {
|
|
23
|
-
(s.key === "Enter" || s.key === " ") && (s.preventDefault(), t(!o));
|
|
24
|
-
};
|
|
25
|
-
return /* @__PURE__ */ d(
|
|
26
|
-
m,
|
|
27
|
-
{
|
|
28
|
-
...a(),
|
|
29
|
-
ref: i,
|
|
30
|
-
icon: {
|
|
31
|
-
name: e === "collapse" ? o ? "right_panel_open" : "left_panel_open" : o ? "close" : "menu",
|
|
32
|
-
className: l["tedi-sidenav-toggle__icon"],
|
|
33
|
-
size: e === "collapse" ? 18 : 24
|
|
34
|
-
},
|
|
35
|
-
visualType: e === "collapse" ? "secondary" : "primary",
|
|
36
|
-
className: p,
|
|
37
|
-
onClick: () => t(!o),
|
|
38
|
-
onKeyDown: g,
|
|
39
|
-
position: e === "collapse" ? "absolute" : "static",
|
|
40
|
-
size: e === "collapse" ? "small" : "",
|
|
41
|
-
children: n
|
|
42
|
-
}
|
|
43
|
-
);
|
|
44
|
-
};
|
|
45
|
-
export {
|
|
46
|
-
L as SidenavToggle,
|
|
47
|
-
L as default
|
|
48
|
-
};
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
"use strict";Object.defineProperties(exports,{__esModule:{value:!0},[Symbol.toStringTag]:{value:"Module"}});const e={"tedi-sidenav-toggle":"tedi-sidenav-toggle-5aa60f9e","tedi-sidenav-toggle__icon":"tedi-sidenav-toggle__icon-a52afb07","tedi-sidenav-toggle--collapse":"tedi-sidenav-toggle--collapse-3b54974c"};exports.default=e;
|