@cloudbase/framework-plugin-low-code 1.7.2 → 1.7.3
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/lib/builder/config/common.d.ts +2 -0
- package/lib/builder/config/common.d.ts.map +1 -0
- package/lib/builder/config/common.js +13 -0
- package/lib/builder/config/index.d.ts +3 -0
- package/lib/builder/config/index.d.ts.map +1 -0
- package/lib/builder/config/index.js +29 -0
- package/lib/builder/config/mp.d.ts +2 -0
- package/lib/builder/config/mp.d.ts.map +1 -0
- package/lib/builder/config/mp.js +13 -0
- package/lib/builder/core/copy.d.ts +5 -0
- package/lib/builder/core/copy.d.ts.map +1 -0
- package/lib/builder/core/copy.js +62 -0
- package/lib/builder/core/generate.d.ts +9 -0
- package/lib/builder/core/generate.d.ts.map +1 -0
- package/lib/builder/core/generate.js +128 -0
- package/lib/builder/core/index.d.ts +32 -0
- package/lib/builder/core/index.d.ts.map +1 -0
- package/lib/builder/core/index.js +149 -0
- package/lib/builder/core/material.d.ts +4 -0
- package/lib/builder/core/material.d.ts.map +1 -0
- package/lib/builder/core/material.js +80 -0
- package/lib/builder/core/plugin.d.ts +4 -0
- package/lib/builder/core/plugin.d.ts.map +1 -0
- package/lib/builder/core/plugin.js +30 -0
- package/lib/builder/core/prepare.d.ts +8 -0
- package/lib/builder/core/prepare.d.ts.map +1 -0
- package/lib/builder/core/prepare.js +108 -0
- package/lib/builder/core/webpack.d.ts +15 -0
- package/lib/builder/core/webpack.d.ts.map +1 -0
- package/lib/builder/core/webpack.js +58 -0
- package/lib/builder/mp/BuildContext.d.ts +13 -0
- package/lib/builder/mp/BuildContext.d.ts.map +1 -0
- package/lib/builder/mp/BuildContext.js +2 -0
- package/lib/builder/mp/index.d.ts +33 -0
- package/lib/builder/mp/index.d.ts.map +1 -0
- package/lib/builder/mp/index.js +450 -0
- package/lib/builder/mp/lowcode.d.ts +8 -0
- package/lib/builder/mp/lowcode.d.ts.map +1 -0
- package/lib/builder/mp/lowcode.js +54 -0
- package/lib/builder/mp/materials.d.ts +15 -0
- package/lib/builder/mp/materials.d.ts.map +1 -0
- package/lib/builder/mp/materials.js +338 -0
- package/lib/builder/mp/mixMode.d.ts +10 -0
- package/lib/builder/mp/mixMode.d.ts.map +1 -0
- package/lib/builder/mp/mixMode.js +215 -0
- package/lib/builder/mp/mp_config.d.ts +18 -0
- package/lib/builder/mp/mp_config.d.ts.map +1 -0
- package/lib/builder/mp/mp_config.js +206 -0
- package/lib/builder/mp/util.d.ts +20 -0
- package/lib/builder/mp/util.d.ts.map +1 -0
- package/lib/builder/mp/util.js +243 -0
- package/lib/builder/mp/wxml.d.ts +16 -0
- package/lib/builder/mp/wxml.d.ts.map +1 -0
- package/lib/builder/mp/wxml.js +300 -0
- package/lib/builder/service/builder/copy.d.ts +14 -0
- package/lib/builder/service/builder/copy.d.ts.map +1 -0
- package/lib/builder/service/builder/copy.js +189 -0
- package/lib/builder/service/builder/generate.d.ts +52 -0
- package/lib/builder/service/builder/generate.d.ts.map +1 -0
- package/lib/builder/service/builder/generate.js +792 -0
- package/lib/builder/service/builder/index.d.ts +16 -0
- package/lib/builder/service/builder/index.d.ts.map +1 -0
- package/lib/builder/service/builder/index.js +69 -0
- package/lib/builder/service/builder/plugin.d.ts +8 -0
- package/lib/builder/service/builder/plugin.d.ts.map +1 -0
- package/lib/builder/service/builder/plugin.js +149 -0
- package/lib/builder/service/builder/webpack.d.ts +91 -0
- package/lib/builder/service/builder/webpack.d.ts.map +1 -0
- package/lib/builder/service/builder/webpack.js +589 -0
- package/lib/builder/types/common.d.ts +12 -0
- package/lib/builder/types/common.d.ts.map +1 -0
- package/lib/builder/types/common.js +7 -0
- package/lib/builder/util/common.d.ts +36 -0
- package/lib/builder/util/common.d.ts.map +1 -0
- package/lib/builder/util/common.js +257 -0
- package/lib/builder/util/console.d.ts +2 -0
- package/lib/builder/util/console.d.ts.map +1 -0
- package/lib/builder/util/console.js +13 -0
- package/lib/builder/util/generateFiles.d.ts +6 -0
- package/lib/builder/util/generateFiles.d.ts.map +1 -0
- package/lib/builder/util/generateFiles.js +94 -0
- package/lib/builder/util/index.d.ts +2 -0
- package/lib/builder/util/index.d.ts.map +1 -0
- package/lib/builder/util/index.js +13 -0
- package/lib/builder/util/junk.d.ts +3 -0
- package/lib/builder/util/junk.d.ts.map +1 -0
- package/lib/builder/util/junk.js +25 -0
- package/lib/builder/util/mp.d.ts +5 -0
- package/lib/builder/util/mp.d.ts.map +1 -0
- package/lib/builder/util/mp.js +99 -0
- package/lib/builder/util/name-mangler.d.ts +3 -0
- package/lib/builder/util/name-mangler.d.ts.map +1 -0
- package/lib/builder/util/name-mangler.js +7 -0
- package/lib/builder/util/net.d.ts +3 -0
- package/lib/builder/util/net.d.ts.map +1 -0
- package/lib/builder/util/net.js +54 -0
- package/lib/builder/util/process.d.ts +9 -0
- package/lib/builder/util/process.d.ts.map +1 -0
- package/lib/builder/util/process.js +28 -0
- package/lib/builder/util/style.d.ts +2 -0
- package/lib/builder/util/style.d.ts.map +1 -0
- package/lib/builder/util/style.js +13 -0
- package/lib/builder/util/weapp.d.ts +2 -0
- package/lib/builder/util/weapp.d.ts.map +1 -0
- package/lib/builder/util/weapp.js +13 -0
- package/lib/config/private.d.ts +3 -0
- package/lib/config/private.d.ts.map +1 -0
- package/lib/config/private.js +14 -0
- package/lib/generate.d.ts +2 -0
- package/lib/generate.d.ts.map +1 -0
- package/lib/generate.js +49 -0
- package/lib/generator/config/common.d.ts +6 -0
- package/lib/generator/config/common.d.ts.map +1 -0
- package/lib/generator/config/common.js +25 -0
- package/lib/generator/config/index.d.ts +18 -0
- package/lib/generator/config/index.d.ts.map +1 -0
- package/lib/generator/config/index.js +43 -0
- package/lib/generator/config/mp.d.ts +56 -0
- package/lib/generator/config/mp.d.ts.map +1 -0
- package/lib/generator/config/mp.js +104 -0
- package/lib/generator/core/generate.d.ts +59 -0
- package/lib/generator/core/generate.d.ts.map +1 -0
- package/lib/generator/core/generate.js +663 -0
- package/lib/generator/core/index.d.ts +25 -0
- package/lib/generator/core/index.d.ts.map +1 -0
- package/lib/generator/core/index.js +102 -0
- package/lib/generator/core/material.d.ts +14 -0
- package/lib/generator/core/material.d.ts.map +1 -0
- package/lib/generator/core/material.js +230 -0
- package/lib/generator/template.d.ts +3 -0
- package/lib/generator/template.d.ts.map +1 -0
- package/lib/generator/template.js +3 -0
- package/lib/generator/types/common.d.ts +69 -0
- package/lib/generator/types/common.d.ts.map +1 -0
- package/lib/generator/types/common.js +21 -0
- package/lib/generator/util/common.d.ts +36 -0
- package/lib/generator/util/common.d.ts.map +1 -0
- package/lib/generator/util/common.js +238 -0
- package/lib/generator/util/console.d.ts +3 -0
- package/lib/generator/util/console.d.ts.map +1 -0
- package/lib/generator/util/console.js +17 -0
- package/lib/generator/util/index.d.ts +2 -0
- package/lib/generator/util/index.d.ts.map +1 -0
- package/lib/generator/util/index.js +13 -0
- package/lib/generator/util/name-mangler.d.ts +17 -0
- package/lib/generator/util/name-mangler.d.ts.map +1 -0
- package/lib/generator/util/name-mangler.js +63 -0
- package/lib/generator/util/postcss-rpx.d.ts +11 -0
- package/lib/generator/util/postcss-rpx.d.ts.map +1 -0
- package/lib/generator/util/postcss-rpx.js +16 -0
- package/lib/generator/util/style.d.ts +6 -0
- package/lib/generator/util/style.d.ts.map +1 -0
- package/lib/generator/util/style.js +92 -0
- package/lib/generator/util/weapp.d.ts +5 -0
- package/lib/generator/util/weapp.d.ts.map +1 -0
- package/lib/generator/util/weapp.js +17 -0
- package/lib/index.d.ts +0 -0
- package/lib/index.d.ts.map +0 -0
- package/lib/index.js +0 -0
- package/lib/types.d.ts +14 -0
- package/lib/types.d.ts.map +1 -0
- package/lib/types.js +19 -0
- package/lib/utils/common.d.ts +0 -0
- package/lib/utils/common.d.ts.map +0 -0
- package/lib/utils/common.js +0 -0
- package/lib/utils/dataSource.d.ts +28 -0
- package/lib/utils/dataSource.d.ts.map +1 -0
- package/lib/utils/dataSource.js +171 -0
- package/lib/utils/index.d.ts +0 -0
- package/lib/utils/index.d.ts.map +0 -0
- package/lib/utils/index.js +0 -0
- package/lib/utils/postProcess.d.ts +3 -0
- package/lib/utils/postProcess.d.ts.map +1 -0
- package/lib/utils/postProcess.js +48 -0
- package/lib/weapps-core/config/index.d.ts +2 -0
- package/lib/weapps-core/config/index.d.ts.map +1 -0
- package/lib/weapps-core/config/index.js +13 -0
- package/lib/weapps-core/config/style.d.ts +7 -0
- package/lib/weapps-core/config/style.d.ts.map +1 -0
- package/lib/weapps-core/config/style.js +70 -0
- package/lib/weapps-core/index.d.ts +6 -0
- package/lib/weapps-core/index.d.ts.map +1 -0
- package/lib/weapps-core/index.js +31 -0
- package/lib/weapps-core/types/action.d.ts +25 -0
- package/lib/weapps-core/types/action.d.ts.map +1 -0
- package/lib/weapps-core/types/action.js +28 -0
- package/lib/weapps-core/types/app.d.ts +142 -0
- package/lib/weapps-core/types/app.d.ts.map +1 -0
- package/lib/weapps-core/types/app.js +21 -0
- package/lib/weapps-core/types/appbuild.d.ts +63 -0
- package/lib/weapps-core/types/appbuild.d.ts.map +1 -0
- package/lib/weapps-core/types/appbuild.js +78 -0
- package/lib/weapps-core/types/code_types.d.ts +26 -0
- package/lib/weapps-core/types/code_types.d.ts.map +1 -0
- package/lib/weapps-core/types/code_types.js +2 -0
- package/lib/weapps-core/types/git.d.ts +7 -0
- package/lib/weapps-core/types/git.d.ts.map +1 -0
- package/lib/weapps-core/types/git.js +2 -0
- package/lib/weapps-core/types/index.d.ts +11 -0
- package/lib/weapps-core/types/index.d.ts.map +1 -0
- package/lib/weapps-core/types/index.js +22 -0
- package/lib/weapps-core/types/lowcode.d.ts +26 -0
- package/lib/weapps-core/types/lowcode.d.ts.map +1 -0
- package/lib/weapps-core/types/lowcode.js +25 -0
- package/lib/weapps-core/types/material.d.ts +90 -0
- package/lib/weapps-core/types/material.d.ts.map +1 -0
- package/lib/weapps-core/types/material.js +9 -0
- package/lib/weapps-core/types/plugins.d.ts +17 -0
- package/lib/weapps-core/types/plugins.d.ts.map +1 -0
- package/lib/weapps-core/types/plugins.js +2 -0
- package/lib/weapps-core/types/style.d.ts +93 -0
- package/lib/weapps-core/types/style.d.ts.map +1 -0
- package/lib/weapps-core/types/style.js +2 -0
- package/lib/weapps-core/types/web.d.ts +120 -0
- package/lib/weapps-core/types/web.d.ts.map +1 -0
- package/lib/weapps-core/types/web.js +2 -0
- package/lib/weapps-core/utils/appbuild.d.ts +6 -0
- package/lib/weapps-core/utils/appbuild.d.ts.map +1 -0
- package/lib/weapps-core/utils/appbuild.js +40 -0
- package/lib/weapps-core/utils/common.d.ts +16 -0
- package/lib/weapps-core/utils/common.d.ts.map +1 -0
- package/lib/weapps-core/utils/common.js +90 -0
- package/lib/weapps-core/utils/file.d.ts +12 -0
- package/lib/weapps-core/utils/file.d.ts.map +1 -0
- package/lib/weapps-core/utils/file.js +142 -0
- package/lib/weapps-core/utils/formily.d.ts +5 -0
- package/lib/weapps-core/utils/formily.d.ts.map +1 -0
- package/lib/weapps-core/utils/formily.js +416 -0
- package/lib/weapps-core/utils/index.d.ts +7 -0
- package/lib/weapps-core/utils/index.d.ts.map +1 -0
- package/lib/weapps-core/utils/index.js +18 -0
- package/lib/weapps-core/utils/lowcdoe.d.ts +4 -0
- package/lib/weapps-core/utils/lowcdoe.d.ts.map +1 -0
- package/lib/weapps-core/utils/lowcdoe.js +69 -0
- package/lib/weapps-core/utils/style.d.ts +17 -0
- package/lib/weapps-core/utils/style.d.ts.map +1 -0
- package/lib/weapps-core/utils/style.js +330 -0
- package/package.json +3 -3
|
@@ -0,0 +1,63 @@
|
|
|
1
|
+
export declare enum APPbuildTypes {
|
|
2
|
+
Android = 1,
|
|
3
|
+
iOS = 2,
|
|
4
|
+
web = 3,
|
|
5
|
+
app = 4,
|
|
6
|
+
qywxH5 = 5,
|
|
7
|
+
wxH5 = 6
|
|
8
|
+
}
|
|
9
|
+
export declare enum APPbuildModes {
|
|
10
|
+
'Production' = 1,
|
|
11
|
+
'Debugger' = 2
|
|
12
|
+
}
|
|
13
|
+
export declare enum APPbuildStatus {
|
|
14
|
+
'INITIALIZING' = 0,
|
|
15
|
+
'RUNNING' = 1,
|
|
16
|
+
'SUCCEED' = 2,
|
|
17
|
+
'FAILED' = 3
|
|
18
|
+
}
|
|
19
|
+
export interface IAppBuildContent {
|
|
20
|
+
url?: string;
|
|
21
|
+
h5AppBuildId?: number;
|
|
22
|
+
h5Version?: string;
|
|
23
|
+
h5log?: string;
|
|
24
|
+
FileName?: string;
|
|
25
|
+
}
|
|
26
|
+
export declare const ChannelTypes: string[];
|
|
27
|
+
export declare const H5BuildTypes: {
|
|
28
|
+
value: string;
|
|
29
|
+
label: string;
|
|
30
|
+
}[];
|
|
31
|
+
export declare enum CodingPublishType {
|
|
32
|
+
Android = "android",
|
|
33
|
+
iOS = "ios",
|
|
34
|
+
H5 = "h5"
|
|
35
|
+
}
|
|
36
|
+
export interface ICtnProps {
|
|
37
|
+
name: string;
|
|
38
|
+
createTime: number;
|
|
39
|
+
uri: string;
|
|
40
|
+
}
|
|
41
|
+
export interface IOutputs {
|
|
42
|
+
h5JobId?: string;
|
|
43
|
+
androidJobId?: string;
|
|
44
|
+
iOSJobId?: string;
|
|
45
|
+
logo: string;
|
|
46
|
+
name: string;
|
|
47
|
+
appid?: string;
|
|
48
|
+
iOSappId?: string;
|
|
49
|
+
androidCtn: ICtnProps;
|
|
50
|
+
iOSCtn: ICtnProps;
|
|
51
|
+
}
|
|
52
|
+
export declare enum IOSChannelTypes {
|
|
53
|
+
development = "development",
|
|
54
|
+
adhoc = "ad-hoc",
|
|
55
|
+
appStore = "app-store",
|
|
56
|
+
enterprise = "enterprise"
|
|
57
|
+
}
|
|
58
|
+
export declare const IOSChannels: {
|
|
59
|
+
value: IOSChannelTypes;
|
|
60
|
+
title: string;
|
|
61
|
+
label: string;
|
|
62
|
+
}[];
|
|
63
|
+
//# sourceMappingURL=appbuild.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"appbuild.d.ts","sourceRoot":"","sources":["../../../src/weapps-core/types/appbuild.ts"],"names":[],"mappings":"AAAA,oBAAY,aAAa;IACvB,OAAO,IAAI;IACX,GAAG,IAAA;IACH,GAAG,IAAA;IACH,GAAG,IAAA;IACH,MAAM,IAAA;IACN,IAAI,IAAA;CACL;AACD,oBAAY,aAAa;IACvB,YAAY,IAAI;IAChB,UAAU,IAAA;CACX;AAED,oBAAY,cAAc;IACxB,cAAc,IAAA;IACd,SAAS,IAAA;IACT,SAAS,IAAA;IACT,QAAQ,IAAA;CACT;AAED,MAAM,WAAW,gBAAgB;IAC/B,GAAG,CAAC,EAAE,MAAM,CAAC;IACb,YAAY,CAAC,EAAE,MAAM,CAAC;IACtB,SAAS,CAAC,EAAE,MAAM,CAAC;IACnB,KAAK,CAAC,EAAE,MAAM,CAAC;IACf,QAAQ,CAAC,EAAE,MAAM,CAAC;CACnB;AAED,eAAO,MAAM,YAAY,UAAmC,CAAC;AAE7D,eAAO,MAAM,YAAY;;;GAiBxB,CAAC;AAEF,oBAAY,iBAAiB;IAC3B,OAAO,YAAY;IACnB,GAAG,QAAQ;IACX,EAAE,OAAO;CACV;AAED,MAAM,WAAW,SAAS;IACxB,IAAI,EAAE,MAAM,CAAC;IACb,UAAU,EAAE,MAAM,CAAC;IACnB,GAAG,EAAE,MAAM,CAAC;CACb;AAED,MAAM,WAAW,QAAQ;IACvB,OAAO,CAAC,EAAE,MAAM,CAAC;IACjB,YAAY,CAAC,EAAE,MAAM,CAAC;IACtB,QAAQ,CAAC,EAAE,MAAM,CAAC;IAClB,IAAI,EAAE,MAAM,CAAC;IACb,IAAI,EAAE,MAAM,CAAC;IACb,KAAK,CAAC,EAAE,MAAM,CAAC;IACf,QAAQ,CAAC,EAAE,MAAM,CAAC;IAClB,UAAU,EAAE,SAAS,CAAC;IACtB,MAAM,EAAE,SAAS,CAAC;CACnB;AAGD,oBAAY,eAAe;IACzB,WAAW,gBAAgB;IAC3B,KAAK,WAAW;IAChB,QAAQ,cAAc;IACtB,UAAU,eAAe;CAC1B;AAGD,eAAO,MAAM,WAAW;;;;GAwBvB,CAAC"}
|
|
@@ -0,0 +1,78 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
+
exports.IOSChannels = exports.IOSChannelTypes = exports.CodingPublishType = exports.H5BuildTypes = exports.ChannelTypes = exports.APPbuildStatus = exports.APPbuildModes = exports.APPbuildTypes = void 0;
|
|
4
|
+
var APPbuildTypes;
|
|
5
|
+
(function (APPbuildTypes) {
|
|
6
|
+
APPbuildTypes[APPbuildTypes["Android"] = 1] = "Android";
|
|
7
|
+
APPbuildTypes[APPbuildTypes["iOS"] = 2] = "iOS";
|
|
8
|
+
APPbuildTypes[APPbuildTypes["web"] = 3] = "web";
|
|
9
|
+
APPbuildTypes[APPbuildTypes["app"] = 4] = "app";
|
|
10
|
+
APPbuildTypes[APPbuildTypes["qywxH5"] = 5] = "qywxH5";
|
|
11
|
+
APPbuildTypes[APPbuildTypes["wxH5"] = 6] = "wxH5";
|
|
12
|
+
})(APPbuildTypes = exports.APPbuildTypes || (exports.APPbuildTypes = {}));
|
|
13
|
+
var APPbuildModes;
|
|
14
|
+
(function (APPbuildModes) {
|
|
15
|
+
APPbuildModes[APPbuildModes["Production"] = 1] = "Production";
|
|
16
|
+
APPbuildModes[APPbuildModes["Debugger"] = 2] = "Debugger";
|
|
17
|
+
})(APPbuildModes = exports.APPbuildModes || (exports.APPbuildModes = {}));
|
|
18
|
+
var APPbuildStatus;
|
|
19
|
+
(function (APPbuildStatus) {
|
|
20
|
+
APPbuildStatus[APPbuildStatus["INITIALIZING"] = 0] = "INITIALIZING";
|
|
21
|
+
APPbuildStatus[APPbuildStatus["RUNNING"] = 1] = "RUNNING";
|
|
22
|
+
APPbuildStatus[APPbuildStatus["SUCCEED"] = 2] = "SUCCEED";
|
|
23
|
+
APPbuildStatus[APPbuildStatus["FAILED"] = 3] = "FAILED";
|
|
24
|
+
})(APPbuildStatus = exports.APPbuildStatus || (exports.APPbuildStatus = {}));
|
|
25
|
+
exports.ChannelTypes = ['androidChannel', 'iOSChannel'];
|
|
26
|
+
exports.H5BuildTypes = [
|
|
27
|
+
{
|
|
28
|
+
value: 'web',
|
|
29
|
+
label: "普通Web应用 (process.env.buildType = 'web')",
|
|
30
|
+
},
|
|
31
|
+
{
|
|
32
|
+
value: 'app',
|
|
33
|
+
label: "Hybrid App内嵌h5 (process.env.buildType = 'app')",
|
|
34
|
+
},
|
|
35
|
+
{
|
|
36
|
+
value: 'qywxH5',
|
|
37
|
+
label: "企业微信(政务微信)h5 (process.env.buildType = 'qywxH5')",
|
|
38
|
+
},
|
|
39
|
+
{
|
|
40
|
+
value: 'wxH5',
|
|
41
|
+
label: "微信网页h5 (process.env.buildType = 'wxH5')",
|
|
42
|
+
},
|
|
43
|
+
];
|
|
44
|
+
var CodingPublishType;
|
|
45
|
+
(function (CodingPublishType) {
|
|
46
|
+
CodingPublishType["Android"] = "android";
|
|
47
|
+
CodingPublishType["iOS"] = "ios";
|
|
48
|
+
CodingPublishType["H5"] = "h5";
|
|
49
|
+
})(CodingPublishType = exports.CodingPublishType || (exports.CodingPublishType = {}));
|
|
50
|
+
var IOSChannelTypes;
|
|
51
|
+
(function (IOSChannelTypes) {
|
|
52
|
+
IOSChannelTypes["development"] = "development";
|
|
53
|
+
IOSChannelTypes["adhoc"] = "ad-hoc";
|
|
54
|
+
IOSChannelTypes["appStore"] = "app-store";
|
|
55
|
+
IOSChannelTypes["enterprise"] = "enterprise";
|
|
56
|
+
})(IOSChannelTypes = exports.IOSChannelTypes || (exports.IOSChannelTypes = {}));
|
|
57
|
+
exports.IOSChannels = [
|
|
58
|
+
{
|
|
59
|
+
value: IOSChannelTypes.development,
|
|
60
|
+
title: 'development测试分发',
|
|
61
|
+
label: '用于给我们内部人员测试使用的,指定的授权用户设备才可以安装,可部署到服务器下载安装,需要开发证书打包',
|
|
62
|
+
},
|
|
63
|
+
{
|
|
64
|
+
value: IOSChannelTypes.adhoc,
|
|
65
|
+
title: 'ad-hoc测试分发',
|
|
66
|
+
label: '用于给我们内部人员测试使用的,指定的授权用户设备才可以安装,可部署到服务器下载安装,需要发布证书打',
|
|
67
|
+
},
|
|
68
|
+
{
|
|
69
|
+
value: IOSChannelTypes.appStore,
|
|
70
|
+
title: 'app-store商店分发 ',
|
|
71
|
+
label: '用于提交到商店审核,用户设备只能通过在App Store下载安装',
|
|
72
|
+
},
|
|
73
|
+
{
|
|
74
|
+
value: IOSChannelTypes.enterprise,
|
|
75
|
+
title: 'enterprise企业分发',
|
|
76
|
+
label: '布署到服务器,所有用户设备都可通过扫描二维码或使用浏览器点击链接下载安装',
|
|
77
|
+
},
|
|
78
|
+
];
|
|
@@ -0,0 +1,26 @@
|
|
|
1
|
+
export declare type CodeType = 'rematch' | 'rematch-action' | 'computed' | 'general-func' | 'general' | 'lifecycle' | 'config' | 'state' | 'handler-fn' | 'normal-module' | 'app-style' | 'style' | 'theme' | 'lib' | 'index' | 'renderer' | 'json' | 'app-config' | 'page-config' | 'page';
|
|
2
|
+
export declare type RematchModule<State> = (args: {
|
|
3
|
+
sdk: any;
|
|
4
|
+
history: any;
|
|
5
|
+
}) => {
|
|
6
|
+
state: State;
|
|
7
|
+
reducers: {
|
|
8
|
+
[funcName: string]: (state: State, payload: any) => State;
|
|
9
|
+
};
|
|
10
|
+
effects: (dispatch: any) => {
|
|
11
|
+
[funcName: string]: RematchActionFunc;
|
|
12
|
+
};
|
|
13
|
+
computed?: {
|
|
14
|
+
[funcName: string]: (state: State) => any;
|
|
15
|
+
};
|
|
16
|
+
};
|
|
17
|
+
export declare type RematchAction = (dispatch: any) => RematchActionFunc;
|
|
18
|
+
export declare type GeneralFunction = (userParams: any) => any;
|
|
19
|
+
export declare type GeneralModule = any;
|
|
20
|
+
export declare type RematchActionFunc = (args: {
|
|
21
|
+
data: any;
|
|
22
|
+
customEventData: any;
|
|
23
|
+
history: any;
|
|
24
|
+
FormActions: any;
|
|
25
|
+
}) => Promise<any> | any;
|
|
26
|
+
//# sourceMappingURL=code_types.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"code_types.d.ts","sourceRoot":"","sources":["../../../src/weapps-core/types/code_types.ts"],"names":[],"mappings":"AAEA,oBAAY,QAAQ,GAChB,SAAS,GACT,gBAAgB,GAChB,UAAU,GACV,cAAc,GACd,SAAS,GACT,WAAW,GACX,QAAQ,GACR,OAAO,GACP,YAAY,GACZ,eAAe,GACf,WAAW,GACX,OAAO,GACP,OAAO,GACP,KAAK,GACL,OAAO,GACP,UAAU,GAGV,MAAM,GACN,YAAY,GACZ,aAAa,GACb,MAAM,CAAC;AAEX,oBAAY,aAAa,CAAC,KAAK,IAAI,CAAC,IAAI,EAAE;IACxC,GAAG,MAAC;IACJ,OAAO,MAAC;CACT,KAAK;IACJ,KAAK,EAAE,KAAK,CAAC;IACb,QAAQ,EAAE;QAAE,CAAC,QAAQ,EAAE,MAAM,GAAG,CAAC,KAAK,EAAE,KAAK,EAAE,OAAO,KAAA,KAAK,KAAK,CAAA;KAAE,CAAC;IACnE,OAAO,EAAE,CAAC,QAAQ,KAAA,KAAK;QAAE,CAAC,QAAQ,EAAE,MAAM,GAAG,iBAAiB,CAAA;KAAE,CAAC;IACjE,QAAQ,CAAC,EAAE;QAAE,CAAC,QAAQ,EAAE,MAAM,GAAG,CAAC,KAAK,EAAE,KAAK,KAAK,GAAG,CAAA;KAAE,CAAC;CAC1D,CAAC;AAEF,oBAAY,aAAa,GAAG,CAAC,QAAQ,KAAA,KAAK,iBAAiB,CAAC;AAE5D,oBAAY,eAAe,GAAG,CAAC,UAAU,EAAE,GAAG,KAAK,GAAG,CAAC;AAEvD,oBAAY,aAAa,GAAG,GAAG,CAAC;AAEhC,oBAAY,iBAAiB,GAAG,CAAC,IAAI,EAAE;IACrC,IAAI,MAAC;IACL,eAAe,MAAC;IAChB,OAAO,MAAC;IACR,WAAW,MAAC;CACb,KAAK,OAAO,CAAC,GAAG,CAAC,GAAG,GAAG,CAAC"}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"git.d.ts","sourceRoot":"","sources":["../../../src/weapps-core/types/git.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,UAAU,EAAE,MAAM,OAAO,CAAA;AAClC,MAAM,WAAW,gBAAgB;IAC/B,KAAK,EAAE,MAAM,CAAA;IACb,IAAI,EAAE,MAAM,CAAA;IACZ,IAAI,EAAE,UAAU,CAAA;CACjB"}
|
|
@@ -0,0 +1,11 @@
|
|
|
1
|
+
export * from './material';
|
|
2
|
+
export * from './action';
|
|
3
|
+
export * from './app';
|
|
4
|
+
export * from './lowcode';
|
|
5
|
+
export * from './code_types';
|
|
6
|
+
export * from './style';
|
|
7
|
+
export * from './web';
|
|
8
|
+
export * from './plugins';
|
|
9
|
+
export * from './git';
|
|
10
|
+
export * from './appbuild';
|
|
11
|
+
//# sourceMappingURL=index.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../../src/weapps-core/types/index.ts"],"names":[],"mappings":"AAAA,cAAc,YAAY,CAAC;AAC3B,cAAc,UAAU,CAAC;AACzB,cAAc,OAAO,CAAC;AACtB,cAAc,WAAW,CAAC;AAC1B,cAAc,cAAc,CAAC;AAC7B,cAAc,SAAS,CAAC;AACxB,cAAc,OAAO,CAAC;AACtB,cAAc,WAAW,CAAC;AAC1B,cAAc,OAAO,CAAC;AACtB,cAAc,YAAY,CAAC"}
|
|
@@ -0,0 +1,22 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
var __createBinding = (this && this.__createBinding) || (Object.create ? (function(o, m, k, k2) {
|
|
3
|
+
if (k2 === undefined) k2 = k;
|
|
4
|
+
Object.defineProperty(o, k2, { enumerable: true, get: function() { return m[k]; } });
|
|
5
|
+
}) : (function(o, m, k, k2) {
|
|
6
|
+
if (k2 === undefined) k2 = k;
|
|
7
|
+
o[k2] = m[k];
|
|
8
|
+
}));
|
|
9
|
+
var __exportStar = (this && this.__exportStar) || function(m, exports) {
|
|
10
|
+
for (var p in m) if (p !== "default" && !Object.prototype.hasOwnProperty.call(exports, p)) __createBinding(exports, m, p);
|
|
11
|
+
};
|
|
12
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
13
|
+
__exportStar(require("./material"), exports);
|
|
14
|
+
__exportStar(require("./action"), exports);
|
|
15
|
+
__exportStar(require("./app"), exports);
|
|
16
|
+
__exportStar(require("./lowcode"), exports);
|
|
17
|
+
__exportStar(require("./code_types"), exports);
|
|
18
|
+
__exportStar(require("./style"), exports);
|
|
19
|
+
__exportStar(require("./web"), exports);
|
|
20
|
+
__exportStar(require("./plugins"), exports);
|
|
21
|
+
__exportStar(require("./git"), exports);
|
|
22
|
+
__exportStar(require("./appbuild"), exports);
|
|
@@ -0,0 +1,26 @@
|
|
|
1
|
+
import { CodeType } from './code_types';
|
|
2
|
+
export interface IWeAppCode {
|
|
3
|
+
id?: string;
|
|
4
|
+
path: string;
|
|
5
|
+
system?: boolean;
|
|
6
|
+
type: CodeType;
|
|
7
|
+
name: string;
|
|
8
|
+
code: string;
|
|
9
|
+
desc?: string;
|
|
10
|
+
pageId?: string;
|
|
11
|
+
title?: string;
|
|
12
|
+
}
|
|
13
|
+
export interface ILowCodesModifyStatus {
|
|
14
|
+
type: 'del' | 'add' | 'mod';
|
|
15
|
+
path: string;
|
|
16
|
+
}
|
|
17
|
+
export interface IWeAppFile {
|
|
18
|
+
pageId: string;
|
|
19
|
+
name: string;
|
|
20
|
+
code: string;
|
|
21
|
+
type: CodeType;
|
|
22
|
+
path: string;
|
|
23
|
+
}
|
|
24
|
+
export declare function isStyleFile(mod: any): boolean;
|
|
25
|
+
export declare function getCodeModuleFilePath(pageId: string, mod: IWeAppCode, exts?: any): string;
|
|
26
|
+
//# sourceMappingURL=lowcode.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"lowcode.d.ts","sourceRoot":"","sources":["../../../src/weapps-core/types/lowcode.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,QAAQ,EAAE,MAAM,cAAc,CAAC;AAExC,MAAM,WAAW,UAAU;IACzB,EAAE,CAAC,EAAE,MAAM,CAAC;IACZ,IAAI,EAAE,MAAM,CAAC;IACb,MAAM,CAAC,EAAE,OAAO,CAAC;IACjB,IAAI,EAAE,QAAQ,CAAC;IACf,IAAI,EAAE,MAAM,CAAC;IACb,IAAI,EAAE,MAAM,CAAC;IACb,IAAI,CAAC,EAAE,MAAM,CAAC;IACd,MAAM,CAAC,EAAE,MAAM,CAAC;IAEhB,KAAK,CAAC,EAAE,MAAM,CAAC;CAChB;AACD,MAAM,WAAW,qBAAqB;IACpC,IAAI,EAAE,KAAK,GAAG,KAAK,GAAG,KAAK,CAAC;IAC5B,IAAI,EAAE,MAAM,CAAC;CACd;AAED,MAAM,WAAW,UAAU;IACzB,MAAM,EAAE,MAAM,CAAC;IACf,IAAI,EAAE,MAAM,CAAC;IACb,IAAI,EAAE,MAAM,CAAC;IACb,IAAI,EAAE,QAAQ,CAAC;IACf,IAAI,EAAE,MAAM,CAAC;CACd;AAOD,wBAAgB,WAAW,CAAC,GAAG,KAAA,WAE9B;AACD,wBAAgB,qBAAqB,CACnC,MAAM,EAAE,MAAM,EACd,GAAG,EAAE,UAAU,EACf,IAAI,GAAE,GAAQ,UAcf"}
|
|
@@ -0,0 +1,25 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
+
exports.getCodeModuleFilePath = exports.isStyleFile = void 0;
|
|
4
|
+
function isStyleFile(mod) {
|
|
5
|
+
return mod.type === 'style' || mod.type === 'theme';
|
|
6
|
+
}
|
|
7
|
+
exports.isStyleFile = isStyleFile;
|
|
8
|
+
function getCodeModuleFilePath(pageId, mod, exts = {}) {
|
|
9
|
+
var _a, _b, _c, _d;
|
|
10
|
+
let file = ``;
|
|
11
|
+
if ((_a = mod === null || mod === void 0 ? void 0 : mod.path) === null || _a === void 0 ? void 0 : _a.startsWith('comp-')) {
|
|
12
|
+
file = `/${mod.path.replace(/comp-\w+/, '')}`;
|
|
13
|
+
}
|
|
14
|
+
else if ((_b = mod === null || mod === void 0 ? void 0 : mod.path) === null || _b === void 0 ? void 0 : _b.startsWith('$comp')) {
|
|
15
|
+
file = `/${mod.path.replace(/\$comp_\d+/, '')}`;
|
|
16
|
+
}
|
|
17
|
+
else if (pageId === 'global') {
|
|
18
|
+
file = `/${(_c = mod === null || mod === void 0 ? void 0 : mod.path) === null || _c === void 0 ? void 0 : _c.replace(/^global/, '')}`;
|
|
19
|
+
}
|
|
20
|
+
else {
|
|
21
|
+
file = `/${(_d = mod === null || mod === void 0 ? void 0 : mod.path) === null || _d === void 0 ? void 0 : _d.replace(/.*?\//, `${pageId}/`)}`;
|
|
22
|
+
}
|
|
23
|
+
return file + (isStyleFile(mod) ? exts.style || '.less' : '.js');
|
|
24
|
+
}
|
|
25
|
+
exports.getCodeModuleFilePath = getCodeModuleFilePath;
|
|
@@ -0,0 +1,90 @@
|
|
|
1
|
+
import { IWeAppComponentInstance } from './app';
|
|
2
|
+
import { IWeAppCode } from './lowcode';
|
|
3
|
+
export interface ICompLibCommonResource {
|
|
4
|
+
theme: {
|
|
5
|
+
variable: string;
|
|
6
|
+
class: string;
|
|
7
|
+
};
|
|
8
|
+
class: string;
|
|
9
|
+
const: IWeAppCode;
|
|
10
|
+
tools: IWeAppCode;
|
|
11
|
+
npm: {
|
|
12
|
+
[key: string]: string;
|
|
13
|
+
};
|
|
14
|
+
}
|
|
15
|
+
export interface IMaterialItem {
|
|
16
|
+
compLibCommonResource: ICompLibCommonResource;
|
|
17
|
+
name: string;
|
|
18
|
+
version: string;
|
|
19
|
+
srcZipUrl: string;
|
|
20
|
+
mpPkgUrl: string;
|
|
21
|
+
actions: {
|
|
22
|
+
name: string;
|
|
23
|
+
}[];
|
|
24
|
+
components: ICompositedComponent[];
|
|
25
|
+
isComposite?: boolean;
|
|
26
|
+
isMiniProgramPlugins?: boolean;
|
|
27
|
+
styles?: string[];
|
|
28
|
+
dependencies?: {};
|
|
29
|
+
schemaVersion?: string;
|
|
30
|
+
meta?: Record<string, any>;
|
|
31
|
+
componentInstances?: IWeAppComponentInstance[];
|
|
32
|
+
}
|
|
33
|
+
export interface IComponentLibEntry {
|
|
34
|
+
entry: string;
|
|
35
|
+
components?: string;
|
|
36
|
+
actions?: string;
|
|
37
|
+
}
|
|
38
|
+
export interface ICompositedComponent {
|
|
39
|
+
id: number;
|
|
40
|
+
name: string;
|
|
41
|
+
materialName: string;
|
|
42
|
+
componentInstances: {
|
|
43
|
+
[key: string]: IWeAppComponentInstance;
|
|
44
|
+
};
|
|
45
|
+
compConfig: Record<string, any>;
|
|
46
|
+
dataForm: any;
|
|
47
|
+
evnets?: any[];
|
|
48
|
+
emitEvents: any[];
|
|
49
|
+
listeners: any[];
|
|
50
|
+
lowCodes: IWeAppCode[];
|
|
51
|
+
meta: IComponentMeta;
|
|
52
|
+
npmDependencies: any;
|
|
53
|
+
}
|
|
54
|
+
export interface IDependencies {
|
|
55
|
+
[key: string]: string;
|
|
56
|
+
}
|
|
57
|
+
export interface IComponentMeta {
|
|
58
|
+
title: string;
|
|
59
|
+
desc?: string;
|
|
60
|
+
category?: string;
|
|
61
|
+
categoryOrder?: number;
|
|
62
|
+
componentOrder?: number;
|
|
63
|
+
inputProps: {
|
|
64
|
+
[valuePropName: string]: IPropSynConfig;
|
|
65
|
+
};
|
|
66
|
+
syncProps: {
|
|
67
|
+
[valuePropName: string]: IPropSynConfig | IPropSynConfig[];
|
|
68
|
+
};
|
|
69
|
+
platforms: {
|
|
70
|
+
mp: {
|
|
71
|
+
tagName?: string;
|
|
72
|
+
path?: string;
|
|
73
|
+
};
|
|
74
|
+
};
|
|
75
|
+
mustEmptyStyle?: boolean;
|
|
76
|
+
}
|
|
77
|
+
interface IPropSynConfig {
|
|
78
|
+
changeEvent: string;
|
|
79
|
+
valueFromEvent: string;
|
|
80
|
+
isFormField?: boolean;
|
|
81
|
+
}
|
|
82
|
+
export interface IGenericComp {
|
|
83
|
+
propName: string;
|
|
84
|
+
title: string;
|
|
85
|
+
}
|
|
86
|
+
export declare const COMPONENT_API_PREFIX = "this.$WEAPPS_COMP";
|
|
87
|
+
export declare const PAGE_API_PREFIX = "this";
|
|
88
|
+
export declare function getCompositedComponentClass(comp: ICompositedComponent): string;
|
|
89
|
+
export {};
|
|
90
|
+
//# sourceMappingURL=material.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"material.d.ts","sourceRoot":"","sources":["../../../src/weapps-core/types/material.ts"],"names":[],"mappings":"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"}
|
|
@@ -0,0 +1,9 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
+
exports.getCompositedComponentClass = exports.PAGE_API_PREFIX = exports.COMPONENT_API_PREFIX = void 0;
|
|
4
|
+
exports.COMPONENT_API_PREFIX = 'this.$WEAPPS_COMP';
|
|
5
|
+
exports.PAGE_API_PREFIX = 'this';
|
|
6
|
+
function getCompositedComponentClass(comp) {
|
|
7
|
+
return `wa-comp-${comp.materialName}-${comp.name}`;
|
|
8
|
+
}
|
|
9
|
+
exports.getCompositedComponentClass = getCompositedComponentClass;
|
|
@@ -0,0 +1,17 @@
|
|
|
1
|
+
import { ICompositedComponent } from './material';
|
|
2
|
+
export interface IPlugin {
|
|
3
|
+
title: string;
|
|
4
|
+
name: string;
|
|
5
|
+
module: string;
|
|
6
|
+
type?: 'kbone' | 'mp';
|
|
7
|
+
version: string;
|
|
8
|
+
}
|
|
9
|
+
export interface IMiniprogramPlugin {
|
|
10
|
+
name: string;
|
|
11
|
+
version: string;
|
|
12
|
+
pluginAppId: string;
|
|
13
|
+
componentConfigs: (ICompositedComponent & {
|
|
14
|
+
isMiniProgramPlugins?: boolean;
|
|
15
|
+
})[];
|
|
16
|
+
}
|
|
17
|
+
//# sourceMappingURL=plugins.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"plugins.d.ts","sourceRoot":"","sources":["../../../src/weapps-core/types/plugins.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,oBAAoB,EAAE,MAAM,YAAY,CAAC;AAElD,MAAM,WAAW,OAAO;IACtB,KAAK,EAAE,MAAM,CAAC;IACd,IAAI,EAAE,MAAM,CAAC;IACb,MAAM,EAAE,MAAM,CAAC;IACf,IAAI,CAAC,EAAE,OAAO,GAAG,IAAI,CAAC;IACtB,OAAO,EAAE,MAAM,CAAC;CACjB;AAED,MAAM,WAAW,kBAAkB;IACjC,IAAI,EAAE,MAAM,CAAC;IACb,OAAO,EAAE,MAAM,CAAC;IAChB,WAAW,EAAE,MAAM,CAAC;IACpB,gBAAgB,EAAE,CAAC,oBAAoB,GAAG;QACxC,oBAAoB,CAAC,EAAE,OAAO,CAAC;KAChC,CAAC,EAAE,CAAC;CACN"}
|
|
@@ -0,0 +1,93 @@
|
|
|
1
|
+
export declare type PX = string;
|
|
2
|
+
export declare type Percent = number;
|
|
3
|
+
export declare type Color = string;
|
|
4
|
+
export declare type URL = string;
|
|
5
|
+
export declare type CSSProperties = any;
|
|
6
|
+
export interface ICommonStyle {
|
|
7
|
+
size?: ISizeStyle;
|
|
8
|
+
transform?: ITransformStyle;
|
|
9
|
+
text?: ITextStyle;
|
|
10
|
+
margin?: IDistanceStyleWithAuto;
|
|
11
|
+
padding?: IDistanceStyle;
|
|
12
|
+
border?: IBorderStyle;
|
|
13
|
+
background?: IBackgroundStyle;
|
|
14
|
+
position?: IPositionStyle;
|
|
15
|
+
zIndex?: number;
|
|
16
|
+
custom?: ICustomStyle[];
|
|
17
|
+
self?: object;
|
|
18
|
+
display?: string;
|
|
19
|
+
flexConfig?: {
|
|
20
|
+
flexDirection?: string;
|
|
21
|
+
justifyContent?: string;
|
|
22
|
+
alignItems?: string;
|
|
23
|
+
flexWrap?: string;
|
|
24
|
+
};
|
|
25
|
+
}
|
|
26
|
+
export interface IPositionStyle {
|
|
27
|
+
position?: 'fixed' | 'absolute' | 'relative' | 'static';
|
|
28
|
+
top?: PX;
|
|
29
|
+
right?: PX | 'auto';
|
|
30
|
+
bottom?: PX;
|
|
31
|
+
left?: PX | 'auto';
|
|
32
|
+
}
|
|
33
|
+
export interface ISizeStyle {
|
|
34
|
+
autoWidth: boolean;
|
|
35
|
+
width: PX;
|
|
36
|
+
autoHeight: boolean;
|
|
37
|
+
height: PX;
|
|
38
|
+
}
|
|
39
|
+
export interface ITransformStyle {
|
|
40
|
+
rotate: number;
|
|
41
|
+
opacity: number;
|
|
42
|
+
scale: number;
|
|
43
|
+
radius: PX;
|
|
44
|
+
}
|
|
45
|
+
export interface ITextStyle {
|
|
46
|
+
color: Color;
|
|
47
|
+
fontSize: PX;
|
|
48
|
+
lineHeight: PX;
|
|
49
|
+
textAlign: 'left' | 'center' | 'right' | 'justify';
|
|
50
|
+
weight: 'lighter' | 'bolder' | 'normal';
|
|
51
|
+
opacity: number;
|
|
52
|
+
}
|
|
53
|
+
export interface IBorderStyle {
|
|
54
|
+
type: 'none' | 'solid' | 'dashed';
|
|
55
|
+
color: Color;
|
|
56
|
+
width: PX;
|
|
57
|
+
radius?: PX;
|
|
58
|
+
radiusInfo?: {
|
|
59
|
+
topLeft: string;
|
|
60
|
+
topRight: string;
|
|
61
|
+
bottomRight: string;
|
|
62
|
+
bottomLeft: string;
|
|
63
|
+
};
|
|
64
|
+
}
|
|
65
|
+
export interface IBackgroundStyle {
|
|
66
|
+
bgType: 'color' | 'image';
|
|
67
|
+
color: Color;
|
|
68
|
+
image: URL;
|
|
69
|
+
size: string;
|
|
70
|
+
repeat: string;
|
|
71
|
+
position?: string;
|
|
72
|
+
positionObj?: {
|
|
73
|
+
left: string;
|
|
74
|
+
top: string;
|
|
75
|
+
};
|
|
76
|
+
}
|
|
77
|
+
export interface IDistanceStyle {
|
|
78
|
+
top?: PX;
|
|
79
|
+
right?: PX;
|
|
80
|
+
bottom?: PX;
|
|
81
|
+
left?: PX;
|
|
82
|
+
}
|
|
83
|
+
export interface IDistanceStyleWithAuto {
|
|
84
|
+
top?: PX;
|
|
85
|
+
right?: PX | 'auto';
|
|
86
|
+
bottom?: PX;
|
|
87
|
+
left?: PX | 'auto';
|
|
88
|
+
}
|
|
89
|
+
export interface ICustomStyle {
|
|
90
|
+
key: string;
|
|
91
|
+
value: string;
|
|
92
|
+
}
|
|
93
|
+
//# sourceMappingURL=style.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"style.d.ts","sourceRoot":"","sources":["../../../src/weapps-core/types/style.ts"],"names":[],"mappings":"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"}
|
|
@@ -0,0 +1,120 @@
|
|
|
1
|
+
import { ActionType } from './action';
|
|
2
|
+
import { ICommonStyle } from './style';
|
|
3
|
+
import { IWeAppCode } from './lowcode';
|
|
4
|
+
import { IPlugin } from './plugins';
|
|
5
|
+
import { PropBindType, IEventModifiers, IAppAndPageVar, IWeAppComponentInstance } from './app';
|
|
6
|
+
export interface IWebRuntimeAppData extends IAppAndPageVar {
|
|
7
|
+
envId?: string;
|
|
8
|
+
datasources: any[];
|
|
9
|
+
selectedPageId?: string;
|
|
10
|
+
pageInstanceList: IPageInstance[];
|
|
11
|
+
rootPath?: string;
|
|
12
|
+
maxID?: number;
|
|
13
|
+
codeModules: IWeAppCode[];
|
|
14
|
+
npmDependencies: {
|
|
15
|
+
[packageName: string]: string;
|
|
16
|
+
};
|
|
17
|
+
plugins?: IPlugin[];
|
|
18
|
+
themeVars?: {
|
|
19
|
+
[key: string]: string;
|
|
20
|
+
};
|
|
21
|
+
presetColors?: string[];
|
|
22
|
+
appConfig?: {
|
|
23
|
+
[key: string]: any;
|
|
24
|
+
};
|
|
25
|
+
extra: {
|
|
26
|
+
domain: string;
|
|
27
|
+
clientId?: string;
|
|
28
|
+
loginConfigVersion?: string;
|
|
29
|
+
};
|
|
30
|
+
}
|
|
31
|
+
export interface IPageInstance extends ICommonInstanceProps, IAppAndPageVar {
|
|
32
|
+
id: string;
|
|
33
|
+
isHome?: boolean;
|
|
34
|
+
componentSchemaJson?: IComponentSchemaJson;
|
|
35
|
+
pluginInstances: IPluginInstance[];
|
|
36
|
+
children?: IPageInstance[];
|
|
37
|
+
codeModules: IWeAppCode[];
|
|
38
|
+
}
|
|
39
|
+
export interface IPageData {
|
|
40
|
+
title: string;
|
|
41
|
+
desc?: string;
|
|
42
|
+
}
|
|
43
|
+
export interface IDataBind {
|
|
44
|
+
propertyPath: string;
|
|
45
|
+
bindDataPath: string;
|
|
46
|
+
type?: PropBindType;
|
|
47
|
+
}
|
|
48
|
+
export interface IDataType {
|
|
49
|
+
propertyPath: string;
|
|
50
|
+
type?: 'static' | 'slot' | 'bind';
|
|
51
|
+
}
|
|
52
|
+
export interface IDataAndBindInstanceProps {
|
|
53
|
+
data: {
|
|
54
|
+
[key: string]: any;
|
|
55
|
+
};
|
|
56
|
+
dataBinds?: IDataBind[];
|
|
57
|
+
dataTypes?: IDataType[];
|
|
58
|
+
}
|
|
59
|
+
export interface IItemInstance extends IDataAndBindInstanceProps {
|
|
60
|
+
key: Readonly<string>;
|
|
61
|
+
sourceKey: string;
|
|
62
|
+
instanceFunction?: string;
|
|
63
|
+
}
|
|
64
|
+
export interface IPluginInstance extends IItemInstance {
|
|
65
|
+
instanceFunction?: string;
|
|
66
|
+
}
|
|
67
|
+
export interface IListenerInstance extends IItemInstance, IEventModifiers {
|
|
68
|
+
trigger: string;
|
|
69
|
+
target?: string | null;
|
|
70
|
+
type: ActionType;
|
|
71
|
+
handler?: {
|
|
72
|
+
moduleName: string;
|
|
73
|
+
name: string;
|
|
74
|
+
};
|
|
75
|
+
jsCode?: string;
|
|
76
|
+
}
|
|
77
|
+
export interface IComponentSchemaJson {
|
|
78
|
+
key?: string;
|
|
79
|
+
type?: string;
|
|
80
|
+
['x-component']?: string;
|
|
81
|
+
['x-props']?: IComponentInstanceProps;
|
|
82
|
+
['x-index']?: number;
|
|
83
|
+
properties: {
|
|
84
|
+
[key: string]: IComponentSchemaJson;
|
|
85
|
+
};
|
|
86
|
+
path?: string;
|
|
87
|
+
genericComp?: IWeAppComponentInstance['genericComp'];
|
|
88
|
+
}
|
|
89
|
+
export interface ICommonInstanceProps extends IDataAndBindInstanceProps {
|
|
90
|
+
style: object;
|
|
91
|
+
commonStyle?: ICommonStyle;
|
|
92
|
+
styleBindPath?: string;
|
|
93
|
+
styleBind?: IDataBind;
|
|
94
|
+
classNameListBind?: IDataBind;
|
|
95
|
+
classNameList?: string[];
|
|
96
|
+
listenerInstances: IListenerInstance[];
|
|
97
|
+
customDataForm?: Record<string, any>;
|
|
98
|
+
staticResourceAttribute?: string[];
|
|
99
|
+
}
|
|
100
|
+
export interface IComponentInstanceProps extends ICommonInstanceProps {
|
|
101
|
+
sourceKey: string;
|
|
102
|
+
isContainer: boolean;
|
|
103
|
+
}
|
|
104
|
+
export interface IPageWidgets {
|
|
105
|
+
style: Record<string, any>;
|
|
106
|
+
classList: string[];
|
|
107
|
+
value?: any;
|
|
108
|
+
[key: string]: any;
|
|
109
|
+
}
|
|
110
|
+
export interface II18nConfig {
|
|
111
|
+
enabled: boolean;
|
|
112
|
+
i18nData: any;
|
|
113
|
+
baseUrl?: string;
|
|
114
|
+
docUrl?: string;
|
|
115
|
+
}
|
|
116
|
+
export interface IExtraData {
|
|
117
|
+
isComposite: boolean;
|
|
118
|
+
compProps: any;
|
|
119
|
+
}
|
|
120
|
+
//# sourceMappingURL=web.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"web.d.ts","sourceRoot":"","sources":["../../../src/weapps-core/types/web.ts"],"names":[],"mappings":"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"}
|