zs_library 0.6.4 → 0.6.5

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.
@@ -21,4 +21,6 @@ export type { Theme, ThemeType } from './themes';
21
21
  export { themeLight as desktopThemeLight, themeDark as desktopThemeDark, defaultTheme as desktopDefaultTheme, themes as desktopThemes, } from './themes';
22
22
  export { Dock, LaunchpadModal, LaunchpadButton } from './dock';
23
23
  export type { DockProps, LaunchpadModalProps, LaunchpadButtonProps } from './dock';
24
+ export { BaseModal } from './modal';
25
+ export type { BaseModalProps } from './modal';
24
26
  export default Desktop;
@@ -1,5 +1,5 @@
1
1
  import { ReactNode } from 'react';
2
- interface BaseModalProps {
2
+ export interface BaseModalProps {
3
3
  visible: boolean;
4
4
  onClose: () => void;
5
5
  title?: ReactNode;
@@ -1 +1,2 @@
1
1
  export { default as BaseModal } from './base-modal';
2
+ export type { BaseModalProps } from './base-modal';
@@ -17,6 +17,8 @@ export type { Theme as DesktopTheme, ThemeType as DesktopThemeType } from './des
17
17
  export { default as SortableUtils } from './desktop/utils';
18
18
  export { Dock as DesktopDock, LaunchpadModal as DesktopLaunchpadModal, LaunchpadButton as DesktopLaunchpadButton, } from './desktop/dock';
19
19
  export type { DockProps as DesktopDockProps, LaunchpadModalProps as DesktopLaunchpadModalProps, LaunchpadButtonProps as DesktopLaunchpadButtonProps, } from './desktop/dock';
20
+ export { BaseModal as DesktopBaseModal } from './desktop/modal';
21
+ export type { BaseModalProps as DesktopBaseModalProps } from './desktop/modal';
20
22
  export { default as MdEditor } from './md-editor';
21
23
  export { default as Markdown } from './md-editor/preview';
22
24
  export { default as Dock } from './dock';