@nocobase/plugin-mobile 1.8.0-beta.9 → 1.8.1

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.
@@ -6,6 +6,15 @@
6
6
  * This project is dual-licensed under AGPL-3.0 and NocoBase Commercial License.
7
7
  * For more information, please refer to: https://www.nocobase.com/agreement.
8
8
  */
9
+ import { FC, ReactNode } from 'react';
10
+ export interface MobilePopupProps {
11
+ title?: string;
12
+ visible: boolean;
13
+ minHeight?: number | string;
14
+ onClose: () => void;
15
+ children: ReactNode;
16
+ }
17
+ export declare const MobilePopup: FC<MobilePopupProps>;
9
18
  export declare const ActionDrawerUsedInMobile: any;
10
19
  /**
11
20
  * adapt Action.Drawer to mobile
@@ -9,6 +9,7 @@
9
9
  import { Plugin, RouterManager } from '@nocobase/client';
10
10
  import React from 'react';
11
11
  import './js-bridge';
12
+ export { MobilePopup } from './adaptor-of-desktop/ActionDrawer';
12
13
  export * from './desktop-mode';
13
14
  export * from './mobile';
14
15
  export * from './mobile-layout';