@web-utils/component 2.9.6 → 2.9.7

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.
@@ -475,7 +475,61 @@ const ut = {
475
475
  __init__: ["autoPlaceSelectionBehavior"],
476
476
  autoPlace: ["type", _e]
477
477
  };
478
- var dt = function() {
478
+ function ke(e, i, t, n) {
479
+ const s = /* @__PURE__ */ Object.create(null);
480
+ switch (s.event = i.event, t && (s.id = i.id), i.listenerType) {
481
+ case "scriptListener":
482
+ s.script = ft(e, i, n);
483
+ break;
484
+ case "expressionListener":
485
+ s.expression = i.expression;
486
+ break;
487
+ case "delegateExpressionListener":
488
+ s.delegateExpression = i.delegateExpression;
489
+ break;
490
+ default:
491
+ s.class = i.class;
492
+ }
493
+ if (i.fields && (s.fields = i.fields.map((r) => dt(e, r, n))), t && i.event === "timeout" && i.eventDefinitionType) {
494
+ const r = e.moddle.create("bpmn:FormalExpression", {
495
+ body: i.eventTimeDefinitions
496
+ }), a = e.moddle.create("bpmn:TimerEventDefinition", {
497
+ id: `TimerEventDefinition_${bt(8)}`,
498
+ [`time${i.eventDefinitionType.replace(/^\S/, (o) => o.toUpperCase())}`]: r
499
+ });
500
+ s.eventDefinitions = [a];
501
+ }
502
+ return e.moddle.create(`${n}:${t ? "TaskListener" : "ExecutionListener"}`, s);
503
+ }
504
+ function dt(e, i, t) {
505
+ const { name: n, fieldType: s, string: r, expression: a } = i, o = s === "string" ? { name: n, string: r } : { name: n, expression: a };
506
+ return e.moddle.create(`${t}:Field`, o);
507
+ }
508
+ function ft(e, i, t) {
509
+ const { scriptType: n, scriptFormat: s, value: r, resource: a } = i, o = n === "inlineScript" ? { scriptFormat: s, value: r } : { scriptFormat: s, resource: a };
510
+ return e.moddle.create(`${t}:Script`, o);
511
+ }
512
+ function U(e, i, t) {
513
+ const n = e.moddle.create("bpmn:ExtensionElements", {
514
+ values: t
515
+ });
516
+ e.modeling.updateProperties(i, {
517
+ extensionElements: n
518
+ });
519
+ }
520
+ function bt(e = 8, i) {
521
+ let t = "";
522
+ const n = i || "0123456789abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ";
523
+ for (let s = e; s > 0; --s)
524
+ t += n[Math.floor(Math.random() * n.length)];
525
+ return t;
526
+ }
527
+ const yt = (e, i = "body") => e ? e.get(i) : null, ht = (e, i, t = "body", n) => {
528
+ vt(e, i, { [t]: n });
529
+ }, vt = ({ modeling: e }, i, t) => {
530
+ e.updateProperties(i, t);
531
+ };
532
+ var gt = function() {
479
533
  var e = this, i = e.$createElement, t = e._self._c || i;
480
534
  return t("div", {
481
535
  staticClass: "panel-tab__content"
@@ -530,7 +584,27 @@ var dt = function() {
530
584
  },
531
585
  expression: "businessObject.name"
532
586
  }
533
- })], 1), e.businessObject.$type === "bpmn:Process" ? [t("ElFormItem", {
587
+ })], 1), e.businessObject.$type === "bpmn:UserTask" ? t("ElFormItem", {
588
+ attrs: {
589
+ label: "跳过表达式"
590
+ }
591
+ }, [t("ElInput", {
592
+ attrs: {
593
+ clearable: ""
594
+ },
595
+ on: {
596
+ input: function(n) {
597
+ return e.updateProp(e.skipExpressionProp, n);
598
+ }
599
+ },
600
+ model: {
601
+ value: e.skipExpression,
602
+ callback: function(n) {
603
+ e.skipExpression = n;
604
+ },
605
+ expression: "skipExpression"
606
+ }
607
+ })], 1) : e._e(), e.businessObject.$type === "bpmn:Process" ? [t("ElFormItem", {
534
608
  attrs: {
535
609
  label: "版本标签"
536
610
  }
@@ -593,9 +667,13 @@ var dt = function() {
593
667
  expression: "businessObject.isExpanded"
594
668
  }
595
669
  })], 1) : e._e()], 2)], 1);
596
- }, ft = [];
597
- const bt = {
670
+ }, Et = [];
671
+ const Ft = {
598
672
  name: "ElementBaseInfo",
673
+ inject: {
674
+ prefix: "prefix",
675
+ width: "width"
676
+ },
599
677
  props: {
600
678
  id: String,
601
679
  idEditDisabled: {
@@ -607,15 +685,22 @@ const bt = {
607
685
  },
608
686
  data() {
609
687
  return {
688
+ skipExpression: "",
610
689
  businessObject: {}
611
690
  };
612
691
  },
692
+ computed: {
693
+ skipExpressionProp() {
694
+ return `${this.prefix}:skipExpression`;
695
+ }
696
+ },
613
697
  watch: {
614
698
  id: "init"
615
699
  },
616
700
  methods: {
617
701
  init(e) {
618
- e ? (this.businessObject = g(this.element.businessObject), this.businessObject.$type === "bpmn:SubProcess" && this.$set(this.businessObject, "isExpanded", this.element.di.isExpanded)) : this.businessObject = {};
702
+ const { businessObject: i } = this.element;
703
+ e ? (this.businessObject = g(i), this.businessObject.$type === "bpmn:SubProcess" && this.$set(this.businessObject, "isExpanded", this.element.di.isExpanded)) : this.businessObject = {}, this.skipExpression = yt(i, this.skipExpressionProp);
619
704
  },
620
705
  updateBaseInfo(e) {
621
706
  const { modeling: i } = this.bpmnInstances;
@@ -631,27 +716,30 @@ const bt = {
631
716
  return;
632
717
  }
633
718
  i.updateProperties(this.element, { [e]: this.businessObject[e] });
719
+ },
720
+ updateProp(e, i) {
721
+ ht(this.bpmnInstances, this.element, e, i);
634
722
  }
635
723
  }
636
724
  }, ie = {};
637
- var yt = /* @__PURE__ */ h(
638
- bt,
639
- dt,
640
- ft,
725
+ var xt = /* @__PURE__ */ h(
726
+ Ft,
727
+ gt,
728
+ Et,
641
729
  !1,
642
- ht,
730
+ St,
643
731
  null,
644
732
  null,
645
733
  null
646
734
  );
647
- function ht(e) {
735
+ function St(e) {
648
736
  for (let i in ie)
649
737
  this[i] = ie[i];
650
738
  }
651
- const vt = /* @__PURE__ */ function() {
652
- return yt.exports;
739
+ const Tt = /* @__PURE__ */ function() {
740
+ return xt.exports;
653
741
  }();
654
- var gt = function() {
742
+ var Ct = function() {
655
743
  var e = this, i = e.$createElement, t = e._self._c || i;
656
744
  return t("div", {
657
745
  staticClass: "panel-tab__content"
@@ -682,8 +770,8 @@ var gt = function() {
682
770
  expression: "documentation"
683
771
  }
684
772
  })], 1)])]);
685
- }, Et = [];
686
- const Ft = {
773
+ }, It = [];
774
+ const _t = {
687
775
  name: "ElementOtherConfig",
688
776
  props: {
689
777
  id: String,
@@ -720,24 +808,24 @@ const Ft = {
720
808
  }
721
809
  }
722
810
  }, se = {};
