@cloudbase/cals 0.3.8 → 0.3.9
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.js +60 -50
- package/lib/parser/cals/utils/block/index.js +2 -2
- package/lib/parser/cals/utils/runtime.js +3 -3
- package/lib/parser/cals/utils/style.js +3 -3
- package/lib/parser/cals/utils/version/common.js +14 -14
- package/lib/parser/cals/utils/version/index.js +6 -6
- package/lib/parser/cals/utils/version/parses.js +24 -24
- package/lib/parser/cals/utils/version/utils.js +1 -1
- package/lib/parser/expression/index.d.ts.map +1 -1
- package/lib/parser/expression/index.js +1 -1
- package/lib/tsconfig.tsbuildinfo +1 -3788
- package/lib/types/platform/common.d.ts +11 -0
- package/lib/types/platform/common.d.ts.map +1 -1
- package/lib/types/platform/common.js +13 -1
- package/lib/utils/build.js +7 -7
- package/package.json +4 -4
package/lib/parser/cals/index.js
CHANGED
|
@@ -156,9 +156,9 @@ function serializeDynamicMap({ ctx, map = {}, scope = 'page', streamlineDefaultV
|
|
|
156
156
|
let matched = processedKey.match(/^:(.*)$/);
|
|
157
157
|
if (matched) {
|
|
158
158
|
const originValue = matched[1];
|
|
159
|
-
lodash_1.unset(data, originValue);
|
|
159
|
+
(0, lodash_1.unset)(data, originValue);
|
|
160
160
|
}
|
|
161
|
-
if (lodash_1.get(data, processedKey) == undefined) {
|
|
161
|
+
if ((0, lodash_1.get)(data, processedKey) == undefined) {
|
|
162
162
|
data[processedKey] = processedValue;
|
|
163
163
|
}
|
|
164
164
|
});
|
|
@@ -297,7 +297,8 @@ function deserializeDirecties(ctx, directives) {
|
|
|
297
297
|
let waIf = (directives === null || directives === void 0 ? void 0 : directives[':if']) != undefined
|
|
298
298
|
? deserializeValue(ctx, ':if', directives[':if']).value
|
|
299
299
|
: { value: true };
|
|
300
|
-
let waFor = (directives === null || directives === void 0 ? void 0 : directives[':for'])
|
|
300
|
+
let waFor = (directives === null || directives === void 0 ? void 0 : directives[':for'])
|
|
301
|
+
? deserializeValue(ctx, ':for', directives[':for']).value
|
|
301
302
|
: undefined;
|
|
302
303
|
if (waFor) {
|
|
303
304
|
let { type, value } = waFor;
|
|
@@ -451,7 +452,7 @@ function serializeComponent(ctx, component, scope = 'page') {
|
|
|
451
452
|
type: undefined,
|
|
452
453
|
module: serializeModuleName(componentCtx, moduleName, componentName),
|
|
453
454
|
component: componentName,
|
|
454
|
-
attributes: runtime_1.getValidValue(component.xProps
|
|
455
|
+
attributes: (0, runtime_1.getValidValue)(component.xProps
|
|
455
456
|
? Object.assign(Object.assign({}, serializeAttributes(componentCtx, scope, (component.xProps.data || {}))), { style: (_d = component.xProps) === null || _d === void 0 ? void 0 : _d.style, class: (_f = (_e = component.xProps) === null || _e === void 0 ? void 0 : _e.classList) === null || _f === void 0 ? void 0 : _f.join(' ') }) : undefined),
|
|
456
457
|
items: component.properties
|
|
457
458
|
? Object.keys(component.properties).map((key) => {
|
|
@@ -459,24 +460,26 @@ function serializeComponent(ctx, component, scope = 'page') {
|
|
|
459
460
|
return serializeComponent(componentCtx, Object.assign({ id: key }, (_a = component.properties) === null || _a === void 0 ? void 0 : _a[key]), scope);
|
|
460
461
|
})
|
|
461
462
|
: undefined,
|
|
462
|
-
listeners: runtime_1.getValidValue((_h = (_g = component.xProps) === null || _g === void 0 ? void 0 : _g.listeners) === null || _h === void 0 ? void 0 : _h.map((listener) => {
|
|
463
|
+
listeners: (0, runtime_1.getValidValue)((_h = (_g = component.xProps) === null || _g === void 0 ? void 0 : _g.listeners) === null || _h === void 0 ? void 0 : _h.map((listener) => {
|
|
463
464
|
return serializeListener(componentCtx, listener);
|
|
464
465
|
})),
|
|
465
466
|
directives: serializeDirecties(componentCtx, (((_j = component.xProps) === null || _j === void 0 ? void 0 : _j.directives) || {}), scope) || {
|
|
466
467
|
':if': true,
|
|
467
468
|
},
|
|
468
|
-
':class': ((_k = component === null || component === void 0 ? void 0 : component.xProps) === null || _k === void 0 ? void 0 : _k.classListBind)
|
|
469
|
-
|
|
470
|
-
|
|
471
|
-
|
|
472
|
-
|
|
473
|
-
|
|
469
|
+
':class': ((_k = component === null || component === void 0 ? void 0 : component.xProps) === null || _k === void 0 ? void 0 : _k.classListBind)
|
|
470
|
+
? serializeValue({
|
|
471
|
+
ctx: componentCtx,
|
|
472
|
+
key: 'classListBind',
|
|
473
|
+
dynamicValue: (_l = component === null || component === void 0 ? void 0 : component.xProps) === null || _l === void 0 ? void 0 : _l.classListBind,
|
|
474
|
+
scope,
|
|
475
|
+
}).value
|
|
474
476
|
: undefined,
|
|
475
|
-
':style': ((_m = component === null || component === void 0 ? void 0 : component.xProps) === null || _m === void 0 ? void 0 : _m.styleBind)
|
|
476
|
-
|
|
477
|
-
|
|
478
|
-
|
|
479
|
-
|
|
477
|
+
':style': ((_m = component === null || component === void 0 ? void 0 : component.xProps) === null || _m === void 0 ? void 0 : _m.styleBind)
|
|
478
|
+
? serializeValue({
|
|
479
|
+
ctx: componentCtx,
|
|
480
|
+
key: 'styleBind',
|
|
481
|
+
dynamicValue: (_o = component === null || component === void 0 ? void 0 : component.xProps) === null || _o === void 0 ? void 0 : _o.styleBind,
|
|
482
|
+
}).value
|
|
480
483
|
: undefined,
|
|
481
484
|
extra: {
|
|
482
485
|
commonStyle: (_p = component.xProps) === null || _p === void 0 ? void 0 : _p.commonStyle,
|
|
@@ -539,7 +542,7 @@ function deserializeComponent(ctx, components) {
|
|
|
539
542
|
if (Array.isArray(item)) {
|
|
540
543
|
return !!item.length;
|
|
541
544
|
}
|
|
542
|
-
return item != undefined && !common_2.isEmptyObj(item);
|
|
545
|
+
return item != undefined && !(0, common_2.isEmptyObj)(item);
|
|
543
546
|
})
|
|
544
547
|
? xProps
|
|
545
548
|
: undefined,
|
|
@@ -547,7 +550,8 @@ function deserializeComponent(ctx, components) {
|
|
|
547
550
|
* TODO
|
|
548
551
|
*/
|
|
549
552
|
xIndex: ((_h = item.extra) === null || _h === void 0 ? void 0 : _h.xIndex) !== undefined
|
|
550
|
-
? (_j = item.extra) === null || _j === void 0 ? void 0 : _j.xIndex
|
|
553
|
+
? (_j = item.extra) === null || _j === void 0 ? void 0 : _j.xIndex
|
|
554
|
+
: undefined /*0*/,
|
|
551
555
|
properties: item.items
|
|
552
556
|
? deserializeComponent(ctx, item.items)
|
|
553
557
|
: undefined,
|
|
@@ -568,7 +572,7 @@ function serializePage(ctx, page) {
|
|
|
568
572
|
id: page.id,
|
|
569
573
|
type: types_1.EComponentType.PAGE,
|
|
570
574
|
component: 'Page',
|
|
571
|
-
attributes: runtime_1.getValidValue(serializeAttributes(pageCtx, 'page', page.data)),
|
|
575
|
+
attributes: (0, runtime_1.getValidValue)(serializeAttributes(pageCtx, 'page', page.data)),
|
|
572
576
|
items: Object.keys(page.componentInstances || {}).map((id) => {
|
|
573
577
|
return serializeComponent(pageCtx, Object.assign({ id }, page.componentInstances[id]));
|
|
574
578
|
}),
|
|
@@ -577,8 +581,8 @@ function serializePage(ctx, page) {
|
|
|
577
581
|
},
|
|
578
582
|
resources: (_a = page === null || page === void 0 ? void 0 : page.lowCodes) === null || _a === void 0 ? void 0 : _a.map((item) => serializeCodeSource(pageCtx, item)),
|
|
579
583
|
dataset: serializeDataset(ctx, page === null || page === void 0 ? void 0 : page.dataset),
|
|
580
|
-
dataVariables: runtime_1.getValidValue((_c = (_b = page === null || page === void 0 ? void 0 : page.vars) === null || _b === void 0 ? void 0 : _b.data) === null || _c === void 0 ? void 0 : _c.map((item) => serializeDataVariables(pageCtx, item))),
|
|
581
|
-
listeners: runtime_1.getValidValue((_d = page === null || page === void 0 ? void 0 : page.listeners) === null || _d === void 0 ? void 0 : _d.map((item) => {
|
|
584
|
+
dataVariables: (0, runtime_1.getValidValue)((_c = (_b = page === null || page === void 0 ? void 0 : page.vars) === null || _b === void 0 ? void 0 : _b.data) === null || _c === void 0 ? void 0 : _c.map((item) => serializeDataVariables(pageCtx, item))),
|
|
585
|
+
listeners: (0, runtime_1.getValidValue)((_d = page === null || page === void 0 ? void 0 : page.listeners) === null || _d === void 0 ? void 0 : _d.map((item) => {
|
|
582
586
|
return serializeListener(pageCtx, item);
|
|
583
587
|
})),
|
|
584
588
|
extra: {
|
|
@@ -628,6 +632,9 @@ function deserializePage(ctx, page) {
|
|
|
628
632
|
listeners: ((_g = page === null || page === void 0 ? void 0 : page.listeners) === null || _g === void 0 ? void 0 : _g.map((item) => {
|
|
629
633
|
return deserializeListener(pageCtx, item);
|
|
630
634
|
})) || [],
|
|
635
|
+
// TODO
|
|
636
|
+
// children: [],
|
|
637
|
+
// styleBindPath: item.styleBindPath,
|
|
631
638
|
};
|
|
632
639
|
}
|
|
633
640
|
exports.deserializePage = deserializePage;
|
|
@@ -658,7 +665,7 @@ function serializePlatformApp(data, optsions) {
|
|
|
658
665
|
resources: lowCodes === null || lowCodes === void 0 ? void 0 : lowCodes.map((item) => serializeCodeSource(ctx, item)),
|
|
659
666
|
dataSources: datasources,
|
|
660
667
|
dataset: serializeDataset(ctx, dataset),
|
|
661
|
-
dataVariables: runtime_1.getValidValue(vars === null || vars === void 0 ? void 0 : vars.data.map((item) => serializeDataVariables(ctx, item))),
|
|
668
|
+
dataVariables: (0, runtime_1.getValidValue)(vars === null || vars === void 0 ? void 0 : vars.data.map((item) => serializeDataVariables(ctx, item))),
|
|
662
669
|
extra: Object.assign(Object.assign(Object.assign({}, restExtra), restData), { miniprogramPlugins, historyType: data.historyType, npmDependencies: data.npmDependencies || {}, plugins: data.plugins, maxID: data.maxID, rootPath: data.rootPath, themeVars: data.themeVars, presetColors: data.presetColors, appConfig: data.appConfig }),
|
|
663
670
|
};
|
|
664
671
|
return processed;
|
|
@@ -710,6 +717,8 @@ function deserializePlatformApp(data, optsions) {
|
|
|
710
717
|
appConfig: appConfig,
|
|
711
718
|
miniprogramPlugins,
|
|
712
719
|
extra: Object.assign(Object.assign({}, restExtra), { name: data.name, author: data.author, description: data.description }),
|
|
720
|
+
// TODO
|
|
721
|
+
// emitEvents: [], { "name": "自定义校验规则", "eventName": "validator" }
|
|
713
722
|
};
|
|
714
723
|
return processed;
|
|
715
724
|
}
|
|
@@ -726,34 +735,34 @@ function serializeRuntimePage(ctx, page //IPageInstance
|
|
|
726
735
|
id: page.id,
|
|
727
736
|
type: types_1.EComponentType.PAGE,
|
|
728
737
|
component: 'Page',
|
|
729
|
-
attributes: serializeAttributes(pageCtx, 'page', runtime_1.readDynamicData(page)),
|
|
730
|
-
items: runtime_1.getValidValue(Object.keys(((_a = page.componentSchemaJson) === null || _a === void 0 ? void 0 : _a.properties) || {}).map((id) => {
|
|
738
|
+
attributes: serializeAttributes(pageCtx, 'page', (0, runtime_1.readDynamicData)(page)),
|
|
739
|
+
items: (0, runtime_1.getValidValue)(Object.keys(((_a = page.componentSchemaJson) === null || _a === void 0 ? void 0 : _a.properties) || {}).map((id) => {
|
|
731
740
|
var _a;
|
|
732
741
|
return serializeRuntimeComponent(pageCtx, Object.assign({ id }, (_a = page.componentSchemaJson) === null || _a === void 0 ? void 0 : _a.properties[id]));
|
|
733
742
|
})),
|
|
734
743
|
resources: (_b = page === null || page === void 0 ? void 0 : page.codeModules) === null || _b === void 0 ? void 0 : _b.map((item) => serializeCodeSource(pageCtx, item)),
|
|
735
744
|
dataset: page === null || page === void 0 ? void 0 : page.dataset,
|
|
736
|
-
dataVariables: runtime_1.getValidValue((_d = (_c = page === null || page === void 0 ? void 0 : page.vars) === null || _c === void 0 ? void 0 : _c.data) === null || _d === void 0 ? void 0 : _d.map((item) => serializeDataVariables(pageCtx, item))),
|
|
737
|
-
listeners: runtime_1.getValidValue(runtime_1.readListeners(page.listenerInstances || []).map((item) => {
|
|
745
|
+
dataVariables: (0, runtime_1.getValidValue)((_d = (_c = page === null || page === void 0 ? void 0 : page.vars) === null || _c === void 0 ? void 0 : _c.data) === null || _d === void 0 ? void 0 : _d.map((item) => serializeDataVariables(pageCtx, item))),
|
|
746
|
+
listeners: (0, runtime_1.getValidValue)((0, runtime_1.readListeners)(page.listenerInstances || []).map((item) => {
|
|
738
747
|
return serializeListener(pageCtx, item);
|
|
739
748
|
})),
|
|
740
749
|
extra: {
|
|
741
|
-
pluginInstances: runtime_1.getValidValue(page === null || page === void 0 ? void 0 : page.pluginInstances),
|
|
742
|
-
commonStyle: runtime_1.getValidValue(style_1.removeInvalidStyleFormValue(page.style)),
|
|
743
|
-
styleBindPath: runtime_1.getValidValue(page.styleBindPath),
|
|
750
|
+
pluginInstances: (0, runtime_1.getValidValue)(page === null || page === void 0 ? void 0 : page.pluginInstances),
|
|
751
|
+
commonStyle: (0, runtime_1.getValidValue)((0, style_1.removeInvalidStyleFormValue)(page.style)),
|
|
752
|
+
styleBindPath: (0, runtime_1.getValidValue)(page.styleBindPath),
|
|
744
753
|
xIndex: page.xIndex,
|
|
745
|
-
children: runtime_1.getValidValue((_e = page.children) === null || _e === void 0 ? void 0 : _e.map((child) => serializeRuntimePage(ctx, child))),
|
|
754
|
+
children: (0, runtime_1.getValidValue)((_e = page.children) === null || _e === void 0 ? void 0 : _e.map((child) => serializeRuntimePage(ctx, child))),
|
|
746
755
|
},
|
|
747
756
|
};
|
|
748
|
-
if (common_2.isValidStyleBind(page.styleBind) && runtime_1.getValidValue(page.styleBind)) {
|
|
757
|
+
if ((0, common_2.isValidStyleBind)(page.styleBind) && (0, runtime_1.getValidValue)(page.styleBind)) {
|
|
749
758
|
page[':style'] = serializeValue({
|
|
750
759
|
ctx: pageCtx,
|
|
751
760
|
key: 'styleBind',
|
|
752
761
|
dynamicValue: page.styleBind,
|
|
753
762
|
}).value;
|
|
754
763
|
}
|
|
755
|
-
if (common_2.isValidClassNameListBind(page.classListBind) &&
|
|
756
|
-
runtime_1.getValidValue(page.classListBind)) {
|
|
764
|
+
if ((0, common_2.isValidClassNameListBind)(page.classListBind) &&
|
|
765
|
+
(0, runtime_1.getValidValue)(page.classListBind)) {
|
|
757
766
|
page[':class'] = serializeValue({
|
|
758
767
|
ctx: pageCtx,
|
|
759
768
|
key: 'classListBind',
|
|
@@ -798,37 +807,38 @@ function serializeRuntimeComponent(ctx, component //IComponentSchemaJson
|
|
|
798
807
|
.filter((dataType) => dataType.type !== 'slot')
|
|
799
808
|
.map((dataType) => dataType.propertyPath);
|
|
800
809
|
let properties = component.properties || {};
|
|
801
|
-
processed = Object.assign(Object.assign({}, processed), { module: serializeModuleName(componentCtx, moduleName, name), component: name, attributes: Object.assign(Object.assign({}, serializeAttributes(componentCtx, 'page', (runtime_1.getValidValue(runtime_1.readDynamicData(props)) || {}))), { style: runtime_1.getValidValue(props.style), class: (_a = runtime_1.getValidValue(props.classNameList)) === null || _a === void 0 ? void 0 : _a.join(' ') }), items: runtime_1.getValidValue(Object.keys(properties)
|
|
810
|
+
processed = Object.assign(Object.assign({}, processed), { module: serializeModuleName(componentCtx, moduleName, name), component: name, attributes: Object.assign(Object.assign({}, serializeAttributes(componentCtx, 'page', ((0, runtime_1.getValidValue)((0, runtime_1.readDynamicData)(props)) || {}))), { style: (0, runtime_1.getValidValue)(props.style), class: (_a = (0, runtime_1.getValidValue)(props.classNameList)) === null || _a === void 0 ? void 0 : _a.join(' ') }), items: (0, runtime_1.getValidValue)(Object.keys(properties)
|
|
802
811
|
.filter((key) => !excludeKeys.includes(key))
|
|
803
|
-
.map((key) => serializeRuntimeComponent(ctx, Object.assign({ id: key }, properties[key])))), listeners: (_b = runtime_1.getValidValue(runtime_1.readListeners(props.listenerInstances))) === null || _b === void 0 ? void 0 : _b.map((listener /* IEventListener */) => {
|
|
812
|
+
.map((key) => serializeRuntimeComponent(ctx, Object.assign({ id: key }, properties[key])))), listeners: (_b = (0, runtime_1.getValidValue)((0, runtime_1.readListeners)(props.listenerInstances))) === null || _b === void 0 ? void 0 : _b.map((listener /* IEventListener */) => {
|
|
804
813
|
return serializeListener(componentCtx, listener);
|
|
805
|
-
}), directives: serializeDirecties(componentCtx, (runtime_1.getValidValue(runtime_1.readDirectives(props)) || {})) || undefined, ':class': common_2.isValidClassNameListBind(props.classNameListBind)
|
|
814
|
+
}), directives: serializeDirecties(componentCtx, ((0, runtime_1.getValidValue)((0, runtime_1.readDirectives)(props)) || {})) || undefined, ':class': (0, common_2.isValidClassNameListBind)(props.classNameListBind)
|
|
806
815
|
? serializeValue({
|
|
807
816
|
ctx: componentCtx,
|
|
808
817
|
key: 'classListBind',
|
|
809
|
-
dynamicValue: runtime_1.getValidValue({
|
|
818
|
+
dynamicValue: (0, runtime_1.getValidValue)({
|
|
810
819
|
type: props.classNameListBind.type,
|
|
811
820
|
value: props.classNameListBind.bindDataPath,
|
|
812
821
|
}),
|
|
813
822
|
}).value
|
|
814
|
-
: undefined, ':style': ((_c = props === null || props === void 0 ? void 0 : props.styleBind) === null || _c === void 0 ? void 0 : _c.bindDataPath)
|
|
815
|
-
|
|
816
|
-
|
|
817
|
-
|
|
818
|
-
|
|
819
|
-
|
|
820
|
-
|
|
821
|
-
|
|
823
|
+
: undefined, ':style': ((_c = props === null || props === void 0 ? void 0 : props.styleBind) === null || _c === void 0 ? void 0 : _c.bindDataPath)
|
|
824
|
+
? serializeValue({
|
|
825
|
+
ctx: componentCtx,
|
|
826
|
+
key: 'styleBind',
|
|
827
|
+
dynamicValue: {
|
|
828
|
+
type: props.styleBind.type,
|
|
829
|
+
value: props.styleBind.bindDataPath,
|
|
830
|
+
},
|
|
831
|
+
}).value
|
|
822
832
|
: undefined, extra: {
|
|
823
|
-
commonStyle: runtime_1.getValidValue(style_1.removeInvalidStyleFormValue(props.commonStyle)),
|
|
824
|
-
xIndex: runtime_1.getValidValue(component['x-index']),
|
|
825
|
-
styleBindPath: runtime_1.getValidValue(props.styleBindPath),
|
|
826
|
-
staticResourceAttribute: runtime_1.getValidValue(props.staticResourceAttribute)
|
|
833
|
+
commonStyle: (0, runtime_1.getValidValue)((0, style_1.removeInvalidStyleFormValue)(props.commonStyle)),
|
|
834
|
+
xIndex: (0, runtime_1.getValidValue)(component['x-index']),
|
|
835
|
+
styleBindPath: (0, runtime_1.getValidValue)(props.styleBindPath),
|
|
836
|
+
staticResourceAttribute: (0, runtime_1.getValidValue)(props.staticResourceAttribute)
|
|
827
837
|
} });
|
|
828
838
|
}
|
|
829
839
|
else {
|
|
830
840
|
let items = Object.keys(component.properties || {}).map((key) => serializeRuntimeComponent(ctx, Object.assign({ id: key }, component.properties[key])));
|
|
831
|
-
processed = Object.assign(Object.assign({}, processed), { items: runtime_1.getValidValue(items) });
|
|
841
|
+
processed = Object.assign(Object.assign({}, processed), { items: (0, runtime_1.getValidValue)(items) });
|
|
832
842
|
}
|
|
833
843
|
return processed;
|
|
834
844
|
}
|
|
@@ -23,8 +23,8 @@ function parseComponentCals(ctx, cals) {
|
|
|
23
23
|
id: cals.id || '',
|
|
24
24
|
};
|
|
25
25
|
const { component, module, attributes = {}, items = [], listeners = [], directives = {}, [':class']: dynamicClassList, [':style']: dynamicStyle, } = cals;
|
|
26
|
-
if (module && component && !lodash_1.get(ctx.componentMap, `${module}.${component}`)) {
|
|
27
|
-
lodash_1.set(ctx.componentMap, `${module}.${component}`, true);
|
|
26
|
+
if (module && component && !(0, lodash_1.get)(ctx.componentMap, `${module}.${component}`)) {
|
|
27
|
+
(0, lodash_1.set)(ctx.componentMap, `${module}.${component}`, true);
|
|
28
28
|
ctx.componentLibMap[module] = true;
|
|
29
29
|
}
|
|
30
30
|
// 优先处理 directives 因为其他绑定会用到for
|
|
@@ -24,7 +24,7 @@ function readComponents(properties = {}, excludeKeys = []) {
|
|
|
24
24
|
setValidValue(componentXProps, 'listeners', readListeners(srcProps.listenerInstances));
|
|
25
25
|
setValidValue(componentXProps, 'directives', readDirectives(srcProps));
|
|
26
26
|
setValidValue(componentXProps, 'style', srcProps.style);
|
|
27
|
-
setValidValue(componentXProps, 'commonStyle', style_1.removeInvalidStyleFormValue(srcProps.commonStyle));
|
|
27
|
+
setValidValue(componentXProps, 'commonStyle', (0, style_1.removeInvalidStyleFormValue)(srcProps.commonStyle));
|
|
28
28
|
setValidValue(componentXProps, 'styleBindPath', srcProps.styleBindPath);
|
|
29
29
|
if (srcProps.styleBind && srcProps.styleBind.bindDataPath) {
|
|
30
30
|
componentXProps.styleBind = {
|
|
@@ -32,7 +32,7 @@ function readComponents(properties = {}, excludeKeys = []) {
|
|
|
32
32
|
value: srcProps.styleBind.bindDataPath,
|
|
33
33
|
};
|
|
34
34
|
}
|
|
35
|
-
if (common_1.isValidClassNameListBind(srcProps.classNameListBind)) {
|
|
35
|
+
if ((0, common_1.isValidClassNameListBind)(srcProps.classNameListBind)) {
|
|
36
36
|
const classList = srcProps.classNameListBind;
|
|
37
37
|
setValidValue(componentXProps, 'classListBind', {
|
|
38
38
|
type: classList.type,
|
|
@@ -147,7 +147,7 @@ function getValidValue(value) {
|
|
|
147
147
|
if (Array.isArray(value) && value.length === 0) {
|
|
148
148
|
return;
|
|
149
149
|
}
|
|
150
|
-
if (common_1.isPlainObject(value) && common_1.isEmptyObj(value)) {
|
|
150
|
+
if ((0, common_1.isPlainObject)(value) && (0, common_1.isEmptyObj)(value)) {
|
|
151
151
|
return;
|
|
152
152
|
}
|
|
153
153
|
return value;
|
|
@@ -5,7 +5,7 @@ const common_1 = require("./common");
|
|
|
5
5
|
function removeInvalidStyleFormValue(styleForm = {}) {
|
|
6
6
|
return Object.keys(styleForm).reduce((result, key) => {
|
|
7
7
|
const propStyleFormData = styleForm[key];
|
|
8
|
-
if (common_1.isPlainObject(propStyleFormData)) {
|
|
8
|
+
if ((0, common_1.isPlainObject)(propStyleFormData)) {
|
|
9
9
|
setStyleValue(result, key, removeInvalidStyleFormValue(propStyleFormData));
|
|
10
10
|
}
|
|
11
11
|
else {
|
|
@@ -23,8 +23,8 @@ function setStyleValue(object, key, value) {
|
|
|
23
23
|
if (key === 'open') {
|
|
24
24
|
return;
|
|
25
25
|
}
|
|
26
|
-
if (common_1.isEmptyObj(value)) {
|
|
26
|
+
if ((0, common_1.isEmptyObj)(value)) {
|
|
27
27
|
return;
|
|
28
28
|
}
|
|
29
|
-
object[common_1.camelcase(key)] = value;
|
|
29
|
+
object[(0, common_1.camelcase)(key)] = value;
|
|
30
30
|
}
|
|
@@ -70,8 +70,8 @@ function translateComponentModuleName(comp) {
|
|
|
70
70
|
const { xComponent } = comp;
|
|
71
71
|
if (xComponent) {
|
|
72
72
|
const { name } = xComponent;
|
|
73
|
-
const complexName = utils_1.isComplexComponent(name);
|
|
74
|
-
const gsdH5ReactName = utils_1.isGsdH5ReactComponent(name);
|
|
73
|
+
const complexName = (0, utils_1.isComplexComponent)(name);
|
|
74
|
+
const gsdH5ReactName = (0, utils_1.isGsdH5ReactComponent)(name);
|
|
75
75
|
if (complexName) {
|
|
76
76
|
xComponent.moduleName = 'CLOUDBASE_STANDARD';
|
|
77
77
|
xComponent.name = complexName;
|
|
@@ -167,7 +167,7 @@ function translateComponent(comp) {
|
|
|
167
167
|
comp.properties = {
|
|
168
168
|
contentSlot: {
|
|
169
169
|
properties: {
|
|
170
|
-
[utils_1.getId()]: {
|
|
170
|
+
[(0, utils_1.getId)()]: {
|
|
171
171
|
xComponent: {
|
|
172
172
|
moduleName: 'gsd-h5-react',
|
|
173
173
|
name: 'Text',
|
|
@@ -246,7 +246,7 @@ function translateStyleToCommonStyle(comp) {
|
|
|
246
246
|
if (xProps && xProps.style) {
|
|
247
247
|
xProps.commonStyle = xProps.commonStyle || {};
|
|
248
248
|
xProps.commonStyle.self = xProps.commonStyle.self || {};
|
|
249
|
-
xProps.commonStyle.self = lodash_1.merge(xProps.style, xProps.commonStyle.self);
|
|
249
|
+
xProps.commonStyle.self = (0, lodash_1.merge)(xProps.style, xProps.commonStyle.self);
|
|
250
250
|
delete xProps.style;
|
|
251
251
|
}
|
|
252
252
|
}
|
|
@@ -280,11 +280,11 @@ function addFormItem(comp, key, parent, isOnlySlot = false) {
|
|
|
280
280
|
};
|
|
281
281
|
if (!rulesValue.type || rulesValue.type === 'static') {
|
|
282
282
|
rulesValue.value = (rulesValue.value || []).filter((meta) => {
|
|
283
|
-
return meta && !common_1.isEmptyObj(meta);
|
|
283
|
+
return meta && !(0, common_1.isEmptyObj)(meta);
|
|
284
284
|
});
|
|
285
285
|
}
|
|
286
|
-
if (utils_1.isPlainObject(rulesValue.value)) {
|
|
287
|
-
if (utils_1.isEmptyObject(rulesValue.value)) {
|
|
286
|
+
if ((0, utils_1.isPlainObject)(rulesValue.value)) {
|
|
287
|
+
if ((0, utils_1.isEmptyObject)(rulesValue.value)) {
|
|
288
288
|
rulesValue.value = [];
|
|
289
289
|
}
|
|
290
290
|
else {
|
|
@@ -307,15 +307,15 @@ function addFormItem(comp, key, parent, isOnlySlot = false) {
|
|
|
307
307
|
let isShowTitleSlot = false;
|
|
308
308
|
if (properties) {
|
|
309
309
|
Object.keys(properties).map((subKey) => {
|
|
310
|
-
if (utils_1.isWeAppId(subKey)) {
|
|
310
|
+
if ((0, utils_1.isWeAppId)(subKey)) {
|
|
311
311
|
delete properties[subKey];
|
|
312
312
|
}
|
|
313
313
|
if (subKey === 'label') {
|
|
314
314
|
const targetLabelSlot = properties[subKey];
|
|
315
|
-
utils_1.getComponentChildren(targetLabelSlot).map(([key, item]) => {
|
|
315
|
+
(0, utils_1.getComponentChildren)(targetLabelSlot).map(([key, item]) => {
|
|
316
316
|
labelText = lodash_1.default.get(item, 'xProps.data.text.value');
|
|
317
317
|
const cloneItem = lodash_1.default.cloneDeep(item);
|
|
318
|
-
index_1.deepParse(cloneItem, key, comp);
|
|
318
|
+
(0, index_1.deepParse)(cloneItem, key, comp);
|
|
319
319
|
isShowTitleSlot = true;
|
|
320
320
|
});
|
|
321
321
|
delete comp.properties.label;
|
|
@@ -323,7 +323,7 @@ function addFormItem(comp, key, parent, isOnlySlot = false) {
|
|
|
323
323
|
});
|
|
324
324
|
}
|
|
325
325
|
const titleSlot = {
|
|
326
|
-
[utils_1.getId()]: {
|
|
326
|
+
[(0, utils_1.getId)()]: {
|
|
327
327
|
xComponent: {
|
|
328
328
|
moduleName: 'gsd-h5-react',
|
|
329
329
|
name: 'Text',
|
|
@@ -358,7 +358,7 @@ function addFormItem(comp, key, parent, isOnlySlot = false) {
|
|
|
358
358
|
if (!parent.xComponent ||
|
|
359
359
|
(parent.xComponent && parent.xComponent.name !== 'FormItem')) {
|
|
360
360
|
// add FormItem
|
|
361
|
-
const newFormItemId = utils_1.getId();
|
|
361
|
+
const newFormItemId = (0, utils_1.getId)();
|
|
362
362
|
// @ts-ignore
|
|
363
363
|
parent.properties[newFormItemId] = {
|
|
364
364
|
xComponent: {
|
|
@@ -420,7 +420,7 @@ function renameRepeatId(json) {
|
|
|
420
420
|
for (const i in componentInstances) {
|
|
421
421
|
const comp = componentInstances[i];
|
|
422
422
|
if (_compIds[i] && i.startsWith('id')) {
|
|
423
|
-
const newId = utils_1.getId();
|
|
423
|
+
const newId = (0, utils_1.getId)();
|
|
424
424
|
componentInstances[newId] = comp;
|
|
425
425
|
delete componentInstances[i];
|
|
426
426
|
}
|
|
@@ -439,7 +439,7 @@ function renameRepeatId(json) {
|
|
|
439
439
|
keys.forEach((key) => {
|
|
440
440
|
const _comp = topComp['properties'][key];
|
|
441
441
|
if (_compIds[key] && key.startsWith('id')) {
|
|
442
|
-
const newId = utils_1.getId();
|
|
442
|
+
const newId = (0, utils_1.getId)();
|
|
443
443
|
topComp['properties'][newId] = _comp;
|
|
444
444
|
delete topComp['properties'][key];
|
|
445
445
|
}
|
|
@@ -26,12 +26,12 @@ const CompParse = __importStar(require("./parses"));
|
|
|
26
26
|
const index_1 = require("../../index");
|
|
27
27
|
function upgrageToVersion2(app) {
|
|
28
28
|
if (app.selectedPageId) {
|
|
29
|
-
utils_1.init(app);
|
|
30
|
-
common_1.renameRepeatId(app);
|
|
29
|
+
(0, utils_1.init)(app);
|
|
30
|
+
(0, common_1.renameRepeatId)(app);
|
|
31
31
|
parse2V2(app);
|
|
32
32
|
let str = JSON.stringify(app);
|
|
33
33
|
let obj = JSON.parse(str.replace(/app\.getPageOptions/g, '(()=>{})').replace(/\\\\n/g, '\\n'));
|
|
34
|
-
return index_1.serializePlatformApp(obj, { dependencies: [] });
|
|
34
|
+
return (0, index_1.serializePlatformApp)(obj, { dependencies: [] });
|
|
35
35
|
}
|
|
36
36
|
else {
|
|
37
37
|
return app;
|
|
@@ -46,7 +46,7 @@ function parse2V2(json) {
|
|
|
46
46
|
findSelectedPage = true;
|
|
47
47
|
}
|
|
48
48
|
CompParse.addFormWrapperComp(pageInstance);
|
|
49
|
-
if (utils_1.isComplexJSON(json)) {
|
|
49
|
+
if ((0, utils_1.isComplexJSON)(json)) {
|
|
50
50
|
CompParse.parseComplexComponentInstance(pageInstance);
|
|
51
51
|
}
|
|
52
52
|
const { componentInstances } = pageInstance;
|
|
@@ -71,10 +71,10 @@ function deepParse(comp, key, parent) {
|
|
|
71
71
|
const { xComponent } = comp;
|
|
72
72
|
if (xComponent) {
|
|
73
73
|
const { name } = xComponent;
|
|
74
|
-
common_1.beforeCommonParse(comp);
|
|
74
|
+
(0, common_1.beforeCommonParse)(comp);
|
|
75
75
|
const parseFunction = CompParse[`parseGsdKbone${name}`];
|
|
76
76
|
parseFunction && parseFunction(comp, key, parent);
|
|
77
|
-
common_1.afterCommonParse(comp);
|
|
77
|
+
(0, common_1.afterCommonParse)(comp);
|
|
78
78
|
}
|
|
79
79
|
else {
|
|
80
80
|
// 当前为 slot
|
|
@@ -33,7 +33,7 @@ function parseGsdKboneFooter(comp) {
|
|
|
33
33
|
comp.properties = {
|
|
34
34
|
text: {
|
|
35
35
|
properties: {
|
|
36
|
-
[utils_1.getId()]: {
|
|
36
|
+
[(0, utils_1.getId)()]: {
|
|
37
37
|
xComponent: {
|
|
38
38
|
moduleName: 'gsd-h5-react',
|
|
39
39
|
name: 'Text',
|
|
@@ -146,7 +146,7 @@ function parseGsdKboneButton(comp) {
|
|
|
146
146
|
comp.properties = {
|
|
147
147
|
contentSlot: {
|
|
148
148
|
properties: {
|
|
149
|
-
[utils_1.getId()]: {
|
|
149
|
+
[(0, utils_1.getId)()]: {
|
|
150
150
|
xComponent: {
|
|
151
151
|
moduleName: 'gsd-h5-react',
|
|
152
152
|
name: 'Text',
|
|
@@ -175,7 +175,7 @@ function parseGsdKbonePopLayer(comp) {
|
|
|
175
175
|
// 特殊处理,因为组件名字大小写改了
|
|
176
176
|
comp.xComponent.name = 'Poplayer';
|
|
177
177
|
const slotKeys = ['content', 'footer'];
|
|
178
|
-
utils_1.addDefaultSlot(slotKeys, comp);
|
|
178
|
+
(0, utils_1.addDefaultSlot)(slotKeys, comp);
|
|
179
179
|
const defaultData = {
|
|
180
180
|
visible: {
|
|
181
181
|
value: true,
|
|
@@ -198,13 +198,13 @@ function parseGsdKbonePopLayer(comp) {
|
|
|
198
198
|
value: '120',
|
|
199
199
|
},
|
|
200
200
|
};
|
|
201
|
-
utils_1.addDefaultData(defaultData, comp);
|
|
201
|
+
(0, utils_1.addDefaultData)(defaultData, comp);
|
|
202
202
|
}
|
|
203
203
|
exports.parseGsdKbonePopLayer = parseGsdKbonePopLayer;
|
|
204
204
|
function parseGsdKboneAgree(comp, key, parent) {
|
|
205
|
-
common_1.addFormItem(comp, key, parent, true);
|
|
205
|
+
(0, common_1.addFormItem)(comp, key, parent, true);
|
|
206
206
|
const slotKeys = ['content'];
|
|
207
|
-
utils_1.addDefaultSlot(slotKeys, comp);
|
|
207
|
+
(0, utils_1.addDefaultSlot)(slotKeys, comp);
|
|
208
208
|
const defaultData = {
|
|
209
209
|
name: {
|
|
210
210
|
value: 'thisIsAgreeKey',
|
|
@@ -219,7 +219,7 @@ function parseGsdKboneAgree(comp, key, parent) {
|
|
|
219
219
|
value: 'https://weapps-prod-1301730524.cos.ap-guangzhou.myqcloud.com/res/2/square_un.svg',
|
|
220
220
|
},
|
|
221
221
|
};
|
|
222
|
-
utils_1.addDefaultData(defaultData, comp);
|
|
222
|
+
(0, utils_1.addDefaultData)(defaultData, comp);
|
|
223
223
|
if (comp.properties && comp.properties.custom) {
|
|
224
224
|
comp.properties.content = comp.properties.custom;
|
|
225
225
|
delete comp.properties.custom;
|
|
@@ -268,15 +268,15 @@ function parseGsdKboneSwiper(comp) {
|
|
|
268
268
|
value: '',
|
|
269
269
|
},
|
|
270
270
|
};
|
|
271
|
-
utils_1.addDefaultData(defaultData, comp);
|
|
272
|
-
utils_1.getComponentChildren(comp).map(([subKey, subComp]) => {
|
|
271
|
+
(0, utils_1.addDefaultData)(defaultData, comp);
|
|
272
|
+
(0, utils_1.getComponentChildren)(comp).map(([subKey, subComp]) => {
|
|
273
273
|
const { xComponent } = subComp;
|
|
274
274
|
if (xComponent.name === 'Container') {
|
|
275
275
|
xComponent.moduleName = 'gsd-h5-react';
|
|
276
276
|
xComponent.name = 'SwiperItem';
|
|
277
277
|
}
|
|
278
278
|
else {
|
|
279
|
-
const newSwiperItemId = utils_1.getId();
|
|
279
|
+
const newSwiperItemId = (0, utils_1.getId)();
|
|
280
280
|
const newSubComp = JSON.parse(JSON.stringify(subComp).replace(new RegExp(`forItems\\.${subKey}`, 'g'), `forItems.${newSwiperItemId}`));
|
|
281
281
|
const waFor = lodash_1.default.get(newSubComp, 'xProps.directives.waFor');
|
|
282
282
|
try {
|
|
@@ -325,7 +325,7 @@ function parseGsdKboneText(comp) {
|
|
|
325
325
|
comp.xProps = comp.xProps || {};
|
|
326
326
|
comp.xProps.commonStyle = comp.xProps.commonStyle || {};
|
|
327
327
|
// v1 版本 text 为 block
|
|
328
|
-
comp.xProps.commonStyle = lodash_1.merge({
|
|
328
|
+
comp.xProps.commonStyle = (0, lodash_1.merge)({
|
|
329
329
|
display: 'block',
|
|
330
330
|
self: {
|
|
331
331
|
display: 'block',
|
|
@@ -334,9 +334,9 @@ function parseGsdKboneText(comp) {
|
|
|
334
334
|
}
|
|
335
335
|
exports.parseGsdKboneText = parseGsdKboneText;
|
|
336
336
|
function parseGsdKboneInput(comp, key, parent) {
|
|
337
|
-
common_1.addFormItem(comp, key, parent);
|
|
337
|
+
(0, common_1.addFormItem)(comp, key, parent);
|
|
338
338
|
const slotKeys = ['prefix', 'suffix'];
|
|
339
|
-
utils_1.addDefaultSlot(slotKeys, comp);
|
|
339
|
+
(0, utils_1.addDefaultSlot)(slotKeys, comp);
|
|
340
340
|
const defaultData = {
|
|
341
341
|
name: {
|
|
342
342
|
value: 'uniqueFormKey',
|
|
@@ -377,7 +377,7 @@ function parseGsdKboneInput(comp, key, parent) {
|
|
|
377
377
|
type: 'slot',
|
|
378
378
|
},
|
|
379
379
|
};
|
|
380
|
-
utils_1.addDefaultData(defaultData, comp);
|
|
380
|
+
(0, utils_1.addDefaultData)(defaultData, comp);
|
|
381
381
|
const append = lodash_1.default.get(comp, 'properties.append');
|
|
382
382
|
if (append) {
|
|
383
383
|
lodash_1.default.set(comp, 'properties.suffix', append);
|
|
@@ -387,7 +387,7 @@ function parseGsdKboneInput(comp, key, parent) {
|
|
|
387
387
|
}
|
|
388
388
|
exports.parseGsdKboneInput = parseGsdKboneInput;
|
|
389
389
|
function parseGsdKboneSwitch(comp, key, parent) {
|
|
390
|
-
common_1.addFormItem(comp, key, parent, true);
|
|
390
|
+
(0, common_1.addFormItem)(comp, key, parent, true);
|
|
391
391
|
const defaultValue = lodash_1.default.get(comp, 'xProps.data.defaultValue');
|
|
392
392
|
defaultValue && lodash_1.default.set(comp, 'xProps.data.value', defaultValue);
|
|
393
393
|
const originStyle = lodash_1.default.get(comp, 'xProps.commonStyle.margin');
|
|
@@ -395,12 +395,12 @@ function parseGsdKboneSwitch(comp, key, parent) {
|
|
|
395
395
|
}
|
|
396
396
|
exports.parseGsdKboneSwitch = parseGsdKboneSwitch;
|
|
397
397
|
function parseGsdKbonePicker(comp, key, parent) {
|
|
398
|
-
common_1.addFormItem(comp, key, parent);
|
|
398
|
+
(0, common_1.addFormItem)(comp, key, parent);
|
|
399
399
|
comp.xComponent.name = 'Selector';
|
|
400
400
|
}
|
|
401
401
|
exports.parseGsdKbonePicker = parseGsdKbonePicker;
|
|
402
402
|
function parseGsdKboneDateTimePicker(comp, key, parent) {
|
|
403
|
-
common_1.addFormItem(comp, key, parent);
|
|
403
|
+
(0, common_1.addFormItem)(comp, key, parent);
|
|
404
404
|
const modeValue = lodash_1.default.get(comp, 'xProps.data.mode.value');
|
|
405
405
|
if (modeValue === 'date') {
|
|
406
406
|
comp.xComponent.name = 'Date';
|
|
@@ -411,7 +411,7 @@ function parseGsdKboneDateTimePicker(comp, key, parent) {
|
|
|
411
411
|
}
|
|
412
412
|
exports.parseGsdKboneDateTimePicker = parseGsdKboneDateTimePicker;
|
|
413
413
|
function parseGsdKboneUpload(comp, key, parent) {
|
|
414
|
-
common_1.addFormItem(comp, key, parent);
|
|
414
|
+
(0, common_1.addFormItem)(comp, key, parent);
|
|
415
415
|
comp.xComponent.name = 'Uploader';
|
|
416
416
|
const defaultData = {
|
|
417
417
|
name: {
|
|
@@ -454,7 +454,7 @@ function parseGsdKboneUpload(comp, key, parent) {
|
|
|
454
454
|
value: '',
|
|
455
455
|
},
|
|
456
456
|
};
|
|
457
|
-
utils_1.addDefaultData(defaultData, comp);
|
|
457
|
+
(0, utils_1.addDefaultData)(defaultData, comp);
|
|
458
458
|
}
|
|
459
459
|
exports.parseGsdKboneUpload = parseGsdKboneUpload;
|
|
460
460
|
function addFormWrapperComp(pageInstance) {
|
|
@@ -462,10 +462,10 @@ function addFormWrapperComp(pageInstance) {
|
|
|
462
462
|
const cloneTree = {
|
|
463
463
|
properties: componentInstances,
|
|
464
464
|
};
|
|
465
|
-
if (utils_1.checkIsNeedAddFormWrapper(cloneTree)) {
|
|
465
|
+
if ((0, utils_1.checkIsNeedAddFormWrapper)(cloneTree)) {
|
|
466
466
|
let listeners = [];
|
|
467
467
|
// 获取 Button 按钮事件,赋值到 Form 并删除按钮事件监听
|
|
468
|
-
utils_1.findComponentInTree(cloneTree, (_comp) => {
|
|
468
|
+
(0, utils_1.findComponentInTree)(cloneTree, (_comp) => {
|
|
469
469
|
let comp = _comp;
|
|
470
470
|
const { xComponent, xProps } = comp;
|
|
471
471
|
if (xComponent && xComponent.name === 'Button') {
|
|
@@ -483,7 +483,7 @@ function addFormWrapperComp(pageInstance) {
|
|
|
483
483
|
});
|
|
484
484
|
// @ts-ignore
|
|
485
485
|
pageInstance.componentInstances = {
|
|
486
|
-
[utils_1.getId()]: {
|
|
486
|
+
[(0, utils_1.getId)()]: {
|
|
487
487
|
xComponent: {
|
|
488
488
|
moduleName: 'gsd-h5-react',
|
|
489
489
|
name: 'Form',
|
|
@@ -536,7 +536,7 @@ function parseGsdKboneTabs(comp) {
|
|
|
536
536
|
Object.values(properties).forEach((pItem, idx) => {
|
|
537
537
|
const tabItem = tabItems[idx];
|
|
538
538
|
if (tabItem) {
|
|
539
|
-
newProperties[utils_1.getId()] = {
|
|
539
|
+
newProperties[(0, utils_1.getId)()] = {
|
|
540
540
|
xComponent: {
|
|
541
541
|
moduleName: 'CLOUDBASE_STANDARD',
|
|
542
542
|
name: 'TabPane',
|
|
@@ -580,7 +580,7 @@ function parseComplexComponentInstance(instance) {
|
|
|
580
580
|
const keys = Object.keys(componentInstances);
|
|
581
581
|
if (keys.length > 1) {
|
|
582
582
|
instance.componentInstances = {
|
|
583
|
-
[utils_1.getId()]: {
|
|
583
|
+
[(0, utils_1.getId)()]: {
|
|
584
584
|
xComponent: {
|
|
585
585
|
moduleName: 'gsd-h5-react',
|
|
586
586
|
name: 'Container',
|
|
@@ -73,7 +73,7 @@ function addDefaultData(defaultData, comp) {
|
|
|
73
73
|
// @ts-ignore
|
|
74
74
|
comp.xProps = comp.xProps || {};
|
|
75
75
|
comp.xProps.data = comp.xProps.data || {};
|
|
76
|
-
comp.xProps.data = lodash_1.merge(defaultData, comp.xProps.data);
|
|
76
|
+
comp.xProps.data = (0, lodash_1.merge)(defaultData, comp.xProps.data);
|
|
77
77
|
}
|
|
78
78
|
exports.addDefaultData = addDefaultData;
|
|
79
79
|
function isComplexJSON(json) {
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../../parser/expression/index.ts"],"names":[],"mappings":"AAAA,OAAO,EAAuB,IAAI,EAAE,OAAO,EAAE,MAAM,OAAO,CAAA;
|
|
1
|
+
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../../parser/expression/index.ts"],"names":[],"mappings":"AAAA,OAAO,EAAuB,IAAI,EAAE,OAAO,EAAE,MAAM,OAAO,CAAA;AAE1D,eAAO,MAAM,YAAY,EAAE,OAO1B,CAAA;AAED,eAAO,MAAM,QAAQ;;;;;;;;;;;;;;CAcpB,CAAA;AAED,oBAAY,YAAY;IACtB,MAAM,WAAW;IACjB,KAAK,YAAY;IACjB,QAAQ,aAAa;IACrB,OAAO,aAAa;IACpB,UAAU,eAAe;IACzB,IAAI,SAAS;IACb,IAAI,SAAS;IACb,OAAO,YAAY;IACnB,SAAS,UAAU;IACnB,SAAS,WAAW;CACrB;AAED,oBAAY,UAAU;IACpB,OAAO,YAAY;IACnB,QAAQ,aAAa;IACrB,WAAW,iBAAiB;IAC5B,SAAS,cAAc;IACvB,SAAS,eAAe;IACxB,SAAS,eAAe;IACxB,MAAM,WAAW;IACjB,QAAQ,aAAa;IACrB,UAAU,eAAe;CAC1B;AAED,MAAM,WAAW,aAAa;IAC5B,IAAI,EAAE,YAAY,CAAA;IAClB,KAAK,EAAE,GAAG,CAAA;CACX;AAED,MAAM,WAAW,SAAS;IACxB,YAAY,EAAE,MAAM,CAAA;IACpB,YAAY,EAAE,MAAM,CAAA;IACpB,IAAI,CAAC,EAAE,YAAY,CAAA;CACpB;AAgBD,UAAU,MAAO,SAAQ,IAAI;IAC3B,OAAO,EAAE,MAAM,CAAA;IACf,KAAK,EAAE,GAAG,EAAE,CAAA;IACZ,WAAW,EAAE,MAAM,EAAE,CAAA;IAErB;;OAEG;IACH,IAAI,EAAE,MAAM,CAAA;IACZ,KAAK,EAAE,MAAM,CAAA;IAEb;;OAEG;IACH,QAAQ,EAAE,MAAM,CAAA;IAChB,MAAM,EAAE,OAAO,CAAA;IAEf;;OAEG;IACH,QAAQ,EAAE,MAAM,CAAA;IAChB,MAAM,EAAE,MAAM,CAAA;IACd,QAAQ,EAAE,OAAO,CAAA;IAEjB;;OAEG;IACH,IAAI,EAAE,MAAM,CAAA;IACZ,KAAK,EAAE,GAAG,CAAA;IACV,KAAK,EAAE,GAAG,CAAA;CACX;AAED;;;;GAIG;AACH,wBAAgB,mBAAmB,CACjC,UAAU,EAAE,MAAM,EAClB,mBAAmB,CAAC,EAAE,CAAC,IAAI,EAAE,GAAG,EAAE,KAAK,IAAI,GAC1C,CAAC,MAAM,GAAG,MAAM,CAAC,EAAE,CAyCrB;AAED,UAAU,0BAA0B;IAClC,IAAI,EAAE,YAAY,CAAA;IAClB,KAAK,CAAC,EAAE,MAAM,CAAA;IACd,UAAU,CAAC,EAAE,GAAG,CAAA;IAChB,MAAM,CAAC,EAAE,MAAM,CAAA;CAChB;AAED,qBAAa,kBAAkB;IAC7B,UAAU,EAAE,MAAM,CAAA;IAClB,gBAAgB,EAAE,MAAM,CAAA;IACxB,OAAO,EAAE,0BAA0B,CAAA;gBAEjC,gBAAgB,EAAE,MAAM,EACxB,OAAO,CAAC,EAAE,OAAO,CAAC,0BAA0B,CAAC;IAY/C;;OAEG;IACH,KAAK;IAwBL,oBAAoB,CAAC,UAAU,EAAE,MAAM;IAIvC,qBAAqB,CAAC,UAAU,EAAE,MAAM,EAAE,OAAO,EAAE,IAAI,CAAC,SAAS,CAAC;IAclE,qBAAqB,CAAC,UAAU,EAAE,MAAM,EAAE,OAAO,EAAE,IAAI,CAAC,SAAS,CAAC;IAuGlE,wBAAwB,CAAC,UAAU,EAAE,MAAM,EAAE,OAAO,EAAE,IAAI,CAAC,SAAS,CAAC;IA0BrE,eAAe,CAAC,cAAc,EAAE,CAAC,MAAM,GAAG,MAAM,CAAC,EAAE,EAAE,KAAK,EAAE,MAAM,GAAG,MAAM;IAW3E,kBAAkB,CAAC,IAAI,EAAE;QACvB,cAAc,EAAE,CAAC,MAAM,GAAG,MAAM,CAAC,EAAE,CAAA;QACnC,KAAK,EAAE,MAAM,CAAA;QACb,QAAQ,EAAE,MAAM,CAAA;QAChB,gBAAgB,CAAC,EAAE,MAAM,CAAA;KAC1B;IAWD,YAAY,CACV,UAAU,EAAE,MAAM,EAClB,IAAI,EAAE;QACJ,cAAc,EAAE,CAAC,MAAM,GAAG,MAAM,CAAC,EAAE,CAAA;QACnC,KAAK,EAAE,MAAM,CAAA;QACb,QAAQ,EAAE,MAAM,CAAA;KACjB,EACD,OAAO,EAAE,IAAI,CAAC,SAAS,CAAC;CAuB3B"}
|