@nocobase/plugin-mobile 1.3.41-beta → 1.3.43-beta
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 +12 -12
- package/dist/client/mobile-layout/mobile-tab-bar/styles.d.ts +15 -15
- 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 +9 -9
- package/package.json +2 -2
|
@@ -8,41 +8,41 @@
|
|
|
8
8
|
*/
|
|
9
9
|
export declare const useStyles: (props?: unknown) => import("antd-style").ReturnStyles<{
|
|
10
10
|
mobileTabBar: {
|
|
11
|
-
position:
|
|
11
|
+
position: "absolute";
|
|
12
12
|
bottom: number;
|
|
13
13
|
left: number;
|
|
14
14
|
right: number;
|
|
15
15
|
height: number;
|
|
16
|
-
boxSizing:
|
|
16
|
+
boxSizing: "border-box";
|
|
17
17
|
borderTop: string;
|
|
18
|
-
backgroundColor:
|
|
18
|
+
backgroundColor: "var(--adm-color-background)";
|
|
19
19
|
};
|
|
20
20
|
mobileTabBarContent: {
|
|
21
|
-
display:
|
|
22
|
-
justifyContent:
|
|
23
|
-
alignItems:
|
|
21
|
+
display: "flex";
|
|
22
|
+
justifyContent: "space-between";
|
|
23
|
+
alignItems: "center";
|
|
24
24
|
gap: string;
|
|
25
25
|
height: string;
|
|
26
26
|
};
|
|
27
27
|
mobileTabBarList: {
|
|
28
|
-
display:
|
|
29
|
-
justifyContent:
|
|
28
|
+
display: "flex";
|
|
29
|
+
justifyContent: "space-around";
|
|
30
30
|
flex: number;
|
|
31
|
-
alignItems:
|
|
31
|
+
alignItems: "center";
|
|
32
32
|
'.adm-tab-bar-item': {
|
|
33
33
|
maxWidth: string;
|
|
34
34
|
'.adm-tab-bar-item-title': {
|
|
35
35
|
maxWidth: string;
|
|
36
|
-
overflow:
|
|
37
|
-
whiteSpace:
|
|
38
|
-
textOverflow:
|
|
36
|
+
overflow: "hidden";
|
|
37
|
+
whiteSpace: "nowrap";
|
|
38
|
+
textOverflow: "ellipsis";
|
|
39
39
|
};
|
|
40
40
|
};
|
|
41
41
|
'&>div': {
|
|
42
42
|
flex: number;
|
|
43
|
-
display:
|
|
44
|
-
justifyContent:
|
|
45
|
-
alignItems:
|
|
43
|
+
display: "flex";
|
|
44
|
+
justifyContent: "center";
|
|
45
|
+
alignItems: "center";
|
|
46
46
|
};
|
|
47
47
|
'.ant-btn-icon': {
|
|
48
48
|
marginInlineEnd: string;
|
|
@@ -11,7 +11,7 @@ export declare const useStyles: (props?: unknown) => import("antd-style").Return
|
|
|
11
11
|
maxWidth: string;
|
|
12
12
|
'.adm-space': {
|
|
13
13
|
maxWidth: string;
|
|
14
|
-
overflow:
|
|
14
|
+
overflow: "hidden";
|
|
15
15
|
};
|
|
16
16
|
};
|
|
17
17
|
navigationBarActionIcon: {
|
|
@@ -20,9 +20,9 @@ export declare const useStyles: (props?: unknown) => import("antd-style").Return
|
|
|
20
20
|
lineHeight: string;
|
|
21
21
|
fontSize: number;
|
|
22
22
|
padding: number;
|
|
23
|
-
display:
|
|
24
|
-
alignItems:
|
|
25
|
-
justifyContent:
|
|
23
|
+
display: "flex";
|
|
24
|
+
alignItems: "center";
|
|
25
|
+
justifyContent: "center";
|
|
26
26
|
'.schema-toolbar': {
|
|
27
27
|
inset: string;
|
|
28
28
|
};
|
|
@@ -11,16 +11,16 @@ export declare const useStyles: (props?: unknown) => import("antd-style").Return
|
|
|
11
11
|
'.adm-nav-bar': {
|
|
12
12
|
maxWidth: string;
|
|
13
13
|
height: number;
|
|
14
|
-
overflow:
|
|
14
|
+
overflow: "hidden";
|
|
15
15
|
'.adm-nav-bar-left': {
|
|
16
|
-
display:
|
|
17
|
-
alignItems:
|
|
18
|
-
justifyContent:
|
|
16
|
+
display: "flex";
|
|
17
|
+
alignItems: "center";
|
|
18
|
+
justifyContent: "flex-start";
|
|
19
19
|
};
|
|
20
20
|
'.adm-nav-bar-right': {
|
|
21
|
-
display:
|
|
22
|
-
alignItems:
|
|
23
|
-
justifyContent:
|
|
21
|
+
display: "flex";
|
|
22
|
+
alignItems: "center";
|
|
23
|
+
justifyContent: "flex-end";
|
|
24
24
|
};
|
|
25
25
|
};
|
|
26
26
|
};
|
|
@@ -8,11 +8,11 @@
|
|
|
8
8
|
*/
|
|
9
9
|
export declare const useStyles: (props?: unknown) => import("antd-style").ReturnStyles<{
|
|
10
10
|
mobilePageHeader: {
|
|
11
|
-
position:
|
|
11
|
+
position: "absolute";
|
|
12
12
|
top: number;
|
|
13
13
|
left: number;
|
|
14
14
|
right: number;
|
|
15
15
|
borderBottom: string;
|
|
16
|
-
backgroundColor:
|
|
16
|
+
backgroundColor: "var(--adm-color-background)";
|
|
17
17
|
};
|
|
18
18
|
}>;
|
|
@@ -8,9 +8,9 @@
|
|
|
8
8
|
*/
|
|
9
9
|
export declare const useStyles: (props?: unknown) => import("antd-style").ReturnStyles<{
|
|
10
10
|
mobilePageTabs: {
|
|
11
|
-
display:
|
|
12
|
-
alignItems:
|
|
13
|
-
justifyContent:
|
|
11
|
+
display: "flex";
|
|
12
|
+
alignItems: "center";
|
|
13
|
+
justifyContent: "space-between";
|
|
14
14
|
};
|
|
15
15
|
mobilePageTabsList: {
|
|
16
16
|
'.adm-tabs-header': {
|
package/dist/externalVersion.js
CHANGED
|
@@ -8,23 +8,23 @@
|
|
|
8
8
|
*/
|
|
9
9
|
|
|
10
10
|
module.exports = {
|
|
11
|
-
"@nocobase/client": "1.3.
|
|
11
|
+
"@nocobase/client": "1.3.43-beta",
|
|
12
12
|
"react": "18.2.0",
|
|
13
13
|
"react-router-dom": "6.21.0",
|
|
14
14
|
"react-i18next": "11.18.6",
|
|
15
|
-
"@nocobase/server": "1.3.
|
|
16
|
-
"@nocobase/test": "1.3.
|
|
17
|
-
"@nocobase/utils": "1.3.
|
|
15
|
+
"@nocobase/server": "1.3.43-beta",
|
|
16
|
+
"@nocobase/test": "1.3.43-beta",
|
|
17
|
+
"@nocobase/utils": "1.3.43-beta",
|
|
18
18
|
"@formily/react": "2.3.0",
|
|
19
19
|
"antd": "5.12.8",
|
|
20
|
-
"@nocobase/plugin-mobile": "1.3.
|
|
20
|
+
"@nocobase/plugin-mobile": "1.3.43-beta",
|
|
21
21
|
"@ant-design/icons": "5.2.6",
|
|
22
|
-
"@nocobase/database": "1.3.
|
|
22
|
+
"@nocobase/database": "1.3.43-beta",
|
|
23
23
|
"lodash": "4.17.21",
|
|
24
24
|
"react-dom": "18.2.0",
|
|
25
|
-
"antd-style": "3.
|
|
26
|
-
"@nocobase/sdk": "1.3.
|
|
25
|
+
"antd-style": "3.7.1",
|
|
26
|
+
"@nocobase/sdk": "1.3.43-beta",
|
|
27
27
|
"@formily/antd-v5": "1.1.9",
|
|
28
|
-
"@formily/shared": "2.3.
|
|
28
|
+
"@formily/shared": "2.3.2",
|
|
29
29
|
"@emotion/css": "11.13.0"
|
|
30
30
|
};
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@nocobase/plugin-mobile",
|
|
3
|
-
"version": "1.3.
|
|
3
|
+
"version": "1.3.43-beta",
|
|
4
4
|
"main": "dist/server/index.js",
|
|
5
5
|
"homepage": "https://docs.nocobase.com/handbook/mobile",
|
|
6
6
|
"homepage.zh-CN": "https://docs-cn.nocobase.com/handbook/mobile",
|
|
@@ -25,5 +25,5 @@
|
|
|
25
25
|
"re-resizable": "6.6.0",
|
|
26
26
|
"react-device-detect": "2.2.3"
|
|
27
27
|
},
|
|
28
|
-
"gitHead": "
|
|
28
|
+
"gitHead": "6f40c8ce92fba4bcb4b9531d15d29b089d73face"
|
|
29
29
|
}
|