723
- var xt = /* @__PURE__ */ h(
724
- Ft,
725
- gt,
726
- Et,
811
+ var kt = /* @__PURE__ */ h(
812
+ _t,
813
+ Ct,
814
+ It,
727
815
  !1,
728
- St,
816
+ At,
729
817
  null,
730
818
  null,
731
819
  null
732
820
  );
733
- function St(e) {
821
+ function At(e) {
734
822
  for (let i in se)
735
823
  this[i] = se[i];
736
824
  }
737
- const Tt = /* @__PURE__ */ function() {
738
- return xt.exports;
825
+ const wt = /* @__PURE__ */ function() {
826
+ return kt.exports;
739
827
  }();
740
- var Ct = function() {
828
+ var $t = function() {
741
829
  var e = this, i = e.$createElement, t = e._self._c || i;
742
830
  return t("div", {
743
831
  staticStyle: {
@@ -887,8 +975,8 @@ var Ct = function() {
887
975
  expression: "userTaskForm.priority"
888
976
  }
889
977
  })], 1)], 1);
890
- }, It = [];
891
- const _t = {
978
+ }, Lt = [];
979
+ const Mt = {
892
980
  name: "UserTask",
893
981
  props: {
894
982
  id: String,
@@ -931,24 +1019,24 @@ const _t = {
931
1019
  }
932
1020
  }
933
1021
  }, re = {};
934
- var kt = /* @__PURE__ */ h(
935
- _t,
936
- Ct,
937
- It,
1022
+ var Ot = /* @__PURE__ */ h(
1023
+ Mt,
1024
+ $t,
1025
+ Lt,
938
1026
  !1,
939
- At,
1027
+ Pt,
940
1028
  null,
941
1029
  null,
942
1030
  null
943
1031
  );
944
- function At(e) {
1032
+ function Pt(e) {
945
1033
  for (let i in re)
946
1034
  this[i] = re[i];
947
1035
  }
948
- const wt = /* @__PURE__ */ function() {
949
- return kt.exports;
1036
+ const Dt = /* @__PURE__ */ function() {
1037
+ return Ot.exports;
950
1038
  }();
951
- var $t = function() {
1039
+ var Bt = function() {
952
1040
  var e = this, i = e.$createElement, t = e._self._c || i;
953
1041
  return t("div", {
954
1042
  staticStyle: {
@@ -1087,8 +1175,8 @@ var $t = function() {
1087
1175
  expression: "scriptTaskForm.resultVariable"
1088
1176
  }
1089
1177
  })], 1)], 1);
1090
- }, Lt = [];
1091
- const Mt = {
1178
+ }, jt = [];
1179
+ const Rt = {
1092
1180
  name: "ScriptTask",
1093
1181
  props: {
1094
1182
  id: String,
@@ -1129,24 +1217,24 @@ const Mt = {
1129
1217
  }
1130
1218
  }
1131
1219
  }, ae = {};
1132
- var Ot = /* @__PURE__ */ h(
1133
- Mt,
1134
- $t,
1135
- Lt,
1220
+ var Vt = /* @__PURE__ */ h(
1221
+ Rt,
1222
+ Bt,
1223
+ jt,
1136
1224
  !1,
1137
- Pt,
1225
+ zt,
1138
1226
  null,
1139
1227
  null,
1140
1228
  null
1141
1229
  );
1142
- function Pt(e) {
1230
+ function zt(e) {
1143
1231
  for (let i in ae)
1144
1232
  this[i] = ae[i];
1145
1233
  }
1146
- const Dt = /* @__PURE__ */ function() {
1147
- return Ot.exports;
1234
+ const Ut = /* @__PURE__ */ function() {
1235
+ return Vt.exports;
1148
1236
  }();
1149
- var Bt = function() {
1237
+ var Nt = function() {
1150
1238
  var e = this, i = e.$createElement, t = e._self._c || i;
1151
1239
  return t("div", {
1152
1240
  staticStyle: {
@@ -1265,8 +1353,8 @@ var Bt = function() {
1265
1353
  expression: "newMessageForm.name"
1266
1354
  }
1267
1355
  })], 1)], 1)], 1)], 1);
1268
- }, jt = [];
1269
- const Rt = {
1356
+ }, Gt = [];
1357
+ const qt = {
1270
1358
  name: "ReceiveTask",
1271
1359
  props: {
1272
1360
  id: String,
@@ -1319,24 +1407,24 @@ const Rt = {
1319
1407
  }
1320
1408
  }
1321
1409
  }, oe = {};
