@mage-ui/components 1.0.36 → 1.0.37
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/buttons/button/Button.d.mts +2 -2
- package/dist/components/buttons/button-action/ButtonAction.d.mts +2 -2
- package/dist/components/buttons/button-action/ButtonLoader.d.mts +2 -2
- package/dist/components/buttons/button-icon/ButtonIcon.d.mts +2 -2
- package/dist/components/buttons/button-icon-visual/ButtonIconVisual.d.mts +2 -2
- package/dist/components/buttons/button-visual/ButtonVisual.d.mts +2 -2
- package/dist/components/controls/autocomplete/Autocomplete.d.mts +2 -2
- package/dist/components/controls/combobox/Combobox.d.mts +2 -2
- package/dist/components/controls/dropzone/Dropzone.d.mts +2 -2
- package/dist/components/controls/dropzone-files/DropzoneFiles.d.mts +2 -2
- package/dist/components/controls/file-input/FileInput.d.mts +2 -2
- package/dist/components/controls/file-input/FileInputMultiple.d.mts +2 -2
- package/dist/components/controls/multi-select/MultiSelect.d.mts +2 -2
- package/dist/components/controls/multi-select/MultiSelectTags.d.mts +2 -2
- package/dist/components/controls/password-input/PasswordInput.d.mts +2 -2
- package/dist/components/controls/password-input/PasswordStrengthInput.d.mts +2 -2
- package/dist/components/controls/password-input-strength/oldPasswordInputStrength.d.mts +2 -2
- package/dist/components/controls/select/Select.d.mts +2 -2
- package/dist/components/controls/text-input/TextInput.d.mts +2 -2
- package/dist/components/controls/textarea/Textarea.d.mts +2 -2
- package/dist/components/controls/utils/chevron/Chevron.d.mts +2 -2
- package/dist/components/controls/utils/clear-button/ClearButton.d.mts +2 -2
- package/dist/components/data-display/assigned-user/AssignedUser.d.mts +2 -2
- package/dist/components/data-display/avatar/Avatar.d.mts +2 -2
- package/dist/components/data-display/badge/Badge.d.mts +2 -2
- package/dist/components/data-display/calendar/Calendar.d.mts +2 -2
- package/dist/components/data-display/loader-dot/LoaderDot.d.mts +2 -2
- package/dist/components/data-display/loader-oval/LoaderOval.d.mts +2 -2
- package/dist/components/data-display/notification-banner/NotificationBanner.d.mts +1 -2
- package/dist/components/data-display/notification-banner/NotificationBanner.d.mts.map +1 -1
- package/dist/components/data-display/notification-banner/NotificationBanner.mjs +1 -1
- package/dist/components/data-display/notification-banner/NotificationBanner.mjs.map +1 -1
- package/dist/components/data-display/removable-item/RemovableItem.d.mts +2 -2
- package/dist/components/data-display/tag/Tag.d.mts +3 -3
- package/dist/components/data-display/tag-group/TagGroup.d.mts +2 -2
- package/dist/components/data-display/uploaded-file/UploadedFile.d.mts +2 -2
- package/dist/components/data-display/uploaded-file/UploadedFileDetails.d.mts +2 -2
- package/dist/components/forms/Form.d.mts +7 -7
- package/dist/components/forms/Form.d.mts.map +1 -1
- package/dist/components/layouts/top-bar/TopBar.d.mts +2 -2
- package/dist/components/layouts/top-bar/TopBar.d.mts.map +1 -1
- package/dist/components/misc/horizontal-divider/HorizontalDivider.d.mts +2 -2
- package/dist/components/misc/scroll-area-autosize/ScrollAreaAutosize.mjs +1 -1
- package/dist/components/misc/scroll-area-autosize/ScrollAreaAutosize.mjs.map +1 -1
- package/dist/components/misc/visually-hidden/VisuallyHidden.d.mts +2 -2
- package/dist/components/navigations/breadcrumbs/Breadcrumbs.d.mts +2 -2
- package/dist/components/navigations/menu/Menu.d.mts +4 -4
- package/dist/components/navigations/sidebars/sidebar/Sidebar.d.mts +16 -15
- package/dist/components/navigations/sidebars/sidebar/Sidebar.d.mts.map +1 -1
- package/dist/components/navigations/sidebars/sidebar/Sidebar.mjs +1 -1
- package/dist/components/navigations/sidebars/sidebar/Sidebar.mjs.map +1 -1
- package/dist/components/overlays/modal/Modal.d.mts +10 -10
- package/dist/components/overlays/modal/Modal.d.mts.map +1 -1
- package/dist/components/overlays/modals/ModalsProvider.d.mts +2 -2
- package/dist/components/overlays/tooltip/Tooltip.d.mts +2 -2
- package/dist/components/overlays/tooltip/Tooltip.d.mts.map +1 -1
- package/package.json +3 -3
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
import { ButtonVariantProps } from "@mage-ui/styled-system/recipes";
|
|
2
|
-
import * as
|
|
2
|
+
import * as react_jsx_runtime23 from "react/jsx-runtime";
|
|
3
3
|
import { ComponentPropsWithoutRef, ReactNode } from "react";
|
|
4
4
|
|
|
5
5
|
//#region src/components/buttons/button/Button.d.ts
|
|
@@ -21,7 +21,7 @@ declare const Button: ({
|
|
|
21
21
|
startSlot,
|
|
22
22
|
endSlot,
|
|
23
23
|
...props
|
|
24
|
-
}: ButtonProps) =>
|
|
24
|
+
}: ButtonProps) => react_jsx_runtime23.JSX.Element;
|
|
25
25
|
//#endregion
|
|
26
26
|
export { Button, ButtonProps };
|
|
27
27
|
//# sourceMappingURL=Button.d.mts.map
|
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
import { ButtonProps } from "../button/Button.mjs";
|
|
2
|
-
import * as
|
|
2
|
+
import * as react_jsx_runtime24 from "react/jsx-runtime";
|
|
3
3
|
import { ReactNode } from "react";
|
|
4
4
|
|
|
5
5
|
//#region src/components/buttons/button-action/ButtonAction.d.ts
|
|
@@ -26,7 +26,7 @@ declare const ButtonAction: ({
|
|
|
26
26
|
successDuration,
|
|
27
27
|
disabled,
|
|
28
28
|
...props
|
|
29
|
-
}: ButtonActionProps) =>
|
|
29
|
+
}: ButtonActionProps) => react_jsx_runtime24.JSX.Element;
|
|
30
30
|
//#endregion
|
|
31
31
|
export { ButtonAction, ButtonActionProps };
|
|
32
32
|
//# sourceMappingURL=ButtonAction.d.mts.map
|
|
@@ -1,11 +1,11 @@
|
|
|
1
|
-
import * as
|
|
1
|
+
import * as react_jsx_runtime25 from "react/jsx-runtime";
|
|
2
2
|
import { ComponentProps } from "react";
|
|
3
3
|
|
|
4
4
|
//#region src/components/buttons/button-action/ButtonLoader.d.ts
|
|
5
5
|
declare const ButtonLoader: ({
|
|
6
6
|
className,
|
|
7
7
|
...props
|
|
8
|
-
}: ComponentProps<"span">) =>
|
|
8
|
+
}: ComponentProps<"span">) => react_jsx_runtime25.JSX.Element;
|
|
9
9
|
//#endregion
|
|
10
10
|
export { ButtonLoader };
|
|
11
11
|
//# sourceMappingURL=ButtonLoader.d.mts.map
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import * as
|
|
1
|
+
import * as react_jsx_runtime26 from "react/jsx-runtime";
|
|
2
2
|
import { ComponentProps } from "react";
|
|
3
3
|
|
|
4
4
|
//#region src/components/buttons/button-icon/ButtonIcon.d.ts
|
|
@@ -23,7 +23,7 @@ declare const ButtonIcon: ({
|
|
|
23
23
|
onClick,
|
|
24
24
|
disabled,
|
|
25
25
|
classNames
|
|
26
|
-
}: ButtonIconProps) =>
|
|
26
|
+
}: ButtonIconProps) => react_jsx_runtime26.JSX.Element;
|
|
27
27
|
//#endregion
|
|
28
28
|
export { ButtonIcon, ButtonIconProps };
|
|
29
29
|
//# sourceMappingURL=ButtonIcon.d.mts.map
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import * as
|
|
1
|
+
import * as react_jsx_runtime27 from "react/jsx-runtime";
|
|
2
2
|
import { ComponentProps } from "react";
|
|
3
3
|
|
|
4
4
|
//#region src/components/buttons/button-icon-visual/ButtonIconVisual.d.ts
|
|
@@ -22,7 +22,7 @@ declare const ButtonIconVisual: ({
|
|
|
22
22
|
name,
|
|
23
23
|
path,
|
|
24
24
|
disabled
|
|
25
|
-
}: ButtonIconVisualProps) =>
|
|
25
|
+
}: ButtonIconVisualProps) => react_jsx_runtime27.JSX.Element;
|
|
26
26
|
//#endregion
|
|
27
27
|
export { ButtonIconVisual, ButtonIconVisualProps };
|
|
28
28
|
//# sourceMappingURL=ButtonIconVisual.d.mts.map
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import * as
|
|
1
|
+
import * as react_jsx_runtime28 from "react/jsx-runtime";
|
|
2
2
|
import { ReactNode } from "react";
|
|
3
3
|
|
|
4
4
|
//#region src/components/buttons/button-visual/ButtonVisual.d.ts
|
|
@@ -21,7 +21,7 @@ declare const ButtonVisual: ({
|
|
|
21
21
|
endSlot,
|
|
22
22
|
children,
|
|
23
23
|
disabled
|
|
24
|
-
}: ButtonVisualProps) =>
|
|
24
|
+
}: ButtonVisualProps) => react_jsx_runtime28.JSX.Element;
|
|
25
25
|
//#endregion
|
|
26
26
|
export { ButtonVisual, ButtonVisualProps };
|
|
27
27
|
//# sourceMappingURL=ButtonVisual.d.mts.map
|
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
import { ComboboxProps } from "../combobox/Combobox.mjs";
|
|
2
|
-
import * as
|
|
2
|
+
import * as react_jsx_runtime46 from "react/jsx-runtime";
|
|
3
3
|
import { ReactNode } from "react";
|
|
4
4
|
|
|
5
5
|
//#region src/components/controls/autocomplete/Autocomplete.d.ts
|
|
@@ -29,7 +29,7 @@ declare const Autocomplete: ({
|
|
|
29
29
|
emptyMessage,
|
|
30
30
|
minLength,
|
|
31
31
|
classNames
|
|
32
|
-
}: AutocompleteProps) =>
|
|
32
|
+
}: AutocompleteProps) => react_jsx_runtime46.JSX.Element;
|
|
33
33
|
//#endregion
|
|
34
34
|
export { Autocomplete, AutocompleteProps, OptionProps };
|
|
35
35
|
//# sourceMappingURL=Autocomplete.d.mts.map
|
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
import { DropdownProps } from "../dropdown/Dropdown.mjs";
|
|
2
|
-
import * as
|
|
2
|
+
import * as react_jsx_runtime47 from "react/jsx-runtime";
|
|
3
3
|
|
|
4
4
|
//#region src/components/controls/combobox/Combobox.d.ts
|
|
5
5
|
type ComboboxProps = Omit<DropdownProps, 'classNames' | 'onChange' | 'onBlur' | 'onFocus' | 'onClick' | 'setValue' | 'children'> & {
|
|
@@ -52,7 +52,7 @@ declare const Combobox: ({
|
|
|
52
52
|
btnClearLabel,
|
|
53
53
|
onChange,
|
|
54
54
|
classNames
|
|
55
|
-
}: ComboboxProps) =>
|
|
55
|
+
}: ComboboxProps) => react_jsx_runtime47.JSX.Element;
|
|
56
56
|
//#endregion
|
|
57
57
|
export { Combobox, ComboboxProps };
|
|
58
58
|
//# sourceMappingURL=Combobox.d.mts.map
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { IconProps } from "../../data-display/icons/icon/Icon.mjs";
|
|
2
2
|
import { LoaderOvalProps } from "../../data-display/loader-oval/LoaderOval.mjs";
|
|
3
3
|
import "../../data-display/index.mjs";
|
|
4
|
-
import * as
|
|
4
|
+
import * as react_jsx_runtime48 from "react/jsx-runtime";
|
|
5
5
|
import { ReactNode } from "react";
|
|
6
6
|
|
|
7
7
|
//#region src/components/controls/dropzone/Dropzone.d.ts
|
|
@@ -64,7 +64,7 @@ declare const Dropzone: ({
|
|
|
64
64
|
hint,
|
|
65
65
|
inputId,
|
|
66
66
|
classNames
|
|
67
|
-
}: DropzoneProps) =>
|
|
67
|
+
}: DropzoneProps) => react_jsx_runtime48.JSX.Element;
|
|
68
68
|
//#endregion
|
|
69
69
|
export { Dropzone, DropzoneProps, FileData };
|
|
70
70
|
//# sourceMappingURL=Dropzone.d.mts.map
|
|
@@ -2,7 +2,7 @@ import { UploadedFileProps } from "../../data-display/uploaded-file/UploadedFile
|
|
|
2
2
|
import "../../data-display/index.mjs";
|
|
3
3
|
import { DropzoneProps, FileData } from "../dropzone/Dropzone.mjs";
|
|
4
4
|
import "../index.mjs";
|
|
5
|
-
import * as
|
|
5
|
+
import * as react_jsx_runtime49 from "react/jsx-runtime";
|
|
6
6
|
import { ReactNode } from "react";
|
|
7
7
|
|
|
8
8
|
//#region src/components/controls/dropzone-files/DropzoneFiles.d.ts
|
|
@@ -48,7 +48,7 @@ declare const DropzoneFiles: ({
|
|
|
48
48
|
url,
|
|
49
49
|
inputId,
|
|
50
50
|
classNames
|
|
51
|
-
}: DropzoneFilesProps) =>
|
|
51
|
+
}: DropzoneFilesProps) => react_jsx_runtime49.JSX.Element;
|
|
52
52
|
//#endregion
|
|
53
53
|
export { DropzoneFiles, DropzoneFilesProps };
|
|
54
54
|
//# sourceMappingURL=DropzoneFiles.d.mts.map
|
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
import { BaseFileInputProps } from "./BaseFileInput.mjs";
|
|
2
|
-
import * as
|
|
2
|
+
import * as react_jsx_runtime50 from "react/jsx-runtime";
|
|
3
3
|
|
|
4
4
|
//#region src/components/controls/file-input/FileInput.d.ts
|
|
5
5
|
type FileInputProps = Omit<BaseFileInputProps, 'multiple' | 'valueComponent' | 'onChange'> & {
|
|
@@ -18,7 +18,7 @@ declare const FileInput: ({
|
|
|
18
18
|
required,
|
|
19
19
|
disabled,
|
|
20
20
|
classNames
|
|
21
|
-
}: FileInputProps) =>
|
|
21
|
+
}: FileInputProps) => react_jsx_runtime50.JSX.Element;
|
|
22
22
|
//#endregion
|
|
23
23
|
export { FileInput, FileInputProps };
|
|
24
24
|
//# sourceMappingURL=FileInput.d.mts.map
|
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
import { BaseFileInputProps } from "./BaseFileInput.mjs";
|
|
2
|
-
import * as
|
|
2
|
+
import * as react_jsx_runtime51 from "react/jsx-runtime";
|
|
3
3
|
|
|
4
4
|
//#region src/components/controls/file-input/FileInputMultiple.d.ts
|
|
5
5
|
type FileInputMultipleProps = Omit<BaseFileInputProps, 'multiple' | 'onChange' | 'valueComponent'> & {
|
|
@@ -25,7 +25,7 @@ declare const FileInputMultiple: ({
|
|
|
25
25
|
disabled,
|
|
26
26
|
classNames,
|
|
27
27
|
badgeClassNames
|
|
28
|
-
}: FileInputMultipleProps) =>
|
|
28
|
+
}: FileInputMultipleProps) => react_jsx_runtime51.JSX.Element;
|
|
29
29
|
//#endregion
|
|
30
30
|
export { FileInputMultiple, FileInputMultipleProps };
|
|
31
31
|
//# sourceMappingURL=FileInputMultiple.d.mts.map
|
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
import { DropdownProps, DropdownTextInputClassNames } from "../dropdown/Dropdown.mjs";
|
|
2
|
-
import * as
|
|
2
|
+
import * as react_jsx_runtime52 from "react/jsx-runtime";
|
|
3
3
|
|
|
4
4
|
//#region src/components/controls/multi-select/MultiSelect.d.ts
|
|
5
5
|
type MultiSelectProps = Omit<DropdownProps, 'classNames' | 'children' | 'onChange' | 'onFocus' | 'onBlur' | 'onClick' | 'value' | 'search' | 'setValue' | 'store' | 'target'> & {
|
|
@@ -39,7 +39,7 @@ declare const MultiSelect: ({
|
|
|
39
39
|
keepMounted,
|
|
40
40
|
textSelected,
|
|
41
41
|
classNames
|
|
42
|
-
}: MultiSelectProps) =>
|
|
42
|
+
}: MultiSelectProps) => react_jsx_runtime52.JSX.Element;
|
|
43
43
|
//#endregion
|
|
44
44
|
export { MultiSelect, MultiSelectProps };
|
|
45
45
|
//# sourceMappingURL=MultiSelect.d.mts.map
|
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
import { DropdownProps, DropdownTextInputClassNames } from "../dropdown/Dropdown.mjs";
|
|
2
|
-
import * as
|
|
2
|
+
import * as react_jsx_runtime53 from "react/jsx-runtime";
|
|
3
3
|
|
|
4
4
|
//#region src/components/controls/multi-select/MultiSelectTags.d.ts
|
|
5
5
|
type MultiSelectTagsProps = Omit<DropdownProps, 'classNames' | 'children' | 'onChange' | 'onFocus' | 'onBlur' | 'onClick' | 'value' | 'search' | 'setValue' | 'store' | 'target'> & {
|
|
@@ -57,7 +57,7 @@ declare const MultiSelectTags: ({
|
|
|
57
57
|
startSlot,
|
|
58
58
|
endSlot,
|
|
59
59
|
classNames
|
|
60
|
-
}: MultiSelectTagsProps) =>
|
|
60
|
+
}: MultiSelectTagsProps) => react_jsx_runtime53.JSX.Element;
|
|
61
61
|
//#endregion
|
|
62
62
|
export { MultiSelectTags, MultiSelectTagsProps };
|
|
63
63
|
//# sourceMappingURL=MultiSelectTags.d.mts.map
|
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
import { TextInputProps } from "../text-input/TextInput.mjs";
|
|
2
|
-
import * as
|
|
2
|
+
import * as react_jsx_runtime54 from "react/jsx-runtime";
|
|
3
3
|
|
|
4
4
|
//#region src/components/controls/password-input/PasswordInput.d.ts
|
|
5
5
|
type PasswordInputProps = Omit<NonNullable<TextInputProps>, 'classNames'> & {
|
|
@@ -23,7 +23,7 @@ declare const PasswordInput: ({
|
|
|
23
23
|
hideText,
|
|
24
24
|
showText,
|
|
25
25
|
...props
|
|
26
|
-
}: PasswordInputProps) =>
|
|
26
|
+
}: PasswordInputProps) => react_jsx_runtime54.JSX.Element;
|
|
27
27
|
//#endregion
|
|
28
28
|
export { PasswordInput, PasswordInputProps };
|
|
29
29
|
//# sourceMappingURL=PasswordInput.d.mts.map
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { IconProps } from "../../data-display/icons/icon/Icon.mjs";
|
|
2
2
|
import "../../data-display/index.mjs";
|
|
3
3
|
import { PasswordInputProps } from "./PasswordInput.mjs";
|
|
4
|
-
import * as
|
|
4
|
+
import * as react_jsx_runtime55 from "react/jsx-runtime";
|
|
5
5
|
|
|
6
6
|
//#region src/components/controls/password-input/PasswordStrengthInput.d.ts
|
|
7
7
|
type PasswordRule = {
|
|
@@ -39,7 +39,7 @@ declare const PasswordStrengthInput: ({
|
|
|
39
39
|
showStrengthLabel,
|
|
40
40
|
classNames,
|
|
41
41
|
...props
|
|
42
|
-
}: PasswordStrengthInputProps) =>
|
|
42
|
+
}: PasswordStrengthInputProps) => react_jsx_runtime55.JSX.Element;
|
|
43
43
|
//#endregion
|
|
44
44
|
export { PasswordRule, PasswordSegment, PasswordStrengthInput, PasswordStrengthInputProps };
|
|
45
45
|
//# sourceMappingURL=PasswordStrengthInput.d.mts.map
|
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
import { PasswordInputProps } from "../password-input/PasswordInput.mjs";
|
|
2
|
-
import * as
|
|
2
|
+
import * as react_jsx_runtime56 from "react/jsx-runtime";
|
|
3
3
|
|
|
4
4
|
//#region src/components/controls/password-input-strength/oldPasswordInputStrength.d.ts
|
|
5
5
|
type PasswordInputStrengthProps = Omit<PasswordInputProps, 'classNames'> & {
|
|
@@ -37,7 +37,7 @@ declare const PasswordInputStrength: ({
|
|
|
37
37
|
weakPasswordText,
|
|
38
38
|
mediumPasswordText,
|
|
39
39
|
strongPasswordText
|
|
40
|
-
}: PasswordInputStrengthProps) =>
|
|
40
|
+
}: PasswordInputStrengthProps) => react_jsx_runtime56.JSX.Element;
|
|
41
41
|
//#endregion
|
|
42
42
|
export { PasswordInputStrength, PasswordInputStrengthProps };
|
|
43
43
|
//# sourceMappingURL=oldPasswordInputStrength.d.mts.map
|
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
import { DropdownProps } from "../dropdown/Dropdown.mjs";
|
|
2
|
-
import * as
|
|
2
|
+
import * as react_jsx_runtime57 from "react/jsx-runtime";
|
|
3
3
|
import { ReactNode } from "react";
|
|
4
4
|
|
|
5
5
|
//#region src/components/controls/select/Select.d.ts
|
|
@@ -32,7 +32,7 @@ declare const Select: ({
|
|
|
32
32
|
emptyMessage,
|
|
33
33
|
btnClearLabel,
|
|
34
34
|
classNames
|
|
35
|
-
}: SelectProps) =>
|
|
35
|
+
}: SelectProps) => react_jsx_runtime57.JSX.Element;
|
|
36
36
|
//#endregion
|
|
37
37
|
export { Select, SelectProps };
|
|
38
38
|
//# sourceMappingURL=Select.d.mts.map
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import * as
|
|
1
|
+
import * as react_jsx_runtime58 from "react/jsx-runtime";
|
|
2
2
|
import { ComponentProps, ReactNode } from "react";
|
|
3
3
|
|
|
4
4
|
//#region src/components/controls/text-input/TextInput.d.ts
|
|
@@ -26,7 +26,7 @@ declare const TextInput: ({
|
|
|
26
26
|
startSlot,
|
|
27
27
|
endSlot,
|
|
28
28
|
...props
|
|
29
|
-
}: TextInputProps) =>
|
|
29
|
+
}: TextInputProps) => react_jsx_runtime58.JSX.Element;
|
|
30
30
|
//#endregion
|
|
31
31
|
export { TextInput, TextInputProps };
|
|
32
32
|
//# sourceMappingURL=TextInput.d.mts.map
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import * as
|
|
1
|
+
import * as react_jsx_runtime59 from "react/jsx-runtime";
|
|
2
2
|
import { ComponentProps, ReactNode } from "react";
|
|
3
3
|
|
|
4
4
|
//#region src/components/controls/textarea/Textarea.d.ts
|
|
@@ -41,7 +41,7 @@ declare const Textarea: ({
|
|
|
41
41
|
autosize,
|
|
42
42
|
minRows,
|
|
43
43
|
maxRows
|
|
44
|
-
}: TextareaProps) =>
|
|
44
|
+
}: TextareaProps) => react_jsx_runtime59.JSX.Element;
|
|
45
45
|
//#endregion
|
|
46
46
|
export { Textarea, TextareaProps };
|
|
47
47
|
//# sourceMappingURL=Textarea.d.mts.map
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import * as
|
|
1
|
+
import * as react_jsx_runtime74 from "react/jsx-runtime";
|
|
2
2
|
|
|
3
3
|
//#region src/components/controls/utils/chevron/Chevron.d.ts
|
|
4
4
|
type ChevronProps = {
|
|
@@ -21,7 +21,7 @@ declare const Chevron: ({
|
|
|
21
21
|
chevronOpen,
|
|
22
22
|
chevronClose,
|
|
23
23
|
classNames
|
|
24
|
-
}: ChevronProps) =>
|
|
24
|
+
}: ChevronProps) => react_jsx_runtime74.JSX.Element;
|
|
25
25
|
//#endregion
|
|
26
26
|
export { Chevron, ChevronProps };
|
|
27
27
|
//# sourceMappingURL=Chevron.d.mts.map
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import * as
|
|
1
|
+
import * as react_jsx_runtime73 from "react/jsx-runtime";
|
|
2
2
|
|
|
3
3
|
//#region src/components/controls/utils/clear-button/ClearButton.d.ts
|
|
4
4
|
type ClearButtonProps = {
|
|
@@ -20,7 +20,7 @@ declare const ClearButton: ({
|
|
|
20
20
|
onClick,
|
|
21
21
|
name,
|
|
22
22
|
classNames
|
|
23
|
-
}: ClearButtonProps) =>
|
|
23
|
+
}: ClearButtonProps) => react_jsx_runtime73.JSX.Element;
|
|
24
24
|
//#endregion
|
|
25
25
|
export { ClearButton, ClearButtonProps };
|
|
26
26
|
//# sourceMappingURL=ClearButton.d.mts.map
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { AvatarProps } from "../avatar/Avatar.mjs";
|
|
2
2
|
import { RemovableItemProps } from "../removable-item/RemovableItem.mjs";
|
|
3
3
|
import "../index.mjs";
|
|
4
|
-
import * as
|
|
4
|
+
import * as react_jsx_runtime32 from "react/jsx-runtime";
|
|
5
5
|
import { ReactNode } from "react";
|
|
6
6
|
|
|
7
7
|
//#region src/components/data-display/assigned-user/AssignedUser.d.ts
|
|
@@ -31,7 +31,7 @@ declare const AssignedUser: ({
|
|
|
31
31
|
removeButtonLabel,
|
|
32
32
|
children,
|
|
33
33
|
classNames
|
|
34
|
-
}: AssignedUserProps) =>
|
|
34
|
+
}: AssignedUserProps) => react_jsx_runtime32.JSX.Element;
|
|
35
35
|
//#endregion
|
|
36
36
|
export { AssignedUser, AssignedUserProps };
|
|
37
37
|
//# sourceMappingURL=AssignedUser.d.mts.map
|
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
import { AvatarVariantProps } from "@mage-ui/styled-system/recipes";
|
|
2
|
-
import * as
|
|
2
|
+
import * as react_jsx_runtime33 from "react/jsx-runtime";
|
|
3
3
|
|
|
4
4
|
//#region src/components/data-display/avatar/Avatar.d.ts
|
|
5
5
|
type AvatarProps = {
|
|
@@ -18,7 +18,7 @@ declare const Avatar: ({
|
|
|
18
18
|
name,
|
|
19
19
|
src,
|
|
20
20
|
alt
|
|
21
|
-
}: AvatarProps) =>
|
|
21
|
+
}: AvatarProps) => react_jsx_runtime33.JSX.Element;
|
|
22
22
|
//#endregion
|
|
23
23
|
export { Avatar, AvatarProps };
|
|
24
24
|
//# sourceMappingURL=Avatar.d.mts.map
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import * as
|
|
1
|
+
import * as react_jsx_runtime34 from "react/jsx-runtime";
|
|
2
2
|
import React from "react";
|
|
3
3
|
|
|
4
4
|
//#region src/components/data-display/badge/Badge.d.ts
|
|
@@ -18,7 +18,7 @@ declare const Badge: ({
|
|
|
18
18
|
endSlot,
|
|
19
19
|
startSlot,
|
|
20
20
|
classNames
|
|
21
|
-
}: BadgeProps) =>
|
|
21
|
+
}: BadgeProps) => react_jsx_runtime34.JSX.Element;
|
|
22
22
|
//#endregion
|
|
23
23
|
export { Badge, BadgeProps };
|
|
24
24
|
//# sourceMappingURL=Badge.d.mts.map
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import * as
|
|
1
|
+
import * as react_jsx_runtime35 from "react/jsx-runtime";
|
|
2
2
|
import { CSSProperties } from "react";
|
|
3
3
|
import { DateLocalizer, DateLocalizer as DateLocalizer$1, Event, Event as CalendarEvent, momentLocalizer } from "react-big-calendar";
|
|
4
4
|
|
|
@@ -60,7 +60,7 @@ declare const Calendar$1: ({
|
|
|
60
60
|
messages,
|
|
61
61
|
popup,
|
|
62
62
|
components
|
|
63
|
-
}: CalendarProps) =>
|
|
63
|
+
}: CalendarProps) => react_jsx_runtime35.JSX.Element;
|
|
64
64
|
//#endregion
|
|
65
65
|
export { Calendar$1 as Calendar, type CalendarEvent, CalendarProps, type DateLocalizer$1 as DateLocalizer, momentLocalizer };
|
|
66
66
|
//# sourceMappingURL=Calendar.d.mts.map
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import * as
|
|
1
|
+
import * as react_jsx_runtime36 from "react/jsx-runtime";
|
|
2
2
|
|
|
3
3
|
//#region src/components/data-display/loader-dot/LoaderDot.d.ts
|
|
4
4
|
type LoaderDotProps = {
|
|
@@ -9,7 +9,7 @@ type LoaderDotProps = {
|
|
|
9
9
|
};
|
|
10
10
|
declare const LoaderDot: ({
|
|
11
11
|
classNames
|
|
12
|
-
}: LoaderDotProps) =>
|
|
12
|
+
}: LoaderDotProps) => react_jsx_runtime36.JSX.Element;
|
|
13
13
|
//#endregion
|
|
14
14
|
export { LoaderDot, LoaderDotProps };
|
|
15
15
|
//# sourceMappingURL=LoaderDot.d.mts.map
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import * as
|
|
1
|
+
import * as react_jsx_runtime37 from "react/jsx-runtime";
|
|
2
2
|
|
|
3
3
|
//#region src/components/data-display/loader-oval/LoaderOval.d.ts
|
|
4
4
|
type LoaderOvalProps = {
|
|
@@ -9,7 +9,7 @@ type LoaderOvalProps = {
|
|
|
9
9
|
};
|
|
10
10
|
declare const LoaderOval: ({
|
|
11
11
|
classNames
|
|
12
|
-
}: LoaderOvalProps) =>
|
|
12
|
+
}: LoaderOvalProps) => react_jsx_runtime37.JSX.Element;
|
|
13
13
|
//#endregion
|
|
14
14
|
export { LoaderOval, LoaderOvalProps };
|
|
15
15
|
//# sourceMappingURL=LoaderOval.d.mts.map
|
|
@@ -4,7 +4,7 @@ import { ComponentPropsWithoutRef, ReactNode } from "react";
|
|
|
4
4
|
|
|
5
5
|
//#region src/components/data-display/notification-banner/NotificationBanner.d.ts
|
|
6
6
|
type NotificationBannerIntent = 'info' | 'success' | 'warning' | 'danger';
|
|
7
|
-
type NotificationBannerProps = ComponentPropsWithoutRef<'div'> & {
|
|
7
|
+
type NotificationBannerProps = Omit<ComponentPropsWithoutRef<'div'>, 'className'> & {
|
|
8
8
|
intent?: NotificationBannerIntent;
|
|
9
9
|
startSlot?: ReactNode;
|
|
10
10
|
children: ReactNode;
|
|
@@ -23,7 +23,6 @@ declare const NotificationBanner: ({
|
|
|
23
23
|
startSlot,
|
|
24
24
|
children,
|
|
25
25
|
classNames,
|
|
26
|
-
className,
|
|
27
26
|
...props
|
|
28
27
|
}: NotificationBannerProps) => ReactNode;
|
|
29
28
|
//#endregion
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"NotificationBanner.d.mts","names":[],"sources":["../../../../src/components/data-display/notification-banner/NotificationBanner.tsx"],"mappings":";;;;;KAuBY,wBAAA;AAAA,KAaA,uBAAA,GAA0B,wBAAA;
|
|
1
|
+
{"version":3,"file":"NotificationBanner.d.mts","names":[],"sources":["../../../../src/components/data-display/notification-banner/NotificationBanner.tsx"],"mappings":";;;;;KAuBY,wBAAA;AAAA,KAaA,uBAAA,GAA0B,IAAA,CACpC,wBAAA;EAGA,MAAA,GAAS,wBAAA;EACT,SAAA,GAAY,SAAA;EACZ,QAAA,EAAU,SAAA;EACV,UAAA;IACE,kBAAA;IACA,IAAA;IACA,OAAA;IACA,OAAA;IACA,OAAA;IACA,WAAA,GAAc,gBAAA;IACd,IAAA,GAAO,SAAA;EAAA;AAAA;AAAA,cAIE,kBAAA;EAAsB,MAAA;EAAA,SAAA;EAAA,QAAA;EAAA,UAAA;EAAA,GAAA;AAAA,GAMhC,uBAAA,KAA0B,SAAA"}
|
|
@@ -1,2 +1,2 @@
|
|
|
1
|
-
import{Icon as e}from"../icons/icon/Icon.mjs";import{IconWrapped as t}from"../icons/icon-wrapped/IconWrapped.mjs";import{cx as n}from"@mage-ui/styled-system/css";import{notificationBanner as r,notificationBannerContent as i,notificationBannerIcon as a,notificationBannerIconIconRaw as o,notificationBannerIconIconRawRoot as s,notificationBannerIconRoot as c,notificationBannerIconWrapped as l,notificationBannerIconWrappedRoot as u,notificationBannerRoot as d,notificationBannerSection as f,notificationBannerWrapper as p}from"@mage-ui/styled-system/recipes";import{jsx as m,jsxs as h}from"react/jsx-runtime";const g={info:`mage-notification-banner-info-circle`,success:`mage-notification-banner-info-circle`,warning:`mage-notification-banner-info-circle`,danger:`mage-notification-banner-info-circle`},_=({intent:_=`info`,startSlot:v,children:y,classNames:b
|
|
1
|
+
import{Icon as e}from"../icons/icon/Icon.mjs";import{IconWrapped as t}from"../icons/icon-wrapped/IconWrapped.mjs";import{cx as n}from"@mage-ui/styled-system/css";import{notificationBanner as r,notificationBannerContent as i,notificationBannerIcon as a,notificationBannerIconIconRaw as o,notificationBannerIconIconRawRoot as s,notificationBannerIconRoot as c,notificationBannerIconWrapped as l,notificationBannerIconWrappedRoot as u,notificationBannerRoot as d,notificationBannerSection as f,notificationBannerWrapper as p}from"@mage-ui/styled-system/recipes";import{jsx as m,jsxs as h}from"react/jsx-runtime";const g={info:`mage-notification-banner-info-circle`,success:`mage-notification-banner-info-circle`,warning:`mage-notification-banner-info-circle`,danger:`mage-notification-banner-info-circle`},_=({intent:_=`info`,startSlot:v,children:y,classNames:b,...x})=>{let S=g[_];return m(`div`,{...x,"data-intent":_,className:n(b?.notificationBanner??r(),b?.root??d()),children:h(`div`,{className:b?.wrapper??p(),children:[m(`div`,{className:b?.section??f(),children:v||m(t,{classNames:{iconWrapped:b?.iconWrapped?.iconWrapped??l(),root:b?.iconWrapped?.root??u()},children:m(e,{name:S,path:`/icons/sprite-mage.svg`,classNames:{icon:b?.icon?.icon??a(),root:b?.icon?.root??c(),iconRaw:{iconRaw:b?.icon?.iconRaw?.iconRaw??o(),root:b?.icon?.iconRaw?.root??s()}}})})}),m(`div`,{className:b?.content??i(),children:y})]})})};export{_ as NotificationBanner};
|
|
2
2
|
//# sourceMappingURL=NotificationBanner.mjs.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"NotificationBanner.mjs","names":[],"sources":["../../../../src/components/data-display/notification-banner/NotificationBanner.tsx"],"sourcesContent":["import type { ComponentPropsWithoutRef, ReactNode } from 'react';\n\nimport { cx } from '@mage-ui/styled-system/css';\nimport {\n notificationBanner,\n notificationBannerContent,\n notificationBannerIcon,\n notificationBannerIconIconRaw,\n notificationBannerIconIconRawRoot,\n notificationBannerIconRoot,\n notificationBannerIconWrapped,\n notificationBannerIconWrappedRoot,\n notificationBannerRoot,\n notificationBannerSection,\n notificationBannerWrapper,\n} from '@mage-ui/styled-system/recipes';\n\nimport { Icon, type IconProps } from '../icons/icon/Icon';\nimport {\n IconWrapped,\n type IconWrappedProps,\n} from '../icons/icon-wrapped/IconWrapped';\n\nexport type NotificationBannerIntent =\n | 'info'\n | 'success'\n | 'warning'\n | 'danger';\n\nconst INTENT_ICON_NAME_MAP: Record<NotificationBannerIntent, string> = {\n info: 'mage-notification-banner-info-circle',\n success: 'mage-notification-banner-info-circle',\n warning: 'mage-notification-banner-info-circle',\n danger: 'mage-notification-banner-info-circle',\n};\n\nexport type NotificationBannerProps = ComponentPropsWithoutRef<'div'> & {\n intent?: NotificationBannerIntent;\n startSlot?: ReactNode;\n children: ReactNode;\n classNames?: {\n notificationBanner?: string;\n root?: string;\n wrapper?: string;\n section?: string;\n content?: string;\n iconWrapped?: IconWrappedProps['classNames'];\n icon?: IconProps['classNames'];\n };\n};\n\nexport const NotificationBanner = ({\n intent = 'info',\n startSlot,\n children,\n classNames,\n
|
|
1
|
+
{"version":3,"file":"NotificationBanner.mjs","names":[],"sources":["../../../../src/components/data-display/notification-banner/NotificationBanner.tsx"],"sourcesContent":["import type { ComponentPropsWithoutRef, ReactNode } from 'react';\n\nimport { cx } from '@mage-ui/styled-system/css';\nimport {\n notificationBanner,\n notificationBannerContent,\n notificationBannerIcon,\n notificationBannerIconIconRaw,\n notificationBannerIconIconRawRoot,\n notificationBannerIconRoot,\n notificationBannerIconWrapped,\n notificationBannerIconWrappedRoot,\n notificationBannerRoot,\n notificationBannerSection,\n notificationBannerWrapper,\n} from '@mage-ui/styled-system/recipes';\n\nimport { Icon, type IconProps } from '../icons/icon/Icon';\nimport {\n IconWrapped,\n type IconWrappedProps,\n} from '../icons/icon-wrapped/IconWrapped';\n\nexport type NotificationBannerIntent =\n | 'info'\n | 'success'\n | 'warning'\n | 'danger';\n\nconst INTENT_ICON_NAME_MAP: Record<NotificationBannerIntent, string> = {\n info: 'mage-notification-banner-info-circle',\n success: 'mage-notification-banner-info-circle',\n warning: 'mage-notification-banner-info-circle',\n danger: 'mage-notification-banner-info-circle',\n};\n\nexport type NotificationBannerProps = Omit<\n ComponentPropsWithoutRef<'div'>,\n 'className'\n> & {\n intent?: NotificationBannerIntent;\n startSlot?: ReactNode;\n children: ReactNode;\n classNames?: {\n notificationBanner?: string;\n root?: string;\n wrapper?: string;\n section?: string;\n content?: string;\n iconWrapped?: IconWrappedProps['classNames'];\n icon?: IconProps['classNames'];\n };\n};\n\nexport const NotificationBanner = ({\n intent = 'info',\n startSlot,\n children,\n classNames,\n ...props\n}: NotificationBannerProps): ReactNode => {\n const iconName = INTENT_ICON_NAME_MAP[intent];\n\n return (\n <div\n {...props}\n data-intent={intent}\n className={cx(\n classNames?.notificationBanner ?? notificationBanner(),\n classNames?.root ?? notificationBannerRoot(),\n )}\n >\n <div className={classNames?.wrapper ?? notificationBannerWrapper()}>\n <div className={classNames?.section ?? notificationBannerSection()}>\n {startSlot ? (\n startSlot\n ) : (\n <IconWrapped\n classNames={{\n iconWrapped:\n classNames?.iconWrapped?.iconWrapped ??\n notificationBannerIconWrapped(),\n root:\n classNames?.iconWrapped?.root ??\n notificationBannerIconWrappedRoot(),\n }}\n >\n <Icon\n name={iconName}\n path='/icons/sprite-mage.svg'\n classNames={{\n icon: classNames?.icon?.icon ?? notificationBannerIcon(),\n root: classNames?.icon?.root ?? notificationBannerIconRoot(),\n iconRaw: {\n iconRaw:\n classNames?.icon?.iconRaw?.iconRaw ??\n notificationBannerIconIconRaw(),\n root:\n classNames?.icon?.iconRaw?.root ??\n notificationBannerIconIconRawRoot(),\n },\n }}\n />\n </IconWrapped>\n )}\n </div>\n <div className={classNames?.content ?? notificationBannerContent()}>\n {children}\n </div>\n </div>\n </div>\n );\n};\n"],"mappings":"imBA6BA,MAAM,EAAiE,CACrE,KAAM,uCACN,QAAS,uCACT,QAAS,uCACT,OAAQ,uCACT,CAoBY,GAAsB,CACjC,SAAS,OACT,YACA,WACA,aACA,GAAG,KACqC,CACxC,IAAM,EAAW,EAAqB,GAEtC,OACE,EAAC,MAAA,CACC,GAAI,EACJ,cAAa,EACb,UAAW,EACT,GAAY,oBAAsB,GAAoB,CACtD,GAAY,MAAQ,GAAwB,CAC7C,UAED,EAAC,MAAA,CAAI,UAAW,GAAY,SAAW,GAA2B,WAChE,EAAC,MAAA,CAAI,UAAW,GAAY,SAAW,GAA2B,UAC/D,GAGC,EAAC,EAAA,CACC,WAAY,CACV,YACE,GAAY,aAAa,aACzB,GAA+B,CACjC,KACE,GAAY,aAAa,MACzB,GAAmC,CACtC,UAED,EAAC,EAAA,CACC,KAAM,EACN,KAAK,yBACL,WAAY,CACV,KAAM,GAAY,MAAM,MAAQ,GAAwB,CACxD,KAAM,GAAY,MAAM,MAAQ,GAA4B,CAC5D,QAAS,CACP,QACE,GAAY,MAAM,SAAS,SAC3B,GAA+B,CACjC,KACE,GAAY,MAAM,SAAS,MAC3B,GAAmC,CACtC,CACF,EACD,EACU,EAEZ,CACN,EAAC,MAAA,CAAI,UAAW,GAAY,SAAW,GAA2B,CAC/D,YACG,CAAA,EACF,EACF"}
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
import { ButtonIconProps } from "../../buttons/button-icon/ButtonIcon.mjs";
|
|
2
2
|
import "../../buttons/index.mjs";
|
|
3
|
-
import * as
|
|
3
|
+
import * as react_jsx_runtime38 from "react/jsx-runtime";
|
|
4
4
|
import { ReactNode } from "react";
|
|
5
5
|
|
|
6
6
|
//#region src/components/data-display/removable-item/RemovableItem.d.ts
|
|
@@ -23,7 +23,7 @@ declare const RemovableItem: ({
|
|
|
23
23
|
onRemove,
|
|
24
24
|
removeButtonLabel,
|
|
25
25
|
classNames
|
|
26
|
-
}: RemovableItemProps) =>
|
|
26
|
+
}: RemovableItemProps) => react_jsx_runtime38.JSX.Element;
|
|
27
27
|
//#endregion
|
|
28
28
|
export { RemovableItem, RemovableItemProps };
|
|
29
29
|
//# sourceMappingURL=RemovableItem.d.mts.map
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { BadgeProps } from "../badge/Badge.mjs";
|
|
2
2
|
import { TagGroupProps } from "../tag-group/TagGroup.mjs";
|
|
3
3
|
import "../index.mjs";
|
|
4
|
-
import * as
|
|
4
|
+
import * as react_jsx_runtime39 from "react/jsx-runtime";
|
|
5
5
|
|
|
6
6
|
//#region src/components/data-display/tag/Tag.d.ts
|
|
7
7
|
type TagProps = Omit<BadgeProps, 'classNames'> & {
|
|
@@ -25,11 +25,11 @@ declare const Tag: {
|
|
|
25
25
|
onRemove,
|
|
26
26
|
classNames,
|
|
27
27
|
children
|
|
28
|
-
}: TagProps):
|
|
28
|
+
}: TagProps): react_jsx_runtime39.JSX.Element;
|
|
29
29
|
Group: ({
|
|
30
30
|
children,
|
|
31
31
|
classNames
|
|
32
|
-
}: TagGroupProps) =>
|
|
32
|
+
}: TagGroupProps) => react_jsx_runtime39.JSX.Element;
|
|
33
33
|
};
|
|
34
34
|
//#endregion
|
|
35
35
|
export { Tag, TagProps };
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import * as
|
|
1
|
+
import * as react_jsx_runtime41 from "react/jsx-runtime";
|
|
2
2
|
|
|
3
3
|
//#region src/components/data-display/tag-group/TagGroup.d.ts
|
|
4
4
|
type TagGroupProps = {
|
|
@@ -11,7 +11,7 @@ type TagGroupProps = {
|
|
|
11
11
|
declare const TagGroup: ({
|
|
12
12
|
children,
|
|
13
13
|
classNames
|
|
14
|
-
}: TagGroupProps) =>
|
|
14
|
+
}: TagGroupProps) => react_jsx_runtime41.JSX.Element;
|
|
15
15
|
//#endregion
|
|
16
16
|
export { TagGroup, TagGroupProps };
|
|
17
17
|
//# sourceMappingURL=TagGroup.d.mts.map
|
|
@@ -2,7 +2,7 @@ import { IconProps } from "../icons/icon/Icon.mjs";
|
|
|
2
2
|
import { IconWrappedProps } from "../icons/icon-wrapped/IconWrapped.mjs";
|
|
3
3
|
import { RemovableItemProps } from "../removable-item/RemovableItem.mjs";
|
|
4
4
|
import "../index.mjs";
|
|
5
|
-
import * as
|
|
5
|
+
import * as react_jsx_runtime42 from "react/jsx-runtime";
|
|
6
6
|
import { ReactNode } from "react";
|
|
7
7
|
|
|
8
8
|
//#region src/components/data-display/uploaded-file/UploadedFile.d.ts
|
|
@@ -35,7 +35,7 @@ declare const UploadedFile: ({
|
|
|
35
35
|
children,
|
|
36
36
|
onRemove,
|
|
37
37
|
classNames
|
|
38
|
-
}: UploadedFileProps) =>
|
|
38
|
+
}: UploadedFileProps) => react_jsx_runtime42.JSX.Element;
|
|
39
39
|
//#endregion
|
|
40
40
|
export { UploadedFile, UploadedFileProps };
|
|
41
41
|
//# sourceMappingURL=UploadedFile.d.mts.map
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import * as
|
|
1
|
+
import * as react_jsx_runtime31 from "react/jsx-runtime";
|
|
2
2
|
import { ReactNode } from "react";
|
|
3
3
|
|
|
4
4
|
//#region src/components/data-display/uploaded-file/UploadedFileDetails.d.ts
|
|
@@ -17,7 +17,7 @@ declare const UploadedFileDetails: ({
|
|
|
17
17
|
fileDate,
|
|
18
18
|
fileType,
|
|
19
19
|
classNames
|
|
20
|
-
}: UploadedFileDetailsProps) =>
|
|
20
|
+
}: UploadedFileDetailsProps) => react_jsx_runtime31.JSX.Element;
|
|
21
21
|
//#endregion
|
|
22
22
|
export { UploadedFileDetails, UploadedFileDetailsProps };
|
|
23
23
|
//# sourceMappingURL=UploadedFileDetails.d.mts.map
|
|
@@ -3,7 +3,7 @@ import { FormSubmitProps } from "./controls/FormSubmit.mjs";
|
|
|
3
3
|
import { FormCheckboxProps } from "./controls/FormCheckbox.mjs";
|
|
4
4
|
import { FormPasswordProps } from "./controls/FormPassword.mjs";
|
|
5
5
|
import "../index.mjs";
|
|
6
|
-
import * as
|
|
6
|
+
import * as react_jsx_runtime6 from "react/jsx-runtime";
|
|
7
7
|
import React, { ReactNode } from "react";
|
|
8
8
|
import { FieldValues, UseFormSetError } from "react-hook-form";
|
|
9
9
|
import { ZodObject, ZodTypeAny } from "zod";
|
|
@@ -44,7 +44,7 @@ declare const Form: {
|
|
|
44
44
|
schema,
|
|
45
45
|
t,
|
|
46
46
|
classNames
|
|
47
|
-
}: FormProps<T>):
|
|
47
|
+
}: FormProps<T>): react_jsx_runtime6.JSX.Element;
|
|
48
48
|
displayName: string;
|
|
49
49
|
TextInput: {
|
|
50
50
|
({
|
|
@@ -55,7 +55,7 @@ declare const Form: {
|
|
|
55
55
|
$rule?: string;
|
|
56
56
|
isSubmitting?: boolean;
|
|
57
57
|
name: string;
|
|
58
|
-
} & TextInputProps):
|
|
58
|
+
} & TextInputProps): react_jsx_runtime6.JSX.Element;
|
|
59
59
|
displayName: string;
|
|
60
60
|
};
|
|
61
61
|
Submit: {
|
|
@@ -63,7 +63,7 @@ declare const Form: {
|
|
|
63
63
|
children,
|
|
64
64
|
successText,
|
|
65
65
|
...props
|
|
66
|
-
}: FormSubmitProps):
|
|
66
|
+
}: FormSubmitProps): react_jsx_runtime6.JSX.Element;
|
|
67
67
|
displayName: string;
|
|
68
68
|
};
|
|
69
69
|
Hidden: {
|
|
@@ -75,7 +75,7 @@ declare const Form: {
|
|
|
75
75
|
name?: string;
|
|
76
76
|
value?: string;
|
|
77
77
|
defaultValue?: string;
|
|
78
|
-
} & React.InputHTMLAttributes<HTMLInputElement>):
|
|
78
|
+
} & React.InputHTMLAttributes<HTMLInputElement>): react_jsx_runtime6.JSX.Element;
|
|
79
79
|
displayName: string;
|
|
80
80
|
};
|
|
81
81
|
Checkbox: {
|
|
@@ -84,7 +84,7 @@ declare const Form: {
|
|
|
84
84
|
isSubmitting,
|
|
85
85
|
name,
|
|
86
86
|
...props
|
|
87
|
-
}: FormCheckboxProps):
|
|
87
|
+
}: FormCheckboxProps): react_jsx_runtime6.JSX.Element;
|
|
88
88
|
displayName: string;
|
|
89
89
|
};
|
|
90
90
|
Password: {
|
|
@@ -96,7 +96,7 @@ declare const Form: {
|
|
|
96
96
|
name,
|
|
97
97
|
rules,
|
|
98
98
|
...props
|
|
99
|
-
}: FormPasswordProps):
|
|
99
|
+
}: FormPasswordProps): react_jsx_runtime6.JSX.Element;
|
|
100
100
|
displayName: string;
|
|
101
101
|
};
|
|
102
102
|
};
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"Form.d.mts","names":[],"sources":["../../../src/components/forms/Form.tsx"],"mappings":";;;;;;;;;;;KAeK,YAAA;EACH,IAAA;EACA,OAAA;EACA,MAAA;EACA,GAAA;AAAA;AAAA,KAGU,SAAA,WAAoB,WAAA;EAC9B,QAAA,GAAW,MAAA;IAAU,IAAA,EAAM,CAAA;EAAA,MAAQ,OAAA;EACnC,aAAA,IAAiB,QAAA,EAAU,YAAA;EAC3B,eAAA,IAAmB,MAAA;IACjB,OAAA;IACA,QAAA,EAAU,eAAA,CAAgB,CAAA;IAC1B,MAAA;EAAA;EAEF,aAAA;EACA,QAAA,EAAU,SAAA;EACV,MAAA,GAAS,SAAA,CAAU,MAAA,SAAe,UAAA;EAClC,CAAA,IACE,GAAA,UACA,QAAA,GAAW,MAAA,kBACX,QAAA,uBACY,KAAA,CAAM,SAAA;EACpB,UAAA;IACE,IAAA;IACA,IAAA;EAAA;AAAA;AAAA,cAYS,IAAA;EAAA,WAAkB,WAAA;IAAW,QAAA;IAAA,aAAA;IAAA,eAAA;IAAA,aAAA;IAAA,QAAA;IAAA,MAAA;IAAA,CAAA;IAAA;EAAA,GASvC,SAAA,CAAU,CAAA,IAAE,
|
|
1
|
+
{"version":3,"file":"Form.d.mts","names":[],"sources":["../../../src/components/forms/Form.tsx"],"mappings":";;;;;;;;;;;KAeK,YAAA;EACH,IAAA;EACA,OAAA;EACA,MAAA;EACA,GAAA;AAAA;AAAA,KAGU,SAAA,WAAoB,WAAA;EAC9B,QAAA,GAAW,MAAA;IAAU,IAAA,EAAM,CAAA;EAAA,MAAQ,OAAA;EACnC,aAAA,IAAiB,QAAA,EAAU,YAAA;EAC3B,eAAA,IAAmB,MAAA;IACjB,OAAA;IACA,QAAA,EAAU,eAAA,CAAgB,CAAA;IAC1B,MAAA;EAAA;EAEF,aAAA;EACA,QAAA,EAAU,SAAA;EACV,MAAA,GAAS,SAAA,CAAU,MAAA,SAAe,UAAA;EAClC,CAAA,IACE,GAAA,UACA,QAAA,GAAW,MAAA,kBACX,QAAA,uBACY,KAAA,CAAM,SAAA;EACpB,UAAA;IACE,IAAA;IACA,IAAA;EAAA;AAAA;AAAA,cAYS,IAAA;EAAA,WAAkB,WAAA;IAAW,QAAA;IAAA,aAAA;IAAA,eAAA;IAAA,aAAA;IAAA,QAAA;IAAA,MAAA;IAAA,CAAA;IAAA;EAAA,GASvC,SAAA,CAAU,CAAA,IAAE,kBAAA,CAAA,GAAA,CAAA,OAAA"}
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import * as
|
|
1
|
+
import * as react_jsx_runtime5 from "react/jsx-runtime";
|
|
2
2
|
import { ReactNode } from "react";
|
|
3
3
|
|
|
4
4
|
//#region src/components/layouts/top-bar/TopBar.d.ts
|
|
@@ -17,7 +17,7 @@ declare const TopBar: ({
|
|
|
17
17
|
startSlot,
|
|
18
18
|
endSlot,
|
|
19
19
|
classNames
|
|
20
|
-
}: TopBarProps) =>
|
|
20
|
+
}: TopBarProps) => react_jsx_runtime5.JSX.Element;
|
|
21
21
|
//#endregion
|
|
22
22
|
export { TopBar, TopBarProps };
|
|
23
23
|
//# sourceMappingURL=TopBar.d.mts.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"TopBar.d.mts","names":[],"sources":["../../../../src/components/layouts/top-bar/TopBar.tsx"],"mappings":";;;;KAWY,WAAA;EACV,SAAA,GAAY,SAAA;EACZ,OAAA,GAAU,SAAA;EACV,UAAA;IACE,MAAA;IACA,IAAA;IACA,OAAA;IACA,SAAA;IACA,OAAA;EAAA;AAAA;AAAA,cAIS,MAAA;EAAU,SAAA;EAAA,OAAA;EAAA;AAAA,GAAoC,WAAA,KAAW,
|
|
1
|
+
{"version":3,"file":"TopBar.d.mts","names":[],"sources":["../../../../src/components/layouts/top-bar/TopBar.tsx"],"mappings":";;;;KAWY,WAAA;EACV,SAAA,GAAY,SAAA;EACZ,OAAA,GAAU,SAAA;EACV,UAAA;IACE,MAAA;IACA,IAAA;IACA,OAAA;IACA,SAAA;IACA,OAAA;EAAA;AAAA;AAAA,cAIS,MAAA;EAAU,SAAA;EAAA,OAAA;EAAA;AAAA,GAAoC,WAAA,KAAW,kBAAA,CAAA,GAAA,CAAA,OAAA"}
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import * as
|
|
1
|
+
import * as react_jsx_runtime29 from "react/jsx-runtime";
|
|
2
2
|
|
|
3
3
|
//#region src/components/misc/horizontal-divider/HorizontalDivider.d.ts
|
|
4
4
|
type HorizontalDividerProps = {
|
|
@@ -9,7 +9,7 @@ type HorizontalDividerProps = {
|
|
|
9
9
|
};
|
|
10
10
|
declare const HorizontalDivider: ({
|
|
11
11
|
classNames
|
|
12
|
-
}: HorizontalDividerProps) =>
|
|
12
|
+
}: HorizontalDividerProps) => react_jsx_runtime29.JSX.Element;
|
|
13
13
|
//#endregion
|
|
14
14
|
export { HorizontalDivider, HorizontalDividerProps };
|
|
15
15
|
//# sourceMappingURL=HorizontalDivider.d.mts.map
|
|
@@ -1,2 +1,2 @@
|
|
|
1
|
-
import{cx as e}from"@mage-ui/styled-system/css";import{scrollAreaAutosize as t,scrollAreaAutosizeContent as n,scrollAreaAutosizeCorner as r,scrollAreaAutosizeRoot as i,scrollAreaAutosizeScrollbar as a,scrollAreaAutosizeThumb as o,scrollAreaAutosizeViewport as s}from"@mage-ui/styled-system/recipes";import{ScrollArea as c}from"@mantine/core";import{jsx as l}from"react/jsx-runtime";const u=({scrollbars:u=`y`,type:d,scrollbarSize:f,offsetScrollbars:p=!0,mah:m
|
|
1
|
+
import{cx as e}from"@mage-ui/styled-system/css";import{scrollAreaAutosize as t,scrollAreaAutosizeContent as n,scrollAreaAutosizeCorner as r,scrollAreaAutosizeRoot as i,scrollAreaAutosizeScrollbar as a,scrollAreaAutosizeThumb as o,scrollAreaAutosizeViewport as s}from"@mage-ui/styled-system/recipes";import{ScrollArea as c}from"@mantine/core";import{jsx as l}from"react/jsx-runtime";const u=({scrollbars:u=`y`,type:d,scrollbarSize:f,offsetScrollbars:p=!0,mah:m,children:h,classNames:g})=>l(c.Autosize,{scrollbars:u,type:d,scrollbarSize:f,offsetScrollbars:p,mah:m,classNames:{root:e(g?.scrollArea??t(),g?.root??i()),viewport:g?.viewport??s(),content:g?.content??n(),scrollbar:g?.scrollbar??a(),thumb:g?.thumb??o(),corner:g?.corner??r()},children:h});export{u as ScrollAreaAutosize};
|
|
2
2
|
//# sourceMappingURL=ScrollAreaAutosize.mjs.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"ScrollAreaAutosize.mjs","names":["MantineScrollArea"],"sources":["../../../../src/components/misc/scroll-area-autosize/ScrollAreaAutosize.tsx"],"sourcesContent":["import type { ReactNode } from 'react';\n\nimport { cx } from '@mage-ui/styled-system/css';\nimport {\n scrollAreaAutosize,\n scrollAreaAutosizeContent,\n scrollAreaAutosizeCorner,\n scrollAreaAutosizeRoot,\n scrollAreaAutosizeScrollbar,\n scrollAreaAutosizeThumb,\n scrollAreaAutosizeViewport,\n} from '@mage-ui/styled-system/recipes';\nimport { ScrollArea as MantineScrollArea } from '@mantine/core';\n\nimport type { ScrollAreaProps } from '../scroll-area/ScrollArea';\n\nexport type ScrollAreaAutosizeProps = {\n mah: string | number;\n} & ScrollAreaProps;\n\nexport const ScrollAreaAutosize = ({\n scrollbars = 'y',\n type,\n scrollbarSize,\n offsetScrollbars = true,\n mah
|
|
1
|
+
{"version":3,"file":"ScrollAreaAutosize.mjs","names":["MantineScrollArea"],"sources":["../../../../src/components/misc/scroll-area-autosize/ScrollAreaAutosize.tsx"],"sourcesContent":["import type { ReactNode } from 'react';\n\nimport { cx } from '@mage-ui/styled-system/css';\nimport {\n scrollAreaAutosize,\n scrollAreaAutosizeContent,\n scrollAreaAutosizeCorner,\n scrollAreaAutosizeRoot,\n scrollAreaAutosizeScrollbar,\n scrollAreaAutosizeThumb,\n scrollAreaAutosizeViewport,\n} from '@mage-ui/styled-system/recipes';\nimport { ScrollArea as MantineScrollArea } from '@mantine/core';\n\nimport type { ScrollAreaProps } from '../scroll-area/ScrollArea';\n\nexport type ScrollAreaAutosizeProps = {\n mah: string | number;\n} & ScrollAreaProps;\n\nexport const ScrollAreaAutosize = ({\n scrollbars = 'y',\n type,\n scrollbarSize,\n offsetScrollbars = true,\n mah,\n children,\n classNames,\n}: ScrollAreaAutosizeProps): ReactNode => {\n return (\n <MantineScrollArea.Autosize\n scrollbars={scrollbars}\n type={type}\n scrollbarSize={scrollbarSize}\n offsetScrollbars={offsetScrollbars}\n mah={mah}\n classNames={{\n root: cx(\n classNames?.scrollArea ?? scrollAreaAutosize(),\n classNames?.root ?? scrollAreaAutosizeRoot(),\n ),\n viewport: classNames?.viewport ?? scrollAreaAutosizeViewport(),\n content: classNames?.content ?? scrollAreaAutosizeContent(),\n scrollbar: classNames?.scrollbar ?? scrollAreaAutosizeScrollbar(),\n thumb: classNames?.thumb ?? scrollAreaAutosizeThumb(),\n corner: classNames?.corner ?? scrollAreaAutosizeCorner(),\n }}\n >\n {children}\n </MantineScrollArea.Autosize>\n );\n};\n"],"mappings":"8XAoBA,MAAa,GAAsB,CACjC,aAAa,IACb,OACA,gBACA,mBAAmB,GACnB,MACA,WACA,gBAGE,EAACA,EAAkB,SAAA,CACL,aACN,OACS,gBACG,mBACb,MACL,WAAY,CACV,KAAM,EACJ,GAAY,YAAc,GAAoB,CAC9C,GAAY,MAAQ,GAAwB,CAC7C,CACD,SAAU,GAAY,UAAY,GAA4B,CAC9D,QAAS,GAAY,SAAW,GAA2B,CAC3D,UAAW,GAAY,WAAa,GAA6B,CACjE,MAAO,GAAY,OAAS,GAAyB,CACrD,OAAQ,GAAY,QAAU,GAA0B,CACzD,CAEA,YAC0B"}
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import * as
|
|
1
|
+
import * as react_jsx_runtime30 from "react/jsx-runtime";
|
|
2
2
|
import { ComponentPropsWithoutRef, ReactNode } from "react";
|
|
3
3
|
|
|
4
4
|
//#region src/components/misc/visually-hidden/VisuallyHidden.d.ts
|
|
@@ -8,7 +8,7 @@ type VisuallyHiddenProps = {
|
|
|
8
8
|
declare const VisuallyHidden: ({
|
|
9
9
|
children,
|
|
10
10
|
...props
|
|
11
|
-
}: VisuallyHiddenProps) =>
|
|
11
|
+
}: VisuallyHiddenProps) => react_jsx_runtime30.JSX.Element;
|
|
12
12
|
//#endregion
|
|
13
13
|
export { VisuallyHidden, VisuallyHiddenProps };
|
|
14
14
|
//# sourceMappingURL=VisuallyHidden.d.mts.map
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import * as
|
|
1
|
+
import * as react_jsx_runtime68 from "react/jsx-runtime";
|
|
2
2
|
import { ReactNode } from "react";
|
|
3
3
|
|
|
4
4
|
//#region src/components/navigations/breadcrumbs/Breadcrumbs.d.ts
|
|
@@ -19,7 +19,7 @@ declare const Breadcrumbs: {
|
|
|
19
19
|
separator,
|
|
20
20
|
children,
|
|
21
21
|
classNames
|
|
22
|
-
}: BreadcrumbsProps):
|
|
22
|
+
}: BreadcrumbsProps): react_jsx_runtime68.JSX.Element;
|
|
23
23
|
Item: {
|
|
24
24
|
({
|
|
25
25
|
children
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
import { ButtonProps } from "../../buttons/button/Button.mjs";
|
|
2
2
|
import "../../buttons/index.mjs";
|
|
3
|
-
import * as
|
|
3
|
+
import * as react_jsx_runtime43 from "react/jsx-runtime";
|
|
4
4
|
import { ReactNode } from "react";
|
|
5
5
|
|
|
6
6
|
//#region src/components/navigations/menu/Menu.d.ts
|
|
@@ -47,17 +47,17 @@ declare const Menu: {
|
|
|
47
47
|
offset,
|
|
48
48
|
classNames,
|
|
49
49
|
targetButtonProps
|
|
50
|
-
}: MenuProps):
|
|
50
|
+
}: MenuProps): react_jsx_runtime43.JSX.Element;
|
|
51
51
|
Item: {
|
|
52
52
|
({
|
|
53
53
|
children
|
|
54
54
|
}: {
|
|
55
55
|
children: ReactNode;
|
|
56
|
-
}):
|
|
56
|
+
}): react_jsx_runtime43.JSX.Element;
|
|
57
57
|
displayName: string;
|
|
58
58
|
};
|
|
59
59
|
Divider: {
|
|
60
|
-
():
|
|
60
|
+
(): react_jsx_runtime43.JSX.Element;
|
|
61
61
|
displayName: string;
|
|
62
62
|
};
|
|
63
63
|
};
|
|
@@ -2,7 +2,7 @@ import { NavItemProps } from "./SidebarNavItem.mjs";
|
|
|
2
2
|
import { NavItemButtonProps } from "./SidebarNavItemButton.mjs";
|
|
3
3
|
import { LinkType, NavItemLinkProps } from "./SidebarNavItemLink.mjs";
|
|
4
4
|
import { SubnavProps } from "./SidebarSubnav.mjs";
|
|
5
|
-
import * as
|
|
5
|
+
import * as react_jsx_runtime60 from "react/jsx-runtime";
|
|
6
6
|
import { ReactNode } from "react";
|
|
7
7
|
|
|
8
8
|
//#region src/components/navigations/sidebars/sidebar/Sidebar.d.ts
|
|
@@ -11,22 +11,23 @@ type NavType = {
|
|
|
11
11
|
item?: string;
|
|
12
12
|
link?: LinkType;
|
|
13
13
|
root?: string;
|
|
14
|
+
scrollArea?: string;
|
|
14
15
|
};
|
|
15
16
|
type SidebarProps = {
|
|
16
17
|
area?: string;
|
|
17
18
|
classNames?: {
|
|
18
19
|
sidebar?: string;
|
|
19
20
|
root?: string;
|
|
20
|
-
|
|
21
|
-
|
|
21
|
+
topSlot?: string;
|
|
22
|
+
bottomSlot?: string;
|
|
22
23
|
nav?: NavType;
|
|
23
24
|
};
|
|
24
25
|
isCollapsed: boolean;
|
|
25
26
|
expandedItems?: string[];
|
|
26
27
|
defaultExpandedItems?: string[];
|
|
27
28
|
onExpandedItemsChange?: (expandedItems: string[]) => void;
|
|
28
|
-
|
|
29
|
-
|
|
29
|
+
topSlot?: ReactNode;
|
|
30
|
+
bottomSlot?: ReactNode;
|
|
30
31
|
children?: ReactNode;
|
|
31
32
|
};
|
|
32
33
|
declare const Sidebar: {
|
|
@@ -37,8 +38,8 @@ declare const Sidebar: {
|
|
|
37
38
|
expandedItems,
|
|
38
39
|
defaultExpandedItems,
|
|
39
40
|
onExpandedItemsChange,
|
|
40
|
-
|
|
41
|
-
|
|
41
|
+
topSlot,
|
|
42
|
+
bottomSlot,
|
|
42
43
|
children
|
|
43
44
|
}: SidebarProps): ReactNode;
|
|
44
45
|
displayName: string;
|
|
@@ -48,7 +49,7 @@ declare const Sidebar: {
|
|
|
48
49
|
isVisible,
|
|
49
50
|
isSubnav,
|
|
50
51
|
children
|
|
51
|
-
}: NavItemProps):
|
|
52
|
+
}: NavItemProps): react_jsx_runtime60.JSX.Element | null;
|
|
52
53
|
displayName: string;
|
|
53
54
|
};
|
|
54
55
|
Group: {
|
|
@@ -67,7 +68,7 @@ declare const Sidebar: {
|
|
|
67
68
|
};
|
|
68
69
|
};
|
|
69
70
|
isVisible?: boolean;
|
|
70
|
-
}):
|
|
71
|
+
}): react_jsx_runtime60.JSX.Element | null;
|
|
71
72
|
displayName: string;
|
|
72
73
|
};
|
|
73
74
|
NavList: {
|
|
@@ -81,7 +82,7 @@ declare const Sidebar: {
|
|
|
81
82
|
};
|
|
82
83
|
};
|
|
83
84
|
children?: ReactNode;
|
|
84
|
-
}):
|
|
85
|
+
}): react_jsx_runtime60.JSX.Element;
|
|
85
86
|
displayName: string;
|
|
86
87
|
};
|
|
87
88
|
NavItem: {
|
|
@@ -90,7 +91,7 @@ declare const Sidebar: {
|
|
|
90
91
|
isVisible,
|
|
91
92
|
isSubnav,
|
|
92
93
|
children
|
|
93
|
-
}: NavItemProps):
|
|
94
|
+
}: NavItemProps): react_jsx_runtime60.JSX.Element | null;
|
|
94
95
|
displayName: string;
|
|
95
96
|
};
|
|
96
97
|
NavGroup: {
|
|
@@ -109,7 +110,7 @@ declare const Sidebar: {
|
|
|
109
110
|
};
|
|
110
111
|
};
|
|
111
112
|
isVisible?: boolean;
|
|
112
|
-
}):
|
|
113
|
+
}): react_jsx_runtime60.JSX.Element | null;
|
|
113
114
|
displayName: string;
|
|
114
115
|
};
|
|
115
116
|
NavItemButton: {
|
|
@@ -124,7 +125,7 @@ declare const Sidebar: {
|
|
|
124
125
|
classNames,
|
|
125
126
|
isVisible,
|
|
126
127
|
tooltipLabel
|
|
127
|
-
}: NavItemButtonProps):
|
|
128
|
+
}: NavItemButtonProps): react_jsx_runtime60.JSX.Element | null;
|
|
128
129
|
displayName: string;
|
|
129
130
|
};
|
|
130
131
|
NavItemLink: {
|
|
@@ -139,7 +140,7 @@ declare const Sidebar: {
|
|
|
139
140
|
isExpanded,
|
|
140
141
|
isVisible,
|
|
141
142
|
isSubnav
|
|
142
|
-
}: NavItemLinkProps):
|
|
143
|
+
}: NavItemLinkProps): react_jsx_runtime60.JSX.Element | null;
|
|
143
144
|
displayName: string;
|
|
144
145
|
};
|
|
145
146
|
Subnav: {
|
|
@@ -147,7 +148,7 @@ declare const Sidebar: {
|
|
|
147
148
|
classNames,
|
|
148
149
|
isVisible,
|
|
149
150
|
children
|
|
150
|
-
}: SubnavProps):
|
|
151
|
+
}: SubnavProps): react_jsx_runtime60.JSX.Element | null;
|
|
151
152
|
displayName: string;
|
|
152
153
|
};
|
|
153
154
|
};
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"Sidebar.d.mts","names":[],"sources":["../../../../../src/components/navigations/sidebars/sidebar/Sidebar.tsx"],"mappings":";;;;;;;;
|
|
1
|
+
{"version":3,"file":"Sidebar.d.mts","names":[],"sources":["../../../../../src/components/navigations/sidebars/sidebar/Sidebar.tsx"],"mappings":";;;;;;;;KAuBY,OAAA;EACV,IAAA;EACA,IAAA;EACA,IAAA,GAAO,QAAA;EACP,IAAA;EACA,UAAA;AAAA;AAAA,KAGU,YAAA;EACV,IAAA;EACA,UAAA;IACE,OAAA;IACA,IAAA;IACA,OAAA;IACA,UAAA;IACA,GAAA,GAAM,OAAA;EAAA;EAER,WAAA;EACA,aAAA;EACA,oBAAA;EACA,qBAAA,IAAyB,aAAA;EACzB,OAAA,GAAU,SAAA;EACV,UAAA,GAAa,SAAA;EACb,QAAA,GAAW,SAAA;AAAA;AAAA,cAGA,OAAA;EAAA;;;;;;;;;;KAUV,YAAA,GAAe,SAAA"}
|
|
@@ -1,2 +1,2 @@
|
|
|
1
|
-
import{
|
|
1
|
+
import{ScrollAreaAutosize as e}from"../../../misc/scroll-area-autosize/ScrollAreaAutosize.mjs";import{SidebarProvider as t}from"./SidebarContext.mjs";import{NavList as n}from"./SidebarNavList.mjs";import{NavGroup as r}from"./SidebarNavGroup.mjs";import{NavItem as i}from"./SidebarNavItem.mjs";import{NavItemButton as a}from"./SidebarNavItemButton.mjs";import{NavItemLink as o}from"./SidebarNavItemLink.mjs";import{Subnav as s}from"./SidebarSubnav.mjs";import{cx as c}from"@mage-ui/styled-system/css";import{sidebar as l,sidebarBottomSlot as u,sidebarNavRoot as d,sidebarRoot as f,sidebarScrollAreaAutosize as p,sidebarTopSlot as m}from"@mage-ui/styled-system/recipes";import{jsx as h,jsxs as g}from"react/jsx-runtime";import{useEffect as _,useMemo as v,useRef as y,useState as b}from"react";const x=({area:r=`sidebar`,classNames:i,isCollapsed:a=!1,expandedItems:o,defaultExpandedItems:s=[],onExpandedItemsChange:x,topSlot:S,bottomSlot:C,children:w})=>{let[T,E]=b(s),D=y(!1),O=o??T,k=e=>{o===void 0&&E(e),x?.(e)};_(()=>{!D.current&&a&&k([]),D.current=a},[a,k]);let A=e=>{let t=O.includes(e);if(a){k(t?[]:[e]);return}k(t?O.filter(t=>t!==e):[...O,e])},j=(e,t)=>{if(t!==O.includes(e)){if(a){k(t?[e]:[]);return}k(t?[...O,e]:O.filter(t=>t!==e))}},M=v(()=>({isCollapsed:a,expandedItems:O,toggleItem:A,setItemExpanded:j,isItemExpanded:e=>O.includes(e)}),[O,a,j,A]),N=r===`sidebar`?void 0:{"--sidebar-grid-area":r};return h(t,{value:M,children:g(`div`,{"data-collapsed":a?`true`:`false`,className:c(i?.sidebar??l(),i?.root??f(),`group`),style:N,children:[S?h(`div`,{className:i?.topSlot??m(),children:S}):null,h(`nav`,{className:i?.nav?.root??d(),children:h(e,{mah:`100%`,scrollbars:`y`,classNames:{scrollArea:i?.nav?.scrollArea??p()},children:h(n,{classNames:i,children:w})})}),C?h(`div`,{className:i?.bottomSlot??u(),children:C}):null]})})};x.displayName=`Sidebar`,x.Item=i,x.Group=r,x.NavList=n,x.NavItem=i,x.NavGroup=r,x.NavItemButton=a,x.NavItemLink=o,x.Subnav=s;export{x as Sidebar};
|
|
2
2
|
//# sourceMappingURL=Sidebar.mjs.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"Sidebar.mjs","names":[],"sources":["../../../../../src/components/navigations/sidebars/sidebar/Sidebar.tsx"],"sourcesContent":["import type { CSSProperties, ReactNode } from 'react';\nimport { useEffect, useMemo, useRef, useState } from 'react';\n\nimport { cx } from '@mage-ui/styled-system/css';\nimport {\n sidebar,\n sidebarNavRoot,\n sidebarRoot,\n} from '@mage-ui/styled-system/recipes';\n\nimport { SidebarProvider } from './SidebarContext';\nimport { NavGroup } from './SidebarNavGroup';\nimport { NavItem } from './SidebarNavItem';\nimport { NavItemButton } from './SidebarNavItemButton';\nimport type { LinkType } from './SidebarNavItemLink';\nimport { NavItemLink } from './SidebarNavItemLink';\nimport { NavList } from './SidebarNavList';\nimport { Subnav } from './SidebarSubnav';\n\nexport type NavType = {\n list?: string;\n item?: string;\n link?: LinkType;\n root?: string;\n};\n\nexport type SidebarProps = {\n area?: string;\n classNames?: {\n sidebar?: string;\n root?: string;\n
|
|
1
|
+
{"version":3,"file":"Sidebar.mjs","names":[],"sources":["../../../../../src/components/navigations/sidebars/sidebar/Sidebar.tsx"],"sourcesContent":["import type { CSSProperties, ReactNode } from 'react';\nimport { useEffect, useMemo, useRef, useState } from 'react';\n\nimport { cx } from '@mage-ui/styled-system/css';\nimport {\n sidebar,\n sidebarBottomSlot,\n sidebarNavRoot,\n sidebarRoot,\n sidebarScrollAreaAutosize,\n sidebarTopSlot,\n} from '@mage-ui/styled-system/recipes';\n\nimport { ScrollAreaAutosize } from '../../../misc';\nimport { SidebarProvider } from './SidebarContext';\nimport { NavGroup } from './SidebarNavGroup';\nimport { NavItem } from './SidebarNavItem';\nimport { NavItemButton } from './SidebarNavItemButton';\nimport type { LinkType } from './SidebarNavItemLink';\nimport { NavItemLink } from './SidebarNavItemLink';\nimport { NavList } from './SidebarNavList';\nimport { Subnav } from './SidebarSubnav';\n\nexport type NavType = {\n list?: string;\n item?: string;\n link?: LinkType;\n root?: string;\n scrollArea?: string;\n};\n\nexport type SidebarProps = {\n area?: string;\n classNames?: {\n sidebar?: string;\n root?: string;\n topSlot?: string;\n bottomSlot?: string;\n nav?: NavType;\n };\n isCollapsed: boolean;\n expandedItems?: string[];\n defaultExpandedItems?: string[];\n onExpandedItemsChange?: (expandedItems: string[]) => void;\n topSlot?: ReactNode;\n bottomSlot?: ReactNode;\n children?: ReactNode;\n};\n\nexport const Sidebar = ({\n area = 'sidebar',\n classNames,\n isCollapsed = false,\n expandedItems,\n defaultExpandedItems = [],\n onExpandedItemsChange,\n topSlot,\n bottomSlot,\n children,\n}: SidebarProps): ReactNode => {\n const [uncontrolledExpandedItems, setUncontrolledExpandedItems] =\n useState<string[]>(defaultExpandedItems);\n const wasCollapsedRef = useRef(false);\n\n const currentExpandedItems = expandedItems ?? uncontrolledExpandedItems;\n\n const setExpandedItems = (nextExpandedItems: string[]) => {\n if (expandedItems === undefined) {\n setUncontrolledExpandedItems(nextExpandedItems);\n }\n\n onExpandedItemsChange?.(nextExpandedItems);\n };\n\n useEffect(() => {\n // Normalize state on collapse so expanded desktop subnavs do not remain\n // visible as flyouts.\n if (!wasCollapsedRef.current && isCollapsed) {\n setExpandedItems([]);\n }\n\n wasCollapsedRef.current = isCollapsed;\n }, [isCollapsed, setExpandedItems]);\n\n const toggleItem = (itemId: string) => {\n const isExpanded = currentExpandedItems.includes(itemId);\n\n if (isCollapsed) {\n setExpandedItems(isExpanded ? [] : [itemId]);\n return;\n }\n\n setExpandedItems(\n isExpanded\n ? currentExpandedItems.filter((id) => id !== itemId)\n : [...currentExpandedItems, itemId],\n );\n };\n\n const setItemExpanded = (itemId: string, isExpanded: boolean) => {\n const alreadyExpanded = currentExpandedItems.includes(itemId);\n\n if (isExpanded === alreadyExpanded) {\n return;\n }\n\n if (isCollapsed) {\n setExpandedItems(isExpanded ? [itemId] : []);\n return;\n }\n\n setExpandedItems(\n isExpanded\n ? [...currentExpandedItems, itemId]\n : currentExpandedItems.filter((id) => id !== itemId),\n );\n };\n\n const contextValue = useMemo(\n () => ({\n isCollapsed,\n expandedItems: currentExpandedItems,\n toggleItem,\n setItemExpanded,\n isItemExpanded: (itemId: string) => currentExpandedItems.includes(itemId),\n }),\n [currentExpandedItems, isCollapsed, setItemExpanded, toggleItem],\n );\n\n const style =\n area !== 'sidebar' ? { '--sidebar-grid-area': area } : undefined;\n\n return (\n <SidebarProvider value={contextValue}>\n <div\n data-collapsed={isCollapsed ? 'true' : 'false'}\n className={cx(\n classNames?.sidebar ?? sidebar(),\n classNames?.root ?? sidebarRoot(),\n 'group',\n )}\n style={style as CSSProperties}\n >\n {topSlot ? (\n <div className={classNames?.topSlot ?? sidebarTopSlot()}>\n {topSlot}\n </div>\n ) : null}\n\n <nav className={classNames?.nav?.root ?? sidebarNavRoot()}>\n <ScrollAreaAutosize\n mah='100%'\n scrollbars='y'\n classNames={{\n scrollArea:\n classNames?.nav?.scrollArea ?? sidebarScrollAreaAutosize(),\n }}\n >\n <NavList classNames={classNames}>{children}</NavList>\n </ScrollAreaAutosize>\n </nav>\n\n {bottomSlot ? (\n <div className={classNames?.bottomSlot ?? sidebarBottomSlot()}>\n {bottomSlot}\n </div>\n ) : null}\n </div>\n </SidebarProvider>\n );\n};\n\nSidebar.displayName = 'Sidebar';\nSidebar.Item = NavItem;\nSidebar.Group = NavGroup;\nSidebar.NavList = NavList;\nSidebar.NavItem = NavItem;\nSidebar.NavGroup = NavGroup;\nSidebar.NavItemButton = NavItemButton;\nSidebar.NavItemLink = NavItemLink;\nSidebar.Subnav = Subnav;\n"],"mappings":"uxBAiDA,MAAa,GAAW,CACtB,OAAO,UACP,aACA,cAAc,GACd,gBACA,uBAAuB,EAAE,CACzB,wBACA,UACA,aACA,cAC6B,CAC7B,GAAM,CAAC,EAA2B,GAChC,EAAmB,EAAqB,CACpC,EAAkB,EAAO,GAAM,CAE/B,EAAuB,GAAiB,EAExC,EAAoB,GAAgC,CACpD,IAAkB,IAAA,IACpB,EAA6B,EAAkB,CAGjD,IAAwB,EAAkB,EAG5C,MAAgB,CAGV,CAAC,EAAgB,SAAW,GAC9B,EAAiB,EAAE,CAAC,CAGtB,EAAgB,QAAU,GACzB,CAAC,EAAa,EAAiB,CAAC,CAEnC,IAAM,EAAc,GAAmB,CACrC,IAAM,EAAa,EAAqB,SAAS,EAAO,CAExD,GAAI,EAAa,CACf,EAAiB,EAAa,EAAE,CAAG,CAAC,EAAO,CAAC,CAC5C,OAGF,EACE,EACI,EAAqB,OAAQ,GAAO,IAAO,EAAO,CAClD,CAAC,GAAG,EAAsB,EAAO,CACtC,EAGG,GAAmB,EAAgB,IAAwB,CAG3D,OAFoB,EAAqB,SAAS,EAAO,CAM7D,IAAI,EAAa,CACf,EAAiB,EAAa,CAAC,EAAO,CAAG,EAAE,CAAC,CAC5C,OAGF,EACE,EACI,CAAC,GAAG,EAAsB,EAAO,CACjC,EAAqB,OAAQ,GAAO,IAAO,EAAO,CACvD,GAGG,EAAe,OACZ,CACL,cACA,cAAe,EACf,aACA,kBACA,eAAiB,GAAmB,EAAqB,SAAS,EAAO,CAC1E,EACD,CAAC,EAAsB,EAAa,EAAiB,EAAW,CACjE,CAEK,EACJ,IAAS,UAA8C,IAAA,GAAlC,CAAE,sBAAuB,EAAM,CAEtD,OACE,EAAC,EAAA,CAAgB,MAAO,WACtB,EAAC,MAAA,CACC,iBAAgB,EAAc,OAAS,QACvC,UAAW,EACT,GAAY,SAAW,GAAS,CAChC,GAAY,MAAQ,GAAa,CACjC,QACD,CACM,kBAEN,EACC,EAAC,MAAA,CAAI,UAAW,GAAY,SAAW,GAAgB,UACpD,GACG,CACJ,KAEJ,EAAC,MAAA,CAAI,UAAW,GAAY,KAAK,MAAQ,GAAgB,UACvD,EAAC,EAAA,CACC,IAAI,OACJ,WAAW,IACX,WAAY,CACV,WACE,GAAY,KAAK,YAAc,GAA2B,CAC7D,UAED,EAAC,EAAA,CAAoB,aAAa,YAAmB,EAClC,EACjB,CAEL,EACC,EAAC,MAAA,CAAI,UAAW,GAAY,YAAc,GAAmB,UAC1D,GACG,CACJ,OACA,EACU,EAItB,EAAQ,YAAc,UACtB,EAAQ,KAAO,EACf,EAAQ,MAAQ,EAChB,EAAQ,QAAU,EAClB,EAAQ,QAAU,EAClB,EAAQ,SAAW,EACnB,EAAQ,cAAgB,EACxB,EAAQ,YAAc,EACtB,EAAQ,OAAS"}
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import * as
|
|
1
|
+
import * as react_jsx_runtime13 from "react/jsx-runtime";
|
|
2
2
|
import { HTMLAttributes, ReactNode } from "react";
|
|
3
3
|
|
|
4
4
|
//#region src/components/overlays/modal/Modal.d.ts
|
|
@@ -41,7 +41,7 @@ declare const Modal: {
|
|
|
41
41
|
withinPortal,
|
|
42
42
|
keepMounted,
|
|
43
43
|
classNames
|
|
44
|
-
}: ModalProps):
|
|
44
|
+
}: ModalProps): react_jsx_runtime13.JSX.Element;
|
|
45
45
|
Root: {
|
|
46
46
|
({
|
|
47
47
|
opened,
|
|
@@ -53,13 +53,13 @@ declare const Modal: {
|
|
|
53
53
|
centered,
|
|
54
54
|
classNames,
|
|
55
55
|
intent
|
|
56
|
-
}: ModalRootProps):
|
|
56
|
+
}: ModalRootProps): react_jsx_runtime13.JSX.Element;
|
|
57
57
|
displayName: string;
|
|
58
58
|
};
|
|
59
59
|
Overlay: {
|
|
60
60
|
(_: {
|
|
61
61
|
children?: never;
|
|
62
|
-
}):
|
|
62
|
+
}): react_jsx_runtime13.JSX.Element;
|
|
63
63
|
displayName: string;
|
|
64
64
|
};
|
|
65
65
|
Content: {
|
|
@@ -67,7 +67,7 @@ declare const Modal: {
|
|
|
67
67
|
children
|
|
68
68
|
}: {
|
|
69
69
|
children: ReactNode;
|
|
70
|
-
}):
|
|
70
|
+
}): react_jsx_runtime13.JSX.Element;
|
|
71
71
|
displayName: string;
|
|
72
72
|
};
|
|
73
73
|
Header: {
|
|
@@ -75,7 +75,7 @@ declare const Modal: {
|
|
|
75
75
|
children
|
|
76
76
|
}: {
|
|
77
77
|
children: ReactNode;
|
|
78
|
-
}):
|
|
78
|
+
}): react_jsx_runtime13.JSX.Element;
|
|
79
79
|
displayName: string;
|
|
80
80
|
};
|
|
81
81
|
Body: {
|
|
@@ -83,7 +83,7 @@ declare const Modal: {
|
|
|
83
83
|
children
|
|
84
84
|
}: {
|
|
85
85
|
children: ReactNode;
|
|
86
|
-
}):
|
|
86
|
+
}): react_jsx_runtime13.JSX.Element;
|
|
87
87
|
displayName: string;
|
|
88
88
|
};
|
|
89
89
|
Title: {
|
|
@@ -91,11 +91,11 @@ declare const Modal: {
|
|
|
91
91
|
children
|
|
92
92
|
}: {
|
|
93
93
|
children: ReactNode;
|
|
94
|
-
}):
|
|
94
|
+
}): react_jsx_runtime13.JSX.Element;
|
|
95
95
|
displayName: string;
|
|
96
96
|
};
|
|
97
97
|
CloseButton: {
|
|
98
|
-
():
|
|
98
|
+
(): react_jsx_runtime13.JSX.Element;
|
|
99
99
|
displayName: string;
|
|
100
100
|
};
|
|
101
101
|
Footer: {
|
|
@@ -103,7 +103,7 @@ declare const Modal: {
|
|
|
103
103
|
children,
|
|
104
104
|
className,
|
|
105
105
|
...props
|
|
106
|
-
}: HTMLAttributes<HTMLDivElement>):
|
|
106
|
+
}: HTMLAttributes<HTMLDivElement>): react_jsx_runtime13.JSX.Element;
|
|
107
107
|
displayName: string;
|
|
108
108
|
};
|
|
109
109
|
};
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"Modal.d.mts","names":[],"sources":["../../../../src/components/overlays/modal/Modal.tsx"],"mappings":";;;;KAmBY,UAAA;EACV,MAAA;EACA,OAAA;EACA,EAAA;EACA,KAAA,GAAQ,SAAA;EACR,QAAA,EAAU,SAAA;EACV,QAAA;EACA,eAAA;EACA,mBAAA;EACA,aAAA;EACA,YAAA;EACA,WAAA;EACA,UAAA;IACE,KAAA;IACA,IAAA;IACA,OAAA;IACA,KAAA;IACA,OAAA;IACA,MAAA;IACA,KAAA;IACA,IAAA;IACA,KAAA;IACA,MAAA;EAAA;AAAA;AAAA,cAIS,KAAA;EAAA;;;;;;;;;;;;;KAaV,UAAA,GAAU,
|
|
1
|
+
{"version":3,"file":"Modal.d.mts","names":[],"sources":["../../../../src/components/overlays/modal/Modal.tsx"],"mappings":";;;;KAmBY,UAAA;EACV,MAAA;EACA,OAAA;EACA,EAAA;EACA,KAAA,GAAQ,SAAA;EACR,QAAA,EAAU,SAAA;EACV,QAAA;EACA,eAAA;EACA,mBAAA;EACA,aAAA;EACA,YAAA;EACA,WAAA;EACA,UAAA;IACE,KAAA;IACA,IAAA;IACA,OAAA;IACA,KAAA;IACA,OAAA;IACA,MAAA;IACA,KAAA;IACA,IAAA;IACA,KAAA;IACA,MAAA;EAAA;AAAA;AAAA,cAIS,KAAA;EAAA;;;;;;;;;;;;;KAaV,UAAA,GAAU,mBAAA,CAAA,GAAA,CAAA,OAAA;;;;;;;;;;;;OAgDV,cAAA,GAAc,mBAAA,CAAA,GAAA,CAAA,OAAA;;;;;MA0BU,QAAA;IAAA,IAAkB,mBAAA,CAAA,GAAA,CAAA,OAAA;;;;;;;MAQP,QAAA,EAAU,SAAA;IAAA,IAAW,mBAAA,CAAA,GAAA,CAAA,OAAA;;;;;;;MAJtB,QAAA,EAAU,SAAA;IAAA,IAAW,mBAAA,CAAA,GAAA,CAAA,OAAA;;;;;;;MAQvB,QAAA,EAAU,SAAA;IAAA,IAAW,mBAAA,CAAA,GAAA,CAAA,OAAA;;;;;;;MAIpB,QAAA,EAAU,SAAA;IAAA,IAAW,mBAAA,CAAA,GAAA,CAAA,OAAA;;;;;;;;;;;;OAYtD,cAAA,CAAe,cAAA,IAAe,mBAAA,CAAA,GAAA,CAAA,OAAA;;;;KApErB,cAAA,GAAiB,IAAA,CAAK,UAAA;EAChC,MAAA;AAAA"}
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import * as
|
|
1
|
+
import * as react_jsx_runtime22 from "react/jsx-runtime";
|
|
2
2
|
import { ReactNode } from "react";
|
|
3
3
|
|
|
4
4
|
//#region src/components/overlays/modals/ModalsProvider.d.ts
|
|
@@ -7,7 +7,7 @@ type ModalsProviderProps = {
|
|
|
7
7
|
};
|
|
8
8
|
declare const ModalsProvider: ({
|
|
9
9
|
children
|
|
10
|
-
}: ModalsProviderProps) =>
|
|
10
|
+
}: ModalsProviderProps) => react_jsx_runtime22.JSX.Element;
|
|
11
11
|
//#endregion
|
|
12
12
|
export { ModalsProvider, ModalsProviderProps };
|
|
13
13
|
//# sourceMappingURL=ModalsProvider.d.mts.map
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import * as
|
|
1
|
+
import * as react_jsx_runtime12 from "react/jsx-runtime";
|
|
2
2
|
import { ReactNode } from "react";
|
|
3
3
|
|
|
4
4
|
//#region src/components/overlays/tooltip/Tooltip.d.ts
|
|
@@ -35,7 +35,7 @@ declare const Tooltip: ({
|
|
|
35
35
|
keepMounted,
|
|
36
36
|
withinPortal,
|
|
37
37
|
classNames
|
|
38
|
-
}: TooltipProps) =>
|
|
38
|
+
}: TooltipProps) => react_jsx_runtime12.JSX.Element;
|
|
39
39
|
//#endregion
|
|
40
40
|
export { Tooltip, TooltipProps };
|
|
41
41
|
//# sourceMappingURL=Tooltip.d.mts.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"Tooltip.d.mts","names":[],"sources":["../../../../src/components/overlays/tooltip/Tooltip.tsx"],"mappings":";;;;KAUY,YAAA;EACV,QAAA,GAAW,SAAA;EACX,KAAA,EAAO,SAAA;EACP,MAAA;EACA,EAAA;EACA,QAAA;EAaA,MAAA;EACA,SAAA;EACA,QAAA;EACA,MAAA;EACA,SAAA;EACA,WAAA;EACA,YAAA;EACA,UAAA;IACE,IAAA;IACA,OAAA;IACA,KAAA;EAAA;AAAA;AAAA,cAIS,OAAA;EAAW,QAAA;EAAA,KAAA;EAAA,MAAA;EAAA,EAAA;EAAA,QAAA;EAAA,MAAA;EAAA,SAAA;EAAA,QAAA;EAAA,MAAA;EAAA,SAAA;EAAA,WAAA;EAAA,YAAA;EAAA;AAAA,GAcrB,YAAA,KAAY,
|
|
1
|
+
{"version":3,"file":"Tooltip.d.mts","names":[],"sources":["../../../../src/components/overlays/tooltip/Tooltip.tsx"],"mappings":";;;;KAUY,YAAA;EACV,QAAA,GAAW,SAAA;EACX,KAAA,EAAO,SAAA;EACP,MAAA;EACA,EAAA;EACA,QAAA;EAaA,MAAA;EACA,SAAA;EACA,QAAA;EACA,MAAA;EACA,SAAA;EACA,WAAA;EACA,YAAA;EACA,UAAA;IACE,IAAA;IACA,OAAA;IACA,KAAA;EAAA;AAAA;AAAA,cAIS,OAAA;EAAW,QAAA;EAAA,KAAA;EAAA,MAAA;EAAA,EAAA;EAAA,QAAA;EAAA,MAAA;EAAA,SAAA;EAAA,QAAA;EAAA,MAAA;EAAA,SAAA;EAAA,WAAA;EAAA,YAAA;EAAA;AAAA,GAcrB,YAAA,KAAY,mBAAA,CAAA,GAAA,CAAA,OAAA"}
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@mage-ui/components",
|
|
3
|
-
"version": "1.0.
|
|
3
|
+
"version": "1.0.37",
|
|
4
4
|
"private": false,
|
|
5
5
|
"description": "",
|
|
6
6
|
"keywords": [],
|
|
@@ -26,8 +26,8 @@
|
|
|
26
26
|
"tsdown": "^0.20.1",
|
|
27
27
|
"typescript": "^5.9.3",
|
|
28
28
|
"baseline-browser-mapping": "^2.9.19",
|
|
29
|
-
"@mage-ui/
|
|
30
|
-
"@mage-ui/
|
|
29
|
+
"@mage-ui/styled-system": "1.0.8",
|
|
30
|
+
"@mage-ui/preset": "1.0.37"
|
|
31
31
|
},
|
|
32
32
|
"peerDependencies": {
|
|
33
33
|
"@hookform/resolvers": "^5.2.2",
|