@das-fed/ui 6.4.0-dev.106 → 6.4.0-dev.107
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/package.json +5 -5
- package/packages/business-components/echarts/index.d.ts +5 -5
- package/packages/business-components/echarts/index.js +5 -4
- package/packages/business-components/echarts/index.js.gz +0 -0
- package/packages/business-components/echarts/src/Index.vue.d.ts +1 -1
- package/packages/business-components/echarts/src/type.d.ts +2 -0
- package/packages/business-components/echarts/style.css +1 -1
- package/packages/components/edit-table/index.js +206 -206
- package/packages/components/edit-table/index.js.gz +0 -0
- package/packages/components/tooltip/index.js +2 -2
- package/packages/components/tooltip/index.js.gz +0 -0
- package/packages/components/tooltip/style.css +1 -1
- package/packages/components/tooltip/style.css.gz +0 -0
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@das-fed/ui",
|
|
3
|
-
"version": "6.4.0-dev.
|
|
3
|
+
"version": "6.4.0-dev.107",
|
|
4
4
|
"description": "",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"main": "./index.js",
|
|
@@ -26,7 +26,7 @@
|
|
|
26
26
|
"@antv/x6-plugin-snapline": "^2.1.7",
|
|
27
27
|
"@antv/x6-plugin-transform": "^2.1.8",
|
|
28
28
|
"@antv/x6-vue-shape": "^2.1.2",
|
|
29
|
-
"@das-fed/cli": "6.4.0-dev.
|
|
29
|
+
"@das-fed/cli": "6.4.0-dev.107",
|
|
30
30
|
"@element-plus/icons-vue": "^2.3.1",
|
|
31
31
|
"@types/lodash": "^4.14.194",
|
|
32
32
|
"@types/lodash-es": "^4.17.9",
|
|
@@ -56,9 +56,9 @@
|
|
|
56
56
|
"vue-tsc": "^2.0.29"
|
|
57
57
|
},
|
|
58
58
|
"dependencies": {
|
|
59
|
-
"@das-fed/ui": "6.4.0-dev.
|
|
60
|
-
"@das-fed/utils": "6.4.0-dev.
|
|
61
|
-
"@das-fed/web": "6.4.0-dev.
|
|
59
|
+
"@das-fed/ui": "6.4.0-dev.107",
|
|
60
|
+
"@das-fed/utils": "6.4.0-dev.107",
|
|
61
|
+
"@das-fed/web": "6.4.0-dev.107",
|
|
62
62
|
"@wangeditor-next/editor": "5.6.31",
|
|
63
63
|
"@wangeditor-next/editor-for-vue": "5.1.14",
|
|
64
64
|
"@wangeditor-next/plugin-upload-attachment": "1.1.0",
|
|
@@ -4,7 +4,6 @@ declare const DasEcharts: import("@das-fed/utils").SFCWithInstall<import("vue").
|
|
|
4
4
|
init: (dom: HTMLDivElement) => void;
|
|
5
5
|
setOption: (options: echarts.EChartsCoreOption) => void;
|
|
6
6
|
}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<import("./src/type.js").Props> & Readonly<{}>, {
|
|
7
|
-
key: string | number;
|
|
8
7
|
height: number | string;
|
|
9
8
|
className: string;
|
|
10
9
|
width: number | string;
|
|
@@ -18,6 +17,7 @@ declare const DasEcharts: import("@das-fed/utils").SFCWithInstall<import("vue").
|
|
|
18
17
|
lazyUpdate: boolean;
|
|
19
18
|
silent: false;
|
|
20
19
|
replaceMerge: string | string[];
|
|
20
|
+
chartKey: string | number;
|
|
21
21
|
maxLabelTooltipLength: number;
|
|
22
22
|
yOverflowTooltip: boolean;
|
|
23
23
|
xOverflowTooltip: boolean;
|
|
@@ -32,7 +32,6 @@ declare const DasEchartsRef: () => import("vue").Ref<import("vue").CreateCompone
|
|
|
32
32
|
init: (dom: HTMLDivElement) => void;
|
|
33
33
|
setOption: (options: echarts.EChartsCoreOption) => void;
|
|
34
34
|
}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, import("vue").PublicProps, {
|
|
35
|
-
key: string | number;
|
|
36
35
|
height: number | string;
|
|
37
36
|
className: string;
|
|
38
37
|
width: number | string;
|
|
@@ -46,6 +45,7 @@ declare const DasEchartsRef: () => import("vue").Ref<import("vue").CreateCompone
|
|
|
46
45
|
lazyUpdate: boolean;
|
|
47
46
|
silent: false;
|
|
48
47
|
replaceMerge: string | string[];
|
|
48
|
+
chartKey: string | number;
|
|
49
49
|
maxLabelTooltipLength: number;
|
|
50
50
|
yOverflowTooltip: boolean;
|
|
51
51
|
xOverflowTooltip: boolean;
|
|
@@ -66,7 +66,6 @@ declare const DasEchartsRef: () => import("vue").Ref<import("vue").CreateCompone
|
|
|
66
66
|
init: (dom: HTMLDivElement) => void;
|
|
67
67
|
setOption: (options: echarts.EChartsCoreOption) => void;
|
|
68
68
|
}, {}, {}, {}, {
|
|
69
|
-
key: string | number;
|
|
70
69
|
height: number | string;
|
|
71
70
|
className: string;
|
|
72
71
|
width: number | string;
|
|
@@ -80,6 +79,7 @@ declare const DasEchartsRef: () => import("vue").Ref<import("vue").CreateCompone
|
|
|
80
79
|
lazyUpdate: boolean;
|
|
81
80
|
silent: false;
|
|
82
81
|
replaceMerge: string | string[];
|
|
82
|
+
chartKey: string | number;
|
|
83
83
|
maxLabelTooltipLength: number;
|
|
84
84
|
yOverflowTooltip: boolean;
|
|
85
85
|
xOverflowTooltip: boolean;
|
|
@@ -93,7 +93,6 @@ declare const DasEchartsRef: () => import("vue").Ref<import("vue").CreateCompone
|
|
|
93
93
|
init: (dom: HTMLDivElement) => void;
|
|
94
94
|
setOption: (options: echarts.EChartsCoreOption) => void;
|
|
95
95
|
}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, import("vue").PublicProps, {
|
|
96
|
-
key: string | number;
|
|
97
96
|
height: number | string;
|
|
98
97
|
className: string;
|
|
99
98
|
width: number | string;
|
|
@@ -107,6 +106,7 @@ declare const DasEchartsRef: () => import("vue").Ref<import("vue").CreateCompone
|
|
|
107
106
|
lazyUpdate: boolean;
|
|
108
107
|
silent: false;
|
|
109
108
|
replaceMerge: string | string[];
|
|
109
|
+
chartKey: string | number;
|
|
110
110
|
maxLabelTooltipLength: number;
|
|
111
111
|
yOverflowTooltip: boolean;
|
|
112
112
|
xOverflowTooltip: boolean;
|
|
@@ -127,7 +127,6 @@ declare const DasEchartsRef: () => import("vue").Ref<import("vue").CreateCompone
|
|
|
127
127
|
init: (dom: HTMLDivElement) => void;
|
|
128
128
|
setOption: (options: echarts.EChartsCoreOption) => void;
|
|
129
129
|
}, {}, {}, {}, {
|
|
130
|
-
key: string | number;
|
|
131
130
|
height: number | string;
|
|
132
131
|
className: string;
|
|
133
132
|
width: number | string;
|
|
@@ -141,6 +140,7 @@ declare const DasEchartsRef: () => import("vue").Ref<import("vue").CreateCompone
|
|
|
141
140
|
lazyUpdate: boolean;
|
|
142
141
|
silent: false;
|
|
143
142
|
replaceMerge: string | string[];
|
|
143
|
+
chartKey: string | number;
|
|
144
144
|
maxLabelTooltipLength: number;
|
|
145
145
|
yOverflowTooltip: boolean;
|
|
146
146
|
xOverflowTooltip: boolean;
|
|
@@ -44626,7 +44626,8 @@ const S9 = /* @__PURE__ */ Z7(_9), x9 = ["id"], b9 = /* @__PURE__ */ FL({
|
|
|
44626
44626
|
lazyUpdate: { type: Boolean, default: !1 },
|
|
44627
44627
|
silent: { type: Boolean, default: !1 },
|
|
44628
44628
|
replaceMerge: { default: "" },
|
|
44629
|
-
|
|
44629
|
+
chartKey: { default: 0 },
|
|
44630
|
+
key: {},
|
|
44630
44631
|
maxLabelTooltipLength: { default: 4 },
|
|
44631
44632
|
yOverflowTooltip: { type: Boolean, default: !1 },
|
|
44632
44633
|
xOverflowTooltip: { type: Boolean, default: !1 },
|
|
@@ -44642,7 +44643,7 @@ const S9 = /* @__PURE__ */ Z7(_9), x9 = ["id"], b9 = /* @__PURE__ */ FL({
|
|
|
44642
44643
|
() => `width:${n.width ? n.width + "px" : "100%"};height:${n.height ? n.height + "px" : "100%"}`
|
|
44643
44644
|
), o = be(() => n.className), s = be(() => n.options || {}), l = be(
|
|
44644
44645
|
() => n.colorList && n.colorList.length > 0 ? n.colorList.concat(Hw) : Hw
|
|
44645
|
-
), u = be(() => n.notMerge), f = be(() => n.replaceMerge), h = be(() => n.lazyUpdate), v = be(() => n.silent), c = be(() => n.maxLabelTooltipLength > 2 ? n.maxLabelTooltipLength : 2), d = be(() => n.yOverflowTooltip), p = be(() => n.xOverflowTooltip), g = be(() => n.pieOverflowTooltip), y = be(() => n.pieLabelName), m = be(() => n.xEmptyMaxVal), _ = be(() => n.yEmptyMaxVal), S = be(() => n.
|
|
44646
|
+
), u = be(() => n.notMerge), f = be(() => n.replaceMerge), h = be(() => n.lazyUpdate), v = be(() => n.silent), c = be(() => n.maxLabelTooltipLength > 2 ? n.maxLabelTooltipLength : 2), d = be(() => n.yOverflowTooltip), p = be(() => n.xOverflowTooltip), g = be(() => n.pieOverflowTooltip), y = be(() => n.pieLabelName), m = be(() => n.xEmptyMaxVal), _ = be(() => n.yEmptyMaxVal), S = be(() => n.chartKey);
|
|
44646
44647
|
let x = ws({});
|
|
44647
44648
|
const b = ws(!1);
|
|
44648
44649
|
ov(
|
|
@@ -44774,7 +44775,7 @@ const S9 = /* @__PURE__ */ Z7(_9), x9 = ["id"], b9 = /* @__PURE__ */ FL({
|
|
|
44774
44775
|
const V = I === "xAxis" ? R.event.offsetX : R.event.event.clientX + 40, z = I === "xAxis" ? R.event.event.clientY - 70 : R.event.event.clientY;
|
|
44775
44776
|
N.style.top = z + "px", N.style.left = V + "px";
|
|
44776
44777
|
}
|
|
44777
|
-
}), a.value.on("mouseout",
|
|
44778
|
+
}), a.value.on("mouseout", (R) => {
|
|
44778
44779
|
N && R.componentType == I && (N.style.display = "none");
|
|
44779
44780
|
}));
|
|
44780
44781
|
}, E = (I) => I === null || typeof I > "u" || I === "", P = (I) => {
|
|
@@ -44825,7 +44826,7 @@ const S9 = /* @__PURE__ */ Z7(_9), x9 = ["id"], b9 = /* @__PURE__ */ FL({
|
|
|
44825
44826
|
for (const [a, n] of e)
|
|
44826
44827
|
t[a] = n;
|
|
44827
44828
|
return t;
|
|
44828
|
-
}, T9 = /* @__PURE__ */ w9(b9, [["__scopeId", "data-v-
|
|
44829
|
+
}, T9 = /* @__PURE__ */ w9(b9, [["__scopeId", "data-v-c434b747"]]), C9 = GL(T9), M9 = () => ws(null);
|
|
44829
44830
|
export {
|
|
44830
44831
|
C9 as DasEcharts,
|
|
44831
44832
|
M9 as DasEchartsRef,
|
|
Binary file
|
|
@@ -6,7 +6,6 @@ declare const _default: import("vue").DefineComponent<Props, {
|
|
|
6
6
|
init: (dom: HTMLDivElement) => void;
|
|
7
7
|
setOption: (options: echarts.EChartsCoreOption) => void;
|
|
8
8
|
}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<Props> & Readonly<{}>, {
|
|
9
|
-
key: string | number;
|
|
10
9
|
height: number | string;
|
|
11
10
|
className: string;
|
|
12
11
|
width: number | string;
|
|
@@ -20,6 +19,7 @@ declare const _default: import("vue").DefineComponent<Props, {
|
|
|
20
19
|
lazyUpdate: boolean;
|
|
21
20
|
silent: false;
|
|
22
21
|
replaceMerge: string | string[];
|
|
22
|
+
chartKey: string | number;
|
|
23
23
|
maxLabelTooltipLength: number;
|
|
24
24
|
yOverflowTooltip: boolean;
|
|
25
25
|
xOverflowTooltip: boolean;
|
|
@@ -1 +1 @@
|
|
|
1
|
-
.das-ui-echarts[data-v-
|
|
1
|
+
.das-ui-echarts[data-v-c434b747]{width:100%;height:100%}
|