1322
- var Vt = /* @__PURE__ */ h(
1323
- Rt,
1324
- Bt,
1325
- jt,
1410
+ var Kt = /* @__PURE__ */ h(
1411
+ qt,
1412
+ Nt,
1413
+ Gt,
1326
1414
  !1,
1327
- zt,
1415
+ Jt,
1328
1416
  null,
1329
1417
  null,
1330
1418
  null
1331
1419
  );
1332
- function zt(e) {
1420
+ function Jt(e) {
1333
1421
  for (let i in oe)
1334
1422
  this[i] = oe[i];
1335
1423
  }
1336
- const Ut = /* @__PURE__ */ function() {
1337
- return Vt.exports;
1424
+ const Zt = /* @__PURE__ */ function() {
1425
+ return Kt.exports;
1338
1426
  }();
1339
- var Nt = function() {
1427
+ var Ht = function() {
1340
1428
  var e = this, i = e.$createElement, t = e._self._c || i;
1341
1429
  return t("div", {
1342
1430
  staticClass: "panel-tab__content"
@@ -1399,10 +1487,10 @@ var Nt = function() {
1399
1487
  }) : e._e()], 1), t(e.witchTaskComponent, e._b({
1400
1488
  tag: "Component"
1401
1489
  }, "Component", e.$props, !1))], 1)], 1);
1402
- }, Gt = [];
1403
- const qt = {
1490
+ }, Wt = [];
1491
+ const Xt = {
1404
1492
  name: "ElementTaskConfig",
1405
- components: { UserTask: wt, ScriptTask: Dt, ReceiveTask: Ut },
1493
+ components: { UserTask: Dt, ScriptTask: Ut, ReceiveTask: Zt },
1406
1494
  props: {
1407
1495
  id: String,
1408
1496
  element: Object,
@@ -1451,24 +1539,24 @@ const qt = {
1451
1539
  }
1452
1540
  }
1453
1541
  }, le = {};
1454
- var Kt = /* @__PURE__ */ h(
1455
- qt,
1456
- Nt,
1457
- Gt,
1542
+ var Yt = /* @__PURE__ */ h(
1543
+ Xt,
1544
+ Ht,
1545
+ Wt,
1458
1546
  !1,
1459
- Jt,
1547
+ Qt,
1460
1548
  null,
1461
1549
  null,
1462
1550
  null
1463
1551
  );
1464
- function Jt(e) {
1552
+ function Qt(e) {
1465
1553
  for (let i in le)
1466
1554
  this[i] = le[i];
1467
1555
  }
1468
- const Zt = /* @__PURE__ */ function() {
1469
- return Kt.exports;
1556
+ const en = /* @__PURE__ */ function() {
1557
+ return Yt.exports;
1470
1558
  }();
1471
- var Ht = function() {
1559
+ var tn = function() {
1472
1560
  var e = this, i = e.$createElement, t = e._self._c || i;
1473
1561
  return t("div", {
1474
1562
  staticClass: "panel-tab__content"
@@ -1499,12 +1587,12 @@ var Ht = function() {
1499
1587
  }
1500
1588
  }, [t("ElOption", {
1501
1589
  attrs: {
1502
- label: "并行多重事件",
1590
+ label: "并行",
1503
1591
  value: "ParallelMultiInstance"
1504
1592
  }
1505
1593
  }), t("ElOption", {
1506
1594
  attrs: {
1507
- label: "时序多重事件",
1595
+ label: "串行",
1508
1596
  value: "SequentialMultiInstance"
1509
1597
  }
1510
1598
  }), t("ElOption", {
@@ -1667,8 +1755,8 @@ var Ht = function() {
1667
1755
  expression: "loopInstanceForm.timeCycle"
1668
1756
  }
1669
1757
  })], 1) : e._e()] : e._e()], 2)], 1);
1670
- }, Wt = [];
1671
- const Xt = {
1758
+ }, nn = [];
1759
+ const sn = {
1672
1760
  name: "ElementMultiInstance",
1673
1761
  inject: {
1674
1762
  prefix: "prefix"
@@ -1697,7 +1785,8 @@ const Xt = {
1697
1785
  id: {
1698
1786
  immediate: !0,
1699
1787
  handler() {
1700
- this.getElementLoop(this.element);
1788
+ const { businessObject: e } = this.element;
1789
+ this.getElementLoop(e);
1701
1790
  }
1702
1791
  }
1703
1792
  },
@@ -1780,24 +1869,24 @@ const Xt = {
1780
1869
  }
1781
1870
  }
1782
1871
  }, pe = {};
1783
- var Yt = /* @__PURE__ */ h(
1784
- Xt,
1785
- Ht,
1786
- Wt,
1872
+ var rn = /* @__PURE__ */ h(
1873
+ sn,
1874
+ tn,
1875
+ nn,
1787
1876
  !1,
1788
- Qt,
1877
+ an,
1789
1878
  null,
1790
1879
  null,
1791
1880
  null
1792
1881
  );
1793
- function Qt(e) {
1882
+ function an(e) {
1794
1883
  for (let i in pe)
1795
1884
  this[i] = pe[i];
1796
1885
  }
1797
- const en = /* @__PURE__ */ function() {
1798
- return Yt.exports;
1886
+ const on = /* @__PURE__ */ function() {
1887
+ return rn.exports;
1799
1888
  }();
1800
- var tn = function() {
1889
+ var ln = function() {
1801
1890
  var e = this, i = e.$createElement, t = e._self._c || i;
1802
1891
  return t("div", {
1803
1892
  staticClass: "panel-tab__content"
@@ -1966,8 +2055,8 @@ var tn = function() {
1966
2055
  expression: "flowConditionForm.resource"
1967
2056
  }
1968
2057
  })], 1) : e._e()] : e._e()], 2)], 1);
1969
- }, nn = [];
1970
- const sn = {
2058
+ }, pn = [];
2059
+ const mn = {
1971
2060
  name: "FlowCondition",
1972
2061
  props: {
1973
2062
  id: String,
@@ -2039,24 +2128,24 @@ const sn = {
2039
2128
  }
2040
2129
  }
2041
2130
  }, me = {};
2042
- var rn = /* @__PURE__ */ h(
2043
- sn,
2044
- tn,
2045
- nn,
2131
+ var cn = /* @__PURE__ */ h(
2132
+ mn,
2133
+ ln,
2134
+ pn,
2046
2135
  !1,
2047
- an,
2136
+ un,
2048
2137
  null,
2049
2138
  null,
2050
2139
  null
2051
2140
  );
2052
- function an(e) {
2141
+ function un(e) {
2053
2142
  for (let i in me)
2054
2143
  this[i] = me[i];
2055
2144
  }
2056
- const on = /* @__PURE__ */ function() {
2057
- return rn.exports;
2145
+ const dn = /* @__PURE__ */ function() {
2146
+ return cn.exports;
2058
2147
  }();
2059
- var ln = function() {
2148
+ var fn = function() {
2060
2149
  var e = this, i = e.$createElement, t = e._self._c || i;
2061
2150
  return t("div", {
2062
2151
  staticClass: "panel-tab__content"
@@ -2223,7 +2312,7 @@ var ln = function() {
2223
2312
  expression: "modelObjectForm.name"
2224
2313
  }
2225
2314
  })], 1)], 1)], 1)], 1);
