@cloudbase/cals 0.5.19 → 1.0.1-2.beta.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/lib/parser/cals/index.d.ts +63 -3
- package/lib/parser/cals/index.d.ts.map +1 -1
- package/lib/parser/cals/index.js +240 -91
- package/lib/parser/cals/utils/block/index.d.ts.map +1 -1
- package/lib/parser/cals/utils/block/index.js +7 -3
- package/lib/parser/cals/utils/code/index.d.ts.map +1 -1
- package/lib/parser/cals/utils/code/index.js +18 -12
- package/lib/parser/cals/utils/runtime.d.ts.map +1 -1
- package/lib/parser/cals/utils/runtime.js +5 -2
- package/lib/parser/cals/utils/style.d.ts.map +1 -1
- package/lib/parser/cals/utils/style.js +7 -3
- package/lib/parser/cals/utils/template.js +2 -2
- package/lib/parser/cals/utils/version/common.d.ts.map +1 -1
- package/lib/parser/cals/utils/version/common.js +16 -33
- package/lib/parser/cals/utils/version/parses.d.ts.map +1 -1
- package/lib/parser/cals/utils/version/parses.js +18 -36
- package/lib/parser/cals/utils/version/utils.js +5 -2
- package/lib/parser/plugins/postcss-rpx2clac.js +2 -2
- package/lib/types/basic/common.d.ts +1 -1
- package/lib/types/basic/common.d.ts.map +1 -1
- package/lib/types/basic/component.d.ts +5 -0
- package/lib/types/basic/component.d.ts.map +1 -1
- package/lib/types/index.d.ts +2 -1
- package/lib/types/index.d.ts.map +1 -1
- package/lib/types/index.js +14 -1
- package/lib/types/lcds.d.ts +400 -114
- package/lib/types/lcds.d.ts.map +1 -1
- package/lib/types/platform/app.d.ts +4 -0
- package/lib/types/platform/app.d.ts.map +1 -1
- package/lib/types/platform/common.d.ts +11 -1
- package/lib/types/platform/common.d.ts.map +1 -1
- package/lib/types/platform/component.d.ts +6 -0
- package/lib/types/platform/component.d.ts.map +1 -1
- package/lib/types/platform/eventFlow.d.ts +20 -0
- package/lib/types/platform/eventFlow.d.ts.map +1 -0
- package/lib/types/platform/eventFlow.js +2 -0
- package/lib/types/platform/query.d.ts +67 -0
- package/lib/types/platform/query.d.ts.map +1 -0
- package/lib/types/platform/query.js +2 -0
- package/lib/utils/build.js +3 -3
- package/lib/utils/dts/auto-generated.d.ts +1 -1
- package/lib/utils/dts/auto-generated.d.ts.map +1 -1
- package/lib/utils/dts/auto-generated.js +1308 -37
- package/lib/utils/dts/build.js +22 -6
- package/lib/utils/dts/index.d.ts +46 -5
- package/lib/utils/dts/index.d.ts.map +1 -1
- package/lib/utils/dts/index.js +478 -68
- package/lib/utils/version/featureChecker.js +2 -2
- package/lib/utils/version/migrations/version4.js +2 -2
- package/package.json +2 -1
package/lib/utils/dts/build.js
CHANGED
|
@@ -26,15 +26,13 @@ function buildFormulaDTS() {
|
|
|
26
26
|
// 确保在 packages/cals 目录执行该脚本
|
|
27
27
|
const baseDirPath = path_1.default.resolve('..', 'weda-client', 'src', 'common');
|
|
28
28
|
const formulaDirs = ['calculation', 'logic', 'text', 'time'];
|
|
29
|
-
const dtsList = yield Promise.all(formulaDirs.map(fDir => {
|
|
29
|
+
const dtsList = yield Promise.all(formulaDirs.map((fDir) => {
|
|
30
30
|
return genDTS(fDir);
|
|
31
31
|
}));
|
|
32
32
|
return dtsList.join('\n');
|
|
33
33
|
function genDTS(fDir) {
|
|
34
34
|
return __awaiter(this, void 0, void 0, function* () {
|
|
35
|
-
const randomId = Math.random()
|
|
36
|
-
.toString(36)
|
|
37
|
-
.substring(2, 6);
|
|
35
|
+
const randomId = Math.random().toString(36).substring(2, 6);
|
|
38
36
|
const tempDtsPath = path_1.default.resolve(os_1.default.tmpdir(), `weda-temp-${randomId}.d.ts`);
|
|
39
37
|
yield new Promise((resolve) => {
|
|
40
38
|
child_process_1.default.exec(`tsc ${path_1.default.resolve(baseDirPath, fDir, 'index.ts')} --declaration --emitDeclarationOnly --allowSyntheticDefaultImports true --out ${tempDtsPath}`, () => {
|
|
@@ -44,7 +42,10 @@ function buildFormulaDTS() {
|
|
|
44
42
|
const dts = yield fs_extra_1.default.readFile(tempDtsPath, 'utf8');
|
|
45
43
|
yield fs_extra_1.default.remove(tempDtsPath);
|
|
46
44
|
// 去掉最外层的模块声明
|
|
47
|
-
return dts
|
|
45
|
+
return dts
|
|
46
|
+
.replace(/^declare module.*$/m, '')
|
|
47
|
+
.replace(/^\}$/m, '')
|
|
48
|
+
.replace(/^\s+/gm, '');
|
|
48
49
|
});
|
|
49
50
|
}
|
|
50
51
|
});
|
|
@@ -61,6 +62,9 @@ function genWeDaAPPDTS() {
|
|
|
61
62
|
const wedaAuthDTS = yield fs_extra_1.default.readFile(path_1.default.resolve(__dirname, 'framework', 'weda-auth.d.ts'), 'utf8'); // auth对象
|
|
62
63
|
const wedaCloudDTS = yield fs_extra_1.default.readFile(path_1.default.resolve(__dirname, 'framework', 'weda-cloud.d.ts'), 'utf-8'); // cloud对象
|
|
63
64
|
const wedaUtilsDTS = yield fs_extra_1.default.readFile(path_1.default.resolve(__dirname, 'framework', 'weda-utils.d.ts'), 'utf-8'); // page对象
|
|
65
|
+
const wedaDeviceDTS = yield fs_extra_1.default.readFile(path_1.default.resolve(__dirname, 'framework', 'weda-device.d.ts'), 'utf8'); // device对象
|
|
66
|
+
const wedaEnvDTS = yield fs_extra_1.default.readFile(path_1.default.resolve(__dirname, 'framework', 'weda-env.d.ts'), 'utf8'); // env对象
|
|
67
|
+
const wedaWedaContextDTS = yield fs_extra_1.default.readFile(path_1.default.resolve(__dirname, 'framework', 'weda-wedaContext.d.ts'), 'utf8'); // wedaContext对象
|
|
64
68
|
const formulaDTS = yield buildFormulaDTS(); // 函数公式
|
|
65
69
|
/**
|
|
66
70
|
* 聚合 DTS
|
|
@@ -72,6 +76,9 @@ function genWeDaAPPDTS() {
|
|
|
72
76
|
wedaAuthDTS,
|
|
73
77
|
wedaCloudDTS,
|
|
74
78
|
wedaUtilsDTS,
|
|
79
|
+
wedaDeviceDTS,
|
|
80
|
+
wedaEnvDTS,
|
|
81
|
+
wedaWedaContextDTS,
|
|
75
82
|
formulaDTS,
|
|
76
83
|
});
|
|
77
84
|
/**
|
|
@@ -84,7 +91,7 @@ function genWeDaAPPDTS() {
|
|
|
84
91
|
/**
|
|
85
92
|
* 聚合所有的 DTS(不包括动态生成的)
|
|
86
93
|
*/
|
|
87
|
-
function groupDTSs({ wedaFrameworkDTS = '', wedaAppDTS = '', wedaPageDTS = '', wedaAuthDTS = '', wedaCloudDTS = '', wedaUtilsDTS = '', formulaDTS = '', }) {
|
|
94
|
+
function groupDTSs({ wedaFrameworkDTS = '', wedaAppDTS = '', wedaPageDTS = '', wedaAuthDTS = '', wedaCloudDTS = '', wedaUtilsDTS = '', wedaDeviceDTS = '', wedaEnvDTS = '', wedaWedaContextDTS = '', formulaDTS = '', }) {
|
|
88
95
|
let resultDts = wedaFrameworkDTS;
|
|
89
96
|
// $app
|
|
90
97
|
resultDts = resultDts.replaceAll("// $app - Don't touch me", wedaAppDTS);
|
|
@@ -94,6 +101,12 @@ function groupDTSs({ wedaFrameworkDTS = '', wedaAppDTS = '', wedaPageDTS = '', w
|
|
|
94
101
|
resultDts = resultDts.replaceAll("// $w.auth - Don't touch me", wedaAuthDTS.replace(/declare/g, ''));
|
|
95
102
|
// $w.cloud
|
|
96
103
|
resultDts = resultDts.replaceAll("// $w.cloud - Don't touch me", wedaCloudDTS.replace(/declare/g, ''));
|
|
104
|
+
// $w.device
|
|
105
|
+
resultDts = resultDts.replaceAll("// $w.device - Don't touch me", wedaDeviceDTS.replace(/declare/g, ''));
|
|
106
|
+
// $w.env
|
|
107
|
+
resultDts = resultDts.replaceAll("// $w.env - Don't touch me", wedaEnvDTS.replace(/declare/g, ''));
|
|
108
|
+
// $w.wedaContext
|
|
109
|
+
resultDts = resultDts.replaceAll("// $w.wedaContext - Don't touch me", wedaWedaContextDTS.replace(/declare/g, ''));
|
|
97
110
|
// $w.utils
|
|
98
111
|
resultDts = resultDts.replaceAll("// $w.utils - Don't touch me", wedaUtilsDTS.replace(/declare/g, ''));
|
|
99
112
|
// 函数公式:$w.xxx
|
|
@@ -113,6 +126,9 @@ function main() {
|
|
|
113
126
|
(0, node_watch_1.default)(path_1.default.resolve(__dirname, 'framework', 'weda-page.d.ts'), genWeDaAPPDTS);
|
|
114
127
|
(0, node_watch_1.default)(path_1.default.resolve(__dirname, 'framework', 'weda-auth.d.ts'), genWeDaAPPDTS);
|
|
115
128
|
(0, node_watch_1.default)(path_1.default.resolve(__dirname, 'framework', 'weda-cloud.d.ts'), genWeDaAPPDTS);
|
|
129
|
+
(0, node_watch_1.default)(path_1.default.resolve(__dirname, 'framework', 'weda-device.d.ts'), genWeDaAPPDTS);
|
|
130
|
+
(0, node_watch_1.default)(path_1.default.resolve(__dirname, 'framework', 'weda-env.d.ts'), genWeDaAPPDTS);
|
|
131
|
+
(0, node_watch_1.default)(path_1.default.resolve(__dirname, 'framework', 'weda-wedaContext.d.ts'), genWeDaAPPDTS);
|
|
116
132
|
(0, node_watch_1.default)(path_1.default.resolve(__dirname, 'framework', 'weda-utils.d.ts'), genWeDaAPPDTS);
|
|
117
133
|
}
|
|
118
134
|
});
|
package/lib/utils/dts/index.d.ts
CHANGED
|
@@ -1,4 +1,22 @@
|
|
|
1
1
|
import { IJsonSchemaAny, IJsonSchemaObject } from '../../types';
|
|
2
|
+
export interface IPrivateForWeDa {
|
|
3
|
+
displayType: string;
|
|
4
|
+
displayName: string;
|
|
5
|
+
dataFieldInfo?: {
|
|
6
|
+
type?: string;
|
|
7
|
+
format?: string;
|
|
8
|
+
'x-system': boolean;
|
|
9
|
+
};
|
|
10
|
+
insertText: string;
|
|
11
|
+
group?: string;
|
|
12
|
+
subGroup?: string;
|
|
13
|
+
doc?: string;
|
|
14
|
+
description?: string;
|
|
15
|
+
definition?: string;
|
|
16
|
+
schema?: IJsonSchemaAny;
|
|
17
|
+
baseClass?: string;
|
|
18
|
+
datasource?: string;
|
|
19
|
+
}
|
|
2
20
|
export interface IDTSCodeItem {
|
|
3
21
|
name: string;
|
|
4
22
|
code: string;
|
|
@@ -19,10 +37,27 @@ export interface IInputDataWidgetItem {
|
|
|
19
37
|
idList: string[];
|
|
20
38
|
}
|
|
21
39
|
export interface IInputDataRepeaterItem {
|
|
40
|
+
widgetId: string;
|
|
22
41
|
currentItemAlias: string;
|
|
23
42
|
currentIndexAlias: string;
|
|
24
43
|
itemData: IJsonSchemaAny;
|
|
25
44
|
}
|
|
45
|
+
export interface IInputDataRedefineAnyType {
|
|
46
|
+
module: string;
|
|
47
|
+
component: string;
|
|
48
|
+
widgetId: string;
|
|
49
|
+
updateProps: {
|
|
50
|
+
widgetPropName: string;
|
|
51
|
+
widgetPropTitle: string;
|
|
52
|
+
widgetPropTypeSchema: IJsonSchemaAny;
|
|
53
|
+
datasource: {
|
|
54
|
+
id: string;
|
|
55
|
+
name: string;
|
|
56
|
+
title: string;
|
|
57
|
+
type: 'ds' | 'apis';
|
|
58
|
+
};
|
|
59
|
+
}[];
|
|
60
|
+
}
|
|
26
61
|
export interface IOptions {
|
|
27
62
|
isCompMode?: boolean;
|
|
28
63
|
needGlobalFormula?: boolean;
|
|
@@ -31,7 +66,9 @@ export interface IOptions {
|
|
|
31
66
|
}
|
|
32
67
|
export declare enum IInputDataType {
|
|
33
68
|
globalState = "globalState",
|
|
69
|
+
globalQuery = "globalQuery",
|
|
34
70
|
pageState = "pageState",
|
|
71
|
+
pageQuery = "pageQuery",
|
|
35
72
|
compState = "compState",
|
|
36
73
|
pageParams = "pageParams",
|
|
37
74
|
forState = "forState",
|
|
@@ -42,11 +79,14 @@ export declare enum IInputDataType {
|
|
|
42
79
|
compPropEvents = "compPropEvents",
|
|
43
80
|
usedComponents = "usedComponents",
|
|
44
81
|
usedWidgets = "usedWidgets",
|
|
45
|
-
repeaterScope = "repeaterScope"
|
|
82
|
+
repeaterScope = "repeaterScope",
|
|
83
|
+
redefineAnyType = "redefineAnyType"
|
|
46
84
|
}
|
|
47
85
|
export interface IInputData {
|
|
48
86
|
[IInputDataType.globalState]?: IJsonSchemaObject;
|
|
87
|
+
[IInputDataType.globalQuery]?: IJsonSchemaObject;
|
|
49
88
|
[IInputDataType.pageState]?: IJsonSchemaObject;
|
|
89
|
+
[IInputDataType.pageQuery]?: IJsonSchemaObject;
|
|
50
90
|
[IInputDataType.compState]?: IJsonSchemaObject;
|
|
51
91
|
[IInputDataType.pageParams]?: IJsonSchemaObject;
|
|
52
92
|
[IInputDataType.forState]?: IJsonSchemaObject;
|
|
@@ -58,6 +98,7 @@ export interface IInputData {
|
|
|
58
98
|
[IInputDataType.usedComponents]?: IInputDataUsedComponents[];
|
|
59
99
|
[IInputDataType.usedWidgets]?: IInputDataWidgetItem[];
|
|
60
100
|
[IInputDataType.repeaterScope]?: IInputDataRepeaterItem[];
|
|
101
|
+
[IInputDataType.redefineAnyType]?: IInputDataRedefineAnyType[];
|
|
61
102
|
}
|
|
62
103
|
/**
|
|
63
104
|
* 通过该类可以共享同个dts。
|
|
@@ -68,14 +109,14 @@ export declare class WeDaDTS {
|
|
|
68
109
|
/**
|
|
69
110
|
* 全部更新
|
|
70
111
|
*/
|
|
71
|
-
static updateDTS(inputData?: IInputData, options?: Pick<IOptions,
|
|
112
|
+
static updateDTS(inputData?: IInputData, options?: Pick<IOptions, 'isCompMode'>): Promise<void>;
|
|
72
113
|
/**
|
|
73
114
|
* 部分更新 - 只更新一种类型
|
|
74
115
|
*/
|
|
75
|
-
static updateDTSPartial(inputData: IJsonSchemaObject | IDTSCodeItem[] | string[] | IInputDataUsedComponents[] | IInputDataWidgetItem[] | IInputDataRepeaterItem[], itemType: IInputDataType, options?: {
|
|
116
|
+
static updateDTSPartial(inputData: IJsonSchemaObject | IDTSCodeItem[] | string[] | IInputDataUsedComponents[] | IInputDataWidgetItem[] | IInputDataRepeaterItem[] | IInputDataRedefineAnyType[], itemType: IInputDataType, options?: {
|
|
76
117
|
setEmptyIfError: boolean;
|
|
77
118
|
}): Promise<void>;
|
|
78
|
-
static getDTS(options?: Omit<IOptions,
|
|
119
|
+
static getDTS(options?: Omit<IOptions, 'isCompMode'>): string;
|
|
79
120
|
}
|
|
80
121
|
/**
|
|
81
122
|
* 生成 WeDa 应用的低码代码提示的 dts 类型声明内容
|
|
@@ -86,7 +127,7 @@ export declare const workerCode = "\nimportScripts('https://qbase.cdn-go.cn/lcap
|
|
|
86
127
|
* 通过 js/ts 代码生成 dts
|
|
87
128
|
*/
|
|
88
129
|
export declare function transpileToDTS(code: string): Promise<string>;
|
|
89
|
-
export declare const jsonToDTSWorkerCode = "\nimportScripts('https://qbase.cdn-go.cn/lcap/lcap-resource-cdngo/-/release/_url/devtools/json-schema-to-typescript-for-browser.min.js');\n\nfunction transpile(jsonschema) {\n return jstt.compile(jsonschema, 'IWeDa', { additionalProperties: false, bannerComment: '', format: false })\n}\n\naddEventListener('message', (message) => {\n const {action, data: {id, jsonschema}} = message.data\n switch(action) {\n case 'dts':\n transpile(jsonschema).then(dts => {\n postMessage({action: 'dts_back', data: {id, dts}})\n }).catch(err => postMessage({action: 'dts_back', data: {id, dts: 'Parse error:' + err.message}}))\n break\n default:\n break\n }\n})\n";
|
|
130
|
+
export declare const jsonToDTSWorkerCode = "\nimportScripts('https://qbase.cdn-go.cn/lcap/lcap-resource-cdngo/-/release/_url/devtools/json-schema-to-typescript-for-browser.min-11.0.4.js');\n\nfunction transpile(jsonschema) {\n return jstt.compile(jsonschema, 'IWeDa', { additionalProperties: false, bannerComment: '', format: false, unknownAny: false })\n}\n\naddEventListener('message', (message) => {\n const {action, data: {id, jsonschema}} = message.data\n switch(action) {\n case 'dts':\n transpile(jsonschema).then(dts => {\n postMessage({action: 'dts_back', data: {id, dts}})\n }).catch(err => postMessage({action: 'dts_back', data: {id, dts: 'Parse error:' + err.message}}))\n break\n default:\n break\n }\n})\n";
|
|
90
131
|
/**
|
|
91
132
|
* Webworker 版本的 JSON to DTS
|
|
92
133
|
*/
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../../src/utils/dts/index.ts"],"names":[],"mappings":"
|
|
1
|
+
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../../src/utils/dts/index.ts"],"names":[],"mappings":"AAIA,OAAO,EAAE,cAAc,EAAE,iBAAiB,EAAE,MAAM,aAAa,CAAC;AAGhE,MAAM,WAAW,eAAe;IAC9B,WAAW,EAAE,MAAM,CAAC;IACpB,WAAW,EAAE,MAAM,CAAC;IACpB,aAAa,CAAC,EAAE;QAEd,IAAI,CAAC,EAAE,MAAM,CAAC;QACd,MAAM,CAAC,EAAE,MAAM,CAAC;QAChB,UAAU,EAAE,OAAO,CAAC;KACrB,CAAC;IACF,UAAU,EAAE,MAAM,CAAC;IACnB,KAAK,CAAC,EAAE,MAAM,CAAC;IACf,QAAQ,CAAC,EAAE,MAAM,CAAC;IAClB,GAAG,CAAC,EAAE,MAAM,CAAC;IACb,WAAW,CAAC,EAAE,MAAM,CAAC;IACrB,UAAU,CAAC,EAAE,MAAM,CAAC;IACpB,MAAM,CAAC,EAAE,cAAc,CAAC;IACxB,SAAS,CAAC,EAAE,MAAM,CAAC;IACnB,UAAU,CAAC,EAAE,MAAM,CAAC;CACrB;AAED,MAAM,WAAW,YAAY;IAC3B,IAAI,EAAE,MAAM,CAAC;IACb,IAAI,EAAE,MAAM,CAAC;CACd;AAED,MAAM,WAAW,wBAAwB;IACvC,MAAM,EAAE,MAAM,CAAC;IACf,SAAS,EAAE,MAAM,CAAC;IAClB,gBAAgB,CAAC,EAAE,iBAAiB,CAAC;IACrC,aAAa,CAAC,EAAE;QAAE,IAAI,EAAE,MAAM,CAAC;QAAC,KAAK,CAAC,EAAE,iBAAiB,CAAC;QAAC,MAAM,CAAC,EAAE,cAAc,CAAA;KAAE,EAAE,CAAC;CACxF;AACD,MAAM,WAAW,oBAAoB;IACnC,MAAM,EAAE,MAAM,CAAC;IACf,SAAS,EAAE,MAAM,CAAC;IAClB,MAAM,EAAE,MAAM,EAAE,CAAC;CAClB;AACD,MAAM,WAAW,sBAAsB;IACrC,QAAQ,EAAE,MAAM,CAAC;IACjB,gBAAgB,EAAE,MAAM,CAAC;IACzB,iBAAiB,EAAE,MAAM,CAAC;IAC1B,QAAQ,EAAE,cAAc,CAAC;CAC1B;AAED,MAAM,WAAW,yBAAyB;IACxC,MAAM,EAAE,MAAM,CAAC;IACf,SAAS,EAAE,MAAM,CAAC;IAClB,QAAQ,EAAE,MAAM,CAAC;IACjB,WAAW,EAAE;QACX,cAAc,EAAE,MAAM,CAAC;QACvB,eAAe,EAAE,MAAM,CAAC;QACxB,oBAAoB,EAAE,cAAc,CAAC;QACrC,UAAU,EAAE;YACV,EAAE,EAAE,MAAM,CAAC;YACX,IAAI,EAAE,MAAM,CAAC;YACb,KAAK,EAAE,MAAM,CAAC;YACd,IAAI,EAAE,IAAI,GAAG,MAAM,CAAC;SACrB,CAAC;KACH,EAAE,CAAC;CACL;AAED,MAAM,WAAW,QAAQ;IAEvB,UAAU,CAAC,EAAE,OAAO,CAAC;IAErB,iBAAiB,CAAC,EAAE,OAAO,CAAC;IAE5B,aAAa,CAAC,EAAE,OAAO,CAAC;IAExB,iBAAiB,CAAC,EAAE,OAAO,CAAC;CAC7B;AAED,oBAAY,cAAc;IACxB,WAAW,gBAAgB;IAC3B,WAAW,gBAAgB;IAC3B,SAAS,cAAc;IACvB,SAAS,cAAc;IACvB,SAAS,cAAc;IACvB,UAAU,eAAe;IACzB,QAAQ,aAAa;IACrB,iBAAiB,sBAAsB;IACvC,gBAAgB,qBAAqB;IACrC,gBAAgB,qBAAqB;IACrC,YAAY,iBAAiB;IAC7B,cAAc,mBAAmB;IACjC,cAAc,mBAAmB;IACjC,WAAW,gBAAgB;IAC3B,aAAa,kBAAkB;IAC/B,eAAe,oBAAoB;CACpC;AAED,MAAM,WAAW,UAAU;IACzB,CAAC,cAAc,CAAC,WAAW,CAAC,CAAC,EAAE,iBAAiB,CAAC;IACjD,CAAC,cAAc,CAAC,WAAW,CAAC,CAAC,EAAE,iBAAiB,CAAC;IACjD,CAAC,cAAc,CAAC,SAAS,CAAC,CAAC,EAAE,iBAAiB,CAAC;IAC/C,CAAC,cAAc,CAAC,SAAS,CAAC,CAAC,EAAE,iBAAiB,CAAC;IAC/C,CAAC,cAAc,CAAC,SAAS,CAAC,CAAC,EAAE,iBAAiB,CAAC;IAC/C,CAAC,cAAc,CAAC,UAAU,CAAC,CAAC,EAAE,iBAAiB,CAAC;IAChD,CAAC,cAAc,CAAC,QAAQ,CAAC,CAAC,EAAE,iBAAiB,CAAC;IAC9C,CAAC,cAAc,CAAC,iBAAiB,CAAC,CAAC,EAAE,YAAY,EAAE,CAAC;IACpD,CAAC,cAAc,CAAC,gBAAgB,CAAC,CAAC,EAAE,YAAY,EAAE,CAAC;IACnD,CAAC,cAAc,CAAC,gBAAgB,CAAC,CAAC,EAAE,YAAY,EAAE,CAAC;IACnD,CAAC,cAAc,CAAC,YAAY,CAAC,CAAC,EAAE,iBAAiB,CAAC;IAClD,CAAC,cAAc,CAAC,cAAc,CAAC,CAAC,EAAE,MAAM,EAAE,CAAC;IAC3C,CAAC,cAAc,CAAC,cAAc,CAAC,CAAC,EAAE,wBAAwB,EAAE,CAAC;IAC7D,CAAC,cAAc,CAAC,WAAW,CAAC,CAAC,EAAE,oBAAoB,EAAE,CAAC;IACtD,CAAC,cAAc,CAAC,aAAa,CAAC,CAAC,EAAE,sBAAsB,EAAE,CAAC;IAC1D,CAAC,cAAc,CAAC,eAAe,CAAC,CAAC,EAAE,yBAAyB,EAAE,CAAC;CAChE;AAmDD;;;GAGG;AACH,qBAAa,OAAO;IAClB,OAAO,CAAC,MAAM,CAAC,IAAI,CAAc;IAEjC;;OAEG;WACU,SAAS,CAAC,SAAS,GAAE,UAAe,EAAE,OAAO,GAAE,IAAI,CAAC,QAAQ,EAAE,YAAY,CAAyB;IAShH;;OAEG;WACU,gBAAgB,CAC3B,SAAS,EACL,iBAAiB,GACjB,YAAY,EAAE,GACd,MAAM,EAAE,GACR,wBAAwB,EAAE,GAC1B,oBAAoB,EAAE,GACtB,sBAAsB,EAAE,GACxB,yBAAyB,EAAE,EAC/B,QAAQ,EAAE,cAAc,EACxB,OAAO,GAAE;QAAE,eAAe,EAAE,OAAO,CAAA;KAA+B;IA2BpE,MAAM,CAAC,MAAM,CACX,OAAO,GAAE,IAAI,CAAC,QAAQ,EAAE,YAAY,CAInC;CAcJ;AAED;;GAEG;AACH,wBAAsB,kBAAkB,CACtC,SAAS,GAAE,UAAe,EAC1B,OAAO,GAAE,QAA0G,GAClH,OAAO,CAAC,MAAM,CAAC,CA4CjB;AAylBD,eAAO,MAAM,UAAU,6yDA8DtB,CAAC;AAyDF;;GAEG;AACH,wBAAgB,cAAc,CAAC,IAAI,EAAE,MAAM,GAAG,OAAO,CAAC,MAAM,CAAC,CAO5D;AAED,eAAO,MAAM,mBAAmB,yvBAmB/B,CAAC;AAEF;;GAEG;AACH,wBAAgB,gBAAgB,CAAC,UAAU,KAAA,GAAG,OAAO,CAAC,MAAM,CAAC,CAQ5D"}
|