@vkzstudio/muza-ui 1.0.11 → 1.0.12
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/Accordion/Accordion.d.ts +57 -4
- package/dist/components/Accordion/Accordion.d.ts.map +1 -1
- package/dist/components/Accordion/Accordion.js +1 -4
- package/dist/components/Accordion/Accordion.stories.d.ts.map +1 -1
- package/dist/components/Alert/Alert.d.ts +13 -2
- package/dist/components/Alert/Alert.d.ts.map +1 -1
- package/dist/components/Alert/Alert.js +4 -4
- package/dist/components/Alert/Alert.stories.d.ts.map +1 -1
- package/dist/components/Avatar/Avatar.d.ts +12 -1
- package/dist/components/Avatar/Avatar.d.ts.map +1 -1
- package/dist/components/Avatar/Avatar.stories.d.ts.map +1 -1
- package/dist/components/Breadcrumb/Breadcrumb.d.ts +23 -8
- package/dist/components/Breadcrumb/Breadcrumb.d.ts.map +1 -1
- package/dist/components/Breadcrumb/Breadcrumb.js +3 -12
- package/dist/components/Button/Button.d.ts +30 -0
- package/dist/components/Button/Button.d.ts.map +1 -1
- package/dist/components/Button/Button.js +1 -1
- package/dist/components/Button/Button.stories.d.ts.map +1 -1
- package/dist/components/Calendar/Calendar.d.ts +39 -3
- package/dist/components/Calendar/Calendar.d.ts.map +1 -1
- package/dist/components/Calendar/Calendar.js +1 -1
- package/dist/components/Calendar/utils/formatDate.d.ts +4 -0
- package/dist/components/Calendar/utils/formatDate.d.ts.map +1 -1
- package/dist/components/Calendar/utils/formatDateRange.d.ts +5 -0
- package/dist/components/Calendar/utils/formatDateRange.d.ts.map +1 -1
- package/dist/components/Checkbox/Checkbox.d.ts +25 -3
- package/dist/components/Checkbox/Checkbox.d.ts.map +1 -1
- package/dist/components/Checkbox/Checkbox.js +1 -1
- package/dist/components/Checkbox/Checkbox.stories.d.ts.map +1 -1
- package/dist/components/Chip/Chip.d.ts +3 -6
- package/dist/components/Chip/Chip.d.ts.map +1 -1
- package/dist/components/Chip/Chip.js +6 -6
- package/dist/components/Chip/Chip.stories.d.ts.map +1 -1
- package/dist/components/DataTable/DataTable.d.ts +40 -1
- package/dist/components/DataTable/DataTable.d.ts.map +1 -1
- package/dist/components/DataTable/DataTable.js +1 -1
- package/dist/components/DataTable/DataTable.stories.d.ts.map +1 -1
- package/dist/components/DataTable/index.d.ts +1 -1
- package/dist/components/DataTable/index.d.ts.map +1 -1
- package/dist/components/DatePicker/DatePicker.d.ts +59 -4
- package/dist/components/DatePicker/DatePicker.d.ts.map +1 -1
- package/dist/components/DatePicker/DatePicker.js +7 -7
- package/dist/components/DatePicker/DatePicker.stories.d.ts.map +1 -1
- package/dist/components/DatePicker/index.d.ts +1 -0
- package/dist/components/DatePicker/index.d.ts.map +1 -1
- package/dist/components/DatePicker/utils/getDateRange.d.ts +9 -0
- package/dist/components/DatePicker/utils/getDateRange.d.ts.map +1 -1
- package/dist/components/DatePicker/utils/getDateRange.js +28 -15
- package/dist/components/Dialog/Dialog.d.ts +39 -2
- package/dist/components/Dialog/Dialog.d.ts.map +1 -1
- package/dist/components/Dialog/Dialog.js +176 -60
- package/dist/components/Dialog/Dialog.stories.d.ts +2 -0
- package/dist/components/Dialog/Dialog.stories.d.ts.map +1 -1
- package/dist/components/DropdownMenu/DropdownMenu.d.ts +73 -11
- package/dist/components/DropdownMenu/DropdownMenu.d.ts.map +1 -1
- package/dist/components/DropdownMenu/DropdownMenu.js +2 -8
- package/dist/components/DropdownMenu/DropdownMenu.stories.d.ts +10 -26
- package/dist/components/DropdownMenu/DropdownMenu.stories.d.ts.map +1 -1
- package/dist/components/EdgeButton/EdgeButton.d.ts +18 -0
- package/dist/components/EdgeButton/EdgeButton.d.ts.map +1 -1
- package/dist/components/EdgeButton/EdgeButton.js +4 -4
- package/dist/components/EdgeButton/EdgeButton.stories.d.ts.map +1 -1
- package/dist/components/EdgeButton/index.d.ts +1 -1
- package/dist/components/EdgeButton/index.d.ts.map +1 -1
- package/dist/components/EmptyState/EmptyState.d.ts +10 -0
- package/dist/components/EmptyState/EmptyState.d.ts.map +1 -1
- package/dist/components/EmptyState/EmptyState.js +6 -6
- package/dist/components/EmptyState/EmptyState.stories.d.ts.map +1 -1
- package/dist/components/ExpandableTable/ExpandableTable.d.ts +54 -0
- package/dist/components/ExpandableTable/ExpandableTable.d.ts.map +1 -1
- package/dist/components/ExpandableTable/ExpandableTable.js +2 -2
- package/dist/components/ExpandableTable/ExpandableTable.stories.d.ts +0 -3
- package/dist/components/ExpandableTable/ExpandableTable.stories.d.ts.map +1 -1
- package/dist/components/ExpandableTable/Table.js +1 -1
- package/dist/components/ExpandableTable/index.d.ts +1 -1
- package/dist/components/ExpandableTable/index.d.ts.map +1 -1
- package/dist/components/FileUpload/FileItem.js +1 -1
- package/dist/components/FileUpload/FileUpload.d.ts +51 -0
- package/dist/components/FileUpload/FileUpload.d.ts.map +1 -1
- package/dist/components/FileUpload/FileUpload.stories.d.ts.map +1 -1
- package/dist/components/FileUpload/index.d.ts +1 -1
- package/dist/components/FileUpload/index.d.ts.map +1 -1
- package/dist/components/Flex/Flex.d.ts +49 -1
- package/dist/components/Flex/Flex.d.ts.map +1 -1
- package/dist/components/Flex/Flex.stories.d.ts.map +1 -1
- package/dist/components/Flex/index.d.ts +1 -1
- package/dist/components/Flex/index.d.ts.map +1 -1
- package/dist/components/Icons/CustomIcons.d.ts +160 -0
- package/dist/components/Icons/CustomIcons.d.ts.map +1 -1
- package/dist/components/InfoCard/InfoCard.d.ts +17 -0
- package/dist/components/InfoCard/InfoCard.d.ts.map +1 -0
- package/dist/components/InfoCard/index.d.ts +2 -0
- package/dist/components/InfoCard/index.d.ts.map +1 -0
- package/dist/components/Input/Input.d.ts +26 -0
- package/dist/components/Input/Input.d.ts.map +1 -1
- package/dist/components/Input/Input.stories.d.ts.map +1 -1
- package/dist/components/LanguageSwitcher/LanguageSwitcher.d.ts +16 -0
- package/dist/components/LanguageSwitcher/LanguageSwitcher.d.ts.map +1 -1
- package/dist/components/LanguageSwitcher/LanguageSwitcher.stories.d.ts.map +1 -1
- package/dist/components/Lightbox/Lightbox.d.ts +15 -2
- package/dist/components/Lightbox/Lightbox.d.ts.map +1 -1
- package/dist/components/Lightbox/Lightbox.js +22 -20
- package/dist/components/Loader/Loader.d.ts +3 -0
- package/dist/components/Loader/Loader.d.ts.map +1 -1
- package/dist/components/Loader/Loader.stories.d.ts.map +1 -1
- package/dist/components/LoginScreen/LoginScreen.d.ts +18 -0
- package/dist/components/LoginScreen/LoginScreen.d.ts.map +1 -1
- package/dist/components/LoginScreen/LoginScreen.stories.d.ts.map +1 -1
- package/dist/components/LoginScreen/LoginScreenItem.d.ts +5 -0
- package/dist/components/LoginScreen/LoginScreenItem.d.ts.map +1 -1
- package/dist/components/LoginScreen/index.d.ts +2 -2
- package/dist/components/LoginScreen/index.d.ts.map +1 -1
- package/dist/components/MultiSelect/MultiSelect.d.ts +25 -0
- package/dist/components/MultiSelect/MultiSelect.d.ts.map +1 -1
- package/dist/components/MultiSelect/MultiSelect.js +8 -8
- package/dist/components/MultiSelect/MultiSelect.stories.d.ts.map +1 -1
- package/dist/components/MuzaUIProvider/MuzaUIProvider.d.ts +26 -1
- package/dist/components/MuzaUIProvider/MuzaUIProvider.d.ts.map +1 -1
- package/dist/components/PasswordInput/PasswordInput.d.ts +5 -0
- package/dist/components/PasswordInput/PasswordInput.d.ts.map +1 -1
- package/dist/components/PasswordInput/PasswordInput.stories.d.ts.map +1 -1
- package/dist/components/PinIndicator/PinIndicator.d.ts +15 -0
- package/dist/components/PinIndicator/PinIndicator.d.ts.map +1 -1
- package/dist/components/PinIndicator/PinIndicator.stories.d.ts.map +1 -1
- package/dist/components/Popover/Popover.d.ts +36 -1
- package/dist/components/Popover/Popover.d.ts.map +1 -1
- package/dist/components/Popover/Popover.stories.d.ts.map +1 -1
- package/dist/components/Radio/Radio.d.ts +28 -3
- package/dist/components/Radio/Radio.d.ts.map +1 -1
- package/dist/components/Radio/Radio.js +2 -5
- package/dist/components/Radio/Radio.stories.d.ts.map +1 -1
- package/dist/components/Reorderable/Reorderable.d.ts +79 -30
- package/dist/components/Reorderable/Reorderable.d.ts.map +1 -1
- package/dist/components/Reorderable/Reorderable.js +162 -143
- package/dist/components/Reorderable/Reorderable.stories.d.ts +1 -0
- package/dist/components/Reorderable/Reorderable.stories.d.ts.map +1 -1
- package/dist/components/Reorderable/index.d.ts +1 -1
- package/dist/components/Reorderable/index.d.ts.map +1 -1
- package/dist/components/ReorderableTable/ReorderableTable.d.ts +47 -13
- package/dist/components/ReorderableTable/ReorderableTable.d.ts.map +1 -1
- package/dist/components/ReorderableTable/ReorderableTable.js +44 -43
- package/dist/components/ReorderableTable/ReorderableTable.stories.d.ts +1 -0
- package/dist/components/ReorderableTable/ReorderableTable.stories.d.ts.map +1 -1
- package/dist/components/ReorderableTable/index.d.ts +1 -1
- package/dist/components/ReorderableTable/index.d.ts.map +1 -1
- package/dist/components/Searchbar/Searchbar.d.ts +11 -0
- package/dist/components/Searchbar/Searchbar.d.ts.map +1 -1
- package/dist/components/Searchbar/Searchbar.stories.d.ts.map +1 -1
- package/dist/components/SegmentedControl/SegmentedControl.d.ts +35 -1
- package/dist/components/SegmentedControl/SegmentedControl.d.ts.map +1 -1
- package/dist/components/SegmentedControl/SegmentedControl.js +1 -1
- package/dist/components/SegmentedControl/SegmentedControl.stories.d.ts.map +1 -1
- package/dist/components/SegmentedControl/index.d.ts +1 -1
- package/dist/components/SegmentedControl/index.d.ts.map +1 -1
- package/dist/components/SegmentedIconControl/SegmentedIconControl.d.ts +38 -1
- package/dist/components/SegmentedIconControl/SegmentedIconControl.d.ts.map +1 -1
- package/dist/components/SegmentedIconControl/SegmentedIconControl.stories.d.ts.map +1 -1
- package/dist/components/SegmentedIconControl/index.d.ts +1 -1
- package/dist/components/SegmentedIconControl/index.d.ts.map +1 -1
- package/dist/components/Select/Select.d.ts +25 -0
- package/dist/components/Select/Select.d.ts.map +1 -1
- package/dist/components/Select/Select.stories.d.ts.map +1 -1
- package/dist/components/Select/index.d.ts +1 -1
- package/dist/components/Select/index.d.ts.map +1 -1
- package/dist/components/Skeleton/Skeleton.d.ts +9 -6
- package/dist/components/Skeleton/Skeleton.d.ts.map +1 -1
- package/dist/components/Skeleton/Skeleton.stories.d.ts.map +1 -1
- package/dist/components/SliderIndicators/SliderIndicators.d.ts +9 -0
- package/dist/components/SliderIndicators/SliderIndicators.d.ts.map +1 -1
- package/dist/components/SliderIndicators/SliderIndicators.stories.d.ts.map +1 -1
- package/dist/components/Stepper/Stepper.d.ts +38 -0
- package/dist/components/Stepper/Stepper.d.ts.map +1 -1
- package/dist/components/Stepper/Stepper.js +5 -5
- package/dist/components/Stepper/Stepper.stories.d.ts.map +1 -1
- package/dist/components/Stepper/index.d.ts +1 -1
- package/dist/components/Stepper/index.d.ts.map +1 -1
- package/dist/components/SwipeButton/SwipeButton.d.ts +39 -0
- package/dist/components/SwipeButton/SwipeButton.d.ts.map +1 -1
- package/dist/components/SwipeButton/SwipeButton.js +1 -1
- package/dist/components/SwipeButton/SwipeButton.stories.d.ts +0 -43
- package/dist/components/SwipeButton/SwipeButton.stories.d.ts.map +1 -1
- package/dist/components/SwipeButton/index.d.ts +1 -1
- package/dist/components/SwipeButton/index.d.ts.map +1 -1
- package/dist/components/Switch/Switch.d.ts +19 -0
- package/dist/components/Switch/Switch.d.ts.map +1 -1
- package/dist/components/Switch/Switch.stories.d.ts.map +1 -1
- package/dist/components/Tag/Tag.d.ts +17 -1
- package/dist/components/Tag/Tag.d.ts.map +1 -1
- package/dist/components/Tag/Tag.js +4 -4
- package/dist/components/Tag/Tag.stories.d.ts.map +1 -1
- package/dist/components/TextEditor/EditorToolbar.js +1 -1
- package/dist/components/TextEditor/LinkBubbleMenu.d.ts +4 -1
- package/dist/components/TextEditor/LinkBubbleMenu.d.ts.map +1 -1
- package/dist/components/TextEditor/LinkBubbleMenu.js +116 -92
- package/dist/components/TextEditor/TextEditor.d.ts +5 -2
- package/dist/components/TextEditor/TextEditor.d.ts.map +1 -1
- package/dist/components/TextEditor/TextEditor.js +129 -121
- package/dist/components/TextEditor/TextEditor.stories.d.ts.map +1 -1
- package/dist/components/Textarea/Textarea.d.ts +9 -2
- package/dist/components/Textarea/Textarea.d.ts.map +1 -1
- package/dist/components/Textarea/Textarea.stories.d.ts.map +1 -1
- package/dist/components/TimePicker/TimePicker.d.ts +23 -1
- package/dist/components/TimePicker/TimePicker.d.ts.map +1 -1
- package/dist/components/TimePicker/TimePicker.js +1 -4
- package/dist/components/TimePicker/TimePicker.stories.d.ts.map +1 -1
- package/dist/components/Toast/Toast.d.ts +21 -1
- package/dist/components/Toast/Toast.d.ts.map +1 -1
- package/dist/components/Toast/Toast.js +7 -7
- package/dist/components/Toast/Toast.stories.d.ts.map +1 -1
- package/dist/components/Toast/ToastContainer.d.ts +12 -1
- package/dist/components/Toast/ToastContainer.d.ts.map +1 -1
- package/dist/components/Toast/index.d.ts +1 -1
- package/dist/components/Toast/index.d.ts.map +1 -1
- package/dist/components/Toggle/Toggle.d.ts +17 -1
- package/dist/components/Toggle/Toggle.d.ts.map +1 -1
- package/dist/components/Toggle/Toggle.js +6 -6
- package/dist/components/Toggle/Toggle.stories.d.ts.map +1 -1
- package/dist/components/Toggle/index.d.ts +1 -1
- package/dist/components/Toggle/index.d.ts.map +1 -1
- package/dist/components/ToggleGroup/ToggleGroup.d.ts +52 -4
- package/dist/components/ToggleGroup/ToggleGroup.d.ts.map +1 -1
- package/dist/components/ToggleGroup/ToggleGroup.js +1 -1
- package/dist/components/ToggleGroup/ToggleGroup.stories.d.ts.map +1 -1
- package/dist/components/ToggleGroup/index.d.ts +1 -1
- package/dist/components/ToggleGroup/index.d.ts.map +1 -1
- package/dist/components/Tooltip/Tooltip.d.ts +38 -3
- package/dist/components/Tooltip/Tooltip.d.ts.map +1 -1
- package/dist/components/Tooltip/Tooltip.js +5 -7
- package/dist/components/Tooltip/Tooltip.stories.d.ts.map +1 -1
- package/dist/components/Typography/Typography.d.ts +18 -1
- package/dist/components/Typography/Typography.d.ts.map +1 -1
- package/dist/components/Typography/Typography.stories.d.ts.map +1 -1
- package/dist/components/Typography/index.d.ts +1 -1
- package/dist/components/Typography/index.d.ts.map +1 -1
- package/dist/index.js +190 -184
- package/dist/muza-ui.css +1 -1
- package/dist/styles/token-sizes.css +4 -0
- package/llms-full.md +581 -0
- package/llms.txt +36 -0
- package/package.json +4 -3
- package/CLAUDE_CONSUMER.md +0 -238
package/dist/index.js
CHANGED
|
@@ -3,10 +3,10 @@ import { TranslationContext as t, TranslationProvider as a, useMuzaTranslationCo
|
|
|
3
3
|
import { enTranslations as m } from "./translations/locales/en.js";
|
|
4
4
|
import { csTranslations as x } from "./translations/locales/cs.js";
|
|
5
5
|
import { skTranslations as d } from "./translations/locales/sk.js";
|
|
6
|
-
import { Accordion as
|
|
6
|
+
import { Accordion as s, AccordionContent as u, AccordionHeader as c, AccordionItem as T } from "./components/Accordion/Accordion.js";
|
|
7
7
|
import { Alert as b } from "./components/Alert/Alert.js";
|
|
8
8
|
import { Avatar as I, AvatarFallback as S, AvatarImage as B } from "./components/Avatar/Avatar.js";
|
|
9
|
-
import { Breadcrumb as h, BreadcrumbEllipsis as L, BreadcrumbItem as
|
|
9
|
+
import { Breadcrumb as h, BreadcrumbEllipsis as L, BreadcrumbItem as R, BreadcrumbLink as w, BreadcrumbList as P, BreadcrumbPage as y, BreadcrumbSeparator as E } from "./components/Breadcrumb/Breadcrumb.js";
|
|
10
10
|
import { Button as V } from "./components/Button/Button.js";
|
|
11
11
|
import { buttonVariants as v } from "./components/Button/buttonVariants.js";
|
|
12
12
|
import { Calendar as F, CalendarBase as H, CalendarDayButton as z } from "./components/Calendar/Calendar.js";
|
|
@@ -15,215 +15,221 @@ import { formatDateRange as K } from "./components/Calendar/utils/formatDateRang
|
|
|
15
15
|
import { Checkbox as q } from "./components/Checkbox/Checkbox.js";
|
|
16
16
|
import { Chip as Z, chipVariants as j } from "./components/Chip/Chip.js";
|
|
17
17
|
import { DatePicker as Q } from "./components/DatePicker/DatePicker.js";
|
|
18
|
-
import {
|
|
19
|
-
import {
|
|
20
|
-
import {
|
|
21
|
-
import {
|
|
22
|
-
import {
|
|
23
|
-
import {
|
|
24
|
-
import {
|
|
18
|
+
import { Presets as Y, getDateRange as $ } from "./components/DatePicker/utils/getDateRange.js";
|
|
19
|
+
import { Dialog as ro, DialogClose as eo, DialogContent as to, DialogDescription as ao, DialogFooter as no, DialogHeader as po, DialogOverlay as io, DialogPortal as mo, DialogTitle as lo, DialogTrigger as xo } from "./components/Dialog/Dialog.js";
|
|
20
|
+
import { DropdownMenu as go, DropdownMenuButtonItem as so, DropdownMenuCheckboxItem as uo, DropdownMenuContent as co, DropdownMenuItem as To, DropdownMenuPortal as Co, DropdownMenuRadioGroup as bo, DropdownMenuRadioItem as Do, DropdownMenuSeparator as Io, DropdownMenuTrigger as So } from "./components/DropdownMenu/DropdownMenu.js";
|
|
21
|
+
import { EdgeButton as Mo, edgeButtonVariants as ho } from "./components/EdgeButton/EdgeButton.js";
|
|
22
|
+
import { EmptyState as Ro } from "./components/EmptyState/EmptyState.js";
|
|
23
|
+
import { FileUpload as Po } from "./components/FileUpload/FileUpload.js";
|
|
24
|
+
import { Flex as Eo, flexVariants as ko } from "./components/Flex/Flex.js";
|
|
25
|
+
import { ArrowsSorting as Ao, Barcode as vo, BulletList as Go, CZK as Fo, CheckMinus as Ho, Checked as zo, Coins as Oo, Coins2Bold as Uo, Coins2Outline as _o, Coins3 as Ko, ColorSquare as No, Colour as qo, Cutlery as Xo, DoubleArrowRight as Zo, EUR as jo, EditorBold as Jo, EditorItalic as Qo, EditorStrikethrough as Wo, EmptyCircle as Yo, ExternalLink as $o, EyeClosed as or, Fingerprint as rr, FlagCz as er, FlagEn as tr, FlagSk as ar, LayoutHorizontal as nr, LayoutVertical as pr, MagnifyingGlass as ir, MenuDotsVertical as mr, MuzaIcon as lr, NumberList as xr, Plus as fr, RemoveTextFormat as dr, Reorder as gr, SKMap as sr, Scan as ur, Spinner as cr, TextH1 as Tr, TextH2 as Cr, TextH3 as br, XClose as Dr } from "./components/Icons/CustomIcons.js";
|
|
25
26
|
export * from "@solar-icons/react-perf";
|
|
26
|
-
import { Input as
|
|
27
|
-
import { Lightbox as
|
|
28
|
-
import { Item as
|
|
29
|
-
import { LanguageSwitcher as
|
|
30
|
-
import { Loader as
|
|
31
|
-
import {
|
|
32
|
-
import {
|
|
33
|
-
import {
|
|
34
|
-
import { MultiSelect as
|
|
35
|
-
import { MuzaUIProvider as
|
|
36
|
-
import { PasswordInput as
|
|
37
|
-
import { PinIndicator as
|
|
38
|
-
import { Popover as
|
|
39
|
-
import { RadioGroup as
|
|
40
|
-
import { ReorderableGroup as
|
|
41
|
-
import { ReorderableTable as
|
|
42
|
-
import { Searchbar as
|
|
43
|
-
import { Select as
|
|
44
|
-
import { SegmentedControl as
|
|
45
|
-
import { SegmentedIconControl as
|
|
46
|
-
import { SliderIndicators as
|
|
47
|
-
import {
|
|
48
|
-
import {
|
|
49
|
-
import { Stepper as
|
|
50
|
-
import { SwipeButton as
|
|
51
|
-
import { Switch as
|
|
52
|
-
import { Tag as
|
|
53
|
-
import { Textarea as
|
|
54
|
-
import { TextEditor as
|
|
55
|
-
import { ToolbarButton as
|
|
56
|
-
import { ToolbarSeparator as
|
|
57
|
-
import { TimePicker as
|
|
58
|
-
import { Toggle as
|
|
59
|
-
import { ToggleGroup as
|
|
60
|
-
import { Tooltip as
|
|
61
|
-
import { Typography as
|
|
62
|
-
import { DataTable as
|
|
63
|
-
import { ExpandableTable as
|
|
64
|
-
import { Skeleton as
|
|
65
|
-
import { cn as
|
|
66
|
-
import { getSpacingVariants as
|
|
27
|
+
import { Input as Br } from "./components/Input/Input.js";
|
|
28
|
+
import { Lightbox as hr, LightboxGalleryOnlyImage as Lr, LightboxTrigger as Rr } from "./components/Lightbox/Lightbox.js";
|
|
29
|
+
import { Item as Pr } from "./node_modules/react-photoswipe-gallery/dist/item.js";
|
|
30
|
+
import { LanguageSwitcher as Er } from "./components/LanguageSwitcher/LanguageSwitcher.js";
|
|
31
|
+
import { Loader as Vr } from "./components/Loader/Loader.js";
|
|
32
|
+
import { LoginScreen as vr } from "./components/LoginScreen/LoginScreen.js";
|
|
33
|
+
import { LoginScreenItem as Fr } from "./components/LoginScreen/LoginScreenItem.js";
|
|
34
|
+
import { DEFAULT_LOGIN_GLB_PATH as zr } from "./components/LoginScreen/LoginScreen3D/LoginScreen3DModel.js";
|
|
35
|
+
import { MultiSelect as Ur } from "./components/MultiSelect/MultiSelect.js";
|
|
36
|
+
import { MuzaUIProvider as Kr } from "./components/MuzaUIProvider/MuzaUIProvider.js";
|
|
37
|
+
import { PasswordInput as qr } from "./components/PasswordInput/PasswordInput.js";
|
|
38
|
+
import { PinIndicator as Zr } from "./components/PinIndicator/PinIndicator.js";
|
|
39
|
+
import { Popover as Jr, PopoverContent as Qr, PopoverTrigger as Wr } from "./components/Popover/Popover.js";
|
|
40
|
+
import { RadioGroup as $r, RadioGroupItem as oe } from "./components/Radio/Radio.js";
|
|
41
|
+
import { ReorderableGroup as ee, ReorderableHandle as te, ReorderableItem as ae, ReorderableStaticItem as ne, useReorderableGroup as pe, useReorderableItem as ie } from "./components/Reorderable/Reorderable.js";
|
|
42
|
+
import { ReorderableTable as le } from "./components/ReorderableTable/ReorderableTable.js";
|
|
43
|
+
import { Searchbar as fe } from "./components/Searchbar/Searchbar.js";
|
|
44
|
+
import { Select as ge } from "./components/Select/Select.js";
|
|
45
|
+
import { SegmentedControl as ue, SegmentedControlItem as ce } from "./components/SegmentedControl/SegmentedControl.js";
|
|
46
|
+
import { SegmentedIconControl as Ce, SegmentedIconControlItem as be } from "./components/SegmentedIconControl/SegmentedIconControl.js";
|
|
47
|
+
import { SliderIndicators as Ie } from "./components/SliderIndicators/SliderIndicators.js";
|
|
48
|
+
import { ToastContainer as Be } from "./components/Toast/ToastContainer.js";
|
|
49
|
+
import { Toast as he, toast as Le } from "./components/Toast/Toast.js";
|
|
50
|
+
import { Stepper as we } from "./components/Stepper/Stepper.js";
|
|
51
|
+
import { SwipeButton as ye } from "./components/SwipeButton/SwipeButton.js";
|
|
52
|
+
import { Switch as ke } from "./components/Switch/Switch.js";
|
|
53
|
+
import { Tag as Ae, tagVariants as ve } from "./components/Tag/Tag.js";
|
|
54
|
+
import { Textarea as Fe } from "./components/Textarea/Textarea.js";
|
|
55
|
+
import { TextEditor as ze } from "./components/TextEditor/TextEditor.js";
|
|
56
|
+
import { ToolbarButton as Ue, toolbarButtonVariants as _e } from "./components/TextEditor/ToolbarButton.js";
|
|
57
|
+
import { ToolbarSeparator as Ne } from "./components/TextEditor/ToolbarSeparator.js";
|
|
58
|
+
import { TimePicker as Xe } from "./components/TimePicker/TimePicker.js";
|
|
59
|
+
import { Toggle as je, toggleVariants as Je } from "./components/Toggle/Toggle.js";
|
|
60
|
+
import { ToggleGroup as We, ToggleGroupItem as Ye } from "./components/ToggleGroup/ToggleGroup.js";
|
|
61
|
+
import { Tooltip as ot, TooltipContent as rt, TooltipProvider as et, TooltipTrigger as tt } from "./components/Tooltip/Tooltip.js";
|
|
62
|
+
import { Typography as nt, typographyVariants as pt } from "./components/Typography/Typography.js";
|
|
63
|
+
import { DataTable as mt, dataTableCellVariants as lt } from "./components/DataTable/DataTable.js";
|
|
64
|
+
import { ExpandableTable as ft } from "./components/ExpandableTable/ExpandableTable.js";
|
|
65
|
+
import { Skeleton as gt } from "./components/Skeleton/Skeleton.js";
|
|
66
|
+
import { cn as ut } from "./utils/cn.js";
|
|
67
|
+
import { getSpacingVariants as Tt, spacingVariantDefinitions as Ct } from "./utils/spacing.js";
|
|
67
68
|
export {
|
|
68
|
-
|
|
69
|
-
|
|
69
|
+
s as Accordion,
|
|
70
|
+
u as AccordionContent,
|
|
70
71
|
c as AccordionHeader,
|
|
71
72
|
T as AccordionItem,
|
|
72
73
|
b as Alert,
|
|
73
|
-
|
|
74
|
+
Ao as ArrowsSorting,
|
|
74
75
|
I as Avatar,
|
|
75
76
|
S as AvatarFallback,
|
|
76
77
|
B as AvatarImage,
|
|
77
|
-
|
|
78
|
+
vo as Barcode,
|
|
78
79
|
h as Breadcrumb,
|
|
79
80
|
L as BreadcrumbEllipsis,
|
|
80
|
-
|
|
81
|
-
|
|
82
|
-
|
|
83
|
-
|
|
81
|
+
R as BreadcrumbItem,
|
|
82
|
+
w as BreadcrumbLink,
|
|
83
|
+
P as BreadcrumbList,
|
|
84
|
+
y as BreadcrumbPage,
|
|
84
85
|
E as BreadcrumbSeparator,
|
|
85
|
-
|
|
86
|
+
Go as BulletList,
|
|
86
87
|
V as Button,
|
|
87
|
-
|
|
88
|
+
Fo as CZK,
|
|
88
89
|
F as Calendar,
|
|
89
90
|
H as CalendarBase,
|
|
90
91
|
z as CalendarDayButton,
|
|
91
|
-
|
|
92
|
+
Ho as CheckMinus,
|
|
92
93
|
q as Checkbox,
|
|
93
|
-
|
|
94
|
+
zo as Checked,
|
|
94
95
|
Z as Chip,
|
|
95
|
-
|
|
96
|
-
|
|
97
|
-
|
|
98
|
-
|
|
99
|
-
|
|
100
|
-
|
|
101
|
-
|
|
102
|
-
|
|
103
|
-
|
|
96
|
+
Oo as Coins,
|
|
97
|
+
Uo as Coins2Bold,
|
|
98
|
+
_o as Coins2Outline,
|
|
99
|
+
Ko as Coins3,
|
|
100
|
+
No as ColorSquare,
|
|
101
|
+
qo as Colour,
|
|
102
|
+
Xo as Cutlery,
|
|
103
|
+
zr as DEFAULT_LOGIN_GLB_PATH,
|
|
104
|
+
mt as DataTable,
|
|
104
105
|
Q as DatePicker,
|
|
105
|
-
|
|
106
|
-
|
|
107
|
-
|
|
108
|
-
|
|
109
|
-
|
|
110
|
-
|
|
111
|
-
|
|
112
|
-
|
|
113
|
-
|
|
114
|
-
|
|
115
|
-
|
|
116
|
-
|
|
117
|
-
|
|
118
|
-
|
|
119
|
-
|
|
120
|
-
|
|
121
|
-
|
|
122
|
-
|
|
123
|
-
|
|
124
|
-
|
|
125
|
-
|
|
126
|
-
|
|
127
|
-
|
|
128
|
-
|
|
129
|
-
|
|
130
|
-
|
|
131
|
-
|
|
132
|
-
|
|
133
|
-
|
|
134
|
-
|
|
135
|
-
|
|
136
|
-
|
|
137
|
-
|
|
138
|
-
|
|
139
|
-
|
|
140
|
-
|
|
141
|
-
|
|
142
|
-
|
|
143
|
-
|
|
144
|
-
|
|
145
|
-
|
|
146
|
-
|
|
147
|
-
|
|
148
|
-
|
|
149
|
-
|
|
150
|
-
|
|
151
|
-
|
|
152
|
-
|
|
153
|
-
|
|
154
|
-
|
|
155
|
-
|
|
156
|
-
|
|
157
|
-
|
|
158
|
-
|
|
159
|
-
|
|
160
|
-
|
|
161
|
-
|
|
162
|
-
|
|
163
|
-
|
|
164
|
-
|
|
165
|
-
|
|
166
|
-
|
|
167
|
-
|
|
168
|
-
|
|
169
|
-
|
|
170
|
-
|
|
171
|
-
|
|
172
|
-
|
|
173
|
-
|
|
174
|
-
|
|
175
|
-
|
|
176
|
-
|
|
177
|
-
|
|
178
|
-
ue as
|
|
179
|
-
|
|
180
|
-
|
|
181
|
-
|
|
182
|
-
|
|
183
|
-
|
|
184
|
-
|
|
185
|
-
|
|
186
|
-
|
|
187
|
-
|
|
188
|
-
|
|
189
|
-
|
|
190
|
-
|
|
191
|
-
|
|
192
|
-
|
|
193
|
-
|
|
194
|
-
|
|
195
|
-
|
|
196
|
-
|
|
197
|
-
|
|
198
|
-
|
|
199
|
-
|
|
200
|
-
|
|
201
|
-
|
|
202
|
-
|
|
106
|
+
ro as Dialog,
|
|
107
|
+
eo as DialogClose,
|
|
108
|
+
to as DialogContent,
|
|
109
|
+
ao as DialogDescription,
|
|
110
|
+
no as DialogFooter,
|
|
111
|
+
po as DialogHeader,
|
|
112
|
+
io as DialogOverlay,
|
|
113
|
+
mo as DialogPortal,
|
|
114
|
+
lo as DialogTitle,
|
|
115
|
+
xo as DialogTrigger,
|
|
116
|
+
Zo as DoubleArrowRight,
|
|
117
|
+
go as DropdownMenu,
|
|
118
|
+
so as DropdownMenuButtonItem,
|
|
119
|
+
uo as DropdownMenuCheckboxItem,
|
|
120
|
+
co as DropdownMenuContent,
|
|
121
|
+
To as DropdownMenuItem,
|
|
122
|
+
Co as DropdownMenuPortal,
|
|
123
|
+
bo as DropdownMenuRadioGroup,
|
|
124
|
+
Do as DropdownMenuRadioItem,
|
|
125
|
+
Io as DropdownMenuSeparator,
|
|
126
|
+
So as DropdownMenuTrigger,
|
|
127
|
+
jo as EUR,
|
|
128
|
+
Mo as EdgeButton,
|
|
129
|
+
Jo as EditorBold,
|
|
130
|
+
Qo as EditorItalic,
|
|
131
|
+
Wo as EditorStrikethrough,
|
|
132
|
+
Yo as EmptyCircle,
|
|
133
|
+
Ro as EmptyState,
|
|
134
|
+
ft as ExpandableTable,
|
|
135
|
+
$o as ExternalLink,
|
|
136
|
+
or as EyeClosed,
|
|
137
|
+
Po as FileUpload,
|
|
138
|
+
rr as Fingerprint,
|
|
139
|
+
er as FlagCz,
|
|
140
|
+
tr as FlagEn,
|
|
141
|
+
ar as FlagSk,
|
|
142
|
+
Eo as Flex,
|
|
143
|
+
Br as Input,
|
|
144
|
+
Er as LanguageSwitcher,
|
|
145
|
+
nr as LayoutHorizontal,
|
|
146
|
+
pr as LayoutVertical,
|
|
147
|
+
hr as Lightbox,
|
|
148
|
+
Lr as LightboxGalleryOnlyImage,
|
|
149
|
+
Pr as LightboxItem,
|
|
150
|
+
Rr as LightboxTrigger,
|
|
151
|
+
Vr as Loader,
|
|
152
|
+
vr as LoginScreen,
|
|
153
|
+
Fr as LoginScreenItem,
|
|
154
|
+
ir as MagnifyingGlass,
|
|
155
|
+
mr as MenuDotsVertical,
|
|
156
|
+
Ur as MultiSelect,
|
|
157
|
+
lr as MuzaIcon,
|
|
158
|
+
Kr as MuzaUIProvider,
|
|
159
|
+
xr as NumberList,
|
|
160
|
+
qr as PasswordInput,
|
|
161
|
+
Zr as PinIndicator,
|
|
162
|
+
fr as Plus,
|
|
163
|
+
Jr as Popover,
|
|
164
|
+
Qr as PopoverContent,
|
|
165
|
+
Wr as PopoverTrigger,
|
|
166
|
+
Y as Presets,
|
|
167
|
+
$r as RadioGroup,
|
|
168
|
+
oe as RadioGroupItem,
|
|
169
|
+
dr as RemoveTextFormat,
|
|
170
|
+
gr as Reorder,
|
|
171
|
+
ee as ReorderableGroup,
|
|
172
|
+
te as ReorderableHandle,
|
|
173
|
+
ae as ReorderableItem,
|
|
174
|
+
ne as ReorderableStaticItem,
|
|
175
|
+
le as ReorderableTable,
|
|
176
|
+
sr as SKMap,
|
|
177
|
+
ur as Scan,
|
|
178
|
+
fe as Searchbar,
|
|
179
|
+
ue as SegmentedControl,
|
|
180
|
+
ce as SegmentedControlItem,
|
|
181
|
+
Ce as SegmentedIconControl,
|
|
182
|
+
be as SegmentedIconControlItem,
|
|
183
|
+
ge as Select,
|
|
184
|
+
gt as Skeleton,
|
|
185
|
+
Ie as SliderIndicators,
|
|
186
|
+
cr as Spinner,
|
|
187
|
+
we as Stepper,
|
|
188
|
+
ye as SwipeButton,
|
|
189
|
+
ke as Switch,
|
|
190
|
+
Ae as Tag,
|
|
191
|
+
ze as TextEditor,
|
|
192
|
+
Tr as TextH1,
|
|
193
|
+
Cr as TextH2,
|
|
194
|
+
br as TextH3,
|
|
195
|
+
Fe as Textarea,
|
|
196
|
+
Xe as TimePicker,
|
|
197
|
+
he as Toast,
|
|
198
|
+
Be as ToastContainer,
|
|
199
|
+
je as Toggle,
|
|
200
|
+
We as ToggleGroup,
|
|
201
|
+
Ye as ToggleGroupItem,
|
|
202
|
+
Ue as ToolbarButton,
|
|
203
|
+
Ne as ToolbarSeparator,
|
|
204
|
+
ot as Tooltip,
|
|
205
|
+
rt as TooltipContent,
|
|
206
|
+
et as TooltipProvider,
|
|
207
|
+
tt as TooltipTrigger,
|
|
203
208
|
t as TranslationContext,
|
|
204
209
|
a as TranslationProvider,
|
|
205
|
-
|
|
206
|
-
|
|
210
|
+
nt as Typography,
|
|
211
|
+
Dr as XClose,
|
|
207
212
|
v as buttonVariants,
|
|
208
213
|
j as chipVariants,
|
|
209
|
-
|
|
214
|
+
ut as cn,
|
|
210
215
|
x as csTranslations,
|
|
211
|
-
|
|
212
|
-
|
|
216
|
+
lt as dataTableCellVariants,
|
|
217
|
+
ho as edgeButtonVariants,
|
|
213
218
|
m as enTranslations,
|
|
214
|
-
|
|
219
|
+
ko as flexVariants,
|
|
215
220
|
U as formatDate,
|
|
216
221
|
K as formatDateRange,
|
|
217
|
-
|
|
222
|
+
$ as getDateRange,
|
|
223
|
+
Tt as getSpacingVariants,
|
|
218
224
|
d as skTranslations,
|
|
219
|
-
|
|
220
|
-
|
|
221
|
-
|
|
222
|
-
|
|
223
|
-
|
|
224
|
-
|
|
225
|
+
Ct as spacingVariantDefinitions,
|
|
226
|
+
ve as tagVariants,
|
|
227
|
+
Le as toast,
|
|
228
|
+
Je as toggleVariants,
|
|
229
|
+
_e as toolbarButtonVariants,
|
|
230
|
+
pt as typographyVariants,
|
|
225
231
|
n as useMuzaTranslationContext,
|
|
226
232
|
p as useMuzaTranslations,
|
|
227
|
-
|
|
228
|
-
|
|
233
|
+
pe as useReorderableGroup,
|
|
234
|
+
ie as useReorderableItem
|
|
229
235
|
};
|