2226
- }, pn = [function() {
2315
+ }, bn = [function() {
2227
2316
  var e = this, i = e.$createElement, t = e._self._c || i;
2228
2317
  return t("span", [t("i", {
2229
2318
  staticClass: "el-icon-menu",
@@ -2242,7 +2331,7 @@ var ln = function() {
2242
2331
  }
2243
2332
  }), e._v("信号列表")]);
2244
2333
  }];
2245
- const mn = {
2334
+ const yn = {
2246
2335
  name: "SignalAndMessage",
2247
2336
  props: {
2248
2337
  bpmnInstances: Object
@@ -2289,72 +2378,23 @@ const mn = {
2289
2378
  }
2290
2379
  }
2291
2380
  }, ce = {};
2292
- var cn = /* @__PURE__ */ h(
2293
- mn,
2294
- ln,
2295
- pn,
2381
+ var hn = /* @__PURE__ */ h(
2382
+ yn,
2383
+ fn,
2384
+ bn,
2296
2385
  !1,
2297
- un,
2386
+ vn,
2298
2387
  null,
2299
2388
  null,
2300
2389
  null
2301
2390
  );
2302
- function un(e) {
2391
+ function vn(e) {
2303
2392
  for (let i in ce)
2304
2393
  this[i] = ce[i];
2305
2394
  }
2306
- const dn = /* @__PURE__ */ function() {
2307
- return cn.exports;
2395
+ const gn = /* @__PURE__ */ function() {
2396
+ return hn.exports;
2308
2397
  }();
2309
- function ke(e, i, t, n) {
2310
- const s = /* @__PURE__ */ Object.create(null);
2311
- switch (s.event = i.event, t && (s.id = i.id), i.listenerType) {
2312
- case "scriptListener":
2313
- s.script = bn(e, i, n);
2314
- break;
2315
- case "expressionListener":
2316
- s.expression = i.expression;
2317
- break;
2318
- case "delegateExpressionListener":
2319
- s.delegateExpression = i.delegateExpression;
2320
- break;
2321
- default:
2322
- s.class = i.class;
2323
- }
2324
- if (i.fields && (s.fields = i.fields.map((r) => fn(e, r, n))), t && i.event === "timeout" && i.eventDefinitionType) {
2325
- const r = e.moddle.create("bpmn:FormalExpression", {
2326
- body: i.eventTimeDefinitions
2327
- }), a = e.moddle.create("bpmn:TimerEventDefinition", {
2328
- id: `TimerEventDefinition_${yn(8)}`,
2329
- [`time${i.eventDefinitionType.replace(/^\S/, (o) => o.toUpperCase())}`]: r
2330
- });
2331
- s.eventDefinitions = [a];
2332
- }
2333
- return e.moddle.create(`${n}:${t ? "TaskListener" : "ExecutionListener"}`, s);
2334
- }
2335
- function fn(e, i, t) {
2336
- const { name: n, fieldType: s, string: r, expression: a } = i, o = s === "string" ? { name: n, string: r } : { name: n, expression: a };
2337
- return e.moddle.create(`${t}:Field`, o);
2338
- }
2339
- function bn(e, i, t) {
2340
- const { scriptType: n, scriptFormat: s, value: r, resource: a } = i, o = n === "inlineScript" ? { scriptFormat: s, value: r } : { scriptFormat: s, resource: a };
2341
- return e.moddle.create(`${t}:Script`, o);
2342
- }
2343
- function U(e, i, t) {
2344
- const n = e.moddle.create("bpmn:ExtensionElements", {
2345
- values: t
2346
- });
2347
- e.modeling.updateProperties(i, {
2348
- extensionElements: n
2349
- });
2350
- }
2351
- function yn(e = 8, i) {
2352
- let t = "";
2353
- const n = i || "0123456789abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ";
2354
- for (let s = e; s > 0; --s)
2355
- t += n[Math.floor(Math.random() * n.length)];
2356
- return t;
2357
- }
2358
2398
  function Ae(e) {
2359
2399
  let i = f({}, e);
2360
2400
  if (e.script && (i = T(f(f({}, e), e.script), {
@@ -2379,7 +2419,7 @@ const $e = {
2379
2419
  expressionListener: "表达式",
2380
2420
  delegateExpressionListener: "代理表达式",
2381
2421
  scriptListener: "脚本"
2382
- }, hn = {
2422
+ }, En = {
2383
2423
  create: "创建",
2384
2424
  assignment: "指派",
2385
2425
  complete: "完成",
@@ -2390,7 +2430,7 @@ const $e = {
2390
2430
  string: "字符串",
2391
2431
  expression: "表达式"
2392
2432
  };
2393
- var vn = function() {
2433
+ var Fn = function() {
2394
2434
  var e = this, i = e.$createElement, t = e._self._c || i;
2395
2435
  return t("div", {
2396
2436
  staticClass: "panel-tab__content"
@@ -2965,8 +3005,8 @@ var vn = function() {
2965
3005
  expression: "listenerFieldForm.expression"
2966
3006
  }
2967
3007
  })], 1) : e._e()], 1)], 1)], 1);
2968
- }, gn = [];
2969
- const En = {
3008
+ }, xn = [];
3009
+ const Sn = {
2970
3010
  name: "ElementListeners",
2971
3011
  inject: {
2972
3012
  prefix: "prefix",
@@ -3064,24 +3104,24 @@ const En = {
3064
3104
  }
3065
3105
  }
3066
3106
  }, ue = {};
3067
- var Fn = /* @__PURE__ */ h(
3068
- En,
3069
- vn,
3070
- gn,
3071
- !1,
3107
+ var Tn = /* @__PURE__ */ h(
3108
+ Sn,
3109
+ Fn,
3072
3110
  xn,
3111
+ !1,
3112
+ Cn,
3073
3113
  null,
3074
3114
  null,
3075
3115
  null
3076
3116
  );
3077
- function xn(e) {
3117
+ function Cn(e) {
3078
3118
  for (let i in ue)
3079
3119
  this[i] = ue[i];
3080
3120
  }
3081
- const Sn = /* @__PURE__ */ function() {
3082
- return Fn.exports;
3121
+ const In = /* @__PURE__ */ function() {
3122
+ return Tn.exports;
3083
3123
  }();
3084
- var Tn = function() {
3124
+ var _n = function() {
3085
3125
  var e = this, i = e.$createElement, t = e._self._c || i;
3086
3126
  return t("div", {
3087
3127
  staticClass: "panel-tab__content"
@@ -3247,8 +3287,8 @@ var Tn = function() {
3247
3287
  expression: "propertyForm.value"
3248
3288
  }
3249
3289
  })], 1)], 1)], 1)], 1);
3250
- }, Cn = [];
3251
- const In = {
3290
+ }, kn = [];
3291
+ const An = {
3252
3292
  name: "ElementProperties",
3253
3293
  inject: {
3254
3294
  prefix: "prefix",
@@ -3323,24 +3363,24 @@ const In = {
3323
3363
  }
3324
3364
  }
3325
3365
  }, de = {};
