@nocobase/plugin-mobile 1.6.0-alpha.5 → 1.6.0-alpha.6
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/index.d.ts +1 -0
- package/dist/client/index.js +1 -1
- package/dist/client/mobile/MobileAppContext.d.ts +2 -0
- package/dist/client/pages/dynamic-page/components/MobileDatePicker.d.ts +8 -1
- package/dist/externalVersion.js +9 -8
- package/dist/locale/zh-CN.json +2 -1
- package/package.json +2 -2
|
@@ -10,6 +10,8 @@ import React, { FC } from 'react';
|
|
|
10
10
|
interface MobileAppContextProps {
|
|
11
11
|
showTabBar?: boolean;
|
|
12
12
|
setShowTabBar?: (showTabBar: boolean) => void;
|
|
13
|
+
showBackButton?: boolean;
|
|
14
|
+
setShowBackButton?: (showBackButton: boolean) => void;
|
|
13
15
|
}
|
|
14
16
|
export declare const MobileAppContext: React.Context<MobileAppContextProps>;
|
|
15
17
|
export interface MobileAppProviderProps {
|
|
@@ -8,4 +8,11 @@
|
|
|
8
8
|
*/
|
|
9
9
|
import React from 'react';
|
|
10
10
|
declare const MobileDateTimePicker: React.ForwardRefExoticComponent<Omit<Partial<any>, "ref"> & React.RefAttributes<unknown>>;
|
|
11
|
-
|
|
11
|
+
declare const MobileRangePicker: (props: any) => React.JSX.Element;
|
|
12
|
+
declare const MobileDateFilterWithPicker: (props: any) => React.JSX.Element;
|
|
13
|
+
type ComposedMobileTimePicker = React.FC<any> & {
|
|
14
|
+
RangePicker?: React.FC<any>;
|
|
15
|
+
ReadPretty?: React.FC<any>;
|
|
16
|
+
};
|
|
17
|
+
declare const MobileTimePicker: ComposedMobileTimePicker;
|
|
18
|
+
export { MobileDateTimePicker, MobileRangePicker, MobileDateFilterWithPicker, MobileTimePicker };
|
package/dist/externalVersion.js
CHANGED
|
@@ -11,22 +11,23 @@ module.exports = {
|
|
|
11
11
|
"@emotion/css": "11.13.4",
|
|
12
12
|
"@formily/core": "2.3.0",
|
|
13
13
|
"@formily/shared": "2.3.2",
|
|
14
|
-
"@nocobase/client": "1.6.0-alpha.
|
|
15
|
-
"@nocobase/plugin-acl": "1.6.0-alpha.
|
|
14
|
+
"@nocobase/client": "1.6.0-alpha.6",
|
|
15
|
+
"@nocobase/plugin-acl": "1.6.0-alpha.6",
|
|
16
16
|
"ahooks": "3.7.8",
|
|
17
17
|
"antd": "5.12.8",
|
|
18
18
|
"lodash": "4.17.21",
|
|
19
19
|
"react": "18.2.0",
|
|
20
20
|
"react-i18next": "11.18.6",
|
|
21
21
|
"react-router-dom": "6.21.0",
|
|
22
|
-
"@nocobase/database": "1.6.0-alpha.
|
|
23
|
-
"@nocobase/server": "1.6.0-alpha.
|
|
24
|
-
"@nocobase/test": "1.6.0-alpha.
|
|
25
|
-
"@nocobase/utils": "1.6.0-alpha.
|
|
22
|
+
"@nocobase/database": "1.6.0-alpha.6",
|
|
23
|
+
"@nocobase/server": "1.6.0-alpha.6",
|
|
24
|
+
"@nocobase/test": "1.6.0-alpha.6",
|
|
25
|
+
"@nocobase/utils": "1.6.0-alpha.6",
|
|
26
26
|
"@formily/react": "2.3.0",
|
|
27
|
-
"@nocobase/plugin-mobile": "1.6.0-alpha.
|
|
27
|
+
"@nocobase/plugin-mobile": "1.6.0-alpha.6",
|
|
28
28
|
"@ant-design/icons": "5.2.6",
|
|
29
29
|
"react-dom": "18.2.0",
|
|
30
|
-
"@nocobase/sdk": "1.6.0-alpha.
|
|
30
|
+
"@nocobase/sdk": "1.6.0-alpha.6",
|
|
31
|
+
"dayjs": "1.11.10",
|
|
31
32
|
"@formily/antd-v5": "1.1.9"
|
|
32
33
|
};
|
package/dist/locale/zh-CN.json
CHANGED
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@nocobase/plugin-mobile",
|
|
3
|
-
"version": "1.6.0-alpha.
|
|
3
|
+
"version": "1.6.0-alpha.6",
|
|
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",
|
|
@@ -32,5 +32,5 @@
|
|
|
32
32
|
"react-device-detect": "2.2.3",
|
|
33
33
|
"react-i18next": "11.x"
|
|
34
34
|
},
|
|
35
|
-
"gitHead": "
|
|
35
|
+
"gitHead": "485580ad30e5164ead7e15f3b4d219f2bce2caf4"
|
|
36
36
|
}
|