@byteluck-fe/model-driven-engine 2.21.0-beta.8 → 2.21.0-beta.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.
@@ -157,9 +157,9 @@ function _create_super(Derived) {
157
157
  return _possible_constructor_return(this, result);
158
158
  };
159
159
  }
160
- import { isArray, isFunction, isString, isJSONArray, isJSONObject, isNumber, isNumberAndEmptyStringArray, isPlainObject, isStringArray, FieldTypes, isObject } from '@byteluck-fe/model-driven-shared';
161
- import { AddressValue, AmountValue, CalcValue, RangeDateValue } from '@byteluck-fe/model-driven-core';
162
- import { camelizeKeys } from 'humps';
160
+ import { isArray, isFunction, isString, isJSONArray, isJSONObject, isNumber, isNumberAndEmptyStringArray, isPlainObject, isStringArray, FieldTypes, isObject } from "@byteluck-fe/model-driven-shared";
161
+ import { AddressValue, AmountValue, CalcValue, RangeDateValue } from "@byteluck-fe/model-driven-core";
162
+ import { camelizeKeys } from "humps";
163
163
  var ValueChecker = function ValueChecker() {
164
164
  "use strict";
165
165
  _class_call_check(this, ValueChecker);
@@ -183,7 +183,7 @@ var StringValueChecker = /*#__PURE__*/ function(ValueChecker) {
183
183
  key: "transform",
184
184
  value: function transform(value) {
185
185
  if (value === null || value === undefined) {
186
- return '';
186
+ return "";
187
187
  }
188
188
  if (!isPlainObject(value) && !isFunction(value)) {
189
189
  return String(value);
@@ -210,14 +210,14 @@ var NumberValueChecker = /*#__PURE__*/ function(ValueChecker) {
210
210
  // 数字类型允许是空字符串,用于置空数据
211
211
  key: "validate",
212
212
  value: function validate(value) {
213
- return isNumber(value) || value === '';
213
+ return isNumber(value) || value === "";
214
214
  }
215
215
  },
216
216
  {
217
217
  key: "transform",
218
218
  value: function transform(value) {
219
219
  if (value === null || value === undefined) {
220
- return '';
220
+ return "";
221
221
  }
222
222
  var newValue = !isPlainObject(value) && !isFunction(value) ? Number(value) : undefined;
223
223
  if (!Number.isNaN(newValue) && newValue !== undefined) {
@@ -252,7 +252,7 @@ var StringArrayValueChecker = /*#__PURE__*/ function(ValueChecker) {
252
252
  }
253
253
  function getStringValueArray(value) {
254
254
  return value.map(function(item) {
255
- return !item ? '' : String(item);
255
+ return !item ? "" : String(item);
256
256
  });
257
257
  }
258
258
  if (isArray(value)) {
@@ -297,9 +297,9 @@ var NumberArrayValueChecker = /*#__PURE__*/ function(ValueChecker) {
297
297
  }
298
298
  function getNumberValueArray(value) {
299
299
  return value.map(function(item) {
300
- return !item && item !== 0 ? '' : Number(item);
300
+ return !item && item !== 0 ? "" : Number(item);
301
301
  }).filter(function(item) {
302
- return item === '' || !Number.isNaN(item);
302
+ return item === "" || !Number.isNaN(item);
303
303
  });
304
304
  }
305
305
  if (isArray(value)) {
@@ -338,13 +338,13 @@ var MoneyValueChecker = /*#__PURE__*/ function(ValueChecker) {
338
338
  key: "validate",
339
339
  value: function validate(value) {
340
340
  return(// value instanceof AmountValue ||
341
- isPlainObject(value) && 'amount' in value && isNumber(value.amount) && 'currency' in value && isString(value.currency));
341
+ isPlainObject(value) && "amount" in value && isNumber(value.amount) && "currency" in value && isString(value.currency));
342
342
  }
343
343
  },
344
344
  {
345
345
  key: "transform",
346
346
  value: function transform(value, oldValue) {
347
- if (value === undefined || value === null || value === '') {
347
+ if (value === undefined || value === null || value === "") {
348
348
  return new AmountValue({
349
349
  currency: oldValue === null || oldValue === void 0 ? void 0 : oldValue.currency
350
350
  });
@@ -389,13 +389,13 @@ var TimeScopeValueChecker = /*#__PURE__*/ function(ValueChecker) {
389
389
  key: "validate",
390
390
  value: function validate(value) {
391
391
  return(// value instanceof RangeDateValue ||
392
- isPlainObject(value) && 'min' in value && isString(value.min) && 'max' in value && isString(value.max));
392
+ isPlainObject(value) && "min" in value && isString(value.min) && "max" in value && isString(value.max));
393
393
  }
394
394
  },
395
395
  {
396
396
  key: "transform",
397
397
  value: function transform(value, oldValue) {
398
- if (value === undefined || value === null || value === '') {
398
+ if (value === undefined || value === null || value === "") {
399
399
  return new RangeDateValue();
400
400
  }
401
401
  var result;
@@ -437,13 +437,13 @@ var CalcValueChecker = /*#__PURE__*/ function(ValueChecker) {
437
437
  key: "validate",
438
438
  value: function validate(value) {
439
439
  return(// value instanceof CalcValue ||
440
- isPlainObject(value) && 'result' in value && isNumber(value.result) && 'unit' in value && isString(value.unit));
440
+ isPlainObject(value) && "result" in value && isNumber(value.result) && "unit" in value && isString(value.unit));
441
441
  }
442
442
  },
443
443
  {
444
444
  key: "transform",
445
445
  value: function transform(value, oldValue) {
446
- if (value === undefined || value === null || value === '') {
446
+ if (value === undefined || value === null || value === "") {
447
447
  return new CalcValue({
448
448
  unit: oldValue === null || oldValue === void 0 ? void 0 : oldValue.unit
449
449
  });
@@ -504,7 +504,7 @@ var AddressValueChecker = /*#__PURE__*/ function(ValueChecker) {
504
504
  {
505
505
  key: "transform",
506
506
  value: function transform(value, oldValue) {
507
- if (value === undefined || value === null || value === '') {
507
+ if (value === undefined || value === null || value === "") {
508
508
  return new AddressValue();
509
509
  }
510
510
  var result;
@@ -588,15 +588,15 @@ var ValueCheckerFactory = /*#__PURE__*/ function() {
588
588
  }();
589
589
  function getFieldTypeFromKey(key) {
590
590
  if ([
591
- 'min',
592
- 'max',
593
- 'currency',
594
- 'unit'
591
+ "min",
592
+ "max",
593
+ "currency",
594
+ "unit"
595
595
  ].includes(key)) {
596
596
  return FieldTypes.VARCHAR;
597
597
  } else if ([
598
- 'result',
599
- 'amount'
598
+ "result",
599
+ "amount"
600
600
  ].includes(key)) {
601
601
  return FieldTypes.DECIMAL;
602
602
  }
@@ -1,2 +1,2 @@
1
- export * from './Engine';
2
- export * from './Plugin';
1
+ export * from "./Engine";
2
+ export * from "./Plugin";
@@ -24,21 +24,21 @@ function _unsupported_iterable_to_array(o, minLen) {
24
24
  if (n === "Arguments" || /^(?:Ui|I)nt(?:8|16|32)(?:Clamped)?Array$/.test(n)) return _array_like_to_array(o, minLen);
25
25
  }
26
26
  var cc = console;
27
- import { CONTROL_BASE_TYPE, error, logerror, JSONCopy } from '@byteluck-fe/model-driven-shared';
27
+ import { CONTROL_BASE_TYPE, error, logerror, JSONCopy } from "@byteluck-fe/model-driven-shared";
28
28
  var proxyArrayApi = [
29
- 'splice',
30
- 'push',
31
- 'shift',
32
- 'pop',
33
- 'unshift',
34
- 'reverse'
29
+ "splice",
30
+ "push",
31
+ "shift",
32
+ "pop",
33
+ "unshift",
34
+ "reverse"
35
35
  ];
36
- export var engineProxyFlag = Symbol('__engineProxy__');
37
- export var engineTargetKey = Symbol('__engineTarget__');
38
- export var engineArrayBeforeSetCallbackFlag = Symbol('__engineArrayBeforeSetCallbackFlag__');
39
- export var engineProxyThisKey = Symbol('__engineProxyThisKey__');
36
+ export var engineProxyFlag = Symbol("__engineProxy__");
37
+ export var engineTargetKey = Symbol("__engineTarget__");
38
+ export var engineArrayBeforeSetCallbackFlag = Symbol("__engineArrayBeforeSetCallbackFlag__");
39
+ export var engineProxyThisKey = Symbol("__engineProxyThisKey__");
40
40
  var currentHandlerState = {
41
- type: '',
41
+ type: "",
42
42
  args: [],
43
43
  callback: emptyFn
44
44
  };
@@ -55,16 +55,16 @@ function ArrayHandler(target, propertyKey, value, thisKey, callback) {
55
55
  // 操作下标
56
56
  // Number(propertyKey) > target.length 说明当前操作的下标已经超过了安全范围(数组的运行长度,比如[1,2,3],它的长度为3,可操作的下标为0,1,2,3,如果操作4将会产生一个empty index)
57
57
  if (index > target.length) {
58
- error("Wrong array operations may cause unknown errors. It is recommended to use APIs such as ".concat(proxyArrayApi.join(','), " for array operations"));
58
+ error("Wrong array operations may cause unknown errors. It is recommended to use APIs such as ".concat(proxyArrayApi.join(","), " for array operations"));
59
59
  return;
60
60
  }
61
61
  // 不是操作下标,而是直接操作length或者自定义属性等
62
62
  var isNotHandlerIndex = Number.isNaN(index);
63
- if (isNotHandlerIndex && propertyKey !== 'length') {
63
+ if (isNotHandlerIndex && propertyKey !== "length") {
64
64
  return;
65
65
  }
66
66
  // 直接操作length
67
- if (propertyKey === 'length') {
67
+ if (propertyKey === "length") {
68
68
  var newLength = value;
69
69
  var oldLength = target.length;
70
70
  if (newLength > target.length) {
@@ -76,7 +76,7 @@ function ArrayHandler(target, propertyKey, value, thisKey, callback) {
76
76
  }
77
77
  // 通过操作length删除旧的行
78
78
  return function() {
79
- return callback.call(null, target, thisKey, 'splice', [
79
+ return callback.call(null, target, thisKey, "splice", [
80
80
  newLength,
81
81
  oldLength - newLength
82
82
  ]);
@@ -86,13 +86,13 @@ function ArrayHandler(target, propertyKey, value, thisKey, callback) {
86
86
  // 正常操作
87
87
  if (index === target.length) {
88
88
  return function() {
89
- return callback.call(null, target, thisKey, 'push', [
89
+ return callback.call(null, target, thisKey, "push", [
90
90
  value
91
91
  ]);
92
92
  };
93
93
  } else {
94
94
  return function() {
95
- return callback.call(null, target, thisKey, 'splice', [
95
+ return callback.call(null, target, thisKey, "splice", [
96
96
  index,
97
97
  1,
98
98
  value
@@ -128,9 +128,9 @@ function ArrayHandler(target, propertyKey, value, thisKey, callback) {
128
128
  var newValue = JSONCopy(value);
129
129
  // @ts-ignore
130
130
  var oldValue = target[propertyKey];
131
- var concatKey = thisKey === '' ? propertyKey : thisKey + '.' + propertyKey;
131
+ var concatKey = thisKey === "" ? propertyKey : thisKey + "." + propertyKey;
132
132
  function reProxyState(value) {
133
- if (typeof value === 'object' && value !== null) {
133
+ if (typeof value === "object" && value !== null) {
134
134
  // @ts-ignore
135
135
  if (value[engineProxyFlag] !== true) {
136
136
  return proxyState(value, callback, beforeSetCallback, concatKey);
@@ -186,15 +186,15 @@ function ArrayHandler(target, propertyKey, value, thisKey, callback) {
186
186
  * @param beforeSetCallback
187
187
  * @param prevKey 递归对象的key
188
188
  * */ export function proxyState(state, callback, beforeSetCallback) {
189
- var prevKey = arguments.length > 3 && arguments[3] !== void 0 ? arguments[3] : '';
189
+ var prevKey = arguments.length > 3 && arguments[3] !== void 0 ? arguments[3] : "";
190
190
  // 冻结的对象不需要再执行proxy,否则会报错
191
191
  if (Object.isFrozen(state)) {
192
192
  return state;
193
193
  }
194
194
  for(var key in state){
195
- var concatKey = prevKey === '' ? key : prevKey + '.' + key;
195
+ var concatKey = prevKey === "" ? key : prevKey + "." + key;
196
196
  var obj = state[key];
197
- if (typeof obj === 'object' && obj !== null) {
197
+ if (typeof obj === "object" && obj !== null) {
198
198
  // @ts-ignore
199
199
  state[key] = proxyState(obj, callback, beforeSetCallback, concatKey);
200
200
  }
@@ -205,7 +205,7 @@ function flatInstanceForChildren(controls) {
205
205
  var result = [];
206
206
  controls.forEach(function(item) {
207
207
  result.push(item);
208
- if (item.controlType === 'layout' || item.controlType === 'wrap') {
208
+ if (item.controlType === "layout" || item.controlType === "wrap") {
209
209
  var _result;
210
210
  (_result = result).push.apply(_result, _to_consumable_array(flatInstanceForChildren(item.children)));
211
211
  }
@@ -217,8 +217,8 @@ function flatInstanceForChildren(controls) {
217
217
  * @param flatInstance 拍平的instance数组
218
218
  * @param key 操作的数据在state的key - 可以是深层次的 subtable.0.input等
219
219
  * */ export function findItem(flatInstance, key, instanceMap) {
220
- if (key === '') return undefined;
221
- var keys = key.split('.');
220
+ if (key === "") return undefined;
221
+ var keys = key.split(".");
222
222
  if (keys.length === 0) return undefined;
223
223
  var oneKey = keys[0];
224
224
  var otherKeys = keys.slice(1);
@@ -253,22 +253,22 @@ function flatInstanceForChildren(controls) {
253
253
  }
254
254
  function getArrayNewValue(type, args) {
255
255
  if ([
256
- 'push',
257
- 'unshift'
256
+ "push",
257
+ "unshift"
258
258
  ].includes(type)) {
259
259
  return args;
260
- } else if (type === 'splice') {
260
+ } else if (type === "splice") {
261
261
  return args.slice(2);
262
262
  }
263
263
  return [];
264
264
  }
265
265
  function getArrayNewArgs(type, args, value) {
266
266
  if ([
267
- 'push',
268
- 'unshift'
267
+ "push",
268
+ "unshift"
269
269
  ].includes(type)) {
270
270
  return value;
271
- } else if (type === 'splice') {
271
+ } else if (type === "splice") {
272
272
  return args.slice(0, 2).concat(value);
273
273
  }
274
274
  }
@@ -303,8 +303,8 @@ function getArrayNewArgs(type, args, value) {
303
303
  // @ts-ignore
304
304
  result = oldApiHandler.apply(this, args);
305
305
  }
306
- typeof currentHandlerState.callback === 'function' && currentHandlerState.callback(key, args, result);
307
- currentHandlerState.type = '';
306
+ typeof currentHandlerState.callback === "function" && currentHandlerState.callback(key, args, result);
307
+ currentHandlerState.type = "";
308
308
  currentHandlerState.args = [];
309
309
  currentHandlerState.callback = emptyFn;
310
310
  return result;
package/dist/esm/index.js CHANGED
@@ -1,3 +1,3 @@
1
- export * from './common';
2
- export * from './plugins';
3
- export * from './utils';
1
+ export * from "./common";
2
+ export * from "./plugins";
3
+ export * from "./utils";
@@ -55,8 +55,8 @@ function _unsupported_iterable_to_array(o, minLen) {
55
55
  if (n === "Map" || n === "Set") return Array.from(n);
56
56
  if (n === "Arguments" || /^(?:Ui|I)nt(?:8|16|32)(?:Clamped)?Array$/.test(n)) return _array_like_to_array(o, minLen);
57
57
  }
58
- import { CONTROL_TYPE, CALC_TOKEN_TYPE, CALC_AGGREGATE_TYPE } from '@byteluck-fe/model-driven-shared';
59
- import { format } from 'mathjs';
58
+ import { CONTROL_TYPE, CALC_TOKEN_TYPE, CALC_AGGREGATE_TYPE } from "@byteluck-fe/model-driven-shared";
59
+ import { format } from "mathjs";
60
60
  var DisplayType;
61
61
  (function(DisplayType) {
62
62
  /**
@@ -170,7 +170,7 @@ export var CalcPlugin = /*#__PURE__*/ function() {
170
170
  this.watchControlChange();
171
171
  this.watchSubtableChange();
172
172
  this.watchSchemaHideChange();
173
- this.engine.on('engine-mounted', function() {
173
+ this.engine.on("engine-mounted", function() {
174
174
  requestAnimationFrame(function() {
175
175
  _this.resetDependencies();
176
176
  _this.allCalcControlComputed();
@@ -274,8 +274,8 @@ export var CalcPlugin = /*#__PURE__*/ function() {
274
274
  * @description 监听控件的显隐事件,把显隐会影响的控件触发一遍计算
275
275
  * */ function watchSchemaHideChange() {
276
276
  var _this = this;
277
- this.engine.on('schema-change', function(payload) {
278
- if (payload.props === 'isHide') {
277
+ this.engine.on("schema-change", function(payload) {
278
+ if (payload.props === "isHide") {
279
279
  var _this_dependenciesTriggerMap_get;
280
280
  var calcControls = (_this_dependenciesTriggerMap_get = _this.dependenciesTriggerMap.get(payload.instance.id)) !== null && _this_dependenciesTriggerMap_get !== void 0 ? _this_dependenciesTriggerMap_get : [];
281
281
  calcControls.forEach(function(calc) {
@@ -291,7 +291,7 @@ export var CalcPlugin = /*#__PURE__*/ function() {
291
291
  * @description 监听明细子表的change事件,把明细表会影响的控件触发一遍计算
292
292
  * */ function watchSubtableChange() {
293
293
  var _this = this;
294
- this.engine.on('list-change', function(payload) {
294
+ this.engine.on("list-change", function(payload) {
295
295
  var _payload_options;
296
296
  // 初始化前是批量操作。不做处理
297
297
  if (_this.engine.isMounted === false) return;
@@ -319,7 +319,7 @@ export var CalcPlugin = /*#__PURE__*/ function() {
319
319
  * @description 监听控件的change事件,当控件change的时候,取到控件会影响的计算公式,然后执行对应的计算
320
320
  * */ function watchControlChange() {
321
321
  var _this = this;
322
- this.engine.on('change', function(payload) {
322
+ this.engine.on("change", function(payload) {
323
323
  // 初始化前是批量操作。不做处理
324
324
  if (_this.engine.isMounted === false) return;
325
325
  var instance = payload.instance;
@@ -416,7 +416,7 @@ export var CalcPlugin = /*#__PURE__*/ function() {
416
416
  result += 0;
417
417
  }
418
418
  return result;
419
- }, '');
419
+ }, "");
420
420
  var value;
421
421
  // 有缓存的话取缓存,没有缓存再执行eval
422
422
  if (this.cacheComputedResult[scriptText] !== undefined) {
@@ -437,7 +437,7 @@ export var CalcPlugin = /*#__PURE__*/ function() {
437
437
  }
438
438
  }
439
439
  var oldValue = this.engine.getState(control.id, rowIndex);
440
- var result = !value || value === Infinity || value === -Infinity ? 0 : control.props.precision === '' ? value : Number(value.toFixed(control.props.precision));
440
+ var result = !value || value === Infinity || value === -Infinity ? 0 : control.props.precision === "" ? value : Number(value.toFixed(control.props.precision));
441
441
  // 如果值没变的话,不触发修改
442
442
  if (result === (oldValue === null || oldValue === void 0 ? void 0 : oldValue.result)) {
443
443
  return;
@@ -445,7 +445,7 @@ export var CalcPlugin = /*#__PURE__*/ function() {
445
445
  var _oldValue_unit;
446
446
  this.engine.setState(control.id, {
447
447
  result: result,
448
- unit: (_oldValue_unit = oldValue === null || oldValue === void 0 ? void 0 : oldValue.unit) !== null && _oldValue_unit !== void 0 ? _oldValue_unit : ''
448
+ unit: (_oldValue_unit = oldValue === null || oldValue === void 0 ? void 0 : oldValue.unit) !== null && _oldValue_unit !== void 0 ? _oldValue_unit : ""
449
449
  }, rowIndex);
450
450
  }
451
451
  },
@@ -454,14 +454,14 @@ export var CalcPlugin = /*#__PURE__*/ function() {
454
454
  value: /**
455
455
  * @description 获取数字值,因为计算公式可以依赖计算公式和金额,所以需要从value中取到对应的值
456
456
  * */ function getNumberValue(value) {
457
- if (typeof value === 'object' && value) {
458
- if ('result' in value) {
457
+ if (typeof value === "object" && value) {
458
+ if ("result" in value) {
459
459
  return value.result;
460
- } else if ('amount' in value) {
460
+ } else if ("amount" in value) {
461
461
  return value.amount;
462
462
  }
463
463
  }
464
- if (typeof value === 'number') {
464
+ if (typeof value === "number") {
465
465
  return value;
466
466
  }
467
467
  return 0;
@@ -154,7 +154,7 @@ function _ts_generator(thisArg, body) {
154
154
  };
155
155
  }
156
156
  }
157
- import { EventLogic } from '@byteluck-fe/model-driven-shared';
157
+ import { EventLogic } from "@byteluck-fe/model-driven-shared";
158
158
  // type EventKeyMap = {
159
159
  // [eventKey in EventKeys]?: string
160
160
  // }
@@ -206,8 +206,8 @@ export var ControlsEventPlugin = /*#__PURE__*/ function() {
206
206
  //注册自定义组件事件
207
207
  this.customEvents.map(function(item) {
208
208
  var key = item.key;
209
- if (item.namespace !== undefined && item.namespace !== null && item.namespace !== '') {
210
- key = item.namespace + ':' + item.key;
209
+ if (item.namespace !== undefined && item.namespace !== null && item.namespace !== "") {
210
+ key = item.namespace + ":" + item.key;
211
211
  }
212
212
  _this.engineAddEventListener(key, key);
213
213
  });
@@ -223,7 +223,7 @@ export var ControlsEventPlugin = /*#__PURE__*/ function() {
223
223
  switch(_state.label){
224
224
  case 0:
225
225
  // 初始化state的时候不触发change事件,必须在engine mounted以后才触发
226
- if ((eventKey === 'change' || eventKey === 'list-change') && !_this.engine.isMounted) {
226
+ if ((eventKey === "change" || eventKey === "list-change") && !_this.engine.isMounted) {
227
227
  return [
228
228
  2
229
229
  ];
@@ -76,7 +76,7 @@ function _unsupported_iterable_to_array(o, minLen) {
76
76
  if (n === "Map" || n === "Set") return Array.from(n);
77
77
  if (n === "Arguments" || /^(?:Ui|I)nt(?:8|16|32)(?:Clamped)?Array$/.test(n)) return _array_like_to_array(o, minLen);
78
78
  }
79
- import { error } from '@byteluck-fe/model-driven-shared';
79
+ import { error } from "@byteluck-fe/model-driven-shared";
80
80
  export var ES6ModulePlugin = /*#__PURE__*/ function() {
81
81
  "use strict";
82
82
  function ES6ModulePlugin(config, env, eventJs) {
@@ -170,11 +170,11 @@ export function parseModule(action, engine, env) {
170
170
  }
171
171
  };
172
172
  try {
173
- new Function('module', 'exports', compiled).call(module, module, module.exports);
173
+ new Function("module", "exports", compiled).call(module, module, module.exports);
174
174
  } catch (e) {
175
- error(e.message + '. fail to parse the module');
176
- if (process.env.NODE_ENV !== 'production') {
177
- error('fail to parse the module');
175
+ error(e.message + ". fail to parse the module");
176
+ if (process.env.NODE_ENV !== "production") {
177
+ error("fail to parse the module");
178
178
  }
179
179
  }
180
180
  var funcMap = {};
@@ -183,7 +183,7 @@ export function parseModule(action, engine, env) {
183
183
  try {
184
184
  for(var _iterator = Object.entries(module.exports)[Symbol.iterator](), _step; !(_iteratorNormalCompletion = (_step = _iterator.next()).done); _iteratorNormalCompletion = true){
185
185
  var _step_value = _sliced_to_array(_step.value, 2), key = _step_value[0], value = _step_value[1];
186
- if (typeof value === 'function') {
186
+ if (typeof value === "function") {
187
187
  funcMap[key] = value;
188
188
  } else {
189
189
  variables[key] = value;
@@ -201,11 +201,11 @@ function _ts_generator(thisArg, body) {
201
201
  }
202
202
  }
203
203
  var LifecycleEventKeyMap = {
204
- 'engine-initialized': 'did_init',
205
- 'engine-mounted': 'did_mount',
206
- 'engine-submit': 'will_submit',
207
- 'engine-submit-params': 'do_submit',
208
- 'engine-submitted': 'did_submit'
204
+ "engine-initialized": "did_init",
205
+ "engine-mounted": "did_mount",
206
+ "engine-submit": "will_submit",
207
+ "engine-submit-params": "do_submit",
208
+ "engine-submitted": "did_submit"
209
209
  };
210
210
  export var LifecycleEventPlugin = /*#__PURE__*/ function() {
211
211
  "use strict";
@@ -51,13 +51,13 @@ export var StylePlugin = /*#__PURE__*/ function() {
51
51
  var _this_config;
52
52
  this.engine = engine;
53
53
  var _this_config_source;
54
- var compiledStyle = (_this_config_source = (_this_config = this.config) === null || _this_config === void 0 ? void 0 : _this_config.source) !== null && _this_config_source !== void 0 ? _this_config_source : '';
55
- var style = document.createElement('style');
54
+ var compiledStyle = (_this_config_source = (_this_config = this.config) === null || _this_config === void 0 ? void 0 : _this_config.source) !== null && _this_config_source !== void 0 ? _this_config_source : "";
55
+ var style = document.createElement("style");
56
56
  style.className = "edit-css-" + engine.id;
57
- style.type = 'text/css';
57
+ style.type = "text/css";
58
58
  // style.innerHTML = compiledStyle
59
59
  style.innerHTML = "[data-engine-id='".concat(engine.id, "']{ ").concat(compiledStyle, " }");
60
- var dom = document.querySelector('head');
60
+ var dom = document.querySelector("head");
61
61
  dom.appendChild(style);
62
62
  }
63
63
  }
@@ -1,5 +1,5 @@
1
- export * from './ES6ModulePlugin';
2
- export * from './LifecycleEventPlugin';
3
- export * from './ControlsEventPlugin';
4
- export * from './CalcPlugin';
5
- export * from './StylePlugin';
1
+ export * from "./ES6ModulePlugin";
2
+ export * from "./LifecycleEventPlugin";
3
+ export * from "./ControlsEventPlugin";
4
+ export * from "./CalcPlugin";
5
+ export * from "./StylePlugin";
@@ -1 +1 @@
1
- export * from './runtimeUtils';
1
+ export * from "./runtimeUtils";
@@ -1,4 +1,4 @@
1
- import { CONTROL_BASE_TYPE, CONTROL_TYPE } from '@byteluck-fe/model-driven-shared';
1
+ import { CONTROL_BASE_TYPE, CONTROL_TYPE } from "@byteluck-fe/model-driven-shared";
2
2
  export function hasChildrenControl(instance) {
3
3
  return instance.controlType === CONTROL_BASE_TYPE.LAYOUT || instance.controlType === CONTROL_BASE_TYPE.WRAP || instance.controlType === CONTROL_BASE_TYPE.LIST || instance.controlType === CONTROL_BASE_TYPE.SEARCH || instance.controlType === CONTROL_BASE_TYPE.COLUMN && instance.type !== CONTROL_TYPE.OPERATION_COLUMN;
4
4
  }
@@ -36,9 +36,9 @@ callback) {
36
36
  var unique = 0;
37
37
  // uuid生成
38
38
  export function buildUUID() {
39
- var prefix = arguments.length > 0 && arguments[0] !== void 0 ? arguments[0] : '';
39
+ var prefix = arguments.length > 0 && arguments[0] !== void 0 ? arguments[0] : "";
40
40
  var time = Date.now();
41
41
  var random = Math.floor(Math.random() * 1000000000);
42
42
  unique++;
43
- return prefix + '_' + random + unique + String(time);
43
+ return prefix + "_" + random + unique + String(time);
44
44
  }