3326
- var _n = /* @__PURE__ */ h(
3327
- In,
3328
- Tn,
3329
- Cn,
3330
- !1,
3366
+ var wn = /* @__PURE__ */ h(
3367
+ An,
3368
+ _n,
3331
3369
  kn,
3370
+ !1,
3371
+ $n,
3332
3372
  null,
3333
3373
  null,
3334
3374
  null
3335
3375
  );
3336
- function kn(e) {
3376
+ function $n(e) {
3337
3377
  for (let i in de)
3338
3378
  this[i] = de[i];
3339
3379
  }
3340
- const An = /* @__PURE__ */ function() {
3341
- return _n.exports;
3380
+ const Ln = /* @__PURE__ */ function() {
3381
+ return wn.exports;
3342
3382
  }();
3343
- var wn = function() {
3383
+ var Mn = function() {
3344
3384
  var e = this, i = e.$createElement, t = e._self._c || i;
3345
3385
  return t("div", {
3346
3386
  staticClass: "panel-tab__content"
@@ -4009,8 +4049,8 @@ var wn = function() {
4009
4049
  expression: "fieldOptionForm.value"
4010
4050
  }
4011
4051
  })], 1) : e._e()], 1)], 1)], 1);
4012
- }, $n = [];
4013
- const Ln = {
4052
+ }, On = [];
4053
+ const Pn = {
4014
4054
  name: "ElementForm",
4015
4055
  inject: {
4016
4056
  prefix: "prefix",
@@ -4142,24 +4182,24 @@ const Ln = {
4142
4182
  }
4143
4183
  }
4144
4184
  }, fe = {};
4145
- var Mn = /* @__PURE__ */ h(
4146
- Ln,
4147
- wn,
4148
- $n,
4149
- !1,
4185
+ var Dn = /* @__PURE__ */ h(
4186
+ Pn,
4187
+ Mn,
4150
4188
  On,
4189
+ !1,
4190
+ Bn,
4151
4191
  null,
4152
4192
  null,
4153
4193
  null
4154
4194
  );
4155
- function On(e) {
4195
+ function Bn(e) {
4156
4196
  for (let i in fe)
4157
4197
  this[i] = fe[i];
4158
4198
  }
4159
- const Pn = /* @__PURE__ */ function() {
4160
- return Mn.exports;
4199
+ const jn = /* @__PURE__ */ function() {
4200
+ return Dn.exports;
4161
4201
  }();
4162
- var Dn = function() {
4202
+ var Rn = function() {
4163
4203
  var e = this, i = e.$createElement, t = e._self._c || i;
4164
4204
  return t("div", {
4165
4205
  staticClass: "panel-tab__content"
@@ -4818,8 +4858,8 @@ var Dn = function() {
4818
4858
  expression: "listenerFieldForm.expression"
4819
4859
  }
4820
4860
  })], 1) : e._e()], 1)], 1)], 1);
