@vkzstudio/muza-ui 1.0.44 → 1.0.45
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/components/DataTable/DataTable.d.ts +14 -5
- package/dist/components/DataTable/DataTable.d.ts.map +1 -1
- package/dist/components/DataTable/DataTable.js +39 -39
- package/dist/components/DataTable/DataTable.stories.d.ts.map +1 -1
- package/dist/components/DropdownMenu/DropdownMenu.d.ts +38 -7
- package/dist/components/DropdownMenu/DropdownMenu.d.ts.map +1 -1
- package/dist/components/DropdownMenu/DropdownMenu.js +165 -163
- package/dist/components/DropdownMenu/DropdownMenu.stories.d.ts +3 -17
- package/dist/components/DropdownMenu/DropdownMenu.stories.d.ts.map +1 -1
- package/dist/components/ExpandableTable/ExpandableTable.d.ts +30 -11
- package/dist/components/ExpandableTable/ExpandableTable.d.ts.map +1 -1
- package/dist/components/ExpandableTable/ExpandableTable.js +100 -111
- package/dist/components/ExpandableTable/ExpandableTable.stories.d.ts +3 -1
- package/dist/components/ExpandableTable/ExpandableTable.stories.d.ts.map +1 -1
- package/dist/components/FileUpload/FileItem.d.ts +6 -0
- package/dist/components/FileUpload/FileItem.d.ts.map +1 -1
- package/dist/components/FileUpload/FileItem.js +38 -41
- package/dist/components/FileUpload/FileUpload.d.ts +32 -0
- package/dist/components/FileUpload/FileUpload.d.ts.map +1 -1
- package/dist/components/FileUpload/FileUpload.js +87 -83
- package/dist/components/FileUpload/FileUpload.stories.d.ts +1 -0
- package/dist/components/FileUpload/FileUpload.stories.d.ts.map +1 -1
- package/dist/components/Flex/Flex.d.ts +1 -1
- package/dist/components/Icons/CustomBadges.d.ts +14 -0
- package/dist/components/Icons/CustomBadges.d.ts.map +1 -0
- package/dist/components/Icons/CustomBadges.js +334 -0
- package/dist/components/Icons/CustomIcons.d.ts +24 -0
- package/dist/components/Icons/CustomIcons.d.ts.map +1 -1
- package/dist/components/Icons/CustomIcons.js +88 -42
- package/dist/components/Icons/CustomLogos.d.ts +29 -0
- package/dist/components/Icons/CustomLogos.d.ts.map +1 -0
- package/dist/components/Icons/CustomLogos.js +593 -0
- package/dist/components/Icons/LogosAndBadges.stories.d.ts +7 -0
- package/dist/components/Icons/LogosAndBadges.stories.d.ts.map +1 -0
- package/dist/components/Icons/index.d.ts +2 -0
- package/dist/components/Icons/index.d.ts.map +1 -1
- package/dist/components/LanguageSwitcher/LanguageSwitcher.d.ts +24 -1
- package/dist/components/LanguageSwitcher/LanguageSwitcher.d.ts.map +1 -1
- package/dist/components/LanguageSwitcher/LanguageSwitcher.js +71 -52
- package/dist/components/LanguageSwitcher/LanguageSwitcher.stories.d.ts +2 -0
- package/dist/components/LanguageSwitcher/LanguageSwitcher.stories.d.ts.map +1 -1
- package/dist/components/MultiSelect/MultiSelect.d.ts.map +1 -1
- package/dist/components/MultiSelect/MultiSelect.js +18 -17
- package/dist/components/ResponsiveLayoutTable/ResponsiveLayoutTable.d.ts +266 -0
- package/dist/components/ResponsiveLayoutTable/ResponsiveLayoutTable.d.ts.map +1 -0
- package/dist/components/ResponsiveLayoutTable/ResponsiveLayoutTable.examples.d.ts +39 -0
- package/dist/components/ResponsiveLayoutTable/ResponsiveLayoutTable.examples.d.ts.map +1 -0
- package/dist/components/ResponsiveLayoutTable/ResponsiveLayoutTable.js +134 -0
- package/dist/components/ResponsiveLayoutTable/ResponsiveLayoutTable.stories.d.ts +14 -0
- package/dist/components/ResponsiveLayoutTable/ResponsiveLayoutTable.stories.d.ts.map +1 -0
- package/dist/components/ResponsiveLayoutTable/index.d.ts +2 -0
- package/dist/components/ResponsiveLayoutTable/index.d.ts.map +1 -0
- package/dist/components/Select/Select.d.ts +20 -7
- package/dist/components/Select/Select.d.ts.map +1 -1
- package/dist/components/Select/Select.js +123 -92
- package/dist/components/Select/Select.stories.d.ts +1 -0
- package/dist/components/Select/Select.stories.d.ts.map +1 -1
- package/dist/components/Select/utils.d.ts +1 -0
- package/dist/components/Select/utils.d.ts.map +1 -1
- package/dist/components/Select/utils.js +5 -2
- package/dist/components/Toggle/Toggle.js +1 -1
- package/dist/components/ToggleCheckButton/ToggleCheckButton.d.ts +69 -0
- package/dist/components/ToggleCheckButton/ToggleCheckButton.d.ts.map +1 -0
- package/dist/components/ToggleCheckButton/ToggleCheckButton.js +64 -0
- package/dist/components/ToggleCheckButton/ToggleCheckButton.stories.d.ts +8 -0
- package/dist/components/ToggleCheckButton/ToggleCheckButton.stories.d.ts.map +1 -0
- package/dist/components/ToggleCheckButton/index.d.ts +2 -0
- package/dist/components/ToggleCheckButton/index.d.ts.map +1 -0
- package/dist/components/WebCheckoutNav/WebCheckoutNav.examples.d.ts +19 -0
- package/dist/components/WebCheckoutNav/WebCheckoutNav.examples.d.ts.map +1 -0
- package/dist/components/WebCheckoutNav/WebCheckoutNav.stories.d.ts +8 -0
- package/dist/components/WebCheckoutNav/WebCheckoutNav.stories.d.ts.map +1 -0
- package/dist/components/index.d.ts +2 -0
- package/dist/components/index.d.ts.map +1 -1
- package/dist/hooks/use-is-breakpoint.d.ts +11 -0
- package/dist/hooks/use-is-breakpoint.d.ts.map +1 -1
- package/dist/hooks/use-is-breakpoint.js +24 -13
- package/dist/index.js +236 -215
- package/dist/muza-ui.css +1 -1
- package/dist/styles/token-colors.css +64 -3
- package/dist/styles/token-sizes.css +86 -54
- package/dist/utils/cn.d.ts.map +1 -1
- package/dist/utils/cn.js +16 -5
- package/package.json +1 -1
package/dist/index.js
CHANGED
|
@@ -2,278 +2,299 @@
|
|
|
2
2
|
import { TranslationContext as t, TranslationProvider as a, useMuzaTranslationContext as n, useMuzaTranslations as p } from "./translations/TranslationContext.js";
|
|
3
3
|
import { enTranslations as m } from "./translations/locales/en.js";
|
|
4
4
|
import { csTranslations as l } from "./translations/locales/cs.js";
|
|
5
|
-
import { skTranslations as
|
|
6
|
-
import { Accordion as
|
|
5
|
+
import { skTranslations as u } from "./translations/locales/sk.js";
|
|
6
|
+
import { Accordion as g, AccordionContent as d, AccordionHeader as c, AccordionItem as I, accordionContentInnerVariants as T, accordionItemVariants as M, accordionTriggerVariants as b } from "./components/Accordion/Accordion.js";
|
|
7
7
|
import { Alert as D } from "./components/Alert/Alert.js";
|
|
8
|
-
import { Avatar as B, AvatarFallback as
|
|
9
|
-
import { Breadcrumb as
|
|
8
|
+
import { Avatar as B, AvatarFallback as L, AvatarImage as h } from "./components/Avatar/Avatar.js";
|
|
9
|
+
import { Breadcrumb as y, BreadcrumbEllipsis as k, BreadcrumbItem as w, BreadcrumbLink as R, BreadcrumbList as V, BreadcrumbPage as A, BreadcrumbSeparator as E } from "./components/Breadcrumb/Breadcrumb.js";
|
|
10
10
|
import { Button as G } from "./components/Button/Button.js";
|
|
11
|
-
import { buttonVariants as
|
|
12
|
-
import { ButtonArrow as
|
|
13
|
-
import { Calendar as
|
|
11
|
+
import { buttonVariants as F } from "./components/Button/buttonVariants.js";
|
|
12
|
+
import { ButtonArrow as O, buttonArrowVariants as X } from "./components/ButtonArrow/ButtonArrow.js";
|
|
13
|
+
import { Calendar as _, CalendarBase as N, CalendarDayButton as U } from "./components/Calendar/Calendar.js";
|
|
14
14
|
import { formatDate as Q } from "./components/Calendar/utils/formatDate.js";
|
|
15
|
-
import { formatDateRange as
|
|
16
|
-
import { Checkbox as
|
|
15
|
+
import { formatDateRange as Z } from "./components/Calendar/utils/formatDateRange.js";
|
|
16
|
+
import { Checkbox as J } from "./components/Checkbox/Checkbox.js";
|
|
17
17
|
import { Chip as $, chipVariants as oo } from "./components/Chip/Chip.js";
|
|
18
18
|
import { DatePicker as eo } from "./components/DatePicker/DatePicker.js";
|
|
19
19
|
import { Presets as ao, getDateRange as no } from "./components/DatePicker/utils/getDateRange.js";
|
|
20
|
-
import { Dialog as io, DialogClose as mo, DialogContent as
|
|
21
|
-
import { DropdownMenu as
|
|
20
|
+
import { Dialog as io, DialogClose as mo, DialogContent as so, DialogDescription as lo, DialogFooter as xo, DialogHeader as uo, DialogOverlay as fo, DialogPortal as go, DialogTitle as co, DialogTrigger as Io } from "./components/Dialog/Dialog.js";
|
|
21
|
+
import { DropdownMenu as Mo, DropdownMenuButtonItem as bo, DropdownMenuCheckboxItem as Co, DropdownMenuContent as Do, DropdownMenuItem as So, DropdownMenuPortal as Bo, DropdownMenuRadioGroup as Lo, DropdownMenuRadioItem as ho, DropdownMenuSeparator as Po, DropdownMenuTrigger as yo, dropdownMenuItemVariants as ko } from "./components/DropdownMenu/DropdownMenu.js";
|
|
22
22
|
import { EdgeButton as Ro, edgeButtonVariants as Vo } from "./components/EdgeButton/EdgeButton.js";
|
|
23
|
-
import { EmptyState as
|
|
23
|
+
import { EmptyState as Eo } from "./components/EmptyState/EmptyState.js";
|
|
24
24
|
import { FileUpload as Go } from "./components/FileUpload/FileUpload.js";
|
|
25
|
-
import { Flex as
|
|
26
|
-
import { ArrowsSorting as
|
|
25
|
+
import { Flex as Fo, flexVariants as Ho } from "./components/Flex/Flex.js";
|
|
26
|
+
import { ArrowsSorting as Xo, Barcode as Ko, BulletList as _o, CZK as No, CheckMinus as Uo, Checked as jo, Coins as Qo, Coins2Bold as Yo, Coins2Outline as Zo, Coins3 as qo, Colour as Jo, CurlyBrace as Wo, CurlyBrace2 as $o, Cutlery as or, DoubleArrowRight as rr, EUR as er, EditorBold as tr, EditorItalic as ar, EditorStrikethrough as nr, EmptyCircle as pr, ExternalLink as ir, EyeClosed as mr, Facebook as sr, Fingerprint as lr, FlagCz as xr, FlagEn as ur, FlagSk as fr, LayoutHorizontal as gr, LayoutVertical as dr, Linkedin as cr, MagnifyingGlass as Ir, MenuDotsVertical as Tr, MuzaIcon as Mr, NumberList as br, Plus as Cr, RemoveTextFormat as Dr, Reorder as Sr, SKMap as Br, Scan as Lr, Spinner as hr, TextH1 as Pr, TextH2 as yr, TextH3 as kr, XClose as wr, XTwitter as Rr, Youtube as Vr } from "./components/Icons/CustomIcons.js";
|
|
27
|
+
import { LogoMuza as Er, LogoMuzaIn as vr, LogoMuzaMarket as Gr, LogoMuzaPay as zr, LogoMuzaPayPokladna as Fr } from "./components/Icons/CustomLogos.js";
|
|
28
|
+
import { AppStoreBadge as Or, GooglePlayBadge as Xr } from "./components/Icons/CustomBadges.js";
|
|
27
29
|
export * from "@solar-icons/react-perf";
|
|
28
|
-
import { Input as
|
|
29
|
-
import { Lightbox as
|
|
30
|
-
import { Item as
|
|
31
|
-
import { LanguageSwitcher as
|
|
32
|
-
import { Loader as
|
|
33
|
-
import { LoginScreen as
|
|
34
|
-
import { LoginScreenItem as
|
|
35
|
-
import { DEFAULT_LOGIN_GLB_PATH as
|
|
36
|
-
import { MultiSelect as
|
|
37
|
-
import { useTheme as
|
|
38
|
-
import { setThemeVariables as
|
|
39
|
-
import { themePresets as
|
|
40
|
-
import { formatShadesAsObject as
|
|
41
|
-
import { MuzaUIProvider as
|
|
42
|
-
import { Pagination as
|
|
43
|
-
import { PasswordInput as
|
|
44
|
-
import { PinIndicator as
|
|
45
|
-
import { Popover as
|
|
46
|
-
import { RadioGroup as
|
|
47
|
-
import { ReorderableGroup as
|
|
48
|
-
import { ReorderableTable as
|
|
49
|
-
import { Searchbar as
|
|
50
|
-
import { Select as
|
|
51
|
-
import { SegmentedControl as
|
|
52
|
-
import { SegmentedIconControl as
|
|
53
|
-
import { SliderIndicators as
|
|
54
|
-
import { ToastContainer as
|
|
55
|
-
import { Toast as
|
|
56
|
-
import { Stepper as
|
|
57
|
-
import { SwipeButton as
|
|
58
|
-
import { Switch as
|
|
59
|
-
import { Tag as
|
|
60
|
-
import { Textarea as
|
|
61
|
-
import { TextEditor as
|
|
62
|
-
import { ToolbarButton as
|
|
63
|
-
import { ToolbarSeparator as
|
|
64
|
-
import { TimePicker as
|
|
65
|
-
import { Toggle as
|
|
66
|
-
import {
|
|
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 {
|
|
30
|
+
import { Input as Nr } from "./components/Input/Input.js";
|
|
31
|
+
import { Lightbox as jr, LightboxGalleryOnlyImage as Qr, LightboxTrigger as Yr } from "./components/Lightbox/Lightbox.js";
|
|
32
|
+
import { Item as qr } from "./node_modules/react-photoswipe-gallery/dist/item.js";
|
|
33
|
+
import { LanguageSwitcher as Wr } from "./components/LanguageSwitcher/LanguageSwitcher.js";
|
|
34
|
+
import { Loader as oe } from "./components/Loader/Loader.js";
|
|
35
|
+
import { LoginScreen as ee } from "./components/LoginScreen/LoginScreen.js";
|
|
36
|
+
import { LoginScreenItem as ae } from "./components/LoginScreen/LoginScreenItem.js";
|
|
37
|
+
import { DEFAULT_LOGIN_GLB_PATH as pe } from "./components/LoginScreen/LoginScreen3D/LoginScreen3DModel.js";
|
|
38
|
+
import { MultiSelect as me } from "./components/MultiSelect/MultiSelect.js";
|
|
39
|
+
import { useTheme as le } from "./components/MuzaUIProvider/theme/ThemeProvider.js";
|
|
40
|
+
import { setThemeVariables as ue } from "./components/MuzaUIProvider/theme/setThemeVariables.js";
|
|
41
|
+
import { themePresets as ge } from "./components/MuzaUIProvider/theme/themePresets.js";
|
|
42
|
+
import { formatShadesAsObject as ce, generateColorShades as Ie } from "./components/MuzaUIProvider/theme/colorShades.js";
|
|
43
|
+
import { MuzaUIProvider as Me } from "./components/MuzaUIProvider/MuzaUIProvider.js";
|
|
44
|
+
import { Pagination as Ce } from "./components/Pagination/Pagination.js";
|
|
45
|
+
import { PasswordInput as Se } from "./components/PasswordInput/PasswordInput.js";
|
|
46
|
+
import { PinIndicator as Le } from "./components/PinIndicator/PinIndicator.js";
|
|
47
|
+
import { Popover as Pe, PopoverContent as ye, PopoverTrigger as ke } from "./components/Popover/Popover.js";
|
|
48
|
+
import { RadioGroup as Re, RadioGroupItem as Ve } from "./components/Radio/Radio.js";
|
|
49
|
+
import { ReorderableGroup as Ee, ReorderableHandle as ve, ReorderableItem as Ge, ReorderableStaticItem as ze, useReorderableGroup as Fe, useReorderableItem as He } from "./components/Reorderable/Reorderable.js";
|
|
50
|
+
import { ReorderableTable as Xe } from "./components/ReorderableTable/ReorderableTable.js";
|
|
51
|
+
import { Searchbar as _e } from "./components/Searchbar/Searchbar.js";
|
|
52
|
+
import { Select as Ue } from "./components/Select/Select.js";
|
|
53
|
+
import { SegmentedControl as Qe, SegmentedControlItem as Ye } from "./components/SegmentedControl/SegmentedControl.js";
|
|
54
|
+
import { SegmentedIconControl as qe, SegmentedIconControlItem as Je } from "./components/SegmentedIconControl/SegmentedIconControl.js";
|
|
55
|
+
import { SliderIndicators as $e } from "./components/SliderIndicators/SliderIndicators.js";
|
|
56
|
+
import { ToastContainer as rt } from "./components/Toast/ToastContainer.js";
|
|
57
|
+
import { Toast as tt, toast as at } from "./components/Toast/Toast.js";
|
|
58
|
+
import { Stepper as pt } from "./components/Stepper/Stepper.js";
|
|
59
|
+
import { SwipeButton as mt } from "./components/SwipeButton/SwipeButton.js";
|
|
60
|
+
import { Switch as lt } from "./components/Switch/Switch.js";
|
|
61
|
+
import { Tag as ut, tagVariants as ft } from "./components/Tag/Tag.js";
|
|
62
|
+
import { Textarea as dt } from "./components/Textarea/Textarea.js";
|
|
63
|
+
import { TextEditor as It } from "./components/TextEditor/TextEditor.js";
|
|
64
|
+
import { ToolbarButton as Mt, toolbarButtonVariants as bt } from "./components/TextEditor/ToolbarButton.js";
|
|
65
|
+
import { ToolbarSeparator as Dt } from "./components/TextEditor/ToolbarSeparator.js";
|
|
66
|
+
import { TimePicker as Bt } from "./components/TimePicker/TimePicker.js";
|
|
67
|
+
import { Toggle as ht, toggleVariants as Pt } from "./components/Toggle/Toggle.js";
|
|
68
|
+
import { ToggleCheckButton as kt, toggleCheckButtonVariants as wt } from "./components/ToggleCheckButton/ToggleCheckButton.js";
|
|
69
|
+
import { ToggleGroup as Vt, ToggleGroupItem as At } from "./components/ToggleGroup/ToggleGroup.js";
|
|
70
|
+
import { Tooltip as vt, TooltipContent as Gt, TooltipProvider as zt, TooltipTrigger as Ft } from "./components/Tooltip/Tooltip.js";
|
|
71
|
+
import { Typography as Ot, typographyVariants as Xt } from "./components/Typography/Typography.js";
|
|
72
|
+
import { DataTable as _t, dataTableCellVariants as Nt } from "./components/DataTable/DataTable.js";
|
|
73
|
+
import { ExpandableTable as jt } from "./components/ExpandableTable/ExpandableTable.js";
|
|
74
|
+
import { ResponsiveLayoutTable as Yt } from "./components/ResponsiveLayoutTable/ResponsiveLayoutTable.js";
|
|
75
|
+
import { Skeleton as qt } from "./components/Skeleton/Skeleton.js";
|
|
76
|
+
import { useBreakpoints as Wt, useIsMax2xl as $t, useIsMax3xl as oa, useIsMaxLg as ra, useIsMaxMd as ea, useIsMaxSm as ta, useIsMaxXl as aa, useIsMaxXs as na, useIsMin2xl as pa, useIsMin3xl as ia, useIsMinLg as ma, useIsMinMd as sa, useIsMinSm as la, useIsMinXl as xa, useIsMinXs as ua } from "./hooks/use-is-breakpoint.js";
|
|
77
|
+
import { DESKTOP_BREAKPOINT as ga, useIsDesktop as da } from "./hooks/use-is-desktop.js";
|
|
78
|
+
import { useIsMobile as Ia } from "./hooks/use-is-mobile.js";
|
|
79
|
+
import { TABLET_BREAKPOINT as Ma, useIsTablet as ba } from "./hooks/use-is-tablet.js";
|
|
80
|
+
import { useIsomorphicLayoutEffect as Da } from "./hooks/use-isomorphic-layout-effect.js";
|
|
81
|
+
import { useMediaQuery as Ba } from "./hooks/use-media-query.js";
|
|
82
|
+
import { cn as ha } from "./utils/cn.js";
|
|
83
|
+
import { getSpacingVariants as ya, spacingVariantDefinitions as ka } from "./utils/spacing.js";
|
|
80
84
|
export {
|
|
81
|
-
|
|
82
|
-
|
|
85
|
+
g as Accordion,
|
|
86
|
+
d as AccordionContent,
|
|
83
87
|
c as AccordionHeader,
|
|
84
88
|
I as AccordionItem,
|
|
85
89
|
D as Alert,
|
|
86
|
-
|
|
90
|
+
Or as AppStoreBadge,
|
|
91
|
+
Xo as ArrowsSorting,
|
|
87
92
|
B as Avatar,
|
|
88
|
-
|
|
89
|
-
|
|
90
|
-
|
|
91
|
-
|
|
92
|
-
|
|
93
|
-
|
|
93
|
+
L as AvatarFallback,
|
|
94
|
+
h as AvatarImage,
|
|
95
|
+
Ko as Barcode,
|
|
96
|
+
y as Breadcrumb,
|
|
97
|
+
k as BreadcrumbEllipsis,
|
|
98
|
+
w as BreadcrumbItem,
|
|
94
99
|
R as BreadcrumbLink,
|
|
95
100
|
V as BreadcrumbList,
|
|
96
101
|
A as BreadcrumbPage,
|
|
97
|
-
|
|
98
|
-
|
|
102
|
+
E as BreadcrumbSeparator,
|
|
103
|
+
_o as BulletList,
|
|
99
104
|
G as Button,
|
|
100
|
-
|
|
101
|
-
|
|
102
|
-
|
|
103
|
-
|
|
104
|
-
|
|
105
|
-
|
|
106
|
-
|
|
105
|
+
O as ButtonArrow,
|
|
106
|
+
No as CZK,
|
|
107
|
+
_ as Calendar,
|
|
108
|
+
N as CalendarBase,
|
|
109
|
+
U as CalendarDayButton,
|
|
110
|
+
Uo as CheckMinus,
|
|
111
|
+
J as Checkbox,
|
|
107
112
|
jo as Checked,
|
|
108
113
|
$ as Chip,
|
|
109
114
|
Qo as Coins,
|
|
110
|
-
|
|
111
|
-
|
|
112
|
-
|
|
113
|
-
|
|
114
|
-
|
|
115
|
+
Yo as Coins2Bold,
|
|
116
|
+
Zo as Coins2Outline,
|
|
117
|
+
qo as Coins3,
|
|
118
|
+
Jo as Colour,
|
|
119
|
+
Wo as CurlyBrace,
|
|
115
120
|
$o as CurlyBrace2,
|
|
116
121
|
or as Cutlery,
|
|
117
|
-
|
|
118
|
-
|
|
119
|
-
|
|
122
|
+
pe as DEFAULT_LOGIN_GLB_PATH,
|
|
123
|
+
ga as DESKTOP_BREAKPOINT,
|
|
124
|
+
_t as DataTable,
|
|
120
125
|
eo as DatePicker,
|
|
121
126
|
io as Dialog,
|
|
122
127
|
mo as DialogClose,
|
|
123
|
-
|
|
128
|
+
so as DialogContent,
|
|
124
129
|
lo as DialogDescription,
|
|
125
|
-
|
|
126
|
-
|
|
127
|
-
|
|
130
|
+
xo as DialogFooter,
|
|
131
|
+
uo as DialogHeader,
|
|
132
|
+
fo as DialogOverlay,
|
|
128
133
|
go as DialogPortal,
|
|
129
134
|
co as DialogTitle,
|
|
130
135
|
Io as DialogTrigger,
|
|
131
136
|
rr as DoubleArrowRight,
|
|
132
|
-
|
|
133
|
-
|
|
134
|
-
|
|
137
|
+
Mo as DropdownMenu,
|
|
138
|
+
bo as DropdownMenuButtonItem,
|
|
139
|
+
Co as DropdownMenuCheckboxItem,
|
|
135
140
|
Do as DropdownMenuContent,
|
|
136
141
|
So as DropdownMenuItem,
|
|
137
142
|
Bo as DropdownMenuPortal,
|
|
138
|
-
|
|
139
|
-
|
|
143
|
+
Lo as DropdownMenuRadioGroup,
|
|
144
|
+
ho as DropdownMenuRadioItem,
|
|
140
145
|
Po as DropdownMenuSeparator,
|
|
141
|
-
|
|
146
|
+
yo as DropdownMenuTrigger,
|
|
142
147
|
er as EUR,
|
|
143
148
|
Ro as EdgeButton,
|
|
144
149
|
tr as EditorBold,
|
|
145
150
|
ar as EditorItalic,
|
|
146
151
|
nr as EditorStrikethrough,
|
|
147
152
|
pr as EmptyCircle,
|
|
148
|
-
|
|
149
|
-
|
|
153
|
+
Eo as EmptyState,
|
|
154
|
+
jt as ExpandableTable,
|
|
150
155
|
ir as ExternalLink,
|
|
151
156
|
mr as EyeClosed,
|
|
157
|
+
sr as Facebook,
|
|
152
158
|
Go as FileUpload,
|
|
153
|
-
|
|
154
|
-
|
|
155
|
-
|
|
159
|
+
lr as Fingerprint,
|
|
160
|
+
xr as FlagCz,
|
|
161
|
+
ur as FlagEn,
|
|
156
162
|
fr as FlagSk,
|
|
157
|
-
|
|
158
|
-
|
|
159
|
-
|
|
160
|
-
|
|
163
|
+
Fo as Flex,
|
|
164
|
+
Xr as GooglePlayBadge,
|
|
165
|
+
Nr as Input,
|
|
166
|
+
Wr as LanguageSwitcher,
|
|
167
|
+
gr as LayoutHorizontal,
|
|
161
168
|
dr as LayoutVertical,
|
|
162
|
-
|
|
163
|
-
|
|
164
|
-
|
|
165
|
-
|
|
166
|
-
|
|
167
|
-
|
|
168
|
-
|
|
169
|
-
|
|
170
|
-
|
|
171
|
-
|
|
172
|
-
|
|
173
|
-
|
|
174
|
-
|
|
175
|
-
|
|
176
|
-
|
|
177
|
-
|
|
178
|
-
|
|
179
|
-
|
|
180
|
-
|
|
181
|
-
|
|
169
|
+
jr as Lightbox,
|
|
170
|
+
Qr as LightboxGalleryOnlyImage,
|
|
171
|
+
qr as LightboxItem,
|
|
172
|
+
Yr as LightboxTrigger,
|
|
173
|
+
cr as Linkedin,
|
|
174
|
+
oe as Loader,
|
|
175
|
+
ee as LoginScreen,
|
|
176
|
+
ae as LoginScreenItem,
|
|
177
|
+
Er as LogoMuza,
|
|
178
|
+
vr as LogoMuzaIn,
|
|
179
|
+
Gr as LogoMuzaMarket,
|
|
180
|
+
zr as LogoMuzaPay,
|
|
181
|
+
Fr as LogoMuzaPayPokladna,
|
|
182
|
+
Ir as MagnifyingGlass,
|
|
183
|
+
Tr as MenuDotsVertical,
|
|
184
|
+
me as MultiSelect,
|
|
185
|
+
Mr as MuzaIcon,
|
|
186
|
+
Me as MuzaUIProvider,
|
|
187
|
+
br as NumberList,
|
|
188
|
+
Ce as Pagination,
|
|
189
|
+
Se as PasswordInput,
|
|
190
|
+
Le as PinIndicator,
|
|
191
|
+
Cr as Plus,
|
|
192
|
+
Pe as Popover,
|
|
193
|
+
ye as PopoverContent,
|
|
194
|
+
ke as PopoverTrigger,
|
|
182
195
|
ao as Presets,
|
|
183
|
-
|
|
184
|
-
|
|
185
|
-
|
|
186
|
-
|
|
187
|
-
|
|
188
|
-
|
|
189
|
-
|
|
190
|
-
|
|
191
|
-
|
|
192
|
-
|
|
193
|
-
|
|
194
|
-
|
|
195
|
-
|
|
196
|
-
|
|
197
|
-
|
|
198
|
-
|
|
199
|
-
|
|
200
|
-
|
|
201
|
-
|
|
202
|
-
|
|
203
|
-
|
|
204
|
-
|
|
205
|
-
|
|
206
|
-
|
|
207
|
-
|
|
208
|
-
|
|
209
|
-
|
|
210
|
-
|
|
211
|
-
|
|
212
|
-
|
|
213
|
-
|
|
214
|
-
|
|
215
|
-
|
|
216
|
-
|
|
217
|
-
|
|
218
|
-
|
|
219
|
-
|
|
220
|
-
|
|
221
|
-
|
|
222
|
-
|
|
223
|
-
|
|
224
|
-
|
|
196
|
+
Re as RadioGroup,
|
|
197
|
+
Ve as RadioGroupItem,
|
|
198
|
+
Dr as RemoveTextFormat,
|
|
199
|
+
Sr as Reorder,
|
|
200
|
+
Ee as ReorderableGroup,
|
|
201
|
+
ve as ReorderableHandle,
|
|
202
|
+
Ge as ReorderableItem,
|
|
203
|
+
ze as ReorderableStaticItem,
|
|
204
|
+
Xe as ReorderableTable,
|
|
205
|
+
Yt as ResponsiveLayoutTable,
|
|
206
|
+
Br as SKMap,
|
|
207
|
+
Lr as Scan,
|
|
208
|
+
_e as Searchbar,
|
|
209
|
+
Qe as SegmentedControl,
|
|
210
|
+
Ye as SegmentedControlItem,
|
|
211
|
+
qe as SegmentedIconControl,
|
|
212
|
+
Je as SegmentedIconControlItem,
|
|
213
|
+
Ue as Select,
|
|
214
|
+
qt as Skeleton,
|
|
215
|
+
$e as SliderIndicators,
|
|
216
|
+
hr as Spinner,
|
|
217
|
+
pt as Stepper,
|
|
218
|
+
mt as SwipeButton,
|
|
219
|
+
lt as Switch,
|
|
220
|
+
Ma as TABLET_BREAKPOINT,
|
|
221
|
+
ut as Tag,
|
|
222
|
+
It as TextEditor,
|
|
223
|
+
Pr as TextH1,
|
|
224
|
+
yr as TextH2,
|
|
225
|
+
kr as TextH3,
|
|
226
|
+
dt as Textarea,
|
|
227
|
+
Bt as TimePicker,
|
|
228
|
+
tt as Toast,
|
|
229
|
+
rt as ToastContainer,
|
|
230
|
+
ht as Toggle,
|
|
231
|
+
kt as ToggleCheckButton,
|
|
232
|
+
Vt as ToggleGroup,
|
|
233
|
+
At as ToggleGroupItem,
|
|
234
|
+
Mt as ToolbarButton,
|
|
235
|
+
Dt as ToolbarSeparator,
|
|
236
|
+
vt as Tooltip,
|
|
237
|
+
Gt as TooltipContent,
|
|
238
|
+
zt as TooltipProvider,
|
|
239
|
+
Ft as TooltipTrigger,
|
|
225
240
|
t as TranslationContext,
|
|
226
241
|
a as TranslationProvider,
|
|
227
|
-
|
|
242
|
+
Ot as Typography,
|
|
228
243
|
wr as XClose,
|
|
244
|
+
Rr as XTwitter,
|
|
245
|
+
Vr as Youtube,
|
|
229
246
|
T as accordionContentInnerVariants,
|
|
230
|
-
|
|
231
|
-
|
|
232
|
-
|
|
233
|
-
|
|
247
|
+
M as accordionItemVariants,
|
|
248
|
+
b as accordionTriggerVariants,
|
|
249
|
+
X as buttonArrowVariants,
|
|
250
|
+
F as buttonVariants,
|
|
234
251
|
oo as chipVariants,
|
|
235
|
-
|
|
252
|
+
ha as cn,
|
|
236
253
|
l as csTranslations,
|
|
237
|
-
|
|
238
|
-
|
|
254
|
+
Nt as dataTableCellVariants,
|
|
255
|
+
ko as dropdownMenuItemVariants,
|
|
239
256
|
Vo as edgeButtonVariants,
|
|
240
257
|
m as enTranslations,
|
|
241
|
-
|
|
258
|
+
Ho as flexVariants,
|
|
242
259
|
Q as formatDate,
|
|
243
|
-
|
|
244
|
-
|
|
245
|
-
|
|
260
|
+
Z as formatDateRange,
|
|
261
|
+
ce as formatShadesAsObject,
|
|
262
|
+
Ie as generateColorShades,
|
|
246
263
|
no as getDateRange,
|
|
247
|
-
|
|
248
|
-
|
|
249
|
-
|
|
250
|
-
|
|
251
|
-
|
|
252
|
-
|
|
253
|
-
|
|
254
|
-
|
|
255
|
-
|
|
256
|
-
|
|
257
|
-
|
|
258
|
-
|
|
259
|
-
|
|
260
|
-
|
|
261
|
-
|
|
262
|
-
|
|
263
|
-
|
|
264
|
-
|
|
265
|
-
|
|
266
|
-
|
|
267
|
-
|
|
268
|
-
|
|
269
|
-
|
|
270
|
-
|
|
271
|
-
|
|
272
|
-
|
|
273
|
-
|
|
264
|
+
ya as getSpacingVariants,
|
|
265
|
+
ue as setThemeVariables,
|
|
266
|
+
u as skTranslations,
|
|
267
|
+
ka as spacingVariantDefinitions,
|
|
268
|
+
ft as tagVariants,
|
|
269
|
+
ge as themePresets,
|
|
270
|
+
at as toast,
|
|
271
|
+
wt as toggleCheckButtonVariants,
|
|
272
|
+
Pt as toggleVariants,
|
|
273
|
+
bt as toolbarButtonVariants,
|
|
274
|
+
Xt as typographyVariants,
|
|
275
|
+
Wt as useBreakpoints,
|
|
276
|
+
da as useIsDesktop,
|
|
277
|
+
$t as useIsMax2xl,
|
|
278
|
+
oa as useIsMax3xl,
|
|
279
|
+
ra as useIsMaxLg,
|
|
280
|
+
ea as useIsMaxMd,
|
|
281
|
+
ta as useIsMaxSm,
|
|
282
|
+
aa as useIsMaxXl,
|
|
283
|
+
na as useIsMaxXs,
|
|
284
|
+
pa as useIsMin2xl,
|
|
285
|
+
ia as useIsMin3xl,
|
|
286
|
+
ma as useIsMinLg,
|
|
287
|
+
sa as useIsMinMd,
|
|
288
|
+
la as useIsMinSm,
|
|
289
|
+
xa as useIsMinXl,
|
|
290
|
+
ua as useIsMinXs,
|
|
291
|
+
Ia as useIsMobile,
|
|
292
|
+
ba as useIsTablet,
|
|
293
|
+
Da as useIsomorphicLayoutEffect,
|
|
294
|
+
Ba as useMediaQuery,
|
|
274
295
|
n as useMuzaTranslationContext,
|
|
275
296
|
p as useMuzaTranslations,
|
|
276
|
-
|
|
277
|
-
|
|
278
|
-
|
|
297
|
+
Fe as useReorderableGroup,
|
|
298
|
+
He as useReorderableItem,
|
|
299
|
+
le as useTheme
|
|
279
300
|
};
|