@baishuyun/ui-business 6.2.0 → 6.2.3

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.
@@ -0,0 +1,121 @@
1
+ import { t as e } from "../vendors/clsx.js";
2
+ import { t } from "../vendors/echarts.js";
3
+ import { forwardRef as n, useEffect as r, useImperativeHandle as i, useRef as a, useState as o } from "react";
4
+ import { jsx as s, jsxs as c } from "react/jsx-runtime";
5
+ //#region src/components/BubbleChart/BubbleChart.module.scss
6
+ var l = {
7
+ "auto-grid-echart": "_auto-grid-echart_1ml1k_1",
8
+ "xAxis-title": "_xAxis-title_1ml1k_6",
9
+ "yAxis-title": "_yAxis-title_1ml1k_11",
10
+ "legend-position-right": "_legend-position-right_1ml1k_20",
11
+ "legend-position-top": "_legend-position-top_1ml1k_23",
12
+ "t-dash-g2-legend": "_t-dash-g2-legend_1ml1k_27",
13
+ "bsy-chart-body": "_bsy-chart-body_1ml1k_30",
14
+ "legend-position-left": "_legend-position-left_1ml1k_33",
15
+ "t-dash-g2-legend-left": "_t-dash-g2-legend-left_1ml1k_59",
16
+ "legend-label": "_legend-label_1ml1k_77",
17
+ "legend-item": "_legend-item_1ml1k_89",
18
+ "legend-color": "_legend-color_1ml1k_97",
19
+ "t-dash-g2-legend-right": "_t-dash-g2-legend-right_1ml1k_106",
20
+ "t-dash-g2-legend-bottom": "_t-dash-g2-legend-bottom_1ml1k_153",
21
+ "t-dash-g2-legend-top": "_t-dash-g2-legend-top_1ml1k_194",
22
+ "legend-hidden": "_legend-hidden_1ml1k_235"
23
+ }, u = n((n, u) => {
24
+ let d = a(null), f = a(null), p = a(null), m = a(null), [h, g] = o(0), [_, v] = o(n.option), [y, b] = o([]), x = () => {
25
+ if (d.current) {
26
+ g(f.current?.offsetWidth || 0);
27
+ let e = [];
28
+ return n.options.xAxis.title !== "" && e.push({
29
+ type: "text",
30
+ left: "center",
31
+ [["zero", "bottom"].includes(n.options.xAxis.position) ? "bottom" : "top"]: 0,
32
+ style: {
33
+ text: n.options.xAxis.title.text,
34
+ fontSize: 14,
35
+ fill: "#121111",
36
+ textAlign: "center"
37
+ }
38
+ }), n.options.yAxis.title !== "" && e.push({
39
+ type: "text",
40
+ top: "center",
41
+ rotation: 11,
42
+ [["zero", "left"].includes(n.options.yAxis.position) ? "left" : "right"]: 0,
43
+ style: {
44
+ text: n.options.yAxis.title.text,
45
+ fontSize: 14,
46
+ fill: "#121111",
47
+ textAlign: "center"
48
+ }
49
+ }), {
50
+ ...n.option,
51
+ graphic: n.option.graphic.concat(e),
52
+ grid: {
53
+ top: 20,
54
+ bottom: 20,
55
+ left: 20,
56
+ right: 20,
57
+ containLabel: !0
58
+ }
59
+ };
60
+ }
61
+ return { ...n.option };
62
+ };
63
+ i(u, () => ({ resizeEchart: () => {
64
+ p.current?.resize();
65
+ } })), r(() => {
66
+ if (!d.current) return;
67
+ p.current = t(d.current);
68
+ let e = x();
69
+ v(e), console.info("options", e), p.current.setOption(e, !0), p.current.on("click", function(e) {
70
+ n.onChartClick && n.onChartClick(e, n.options, n.dataList);
71
+ });
72
+ let r = () => {
73
+ if (p.current) {
74
+ let e = x();
75
+ v(e), p.current.setOption(e, !1);
76
+ }
77
+ };
78
+ return setTimeout(r, 100), n.onChartReady && n.onChartReady(p.current), m.current = new ResizeObserver(() => {
79
+ p.current?.resize(), setTimeout(r, 50);
80
+ }), d.current && m.current.observe(d.current), () => {
81
+ m.current?.disconnect(), p.current?.dispose();
82
+ };
83
+ }, []), r(() => {
84
+ if (!p.current) return;
85
+ let e = x();
86
+ v(e), p.current.setOption(e, !0);
87
+ }, [n.option]);
88
+ let S = (e, t) => {
89
+ console.info(e + t), b((n) => n.includes(e + t) ? n.filter((n) => n !== e + t) : [...n, e + t]);
90
+ let n = JSON.parse(JSON.stringify(_));
91
+ n.legend.selected[e] = !n.legend.selected[e], v(n), p.current?.setOption(n);
92
+ };
93
+ return /* @__PURE__ */ c("div", {
94
+ className: e(n.className, l["auto-grid-echart"], n.options.legend?.position === "top" && l["legend-position-top"], n.options.legend?.position === "bottom" && l["legend-position-bottom"], n.options.legend?.position === "left" && l["legend-position-left"], n.options.legend?.position === "right" && l["legend-position-right"]),
95
+ children: [/* @__PURE__ */ s("div", {
96
+ ref: d,
97
+ className: l["bsy-chart-body"],
98
+ style: {
99
+ flex: 1,
100
+ height: "100%",
101
+ width: n.options?.legend?.position === "left" || n.options?.legend?.position === "right" ? `calc(100% - ${h}px)` : "100%"
102
+ }
103
+ }), n.options.legend?.enable && /* @__PURE__ */ s("div", {
104
+ className: e(l["t-dash-g2-legend"], n.options.legend?.position === "top" && l["t-dash-g2-legend-top"], n.options.legend?.position === "bottom" && l["t-dash-g2-legend-bottom"], n.options.legend?.position === "left" && l["t-dash-g2-legend-left"], n.options.legend?.position === "right" && l["t-dash-g2-legend-right"]),
105
+ ref: f,
106
+ children: (n.legendList || n.dataList).map((t, r) => /* @__PURE__ */ c("div", {
107
+ className: e(l["legend-item"], y.includes(t.name + r) ? l["legend-hidden"] : ""),
108
+ onClick: () => S(t.name, r),
109
+ children: [/* @__PURE__ */ s("span", {
110
+ className: l["legend-color"],
111
+ style: { backgroundColor: n.options.xFields[0]?.colors?.[r]?.color || "#666" }
112
+ }), /* @__PURE__ */ s("span", {
113
+ className: l["legend-label"],
114
+ children: t.name
115
+ })]
116
+ }, r))
117
+ })]
118
+ });
119
+ });
120
+ //#endregion
121
+ export { u as t };
@@ -1,5 +1,5 @@
1
1
  import { n as e } from "../vendors/echarts.js";
2
- import { t } from "./AutoGridEChart-VA8BTIj4.js";
2
+ import { t } from "./AutoGridEChart-Bf0Hx8RC.js";
3
3
  import { forwardRef as n, useImperativeHandle as r, useRef as i } from "react";
4
4
  import { jsx as a } from "react/jsx-runtime";