4821
- }, Bn = [];
4822
- const jn = {
4861
+ }, Vn = [];
4862
+ const zn = {
4823
4863
  name: "UserTaskListeners",
4824
4864
  inject: {
4825
4865
  prefix: "prefix",
@@ -4833,7 +4873,7 @@ const jn = {
4833
4873
  data() {
4834
4874
  return {
4835
4875
  elementListenersList: [],
4836
- listenerEventTypeObject: hn,
4876
+ listenerEventTypeObject: En,
4837
4877
  listenerTypeObject: $e,
4838
4878
  listenerFormModelVisible: !1,
4839
4879
  listenerForm: {},
@@ -4915,24 +4955,24 @@ const jn = {
4915
4955
  }
4916
4956
  }
4917
4957
  }, be = {};
4918
- var Rn = /* @__PURE__ */ h(
4919
- jn,
4920
- Dn,
4921
- Bn,
4922
- !1,
4958
+ var Un = /* @__PURE__ */ h(
4959
+ zn,
4960
+ Rn,
4923
4961
  Vn,
4962
+ !1,
4963
+ Nn,
4924
4964
  null,
4925
4965
  null,
4926
4966
  null
4927
4967
  );
4928
- function Vn(e) {
4968
+ function Nn(e) {
4929
4969
  for (let i in be)
4930
4970
  this[i] = be[i];
4931
4971
  }
4932
- const zn = /* @__PURE__ */ function() {
4933
- return Rn.exports;
4972
+ const Gn = /* @__PURE__ */ function() {
4973
+ return Un.exports;
4934
4974
  }();
4935
- var Un = function() {
4975
+ var qn = function() {
4936
4976
  var e = this, i = e.$createElement, t = e._self._c || i;
4937
4977
  return t("div", {
4938
4978
  class: ["process-panel__container", {
@@ -5219,21 +5259,21 @@ var Un = function() {
5219
5259
  element: e.element,
5220
5260
  type: e.elementType
5221
5261
  })], 2)], 1);
5222
- }, Nn = [];
5223
- const ye = ["base", "task", "form", "multiInstance"], Gn = {
5262
+ }, Kn = [];
5263
+ const ye = ["base", "task", "form", "multiInstance"], Jn = {
5224
5264
  name: "PropertiesPanel",
5225
5265
  componentName: "MyPropertiesPanel",
5226
5266
  components: {
5227
- UserTaskListeners: zn,
5228
- ElementForm: Pn,
5229
- ElementProperties: An,
5230
- ElementListeners: Sn,
5231
- SignalAndMassage: dn,
5232
- FlowCondition: on,
5233
- ElementMultiInstance: en,
5234
- ElementTask: Zt,
5235
- ElementOtherConfig: Tt,
5236
- ElementBaseInfo: vt
5267
+ UserTaskListeners: Gn,
5268
+ ElementForm: jn,
5269
+ ElementProperties: Ln,
5270
+ ElementListeners: In,
5271
+ SignalAndMassage: gn,
5272
+ FlowCondition: dn,
5273
+ ElementMultiInstance: on,
5274
+ ElementTask: en,
5275
+ ElementOtherConfig: wt,
5276
+ ElementBaseInfo: Tt
5237
5277
  },
5238
5278
  provide() {
5239
5279
  return {
@@ -5326,23 +5366,23 @@ const ye = ["base", "task", "form", "multiInstance"], Gn = {
5326
5366
  }
5327
5367
  }
5328
5368
  }, he = {};
5329
- var qn = /* @__PURE__ */ h(
5330
- Gn,
5331
- Un,
5332
- Nn,
5333
- !1,
5369
+ var Zn = /* @__PURE__ */ h(
5370
+ Jn,
5371
+ qn,
5334
5372
  Kn,
5373
+ !1,
5374
+ Hn,
5335
5375
  null,
5336
5376
  null,
5337
5377
  null
5338
5378
  );
5339
- function Kn(e) {
5379
+ function Hn(e) {
5340
5380
  for (let i in he)
5341
5381
  this[i] = he[i];
5342
5382
  }
5343
- const Jn = /* @__PURE__ */ function() {
5344
- return qn.exports;
5345
- }(), Zn = (e, i, t) => (t = t || "camunda", `<?xml version="1.0" encoding="UTF-8"?>
5383
+ const Wn = /* @__PURE__ */ function() {
5384
+ return Zn.exports;
5385
+ }(), Xn = (e, i, t) => (t = t || "camunda", `<?xml version="1.0" encoding="UTF-8"?>
5346
5386
  <bpmn2:definitions
5347
5387
  xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
5348
5388
  xmlns:bpmn2="http://www.omg.org/spec/BPMN/20100524/MODEL"
@@ -5362,7 +5402,7 @@ const Jn = /* @__PURE__ */ function() {
5362
5402
  </bpmndi:BPMNPlane>
5363
5403
  </bpmndi:BPMNDiagram>
5364
5404
  </bpmn2:definitions>`);
5365
- function Hn(e) {
5405
+ function Yn(e) {
5366
5406
  return function(i, t) {
5367
5407
  return t = t || {}, i = e[i] || i, i.replace(/{([^}]+)}/g, function(n, s) {
5368
5408
  let r = t[s];
@@ -5370,7 +5410,7 @@ function Hn(e) {
5370
5410
  });
5371
5411
  };
5372
5412
  }
5373
- const Wn = {
5413
+ const Qn = {
5374
5414
  // 添加部分
5375
5415
  "Append EndEvent": "追加结束事件",
5376
5416
  "Append Gateway": "追加网关",
@@ -5618,9 +5658,9 @@ const Wn = {
5618
5658
  Data: "数据",
5619
5659
  TextAnnotation: "文本说明",
5620
5660
  Tasks: "任务"
5621
- }, Xn = "Camunda", Yn = "http://camunda.org/schema/1.0/bpmn", Qn = "camunda", ei = {
5661
+ }, ei = "Camunda", ti = "http://camunda.org/schema/1.0/bpmn", ni = "camunda", ii = {
5622
5662
  tagAlias: "lowerCase"
5623
- }, ti = [], ni = [
5663
+ }, si = [], ri = [
5624
5664
  {
5625
5665
  name: "Definitions",
5626
5666
  isAbstract: !0,
@@ -6736,17 +6776,17 @@ const Wn = {
6736
6776
  }
6737
6777
  ]
6738
6778
  }
6739
- ], ii = [], ve = {
6740
- name: Xn,
6741
- uri: Yn,
6742
- prefix: Qn,
6743
- xml: ei,
6744
- associations: ti,
6745
- types: ni,
6746
- emumerations: ii
6747
- }, si = "Activiti", ri = "http://activiti.org/bpmn", ai = "activiti", oi = {
6779
+ ], ai = [], ve = {
6780
+ name: ei,
6781
+ uri: ti,
6782
+ prefix: ni,
6783
+ xml: ii,
6784
+ associations: si,
6785
+ types: ri,
6786
+ emumerations: ai
6787
+ }, oi = "Activiti", li = "http://activiti.org/bpmn", pi = "activiti", mi = {
6748
6788
  tagAlias: "lowerCase"
6749
- }, li = [], pi = [
6789
+ }, ci = [], ui = [
6750
6790
  {
6751
6791
  name: "Definitions",
6752
6792
  isAbstract: !0,
@@ -7844,17 +7884,17 @@ const Wn = {
7844
7884
  }
7845
7885
  ]
7846
7886
  }
7847
- ], mi = [], ge = {
7848
- name: si,
7849
- uri: ri,
7850
- prefix: ai,
7851
- xml: oi,
7852
- associations: li,
7853
- types: pi,
7854
- emumerations: mi
7855
- }, ci = "Flowable", ui = "http://flowable.org/bpmn", di = "flowable", fi = {
7887
+ ], di = [], ge = {
7888
+ name: oi,
7889
+ uri: li,
7890
+ prefix: pi,
7891
+ xml: mi,
7892
+ associations: ci,
7893
+ types: ui,
7894
+ emumerations: di
7895
+ }, fi = "Flowable", bi = "http://flowable.org/bpmn", yi = "flowable", hi = {
7856
7896
  tagAlias: "lowerCase"
7857
- }, bi = [], yi = [], hi = [
7897
+ }, vi = [], gi = [], Ei = [
7858
7898
  {
7859
7899
  name: "InOutBinding",
7860
7900
  superClass: [
@@ -9217,14 +9257,14 @@ const Wn = {
9217
9257
  ]
9218
9258
  }
9219
9259
  ], Ee = {
9220
- name: ci,
9221
- uri: ui,
9222
- prefix: di,
9223
- xml: fi,
9224
- associations: bi,
9225
- emumerations: yi,
9226
- types: hi
9227
- }, vi = "*";
9260
+ name: fi,
9261
+ uri: bi,
9262
+ prefix: yi,
9263
+ xml: hi,
9264
+ associations: vi,
9265
+ emumerations: gi,
9266
+ types: Ei
9267
+ }, Fi = "*";
9228
9268
  function A(e) {
9229
9269
  const i = this;
9230
9270
  e.on("moddleCopy.canCopyProperty", function(t) {
@@ -9234,7 +9274,7 @@ function A(e) {
9234
9274
  }
9235
9275
  A.$inject = ["eventBus"];
9236
9276
  A.prototype.canCopyProperty = function(e, i) {
9237
- if (ze(e) && !gi(e, i) || _(e, "camunda:InputOutput") && !this.canHostInputOutput(i) || Me(e, ["camunda:Connector", "camunda:Field"]) && !this.canHostConnector(i) || _(e, "camunda:In") && !this.canHostIn(i))
9277
+ if (ze(e) && !xi(e, i) || _(e, "camunda:InputOutput") && !this.canHostInputOutput(i) || Me(e, ["camunda:Connector", "camunda:Field"]) && !this.canHostConnector(i) || _(e, "camunda:In") && !this.canHostIn(i))
9238
9278
  return !1;
9239
9279
  };
9240
9280
  A.prototype.canHostInputOutput = function(e) {
@@ -9266,19 +9306,19 @@ function x(e, i) {
9266
9306
  if (e.$parent)
9267
9307
  return x(e.$parent, i);
9268
9308
  }
9269
- function gi(e, i) {
9309
+ function xi(e, i) {
9270
9310
  const t = e.$type && e.$model.getTypeDescriptor(e.$type), n = t && t.meta && t.meta.allowedIn;
9271
- return !n || Ei(n) ? !0 : k(n, function(s) {
9311
+ return !n || Si(n) ? !0 : k(n, function(s) {
9272
9312
  return x(i, s);
9273
9313
  });
9274
9314
  }
9275
- function Ei(e) {
9276
- return e.indexOf(vi) !== -1;
9315
+ function Si(e) {
9316
+ return e.indexOf(Fi) !== -1;
9277
9317
  }
9278
- const Fi = {
9318
+ const Ti = {
9279
9319
  __init__: ["camundaModdleExtension"],
9280
9320
  camundaModdleExtension: ["type", A]
9281
- }, xi = {
9321
+ }, Ci = {
9282
9322
  FailedJobRetryTimeCycle: ["bpmn:StartEvent", "bpmn:BoundaryEvent", "bpmn:IntermediateCatchEvent", "bpmn:Activity"],
9283
9323
  Connector: ["bpmn:EndEvent", "bpmn:IntermediateThrowEvent"],
9284
9324
  Field: ["bpmn:EndEvent", "bpmn:IntermediateThrowEvent"]
@@ -9286,22 +9326,22 @@ const Fi = {
9286
9326
  function H(e, i) {
9287
9327
  return e && typeof e.$instanceOf == "function" && e.$instanceOf(i);
9288
9328
  }
9289
- function Si(e) {
9329
+ function Ii(e) {
9290
9330
  return e && e.length;
9291
9331
  }
9292
9332
  function V(e, i) {
9293
- return Si(e) && k(e, function(t) {
9333
+ return Ii(e) && k(e, function(t) {
9294
9334
  return H(t, i);
9295
9335
  });
9296
9336
  }
9297
- function Ti(e, i) {
9337
+ function _i(e, i) {
9298
9338
  return k(i, function(t) {
9299
9339
  return H(e, t);
9300
9340
  });
9301
9341
  }
9302
9342
  function G(e, i, t) {
9303
- const n = i.name, s = xi[n.replace(/activiti:/, "")];
9304
- return n === e && Ti(t, s);
9343
+ const n = i.name, s = Ci[n.replace(/activiti:/, "")];
9344
+ return n === e && _i(t, s);
9305
9345
  }
9306
9346
  function W(e) {
9307
9347
  e.on(
@@ -9320,10 +9360,10 @@ W.prototype.canCloneProperty = function(e, i) {
9320
9360
  if (G("activiti:Connector", i, e) || G("activiti:Field", i, e))
9321
9361
  return V(e.eventDefinitions, "bpmn:MessageEventDefinition");
9322
9362
  };
9323
- const Ci = {
9363
+ const ki = {
9324
9364
  __init__: ["ActivitiModdleExtension"],
9325
9365
  ActivitiModdleExtension: ["type", W]
9326
- }, Ii = {
9366
+ }, Ai = {
9327
9367
  FailedJobRetryTimeCycle: ["bpmn:StartEvent", "bpmn:BoundaryEvent", "bpmn:IntermediateCatchEvent", "bpmn:Activity"],
9328
9368
  Connector: ["bpmn:EndEvent", "bpmn:IntermediateThrowEvent"],
9329
9369
  Field: ["bpmn:EndEvent", "bpmn:IntermediateThrowEvent"]
@@ -9331,22 +9371,22 @@ const Ci = {
9331
9371
  function X(e, i) {
9332
9372
  return e && typeof e.$instanceOf == "function" && e.$instanceOf(i);
9333
9373
  }
9334
- function _i(e) {
9374
+ function wi(e) {
9335
9375
  return e && e.length;
9336
9376
  }
9337
9377
  function z(e, i) {
9338
- return _i(e) && k(e, function(t) {
9378
+ return wi(e) && k(e, function(t) {
9339
9379
  return X(t, i);
9340
9380
  });
9341
9381
  }
9342
- function ki(e, i) {
9382
+ function $i(e, i) {
9343
9383
  return k(i, function(t) {
9344
9384
  return X(e, t);
9345
9385
  });
9346
9386
  }
9347
9387
  function q(e, i, t) {
9348
- const n = i.name, s = Ii[n.replace(/flowable:/, "")];
9349
- return n === e && ki(t, s);
9388
+ const n = i.name, s = Ai[n.replace(/flowable:/, "")];
9389
+ return n === e && $i(t, s);
9350
9390
  }
9351
9391
  function Y(e) {
9352
9392
  e.on(
@@ -9365,11 +9405,11 @@ Y.prototype.canCloneProperty = function(e, i) {
9365
9405
  if (q("flowable:Connector", i, e) || q("flowable:Field", i, e))
9366
9406
  return z(e.eventDefinitions, "bpmn:MessageEventDefinition");
9367
9407
  };
9368
- const Ai = {
9408
+ const Li = {
9369
9409
  __init__: ["FlowableModdleExtension"],
9370
9410
  FlowableModdleExtension: ["type", Y]
9371
9411
  };
9372
- var wi = function() {
9412
+ var Mi = function() {
9373
9413
  var e = this, i = e.$createElement, t = e._self._c || i;
9374
9414
  return t("div", {
9375
9415
  staticClass: "my-process-designer"
@@ -9725,10 +9765,10 @@ var wi = function() {
9725
9765
  code: e.previewResult
9726
9766
  }
9727
9767
  })], 1)], 1);
9728
- }, $i = [];
9768
+ }, Oi = [];
9729
9769
  Te.registerLanguage("xml", et);
9730
9770
  Te.registerLanguage("json", tt);
9731
- const Li = {
9771
+ const Pi = {
9732
9772
  name: "ProcessDesigner",
9733
9773
  components: {
9734
9774
  HighlightJS: nt
@@ -9804,9 +9844,9 @@ const Li = {
9804
9844
  return te(this.additionalModel) ? this.additionalModel || [] : [this.additionalModel];
9805
9845
  te(this.additionalModel) ? e.push(...this.additionalModel) : this.additionalModel && e.push(this.additionalModel);
9806
9846
  const i = {
9807
- translate: ["value", Hn(this.translations || Wn)]
9847
+ translate: ["value", Yn(this.translations || Qn)]
9808
9848
  };
9809
- return e.push(i), this.simulation && e.push(Ye), e.push(Xe), this.prefix === "camunda" && e.push(Fi), this.prefix === "flowable" && e.push(Ai), this.prefix === "activiti" && e.push(Ci), e;
9849
+ return e.push(i), this.simulation && e.push(Ye), e.push(Xe), this.prefix === "camunda" && e.push(Ti), this.prefix === "flowable" && e.push(Li), this.prefix === "activiti" && e.push(ki), e;
9810
9850
  },
9811
9851
  moddleExtensions() {
9812
9852
  const e = {};
@@ -9862,7 +9902,7 @@ const Li = {
9862
9902
  /* 创建新的流程图 */
9863
9903
  createNewDiagram(e) {
9864
9904
  return u(this, null, function* () {
9865
- const i = this.processId || `Process_${new Date().getTime()}`, t = this.processName || `业务流程_${new Date().getTime()}`, n = e || Zn(i, t, this.prefix);
9905
+ const i = this.processId || `Process_${new Date().getTime()}`, t = this.processName || `业务流程_${new Date().getTime()}`, n = e || Xn(i, t, this.prefix);
9866
9906
  try {
9867
9907
  const { warnings: s } = yield this.bpmnModeler.importXML(n);
9868
9908
  this.bpmnModeler.get("canvas").zoom("fit-viewport", "center"), s != null && s.length;
@@ -9990,24 +10030,24 @@ const Li = {
9990
10030
  }
9991
10031
  }
9992
10032
  }, Fe = {};
9993
- var Mi = /* @__PURE__ */ h(
9994
- Li,
9995
- wi,
9996
- $i,
9997
- !1,
10033
+ var Di = /* @__PURE__ */ h(
10034
+ Pi,
10035
+ Mi,
9998
10036
  Oi,
10037
+ !1,
10038
+ Bi,
9999
10039
  null,
10000
10040
  null,
10001
10041
  null
10002
10042
  );
10003
- function Oi(e) {
10043
+ function Bi(e) {
10004
10044
  for (let i in Fe)
10005
10045
  this[i] = Fe[i];
10006
10046
  }
10007
- const Pi = /* @__PURE__ */ function() {
10008
- return Mi.exports;
10047
+ const ji = /* @__PURE__ */ function() {
10048
+ return Di.exports;
10009
10049
  }();
10010
- var Di = function() {
10050
+ var Ri = function() {
10011
10051
  var e = this, i = e.$createElement, t = e._self._c || i;
10012
10052
  return t("div", {
10013
10053
  staticClass: "flow-designer"
@@ -10080,12 +10120,12 @@ var Di = function() {
10080
10120
  }
10081
10121
  }], null, !0)
10082
10122
  })], 1);
10083
- }, Bi = [];
10084
- const ji = {
10123
+ }, Vi = [];
10124
+ const zi = {
10085
10125
  name: "FlowDesigner",
10086
10126
  components: {
10087
- PropertiesPanel: Jn,
10088
- ProcessDesigner: Pi
10127
+ PropertiesPanel: Wn,
10128
+ ProcessDesigner: ji
10089
10129
  },
10090
10130
  props: {
10091
10131
  value: String,
@@ -10117,23 +10157,23 @@ const ji = {
10117
10157
  }
10118
10158
  }
10119
10159
  }, xe = {};
10120
- var Ri = /* @__PURE__ */ h(
10121
- ji,
10122
- Di,
10123
- Bi,
10124
- !1,
10160
+ var Ui = /* @__PURE__ */ h(
10161
+ zi,
10162
+ Ri,
10125
10163
  Vi,
10164
+ !1,
10165
+ Ni,
10126
10166
  null,
10127
10167
  null,
10128
10168
  null
10129
10169
  );
10130
- function Vi(e) {
10170
+ function Ni(e) {
10131
10171
  for (let i in xe)
10132
10172
  this[i] = xe[i];
10133
10173
  }
10134
- const us = /* @__PURE__ */ function() {
10135
- return Ri.exports;
10174
+ const bs = /* @__PURE__ */ function() {
10175
+ return Ui.exports;
10136
10176
  }();
10137
10177
  export {
10138
- us as default
10178
+ bs as default
10139
10179
  };
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@web-utils/component",
3
3
  "description": "Web Components",
4
- "version": "2.9.6",
4
+ "version": "2.9.7",
5
5
  "author": "Simple",
6
6
  "license": "MIT",
7
7
  "type": "module",
package/web-types.json CHANGED
@@ -2,7 +2,7 @@
2
2
  "$schema": "https://json.schemastore.org/web-types",
3
3
  "framework": "vue",
4
4
  "name": "@web-utils/component",
5
- "version": "2.9.6",
5
+ "version": "2.9.7",
6
6
  "contributions": {
7
7
  "html": {
8
8
  "description-markup": "markdown",