@mage-ui/components 1.0.12 → 1.0.14
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/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/dropzone-files/DropzoneFiles.d.mts.map +1 -1
- 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/file-input/FileInputMultiple.d.mts.map +1 -1
- 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-strength/PasswordInputStrength.d.mts +2 -2
- package/dist/components/controls/select/Select.d.mts +2 -2
- package/dist/components/controls/textarea/Textarea.d.mts +2 -2
- package/dist/components/navigations/menu/Menu.d.mts +4 -4
- package/dist/semedlab/components/data-display/user-group-preview/UserGroupPreview.d.mts +2 -2
- package/dist/semedlab/components/navigations/backoffice-top-bar/BackofficeTopBar.d.mts +2 -2
- package/dist/semedlab/components/navigations/notification-list/NotificationList.d.mts +2 -2
- package/dist/semedlab/components/navigations/notification-menu/NotificationMenu.d.mts +2 -2
- package/dist/semedlab/components/navigations/profile-menu/ProfileMenu.d.mts +2 -2
- package/package.json +2 -2
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
import { ComboboxProps } from "../combobox/Combobox.mjs";
|
|
2
|
-
import * as
|
|
2
|
+
import * as react_jsx_runtime15 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_runtime15.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_runtime14 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_runtime14.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_runtime19 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_runtime19.JSX.Element;
|
|
68
68
|
//#endregion
|
|
69
69
|
export { Dropzone, DropzoneProps, FileData };
|
|
70
70
|
//# sourceMappingURL=Dropzone.d.mts.map
|
|
@@ -3,7 +3,7 @@ import { IconWrappedProps } from "../../data-display/icons/icon-wrapped/IconWrap
|
|
|
3
3
|
import { UploadedFileProps } from "../../data-display/uploaded-file/UploadedFile.mjs";
|
|
4
4
|
import "../../data-display/index.mjs";
|
|
5
5
|
import { DropzoneProps, FileData } from "../dropzone/Dropzone.mjs";
|
|
6
|
-
import * as
|
|
6
|
+
import * as react_jsx_runtime20 from "react/jsx-runtime";
|
|
7
7
|
import { ReactNode } from "react";
|
|
8
8
|
|
|
9
9
|
//#region src/components/controls/dropzone-files/DropzoneFiles.d.ts
|
|
@@ -51,7 +51,7 @@ declare const DropzoneFiles: ({
|
|
|
51
51
|
url,
|
|
52
52
|
inputId,
|
|
53
53
|
classNames
|
|
54
|
-
}: DropzoneFilesProps) =>
|
|
54
|
+
}: DropzoneFilesProps) => react_jsx_runtime20.JSX.Element;
|
|
55
55
|
//#endregion
|
|
56
56
|
export { DropzoneFiles, DropzoneFilesProps };
|
|
57
57
|
//# sourceMappingURL=DropzoneFiles.d.mts.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"DropzoneFiles.d.mts","names":[],"sources":["../../../../src/components/controls/dropzone-files/DropzoneFiles.tsx"],"mappings":";;;;;;;;;KAkCY,kBAAA;EACV,KAAA,GAAQ,SAAA;EACR,WAAA,GAAc,SAAA;EACd,KAAA,GAAQ,SAAA;EACR,KAAA,GAAQ,SAAA;EACR,QAAA,GAAW,SAAA;EACX,IAAA,GAAO,SAAA;EACP,YAAA,GAAe,MAAA,SAAe,QAAA;EAC9B,QAAA;EACA,MAAA;EACA,GAAA;EACA,OAAA;EACA,cAAA;EACA,UAAA;IACE,aAAA;IACA,IAAA;IACA,YAAA;IACA,KAAA;IACA,WAAA;IACA,KAAA;IACA,QAAA;IACA,QAAA;IACA,YAAA,GAAe,iBAAA;IACf,QAAA,GAAW,aAAA;IACX,UAAA;MAAe,UAAA;IAAA;IACf,gBAAA,GAAmB,gBAAA;IACnB,SAAA,GAAY,SAAA;EAAA;AAAA;AAAA,cAIH,aAAA;EAAiB,KAAA;EAAA,WAAA;EAAA,KAAA;EAAA,KAAA;EAAA,QAAA;EAAA,IAAA;EAAA,YAAA;EAAA,QAAA;EAAA,MAAA;EAAA,GAAA;EAAA,OAAA;EAAA;AAAA,GAa3B,kBAAA,KAAkB,
|
|
1
|
+
{"version":3,"file":"DropzoneFiles.d.mts","names":[],"sources":["../../../../src/components/controls/dropzone-files/DropzoneFiles.tsx"],"mappings":";;;;;;;;;KAkCY,kBAAA;EACV,KAAA,GAAQ,SAAA;EACR,WAAA,GAAc,SAAA;EACd,KAAA,GAAQ,SAAA;EACR,KAAA,GAAQ,SAAA;EACR,QAAA,GAAW,SAAA;EACX,IAAA,GAAO,SAAA;EACP,YAAA,GAAe,MAAA,SAAe,QAAA;EAC9B,QAAA;EACA,MAAA;EACA,GAAA;EACA,OAAA;EACA,cAAA;EACA,UAAA;IACE,aAAA;IACA,IAAA;IACA,YAAA;IACA,KAAA;IACA,WAAA;IACA,KAAA;IACA,QAAA;IACA,QAAA;IACA,YAAA,GAAe,iBAAA;IACf,QAAA,GAAW,aAAA;IACX,UAAA;MAAe,UAAA;IAAA;IACf,gBAAA,GAAmB,gBAAA;IACnB,SAAA,GAAY,SAAA;EAAA;AAAA;AAAA,cAIH,aAAA;EAAiB,KAAA;EAAA,WAAA;EAAA,KAAA;EAAA,KAAA;EAAA,QAAA;EAAA,IAAA;EAAA,YAAA;EAAA,QAAA;EAAA,MAAA;EAAA,GAAA;EAAA,OAAA;EAAA;AAAA,GAa3B,kBAAA,KAAkB,mBAAA,CAAA,GAAA,CAAA,OAAA"}
|
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
import { BaseFileInputProps } from "./BaseFileInput.mjs";
|
|
2
|
-
import * as
|
|
2
|
+
import * as react_jsx_runtime8 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_runtime8.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_runtime9 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_runtime9.JSX.Element;
|
|
29
29
|
//#endregion
|
|
30
30
|
export { FileInputMultiple, FileInputMultipleProps };
|
|
31
31
|
//# sourceMappingURL=FileInputMultiple.d.mts.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"FileInputMultiple.d.mts","names":[],"sources":["../../../../src/components/controls/file-input/FileInputMultiple.tsx"],"mappings":";;;;KAKY,sBAAA,GAAyB,IAAA,CACnC,kBAAA;EAGA,QAAA,IAAY,KAAA,EAAO,IAAA;EACnB,eAAA;IACE,KAAA;IACA,IAAA;IACA,OAAA;IACA,KAAA;EAAA;AAAA;AAAA,cAiCS,iBAAA;EAAqB,IAAA;EAAA,MAAA;EAAA,OAAA;EAAA,QAAA;EAAA,KAAA;EAAA,WAAA;EAAA,WAAA;EAAA,KAAA;EAAA,MAAA;EAAA,QAAA;EAAA,QAAA;EAAA,UAAA;EAAA;AAAA,GAc/B,sBAAA,KAAsB,
|
|
1
|
+
{"version":3,"file":"FileInputMultiple.d.mts","names":[],"sources":["../../../../src/components/controls/file-input/FileInputMultiple.tsx"],"mappings":";;;;KAKY,sBAAA,GAAyB,IAAA,CACnC,kBAAA;EAGA,QAAA,IAAY,KAAA,EAAO,IAAA;EACnB,eAAA;IACE,KAAA;IACA,IAAA;IACA,OAAA;IACA,KAAA;EAAA;AAAA;AAAA,cAiCS,iBAAA;EAAqB,IAAA;EAAA,MAAA;EAAA,OAAA;EAAA,QAAA;EAAA,KAAA;EAAA,WAAA;EAAA,WAAA;EAAA,KAAA;EAAA,MAAA;EAAA,QAAA;EAAA,QAAA;EAAA,UAAA;EAAA;AAAA,GAc/B,sBAAA,KAAsB,kBAAA,CAAA,GAAA,CAAA,OAAA"}
|
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
import { DropdownProps, DropdownTextInputClassNames } from "../dropdown/Dropdown.mjs";
|
|
2
|
-
import * as
|
|
2
|
+
import * as react_jsx_runtime12 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_runtime12.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_runtime13 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_runtime13.JSX.Element;
|
|
61
61
|
//#endregion
|
|
62
62
|
export { MultiSelectTags, MultiSelectTagsProps };
|
|
63
63
|
//# sourceMappingURL=MultiSelectTags.d.mts.map
|
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
import { PasswordInputProps } from "../password-input/PasswordInput.mjs";
|
|
2
|
-
import * as
|
|
2
|
+
import * as react_jsx_runtime7 from "react/jsx-runtime";
|
|
3
3
|
|
|
4
4
|
//#region src/components/controls/password-input-strength/PasswordInputStrength.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_runtime7.JSX.Element;
|
|
41
41
|
//#endregion
|
|
42
42
|
export { PasswordInputStrength, PasswordInputStrengthProps };
|
|
43
43
|
//# sourceMappingURL=PasswordInputStrength.d.mts.map
|
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
import { DropdownProps } from "../dropdown/Dropdown.mjs";
|
|
2
|
-
import * as
|
|
2
|
+
import * as react_jsx_runtime11 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_runtime11.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_runtime10 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_runtime10.JSX.Element;
|
|
45
45
|
//#endregion
|
|
46
46
|
export { Textarea, TextareaProps };
|
|
47
47
|
//# sourceMappingURL=Textarea.d.mts.map
|
|
@@ -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_runtime16 from "react/jsx-runtime";
|
|
4
4
|
import { ReactNode } from "react";
|
|
5
5
|
|
|
6
6
|
//#region src/components/navigations/menu/Menu.d.ts
|
|
@@ -36,17 +36,17 @@ declare const Menu: {
|
|
|
36
36
|
offset,
|
|
37
37
|
classNames,
|
|
38
38
|
targetButtonProps
|
|
39
|
-
}: MenuProps):
|
|
39
|
+
}: MenuProps): react_jsx_runtime16.JSX.Element;
|
|
40
40
|
Item: {
|
|
41
41
|
({
|
|
42
42
|
children
|
|
43
43
|
}: {
|
|
44
44
|
children: ReactNode;
|
|
45
|
-
}):
|
|
45
|
+
}): react_jsx_runtime16.JSX.Element;
|
|
46
46
|
displayName: string;
|
|
47
47
|
};
|
|
48
48
|
Divider: {
|
|
49
|
-
():
|
|
49
|
+
(): react_jsx_runtime16.JSX.Element;
|
|
50
50
|
displayName: string;
|
|
51
51
|
};
|
|
52
52
|
};
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
import { AvatarProps } from "../../../../components/data-display/avatar/Avatar.mjs";
|
|
2
2
|
import "../../../../components/index.mjs";
|
|
3
|
-
import * as
|
|
3
|
+
import * as react_jsx_runtime49 from "react/jsx-runtime";
|
|
4
4
|
|
|
5
5
|
//#region src/semedlab/components/data-display/user-group-preview/UserGroupPreview.d.ts
|
|
6
6
|
type UserGroupPreviewProps = {
|
|
@@ -26,7 +26,7 @@ declare const UserGroupPreview: ({
|
|
|
26
26
|
maxAvatars,
|
|
27
27
|
previewText,
|
|
28
28
|
classNames
|
|
29
|
-
}: UserGroupPreviewProps) =>
|
|
29
|
+
}: UserGroupPreviewProps) => react_jsx_runtime49.JSX.Element;
|
|
30
30
|
//#endregion
|
|
31
31
|
export { UserGroupPreview, UserGroupPreviewProps };
|
|
32
32
|
//# sourceMappingURL=UserGroupPreview.d.mts.map
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
import { NotificationMenuProps } from "../notification-menu/NotificationMenu.mjs";
|
|
2
2
|
import { ProfileMenuProps } from "../profile-menu/ProfileMenu.mjs";
|
|
3
|
-
import * as
|
|
3
|
+
import * as react_jsx_runtime45 from "react/jsx-runtime";
|
|
4
4
|
|
|
5
5
|
//#region src/semedlab/components/navigations/backoffice-top-bar/BackofficeTopBar.d.ts
|
|
6
6
|
type BackofficeTopBarProps = {
|
|
@@ -17,7 +17,7 @@ type BackofficeTopBarProps = {
|
|
|
17
17
|
declare const BackofficeTopBar: ({
|
|
18
18
|
notificationMenuProps,
|
|
19
19
|
profileMenuProps
|
|
20
|
-
}: BackofficeTopBarProps) =>
|
|
20
|
+
}: BackofficeTopBarProps) => react_jsx_runtime45.JSX.Element;
|
|
21
21
|
//#endregion
|
|
22
22
|
export { BackofficeTopBar, BackofficeTopBarProps };
|
|
23
23
|
//# sourceMappingURL=BackofficeTopBar.d.mts.map
|
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
import { NotificationProps } from "../../data-display/notification/Notification.mjs";
|
|
2
|
-
import * as
|
|
2
|
+
import * as react_jsx_runtime46 from "react/jsx-runtime";
|
|
3
3
|
|
|
4
4
|
//#region src/semedlab/components/navigations/notification-list/NotificationList.d.ts
|
|
5
5
|
type NotificationItemProps = Omit<NotificationProps, 'onDismiss' | 'dismissBtnLabel'>;
|
|
@@ -23,7 +23,7 @@ declare const NotificationList: ({
|
|
|
23
23
|
dismissBtnLabel,
|
|
24
24
|
dismissAllBtnLabel,
|
|
25
25
|
classNames
|
|
26
|
-
}: NotificationListProps) =>
|
|
26
|
+
}: NotificationListProps) => react_jsx_runtime46.JSX.Element;
|
|
27
27
|
//#endregion
|
|
28
28
|
export { NotificationList, NotificationListProps };
|
|
29
29
|
//# sourceMappingURL=NotificationList.d.mts.map
|
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
import { NotificationProps } from "../../data-display/notification/Notification.mjs";
|
|
2
|
-
import * as
|
|
2
|
+
import * as react_jsx_runtime47 from "react/jsx-runtime";
|
|
3
3
|
import React from "react";
|
|
4
4
|
|
|
5
5
|
//#region src/semedlab/components/navigations/notification-menu/NotificationMenu.d.ts
|
|
@@ -26,7 +26,7 @@ declare const NotificationMenu: ({
|
|
|
26
26
|
targetLabel,
|
|
27
27
|
indicatorAriaLabel,
|
|
28
28
|
maxNotificationsToShow
|
|
29
|
-
}: NotificationMenuProps) =>
|
|
29
|
+
}: NotificationMenuProps) => react_jsx_runtime47.JSX.Element;
|
|
30
30
|
//#endregion
|
|
31
31
|
export { NotificationMenu, NotificationMenuProps };
|
|
32
32
|
//# sourceMappingURL=NotificationMenu.d.mts.map
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import * as
|
|
1
|
+
import * as react_jsx_runtime48 from "react/jsx-runtime";
|
|
2
2
|
import { ReactNode } from "react";
|
|
3
3
|
|
|
4
4
|
//#region src/semedlab/components/navigations/profile-menu/ProfileMenu.d.ts
|
|
@@ -15,7 +15,7 @@ declare const ProfileMenu: ({
|
|
|
15
15
|
alt,
|
|
16
16
|
description,
|
|
17
17
|
children
|
|
18
|
-
}: ProfileMenuProps) =>
|
|
18
|
+
}: ProfileMenuProps) => react_jsx_runtime48.JSX.Element;
|
|
19
19
|
//#endregion
|
|
20
20
|
export { ProfileMenu, ProfileMenuProps };
|
|
21
21
|
//# sourceMappingURL=ProfileMenu.d.mts.map
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@mage-ui/components",
|
|
3
|
-
"version": "1.0.
|
|
3
|
+
"version": "1.0.14",
|
|
4
4
|
"private": false,
|
|
5
5
|
"description": "",
|
|
6
6
|
"keywords": [],
|
|
@@ -26,7 +26,7 @@
|
|
|
26
26
|
"tsdown": "^0.20.1",
|
|
27
27
|
"typescript": "^5.9.3",
|
|
28
28
|
"baseline-browser-mapping": "^2.9.19",
|
|
29
|
-
"@mage-ui/preset": "1.0.
|
|
29
|
+
"@mage-ui/preset": "1.0.14",
|
|
30
30
|
"@mage-ui/styled-system": "1.0.8"
|
|
31
31
|
},
|
|
32
32
|
"peerDependencies": {
|