@nocobase/plugin-mobile 1.4.0-alpha → 1.4.0-alpha.0
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/client/adaptor-of-desktop/{BasicZIndexProvider.d.ts → zIndex.d.ts} +0 -12
- package/dist/client/index.js +14 -14
- package/dist/client/mobile-layout/mobile-tab-bar/MobileTabBar.Item/schema.d.ts +10 -12
- package/dist/client/mobile-layout/mobile-tab-bar/styles.d.ts +16 -16
- package/dist/client/mobile-layout/mobile-tab-bar/types/MobileTabBar.Page/MobileTabBar.Page.d.ts +1 -0
- package/dist/client/pages/dynamic-page/content/index.d.ts +1 -0
- package/dist/client/pages/dynamic-page/content/styles.d.ts +1 -1
- package/dist/client/pages/dynamic-page/header/navigation-bar/actions/mobile-navigation-bar-action/styles.d.ts +4 -4
- package/dist/client/pages/dynamic-page/header/navigation-bar/styles.d.ts +7 -7
- package/dist/client/pages/dynamic-page/header/styles.d.ts +2 -2
- package/dist/client/pages/dynamic-page/header/tabs/styles.d.ts +3 -3
- package/dist/externalVersion.js +10 -10
- package/package.json +3 -3
|
@@ -6,16 +6,4 @@
|
|
|
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 React from 'react';
|
|
10
|
-
/**
|
|
11
|
-
* used to accumulate z-index in nested popups
|
|
12
|
-
* @param props
|
|
13
|
-
* @returns
|
|
14
|
-
*/
|
|
15
|
-
export declare const BasicZIndexProvider: React.FC<{
|
|
16
|
-
basicZIndex: number;
|
|
17
|
-
}>;
|
|
18
|
-
export declare const useBasicZIndex: () => {
|
|
19
|
-
basicZIndex: number;
|
|
20
|
-
};
|
|
21
9
|
export declare const MIN_Z_INDEX_INCREMENT = 10;
|