5
5
  var o = n((n, o) => {
@@ -18,11 +18,19 @@ var o = n((n, o) => {
18
18
  min: n,
19
19
  avg: Number(r)
20
20
  };
21
- }, d = c(n.dataList), f = u(d.index0), p = u(d.index1), m = {};
21
+ }, d = c(n.dataList), f = u(d.index0), p = u(d.index1), m = (() => {
22
+ let e = [], t = [];
23
+ return n.options.guideline?.forEach((r) => {
24
+ r.type === "fixed" ? (r.field === n.options.xFields[0].tag && e.push(r.value || 0), (r.field === n.options.yFields[0].tag || r.field === "") && t.push(r.value || 0)) : r.type === "dynamic" && (r.field === n.options.xFields[0].tag && (r.aggregate === "max" ? e.push(f.max) : r.aggregate === "min" ? e.push(f.min) : r.aggregate === "avg" && e.push(f.avg)), r.field === n.options.yFields[0].tag && (r.aggregate === "max" ? t.push(p.max) : r.aggregate === "min" ? t.push(p.min) : r.aggregate === "avg" && t.push(p.avg)));
25
+ }), {
26
+ xValues: e,
27
+ yValues: t
28
+ };
29
+ })(), h = {};
22
30
  n.dataList.forEach((e) => {
23
- m[e.name] = !0;
31
+ h[e.name] = !0;
24
32
  });
25
- let h = {
33
+ let g = {
26
34
  xAxis: {
27
35
  axisLabel: {
28
36
  color: l,
@@ -31,8 +39,8 @@ var o = n((n, o) => {
31
39
  hideOverlap: !n.options.xAxis?.label?.step,
32
40
  rotate: n.options.xAxis?.label?.rotation?.toString() || "45"
33
41
  },
34
- min: n.options.xAxis?.min || void 0,
35
- max: n.options.xAxis?.max || void 0,
42
+ min: n.options.xAxis?.min === void 0 ? m.xValues.length > 0 ? Math.min(f.min, ...m.xValues) : void 0 : n.options.xAxis.min,
43
+ max: n.options.xAxis?.max === void 0 ? m.xValues.length > 0 ? Math.max(f.max, ...m.xValues) : void 0 : n.options.xAxis.max,
36
44
  title: n.options.xAxis?.title?.text || "",
37
45
  position: n.options.xAxis?.position,
38
46
  axisLine: {
@@ -56,8 +64,8 @@ var o = n((n, o) => {
56
64
  hideOverlap: !n.options.yAxis?.label?.step,
57
65
  rotate: n.options.yAxis?.label?.rotation + " " || 45
58
66
  },
59
- min: n.options.yAxis?.min || void 0,
60
- max: n.options.yAxis?.max || void 0,
67
+ min: n.options.yAxis?.min === void 0 ? m.yValues.length > 0 ? Math.min(p.min, ...m.yValues) : void 0 : n.options.yAxis.min,
68
+ max: n.options.yAxis?.max === void 0 ? m.yValues.length > 0 ? Math.max(p.max, ...m.yValues) : void 0 : n.options.yAxis.max,
61
69
  title: n.options.yAxis?.title?.text,
62
70
  position: n.options.yAxis?.position,
63
71
  axisLine: {
@@ -92,8 +100,15 @@ var o = n((n, o) => {
92
100
  padding: 10,
93
101
  borderRadius: 4,
94
102
  formatter: (e) => {
95
- let t = `<div>${e.seriesName}</div>`;
96
- return t += `<div><span>${n.options.xFields[0].title}:</span><span>${e.value[0]}</span></div>`, t += `<div><span>${n.options.yFields[0].title}:</span><span>${e.value[1]}</span></div>`, e.componentType === "series" ? t : "";
103
+ let t = `<div style="max-width: 240px;overflow: hidden;text-overflow: ellipsis;white-space: nowrap;">${e.seriesName}</div>`;
104
+ return t += `<div style="display: flex;align-items: center;margin-top:10px;">
105
+ <span style="background-color: ${e.color.colorStops[0].color || e.color};width: 6px;height: 6px;display: inline-block;border-radius: 50%;margin-right: 6px;"></span>
106
+ <span style="max-width: 200px;overflow: hidden;text-overflow: ellipsis;white-space: nowrap;">${n.options.xFields[0].title}</span>
107
+ <span style='margin-left: 8px;'>${e.value[0]}</span>
108
+ </div>`, t += `<div style="display: flex;align-items: center;">
109
+ <span style="background-color: ${e.color.colorStops[0].color || e.color};width: 6px;height: 6px;display: inline-block;border-radius: 50%;margin-right: 6px;"></span>
110
+ <span style="max-width: 200px;overflow: hidden;text-overflow: ellipsis;white-space: nowrap;">${n.options.yFields[0].title}</span>
111
+ <span style='margin-left: 8px;>${e.value[1]}</span></div>`, e.componentType === "series" ? t : "";
97
112
  },
98
113
  triggerOn: "mousemove",
99
114
  showDelay: 0,
@@ -102,7 +117,7 @@ var o = n((n, o) => {
102
117
  },
103
118
  legend: {
104
119
  show: !1,
105
- selected: m
120
+ selected: h
106
121
  },
107
122
  graphic: n.options.guideline?.map((e) => ({
108
123
  type: "line",
@@ -143,17 +158,38 @@ var o = n((n, o) => {
143
158
  if (e.is_value_visible) return t.value;
144
159
  },
145
160
  fontSize: 12,
146
- color: e.color,
147
- distance: 5
161
+ color: e.color
148
162
  }
149
163
  };
150
- return e.type === "fixed" && (e.field === n.options.xFields[0].tag && (t.xAxis = e.value || 0), (e.field === n.options.yFields[0].tag || e.field === "") && (t.yAxis = e.value || 0)), e.type === "dynamic" && (e.field === n.options.xFields[0].tag && (e.aggregate === "max" && (t.xAxis = f.max), e.aggregate === "min" && (t.xAxis = f.min), e.aggregate === "avg" && (t.xAxis = f.avg)), e.field === n.options.yFields[0].tag && (e.aggregate === "max" && (t.yAxis = p.max), e.aggregate === "min" && (t.yAxis = p.min), e.aggregate === "avg" && (t.yAxis = p.avg)), t.type = e.aggregate), t;
151
- })
164
+ if (e.type === "fixed") {
165
+ if (e.field === n.options.xFields[0].tag) {
166
+ let r = e.value || 0, i = n.options.xAxis?.min, a = n.options.xAxis?.max;
167
+ i !== void 0 && r < i ? t.xAxis = i : a !== void 0 && r > a ? t.xAxis = a : t.xAxis = r;
168
+ }
169
+ if (e.field === n.options.yFields[0].tag || e.field === "") {
170
+ let r = e.value || 0, i = n.options.yAxis?.min, a = n.options.yAxis?.max;
171
+ i !== void 0 && r < i ? t.yAxis = i : a !== void 0 && r > a ? t.yAxis = a : t.yAxis = r;
172
+ }
173
+ }
174
+ if (e.type === "dynamic") {
175
+ if (e.field === n.options.xFields[0].tag) {
176
+ let r = n.options.xAxis?.min, i = n.options.xAxis?.max, a = f.avg;
177
+ e.aggregate === "max" ? a = f.max : e.aggregate === "min" && (a = f.min), r !== void 0 && a < r ? t.xAxis = r : i !== void 0 && a > i ? t.xAxis = i : t.xAxis = a;
178
+ }
179
+ if (e.field === n.options.yFields[0].tag) {
180
+ let r = n.options.yAxis?.min, i = n.options.yAxis?.max, a = p.avg;
181
+ e.aggregate === "max" ? a = p.max : e.aggregate === "min" && (a = p.min), r !== void 0 && a < r ? t.yAxis = r : i !== void 0 && a > i ? t.yAxis = i : t.yAxis = a;
182
+ }
183
+ t.type = e.aggregate;
184
+ }
185
+ return t;
186
+ }),
187
+ emphasis: { disabled: !0 }
152
188
  },
153
189
  color: (t.color, void 0),
154
190
  label: {
155
191
  show: n.options.chart_label.enable,
156
- distance: 5,
192
+ distance: 0,
157
193
  position: "top",
158
194
  formatter: () => `${n.options.chart_label.dimension?.enable ? t.name : ""} ${n.options.chart_label.value?.enable ? "(" + t.data[0] + "," + t.data[1] + ")" : ""}`,
159
195
  textStyle: {
@@ -194,8 +230,9 @@ var o = n((n, o) => {
194
230
  s.current.resizeEchart();
195
231
  } })), /* @__PURE__ */ a(t, {
196
232
  ref: s,
197
- option: h,
233
+ option: g,
198
234
  options: n.options,
235
+ legendList: n.legendList,
199
236
  dataList: n.dataList,
200
237
  onChartReady: n.onChartReady,
201
238
  onChartClick: n.onChartClick
@@ -1,6 +1,6 @@
1
1
  import "../vendors/echarts.js";
2
- import "./AutoGridEChart-VA8BTIj4.js";
3
- import { t as e } from "./BubbleChart-CGLJJHYy.js";
2
+ import "./AutoGridEChart-Bf0Hx8RC.js";
3
+ import { t as e } from "./BubbleChart-BTssT3eW.js";
4
4
  //#region src/components/BubbleChart/index.ts
5
5
  var t = e;
6
6
  //#endregion
@@ -1,4 +1,4 @@
1
- import { t as e } from "../BubbleChart/AutoGridEChart-VA8BTIj4.js";
1
+ import { t as e } from "../BubbleChart/AutoGridEChart-Bf0Hx8RC.js";
2
2
  import { forwardRef as t, useImperativeHandle as n, useRef as r } from "react";
3
3
  import { jsx as i } from "react/jsx-runtime";
4
4
  var a = t((t, a) => {
@@ -17,11 +17,19 @@ var a = t((t, a) => {
17
17
  min: n,
18
18
  avg: Number(r)
19
19
  };
20
- }, l = s(t.dataList), u = c(l.index0), d = c(l.index1), f = t.options.titleColor || "#121111", p = {};
20
+ }, l = s(t.dataList), u = c(l.index0), d = c(l.index1), f = t.options.titleColor || "#121111", p = (() => {
21
+ let e = [], n = [];
22
+ return t.options.guideline?.forEach((r) => {
23
+ r.type === "fixed" ? (r.field === t.options.xFields[0].tag && e.push(r.value || 0), (r.field === t.options.yFields[0].tag || r.field === "") && n.push(r.value || 0)) : r.type === "dynamic" && (r.field === t.options.xFields[0].tag && (r.aggregate === "max" ? e.push(u.max) : r.aggregate === "min" ? e.push(u.min) : r.aggregate === "avg" && e.push(u.avg)), r.field === t.options.yFields[0].tag && (r.aggregate === "max" ? n.push(d.max) : r.aggregate === "min" ? n.push(d.min) : r.aggregate === "avg" && n.push(d.avg)));
24
+ }), {
25
+ xValues: e,
26
+ yValues: n
27
+ };
28
+ })(), m = {};
21
29
  t.dataList.forEach((e) => {
22
- p[e.name] = !0;
30
+ m[e.name] = !0;
23
31
  });
24
- let m = {
32
+ let h = {
25
33
  xAxis: {
26
34
  axisLabel: {
27
35
  color: f,
@@ -30,8 +38,8 @@ var a = t((t, a) => {
30
38
  hideOverlap: !t.options.xAxis?.label?.step,
31
39
  rotate: t.options.xAxis?.label?.rotation?.toString() || "45"
32
40
  },
33
- min: t.options.xAxis?.min || void 0,
34
- max: t.options.xAxis?.max || void 0,
41
+ min: t.options.xAxis?.min === void 0 ? p.xValues.length > 0 ? Math.min(u.min, ...p.xValues) : void 0 : t.options.xAxis.min,
42
+ max: t.options.xAxis?.max === void 0 ? p.xValues.length > 0 ? Math.max(u.max, ...p.xValues) : void 0 : t.options.xAxis.max,
35
43
  title: t.options.xAxis?.title?.text || "",
36
44
  position: t.options.xAxis?.position,
37
45
  axisLine: {
@@ -55,8 +63,8 @@ var a = t((t, a) => {
55
63
  hideOverlap: !t.options.yAxis?.label?.step,
56
64
  rotate: t.options.yAxis?.label?.rotation?.toString() || "45"
57
65
  },
58
- min: t.options.yAxis?.min || void 0,
59
- max: t.options.yAxis?.max || void 0,
66
+ min: t.options.yAxis?.min === void 0 ? p.yValues.length > 0 ? Math.min(d.min, ...p.yValues) : void 0 : t.options.yAxis.min,
67
+ max: t.options.yAxis?.max === void 0 ? p.yValues.length > 0 ? Math.max(d.max, ...p.yValues) : void 0 : t.options.yAxis.max,
60
68
  title: t.options.yAxis?.title?.text,
61
69
  position: t.options.yAxis?.position,
62
70
  axisLine: {
@@ -74,6 +82,7 @@ var a = t((t, a) => {
74
82
  },
75
83
  tooltip: {
76
84
  trigger: "item",
85
+ width: 240,
77
86
  axisPointer: { type: "shadow" },
78
87
  textStyle: {
79
88
  fontSize: 14,
@@ -85,9 +94,19 @@ var a = t((t, a) => {
85
94
  padding: 10,
86
95
  borderRadius: 4,
87
96
  formatter: (e) => {
88
- let n = `<div>${e.seriesName}</div>`;
89
- return n += `<div><span>${t.options.xFields[0].title}:</span><span>${e.value[0]}</span></div>`, n += `<div><span>${t.options.yFields[0].title}:</span><span>${e.value[1]}</span></div>`, e.componentType === "series" ? n : "";
97
+ console.info(3434, e);
98
+ let n = `<div style="max-width: 240px;overflow: hidden;text-overflow: ellipsis;white-space: nowrap;">${e.seriesName}</div>`;
99
+ return n += `<div style="display: flex;align-items: center;margin-top:10px;">
100
+ <span style="background-color: ${e.color};width: 6px;height: 6px;display: inline-block;border-radius: 50%;margin-right: 6px;"></span>
101
+ <span style="max-width: 200px;overflow: hidden;text-overflow: ellipsis;white-space: nowrap;">${t.options.xFields[0].title}</span>
102
+ <span style='margin-left: 8px;'>${e.value[0]}</span>
103
+ </div>`, n += `<div style="display: flex;align-items: center;">
104
+ <span style="background-color: ${e.color};width: 6px;height: 6px;display: inline-block;border-radius: 50%;margin-right: 6px;"></span>
105
+ <span style="max-width: 200px;overflow: hidden;text-overflow: ellipsis;white-space: nowrap;">${t.options.yFields[0].title}</span>
106
+ <span style='margin-left: 8px;>${e.value[1]}</span></div>`, e.componentType === "series" ? n : "";
90
107
  },
108
+ shadowBlur: 20,
109
+ shadowColor: "#00000014",
91
110
  triggerOn: "mousemove",
92
111
  showDelay: 0,
93
112
  hideDelay: 100,
@@ -95,7 +114,7 @@ var a = t((t, a) => {
95
114
  },
96
115
  legend: {
97
116
  show: !1,
98
- selected: p
117
+ selected: m
99
118
  },
100
119
  graphic: t.options.guideline?.map((e) => ({
101
120
  type: "line",
@@ -139,14 +158,36 @@ var a = t((t, a) => {
139
158
  color: e.color
140
159
  }
141
160
  };
142
- return e.type === "fixed" && (e.field === t.options.xFields[0].tag && (n.xAxis = e.value || 0), (e.field === t.options.yFields[0].tag || e.field === "") && (n.yAxis = e.value || 0)), e.type === "dynamic" && (e.field === t.options.xFields[0].tag && (e.aggregate === "max" && (n.xAxis = u.max), e.aggregate === "min" && (n.xAxis = u.min), e.aggregate === "avg" && (n.xAxis = u.avg)), e.field === t.options.yFields[0].tag && (e.aggregate === "max" && (n.yAxis = d.max), e.aggregate === "min" && (n.yAxis = d.min), e.aggregate === "avg" && (n.yAxis = d.avg)), n.type = e.aggregate), n;
143
- })
161
+ if (e.type === "fixed") {
162
+ if (e.field === t.options.xFields[0].tag) {
163
+ let r = e.value || 0, i = t.options.xAxis?.min, a = t.options.xAxis?.max;
164
+ i !== void 0 && r < i ? n.xAxis = i : a !== void 0 && r > a ? n.xAxis = a : n.xAxis = r;
165
+ }
166
+ if (e.field === t.options.yFields[0].tag || e.field === "") {
167
+ let r = e.value || 0, i = t.options.yAxis?.min, a = t.options.yAxis?.max;
168
+ i !== void 0 && r < i ? n.yAxis = i : a !== void 0 && r > a ? n.yAxis = a : n.yAxis = r;
169
+ }
170
+ }
171
+ if (e.type === "dynamic") {
172
+ if (e.field === t.options.xFields[0].tag) {
173
+ let r = t.options.xAxis?.min, i = t.options.xAxis?.max, a = u.avg;
174
+ e.aggregate === "max" ? a = u.max : e.aggregate === "min" && (a = u.min), r !== void 0 && a < r ? n.xAxis = r : i !== void 0 && a > i ? n.xAxis = i : n.xAxis = a;
175
+ }
176
+ if (e.field === t.options.yFields[0].tag) {
177
+ let r = t.options.yAxis?.min, i = t.options.yAxis?.max, a = d.avg;
178
+ e.aggregate === "max" ? a = d.max : e.aggregate === "min" && (a = d.min), r !== void 0 && a < r ? n.yAxis = r : i !== void 0 && a > i ? n.yAxis = i : n.yAxis = a;
179
+ }
180
+ n.type = e.aggregate;
181
+ }
182
+ return console.info(2323, n), n;
183
+ }),
184
+ emphasis: { disabled: !0 }
144
185
  },
145
186
  color: t.options.xFields[0]?.colors?.[n]?.color || "#666",
146
187
  label: {
147
188
  show: t.options.chart_label.enable,
148
189
  position: "top",
149
- distance: 5,
190
+ distance: 0,
150
191
  formatter: () => `${t.options.chart_label.dimension?.enable ? e.name : ""} ${t.options.chart_label.value?.enable ? "(" + e.data[0] + "," + e.data[1] + ")" : ""}`,
151
192
  textStyle: {
152
193
  fontSize: 11,
@@ -163,8 +204,9 @@ var a = t((t, a) => {
163
204
  o.current.resizeEchart();
164
205
  } })), /* @__PURE__ */ i(e, {
165
206
  ref: o,
166
- option: m,
207
+ option: h,
167
208
  options: t.options,
209
+ legendList: t.legendList,
168
210
  dataList: t.dataList,
169
211
  onChartReady: t.onChartReady,
170
212
  onChartClick: t.onChartClick
@@ -1,6 +1,6 @@
1
1
  import "../vendors/echarts.js";
2
- import "../BubbleChart/AutoGridEChart-VA8BTIj4.js";
3
- import { t as e } from "./Scatterplot-R66_f3TZ.js";
2
+ import "../BubbleChart/AutoGridEChart-Bf0Hx8RC.js";
3
+ import { t as e } from "./Scatterplot-C7pRcWDx.js";
4
4
  //#region src/components/Scatterplot/index.ts
5
5
  var t = e;
6
6
  //#endregion
@@ -4,6 +4,7 @@ interface AutoGridEChartProps {
4
4
  option: any;
5
5
  options: any;
6
6
  dataList: any[];
7
+ legendList?: any[];
7
8
  className?: string;
8
9
  style?: React.CSSProperties;
9
10
  ref?: React.Ref<unknown> | undefined;
@@ -71,6 +71,7 @@ type BubbleChartConfig = {
71
71
  data: [number, number, number, string, string | number];
72
72
  name: string;
73
73
  }>;
74
+ legendList?: Array<any>;
74
75
  onChartReady?: (data: any) => void;
75
76
  onChartClick?: (data: any, options: any, dataList: any) => void;
76
77
  };
@@ -0,0 +1,4 @@
1
+ import { Action } from '../types/context';
2
+ import { Mock } from 'vitest';
3
+ export type DispatchMock = Mock<(action: Action) => void>;
4
+ export declare const createDispatchMock: () => DispatchMock;
@@ -1,4 +1,10 @@
1
1
  export declare const RAF_FLUSH_DEPTH = 10;
2
+ export declare class MockResizeObserver implements ResizeObserver {
3
+ observe(): void;
4
+ unobserve(): void;
5
+ disconnect(): void;
6
+ }
7
+ export declare const stubResizeObserver: () => void;
2
8
  export declare const createDomRect: (left: number, width: number) => DOMRect;
3
9
  export declare const createRafQueueStub: () => {
4
10
  stub: () => void;
@@ -62,6 +62,7 @@ type ScatterplotConfig = {
62
62
  data: Array<number>;
63
63
  name: string;
64
64
  }>;
65
+ legendList?: Array<any>;
65
66
  onChartReady?: (data: any) => void;
66
67
  onChartClick?: (data: any, options: any, dataList: any) => void;
67
68
  };
package/dist/index.css CHANGED
@@ -1,2 +1,2 @@
1
- ._auto-grid-echart_11e81_1{width:100%;height:100%;position:relative}._auto-grid-echart_11e81_1 ._xAxis-title_11e81_6{text-align:center;width:100%;position:absolute}._auto-grid-echart_11e81_1 ._yAxis-title_11e81_11{word-break:break-all;align-items:center;width:13px;height:100%;display:flex;position:absolute;top:0}._auto-grid-echart_11e81_1._legend-position-right_11e81_20{display:flex}._auto-grid-echart_11e81_1._legend-position-top_11e81_23{flex-direction:column;display:flex}._auto-grid-echart_11e81_1._legend-position-top_11e81_23 ._t-dash-g2-legend_11e81_27{order:1}._auto-grid-echart_11e81_1._legend-position-top_11e81_23 ._bsy-chart-body_11e81_30{order:2}._auto-grid-echart_11e81_1._legend-position-left_11e81_33{display:flex}._auto-grid-echart_11e81_1._legend-position-left_11e81_33 ._t-dash-g2-legend_11e81_27{order:1}._auto-grid-echart_11e81_1._legend-position-left_11e81_33 ._bsy-chart-body_11e81_30{order:2}._auto-grid-echart_11e81_1 ._t-dash-g2-legend_11e81_27{flex-wrap:wrap;flex:none;justify-content:center;max-height:30%;padding-top:0;display:flex;overflow:hidden auto}._auto-grid-echart_11e81_1 ._t-dash-g2-legend_11e81_27._t-dash-g2-legend-left_11e81_59{flex-flow:column;justify-content:center;align-items:flex-start;max-width:30%;height:100%;max-height:100%;padding:0 10px;top:0;left:0;overflow:hidden auto}._auto-grid-echart_11e81_1 ._t-dash-g2-legend_11e81_27._t-dash-g2-legend-left_11e81_59 ._legend-label_11e81_77{word-wrap:break-word;color:#808085;cursor:pointer;user-select:none;word-break:break-word;margin-left:8px;font-size:12px}._auto-grid-echart_11e81_1 ._t-dash-g2-legend_11e81_27._t-dash-g2-legend-left_11e81_59 ._legend-item_11e81_89{margin-bottom:12px;margin-right:0;line-height:24px;display:flex}._auto-grid-echart_11e81_1 ._t-dash-g2-legend_11e81_27._t-dash-g2-legend-left_11e81_59 ._legend-color_11e81_97{cursor:pointer;flex:none;width:10px;height:10px;margin-top:7px}._auto-grid-echart_11e81_1 ._t-dash-g2-legend_11e81_27._t-dash-g2-legend-right_11e81_106{flex-flow:column;justify-content:center;align-items:flex-start;max-width:30%;height:100%;max-height:100%;padding:0 10px;top:0;right:0;overflow:hidden auto}._auto-grid-echart_11e81_1 ._t-dash-g2-legend_11e81_27._t-dash-g2-legend-right_11e81_106 ._legend-label_11e81_77{word-wrap:break-word;color:#808085;cursor:pointer;user-select:none;word-break:break-word;margin-left:8px;font-size:12px}._auto-grid-echart_11e81_1 ._t-dash-g2-legend_11e81_27._t-dash-g2-legend-right_11e81_106 ._legend-item_11e81_89{margin-bottom:12px;margin-right:0;line-height:24px;display:flex}._auto-grid-echart_11e81_1 ._t-dash-g2-legend_11e81_27._t-dash-g2-legend-right_11e81_106 ._legend-color_11e81_97{cursor:pointer;flex:none;width:10px;height:10px;margin-top:7px}._auto-grid-echart_11e81_1 ._t-dash-g2-legend_11e81_27._t-dash-g2-legend-bottom_11e81_153{width:100%;max-height:30%;bottom:0}._auto-grid-echart_11e81_1 ._t-dash-g2-legend_11e81_27._t-dash-g2-legend-bottom_11e81_153 ._legend-label_11e81_77{color:#121111;cursor:pointer;text-overflow:ellipsis;user-select:none;white-space:nowrap;margin-left:8px;font-size:12px;overflow:hidden}._auto-grid-echart_11e81_1 ._t-dash-g2-legend_11e81_27._t-dash-g2-legend-bottom_11e81_153 ._legend-item_11e81_89{opacity:1;align-items:center;height:24px;min-height:24px;margin-right:12px;line-height:24px;display:flex;overflow:hidden}._auto-grid-echart_11e81_1 ._t-dash-g2-legend_11e81_27._t-dash-g2-legend-bottom_11e81_153 ._legend-color_11e81_97{cursor:pointer;flex:none;width:10px;height:10px}._auto-grid-echart_11e81_1 ._t-dash-g2-legend_11e81_27._t-dash-g2-legend-top_11e81_193{width:100%;max-height:30%;top:0}._auto-grid-echart_11e81_1 ._t-dash-g2-legend_11e81_27._t-dash-g2-legend-top_11e81_193 ._legend-label_11e81_77{color:#121111;cursor:pointer;text-overflow:ellipsis;user-select:none;white-space:nowrap;margin-left:8px;font-size:12px;overflow:hidden}._auto-grid-echart_11e81_1 ._t-dash-g2-legend_11e81_27._t-dash-g2-legend-top_11e81_193 ._legend-item_11e81_89{opacity:1;align-items:center;height:24px;min-height:24px;margin-right:12px;line-height:24px;display:flex;overflow:hidden}._auto-grid-echart_11e81_1 ._t-dash-g2-legend_11e81_27._t-dash-g2-legend-top_11e81_193 ._legend-color_11e81_97{cursor:pointer;flex:none;width:10px;height:10px}._auto-grid-echart_11e81_1 ._t-dash-g2-legend_11e81_27 ._legend-hidden_11e81_233{opacity:.5!important}[data-simplebar]{flex-flow:column wrap;place-content:flex-start;align-items:flex-start;position:relative}.simplebar-wrapper{width:inherit;height:inherit;max-width:inherit;max-height:inherit;overflow:hidden}.simplebar-mask{direction:inherit;z-index:0;margin:0;padding:0;position:absolute;inset:0;overflow:hidden;width:auto!important;height:auto!important}.simplebar-offset{-webkit-overflow-scrolling:touch;margin:0;padding:0;position:absolute;inset:0;direction:inherit!important;box-sizing:inherit!important;resize:none!important}.simplebar-content-wrapper{direction:inherit;scrollbar-width:none;-ms-overflow-style:none;width:auto;max-width:100%;height:100%;max-height:100%;display:block;position:relative;overflow:auto;box-sizing:border-box!important}.simplebar-content-wrapper::-webkit-scrollbar{width:0;height:0;display:none}.simplebar-hide-scrollbar::-webkit-scrollbar{width:0;height:0;display:none}.simplebar-content:after,.simplebar-content:before{content:" ";display:table}.simplebar-placeholder{pointer-events:none;width:100%;max-width:100%;max-height:100%}.simplebar-height-auto-observer-wrapper{float:left;z-index:-1;pointer-events:none;flex-grow:inherit;flex-shrink:0;flex-basis:0;width:100%;max-width:1px;height:100%;max-height:1px;margin:0;padding:0;position:relative;overflow:hidden;box-sizing:inherit!important}.simplebar-height-auto-observer{box-sizing:inherit;opacity:0;pointer-events:none;z-index:-1;width:1000%;min-width:1px;height:1000%;min-height:1px;display:block;position:absolute;top:0;left:0;overflow:hidden}.simplebar-track{z-index:1;pointer-events:none;position:absolute;bottom:0;right:0;overflow:hidden}[data-simplebar].simplebar-dragging,[data-simplebar].simplebar-dragging .simplebar-content{pointer-events:none;-webkit-touch-callout:none;user-select:none}[data-simplebar].simplebar-dragging .simplebar-track{pointer-events:all}.simplebar-scrollbar{min-height:10px;position:absolute;left:0;right:0}.simplebar-scrollbar:before{content:"";opacity:0;background:#000;border-radius:7px;transition:opacity .2s linear .5s;position:absolute;left:2px;right:2px}.simplebar-scrollbar.simplebar-visible:before{opacity:.5;transition-duration:0s;transition-delay:0s}.simplebar-track.simplebar-vertical{width:11px;top:0}.simplebar-scrollbar:before{inset:2px}.simplebar-track.simplebar-horizontal{height:11px;left:0}.simplebar-track.simplebar-horizontal .simplebar-scrollbar{width:auto;min-width:10px;min-height:0;inset:0 auto 0 0}[data-simplebar-direction=rtl] .simplebar-track.simplebar-vertical{left:0;right:auto}.simplebar-dummy-scrollbar-size{opacity:0;visibility:hidden;direction:rtl;width:500px;height:500px;position:fixed;overflow:scroll hidden;-ms-overflow-style:scrollbar!important}.simplebar-dummy-scrollbar-size>div{width:200%;height:200%;margin:10px 0}.simplebar-hide-scrollbar{visibility:hidden;scrollbar-width:none;-ms-overflow-style:none;position:fixed;left:0;overflow-y:scroll}._tabgroup-container_131fx_1{border-bottom:1px solid #e0e0e0;height:34px;display:flex;position:relative}._tabgroup-container__tab-item_131fx_7{text-align:center;color:#121111;cursor:pointer;flex:1;font-size:14px;line-height:34px}._tabgroup-container__tab-item_131fx_7._active_131fx_15,._tabgroup-container__tab-item_131fx_7:hover{color:#0265ff}._tabgroup-container__indicator_131fx_18{pointer-events:none;background-color:#0265ff;height:2px;position:absolute;bottom:0;left:0}._tabgroup-container__indicator--animated_131fx_26{transition:transform .3s ease-in-out}._tag-icon--primary_6y9ky_1{color:#0265ff}._tag-icon--success_6y9ky_4{color:#70c911}._tag-icon--relation_6y9ky_7{color:#e338de}._tag-icon--public_6y9ky_10{color:#d1633a}._tag-icon--role_6y9ky_13{color:#6f81bd}._tag-icon--position_6y9ky_16{color:#2bc2e1}._memer-list__option_1k9tu_1{cursor:pointer;border-radius:4px;transition:background-color .2s}._memer-list__option_1k9tu_1:hover{background-color:#f3f3f3}._memer-list__option--checkbox_1k9tu_9{padding:0 10px}._memer-list__option--sticky-header_1k9tu_12{z-index:1;background-color:#fff;position:sticky;top:0}._memer-list__option-inner_1k9tu_18{padding:6px 0}._memer-list__row_1k9tu_21{flex:1;align-items:center;gap:6px;min-width:0;display:flex;overflow:hidden}._memer-list__name_1k9tu_29{user-select:none;text-overflow:ellipsis;white-space:nowrap;flex-shrink:1;min-width:0;font-size:14px;overflow:hidden}._memer-list__checkbox-row_1k9tu_38{flex:1;align-items:center;gap:6px;min-width:0;padding:7px 0;display:flex;overflow:hidden}._memer-list__selected-summary_1k9tu_47{color:#0265ff;flex:1;padding:6px 0}._memer-list__radio_1k9tu_52{padding:6px 10px}._memer-list__checkbox_1k9tu_38,._memer-list__group_1k9tu_58{width:100%}._memer-list_1k9tu_1 .ant-radio-wrapper{justify-content:space-between;align-items:center;width:100%;display:flex}._memer-list_1k9tu_1 .ant-radio{flex-shrink:0;order:101}._memer-list_1k9tu_1 .ant-radio-label{text-overflow:ellipsis;white-space:nowrap;flex:1;order:100;align-items:center;min-width:0;overflow:hidden;padding-inline-start:0!important}._bsy-external-member__all-option_1jd7j_1{cursor:pointer;border-radius:4px;gap:6px;padding:4px;transition:background-color .2s;display:flex}._bsy-external-member__all-option_1jd7j_1:hover{background-color:#f3f3f3}._bsy-external-member__all-option--selected_1jd7j_13{color:#0265ff;background-color:#f0f6ff}._bsy-external-member__all-option--selected_1jd7j_13:hover{background-color:#f0f6ff}._bsy-external-member__icon_1jd7j_20{color:#0265ff;font-size:18px}._bsy-external-member__switcher-icon_1jd7j_24{color:#666;font-size:16px;transition:transform .3s ease-in-out}._bsy-external-member__switcher-icon--expanded_1jd7j_29{transform:rotate(90deg)}._bsy-external-member__content_1jd7j_32{padding:4px}._bsy-all-member__all-option_8jfkj_1{cursor:pointer;border-radius:4px;gap:6px;height:34px;padding:6px 10px;transition:background-color .2s;display:flex}._bsy-all-member__all-option_8jfkj_1:hover{background-color:#f3f3f3}._bsy-all-member__all-option--selected_8jfkj_14,._bsy-all-member__all-option--selected_8jfkj_14:hover{background-color:#f0f6ff}._internal-member__content_1aszs_1{padding:4px}._internal-member__icon_1aszs_4{color:#0265ff;font-size:16px}._internal-member__switcher_1aszs_8{color:#666;font-size:16px;transition:transform .3s ease-in-out}._internal-member__switcher--expanded_1aszs_13{transform:rotate(90deg)}._member-panel_10yov_1{height:100%;line-height:normal;display:flex}._member-panel__overlay-empty_10yov_6{background:#fff;flex:1;justify-content:center;align-items:center;display:flex}._member-panel__sidebar_10yov_13{flex-shrink:0;flex-basis:192px;padding:4px}._member-panel__menu_10yov_18{flex-direction:column;gap:4px;display:flex}._member-panel__menu-item_10yov_23{cursor:pointer;color:#000;border-radius:4px;padding:7px 10px;font-size:14px;transition:background-color .2s,color .2s}._member-panel__menu-item_10yov_23:hover{background-color:#f3f3f3}._member-panel__menu-item--active_10yov_34{color:#0265ff;background-color:#f0f6ff}._member-panel__panel_10yov_38{border-left:1px solid #e0e0e0;flex:1;min-width:0;padding:4px}._member-panel__panel--leading_10yov_44{border-left:none}._member-panel__panel--list_10yov_47{position:relative}._member-panel__panel--list_10yov_47:only-child{border-left:none}._member-panel__list-content_10yov_53{padding:4px}._member-panel__loading-more_10yov_56{justify-content:center;align-items:center;padding:8px 0;display:flex}._member-panel__empty_10yov_62{justify-content:center;align-items:center;display:flex;position:absolute;inset:0}._member-panel__empty-text_10yov_69{color:#999}._member-panel__deptnames_10yov_72{color:#4d609f;text-overflow:ellipsis;white-space:nowrap;flex:1;min-width:0;margin-left:4px;font-size:12px;overflow:hidden}.internal-container__icon{color:#0265ff;font-size:20px}.internal-container__arrow-icon{color:#666;font-size:16px;transition:transform .3s ease-in-out}.internal-container__arrow-icon.rotate-90{transform:rotate(90deg)}.internal-container__empty{color:#999;justify-content:center;align-items:center;display:flex;position:absolute;inset:0}._external-organization_kf3pt_1{height:100%;position:relative}._external-organization__content_kf3pt_5{position:relative}._external-organization__scroll-content_kf3pt_8{min-height:100%;position:relative}._external-organization__tree-icon_kf3pt_12{color:#0265ff}._external-organization__switcher-icon_kf3pt_15{color:#666;font-size:16px;transition:transform .3s ease-in-out}._external-organization__switcher-icon--expanded_kf3pt_20{transform:rotate(90deg)}._external-organization__empty_kf3pt_23{color:#999;justify-content:center;align-items:center;display:flex;position:absolute;inset:0}._dept-scope-panel__option-list_1x5wm_1{flex-direction:column;display:flex}._dept-scope-panel__option-item_1x5wm_6{color:#121211;cursor:pointer;border-radius:4px;padding:7px 10px;font-size:14px;transition:background-color .2s,color .2s}._dept-scope-panel__option-item_1x5wm_6:hover{background-color:#f3f3f3}._dept-scope-panel__option-checkbox_1x5wm_18,._dept-scope-panel__option-radio_1x5wm_19{width:100%}._dept-scope-panel__option-radio-group_1x5wm_23{flex-direction:column;width:100%;display:flex}._dept-scope-panel__option-radio-group_1x5wm_23 .ant-radio-wrapper{justify-content:space-between;align-items:center;width:100%;display:flex}._dept-scope-panel__option-radio-group_1x5wm_23 .ant-radio{flex-shrink:0;order:101}._dept-scope-panel__option-radio-group_1x5wm_23 .ant-radio-label{text-overflow:ellipsis;white-space:nowrap;flex:1;order:100;align-items:center;min-width:0;overflow:hidden;padding-inline-start:0!important}._dept-scope-panel__option-checkbox-row_1x5wm_49{flex:1;align-items:center;display:flex;overflow:hidden}._dept-scope-panel__option-name_1x5wm_56{color:#121211;text-overflow:ellipsis;white-space:nowrap;min-width:0;display:block;overflow:hidden}._dept-scope-panel__empty_1x5wm_65{color:#999;justify-content:center;align-items:center;display:flex;position:absolute;inset:0}._dept-scope-panel_1x5wm_1{height:100%;line-height:normal;display:flex}._dept-scope-panel__tree_1x5wm_79,._dept-scope-panel__options_1x5wm_79{flex:1;position:relative;overflow:hidden}._dept-scope-panel__options_1x5wm_79{border-left:1px solid #e0e0e0}._dept-scope-panel__tree_1x5wm_79{border-left:none}._dept-scope-panel__tree-icon_1x5wm_90{color:#0265ff;font-size:20px}._dept-scope-panel__switcher-icon_1x5wm_94{color:#666;font-size:16px;transition:transform .3s ease-in-out}._dept-scope-panel__switcher-icon--expanded_1x5wm_99{transform:rotate(90deg)}._organization-panel_1dfed_1{height:100%;line-height:normal;display:flex}._organization-panel__menu_1dfed_6{flex:0 0 200px;padding:4px}._organization-panel__menu-list_1dfed_10{flex-direction:column;display:flex}._organization-panel__menu-item_1dfed_14{cursor:pointer;color:#121211;border-radius:4px;padding:7px 10px;font-size:14px;transition:background-color .2s,color .2s}._organization-panel__menu-item_1dfed_14:hover{background-color:#f3f3f3}._organization-panel__menu-item--active_1dfed_25{color:#0265ff;background-color:#f0f6ff}._organization-panel__menu-item--active_1dfed_25:hover{background-color:#f0f6ff}._organization-panel__content_1dfed_32{border-left:1px solid #e0e0e0;flex:1;overflow:hidden}._organization-panel__content--borderless_1dfed_37{border-left:none}._group-list__list_mxdp1_1{font-size:0}._group-list__option_mxdp1_4{cursor:pointer;border-radius:4px;font-size:0;transition:background-color .2s}._group-list__option_mxdp1_4:hover{background-color:#f3f3f3}._group-list__option--checkbox_mxdp1_13{padding:0 10px}._group-list__radio_mxdp1_16{padding:6px 10px}._group-list__row_mxdp1_19{flex:1;align-items:center;gap:6px;min-width:0;display:flex}._group-list__name_mxdp1_26{user-select:none;text-overflow:ellipsis;white-space:nowrap;min-width:0;font-size:14px;overflow:hidden}._group-list__checkbox-row_mxdp1_34{flex:1;align-items:center;gap:6px;min-width:0;padding:7px 0;display:flex}._group-list__checkbox_mxdp1_34,._group-list__group_mxdp1_45{width:100%}._group-list_mxdp1_1 .ant-radio-wrapper{justify-content:space-between;align-items:center;width:100%;display:flex}._group-list_mxdp1_1 .ant-radio{flex-shrink:0;order:101}._group-list_mxdp1_1 .ant-radio-label{flex:1;order:100;align-items:center;min-width:0;padding-inline-start:0!important}._current-user-depts-panel_cjkm1_1{padding:4px;position:relative}._current-user-depts-panel__empty_cjkm1_5{color:#999;justify-content:center;align-items:center;display:flex;position:absolute;inset:0}._extra-contact-group-panel_oytrb_1{height:100%;display:flex;position:relative}._extra-contact-group-panel__menu_oytrb_6{flex:0 0 192px;padding:4px}._extra-contact-group-panel__menu-list_oytrb_10{flex-direction:column;display:flex}._extra-contact-group-panel__menu-item_oytrb_14{cursor:pointer;color:#121211;border-radius:4px;padding:7px 10px;font-size:14px;transition:background-color .2s,color .2s}._extra-contact-group-panel__menu-item_oytrb_14:hover{background-color:#f3f3f3}._extra-contact-group-panel__menu-item--active_oytrb_25{color:#0265ff;background-color:#f0f6ff}._extra-contact-group-panel__menu-item--active_oytrb_25:hover{background-color:#f0f6ff}._extra-contact-group-panel__content_oytrb_32{border-left:1px solid #e0e0e0;flex:1;position:relative}._extra-contact-group-panel__empty_oytrb_37{color:#999;justify-content:center;align-items:center;display:flex;position:absolute;inset:0}._extra-contact-group-panel--empty_oytrb_45{color:#999;justify-content:center;align-items:center;height:100%;display:flex;position:relative}._extra-contact-group-panel__loading_oytrb_53{justify-content:center;align-items:center;width:100%;height:100%;display:flex}._corp-dept-member-list_12e0y_1{min-width:0;position:relative}._corp-dept-member-list__spin_12e0y_5{height:100%;display:block}._corp-dept-member-list__spin_12e0y_5 .ant-spin-container{height:100%;position:relative}._corp-dept-member-list__scroll_12e0y_13{height:100%;padding:4px}._corp-dept-member-list__list_12e0y_17{margin:0;padding:0;list-style:none}._corp-dept-member-list__option_12e0y_22{cursor:pointer;border-radius:4px;transition:background-color .2s}._corp-dept-member-list__option_12e0y_22:hover{background-color:#f3f3f3}._corp-dept-member-list__option--checkbox_12e0y_30,._corp-dept-member-list__option--radio_12e0y_33{padding:0 10px}._corp-dept-member-list__radio-group_12e0y_36{width:100%}._corp-dept-member-list__radio-group_12e0y_36 .ant-radio-wrapper{justify-content:space-between;align-items:center;width:100%;display:flex}._corp-dept-member-list__radio-group_12e0y_36 .ant-radio{flex-shrink:0;order:101}._corp-dept-member-list__radio-group_12e0y_36 .ant-radio-label{text-overflow:ellipsis;white-space:nowrap;flex:1;order:100;align-items:center;min-width:0;overflow:hidden;padding-inline-start:0!important}._corp-dept-member-list__radio_12e0y_36{width:100%}._corp-dept-member-list__checkbox-row_12e0y_62{flex:1;align-items:center;gap:6px;min-width:0;padding:7px 0;display:flex;overflow:hidden}._corp-dept-member-list__name_12e0y_71{user-select:none;text-overflow:ellipsis;white-space:nowrap;flex-shrink:1;min-width:0;font-size:14px;overflow:hidden}._corp-dept-member-list__checkbox_12e0y_62,._corp-dept-member-list__group_12e0y_83{width:100%}._corp-dept-member-list__empty_12e0y_86{justify-content:center;align-items:center;display:flex;position:absolute;inset:0}._corp-dept-member-list__empty-text_12e0y_93{color:#999;font-size:14px}._corp-dept-tree__switcher-icon_aeo6x_1{color:#666;font-size:16px;transition:transform .3s ease-in-out}._corp-dept-tree__switcher-icon--expanded_aeo6x_6{transform:rotate(90deg)}._corp-dept-tree__empty_aeo6x_9{color:#999;justify-content:center;align-items:center;min-height:120px;font-size:14px;display:flex}._corp-flat-list__option_406kv_1{cursor:pointer;border-radius:4px;transition:background-color .2s}._corp-flat-list__option_406kv_1:hover{background-color:#f3f3f3}._corp-flat-list__option--disabled_406kv_9{cursor:not-allowed;opacity:.6}._corp-flat-list__option--disabled_406kv_9:hover{background-color:#0000}._corp-flat-list__option--checkbox_406kv_16,._corp-flat-list__option--radio_406kv_19{padding:0 10px}._corp-flat-list__radio-group_406kv_22{width:100%}._corp-flat-list__radio-group_406kv_22 .ant-radio-wrapper{justify-content:space-between;align-items:center;width:100%;display:flex}._corp-flat-list__radio-group_406kv_22 .ant-radio{flex-shrink:0;order:101}._corp-flat-list__radio-group_406kv_22 .ant-radio-label{text-overflow:ellipsis;white-space:nowrap;flex:1;order:100;align-items:center;min-width:0;overflow:hidden;padding-inline-start:0!important}._corp-flat-list__radio_406kv_22{width:100%}._corp-flat-list__name_406kv_48{user-select:none;text-overflow:ellipsis;white-space:nowrap;font-size:14px;overflow:hidden}._corp-flat-list__checkbox-row_406kv_55{flex:1;align-items:center;gap:6px;padding:7px 0;display:flex;overflow:hidden}._corp-flat-list__checkbox_406kv_55,._corp-flat-list__group_406kv_66{width:100%}._corp-label-tree_1lic4_1{height:100%;position:relative}._corp-label-tree__switcher-icon_1lic4_5{color:#666;font-size:16px;transition:transform .3s ease-in-out}._corp-label-tree__switcher-icon--expanded_1lic4_10{transform:rotate(90deg)}._corp-label-tree__empty_1lic4_13{pointer-events:none;justify-content:center;align-items:center;display:flex;position:absolute;inset:0}._corp-label-tree__empty-text_1lic4_21{color:#999;font-size:14px}._enterprise-label-list__option_1mf5d_1{cursor:pointer;border-radius:4px;transition:background-color .2s}._enterprise-label-list__option_1mf5d_1:hover{background-color:#f3f3f3}._enterprise-label-list__option--checkbox_1mf5d_9,._enterprise-label-list__option--radio_1mf5d_12{padding:0 10px}._enterprise-label-list__radio-group_1mf5d_15{width:100%}._enterprise-label-list__radio-group_1mf5d_15 .ant-radio-wrapper{justify-content:space-between;align-items:center;width:100%;display:flex}._enterprise-label-list__radio-group_1mf5d_15 .ant-radio{flex-shrink:0;order:101}._enterprise-label-list__radio-group_1mf5d_15 .ant-radio-label{text-overflow:ellipsis;white-space:nowrap;flex:1;order:100;align-items:center;min-width:0;overflow:hidden;padding-inline-start:0!important}._enterprise-label-list__radio_1mf5d_15{width:100%}._enterprise-label-list__name_1mf5d_41{user-select:none;text-overflow:ellipsis;white-space:nowrap;font-size:14px;overflow:hidden}._enterprise-label-list__checkbox-row_1mf5d_48{flex:1;align-items:center;gap:6px;padding:7px 0;display:flex;overflow:hidden}._enterprise-label-list__checkbox_1mf5d_48,._enterprise-label-list__group_1mf5d_59{width:100%}._relation-ship-list__option_bqzl7_1{cursor:pointer;border-radius:4px;transition:background-color .2s}._relation-ship-list__option_bqzl7_1:hover{background-color:#f3f3f3}._relation-ship-list__option--checkbox_bqzl7_9,._relation-ship-list__option--radio_bqzl7_12{padding:0 10px}._relation-ship-list__radio-group_bqzl7_15{width:100%}._relation-ship-list__radio-group_bqzl7_15 .ant-radio-wrapper{justify-content:space-between;align-items:center;width:100%;display:flex}._relation-ship-list__radio-group_bqzl7_15 .ant-radio{flex-shrink:0;order:101}._relation-ship-list__radio-group_bqzl7_15 .ant-radio-label{text-overflow:ellipsis;white-space:nowrap;flex:1;order:100;align-items:center;min-width:0;overflow:hidden;padding-inline-start:0!important}._relation-ship-list__radio_bqzl7_15{width:100%}._relation-ship-list__name_bqzl7_41{user-select:none;text-overflow:ellipsis;white-space:nowrap;font-size:14px;overflow:hidden}._relation-ship-list__checkbox-row_bqzl7_48{flex:1;align-items:center;gap:6px;padding:7px 0;display:flex;overflow:hidden}._relation-ship-list__checkbox_bqzl7_48,._relation-ship-list__group_bqzl7_59{width:100%}._dept-users-position-panel_13o0v_1{height:100%;line-height:normal;display:flex}._dept-users-position-panel__department_13o0v_6{flex:0 0 40%;position:relative;overflow:hidden}._dept-users-position-panel__mode_13o0v_11{border-left:1px solid #e0e0e0;flex:0 0 28%;overflow:hidden}._dept-users-position-panel__mode-list_13o0v_16{color:#121211;flex-direction:column;padding:4px;display:flex}._dept-users-position-panel__mode-item_13o0v_22{cursor:pointer;border-radius:4px;padding:7px 10px;font-size:14px;transition:background-color .2s,color .2s}._dept-users-position-panel__mode-item_13o0v_22:hover{background-color:#f3f3f3}._dept-users-position-panel__mode-item--active_13o0v_32{color:#0265ff;background-color:#f0f6ff}._dept-users-position-panel__mode-item--active_13o0v_32:hover{background-color:#f0f6ff}._dept-users-position-panel__positions_13o0v_39{border-left:1px solid #e0e0e0;flex:1;position:relative;overflow:hidden}._dept-users-position-panel__position-group_13o0v_45{flex-direction:column;width:100%;display:flex}._dept-users-position-panel__position-item_13o0v_50{border-radius:4px;padding:0 10px;transition:background-color .2s}._dept-users-position-panel__position-item_13o0v_50:hover{background-color:#f3f3f3}._dept-users-position-panel__position-checkbox_13o0v_58,._dept-users-position-panel__position-radio_13o0v_58{width:100%}._dept-users-position-panel__position-radio-group_13o0v_61{flex-direction:column;width:100%;display:flex}._dept-users-position-panel__position-radio-group_13o0v_61 .ant-radio-wrapper{justify-content:space-between;align-items:center;width:100%;display:flex}._dept-users-position-panel__position-radio-group_13o0v_61 .ant-radio{flex-shrink:0;order:101}._dept-users-position-panel__position-radio-group_13o0v_61 .ant-radio-label{text-overflow:ellipsis;white-space:nowrap;flex:1;order:100;align-items:center;min-width:0;overflow:hidden;padding-inline-start:0!important}._dept-users-position-panel__position-checkbox-row_13o0v_86{flex:1;align-items:center;padding:7px 0;display:flex;overflow:hidden}._dept-users-position-panel__position-name_13o0v_93{color:#121211;text-overflow:ellipsis;white-space:nowrap;flex:1;min-width:0;display:block;overflow:hidden}._dept-users-position-panel__empty_13o0v_102{color:#999;justify-content:center;align-items:center;display:flex;position:absolute;inset:0}._dept-users-position-panel__switcher-icon_13o0v_110{color:#666;font-size:16px;transition:transform .3s ease-in-out}._dept-users-position-panel__switcher-icon--expanded_13o0v_115{transform:rotate(90deg)}._dept-users-role-panel__option-list_ioi2c_1{flex-direction:column;display:flex}._dept-users-role-panel__option-item_ioi2c_6{color:#121211;cursor:pointer;border-radius:4px;padding:7px 10px;font-size:14px;transition:background-color .2s,color .2s}._dept-users-role-panel__option-item_ioi2c_6:hover{background-color:#f3f3f3}._dept-users-role-panel__option-checkbox_ioi2c_18,._dept-users-role-panel__option-radio_ioi2c_19{width:100%}._dept-users-role-panel__option-radio-group_ioi2c_23{flex-direction:column;width:100%;display:flex}._dept-users-role-panel__option-radio-group_ioi2c_23 .ant-radio-wrapper{justify-content:space-between;align-items:center;width:100%;display:flex}._dept-users-role-panel__option-radio-group_ioi2c_23 .ant-radio{flex-shrink:0;order:101}._dept-users-role-panel__option-radio-group_ioi2c_23 .ant-radio-label{text-overflow:ellipsis;white-space:nowrap;flex:1;order:100;align-items:center;min-width:0;overflow:hidden;padding-inline-start:0!important}._dept-users-role-panel__option-checkbox-row_ioi2c_49{flex:1;align-items:center;display:flex;overflow:hidden}._dept-users-role-panel__option-name_ioi2c_56{color:#121211;text-overflow:ellipsis;white-space:nowrap;min-width:0;display:block;overflow:hidden}._dept-users-role-panel__empty_ioi2c_65{color:#999;justify-content:center;align-items:center;display:flex;position:absolute;inset:0}._dept-users-role-panel_ioi2c_1{height:100%;line-height:normal;display:flex}._dept-users-role-panel__menu_ioi2c_79{flex:0 0 192px;padding:4px;overflow:hidden}._dept-users-role-panel__menu-list_ioi2c_84{flex-direction:column;display:flex}._dept-users-role-panel__menu-item_ioi2c_88{color:#121211;cursor:pointer;border-radius:4px;padding:7px 10px;font-size:14px;transition:background-color .2s,color .2s}._dept-users-role-panel__menu-item_ioi2c_88:hover{background-color:#f3f3f3}._dept-users-role-panel__menu-item--active_ioi2c_99{color:#0265ff;background-color:#f0f6ff}._dept-users-role-panel__menu-item--active_ioi2c_99:hover{background-color:#f0f6ff}._dept-users-role-panel__tree-section_ioi2c_106,._dept-users-role-panel__options-section_ioi2c_106,._dept-users-role-panel__pick-section_ioi2c_106{border-left:1px solid #e0e0e0;flex:1;position:relative;overflow:hidden}._dept-users-role-panel_ioi2c_1>section:first-child{border-left:none}._dept-users-role-panel__option-item--active_ioi2c_115{color:#0265ff;background-color:#f0f6ff}._dept-users-role-panel__option-item--active_ioi2c_115:hover{background-color:#f0f6ff}._dept-users-role-panel__tree-icon_ioi2c_122{color:#6f81bd}._dept-users-role-panel__switcher-icon_ioi2c_125{color:#666;font-size:16px;transition:transform .3s ease-in-out}._dept-users-role-panel__switcher-icon--expanded_ioi2c_130{transform:rotate(90deg)}._dept-users-extra-contact-panel_mcorh_1{height:100%;line-height:normal;display:flex}._dept-users-extra-contact-panel__menu_mcorh_6,._dept-users-extra-contact-panel__group-type-section_mcorh_6{flex:0 0 192px;padding:4px;overflow:hidden}._dept-users-extra-contact-panel__group-type-section_mcorh_6,._dept-users-extra-contact-panel__groups-section_mcorh_11,._dept-users-extra-contact-panel__members-section_mcorh_11{border-left:1px solid #e0e0e0}._dept-users-extra-contact-panel__menu-list_mcorh_14,._dept-users-extra-contact-panel__group-list_mcorh_14{flex-direction:column;display:flex}._dept-users-extra-contact-panel__menu-item_mcorh_18,._dept-users-extra-contact-panel__group-item_mcorh_18{color:#121211;cursor:pointer;border-radius:4px;padding:7px 10px;font-size:14px;transition:background-color .2s,color .2s}._dept-users-extra-contact-panel__menu-item_mcorh_18:hover,._dept-users-extra-contact-panel__group-item_mcorh_18:hover{background-color:#f3f3f3}._dept-users-extra-contact-panel__menu-item--active_mcorh_29,._dept-users-extra-contact-panel__group-item--active_mcorh_29{color:#0265ff;background-color:#f0f6ff}._dept-users-extra-contact-panel__menu-item--active_mcorh_29:hover,._dept-users-extra-contact-panel__group-item--active_mcorh_29:hover{background-color:#f0f6ff}._dept-users-extra-contact-panel__menu-item--selectable_mcorh_36,._dept-users-extra-contact-panel__group-item--selectable_mcorh_36{padding:0 10px}._dept-users-extra-contact-panel__groups-section_mcorh_11,._dept-users-extra-contact-panel__members-section_mcorh_11{flex:1;position:relative;overflow:hidden}._dept-users-extra-contact-panel__members-section_mcorh_11,._dept-users-extra-contact-panel__list-content_mcorh_47{padding:4px}._dept-users-extra-contact-panel__group-row_mcorh_50{flex:1;align-items:center;min-width:0;padding:7px 0;display:flex;overflow:hidden}._dept-users-extra-contact-panel__group-name_mcorh_58{text-overflow:ellipsis;white-space:nowrap;min-width:0;display:block;overflow:hidden}._dept-users-extra-contact-panel__group-radio-group_mcorh_65{flex-direction:column;width:100%;display:flex}._dept-users-extra-contact-panel__group-radio-group_mcorh_65 .ant-radio-wrapper{justify-content:space-between;align-items:center;width:100%;display:flex}._dept-users-extra-contact-panel__group-radio-group_mcorh_65 .ant-radio{flex-shrink:0;order:101}._dept-users-extra-contact-panel__group-radio-group_mcorh_65 .ant-radio-label{text-overflow:ellipsis;white-space:nowrap;flex:1;order:100;align-items:center;min-width:0;overflow:hidden;padding-inline-start:0!important}._dept-users-extra-contact-panel__group-radio_mcorh_65{width:100%}._dept-users-extra-contact-panel__empty_mcorh_93{color:#999;justify-content:center;align-items:center;display:flex;position:absolute;inset:0}._corp-dept-panel_630uv_1{height:100%;line-height:normal;display:flex}._corp-dept-panel__tree_630uv_6{box-sizing:border-box;border-right:1px solid #e0e0e0;flex-basis:50%;min-width:0}._corp-dept-panel__members_630uv_12{flex:1;min-width:0}._other-panel_1g3as_1{height:100%}._other-panel__list_1g3as_4{width:100%;margin:0;padding:4px;list-style:none}._other-panel__radio-group_1g3as_10{width:100%}._other-panel__radio-group_1g3as_10 .ant-radio-wrapper{justify-content:space-between;align-items:center;width:100%;display:flex}._other-panel__radio-group_1g3as_10 .ant-radio{flex-shrink:0;order:101}._other-panel__radio-group_1g3as_10 .ant-radio-label{text-overflow:ellipsis;white-space:nowrap;flex:1;order:100;align-items:center;min-width:0;overflow:hidden;padding-inline-start:0!important}._other-panel__item_1g3as_33{cursor:pointer;border-radius:4px;padding:0 10px;transition:background-color .2s}._other-panel__item_1g3as_33:hover{background-color:#f3f3f3}._other-panel__control_1g3as_42{width:100%}._other-panel__checkbox-row_1g3as_45{flex:1;align-items:center;min-width:0;padding:7px 0;display:flex;overflow:hidden}._other-panel__name_1g3as_53{color:#121211;user-select:none;text-overflow:ellipsis;white-space:nowrap;min-width:0;font-size:14px;overflow:hidden}._role-panel_19bf2_1{height:100%;line-height:normal;display:flex}._role-panel__menu_19bf2_6{flex:0 0 192px;padding:4px}._role-panel__menu-list_19bf2_10{flex-direction:column;display:flex}._role-panel__menu-item_19bf2_14{cursor:pointer;color:#121211;border-radius:4px;padding:7px 10px;font-size:14px;transition:background-color .2s,color .2s}._role-panel__menu-item_19bf2_14:hover{background-color:#f3f3f3}._role-panel__menu-item--active_19bf2_25{color:#0265ff;background-color:#f0f6ff}._role-panel__menu-item--active_19bf2_25:hover{background-color:#f0f6ff}._role-panel__tree-section_19bf2_32{border-left:1px solid #e0e0e0;flex:1;position:relative;overflow:hidden}._role-panel__tree-section--leading_19bf2_38{border-left:none}._role-panel__tree-empty_19bf2_41{justify-content:center;align-items:center;display:flex;position:absolute;inset:0}._role-panel__tree-empty-text_19bf2_48{color:#999}._role-panel__tree-icon_19bf2_51{color:#0265ff}._role-panel__switcher-icon_19bf2_54{color:#666;font-size:16px;transition:transform .3s ease-in-out}._role-panel__switcher-icon--expanded_19bf2_59{transform:rotate(90deg)}._role-panel__list-section_19bf2_62{border-left:1px solid #e0e0e0;flex:1;min-width:0;padding:4px;position:relative}._role-panel__list-content_19bf2_69{padding:4px}._role-panel__badge_19bf2_72{color:#4d609f;text-overflow:ellipsis;white-space:nowrap;flex:1;min-width:0;font-size:12px;overflow:hidden}._role-panel__empty_19bf2_81{justify-content:center;align-items:center;display:flex;position:absolute;inset:0}._role-panel__empty-text_19bf2_88{color:#999}._position-panel_1bzcx_1{height:100%;line-height:normal;display:flex}._position-panel__department_1bzcx_6{flex:0 0 240px;position:relative;overflow:hidden}._position-panel__menu_1bzcx_11{border-left:1px solid #e0e0e0;flex:0 0 200px;position:relative;overflow:hidden}._position-panel__menu-list_1bzcx_17{color:#121211;flex-direction:column;padding:4px;display:flex}._position-panel__menu-item_1bzcx_23{cursor:pointer;border-radius:4px;min-width:0;padding:7px 10px;font-size:14px;transition:background-color .2s,color .2s;overflow:hidden}._position-panel__menu-item_1bzcx_23:hover{background-color:#f3f3f3}._position-panel__menu-item--active_1bzcx_35{color:#0265ff;background-color:#f0f6ff}._position-panel__menu-item--active_1bzcx_35:hover{background-color:#f0f6ff}._position-panel__menu-item-label_1bzcx_42{text-overflow:ellipsis;white-space:nowrap;display:block;overflow:hidden}._position-panel__list_1bzcx_48{border-left:1px solid #e0e0e0;flex:1;min-width:0;padding:4px;position:relative}._position-panel__badge_1bzcx_55{color:#4d609f;text-overflow:ellipsis;white-space:nowrap;flex:1;min-width:0;font-size:12px;overflow:hidden}._position-panel__empty_1bzcx_64{color:#999;justify-content:center;align-items:center;display:flex;position:absolute;inset:0}._position-panel__switcher-icon_1bzcx_72{color:#666;font-size:16px;transition:transform .3s ease-in-out}._position-panel__switcher-icon--expanded_1bzcx_77{transform:rotate(90deg)}._extra-contact-panel_hfkb5_1{height:100%;line-height:normal;display:flex}._extra-contact-panel__menu_hfkb5_6{flex:0 0 192px;padding:4px}._extra-contact-panel__menu-list_hfkb5_10{flex-direction:column;display:flex}._extra-contact-panel__menu-item_hfkb5_14{cursor:pointer;user-select:none;color:#121211;border-radius:4px;padding:7px 10px;font-size:14px;transition:background-color .2s,color .2s}._extra-contact-panel__menu-item_hfkb5_14:hover{background-color:#f3f3f3}._extra-contact-panel__menu-item--active_hfkb5_26{color:#0265ff;background-color:#f0f6ff}._extra-contact-panel__menu-item--active_hfkb5_26:hover{background-color:#f0f6ff}._extra-contact-panel__groups_hfkb5_33{transition:flex-basis .2s,padding .2s;overflow:hidden}._extra-contact-panel__groups--expanded_hfkb5_37{border-left:1px solid #e0e0e0;flex:1;position:relative}._extra-contact-panel__groups--collapsed_hfkb5_42{flex:0 0 0;padding:0}._extra-contact-panel__group-list_hfkb5_46{flex-direction:column;display:flex}._extra-contact-panel__group-item_hfkb5_50{cursor:pointer;color:#121211;border-radius:4px;padding:7px 10px;font-size:14px;transition:background-color .2s,color .2s}._extra-contact-panel__group-item_hfkb5_50:hover{background-color:#f3f3f3}._extra-contact-panel__group-item--active_hfkb5_61{color:#0265ff;background-color:#f0f6ff}._extra-contact-panel__group-item--active_hfkb5_61:hover{background-color:#f0f6ff}._extra-contact-panel__members_hfkb5_68{border-left:1px solid #e0e0e0;flex:1;padding:4px;position:relative;overflow:hidden}._extra-contact-panel__members_hfkb5_68:only-child{border-left:none}._extra-contact-panel__list-content_hfkb5_78{padding:4px}._extra-contact-panel__empty_hfkb5_81{color:#999;justify-content:center;align-items:center;display:flex;position:absolute;inset:0}._extra-contact-panel__empty-text_hfkb5_90{color:inherit}._current-user-panel_184e6_1,._bsy-flow-creator-panel_20gxk_1{height:100%;padding:4px}._selection-area_15kqb_1{transition:height var(--selection-area-duration) var(--selection-area-ease);position:relative}._selection-area__container_15kqb_5{z-index:11;transition:padding-bottom var(--selection-area-duration) var(--selection-area-ease);color:#121211;background-color:#fff;position:relative}._selection-area__container--expanded_15kqb_12{padding-bottom:50px}._selection-area__container--animating_15kqb_15{position:absolute;left:0;right:0}._selection-area__body_15kqb_20{min-height:52px;transition:border-color var(--selection-area-duration) var(--selection-area-ease);border:1px dashed #e0e0e0;border-radius:4px;position:relative}._selection-area__body--expanded_15kqb_27,._selection-area__body_15kqb_20:not(._selection-area__body--expanded_15kqb_27):hover{border-color:#0265ff}._selection-area__scroll-gutter_15kqb_33{padding:10px}._selection-area__scroll_15kqb_33{transition:height var(--selection-area-duration) var(--selection-area-ease);overflow:hidden}._selection-area__button_15kqb_40{color:#0265ff;background-color:#fff;justify-content:center;align-items:center;height:50px;display:flex;position:absolute;bottom:0;left:0;right:0}._selection-area__mask_15kqb_52{z-index:10;background-color:#0000004d;position:absolute;inset:0}._preview-selected-items_zglpy_1{padding:0}._preview-selected-items--measure_zglpy_4{opacity:0;pointer-events:none;z-index:-1;padding:10px;position:absolute;top:0;left:0}._preview-selected-items__list_zglpy_13{gap:var(--selection-area-gap);flex-wrap:wrap;font-size:0;display:flex}._preview-selected-items__item_zglpy_19{background-color:#e6f8ff;border-radius:100px;align-items:center;gap:6px;height:30px;padding-left:6px;padding-right:8px;line-height:normal;display:inline-flex}._preview-selected-items__item--user_zglpy_30{background-color:#eceff3}._preview-selected-items__item--department_zglpy_33{background-color:#ebf0ff}._preview-selected-items__item--relation_zglpy_36{background-color:#ffeafc}._preview-selected-items__item--public_zglpy_39{background-color:#fff0ea}._preview-selected-items__content_zglpy_42{flex-shrink:0;align-items:center;height:20px;display:inline-flex}._preview-selected-items__text_zglpy_48{align-items:center;font-size:14px;display:inline-flex}._preview-selected-items__name_zglpy_53{text-overflow:ellipsis;white-space:nowrap;max-width:180px;display:inline-block;overflow:hidden}._preview-selected-items__badge_zglpy_60{color:#4d609f;font-size:12px;display:inline-block}._preview-selected-items__close_zglpy_65{cursor:pointer;align-items:center;width:14px;height:14px;display:flex}._preview-selected-items__close_zglpy_65 ._anticon_zglpy_72{color:#666;font-size:14px}._preview-selected-items__close_zglpy_65 ._anticon_zglpy_72:hover{color:#0265ff}._preview-selected-items__more_zglpy_79{color:#0265ff;align-items:center;font-size:14px;display:inline-flex}._preview-selected-items__more-button_zglpy_85{gap:6px;font-size:14px;display:inline-flex}._preview-selected-items__more-button_zglpy_85:hover{opacity:.8}._selection-tab-list_1odyj_1{border-bottom:1px solid #e0e0e0;justify-content:space-between;padding:0 10px;display:flex;position:relative}._selection-tab-list__tabs-wrapper_1odyj_8{flex:1;min-width:0;position:relative;overflow:hidden}._selection-tab-list__tabs-track_1odyj_14{width:max-content;transition:transform .3s ease-in-out;display:inline-block;position:relative}._selection-tab-list__tabs_1odyj_8{flex-wrap:nowrap;gap:40px;margin:0;padding:5px 10px 5px 0;list-style:none;display:flex}._selection-tab-list__indicator_1odyj_28{pointer-events:none;background-color:#0265ff;height:2px;position:absolute;bottom:0;left:0}._selection-tab-list__indicator--animated_1odyj_36{transition:transform .3s ease-in-out}._selection-tab-list__item_1odyj_39{cursor:pointer;color:inherit;white-space:nowrap;flex-shrink:0;padding:4px 0;transition:color .2s;position:relative}._selection-tab-list__item_1odyj_39:hover,._selection-tab-list__item--active_1odyj_51{color:#0265ff}._selection-tab-list__search_1odyj_54{flex-shrink:0;align-items:center;display:flex;position:relative}._selection-tab-list__search-field_1odyj_60{width:100%;position:relative}._selection-tab-list__input_1odyj_64{background-color:#fff;border:1px solid #e0e0e0;border-radius:100px;outline:none;width:280px;height:30px;padding:0 12px 0 32px;font-size:14px;transition:border-color .3s ease-in-out}._selection-tab-list__input_1odyj_64::placeholder{color:#999}._selection-tab-list__input_1odyj_64:hover,._selection-tab-list__input_1odyj_64:focus{border-color:#0265ff}._selection-tab-list__search-icon_1odyj_81{color:#666;width:20px;height:20px;position:absolute;top:50%;left:10px;transform:translateY(-50%)}._selection-tab-panel_f6iav_1{width:100%;height:100%}._selection-tabs_88491_1{border:1px solid #e0e0e0;border-radius:6px}._member-search_why78_1{height:100%;position:relative;overflow:hidden}._member-search__tree-wrapper_why78_6{padding:4px}._member-search__tree-content_why78_9{min-width:0;padding:4px;overflow:hidden}._member-search__tree-title_why78_14{align-items:center;gap:6px;min-width:0;margin-left:-16px;display:flex}._member-search__tree-name_why78_21{user-select:none;text-overflow:ellipsis;white-space:nowrap;min-width:0;font-size:14px;overflow:hidden}._member-search__tree-extra_why78_29{color:#4d609f;text-overflow:ellipsis;white-space:nowrap;flex:1;min-width:0;font-size:12px;overflow:hidden}._member-search__switch-icon_why78_38{color:#666;font-size:16px;transition:transform .3s ease-in-out}._member-search__switch-icon--expanded_why78_43{transform:rotate(90deg)}._member-search__empty_why78_46{justify-content:center;align-items:center;display:flex;position:absolute;inset:0}._member-search__empty-text_why78_53{color:#999}._department-search_1lzam_1{position:relative;overflow:hidden}._department-search__scroll_1lzam_5,._department-search__tree-content_1lzam_8{padding:4px}._department-search__title_1lzam_11{align-items:center;gap:6px;min-width:0;display:flex}._department-search__name_1lzam_17{user-select:none;text-overflow:ellipsis;white-space:nowrap;min-width:0;font-size:14px;overflow:hidden}._department-search__extra_1lzam_25{color:#4d609f;text-overflow:ellipsis;white-space:nowrap;min-width:0;font-size:12px;overflow:hidden}._department-search__icon_1lzam_33{color:#0265ff;flex-shrink:0}._department-search__switch-icon_1lzam_37{color:#666;font-size:16px;transition:transform .3s ease-in-out}._department-search__switch-icon--expanded_1lzam_42{transform:rotate(90deg)}._department-search__empty_1lzam_45{justify-content:center;align-items:center;display:flex;position:absolute;inset:0}._department-search__empty-text_1lzam_52{color:#999}._dept-users-search_1urw3_1{height:100%;position:relative;overflow:hidden}._dept-users-search__tree-wrapper_1urw3_6{padding:4px}._dept-users-search__tree-content_1urw3_9{min-width:0;padding:4px;overflow:hidden}._dept-users-search__title_1urw3_14{align-items:center;gap:6px;min-width:0;display:flex}._dept-users-search__name_1urw3_20{user-select:none;text-overflow:ellipsis;white-space:nowrap;min-width:0;font-size:14px;overflow:hidden}._dept-users-search__extra_1urw3_28{color:#4d609f;text-overflow:ellipsis;white-space:nowrap;min-width:0;font-size:12px;overflow:hidden}._dept-users-search__icon_1urw3_36{color:#0265ff;flex-shrink:0}._dept-users-search__switch-icon_1urw3_40{color:#666;font-size:16px;transition:transform .3s ease-in-out}._dept-users-search__switch-icon--expanded_1urw3_45{transform:rotate(90deg)}._dept-users-search__empty_1urw3_48{justify-content:center;align-items:center;display:flex;position:absolute;inset:0}._dept-users-search__empty-text_1urw3_55{color:#999}._depts-member_s7xsa_1{flex-direction:column;height:100%;display:flex}._depts-member__body_s7xsa_6{padding:20px 20px 0}._depts-member__content_s7xsa_9{flex-direction:column;gap:10px;display:flex;position:relative}._depts-member__state_s7xsa_15{color:#666;justify-content:center;align-items:center;height:445px;font-size:14px;display:flex}._depts-member__footer_s7xsa_23{align-items:center;padding:14px 20px;display:flex}._depts-member__clear-area_s7xsa_28{flex:1;display:flex}._depts-member__clear-button_s7xsa_32{cursor:pointer;align-items:center;gap:10px;height:100%;transition:color .2s;display:inline-flex}._depts-member__clear-button_s7xsa_32:hover{color:#0265ff}._depts-member__actions_s7xsa_43{flex:1;justify-content:flex-end;gap:12px;margin-left:auto;display:flex}._progress-echart_my4si_1{height:100%;position:relative}._progress-echart_my4si_1 ._gauge_semicircle_my4si_5{display:flex}._progress-echart_my4si_1 ._gauge_semicircle_my4si_5 ._chart-label-target-enable_my4si_8{margin-left:10px}._progress-echart_my4si_1 ._chart-label-enable_my4si_11{z-index:-1;flex-direction:column;justify-content:center;align-items:center;width:100%;height:100%;display:flex;position:absolute;top:0;left:0}._progress-echart_my4si_1 ._chart-label-percent-content_my4si_23,._progress-echart_my4si_1 ._chart-label-value-enable_my4si_24,._progress-echart_my4si_1 ._chart-label-target-enable_my4si_8{color:#000;font-size:14px}._progress-echart_my4si_1 ._chart-label-percent-enable_my4si_29{color:#000;font-size:20px}
1
+ ._auto-grid-echart_1ml1k_1{width:100%;height:100%;position:relative}._auto-grid-echart_1ml1k_1 ._xAxis-title_1ml1k_6{text-align:center;width:100%;position:absolute}._auto-grid-echart_1ml1k_1 ._yAxis-title_1ml1k_11{word-break:break-all;align-items:center;width:13px;height:100%;display:flex;position:absolute;top:0}._auto-grid-echart_1ml1k_1._legend-position-right_1ml1k_20{display:flex}._auto-grid-echart_1ml1k_1._legend-position-top_1ml1k_23{flex-direction:column;display:flex}._auto-grid-echart_1ml1k_1._legend-position-top_1ml1k_23 ._t-dash-g2-legend_1ml1k_27{order:1}._auto-grid-echart_1ml1k_1._legend-position-top_1ml1k_23 ._bsy-chart-body_1ml1k_30{order:2}._auto-grid-echart_1ml1k_1._legend-position-left_1ml1k_33{display:flex}._auto-grid-echart_1ml1k_1._legend-position-left_1ml1k_33 ._t-dash-g2-legend_1ml1k_27{order:1}._auto-grid-echart_1ml1k_1._legend-position-left_1ml1k_33 ._bsy-chart-body_1ml1k_30{order:2}._auto-grid-echart_1ml1k_1 ._t-dash-g2-legend_1ml1k_27{flex-wrap:wrap;flex:none;justify-content:center;max-height:30%;padding-top:0;display:flex;overflow:hidden auto}._auto-grid-echart_1ml1k_1 ._t-dash-g2-legend_1ml1k_27._t-dash-g2-legend-left_1ml1k_59{flex-flow:column;justify-content:center;align-items:flex-start;max-width:30%;height:100%;max-height:100%;margin:10px 10px 10px 0;top:0;left:0;overflow:hidden auto}._auto-grid-echart_1ml1k_1 ._t-dash-g2-legend_1ml1k_27._t-dash-g2-legend-left_1ml1k_59 ._legend-label_1ml1k_77{word-wrap:break-word;color:#808085;cursor:pointer;user-select:none;word-break:break-word;margin-left:8px;font-size:12px}._auto-grid-echart_1ml1k_1 ._t-dash-g2-legend_1ml1k_27._t-dash-g2-legend-left_1ml1k_59 ._legend-item_1ml1k_89{margin-bottom:12px;margin-right:0;line-height:24px;display:flex}._auto-grid-echart_1ml1k_1 ._t-dash-g2-legend_1ml1k_27._t-dash-g2-legend-left_1ml1k_59 ._legend-color_1ml1k_97{cursor:pointer;flex:none;width:10px;height:10px;margin-top:7px}._auto-grid-echart_1ml1k_1 ._t-dash-g2-legend_1ml1k_27._t-dash-g2-legend-right_1ml1k_106{flex-flow:column;justify-content:center;align-items:flex-start;max-width:30%;height:100%;max-height:100%;margin:10px 0 10px 10px;top:0;right:0;overflow:hidden auto}._auto-grid-echart_1ml1k_1 ._t-dash-g2-legend_1ml1k_27._t-dash-g2-legend-right_1ml1k_106 ._legend-label_1ml1k_77{word-wrap:break-word;color:#808085;cursor:pointer;user-select:none;word-break:break-word;margin-left:8px;font-size:12px}._auto-grid-echart_1ml1k_1 ._t-dash-g2-legend_1ml1k_27._t-dash-g2-legend-right_1ml1k_106 ._legend-item_1ml1k_89{margin-bottom:12px;margin-right:0;line-height:24px;display:flex}._auto-grid-echart_1ml1k_1 ._t-dash-g2-legend_1ml1k_27._t-dash-g2-legend-right_1ml1k_106 ._legend-color_1ml1k_97{cursor:pointer;flex:none;width:10px;height:10px;margin-top:7px}._auto-grid-echart_1ml1k_1 ._t-dash-g2-legend_1ml1k_27._t-dash-g2-legend-bottom_1ml1k_153{width:100%;max-height:30%;margin-top:10px;bottom:0}._auto-grid-echart_1ml1k_1 ._t-dash-g2-legend_1ml1k_27._t-dash-g2-legend-bottom_1ml1k_153 ._legend-label_1ml1k_77{color:#121111;cursor:pointer;text-overflow:ellipsis;user-select:none;white-space:nowrap;margin-left:8px;font-size:12px;overflow:hidden}._auto-grid-echart_1ml1k_1 ._t-dash-g2-legend_1ml1k_27._t-dash-g2-legend-bottom_1ml1k_153 ._legend-item_1ml1k_89{opacity:1;align-items:center;height:24px;min-height:24px;margin-right:12px;line-height:24px;display:flex;overflow:hidden}._auto-grid-echart_1ml1k_1 ._t-dash-g2-legend_1ml1k_27._t-dash-g2-legend-bottom_1ml1k_153 ._legend-color_1ml1k_97{cursor:pointer;flex:none;width:10px;height:10px}._auto-grid-echart_1ml1k_1 ._t-dash-g2-legend_1ml1k_27._t-dash-g2-legend-top_1ml1k_194{width:100%;max-height:30%;margin-bottom:10px;top:0}._auto-grid-echart_1ml1k_1 ._t-dash-g2-legend_1ml1k_27._t-dash-g2-legend-top_1ml1k_194 ._legend-label_1ml1k_77{color:#121111;cursor:pointer;text-overflow:ellipsis;user-select:none;white-space:nowrap;margin-left:8px;font-size:12px;overflow:hidden}._auto-grid-echart_1ml1k_1 ._t-dash-g2-legend_1ml1k_27._t-dash-g2-legend-top_1ml1k_194 ._legend-item_1ml1k_89{opacity:1;align-items:center;height:24px;min-height:24px;margin-right:12px;line-height:24px;display:flex;overflow:hidden}._auto-grid-echart_1ml1k_1 ._t-dash-g2-legend_1ml1k_27._t-dash-g2-legend-top_1ml1k_194 ._legend-color_1ml1k_97{cursor:pointer;flex:none;width:10px;height:10px}._auto-grid-echart_1ml1k_1 ._t-dash-g2-legend_1ml1k_27 ._legend-hidden_1ml1k_235{opacity:.5!important}[data-simplebar]{flex-flow:column wrap;place-content:flex-start;align-items:flex-start;position:relative}.simplebar-wrapper{width:inherit;height:inherit;max-width:inherit;max-height:inherit;overflow:hidden}.simplebar-mask{direction:inherit;z-index:0;margin:0;padding:0;position:absolute;inset:0;overflow:hidden;width:auto!important;height:auto!important}.simplebar-offset{-webkit-overflow-scrolling:touch;margin:0;padding:0;position:absolute;inset:0;direction:inherit!important;box-sizing:inherit!important;resize:none!important}.simplebar-content-wrapper{direction:inherit;scrollbar-width:none;-ms-overflow-style:none;width:auto;max-width:100%;height:100%;max-height:100%;display:block;position:relative;overflow:auto;box-sizing:border-box!important}.simplebar-content-wrapper::-webkit-scrollbar{width:0;height:0;display:none}.simplebar-hide-scrollbar::-webkit-scrollbar{width:0;height:0;display:none}.simplebar-content:after,.simplebar-content:before{content:" ";display:table}.simplebar-placeholder{pointer-events:none;width:100%;max-width:100%;max-height:100%}.simplebar-height-auto-observer-wrapper{float:left;z-index:-1;pointer-events:none;flex-grow:inherit;flex-shrink:0;flex-basis:0;width:100%;max-width:1px;height:100%;max-height:1px;margin:0;padding:0;position:relative;overflow:hidden;box-sizing:inherit!important}.simplebar-height-auto-observer{box-sizing:inherit;opacity:0;pointer-events:none;z-index:-1;width:1000%;min-width:1px;height:1000%;min-height:1px;display:block;position:absolute;top:0;left:0;overflow:hidden}.simplebar-track{z-index:1;pointer-events:none;position:absolute;bottom:0;right:0;overflow:hidden}[data-simplebar].simplebar-dragging,[data-simplebar].simplebar-dragging .simplebar-content{pointer-events:none;-webkit-touch-callout:none;user-select:none}[data-simplebar].simplebar-dragging .simplebar-track{pointer-events:all}.simplebar-scrollbar{min-height:10px;position:absolute;left:0;right:0}.simplebar-scrollbar:before{content:"";opacity:0;background:#000;border-radius:7px;transition:opacity .2s linear .5s;position:absolute;left:2px;right:2px}.simplebar-scrollbar.simplebar-visible:before{opacity:.5;transition-duration:0s;transition-delay:0s}.simplebar-track.simplebar-vertical{width:11px;top:0}.simplebar-scrollbar:before{inset:2px}.simplebar-track.simplebar-horizontal{height:11px;left:0}.simplebar-track.simplebar-horizontal .simplebar-scrollbar{width:auto;min-width:10px;min-height:0;inset:0 auto 0 0}[data-simplebar-direction=rtl] .simplebar-track.simplebar-vertical{left:0;right:auto}.simplebar-dummy-scrollbar-size{opacity:0;visibility:hidden;direction:rtl;width:500px;height:500px;position:fixed;overflow:scroll hidden;-ms-overflow-style:scrollbar!important}.simplebar-dummy-scrollbar-size>div{width:200%;height:200%;margin:10px 0}.simplebar-hide-scrollbar{visibility:hidden;scrollbar-width:none;-ms-overflow-style:none;position:fixed;left:0;overflow-y:scroll}._tabgroup-container_131fx_1{border-bottom:1px solid #e0e0e0;height:34px;display:flex;position:relative}._tabgroup-container__tab-item_131fx_7{text-align:center;color:#121111;cursor:pointer;flex:1;font-size:14px;line-height:34px}._tabgroup-container__tab-item_131fx_7._active_131fx_15,._tabgroup-container__tab-item_131fx_7:hover{color:#0265ff}._tabgroup-container__indicator_131fx_18{pointer-events:none;background-color:#0265ff;height:2px;position:absolute;bottom:0;left:0}._tabgroup-container__indicator--animated_131fx_26{transition:transform .3s ease-in-out}._tag-icon--primary_6y9ky_1{color:#0265ff}._tag-icon--success_6y9ky_4{color:#70c911}._tag-icon--relation_6y9ky_7{color:#e338de}._tag-icon--public_6y9ky_10{color:#d1633a}._tag-icon--role_6y9ky_13{color:#6f81bd}._tag-icon--position_6y9ky_16{color:#2bc2e1}._memer-list__option_1k9tu_1{cursor:pointer;border-radius:4px;transition:background-color .2s}._memer-list__option_1k9tu_1:hover{background-color:#f3f3f3}._memer-list__option--checkbox_1k9tu_9{padding:0 10px}._memer-list__option--sticky-header_1k9tu_12{z-index:1;background-color:#fff;position:sticky;top:0}._memer-list__option-inner_1k9tu_18{padding:6px 0}._memer-list__row_1k9tu_21{flex:1;align-items:center;gap:6px;min-width:0;display:flex;overflow:hidden}._memer-list__name_1k9tu_29{user-select:none;text-overflow:ellipsis;white-space:nowrap;flex-shrink:1;min-width:0;font-size:14px;overflow:hidden}._memer-list__checkbox-row_1k9tu_38{flex:1;align-items:center;gap:6px;min-width:0;padding:7px 0;display:flex;overflow:hidden}._memer-list__selected-summary_1k9tu_47{color:#0265ff;flex:1;padding:6px 0}._memer-list__radio_1k9tu_52{padding:6px 10px}._memer-list__checkbox_1k9tu_38,._memer-list__group_1k9tu_58{width:100%}._memer-list_1k9tu_1 .ant-radio-wrapper{justify-content:space-between;align-items:center;width:100%;display:flex}._memer-list_1k9tu_1 .ant-radio{flex-shrink:0;order:101}._memer-list_1k9tu_1 .ant-radio-label{text-overflow:ellipsis;white-space:nowrap;flex:1;order:100;align-items:center;min-width:0;overflow:hidden;padding-inline-start:0!important}._bsy-external-member__all-option_1jd7j_1{cursor:pointer;border-radius:4px;gap:6px;padding:4px;transition:background-color .2s;display:flex}._bsy-external-member__all-option_1jd7j_1:hover{background-color:#f3f3f3}._bsy-external-member__all-option--selected_1jd7j_13{color:#0265ff;background-color:#f0f6ff}._bsy-external-member__all-option--selected_1jd7j_13:hover{background-color:#f0f6ff}._bsy-external-member__icon_1jd7j_20{color:#0265ff;font-size:18px}._bsy-external-member__switcher-icon_1jd7j_24{color:#666;font-size:16px;transition:transform .3s ease-in-out}._bsy-external-member__switcher-icon--expanded_1jd7j_29{transform:rotate(90deg)}._bsy-external-member__content_1jd7j_32{padding:4px}._bsy-all-member__all-option_8jfkj_1{cursor:pointer;border-radius:4px;gap:6px;height:34px;padding:6px 10px;transition:background-color .2s;display:flex}._bsy-all-member__all-option_8jfkj_1:hover{background-color:#f3f3f3}._bsy-all-member__all-option--selected_8jfkj_14,._bsy-all-member__all-option--selected_8jfkj_14:hover{background-color:#f0f6ff}._internal-member__content_1aszs_1{padding:4px}._internal-member__icon_1aszs_4{color:#0265ff;font-size:16px}._internal-member__switcher_1aszs_8{color:#666;font-size:16px;transition:transform .3s ease-in-out}._internal-member__switcher--expanded_1aszs_13{transform:rotate(90deg)}._member-panel_10yov_1{height:100%;line-height:normal;display:flex}._member-panel__overlay-empty_10yov_6{background:#fff;flex:1;justify-content:center;align-items:center;display:flex}._member-panel__sidebar_10yov_13{flex-shrink:0;flex-basis:192px;padding:4px}._member-panel__menu_10yov_18{flex-direction:column;gap:4px;display:flex}._member-panel__menu-item_10yov_23{cursor:pointer;color:#000;border-radius:4px;padding:7px 10px;font-size:14px;transition:background-color .2s,color .2s}._member-panel__menu-item_10yov_23:hover{background-color:#f3f3f3}._member-panel__menu-item--active_10yov_34{color:#0265ff;background-color:#f0f6ff}._member-panel__panel_10yov_38{border-left:1px solid #e0e0e0;flex:1;min-width:0;padding:4px}._member-panel__panel--leading_10yov_44{border-left:none}._member-panel__panel--list_10yov_47{position:relative}._member-panel__panel--list_10yov_47:only-child{border-left:none}._member-panel__list-content_10yov_53{padding:4px}._member-panel__loading-more_10yov_56{justify-content:center;align-items:center;padding:8px 0;display:flex}._member-panel__empty_10yov_62{justify-content:center;align-items:center;display:flex;position:absolute;inset:0}._member-panel__empty-text_10yov_69{color:#999}._member-panel__deptnames_10yov_72{color:#4d609f;text-overflow:ellipsis;white-space:nowrap;flex:1;min-width:0;margin-left:4px;font-size:12px;overflow:hidden}.internal-container__icon{color:#0265ff;font-size:20px}.internal-container__arrow-icon{color:#666;font-size:16px;transition:transform .3s ease-in-out}.internal-container__arrow-icon.rotate-90{transform:rotate(90deg)}.internal-container__empty{color:#999;justify-content:center;align-items:center;display:flex;position:absolute;inset:0}._external-organization_kf3pt_1{height:100%;position:relative}._external-organization__content_kf3pt_5{position:relative}._external-organization__scroll-content_kf3pt_8{min-height:100%;position:relative}._external-organization__tree-icon_kf3pt_12{color:#0265ff}._external-organization__switcher-icon_kf3pt_15{color:#666;font-size:16px;transition:transform .3s ease-in-out}._external-organization__switcher-icon--expanded_kf3pt_20{transform:rotate(90deg)}._external-organization__empty_kf3pt_23{color:#999;justify-content:center;align-items:center;display:flex;position:absolute;inset:0}._dept-scope-panel__option-list_1x5wm_1{flex-direction:column;display:flex}._dept-scope-panel__option-item_1x5wm_6{color:#121211;cursor:pointer;border-radius:4px;padding:7px 10px;font-size:14px;transition:background-color .2s,color .2s}._dept-scope-panel__option-item_1x5wm_6:hover{background-color:#f3f3f3}._dept-scope-panel__option-checkbox_1x5wm_18,._dept-scope-panel__option-radio_1x5wm_19{width:100%}._dept-scope-panel__option-radio-group_1x5wm_23{flex-direction:column;width:100%;display:flex}._dept-scope-panel__option-radio-group_1x5wm_23 .ant-radio-wrapper{justify-content:space-between;align-items:center;width:100%;display:flex}._dept-scope-panel__option-radio-group_1x5wm_23 .ant-radio{flex-shrink:0;order:101}._dept-scope-panel__option-radio-group_1x5wm_23 .ant-radio-label{text-overflow:ellipsis;white-space:nowrap;flex:1;order:100;align-items:center;min-width:0;overflow:hidden;padding-inline-start:0!important}._dept-scope-panel__option-checkbox-row_1x5wm_49{flex:1;align-items:center;display:flex;overflow:hidden}._dept-scope-panel__option-name_1x5wm_56{color:#121211;text-overflow:ellipsis;white-space:nowrap;min-width:0;display:block;overflow:hidden}._dept-scope-panel__empty_1x5wm_65{color:#999;justify-content:center;align-items:center;display:flex;position:absolute;inset:0}._dept-scope-panel_1x5wm_1{height:100%;line-height:normal;display:flex}._dept-scope-panel__tree_1x5wm_79,._dept-scope-panel__options_1x5wm_79{flex:1;position:relative;overflow:hidden}._dept-scope-panel__options_1x5wm_79{border-left:1px solid #e0e0e0}._dept-scope-panel__tree_1x5wm_79{border-left:none}._dept-scope-panel__tree-icon_1x5wm_90{color:#0265ff;font-size:20px}._dept-scope-panel__switcher-icon_1x5wm_94{color:#666;font-size:16px;transition:transform .3s ease-in-out}._dept-scope-panel__switcher-icon--expanded_1x5wm_99{transform:rotate(90deg)}._organization-panel_1dfed_1{height:100%;line-height:normal;display:flex}._organization-panel__menu_1dfed_6{flex:0 0 200px;padding:4px}._organization-panel__menu-list_1dfed_10{flex-direction:column;display:flex}._organization-panel__menu-item_1dfed_14{cursor:pointer;color:#121211;border-radius:4px;padding:7px 10px;font-size:14px;transition:background-color .2s,color .2s}._organization-panel__menu-item_1dfed_14:hover{background-color:#f3f3f3}._organization-panel__menu-item--active_1dfed_25{color:#0265ff;background-color:#f0f6ff}._organization-panel__menu-item--active_1dfed_25:hover{background-color:#f0f6ff}._organization-panel__content_1dfed_32{border-left:1px solid #e0e0e0;flex:1;overflow:hidden}._organization-panel__content--borderless_1dfed_37{border-left:none}._group-list__list_mxdp1_1{font-size:0}._group-list__option_mxdp1_4{cursor:pointer;border-radius:4px;font-size:0;transition:background-color .2s}._group-list__option_mxdp1_4:hover{background-color:#f3f3f3}._group-list__option--checkbox_mxdp1_13{padding:0 10px}._group-list__radio_mxdp1_16{padding:6px 10px}._group-list__row_mxdp1_19{flex:1;align-items:center;gap:6px;min-width:0;display:flex}._group-list__name_mxdp1_26{user-select:none;text-overflow:ellipsis;white-space:nowrap;min-width:0;font-size:14px;overflow:hidden}._group-list__checkbox-row_mxdp1_34{flex:1;align-items:center;gap:6px;min-width:0;padding:7px 0;display:flex}._group-list__checkbox_mxdp1_34,._group-list__group_mxdp1_45{width:100%}._group-list_mxdp1_1 .ant-radio-wrapper{justify-content:space-between;align-items:center;width:100%;display:flex}._group-list_mxdp1_1 .ant-radio{flex-shrink:0;order:101}._group-list_mxdp1_1 .ant-radio-label{flex:1;order:100;align-items:center;min-width:0;padding-inline-start:0!important}._current-user-depts-panel_cjkm1_1{padding:4px;position:relative}._current-user-depts-panel__empty_cjkm1_5{color:#999;justify-content:center;align-items:center;display:flex;position:absolute;inset:0}._extra-contact-group-panel_oytrb_1{height:100%;display:flex;position:relative}._extra-contact-group-panel__menu_oytrb_6{flex:0 0 192px;padding:4px}._extra-contact-group-panel__menu-list_oytrb_10{flex-direction:column;display:flex}._extra-contact-group-panel__menu-item_oytrb_14{cursor:pointer;color:#121211;border-radius:4px;padding:7px 10px;font-size:14px;transition:background-color .2s,color .2s}._extra-contact-group-panel__menu-item_oytrb_14:hover{background-color:#f3f3f3}._extra-contact-group-panel__menu-item--active_oytrb_25{color:#0265ff;background-color:#f0f6ff}._extra-contact-group-panel__menu-item--active_oytrb_25:hover{background-color:#f0f6ff}._extra-contact-group-panel__content_oytrb_32{border-left:1px solid #e0e0e0;flex:1;position:relative}._extra-contact-group-panel__empty_oytrb_37{color:#999;justify-content:center;align-items:center;display:flex;position:absolute;inset:0}._extra-contact-group-panel--empty_oytrb_45{color:#999;justify-content:center;align-items:center;height:100%;display:flex;position:relative}._extra-contact-group-panel__loading_oytrb_53{justify-content:center;align-items:center;width:100%;height:100%;display:flex}._corp-dept-member-list_12e0y_1{min-width:0;position:relative}._corp-dept-member-list__spin_12e0y_5{height:100%;display:block}._corp-dept-member-list__spin_12e0y_5 .ant-spin-container{height:100%;position:relative}._corp-dept-member-list__scroll_12e0y_13{height:100%;padding:4px}._corp-dept-member-list__list_12e0y_17{margin:0;padding:0;list-style:none}._corp-dept-member-list__option_12e0y_22{cursor:pointer;border-radius:4px;transition:background-color .2s}._corp-dept-member-list__option_12e0y_22:hover{background-color:#f3f3f3}._corp-dept-member-list__option--checkbox_12e0y_30,._corp-dept-member-list__option--radio_12e0y_33{padding:0 10px}._corp-dept-member-list__radio-group_12e0y_36{width:100%}._corp-dept-member-list__radio-group_12e0y_36 .ant-radio-wrapper{justify-content:space-between;align-items:center;width:100%;display:flex}._corp-dept-member-list__radio-group_12e0y_36 .ant-radio{flex-shrink:0;order:101}._corp-dept-member-list__radio-group_12e0y_36 .ant-radio-label{text-overflow:ellipsis;white-space:nowrap;flex:1;order:100;align-items:center;min-width:0;overflow:hidden;padding-inline-start:0!important}._corp-dept-member-list__radio_12e0y_36{width:100%}._corp-dept-member-list__checkbox-row_12e0y_62{flex:1;align-items:center;gap:6px;min-width:0;padding:7px 0;display:flex;overflow:hidden}._corp-dept-member-list__name_12e0y_71{user-select:none;text-overflow:ellipsis;white-space:nowrap;flex-shrink:1;min-width:0;font-size:14px;overflow:hidden}._corp-dept-member-list__checkbox_12e0y_62,._corp-dept-member-list__group_12e0y_83{width:100%}._corp-dept-member-list__empty_12e0y_86{justify-content:center;align-items:center;display:flex;position:absolute;inset:0}._corp-dept-member-list__empty-text_12e0y_93{color:#999;font-size:14px}._corp-dept-tree__switcher-icon_aeo6x_1{color:#666;font-size:16px;transition:transform .3s ease-in-out}._corp-dept-tree__switcher-icon--expanded_aeo6x_6{transform:rotate(90deg)}._corp-dept-tree__empty_aeo6x_9{color:#999;justify-content:center;align-items:center;min-height:120px;font-size:14px;display:flex}._corp-flat-list__option_406kv_1{cursor:pointer;border-radius:4px;transition:background-color .2s}._corp-flat-list__option_406kv_1:hover{background-color:#f3f3f3}._corp-flat-list__option--disabled_406kv_9{cursor:not-allowed;opacity:.6}._corp-flat-list__option--disabled_406kv_9:hover{background-color:#0000}._corp-flat-list__option--checkbox_406kv_16,._corp-flat-list__option--radio_406kv_19{padding:0 10px}._corp-flat-list__radio-group_406kv_22{width:100%}._corp-flat-list__radio-group_406kv_22 .ant-radio-wrapper{justify-content:space-between;align-items:center;width:100%;display:flex}._corp-flat-list__radio-group_406kv_22 .ant-radio{flex-shrink:0;order:101}._corp-flat-list__radio-group_406kv_22 .ant-radio-label{text-overflow:ellipsis;white-space:nowrap;flex:1;order:100;align-items:center;min-width:0;overflow:hidden;padding-inline-start:0!important}._corp-flat-list__radio_406kv_22{width:100%}._corp-flat-list__name_406kv_48{user-select:none;text-overflow:ellipsis;white-space:nowrap;font-size:14px;overflow:hidden}._corp-flat-list__checkbox-row_406kv_55{flex:1;align-items:center;gap:6px;padding:7px 0;display:flex;overflow:hidden}._corp-flat-list__checkbox_406kv_55,._corp-flat-list__group_406kv_66{width:100%}._corp-label-tree_1lic4_1{height:100%;position:relative}._corp-label-tree__switcher-icon_1lic4_5{color:#666;font-size:16px;transition:transform .3s ease-in-out}._corp-label-tree__switcher-icon--expanded_1lic4_10{transform:rotate(90deg)}._corp-label-tree__empty_1lic4_13{pointer-events:none;justify-content:center;align-items:center;display:flex;position:absolute;inset:0}._corp-label-tree__empty-text_1lic4_21{color:#999;font-size:14px}._enterprise-label-list__option_1mf5d_1{cursor:pointer;border-radius:4px;transition:background-color .2s}._enterprise-label-list__option_1mf5d_1:hover{background-color:#f3f3f3}._enterprise-label-list__option--checkbox_1mf5d_9,._enterprise-label-list__option--radio_1mf5d_12{padding:0 10px}._enterprise-label-list__radio-group_1mf5d_15{width:100%}._enterprise-label-list__radio-group_1mf5d_15 .ant-radio-wrapper{justify-content:space-between;align-items:center;width:100%;display:flex}._enterprise-label-list__radio-group_1mf5d_15 .ant-radio{flex-shrink:0;order:101}._enterprise-label-list__radio-group_1mf5d_15 .ant-radio-label{text-overflow:ellipsis;white-space:nowrap;flex:1;order:100;align-items:center;min-width:0;overflow:hidden;padding-inline-start:0!important}._enterprise-label-list__radio_1mf5d_15{width:100%}._enterprise-label-list__name_1mf5d_41{user-select:none;text-overflow:ellipsis;white-space:nowrap;font-size:14px;overflow:hidden}._enterprise-label-list__checkbox-row_1mf5d_48{flex:1;align-items:center;gap:6px;padding:7px 0;display:flex;overflow:hidden}._enterprise-label-list__checkbox_1mf5d_48,._enterprise-label-list__group_1mf5d_59{width:100%}._relation-ship-list__option_bqzl7_1{cursor:pointer;border-radius:4px;transition:background-color .2s}._relation-ship-list__option_bqzl7_1:hover{background-color:#f3f3f3}._relation-ship-list__option--checkbox_bqzl7_9,._relation-ship-list__option--radio_bqzl7_12{padding:0 10px}._relation-ship-list__radio-group_bqzl7_15{width:100%}._relation-ship-list__radio-group_bqzl7_15 .ant-radio-wrapper{justify-content:space-between;align-items:center;width:100%;display:flex}._relation-ship-list__radio-group_bqzl7_15 .ant-radio{flex-shrink:0;order:101}._relation-ship-list__radio-group_bqzl7_15 .ant-radio-label{text-overflow:ellipsis;white-space:nowrap;flex:1;order:100;align-items:center;min-width:0;overflow:hidden;padding-inline-start:0!important}._relation-ship-list__radio_bqzl7_15{width:100%}._relation-ship-list__name_bqzl7_41{user-select:none;text-overflow:ellipsis;white-space:nowrap;font-size:14px;overflow:hidden}._relation-ship-list__checkbox-row_bqzl7_48{flex:1;align-items:center;gap:6px;padding:7px 0;display:flex;overflow:hidden}._relation-ship-list__checkbox_bqzl7_48,._relation-ship-list__group_bqzl7_59{width:100%}._dept-users-position-panel_13o0v_1{height:100%;line-height:normal;display:flex}._dept-users-position-panel__department_13o0v_6{flex:0 0 40%;position:relative;overflow:hidden}._dept-users-position-panel__mode_13o0v_11{border-left:1px solid #e0e0e0;flex:0 0 28%;overflow:hidden}._dept-users-position-panel__mode-list_13o0v_16{color:#121211;flex-direction:column;padding:4px;display:flex}._dept-users-position-panel__mode-item_13o0v_22{cursor:pointer;border-radius:4px;padding:7px 10px;font-size:14px;transition:background-color .2s,color .2s}._dept-users-position-panel__mode-item_13o0v_22:hover{background-color:#f3f3f3}._dept-users-position-panel__mode-item--active_13o0v_32{color:#0265ff;background-color:#f0f6ff}._dept-users-position-panel__mode-item--active_13o0v_32:hover{background-color:#f0f6ff}._dept-users-position-panel__positions_13o0v_39{border-left:1px solid #e0e0e0;flex:1;position:relative;overflow:hidden}._dept-users-position-panel__position-group_13o0v_45{flex-direction:column;width:100%;display:flex}._dept-users-position-panel__position-item_13o0v_50{border-radius:4px;padding:0 10px;transition:background-color .2s}._dept-users-position-panel__position-item_13o0v_50:hover{background-color:#f3f3f3}._dept-users-position-panel__position-checkbox_13o0v_58,._dept-users-position-panel__position-radio_13o0v_58{width:100%}._dept-users-position-panel__position-radio-group_13o0v_61{flex-direction:column;width:100%;display:flex}._dept-users-position-panel__position-radio-group_13o0v_61 .ant-radio-wrapper{justify-content:space-between;align-items:center;width:100%;display:flex}._dept-users-position-panel__position-radio-group_13o0v_61 .ant-radio{flex-shrink:0;order:101}._dept-users-position-panel__position-radio-group_13o0v_61 .ant-radio-label{text-overflow:ellipsis;white-space:nowrap;flex:1;order:100;align-items:center;min-width:0;overflow:hidden;padding-inline-start:0!important}._dept-users-position-panel__position-checkbox-row_13o0v_86{flex:1;align-items:center;padding:7px 0;display:flex;overflow:hidden}._dept-users-position-panel__position-name_13o0v_93{color:#121211;text-overflow:ellipsis;white-space:nowrap;flex:1;min-width:0;display:block;overflow:hidden}._dept-users-position-panel__empty_13o0v_102{color:#999;justify-content:center;align-items:center;display:flex;position:absolute;inset:0}._dept-users-position-panel__switcher-icon_13o0v_110{color:#666;font-size:16px;transition:transform .3s ease-in-out}._dept-users-position-panel__switcher-icon--expanded_13o0v_115{transform:rotate(90deg)}._dept-users-role-panel__option-list_ioi2c_1{flex-direction:column;display:flex}._dept-users-role-panel__option-item_ioi2c_6{color:#121211;cursor:pointer;border-radius:4px;padding:7px 10px;font-size:14px;transition:background-color .2s,color .2s}._dept-users-role-panel__option-item_ioi2c_6:hover{background-color:#f3f3f3}._dept-users-role-panel__option-checkbox_ioi2c_18,._dept-users-role-panel__option-radio_ioi2c_19{width:100%}._dept-users-role-panel__option-radio-group_ioi2c_23{flex-direction:column;width:100%;display:flex}._dept-users-role-panel__option-radio-group_ioi2c_23 .ant-radio-wrapper{justify-content:space-between;align-items:center;width:100%;display:flex}._dept-users-role-panel__option-radio-group_ioi2c_23 .ant-radio{flex-shrink:0;order:101}._dept-users-role-panel__option-radio-group_ioi2c_23 .ant-radio-label{text-overflow:ellipsis;white-space:nowrap;flex:1;order:100;align-items:center;min-width:0;overflow:hidden;padding-inline-start:0!important}._dept-users-role-panel__option-checkbox-row_ioi2c_49{flex:1;align-items:center;display:flex;overflow:hidden}._dept-users-role-panel__option-name_ioi2c_56{color:#121211;text-overflow:ellipsis;white-space:nowrap;min-width:0;display:block;overflow:hidden}._dept-users-role-panel__empty_ioi2c_65{color:#999;justify-content:center;align-items:center;display:flex;position:absolute;inset:0}._dept-users-role-panel_ioi2c_1{height:100%;line-height:normal;display:flex}._dept-users-role-panel__menu_ioi2c_79{flex:0 0 192px;padding:4px;overflow:hidden}._dept-users-role-panel__menu-list_ioi2c_84{flex-direction:column;display:flex}._dept-users-role-panel__menu-item_ioi2c_88{color:#121211;cursor:pointer;border-radius:4px;padding:7px 10px;font-size:14px;transition:background-color .2s,color .2s}._dept-users-role-panel__menu-item_ioi2c_88:hover{background-color:#f3f3f3}._dept-users-role-panel__menu-item--active_ioi2c_99{color:#0265ff;background-color:#f0f6ff}._dept-users-role-panel__menu-item--active_ioi2c_99:hover{background-color:#f0f6ff}._dept-users-role-panel__tree-section_ioi2c_106,._dept-users-role-panel__options-section_ioi2c_106,._dept-users-role-panel__pick-section_ioi2c_106{border-left:1px solid #e0e0e0;flex:1;position:relative;overflow:hidden}._dept-users-role-panel_ioi2c_1>section:first-child{border-left:none}._dept-users-role-panel__option-item--active_ioi2c_115{color:#0265ff;background-color:#f0f6ff}._dept-users-role-panel__option-item--active_ioi2c_115:hover{background-color:#f0f6ff}._dept-users-role-panel__tree-icon_ioi2c_122{color:#6f81bd}._dept-users-role-panel__switcher-icon_ioi2c_125{color:#666;font-size:16px;transition:transform .3s ease-in-out}._dept-users-role-panel__switcher-icon--expanded_ioi2c_130{transform:rotate(90deg)}._dept-users-extra-contact-panel_mcorh_1{height:100%;line-height:normal;display:flex}._dept-users-extra-contact-panel__menu_mcorh_6,._dept-users-extra-contact-panel__group-type-section_mcorh_6{flex:0 0 192px;padding:4px;overflow:hidden}._dept-users-extra-contact-panel__group-type-section_mcorh_6,._dept-users-extra-contact-panel__groups-section_mcorh_11,._dept-users-extra-contact-panel__members-section_mcorh_11{border-left:1px solid #e0e0e0}._dept-users-extra-contact-panel__menu-list_mcorh_14,._dept-users-extra-contact-panel__group-list_mcorh_14{flex-direction:column;display:flex}._dept-users-extra-contact-panel__menu-item_mcorh_18,._dept-users-extra-contact-panel__group-item_mcorh_18{color:#121211;cursor:pointer;border-radius:4px;padding:7px 10px;font-size:14px;transition:background-color .2s,color .2s}._dept-users-extra-contact-panel__menu-item_mcorh_18:hover,._dept-users-extra-contact-panel__group-item_mcorh_18:hover{background-color:#f3f3f3}._dept-users-extra-contact-panel__menu-item--active_mcorh_29,._dept-users-extra-contact-panel__group-item--active_mcorh_29{color:#0265ff;background-color:#f0f6ff}._dept-users-extra-contact-panel__menu-item--active_mcorh_29:hover,._dept-users-extra-contact-panel__group-item--active_mcorh_29:hover{background-color:#f0f6ff}._dept-users-extra-contact-panel__menu-item--selectable_mcorh_36,._dept-users-extra-contact-panel__group-item--selectable_mcorh_36{padding:0 10px}._dept-users-extra-contact-panel__groups-section_mcorh_11,._dept-users-extra-contact-panel__members-section_mcorh_11{flex:1;position:relative;overflow:hidden}._dept-users-extra-contact-panel__members-section_mcorh_11,._dept-users-extra-contact-panel__list-content_mcorh_47{padding:4px}._dept-users-extra-contact-panel__group-row_mcorh_50{flex:1;align-items:center;min-width:0;padding:7px 0;display:flex;overflow:hidden}._dept-users-extra-contact-panel__group-name_mcorh_58{text-overflow:ellipsis;white-space:nowrap;min-width:0;display:block;overflow:hidden}._dept-users-extra-contact-panel__group-radio-group_mcorh_65{flex-direction:column;width:100%;display:flex}._dept-users-extra-contact-panel__group-radio-group_mcorh_65 .ant-radio-wrapper{justify-content:space-between;align-items:center;width:100%;display:flex}._dept-users-extra-contact-panel__group-radio-group_mcorh_65 .ant-radio{flex-shrink:0;order:101}._dept-users-extra-contact-panel__group-radio-group_mcorh_65 .ant-radio-label{text-overflow:ellipsis;white-space:nowrap;flex:1;order:100;align-items:center;min-width:0;overflow:hidden;padding-inline-start:0!important}._dept-users-extra-contact-panel__group-radio_mcorh_65{width:100%}._dept-users-extra-contact-panel__empty_mcorh_93{color:#999;justify-content:center;align-items:center;display:flex;position:absolute;inset:0}._corp-dept-panel_630uv_1{height:100%;line-height:normal;display:flex}._corp-dept-panel__tree_630uv_6{box-sizing:border-box;border-right:1px solid #e0e0e0;flex-basis:50%;min-width:0}._corp-dept-panel__members_630uv_12{flex:1;min-width:0}._other-panel_1g3as_1{height:100%}._other-panel__list_1g3as_4{width:100%;margin:0;padding:4px;list-style:none}._other-panel__radio-group_1g3as_10{width:100%}._other-panel__radio-group_1g3as_10 .ant-radio-wrapper{justify-content:space-between;align-items:center;width:100%;display:flex}._other-panel__radio-group_1g3as_10 .ant-radio{flex-shrink:0;order:101}._other-panel__radio-group_1g3as_10 .ant-radio-label{text-overflow:ellipsis;white-space:nowrap;flex:1;order:100;align-items:center;min-width:0;overflow:hidden;padding-inline-start:0!important}._other-panel__item_1g3as_33{cursor:pointer;border-radius:4px;padding:0 10px;transition:background-color .2s}._other-panel__item_1g3as_33:hover{background-color:#f3f3f3}._other-panel__control_1g3as_42{width:100%}._other-panel__checkbox-row_1g3as_45{flex:1;align-items:center;min-width:0;padding:7px 0;display:flex;overflow:hidden}._other-panel__name_1g3as_53{color:#121211;user-select:none;text-overflow:ellipsis;white-space:nowrap;min-width:0;font-size:14px;overflow:hidden}._role-panel_19bf2_1{height:100%;line-height:normal;display:flex}._role-panel__menu_19bf2_6{flex:0 0 192px;padding:4px}._role-panel__menu-list_19bf2_10{flex-direction:column;display:flex}._role-panel__menu-item_19bf2_14{cursor:pointer;color:#121211;border-radius:4px;padding:7px 10px;font-size:14px;transition:background-color .2s,color .2s}._role-panel__menu-item_19bf2_14:hover{background-color:#f3f3f3}._role-panel__menu-item--active_19bf2_25{color:#0265ff;background-color:#f0f6ff}._role-panel__menu-item--active_19bf2_25:hover{background-color:#f0f6ff}._role-panel__tree-section_19bf2_32{border-left:1px solid #e0e0e0;flex:1;position:relative;overflow:hidden}._role-panel__tree-section--leading_19bf2_38{border-left:none}._role-panel__tree-empty_19bf2_41{justify-content:center;align-items:center;display:flex;position:absolute;inset:0}._role-panel__tree-empty-text_19bf2_48{color:#999}._role-panel__tree-icon_19bf2_51{color:#0265ff}._role-panel__switcher-icon_19bf2_54{color:#666;font-size:16px;transition:transform .3s ease-in-out}._role-panel__switcher-icon--expanded_19bf2_59{transform:rotate(90deg)}._role-panel__list-section_19bf2_62{border-left:1px solid #e0e0e0;flex:1;min-width:0;padding:4px;position:relative}._role-panel__list-content_19bf2_69{padding:4px}._role-panel__badge_19bf2_72{color:#4d609f;text-overflow:ellipsis;white-space:nowrap;flex:1;min-width:0;font-size:12px;overflow:hidden}._role-panel__empty_19bf2_81{justify-content:center;align-items:center;display:flex;position:absolute;inset:0}._role-panel__empty-text_19bf2_88{color:#999}._position-panel_1bzcx_1{height:100%;line-height:normal;display:flex}._position-panel__department_1bzcx_6{flex:0 0 240px;position:relative;overflow:hidden}._position-panel__menu_1bzcx_11{border-left:1px solid #e0e0e0;flex:0 0 200px;position:relative;overflow:hidden}._position-panel__menu-list_1bzcx_17{color:#121211;flex-direction:column;padding:4px;display:flex}._position-panel__menu-item_1bzcx_23{cursor:pointer;border-radius:4px;min-width:0;padding:7px 10px;font-size:14px;transition:background-color .2s,color .2s;overflow:hidden}._position-panel__menu-item_1bzcx_23:hover{background-color:#f3f3f3}._position-panel__menu-item--active_1bzcx_35{color:#0265ff;background-color:#f0f6ff}._position-panel__menu-item--active_1bzcx_35:hover{background-color:#f0f6ff}._position-panel__menu-item-label_1bzcx_42{text-overflow:ellipsis;white-space:nowrap;display:block;overflow:hidden}._position-panel__list_1bzcx_48{border-left:1px solid #e0e0e0;flex:1;min-width:0;padding:4px;position:relative}._position-panel__badge_1bzcx_55{color:#4d609f;text-overflow:ellipsis;white-space:nowrap;flex:1;min-width:0;font-size:12px;overflow:hidden}._position-panel__empty_1bzcx_64{color:#999;justify-content:center;align-items:center;display:flex;position:absolute;inset:0}._position-panel__switcher-icon_1bzcx_72{color:#666;font-size:16px;transition:transform .3s ease-in-out}._position-panel__switcher-icon--expanded_1bzcx_77{transform:rotate(90deg)}._extra-contact-panel_hfkb5_1{height:100%;line-height:normal;display:flex}._extra-contact-panel__menu_hfkb5_6{flex:0 0 192px;padding:4px}._extra-contact-panel__menu-list_hfkb5_10{flex-direction:column;display:flex}._extra-contact-panel__menu-item_hfkb5_14{cursor:pointer;user-select:none;color:#121211;border-radius:4px;padding:7px 10px;font-size:14px;transition:background-color .2s,color .2s}._extra-contact-panel__menu-item_hfkb5_14:hover{background-color:#f3f3f3}._extra-contact-panel__menu-item--active_hfkb5_26{color:#0265ff;background-color:#f0f6ff}._extra-contact-panel__menu-item--active_hfkb5_26:hover{background-color:#f0f6ff}._extra-contact-panel__groups_hfkb5_33{transition:flex-basis .2s,padding .2s;overflow:hidden}._extra-contact-panel__groups--expanded_hfkb5_37{border-left:1px solid #e0e0e0;flex:1;position:relative}._extra-contact-panel__groups--collapsed_hfkb5_42{flex:0 0 0;padding:0}._extra-contact-panel__group-list_hfkb5_46{flex-direction:column;display:flex}._extra-contact-panel__group-item_hfkb5_50{cursor:pointer;color:#121211;border-radius:4px;padding:7px 10px;font-size:14px;transition:background-color .2s,color .2s}._extra-contact-panel__group-item_hfkb5_50:hover{background-color:#f3f3f3}._extra-contact-panel__group-item--active_hfkb5_61{color:#0265ff;background-color:#f0f6ff}._extra-contact-panel__group-item--active_hfkb5_61:hover{background-color:#f0f6ff}._extra-contact-panel__members_hfkb5_68{border-left:1px solid #e0e0e0;flex:1;padding:4px;position:relative;overflow:hidden}._extra-contact-panel__members_hfkb5_68:only-child{border-left:none}._extra-contact-panel__list-content_hfkb5_78{padding:4px}._extra-contact-panel__empty_hfkb5_81{color:#999;justify-content:center;align-items:center;display:flex;position:absolute;inset:0}._extra-contact-panel__empty-text_hfkb5_90{color:inherit}._current-user-panel_184e6_1,._bsy-flow-creator-panel_20gxk_1{height:100%;padding:4px}._selection-area_15kqb_1{transition:height var(--selection-area-duration) var(--selection-area-ease);position:relative}._selection-area__container_15kqb_5{z-index:11;transition:padding-bottom var(--selection-area-duration) var(--selection-area-ease);color:#121211;background-color:#fff;position:relative}._selection-area__container--expanded_15kqb_12{padding-bottom:50px}._selection-area__container--animating_15kqb_15{position:absolute;left:0;right:0}._selection-area__body_15kqb_20{min-height:52px;transition:border-color var(--selection-area-duration) var(--selection-area-ease);border:1px dashed #e0e0e0;border-radius:4px;position:relative}._selection-area__body--expanded_15kqb_27,._selection-area__body_15kqb_20:not(._selection-area__body--expanded_15kqb_27):hover{border-color:#0265ff}._selection-area__scroll-gutter_15kqb_33{padding:10px}._selection-area__scroll_15kqb_33{transition:height var(--selection-area-duration) var(--selection-area-ease);overflow:hidden}._selection-area__button_15kqb_40{color:#0265ff;background-color:#fff;justify-content:center;align-items:center;height:50px;display:flex;position:absolute;bottom:0;left:0;right:0}._selection-area__mask_15kqb_52{z-index:10;background-color:#0000004d;position:absolute;inset:0}._preview-selected-items_zglpy_1{padding:0}._preview-selected-items--measure_zglpy_4{opacity:0;pointer-events:none;z-index:-1;padding:10px;position:absolute;top:0;left:0}._preview-selected-items__list_zglpy_13{gap:var(--selection-area-gap);flex-wrap:wrap;font-size:0;display:flex}._preview-selected-items__item_zglpy_19{background-color:#e6f8ff;border-radius:100px;align-items:center;gap:6px;height:30px;padding-left:6px;padding-right:8px;line-height:normal;display:inline-flex}._preview-selected-items__item--user_zglpy_30{background-color:#eceff3}._preview-selected-items__item--department_zglpy_33{background-color:#ebf0ff}._preview-selected-items__item--relation_zglpy_36{background-color:#ffeafc}._preview-selected-items__item--public_zglpy_39{background-color:#fff0ea}._preview-selected-items__content_zglpy_42{flex-shrink:0;align-items:center;height:20px;display:inline-flex}._preview-selected-items__text_zglpy_48{align-items:center;font-size:14px;display:inline-flex}._preview-selected-items__name_zglpy_53{text-overflow:ellipsis;white-space:nowrap;max-width:180px;display:inline-block;overflow:hidden}._preview-selected-items__badge_zglpy_60{color:#4d609f;font-size:12px;display:inline-block}._preview-selected-items__close_zglpy_65{cursor:pointer;align-items:center;width:14px;height:14px;display:flex}._preview-selected-items__close_zglpy_65 ._anticon_zglpy_72{color:#666;font-size:14px}._preview-selected-items__close_zglpy_65 ._anticon_zglpy_72:hover{color:#0265ff}._preview-selected-items__more_zglpy_79{color:#0265ff;align-items:center;font-size:14px;display:inline-flex}._preview-selected-items__more-button_zglpy_85{gap:6px;font-size:14px;display:inline-flex}._preview-selected-items__more-button_zglpy_85:hover{opacity:.8}._selection-tab-list_1odyj_1{border-bottom:1px solid #e0e0e0;justify-content:space-between;padding:0 10px;display:flex;position:relative}._selection-tab-list__tabs-wrapper_1odyj_8{flex:1;min-width:0;position:relative;overflow:hidden}._selection-tab-list__tabs-track_1odyj_14{width:max-content;transition:transform .3s ease-in-out;display:inline-block;position:relative}._selection-tab-list__tabs_1odyj_8{flex-wrap:nowrap;gap:40px;margin:0;padding:5px 10px 5px 0;list-style:none;display:flex}._selection-tab-list__indicator_1odyj_28{pointer-events:none;background-color:#0265ff;height:2px;position:absolute;bottom:0;left:0}._selection-tab-list__indicator--animated_1odyj_36{transition:transform .3s ease-in-out}._selection-tab-list__item_1odyj_39{cursor:pointer;color:inherit;white-space:nowrap;flex-shrink:0;padding:4px 0;transition:color .2s;position:relative}._selection-tab-list__item_1odyj_39:hover,._selection-tab-list__item--active_1odyj_51{color:#0265ff}._selection-tab-list__search_1odyj_54{flex-shrink:0;align-items:center;display:flex;position:relative}._selection-tab-list__search-field_1odyj_60{width:100%;position:relative}._selection-tab-list__input_1odyj_64{background-color:#fff;border:1px solid #e0e0e0;border-radius:100px;outline:none;width:280px;height:30px;padding:0 12px 0 32px;font-size:14px;transition:border-color .3s ease-in-out}._selection-tab-list__input_1odyj_64::placeholder{color:#999}._selection-tab-list__input_1odyj_64:hover,._selection-tab-list__input_1odyj_64:focus{border-color:#0265ff}._selection-tab-list__search-icon_1odyj_81{color:#666;width:20px;height:20px;position:absolute;top:50%;left:10px;transform:translateY(-50%)}._selection-tab-panel_f6iav_1{width:100%;height:100%}._selection-tabs_88491_1{border:1px solid #e0e0e0;border-radius:6px}._member-search_why78_1{height:100%;position:relative;overflow:hidden}._member-search__tree-wrapper_why78_6{padding:4px}._member-search__tree-content_why78_9{min-width:0;padding:4px;overflow:hidden}._member-search__tree-title_why78_14{align-items:center;gap:6px;min-width:0;margin-left:-16px;display:flex}._member-search__tree-name_why78_21{user-select:none;text-overflow:ellipsis;white-space:nowrap;min-width:0;font-size:14px;overflow:hidden}._member-search__tree-extra_why78_29{color:#4d609f;text-overflow:ellipsis;white-space:nowrap;flex:1;min-width:0;font-size:12px;overflow:hidden}._member-search__switch-icon_why78_38{color:#666;font-size:16px;transition:transform .3s ease-in-out}._member-search__switch-icon--expanded_why78_43{transform:rotate(90deg)}._member-search__empty_why78_46{justify-content:center;align-items:center;display:flex;position:absolute;inset:0}._member-search__empty-text_why78_53{color:#999}._department-search_1lzam_1{position:relative;overflow:hidden}._department-search__scroll_1lzam_5,._department-search__tree-content_1lzam_8{padding:4px}._department-search__title_1lzam_11{align-items:center;gap:6px;min-width:0;display:flex}._department-search__name_1lzam_17{user-select:none;text-overflow:ellipsis;white-space:nowrap;min-width:0;font-size:14px;overflow:hidden}._department-search__extra_1lzam_25{color:#4d609f;text-overflow:ellipsis;white-space:nowrap;min-width:0;font-size:12px;overflow:hidden}._department-search__icon_1lzam_33{color:#0265ff;flex-shrink:0}._department-search__switch-icon_1lzam_37{color:#666;font-size:16px;transition:transform .3s ease-in-out}._department-search__switch-icon--expanded_1lzam_42{transform:rotate(90deg)}._department-search__empty_1lzam_45{justify-content:center;align-items:center;display:flex;position:absolute;inset:0}._department-search__empty-text_1lzam_52{color:#999}._dept-users-search_1urw3_1{height:100%;position:relative;overflow:hidden}._dept-users-search__tree-wrapper_1urw3_6{padding:4px}._dept-users-search__tree-content_1urw3_9{min-width:0;padding:4px;overflow:hidden}._dept-users-search__title_1urw3_14{align-items:center;gap:6px;min-width:0;display:flex}._dept-users-search__name_1urw3_20{user-select:none;text-overflow:ellipsis;white-space:nowrap;min-width:0;font-size:14px;overflow:hidden}._dept-users-search__extra_1urw3_28{color:#4d609f;text-overflow:ellipsis;white-space:nowrap;min-width:0;font-size:12px;overflow:hidden}._dept-users-search__icon_1urw3_36{color:#0265ff;flex-shrink:0}._dept-users-search__switch-icon_1urw3_40{color:#666;font-size:16px;transition:transform .3s ease-in-out}._dept-users-search__switch-icon--expanded_1urw3_45{transform:rotate(90deg)}._dept-users-search__empty_1urw3_48{justify-content:center;align-items:center;display:flex;position:absolute;inset:0}._dept-users-search__empty-text_1urw3_55{color:#999}._depts-member_s7xsa_1{flex-direction:column;height:100%;display:flex}._depts-member__body_s7xsa_6{padding:20px 20px 0}._depts-member__content_s7xsa_9{flex-direction:column;gap:10px;display:flex;position:relative}._depts-member__state_s7xsa_15{color:#666;justify-content:center;align-items:center;height:445px;font-size:14px;display:flex}._depts-member__footer_s7xsa_23{align-items:center;padding:14px 20px;display:flex}._depts-member__clear-area_s7xsa_28{flex:1;display:flex}._depts-member__clear-button_s7xsa_32{cursor:pointer;align-items:center;gap:10px;height:100%;transition:color .2s;display:inline-flex}._depts-member__clear-button_s7xsa_32:hover{color:#0265ff}._depts-member__actions_s7xsa_43{flex:1;justify-content:flex-end;gap:12px;margin-left:auto;display:flex}._progress-echart_my4si_1{height:100%;position:relative}._progress-echart_my4si_1 ._gauge_semicircle_my4si_5{display:flex}._progress-echart_my4si_1 ._gauge_semicircle_my4si_5 ._chart-label-target-enable_my4si_8{margin-left:10px}._progress-echart_my4si_1 ._chart-label-enable_my4si_11{z-index:-1;flex-direction:column;justify-content:center;align-items:center;width:100%;height:100%;display:flex;position:absolute;top:0;left:0}._progress-echart_my4si_1 ._chart-label-percent-content_my4si_23,._progress-echart_my4si_1 ._chart-label-value-enable_my4si_24,._progress-echart_my4si_1 ._chart-label-target-enable_my4si_8{color:#000;font-size:14px}._progress-echart_my4si_1 ._chart-label-percent-enable_my4si_29{color:#000;font-size:20px}
2
2
  /*$vite$:1*/
package/dist/index.js CHANGED
@@ -22,9 +22,9 @@ import "./DeptsMemberSelector/Member-BrNFIHZy.js";
22
22
  import "./DeptsMemberSelector/Department-DXD3xoiS.js";
23
23
  import { t as o } from "./ConfigProvider/ConfigProvider-51iupuCp.js";
24
24
  import { r as s, t as c } from "./vendors/echarts.js";
25
- import "./BubbleChart/AutoGridEChart-VA8BTIj4.js";
26
- import { t as l } from "./BubbleChart/BubbleChart-CGLJJHYy.js";
27
- import { t as u } from "./Scatterplot/Scatterplot-R66_f3TZ.js";
25
+ import "./BubbleChart/AutoGridEChart-Bf0Hx8RC.js";
26
+ import { t as l } from "./BubbleChart/BubbleChart-BTssT3eW.js";
27
+ import { t as u } from "./Scatterplot/Scatterplot-C7pRcWDx.js";
28
28
  import { forwardRef as d, useEffect as f, useImperativeHandle as p, useRef as m } from "react";
29
29
  import { jsx as h, jsxs as g } from "react/jsx-runtime";
30
30
  //#region src/utils/recordSelectedNode.ts
package/package.json CHANGED
@@ -1,11 +1,11 @@
1
1
  {
2
2
  "name": "@baishuyun/ui-business",
3
- "version": "6.2.0",
3
+ "version": "6.2.3",
4
4
  "description": "百数云业务组件库",
5
5
  "type": "module",
6
6
  "main": "dist/index.js",
7
7
  "module": "dist/index.js",
8
- "types": "dist/index.d.ts",
8
+ "types": "dist/components/index.d.ts",
9
9
  "exports": {
10
10
  ".": {
11
11
  "import": "./dist/index.js",
@@ -43,7 +43,7 @@
43
43
  "author": "BSY Team",
44
44
  "license": "MIT",
45
45
  "peerDependencies": {
46
- "@baishuyun/ui-base": ">=6.3.2",
46
+ "@baishuyun/ui-base": ">=6.4.0",
47
47
  "ahooks": ">=3.7.0",
48
48
  "antd": ">=6.0.0 <7.0.0",
49
49
  "immer": "^10.0.0",
@@ -67,13 +67,13 @@
67
67
  "sass": "^1.90.0",
68
68
  "vite": "^8.0.0",
69
69
  "vite-plugin-dts": "^4.5.4",
70
- "@baishuyun/ui-base": "6.3.2"
70
+ "@baishuyun/ui-base": "6.4.0"
71
71
  },
72
72
  "dependencies": {
73
73
  "autoprefixer": "^10.4.21",
74
74
  "axios": "^1.11.0",
75
75
  "clsx": "^2.0.0",
76
- "echarts": "5.6.0",
76
+ "echarts": "6.1.0",
77
77
  "echarts-liquidfill": "3.1.0",
78
78
  "lodash-es": "^4.17.21",
79
79
  "postcss": "^8.5.6",
@@ -1,194 +0,0 @@
1
- import { t as e } from "../vendors/clsx.js";
2
- import { t } from "../vendors/echarts.js";
3
- import { forwardRef as n, useEffect as r, useImperativeHandle as i, useRef as a, useState as o } from "react";
4
- import { jsx as s, jsxs as c } from "react/jsx-runtime";
5
- //#region src/utils/getLegendHeight.ts
6
- function l(e, t, n, r) {
7
- let i = e.series.map((e) => e.data[0][0].toString()), a = e.series.map((e) => e.data[0][1].toString());
8
- function o(e) {
9
- let t = "";
10
- if (e.fontSize || e.fontFamily || e.fontWeight) {
11
- let n = "";
12
- n = typeof e.fontSize == "string" && (e.fontSize.indexOf("px") !== -1 || e.fontSize.indexOf("rem") !== -1 || e.fontSize.indexOf("em") !== -1) ? e.fontSize : isNaN(+e.fontSize) ? "12px" : e.fontSize + "px", t = [
13
- e.fontStyle,
14
- e.fontWeight,
15
- n,
16
- e.fontFamily || "sans-serif"
17
- ].join(" ");
18
- }
19
- return t && t.trim() || e.textFont || e.font;
20
- }
21
- function s(e, t) {
22
- let n = { ...t }, i = parseInt(n.fontSize || r.style?.fontSize || 12);
23
- n.fontSize = isNaN(i) ? 12 : i, n.fontFamily = n.fontFamily || r.style?.fontFamily || "verdana";
24
- let a = o(n), s = document.createElement("canvas").getContext("2d") || {};
25
- return s.font = a, s?.measureText(e)?.width || 0;
26
- }
27
- function c(e) {
28
- let t = parseInt(e?.fontSize || e?.style?.fontSize || 12);
29
- return isNaN(t) ? 12 : t;
30
- }
31
- function l() {
32
- let t = 0, n = 0;
33
- if (e.xAxis && e.xAxis.axisLabel) {
34
- n = c(e.xAxis.axisLabel) + 10, t = n;
35
- let r = e.xAxis.axisLabel.rotate;
36
- if (r && r !== 0) {
37
- let a = 0, o = "";
38
- if (i && Array.isArray(i) && i.forEach((e) => {
39
- let t = e;
40
- t.length > a && (a = t.length, o = e);
41
- }), a > 0) {
42
- let i = s(o, e.xAxis.axisLabel), a = Math.abs(r) * Math.PI / 180, c = i * Math.sin(a);
43
- t = Math.max(n, c);
44
- }
45
- }
46
- }
47
- return t;
48
- }
49
- function u() {
50
- let t = 0, n = 0;
51
- if (e.yAxis && e.yAxis.axisLabel) {
52
- let r = 0, i = "";
53
- if (a && Array.isArray(a) && a.forEach((e) => {
54
- let t = e;
55
- t.length > r && (r = t.length, i = e);
56
- }), r > 0) {
57
- let r = e.yAxis.axisLabel.rotate, a = s(i, e.yAxis.axisLabel), o = c(e.yAxis.axisLabel);
58
- if (n = a + 15, t = n, r != null) if (r === 0) t = a + 15;
59
- else if (r === 90) t = o + 15;
60
- else {
61
- let e = Math.abs(r) * Math.PI / 180;
62
- t = a * Math.cos(e) + 15;
63
- }
64
- }
65
- }
66
- return t;
67
- }
68
- let d = l(), f = u();
69
- return { grid: {
70
- top: (() => {
71
- let t = 0;
72
- return e.xAxis.position === "top" && (t += d + 10), e.xAxis.title !== "" && e.xAxis.position === "top" && (t += 24), t < 20 ? 20 : t;
73
- })(),
74
- bottom: (() => {
75
- let t = 0;
76
- return (!e.xAxis.position || ["bottom", "zero"].includes(e.xAxis.position)) && (t += d + 10), e.xAxis.title !== "" && ["bottom", "zero"].includes(e.xAxis.position) && (t += 24), t < 20 ? 20 : t;
77
- })(),
78
- left: (() => {
79
- let t = 0;
80
- return (!e.yAxis.position || ["left", "zero"].includes(e.yAxis.position)) && (t += f), e.yAxis.title !== "" && (!e.yAxis.position || ["left", "zero"].includes(e.yAxis.position)) && (t += 14), t < 20 ? 20 : t;
81
- })(),
82
- right: (() => {
83
- let t = 0;
84
- return e.yAxis.position === "right" && (t += f + 10), e.yAxis.title !== "" && e.yAxis.position === "right" && (t += 14), t < 20 ? 20 : t;
85
- })()
86
- } };
87
- }
88
- //#endregion
89
- //#region src/components/BubbleChart/BubbleChart.module.scss
90
- var u = {
91
- "auto-grid-echart": "_auto-grid-echart_11e81_1",
92
- "xAxis-title": "_xAxis-title_11e81_6",
93
- "yAxis-title": "_yAxis-title_11e81_11",
94
- "legend-position-right": "_legend-position-right_11e81_20",
95
- "legend-position-top": "_legend-position-top_11e81_23",
96
- "t-dash-g2-legend": "_t-dash-g2-legend_11e81_27",
97
- "bsy-chart-body": "_bsy-chart-body_11e81_30",
98
- "legend-position-left": "_legend-position-left_11e81_33",
99
- "t-dash-g2-legend-left": "_t-dash-g2-legend-left_11e81_59",
100
- "legend-label": "_legend-label_11e81_77",
101
- "legend-item": "_legend-item_11e81_89",
102
- "legend-color": "_legend-color_11e81_97",
103
- "t-dash-g2-legend-right": "_t-dash-g2-legend-right_11e81_106",
104
- "t-dash-g2-legend-bottom": "_t-dash-g2-legend-bottom_11e81_153",
105
- "t-dash-g2-legend-top": "_t-dash-g2-legend-top_11e81_193",
106
- "legend-hidden": "_legend-hidden_11e81_233"
107
- }, d = n((n, d) => {
108
- let f = a(null), p = a(null), m = a(null), h = a(null), g = n.dataList.map((e) => e.name), [_, v] = o(0), [y, b] = o(0), [x, S] = o(n.option), [C, w] = o([]), T = () => f.current ? (v(p.current?.offsetHeight || 0), b(p.current?.offsetWidth || 0), {
109
- ...n.option,
110
- grid: {
111
- top: l(n.option, g, f.current.offsetWidth, {}).grid.top,
112
- bottom: l(n.option, g, f.current.offsetWidth, {}).grid.bottom,
113
- left: l(n.option, g, f.current.offsetWidth, {}).grid.left,
114
- right: l(n.option, g, f.current.offsetWidth, {}).grid.right
115
- }
116
- }) : { ...n.option };
117
- i(d, () => ({ resizeEchart: () => {
118
- m.current?.resize();
119
- } })), r(() => {
120
- if (!f.current) return;
121
- m.current = t(f.current);
122
- let e = T();
123
- S(e), console.info(e), m.current.setOption(e, !0), m.current.on("click", function(e) {
124
- n.onChartClick && n.onChartClick(e, n.options, n.dataList);
125
- });
126
- let r = () => {
127
- if (m.current) {
128
- let e = T();
129
- S(e), m.current.setOption(e, !1);
130
- }
131
- };
132
- return setTimeout(r, 100), n.onChartReady && n.onChartReady(m.current), h.current = new ResizeObserver(() => {
133
- m.current?.resize(), setTimeout(r, 50);
134
- }), f.current && h.current.observe(f.current), () => {
135
- h.current?.disconnect(), m.current?.dispose();
136
- };
137
- }, []), r(() => {
138
- if (!m.current) return;
139
- let e = T();
140
- S(e), m.current.setOption(e, !0);
141
- }, [n.option]);
142
- let E = (e, t) => {
143
- console.info(e, t), w((n) => n.includes(e + t) ? n.filter((n) => n !== e + t) : [...n, e + t]);
144
- let n = JSON.parse(JSON.stringify(x));
145
- n.legend.selected[e] = !n.legend.selected[e], S(n), m.current?.setOption(n);
146
- };
147
- return /* @__PURE__ */ c("div", {
148
- className: e(n.className, u["auto-grid-echart"], n.options.legend?.position === "top" && u["legend-position-top"], n.options.legend?.position === "bottom" && u["legend-position-bottom"], n.options.legend?.position === "left" && u["legend-position-left"], n.options.legend?.position === "right" && u["legend-position-right"]),
149
- children: [
150
- /* @__PURE__ */ s("div", {
151
- ref: f,
152
- className: u["bsy-chart-body"],
153
- style: {
154
- height: ["top", "bottom"].includes(n.options?.legend?.position) ? `calc(100% - ${_}px)` : "100%",
155
- width: n.options?.legend?.position === "left" || n.options?.legend?.position === "right" ? `calc(100% - ${y}px)` : "100%",
156
- ...n.style
157
- }
158
- }),
159
- n.options.legend?.enable && /* @__PURE__ */ s("div", {
160
- className: e(u["t-dash-g2-legend"], n.options.legend?.position === "top" && u["t-dash-g2-legend-top"], n.options.legend?.position === "bottom" && u["t-dash-g2-legend-bottom"], n.options.legend?.position === "left" && u["t-dash-g2-legend-left"], n.options.legend?.position === "right" && u["t-dash-g2-legend-right"]),
161
- ref: p,
162
- children: n.dataList.map((t, r) => /* @__PURE__ */ c("div", {
163
- className: e(u["legend-item"], C.includes(t + r) ? "legend-hidden" : ""),
164
- onClick: () => E(t.name, r),
165
- children: [/* @__PURE__ */ s("span", {
166
- className: u["legend-color"],
167
- style: { backgroundColor: n.options.xFields[0]?.colors?.[r]?.color || "#666" }
168
- }), /* @__PURE__ */ s("span", {
169
- className: u["legend-label"],
170
- children: t.name
171
- })]
172
- }, r))
173
- }),
174
- /* @__PURE__ */ s("div", {
175
- className: e(u["xAxis-title"]),
176
- style: ["bottom", "zero"].includes(n.option.xAxis?.position) ? { bottom: n.options.legend?.position === "bottom" && _ || 0 } : n.option.xAxis?.position === "top" ? { top: n.options.legend?.position === "top" && _ || 0 } : void 0,
177
- children: /* @__PURE__ */ s("span", {
178
- style: { color: n.options.titleColor },
179
- children: n.option.xAxis?.title
180
- })
181
- }),
182
- /* @__PURE__ */ s("div", {
183
- className: e(u["yAxis-title"]),
184
- style: ["left", "zero"].includes(n.option.yAxis?.position) ? { left: n.options.legend?.position === "left" && y || 0 } : n.option.yAxis?.position === "right" ? { right: n.options.legend?.position === "right" && y || 0 } : void 0,
185
- children: /* @__PURE__ */ s("span", {
186
- style: { color: n.options.titleColor },
187
- children: n.option.yAxis?.title
188
- })
189
- })
190
- ]
191
- });
192
- });
193
- //#endregion
194
- export { d as t };
@@ -1 +0,0 @@
1
- export declare function getLegendHeight(optinos: any, Legend: any, elwdith: number, fontStyle: any): any;