@web-utils/component 2.8.10 → 2.8.12
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/data-display/index.mjs +19 -15
- package/flow-viewer/index.mjs +3 -2
- package/form-button/index.mjs +6 -6
- package/form-input-tag/index.mjs +3 -2
- package/form-view/index.mjs +1 -1
- package/form-view/style.css +1 -1
- package/fy-curd/index.mjs +3 -2
- package/fy-form-design/index.mjs +2 -2
- package/fy-input-icon/index.mjs +3 -2
- package/package.json +1 -1
- package/process-designer/index.mjs +26 -26
- package/properties-panel/style.css +1 -1
- package/web-types.json +1 -1
package/data-display/index.mjs
CHANGED
|
@@ -1,5 +1,6 @@
|
|
|
1
|
-
import
|
|
2
|
-
|
|
1
|
+
import e from "@web-utils/component/count-up";
|
|
2
|
+
import { n as r } from "../chunks/vueComponentNormalizer.446f5dc4.mjs";
|
|
3
|
+
var l = function() {
|
|
3
4
|
var t = this, s = t.$createElement, n = t._self._c || s;
|
|
4
5
|
return n("div", {
|
|
5
6
|
staticClass: "avue-data-display"
|
|
@@ -7,9 +8,9 @@ var r = function() {
|
|
|
7
8
|
attrs: {
|
|
8
9
|
span: 24
|
|
9
10
|
}
|
|
10
|
-
}, t._l(t.data, function(a,
|
|
11
|
+
}, t._l(t.data, function(a, i) {
|
|
11
12
|
return n("ElCol", {
|
|
12
|
-
key:
|
|
13
|
+
key: i,
|
|
13
14
|
attrs: {
|
|
14
15
|
md: t.span,
|
|
15
16
|
xs: 12,
|
|
@@ -26,7 +27,7 @@ var r = function() {
|
|
|
26
27
|
target: a.target
|
|
27
28
|
},
|
|
28
29
|
on: {
|
|
29
|
-
click: function(
|
|
30
|
+
click: function(d) {
|
|
30
31
|
a.click && a.click(a);
|
|
31
32
|
}
|
|
32
33
|
}
|
|
@@ -43,9 +44,12 @@ var r = function() {
|
|
|
43
44
|
staticClass: "title"
|
|
44
45
|
}, [t._v(t._s(a.title))])], 1)])]);
|
|
45
46
|
}), 1)], 1);
|
|
46
|
-
},
|
|
47
|
-
const
|
|
47
|
+
}, c = [];
|
|
48
|
+
const p = {
|
|
48
49
|
name: "DataDisplay",
|
|
50
|
+
components: {
|
|
51
|
+
CountUp: e
|
|
52
|
+
},
|
|
49
53
|
props: {
|
|
50
54
|
option: {
|
|
51
55
|
type: Object,
|
|
@@ -71,23 +75,23 @@ const c = {
|
|
|
71
75
|
}
|
|
72
76
|
}
|
|
73
77
|
}, o = {};
|
|
74
|
-
var
|
|
75
|
-
|
|
76
|
-
r,
|
|
78
|
+
var u = /* @__PURE__ */ r(
|
|
79
|
+
p,
|
|
77
80
|
l,
|
|
81
|
+
c,
|
|
78
82
|
!1,
|
|
79
|
-
|
|
83
|
+
_,
|
|
80
84
|
null,
|
|
81
85
|
null,
|
|
82
86
|
null
|
|
83
87
|
);
|
|
84
|
-
function
|
|
88
|
+
function _(t) {
|
|
85
89
|
for (let s in o)
|
|
86
90
|
this[s] = o[s];
|
|
87
91
|
}
|
|
88
|
-
const
|
|
89
|
-
return
|
|
92
|
+
const h = /* @__PURE__ */ function() {
|
|
93
|
+
return u.exports;
|
|
90
94
|
}();
|
|
91
95
|
export {
|
|
92
|
-
|
|
96
|
+
h as default
|
|
93
97
|
};
|
package/flow-viewer/index.mjs
CHANGED
|
@@ -29,6 +29,7 @@ var d = (t, e, i) => new Promise((n, s) => {
|
|
|
29
29
|
import b from "bpmn-js/lib/NavigatedViewer";
|
|
30
30
|
import c from "diagram-js/lib/navigation/zoomscroll/ZoomScroll";
|
|
31
31
|
import M from "@web-utils/component/easy-popup";
|
|
32
|
+
import "@web-utils/component/easy-popup/style.css";
|
|
32
33
|
import { n as V } from "../chunks/vueComponentNormalizer.446f5dc4.mjs";
|
|
33
34
|
var k = function() {
|
|
34
35
|
var t = this, e = t.$createElement, i = t._self._c || e;
|
|
@@ -158,9 +159,9 @@ function A(t) {
|
|
|
158
159
|
for (let e in u)
|
|
159
160
|
this[e] = u[e];
|
|
160
161
|
}
|
|
161
|
-
const
|
|
162
|
+
const W = /* @__PURE__ */ function() {
|
|
162
163
|
return B.exports;
|
|
163
164
|
}();
|
|
164
165
|
export {
|
|
165
|
-
|
|
166
|
+
W as default
|
|
166
167
|
};
|
package/form-button/index.mjs
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
import n from "@web-utils/component/confirmable";
|
|
2
2
|
import { n as o } from "../chunks/vueComponentNormalizer.446f5dc4.mjs";
|
|
3
|
-
const
|
|
3
|
+
const r = {
|
|
4
4
|
props: {
|
|
5
5
|
type: {
|
|
6
6
|
type: String,
|
|
@@ -30,14 +30,14 @@ const l = {
|
|
|
30
30
|
default: "AwesomeButton"
|
|
31
31
|
}
|
|
32
32
|
}
|
|
33
|
-
},
|
|
33
|
+
}, l = {
|
|
34
34
|
name: "FormButton",
|
|
35
|
-
mixins: [n,
|
|
35
|
+
mixins: [n, r]
|
|
36
36
|
};
|
|
37
37
|
let a, i;
|
|
38
38
|
const e = {};
|
|
39
39
|
var u = /* @__PURE__ */ o(
|
|
40
|
-
|
|
40
|
+
l,
|
|
41
41
|
a,
|
|
42
42
|
i,
|
|
43
43
|
!1,
|
|
@@ -50,9 +50,9 @@ function s(p) {
|
|
|
50
50
|
for (let t in e)
|
|
51
51
|
this[t] = e[t];
|
|
52
52
|
}
|
|
53
|
-
const
|
|
53
|
+
const m = /* @__PURE__ */ function() {
|
|
54
54
|
return u.exports;
|
|
55
55
|
}();
|
|
56
56
|
export {
|
|
57
|
-
|
|
57
|
+
m as default
|
|
58
58
|
};
|
package/form-input-tag/index.mjs
CHANGED
|
@@ -12,6 +12,7 @@ var l = (r, e, t) => e in r ? i(r, e, { enumerable: !0, configurable: !0, writab
|
|
|
12
12
|
import { f as m } from "../chunks/form-input-mixin.4632ad36.mjs";
|
|
13
13
|
import { d, n as f } from "../chunks/index.57f871af.mjs";
|
|
14
14
|
import _ from "@web-utils/component/x-input-tag";
|
|
15
|
+
import "@web-utils/component/x-input-tag/style.css";
|
|
15
16
|
import { n as y } from "../chunks/vueComponentNormalizer.446f5dc4.mjs";
|
|
16
17
|
var v = function() {
|
|
17
18
|
var r = this, e = r.$createElement, t = r._self._c || e;
|
|
@@ -91,9 +92,9 @@ function k(r) {
|
|
|
91
92
|
for (let e in u)
|
|
92
93
|
this[e] = u[e];
|
|
93
94
|
}
|
|
94
|
-
const
|
|
95
|
+
const B = /* @__PURE__ */ function() {
|
|
95
96
|
return g.exports;
|
|
96
97
|
}();
|
|
97
98
|
export {
|
|
98
|
-
|
|
99
|
+
B as default
|
|
99
100
|
};
|
package/form-view/index.mjs
CHANGED
package/form-view/style.css
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
.form-view{display:flex;flex-direction:column;height:100%}.form-view .form-scroller-wrapper{position:relative;flex:1}.form-view .not-form{margin:0 auto}.form-view .form-view-toolbar{overflow:hidden}.form-view .form-scroller{flex:1;overflow:auto}.form-view .form-scroller .el-row{position:static}.form-view .form-content .el-form .el-row{padding-right:2rem}.form-view .form-content .el-form .el-row .el-row{padding-right:0}.form-view .form-card{box-shadow:0 2px 12px #0000001a;max-width:1000px;margin:14px auto;padding:20px;color:#303133;background-color:#fff;border:1px solid #ebeef5;border-radius:4px;transition:.3s}.form-view .form-card.un-limit{max-width:100%}.form-view .form-nav{box-shadow:0 2px 12px #0000001a;position:absolute;top:55px;left:20px;background-color:#fff}.form-view .form-nav-list{min-width:180px;padding:10px 20px}.form-view .form-nav-header{position:relative;padding:5px 20px;color:#e34e55;font-weight:700;font-size:15px;background-color:#f3f5fb}.form-view .form-nav-item{position:relative;padding:5px 0;font-family:element-icons
|
|
1
|
+
.form-view{display:flex;flex-direction:column;height:100%}.form-view .form-scroller-wrapper{position:relative;flex:1}.form-view .not-form{margin:0 auto}.form-view .form-view-toolbar{overflow:hidden}.form-view .form-scroller{position:absolute;inset:0;flex:1;overflow:auto}.form-view .form-scroller .el-row{position:static}.form-view .form-content .el-form .el-row{padding-right:2rem}.form-view .form-content .el-form .el-row .el-row{padding-right:0}.form-view .form-card{box-shadow:0 2px 12px #0000001a;overflow:hidden;max-width:1000px;margin:14px auto;padding:20px;color:#303133;background-color:#fff;border:1px solid #ebeef5;border-radius:4px;transition:.3s}.form-view .form-card.un-limit{max-width:100%}.form-view .form-nav{box-shadow:0 2px 12px #0000001a;position:absolute;top:55px;left:20px;background-color:#fff}.form-view .form-nav-list{min-width:180px;padding:10px 20px}.form-view .form-nav-header{position:relative;padding:5px 20px;color:#e34e55;font-weight:700;font-size:15px;background-color:#f3f5fb}.form-view .form-nav-item{list-style:none;position:relative;padding:5px 0;font-family:element-icons,serif;font-size:14px;cursor:pointer}.form-view .form-nav-item.active,.form-view .form-nav-item:hover{color:#e34e55;font-weight:700}.form-view .form-nav-item.active:before{position:absolute;left:-14px;content:"\e6e0"}.form-view .form-view-title{width:100%;height:36px;margin-bottom:10px;color:#333;font-size:22px;line-height:36px;text-align:center;background-color:#fff}.form-view .tip{margin:20px 0;padding:8px 16px;background-color:#ecf8ff;border-left:5px solid #50bfff;border-radius:4px}.form-view .tip p{color:#5e6d82;font-size:14px;line-height:1.5em}.form-view .tip.danger{background-color:#fde2e2;border-left-color:#f56c6c}.form-view .tip.danger p{color:#564646}.form-view .tip.warning{background-color:#f7efe2;border-left-color:#e6a23c}.form-view .tip.warning p{color:#5d564b}.form-view .select-num{color:#898989;font-size:12px}.form-view .select-num .num{font-size:19px;font-family:impact,Constantia,Georgia,serif}.form-view .el-table .el-table__header th{color:#595959;font-weight:400;background:#fff}.form-view .el-table td{padding:4px 0}.form-view .el-table td .cell .el-input .el-input__inner{padding-left:4px}.form-view .el-table td .cell .el-input.el-input--prefix .el-input__inner{padding-left:30px}.form-view .el-table td .cell .el-input.is-disabled .el-input__suffix{display:none}.form-view .el-table td .cell .el-input.is-disabled .el-input__inner{padding:0 0 0 4px;line-height:1.6;white-space:normal;word-break:break-word;background:transparent;border:0}@keyframes breathe-indicator{0%{box-shadow:0 0 0 0 var(--color-primary, #f00)}to{box-shadow:0 0 4px 1px var(--color-primary, #f00)}}.form-view .breathe-indicator-animation{animation-name:breathe-indicator;animation-duration:.3s;animation-timing-function:ease-in-out;animation-delay:.1s;animation-iteration-count:4;animation-direction:alternate}@media screen and (min-width: 1700px){.form-view.form-view__lg .form-card{position:relative;left:60px}}
|
package/fy-curd/index.mjs
CHANGED
|
@@ -9,6 +9,7 @@ import { n as f } from "../chunks/vueComponentNormalizer.446f5dc4.mjs";
|
|
|
9
9
|
import { F as J, d as L } from "../chunks/FormTemp.a77c73c4.mjs";
|
|
10
10
|
import { s as Q } from "../chunks/dic.9e90e2a4.mjs";
|
|
11
11
|
import Y from "@web-utils/component/icon-temp";
|
|
12
|
+
import "@web-utils/component/icon-temp/style.css";
|
|
12
13
|
const h = {
|
|
13
14
|
menuWidth: 220,
|
|
14
15
|
menuFixed: "right",
|
|
@@ -3105,9 +3106,9 @@ function yt(e) {
|
|
|
3105
3106
|
for (let t in T)
|
|
3106
3107
|
this[t] = T[t];
|
|
3107
3108
|
}
|
|
3108
|
-
const
|
|
3109
|
+
const Dt = /* @__PURE__ */ function() {
|
|
3109
3110
|
return vt.exports;
|
|
3110
3111
|
}();
|
|
3111
3112
|
export {
|
|
3112
|
-
|
|
3113
|
+
Dt as default
|
|
3113
3114
|
};
|
package/fy-form-design/index.mjs
CHANGED
|
@@ -7470,9 +7470,9 @@ function ul(e) {
|
|
|
7470
7470
|
for (let l in Z)
|
|
7471
7471
|
this[l] = Z[l];
|
|
7472
7472
|
}
|
|
7473
|
-
const
|
|
7473
|
+
const xl = /* @__PURE__ */ function() {
|
|
7474
7474
|
return pl.exports;
|
|
7475
7475
|
}();
|
|
7476
7476
|
export {
|
|
7477
|
-
|
|
7477
|
+
xl as default
|
|
7478
7478
|
};
|
package/fy-input-icon/index.mjs
CHANGED
|
@@ -1,5 +1,6 @@
|
|
|
1
1
|
import { p as s, e as o } from "../chunks/event.ebd9a3a6.mjs";
|
|
2
2
|
import r from "@web-utils/component/icon-temp";
|
|
3
|
+
import "@web-utils/component/icon-temp/style.css";
|
|
3
4
|
import { n as u } from "../chunks/vueComponentNormalizer.446f5dc4.mjs";
|
|
4
5
|
var c = function() {
|
|
5
6
|
var t = this, i = t.$createElement, e = t._self._c || i;
|
|
@@ -160,9 +161,9 @@ function f(t) {
|
|
|
160
161
|
for (let i in l)
|
|
161
162
|
this[i] = l[i];
|
|
162
163
|
}
|
|
163
|
-
const
|
|
164
|
+
const y = /* @__PURE__ */ function() {
|
|
164
165
|
return h.exports;
|
|
165
166
|
}();
|
|
166
167
|
export {
|
|
167
|
-
|
|
168
|
+
y as default
|
|
168
169
|
};
|
package/package.json
CHANGED
|
@@ -27,13 +27,13 @@ var d = (e, n, t) => new Promise((r, i) => {
|
|
|
27
27
|
});
|
|
28
28
|
import k from "bpmn-js/lib/Modeler";
|
|
29
29
|
import O from "bpmn-js-token-simulation";
|
|
30
|
-
import { isObject as F, isFunction as $, some as
|
|
30
|
+
import { isObject as F, isFunction as $, some as m } from "min-dash";
|
|
31
31
|
import L from "x2js";
|
|
32
32
|
import I from "highlight.js/lib/core";
|
|
33
|
-
import
|
|
34
|
-
import
|
|
35
|
-
import { n as
|
|
36
|
-
const
|
|
33
|
+
import _ from "highlight.js/lib/languages/xml";
|
|
34
|
+
import R from "highlight.js/lib/languages/json";
|
|
35
|
+
import { n as V } from "../chunks/vueComponentNormalizer.446f5dc4.mjs";
|
|
36
|
+
const z = (e, n, t) => (t = t || "camunda", `<?xml version="1.0" encoding="UTF-8"?>
|
|
37
37
|
<bpmn2:definitions
|
|
38
38
|
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
|
|
39
39
|
xmlns:bpmn2="http://www.omg.org/spec/BPMN/20100524/MODEL"
|
|
@@ -2532,7 +2532,7 @@ const U = {
|
|
|
2532
2532
|
emumerations: re
|
|
2533
2533
|
}, ae = "Flowable", se = "http://flowable.org/bpmn", oe = "flowable", pe = {
|
|
2534
2534
|
tagAlias: "lowerCase"
|
|
2535
|
-
},
|
|
2535
|
+
}, le = [], me = [
|
|
2536
2536
|
{
|
|
2537
2537
|
name: "InOutBinding",
|
|
2538
2538
|
superClass: [
|
|
@@ -3868,8 +3868,8 @@ const U = {
|
|
|
3868
3868
|
uri: se,
|
|
3869
3869
|
prefix: oe,
|
|
3870
3870
|
xml: pe,
|
|
3871
|
-
associations:
|
|
3872
|
-
types:
|
|
3871
|
+
associations: le,
|
|
3872
|
+
types: me,
|
|
3873
3873
|
emumerations: ue
|
|
3874
3874
|
}, de = "*";
|
|
3875
3875
|
function u(e) {
|
|
@@ -3881,41 +3881,41 @@ function u(e) {
|
|
|
3881
3881
|
}
|
|
3882
3882
|
u.$inject = ["eventBus"];
|
|
3883
3883
|
u.prototype.canCopyProperty = function(e, n) {
|
|
3884
|
-
if (F(e) && !ye(e, n) ||
|
|
3884
|
+
if (F(e) && !ye(e, n) || l(e, "camunda:InputOutput") && !this.canHostInputOutput(n) || P(e, ["camunda:Connector", "camunda:Field"]) && !this.canHostConnector(n) || l(e, "camunda:In") && !this.canHostIn(n))
|
|
3885
3885
|
return !1;
|
|
3886
3886
|
};
|
|
3887
3887
|
u.prototype.canHostInputOutput = function(e) {
|
|
3888
3888
|
if (s(e, "camunda:Connector"))
|
|
3889
3889
|
return !0;
|
|
3890
3890
|
const t = s(e, "bpmn:FlowNode");
|
|
3891
|
-
return !(!t || P(t, ["bpmn:StartEvent", "bpmn:Gateway", "bpmn:BoundaryEvent"]) ||
|
|
3891
|
+
return !(!t || P(t, ["bpmn:StartEvent", "bpmn:Gateway", "bpmn:BoundaryEvent"]) || l(t, "bpmn:SubProcess") && t.get("triggeredByEvent"));
|
|
3892
3892
|
};
|
|
3893
3893
|
u.prototype.canHostConnector = function(e) {
|
|
3894
3894
|
const n = s(e, "camunda:ServiceTaskLike");
|
|
3895
|
-
return
|
|
3895
|
+
return l(n, "bpmn:MessageEventDefinition") ? s(e, "bpmn:IntermediateThrowEvent") || s(e, "bpmn:EndEvent") : !0;
|
|
3896
3896
|
};
|
|
3897
3897
|
u.prototype.canHostIn = function(e) {
|
|
3898
3898
|
return s(e, "bpmn:CallActivity") ? !0 : s(e, "bpmn:SignalEventDefinition") ? s(e, "bpmn:IntermediateThrowEvent") || s(e, "bpmn:EndEvent") : !0;
|
|
3899
3899
|
};
|
|
3900
|
-
function
|
|
3900
|
+
function l(e, n) {
|
|
3901
3901
|
return e && $(e.$instanceOf) && e.$instanceOf(n);
|
|
3902
3902
|
}
|
|
3903
3903
|
function P(e, n) {
|
|
3904
|
-
return
|
|
3905
|
-
return
|
|
3904
|
+
return m(n, function(t) {
|
|
3905
|
+
return l(e, t);
|
|
3906
3906
|
});
|
|
3907
3907
|
}
|
|
3908
3908
|
function s(e, n) {
|
|
3909
3909
|
if (!n)
|
|
3910
3910
|
return e.$parent;
|
|
3911
|
-
if (
|
|
3911
|
+
if (l(e, n))
|
|
3912
3912
|
return e;
|
|
3913
3913
|
if (e.$parent)
|
|
3914
3914
|
return s(e.$parent, n);
|
|
3915
3915
|
}
|
|
3916
3916
|
function ye(e, n) {
|
|
3917
3917
|
const t = e.$type && e.$model.getTypeDescriptor(e.$type), r = t && t.meta && t.meta.allowedIn;
|
|
3918
|
-
return !r || ge(r) ? !0 :
|
|
3918
|
+
return !r || ge(r) ? !0 : m(r, function(i) {
|
|
3919
3919
|
return s(n, i);
|
|
3920
3920
|
});
|
|
3921
3921
|
}
|
|
@@ -3937,12 +3937,12 @@ function be(e) {
|
|
|
3937
3937
|
return e && e.length;
|
|
3938
3938
|
}
|
|
3939
3939
|
function y(e, n) {
|
|
3940
|
-
return be(e) &&
|
|
3940
|
+
return be(e) && m(e, function(t) {
|
|
3941
3941
|
return A(t, n);
|
|
3942
3942
|
});
|
|
3943
3943
|
}
|
|
3944
3944
|
function Ae(e, n) {
|
|
3945
|
-
return
|
|
3945
|
+
return m(n, function(t) {
|
|
3946
3946
|
return A(e, t);
|
|
3947
3947
|
});
|
|
3948
3948
|
}
|
|
@@ -3982,12 +3982,12 @@ function he(e) {
|
|
|
3982
3982
|
return e && e.length;
|
|
3983
3983
|
}
|
|
3984
3984
|
function g(e, n) {
|
|
3985
|
-
return he(e) &&
|
|
3985
|
+
return he(e) && m(e, function(t) {
|
|
3986
3986
|
return E(t, n);
|
|
3987
3987
|
});
|
|
3988
3988
|
}
|
|
3989
3989
|
function Ce(e, n) {
|
|
3990
|
-
return
|
|
3990
|
+
return m(n, function(t) {
|
|
3991
3991
|
return E(e, t);
|
|
3992
3992
|
});
|
|
3993
3993
|
}
|
|
@@ -4387,8 +4387,8 @@ var xe = function() {
|
|
|
4387
4387
|
}
|
|
4388
4388
|
})], 1)], 1);
|
|
4389
4389
|
}, we = [];
|
|
4390
|
-
I.registerLanguage("xml",
|
|
4391
|
-
I.registerLanguage("json",
|
|
4390
|
+
I.registerLanguage("xml", _);
|
|
4391
|
+
I.registerLanguage("json", R);
|
|
4392
4392
|
const Ie = {
|
|
4393
4393
|
name: "ProcessDesigner",
|
|
4394
4394
|
componentName: "MyProcessDesigner",
|
|
@@ -4513,7 +4513,7 @@ const Ie = {
|
|
|
4513
4513
|
/* 创建新的流程图 */
|
|
4514
4514
|
createNewDiagram(e) {
|
|
4515
4515
|
return d(this, null, function* () {
|
|
4516
|
-
const n = this.processId || `Process_${new Date().getTime()}`, t = this.processName || `业务流程_${new Date().getTime()}`, r = e ||
|
|
4516
|
+
const n = this.processId || `Process_${new Date().getTime()}`, t = this.processName || `业务流程_${new Date().getTime()}`, r = e || z(n, t, this.prefix);
|
|
4517
4517
|
try {
|
|
4518
4518
|
const { warnings: i } = yield this.bpmnModeler.importXML(r);
|
|
4519
4519
|
i && i.length && i.forEach((a) => console.warn(a));
|
|
@@ -4654,7 +4654,7 @@ const Ie = {
|
|
|
4654
4654
|
}
|
|
4655
4655
|
}
|
|
4656
4656
|
}, w = {};
|
|
4657
|
-
var Pe = /* @__PURE__ */
|
|
4657
|
+
var Pe = /* @__PURE__ */ V(
|
|
4658
4658
|
Ie,
|
|
4659
4659
|
xe,
|
|
4660
4660
|
we,
|
|
@@ -4668,9 +4668,9 @@ function Me(e) {
|
|
|
4668
4668
|
for (let n in w)
|
|
4669
4669
|
this[n] = w[n];
|
|
4670
4670
|
}
|
|
4671
|
-
const
|
|
4671
|
+
const Ve = /* @__PURE__ */ function() {
|
|
4672
4672
|
return Pe.exports;
|
|
4673
4673
|
}();
|
|
4674
4674
|
export {
|
|
4675
|
-
|
|
4675
|
+
Ve as default
|
|
4676
4676
|
};
|
|
@@ -1 +1 @@
|
|
|
1
|
-
.process-panel__container{box-sizing:border-box;max-height:100%;padding:0 8px;overflow-y:auto;border-left:1px solid #eee;box-shadow:0 0 8px #ccc}.panel-tab__title{padding:0 8px;font-weight:600;font-size:1.1em;line-height:1.2em}.panel-tab__title i{margin-right:8px;font-size:1.2em}.panel-tab__content{box-sizing:border-box;width:100%;padding:8px 16px;border-top:1px solid #eee}.panel-tab__content .panel-tab__content--title{display:flex;justify-content:space-between;padding-bottom:8px}.panel-tab__content .panel-tab__content--title span{flex:1;text-align:left}.element-property{display:flex;align-items:flex-start;width:100%;margin:8px 0}.element-property .element-property__label{display:block;box-sizing:border-box;width:90px;padding-right:12px;overflow:hidden;font-size:14px;line-height:32px;text-align:right}.element-property .element-property__value{flex:1;line-height:32px}.element-property .el-form-item{width:100%;margin-bottom:0;padding-bottom:18px}.list-property{flex-direction:column}.list-property .element-listener-item{display:inline-grid;grid-column-gap:8px;grid-template-columns:16px auto 32px 32px;width:100%}.list-property .element-listener-item+.element-listener-item{margin-top:8px}.listener-filed__title{display:inline-flex;align-items:center;justify-content:space-between;width:100%;margin-top:0}.listener-filed__title span{width:200px;font-size:14px;text-align:left}.listener-filed__title i{margin-right:8px}.element-drawer__button{display:inline-flex;justify-content:space-around;width:100%;margin-top:8px}.element-drawer__button>.el-button{width:100%}.el-collapse-item__content{padding-bottom:0}.el-input.is-disabled .el-input__inner{color:#999}.el-form-item.el-form-item--mini{margin-bottom:0}.el-form-item.el-form-item--mini+.el-form-item{margin-top:16px}
|
|
1
|
+
.process-panel__container{box-sizing:border-box;max-height:100%;padding:0 8px;overflow-y:auto;border-left:1px solid #eee;box-shadow:0 0 8px #ccc}.process-panel__container .panel-tab__title{padding:0 8px;font-weight:600;font-size:1.1em;line-height:1.2em}.process-panel__container .panel-tab__title i{margin-right:8px;font-size:1.2em}.process-panel__container .panel-tab__content{box-sizing:border-box;width:100%;padding:8px 16px;border-top:1px solid #eee}.process-panel__container .panel-tab__content .panel-tab__content--title{display:flex;justify-content:space-between;padding-bottom:8px}.process-panel__container .panel-tab__content .panel-tab__content--title span{flex:1;text-align:left}.process-panel__container .element-property{display:flex;align-items:flex-start;width:100%;margin:8px 0}.process-panel__container .element-property .element-property__label{display:block;box-sizing:border-box;width:90px;padding-right:12px;overflow:hidden;font-size:14px;line-height:32px;text-align:right}.process-panel__container .element-property .element-property__value{flex:1;line-height:32px}.process-panel__container .element-property .el-form-item{width:100%;margin-bottom:0;padding-bottom:18px}.process-panel__container .list-property{flex-direction:column}.process-panel__container .list-property .element-listener-item{display:inline-grid;grid-column-gap:8px;grid-template-columns:16px auto 32px 32px;width:100%}.process-panel__container .list-property .element-listener-item+.element-listener-item{margin-top:8px}.process-panel__container .listener-filed__title{display:inline-flex;align-items:center;justify-content:space-between;width:100%;margin-top:0}.process-panel__container .listener-filed__title span{width:200px;font-size:14px;text-align:left}.process-panel__container .listener-filed__title i{margin-right:8px}.process-panel__container .element-drawer__button{display:inline-flex;justify-content:space-around;width:100%;margin-top:8px}.process-panel__container .element-drawer__button>.el-button{width:100%}.process-panel__container .el-collapse-item__content{padding-bottom:0}.process-panel__container .el-input.is-disabled .el-input__inner{color:#999}.process-panel__container .el-form-item.el-form-item--mini{margin-bottom:0}.process-panel__container .el-form-item.el-form-item--mini+.el-form-item{margin-top:16px}
|