@rfkit/charts 1.2.23 → 1.2.25

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/index.js CHANGED
@@ -125,10 +125,10 @@ var __webpack_modules__ = {
125
125
  Ax: ()=>leftSegments2frequency,
126
126
  Bp: ()=>isdBm,
127
127
  Ce: ()=>_frequencyCalculation__WEBPACK_IMPORTED_MODULE_0__.Ce,
128
- Fc: ()=>getDateTime,
129
128
  IS: ()=>generateFrequencySegments,
129
+ JP: ()=>dateTimeToTimestamp,
130
130
  LB: ()=>_frequencyCalculation__WEBPACK_IMPORTED_MODULE_0__.LB,
131
- P2: ()=>throttle1,
131
+ P2: ()=>throttle,
132
132
  P9: ()=>convertToTimestampedArrays,
133
133
  PM: ()=>mergeObjects,
134
134
  R1: ()=>_frequencyCalculation__WEBPACK_IMPORTED_MODULE_0__.R1,
@@ -136,6 +136,7 @@ var __webpack_modules__ = {
136
136
  SF: ()=>createGUID,
137
137
  cE: ()=>_frequencyCalculation__WEBPACK_IMPORTED_MODULE_0__.cE,
138
138
  hK: ()=>_frequencyCalculation__WEBPACK_IMPORTED_MODULE_0__.hK,
139
+ i$: ()=>formatTimestamp,
139
140
  ih: ()=>_frequencyCalculation__WEBPACK_IMPORTED_MODULE_0__.ih,
140
141
  kL: ()=>getDimInfo,
141
142
  lj: ()=>getFrequencyToFixed,
@@ -152,29 +153,60 @@ var __webpack_modules__ = {
152
153
  });
153
154
  var _frequencyCalculation__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__("./src/utils/frequencyCalculation.ts");
154
155
  const createGUID = ()=>((1 + Math.random()) * 0x10000 | 0).toString(16).substring(1);
155
- const getDateTime = (t = Date.now(), sep1 = '-', sep2 = ':', time = false)=>{
156
- if (!t) return '';
157
- let timestamp;
158
- if (t instanceof Date) timestamp = t.getTime();
159
- else {
160
- if ('number' != typeof t) return '';
161
- timestamp = t;
162
- if (10 === timestamp.toString().length) timestamp *= 1000;
163
- }
164
- const date = new Date(timestamp);
165
- if (Number.isNaN(date.getTime())) return '';
166
- const year = date.getFullYear();
167
- const month = String(date.getMonth() + 1).padStart(2, '0');
168
- const day = String(date.getDate()).padStart(2, '0');
169
- const hours = String(date.getHours()).padStart(2, '0');
170
- const minutes = String(date.getMinutes()).padStart(2, '0');
171
- const seconds = String(date.getSeconds()).padStart(2, '0');
172
- const timeStr = `${hours}${sep2}${minutes}${sep2}${seconds}`;
173
- if (time) return timeStr;
174
- const dateStr = `${year}${sep1}${month}${sep1}${day}`;
175
- return `${dateStr} ${timeStr}`;
176
- };
177
- function throttle1(func = ()=>{}, wait = 1000 / 30) {
156
+ const formatTimestamp = (input = Date.now(), options)=>{
157
+ if (null == input) return '';
158
+ let ts = 0;
159
+ if ('number' == typeof input) {
160
+ ts = input;
161
+ if (ts > 0 && ts < 10000000000) ts *= 1000;
162
+ } else ts = input.getTime();
163
+ const d = new Date(ts);
164
+ const time = d.getTime();
165
+ if (!Number.isFinite(time)) return '';
166
+ const { dateSeparator = '-', timeSeparator = ':', timeOnly = false } = options ?? {};
167
+ const y = d.getFullYear();
168
+ const m = `${d.getMonth() + 1}`.padStart(2, '0');
169
+ const dd = `${d.getDate()}`.padStart(2, '0');
170
+ const hh = `${d.getHours()}`.padStart(2, '0');
171
+ const mm = `${d.getMinutes()}`.padStart(2, '0');
172
+ const ss = `${d.getSeconds()}`.padStart(2, '0');
173
+ const tStr = `${hh}${timeSeparator}${mm}${timeSeparator}${ss}`;
174
+ if (timeOnly) return tStr;
175
+ const dStr = `${y}${dateSeparator}${m}${dateSeparator}${dd}`;
176
+ return `${dStr} ${tStr}`;
177
+ };
178
+ const dateTimeToTimestamp = (dateTimeStr, sep1 = '-', sep2 = ':', isTimeOnly = false)=>{
179
+ if ('string' != typeof dateTimeStr) {
180
+ console.error("dateTimeToTimestamp: \u8F93\u5165\u5FC5\u987B\u662F\u5B57\u7B26\u4E32");
181
+ return -1;
182
+ }
183
+ let year = 0, month = 0, day = 0, hours = 0, minutes = 0, seconds = 0;
184
+ if (isTimeOnly) {
185
+ const timeParts = dateTimeStr.split(sep2);
186
+ if (3 !== timeParts.length) return -1;
187
+ hours = parseInt(timeParts[0], 10) || 0;
188
+ minutes = parseInt(timeParts[1], 10) || 0;
189
+ seconds = parseInt(timeParts[2], 10) || 0;
190
+ const now = new Date();
191
+ return new Date(now.getFullYear(), now.getMonth(), now.getDate(), hours, minutes, seconds).getTime();
192
+ }
193
+ const partsBySpace = dateTimeStr.split(' ');
194
+ if (2 !== partsBySpace.length) return -1;
195
+ const [datePart, timePart] = partsBySpace;
196
+ const dateParts = datePart.split(sep1);
197
+ if (3 !== dateParts.length) return -1;
198
+ year = parseInt(dateParts[0], 10) || 0;
199
+ month = parseInt(dateParts[1], 10) || 0;
200
+ day = parseInt(dateParts[2], 10) || 0;
201
+ const timeParts = timePart.split(sep2);
202
+ if (3 !== timeParts.length) return -1;
203
+ hours = parseInt(timeParts[0], 10) || 0;
204
+ minutes = parseInt(timeParts[1], 10) || 0;
205
+ seconds = parseInt(timeParts[2], 10) || 0;
206
+ const date = new Date(year, month - 1, day, hours, minutes, seconds);
207
+ return date.getTime();
208
+ };
209
+ function throttle(func = ()=>{}, wait = 1000 / 30) {
178
210
  let prev = 0;
179
211
  return (...arg)=>{
180
212
  const now = Date.now();
@@ -543,16 +575,18 @@ var __webpack_modules__ = {
543
575
  fillStyleTransparentBase
544
576
  };
545
577
  }
546
- const mergeObjects = (e, params)=>{
547
- const p = e;
548
- Object.keys(p).forEach((k)=>{
549
- if ('[object Object]' === Object.prototype.toString.call(params[k])) p[k] = {
550
- ...p[k],
551
- ...params[k]
578
+ const isPlainObject = (value)=>'[object Object]' === Object.prototype.toString.call(value) && null !== value;
579
+ const mergeObjects = (source, params)=>{
580
+ const target = source;
581
+ Object.keys(target).forEach((key)=>{
582
+ const paramValue = params[key];
583
+ if (isPlainObject(paramValue) && isPlainObject(target[key])) target[key] = {
584
+ ...target[key],
585
+ ...paramValue
552
586
  };
553
- else if (void 0 !== params[k]) p[k] = params[k];
587
+ else if (void 0 !== paramValue) target[key] = paramValue;
554
588
  });
555
- return p;
589
+ return target;
556
590
  };
557
591
  function getMidIndex(indexStart, indexEnd) {
558
592
  if (indexStart < 0 || indexEnd < 0 || indexStart > indexEnd) throw new Error('Invalid index range');
@@ -614,7 +648,7 @@ var __webpack_modules__ = {
614
648
  return themeColorBase;
615
649
  };
616
650
  },
617
- "../../../node_modules/.pnpm/@rsbuild+core@1.3.18/node_modules/@rsbuild/core/compiled/css-loader/index.js??ruleSet[1].rules[11].use[1]!builtin:lightningcss-loader??ruleSet[1].rules[11].use[2]!../../../node_modules/.pnpm/@rsbuild+plugin-less@1.5.0_@rsbuild+core@1.6.9/node_modules/@rsbuild/plugin-less/compiled/less-loader/index.js??ruleSet[1].rules[11].use[3]!./src/components/AxisX/styles.module.less": function(module, __webpack_exports__, __webpack_require__) {
651
+ "../../../node_modules/.pnpm/@rsbuild+core@1.3.18/node_modules/@rsbuild/core/compiled/css-loader/index.js??ruleSet[1].rules[11].use[1]!builtin:lightningcss-loader??ruleSet[1].rules[11].use[2]!../../../node_modules/.pnpm/@rsbuild+plugin-less@1.5.0_@rsbuild+core@1.6.12/node_modules/@rsbuild/plugin-less/compiled/less-loader/index.js??ruleSet[1].rules[11].use[3]!./src/components/AxisX/styles.module.less": function(module, __webpack_exports__, __webpack_require__) {
618
652
  __webpack_require__.d(__webpack_exports__, {
619
653
  Z: ()=>__WEBPACK_DEFAULT_EXPORT__
620
654
  });
@@ -705,7 +739,7 @@ var __webpack_modules__ = {
705
739
  };
706
740
  const __WEBPACK_DEFAULT_EXPORT__ = ___CSS_LOADER_EXPORT___;
707
741
  },
708
- "../../../../../../node_modules/.pnpm/@rsbuild+core@1.3.18/node_modules/@rsbuild/core/compiled/css-loader/index.js??ruleSet[1].rules[11].use[1]!builtin:lightningcss-loader??ruleSet[1].rules[11].use[2]!../../../../../../node_modules/.pnpm/@rsbuild+plugin-less@1.5.0_@rsbuild+core@1.6.9/node_modules/@rsbuild/plugin-less/compiled/less-loader/index.js??ruleSet[1].rules[11].use[3]!./src/components/AxisY/heatmap/components/FullTicks/styles.module.less": function(module, __webpack_exports__, __webpack_require__) {
742
+ "../../../../../../node_modules/.pnpm/@rsbuild+core@1.3.18/node_modules/@rsbuild/core/compiled/css-loader/index.js??ruleSet[1].rules[11].use[1]!builtin:lightningcss-loader??ruleSet[1].rules[11].use[2]!../../../../../../node_modules/.pnpm/@rsbuild+plugin-less@1.5.0_@rsbuild+core@1.6.12/node_modules/@rsbuild/plugin-less/compiled/less-loader/index.js??ruleSet[1].rules[11].use[3]!./src/components/AxisY/heatmap/components/Ticks/styles.module.less": function(module, __webpack_exports__, __webpack_require__) {
709
743
  __webpack_require__.d(__webpack_exports__, {
710
744
  Z: ()=>__WEBPACK_DEFAULT_EXPORT__
711
745
  });
@@ -716,7 +750,7 @@ var __webpack_modules__ = {
716
750
  var ___CSS_LOADER_EXPORT___ = _node_modules_pnpm_rsbuild_core_1_3_18_node_modules_rsbuild_core_compiled_css_loader_api_js__WEBPACK_IMPORTED_MODULE_1___default()(_node_modules_pnpm_rsbuild_core_1_3_18_node_modules_rsbuild_core_compiled_css_loader_noSourceMaps_js__WEBPACK_IMPORTED_MODULE_0___default());
717
751
  ___CSS_LOADER_EXPORT___.push([
718
752
  module.id,
719
- `.ticks-xEFqwB {
753
+ `.ticks-jNI7Tw {
720
754
  z-index: 2;
721
755
  opacity: .5;
722
756
  box-sizing: border-box;
@@ -732,7 +766,7 @@ var __webpack_modules__ = {
732
766
  position: relative;
733
767
  }
734
768
 
735
- .ticks-xEFqwB .tick-LfGNCR {
769
+ .ticks-jNI7Tw .tick-lQRfPY {
736
770
  text-align: right;
737
771
  justify-content: flex-end;
738
772
  align-items: center;
@@ -743,57 +777,23 @@ var __webpack_modules__ = {
743
777
  transform: translateY(-50%)scaleX(.85);
744
778
  }
745
779
 
746
- .ticks-xEFqwB .tick-LfGNCR:first-child {
780
+ .ticks-jNI7Tw .tick-lQRfPY:first-child {
747
781
  transform: translateY(-100%)scaleX(.85);
748
782
  }
749
783
 
750
- .ticks-xEFqwB .tick-LfGNCR:last-child {
784
+ .ticks-jNI7Tw .tick-lQRfPY:last-child {
751
785
  transform: translateY(0%)scaleX(.85);
752
786
  }
753
787
  `,
754
788
  ""
755
789
  ]);
756
790
  ___CSS_LOADER_EXPORT___.locals = {
757
- ticks: "ticks-xEFqwB",
758
- tick: "tick-LfGNCR"
759
- };
760
- const __WEBPACK_DEFAULT_EXPORT__ = ___CSS_LOADER_EXPORT___;
761
- },
762
- "../../../../../../node_modules/.pnpm/@rsbuild+core@1.3.18/node_modules/@rsbuild/core/compiled/css-loader/index.js??ruleSet[1].rules[11].use[1]!builtin:lightningcss-loader??ruleSet[1].rules[11].use[2]!../../../../../../node_modules/.pnpm/@rsbuild+plugin-less@1.5.0_@rsbuild+core@1.6.9/node_modules/@rsbuild/plugin-less/compiled/less-loader/index.js??ruleSet[1].rules[11].use[3]!./src/components/AxisY/heatmap/components/Ticks/styles.module.less": function(module, __webpack_exports__, __webpack_require__) {
763
- __webpack_require__.d(__webpack_exports__, {
764
- Z: ()=>__WEBPACK_DEFAULT_EXPORT__
765
- });
766
- var _node_modules_pnpm_rsbuild_core_1_3_18_node_modules_rsbuild_core_compiled_css_loader_noSourceMaps_js__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__("./node_modules/.pnpm/@rsbuild+core@1.3.18/node_modules/@rsbuild/core/compiled/css-loader/noSourceMaps.js");
767
- var _node_modules_pnpm_rsbuild_core_1_3_18_node_modules_rsbuild_core_compiled_css_loader_noSourceMaps_js__WEBPACK_IMPORTED_MODULE_0___default = /*#__PURE__*/ __webpack_require__.n(_node_modules_pnpm_rsbuild_core_1_3_18_node_modules_rsbuild_core_compiled_css_loader_noSourceMaps_js__WEBPACK_IMPORTED_MODULE_0__);
768
- var _node_modules_pnpm_rsbuild_core_1_3_18_node_modules_rsbuild_core_compiled_css_loader_api_js__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__("./node_modules/.pnpm/@rsbuild+core@1.3.18/node_modules/@rsbuild/core/compiled/css-loader/api.js");
769
- var _node_modules_pnpm_rsbuild_core_1_3_18_node_modules_rsbuild_core_compiled_css_loader_api_js__WEBPACK_IMPORTED_MODULE_1___default = /*#__PURE__*/ __webpack_require__.n(_node_modules_pnpm_rsbuild_core_1_3_18_node_modules_rsbuild_core_compiled_css_loader_api_js__WEBPACK_IMPORTED_MODULE_1__);
770
- var ___CSS_LOADER_EXPORT___ = _node_modules_pnpm_rsbuild_core_1_3_18_node_modules_rsbuild_core_compiled_css_loader_api_js__WEBPACK_IMPORTED_MODULE_1___default()(_node_modules_pnpm_rsbuild_core_1_3_18_node_modules_rsbuild_core_compiled_css_loader_noSourceMaps_js__WEBPACK_IMPORTED_MODULE_0___default());
771
- ___CSS_LOADER_EXPORT___.push([
772
- module.id,
773
- `.ticks-jNI7Tw {
774
- z-index: 2;
775
- opacity: .5;
776
- box-sizing: border-box;
777
- width: 100%;
778
- height: 100%;
779
- color: var(--theme-color-base);
780
- flex-flow: column;
781
- justify-content: space-between;
782
- align-items: flex-end;
783
- padding-right: 2px;
784
- font-size: 12px;
785
- display: flex;
786
- position: relative;
787
- }
788
- `,
789
- ""
790
- ]);
791
- ___CSS_LOADER_EXPORT___.locals = {
792
- ticks: "ticks-jNI7Tw"
791
+ ticks: "ticks-jNI7Tw",
792
+ tick: "tick-lQRfPY"
793
793
  };
794
794
  const __WEBPACK_DEFAULT_EXPORT__ = ___CSS_LOADER_EXPORT___;
795
795
  },
796
- "../../../../../../../node_modules/.pnpm/@rsbuild+core@1.3.18/node_modules/@rsbuild/core/compiled/css-loader/index.js??ruleSet[1].rules[11].use[1]!builtin:lightningcss-loader??ruleSet[1].rules[11].use[2]!../../../../../../../node_modules/.pnpm/@rsbuild+plugin-less@1.5.0_@rsbuild+core@1.6.9/node_modules/@rsbuild/plugin-less/compiled/less-loader/index.js??ruleSet[1].rules[11].use[3]!./src/components/AxisY/heatmap/type/Default/GradientRibbon/styles.module.less": function(module, __webpack_exports__, __webpack_require__) {
796
+ "../../../../../../../node_modules/.pnpm/@rsbuild+core@1.3.18/node_modules/@rsbuild/core/compiled/css-loader/index.js??ruleSet[1].rules[11].use[1]!builtin:lightningcss-loader??ruleSet[1].rules[11].use[2]!../../../../../../../node_modules/.pnpm/@rsbuild+plugin-less@1.5.0_@rsbuild+core@1.6.12/node_modules/@rsbuild/plugin-less/compiled/less-loader/index.js??ruleSet[1].rules[11].use[3]!./src/components/AxisY/heatmap/type/Default/GradientRibbon/styles.module.less": function(module, __webpack_exports__, __webpack_require__) {
797
797
  __webpack_require__.d(__webpack_exports__, {
798
798
  Z: ()=>__WEBPACK_DEFAULT_EXPORT__
799
799
  });
@@ -847,7 +847,7 @@ var __webpack_modules__ = {
847
847
  };
848
848
  const __WEBPACK_DEFAULT_EXPORT__ = ___CSS_LOADER_EXPORT___;
849
849
  },
850
- "../../../../../../node_modules/.pnpm/@rsbuild+core@1.3.18/node_modules/@rsbuild/core/compiled/css-loader/index.js??ruleSet[1].rules[11].use[1]!builtin:lightningcss-loader??ruleSet[1].rules[11].use[2]!../../../../../../node_modules/.pnpm/@rsbuild+plugin-less@1.5.0_@rsbuild+core@1.6.9/node_modules/@rsbuild/plugin-less/compiled/less-loader/index.js??ruleSet[1].rules[11].use[3]!./src/components/AxisY/heatmap/type/Default/styles.module.less": function(module, __webpack_exports__, __webpack_require__) {
850
+ "../../../../../../node_modules/.pnpm/@rsbuild+core@1.3.18/node_modules/@rsbuild/core/compiled/css-loader/index.js??ruleSet[1].rules[11].use[1]!builtin:lightningcss-loader??ruleSet[1].rules[11].use[2]!../../../../../../node_modules/.pnpm/@rsbuild+plugin-less@1.5.0_@rsbuild+core@1.6.12/node_modules/@rsbuild/plugin-less/compiled/less-loader/index.js??ruleSet[1].rules[11].use[3]!./src/components/AxisY/heatmap/type/Default/styles.module.less": function(module, __webpack_exports__, __webpack_require__) {
851
851
  __webpack_require__.d(__webpack_exports__, {
852
852
  Z: ()=>__WEBPACK_DEFAULT_EXPORT__
853
853
  });
@@ -891,7 +891,7 @@ var __webpack_modules__ = {
891
891
  };
892
892
  const __WEBPACK_DEFAULT_EXPORT__ = ___CSS_LOADER_EXPORT___;
893
893
  },
894
- "../../../../../../node_modules/.pnpm/@rsbuild+core@1.3.18/node_modules/@rsbuild/core/compiled/css-loader/index.js??ruleSet[1].rules[11].use[1]!builtin:lightningcss-loader??ruleSet[1].rules[11].use[2]!../../../../../../node_modules/.pnpm/@rsbuild+plugin-less@1.5.0_@rsbuild+core@1.6.9/node_modules/@rsbuild/plugin-less/compiled/less-loader/index.js??ruleSet[1].rules[11].use[3]!./src/components/AxisY/occupancy/components/Ticks/styles.module.less": function(module, __webpack_exports__, __webpack_require__) {
894
+ "../../../../../../node_modules/.pnpm/@rsbuild+core@1.3.18/node_modules/@rsbuild/core/compiled/css-loader/index.js??ruleSet[1].rules[11].use[1]!builtin:lightningcss-loader??ruleSet[1].rules[11].use[2]!../../../../../../node_modules/.pnpm/@rsbuild+plugin-less@1.5.0_@rsbuild+core@1.6.12/node_modules/@rsbuild/plugin-less/compiled/less-loader/index.js??ruleSet[1].rules[11].use[3]!./src/components/AxisY/occupancy/components/Ticks/styles.module.less": function(module, __webpack_exports__, __webpack_require__) {
895
895
  __webpack_require__.d(__webpack_exports__, {
896
896
  Z: ()=>__WEBPACK_DEFAULT_EXPORT__
897
897
  });
@@ -930,7 +930,7 @@ var __webpack_modules__ = {
930
930
  };
931
931
  const __WEBPACK_DEFAULT_EXPORT__ = ___CSS_LOADER_EXPORT___;
932
932
  },
933
- "../../../../../../node_modules/.pnpm/@rsbuild+core@1.3.18/node_modules/@rsbuild/core/compiled/css-loader/index.js??ruleSet[1].rules[11].use[1]!builtin:lightningcss-loader??ruleSet[1].rules[11].use[2]!../../../../../../node_modules/.pnpm/@rsbuild+plugin-less@1.5.0_@rsbuild+core@1.6.9/node_modules/@rsbuild/plugin-less/compiled/less-loader/index.js??ruleSet[1].rules[11].use[3]!./src/components/AxisY/occupancy/type/Default/styles.module.less": function(module, __webpack_exports__, __webpack_require__) {
933
+ "../../../../../../node_modules/.pnpm/@rsbuild+core@1.3.18/node_modules/@rsbuild/core/compiled/css-loader/index.js??ruleSet[1].rules[11].use[1]!builtin:lightningcss-loader??ruleSet[1].rules[11].use[2]!../../../../../../node_modules/.pnpm/@rsbuild+plugin-less@1.5.0_@rsbuild+core@1.6.12/node_modules/@rsbuild/plugin-less/compiled/less-loader/index.js??ruleSet[1].rules[11].use[3]!./src/components/AxisY/occupancy/type/Default/styles.module.less": function(module, __webpack_exports__, __webpack_require__) {
934
934
  __webpack_require__.d(__webpack_exports__, {
935
935
  Z: ()=>__WEBPACK_DEFAULT_EXPORT__
936
936
  });
@@ -956,7 +956,7 @@ var __webpack_modules__ = {
956
956
  };
957
957
  const __WEBPACK_DEFAULT_EXPORT__ = ___CSS_LOADER_EXPORT___;
958
958
  },
959
- "../../../../../../node_modules/.pnpm/@rsbuild+core@1.3.18/node_modules/@rsbuild/core/compiled/css-loader/index.js??ruleSet[1].rules[11].use[1]!builtin:lightningcss-loader??ruleSet[1].rules[11].use[2]!../../../../../../node_modules/.pnpm/@rsbuild+plugin-less@1.5.0_@rsbuild+core@1.6.9/node_modules/@rsbuild/plugin-less/compiled/less-loader/index.js??ruleSet[1].rules[11].use[3]!./src/components/AxisY/spectrum/components/Ticks/styles.module.less": function(module, __webpack_exports__, __webpack_require__) {
959
+ "../../../../../../node_modules/.pnpm/@rsbuild+core@1.3.18/node_modules/@rsbuild/core/compiled/css-loader/index.js??ruleSet[1].rules[11].use[1]!builtin:lightningcss-loader??ruleSet[1].rules[11].use[2]!../../../../../../node_modules/.pnpm/@rsbuild+plugin-less@1.5.0_@rsbuild+core@1.6.12/node_modules/@rsbuild/plugin-less/compiled/less-loader/index.js??ruleSet[1].rules[11].use[3]!./src/components/AxisY/spectrum/components/Ticks/styles.module.less": function(module, __webpack_exports__, __webpack_require__) {
960
960
  __webpack_require__.d(__webpack_exports__, {
961
961
  Z: ()=>__WEBPACK_DEFAULT_EXPORT__
962
962
  });
@@ -1063,7 +1063,7 @@ var __webpack_modules__ = {
1063
1063
  };
1064
1064
  const __WEBPACK_DEFAULT_EXPORT__ = ___CSS_LOADER_EXPORT___;
1065
1065
  },
1066
- "../../../../node_modules/.pnpm/@rsbuild+core@1.3.18/node_modules/@rsbuild/core/compiled/css-loader/index.js??ruleSet[1].rules[11].use[1]!builtin:lightningcss-loader??ruleSet[1].rules[11].use[2]!../../../../node_modules/.pnpm/@rsbuild+plugin-less@1.5.0_@rsbuild+core@1.6.9/node_modules/@rsbuild/plugin-less/compiled/less-loader/index.js??ruleSet[1].rules[11].use[3]!./src/components/AxisY/spectrum/styles.module.less": function(module, __webpack_exports__, __webpack_require__) {
1066
+ "../../../../node_modules/.pnpm/@rsbuild+core@1.3.18/node_modules/@rsbuild/core/compiled/css-loader/index.js??ruleSet[1].rules[11].use[1]!builtin:lightningcss-loader??ruleSet[1].rules[11].use[2]!../../../../node_modules/.pnpm/@rsbuild+plugin-less@1.5.0_@rsbuild+core@1.6.12/node_modules/@rsbuild/plugin-less/compiled/less-loader/index.js??ruleSet[1].rules[11].use[3]!./src/components/AxisY/spectrum/styles.module.less": function(module, __webpack_exports__, __webpack_require__) {
1067
1067
  __webpack_require__.d(__webpack_exports__, {
1068
1068
  Z: ()=>__WEBPACK_DEFAULT_EXPORT__
1069
1069
  });
@@ -1112,7 +1112,7 @@ var __webpack_modules__ = {
1112
1112
  };
1113
1113
  const __WEBPACK_DEFAULT_EXPORT__ = ___CSS_LOADER_EXPORT___;
1114
1114
  },
1115
- "../../../node_modules/.pnpm/@rsbuild+core@1.3.18/node_modules/@rsbuild/core/compiled/css-loader/index.js??ruleSet[1].rules[11].use[1]!builtin:lightningcss-loader??ruleSet[1].rules[11].use[2]!../../../node_modules/.pnpm/@rsbuild+plugin-less@1.5.0_@rsbuild+core@1.6.9/node_modules/@rsbuild/plugin-less/compiled/less-loader/index.js??ruleSet[1].rules[11].use[3]!./src/components/AxisYByCanvas/index.module.less": function(module, __webpack_exports__, __webpack_require__) {
1115
+ "../../../node_modules/.pnpm/@rsbuild+core@1.3.18/node_modules/@rsbuild/core/compiled/css-loader/index.js??ruleSet[1].rules[11].use[1]!builtin:lightningcss-loader??ruleSet[1].rules[11].use[2]!../../../node_modules/.pnpm/@rsbuild+plugin-less@1.5.0_@rsbuild+core@1.6.12/node_modules/@rsbuild/plugin-less/compiled/less-loader/index.js??ruleSet[1].rules[11].use[3]!./src/components/AxisYByCanvas/index.module.less": function(module, __webpack_exports__, __webpack_require__) {
1116
1116
  __webpack_require__.d(__webpack_exports__, {
1117
1117
  Z: ()=>__WEBPACK_DEFAULT_EXPORT__
1118
1118
  });
@@ -1154,7 +1154,7 @@ var __webpack_modules__ = {
1154
1154
  };
1155
1155
  const __WEBPACK_DEFAULT_EXPORT__ = ___CSS_LOADER_EXPORT___;
1156
1156
  },
1157
- "../../../node_modules/.pnpm/@rsbuild+core@1.3.18/node_modules/@rsbuild/core/compiled/css-loader/index.js??ruleSet[1].rules[11].use[1]!builtin:lightningcss-loader??ruleSet[1].rules[11].use[2]!../../../node_modules/.pnpm/@rsbuild+plugin-less@1.5.0_@rsbuild+core@1.6.9/node_modules/@rsbuild/plugin-less/compiled/less-loader/index.js??ruleSet[1].rules[11].use[3]!./src/components/Background/styles.module.less": function(module, __webpack_exports__, __webpack_require__) {
1157
+ "../../../node_modules/.pnpm/@rsbuild+core@1.3.18/node_modules/@rsbuild/core/compiled/css-loader/index.js??ruleSet[1].rules[11].use[1]!builtin:lightningcss-loader??ruleSet[1].rules[11].use[2]!../../../node_modules/.pnpm/@rsbuild+plugin-less@1.5.0_@rsbuild+core@1.6.12/node_modules/@rsbuild/plugin-less/compiled/less-loader/index.js??ruleSet[1].rules[11].use[3]!./src/components/Background/styles.module.less": function(module, __webpack_exports__, __webpack_require__) {
1158
1158
  __webpack_require__.d(__webpack_exports__, {
1159
1159
  Z: ()=>__WEBPACK_DEFAULT_EXPORT__
1160
1160
  });
@@ -1187,7 +1187,7 @@ var __webpack_modules__ = {
1187
1187
  };
1188
1188
  const __WEBPACK_DEFAULT_EXPORT__ = ___CSS_LOADER_EXPORT___;
1189
1189
  },
1190
- "../../../node_modules/.pnpm/@rsbuild+core@1.3.18/node_modules/@rsbuild/core/compiled/css-loader/index.js??ruleSet[1].rules[11].use[1]!builtin:lightningcss-loader??ruleSet[1].rules[11].use[2]!../../../node_modules/.pnpm/@rsbuild+plugin-less@1.5.0_@rsbuild+core@1.6.9/node_modules/@rsbuild/plugin-less/compiled/less-loader/index.js??ruleSet[1].rules[11].use[3]!./src/components/Band/styles.module.less": function(module, __webpack_exports__, __webpack_require__) {
1190
+ "../../../node_modules/.pnpm/@rsbuild+core@1.3.18/node_modules/@rsbuild/core/compiled/css-loader/index.js??ruleSet[1].rules[11].use[1]!builtin:lightningcss-loader??ruleSet[1].rules[11].use[2]!../../../node_modules/.pnpm/@rsbuild+plugin-less@1.5.0_@rsbuild+core@1.6.12/node_modules/@rsbuild/plugin-less/compiled/less-loader/index.js??ruleSet[1].rules[11].use[3]!./src/components/Band/styles.module.less": function(module, __webpack_exports__, __webpack_require__) {
1191
1191
  __webpack_require__.d(__webpack_exports__, {
1192
1192
  Z: ()=>__WEBPACK_DEFAULT_EXPORT__
1193
1193
  });
@@ -1217,7 +1217,7 @@ var __webpack_modules__ = {
1217
1217
  };
1218
1218
  const __WEBPACK_DEFAULT_EXPORT__ = ___CSS_LOADER_EXPORT___;
1219
1219
  },
1220
- "../../../node_modules/.pnpm/@rsbuild+core@1.3.18/node_modules/@rsbuild/core/compiled/css-loader/index.js??ruleSet[1].rules[11].use[1]!builtin:lightningcss-loader??ruleSet[1].rules[11].use[2]!../../../node_modules/.pnpm/@rsbuild+plugin-less@1.5.0_@rsbuild+core@1.6.9/node_modules/@rsbuild/plugin-less/compiled/less-loader/index.js??ruleSet[1].rules[11].use[3]!./src/components/Blaze/styles.module.less": function(module, __webpack_exports__, __webpack_require__) {
1220
+ "../../../node_modules/.pnpm/@rsbuild+core@1.3.18/node_modules/@rsbuild/core/compiled/css-loader/index.js??ruleSet[1].rules[11].use[1]!builtin:lightningcss-loader??ruleSet[1].rules[11].use[2]!../../../node_modules/.pnpm/@rsbuild+plugin-less@1.5.0_@rsbuild+core@1.6.12/node_modules/@rsbuild/plugin-less/compiled/less-loader/index.js??ruleSet[1].rules[11].use[3]!./src/components/Blaze/styles.module.less": function(module, __webpack_exports__, __webpack_require__) {
1221
1221
  __webpack_require__.d(__webpack_exports__, {
1222
1222
  Z: ()=>__WEBPACK_DEFAULT_EXPORT__
1223
1223
  });
@@ -1260,7 +1260,7 @@ var __webpack_modules__ = {
1260
1260
  };
1261
1261
  const __WEBPACK_DEFAULT_EXPORT__ = ___CSS_LOADER_EXPORT___;
1262
1262
  },
1263
- "../../../node_modules/.pnpm/@rsbuild+core@1.3.18/node_modules/@rsbuild/core/compiled/css-loader/index.js??ruleSet[1].rules[11].use[1]!builtin:lightningcss-loader??ruleSet[1].rules[11].use[2]!../../../node_modules/.pnpm/@rsbuild+plugin-less@1.5.0_@rsbuild+core@1.6.9/node_modules/@rsbuild/plugin-less/compiled/less-loader/index.js??ruleSet[1].rules[11].use[3]!./src/components/Container/styles.module.less": function(module, __webpack_exports__, __webpack_require__) {
1263
+ "../../../node_modules/.pnpm/@rsbuild+core@1.3.18/node_modules/@rsbuild/core/compiled/css-loader/index.js??ruleSet[1].rules[11].use[1]!builtin:lightningcss-loader??ruleSet[1].rules[11].use[2]!../../../node_modules/.pnpm/@rsbuild+plugin-less@1.5.0_@rsbuild+core@1.6.12/node_modules/@rsbuild/plugin-less/compiled/less-loader/index.js??ruleSet[1].rules[11].use[3]!./src/components/Container/styles.module.less": function(module, __webpack_exports__, __webpack_require__) {
1264
1264
  __webpack_require__.d(__webpack_exports__, {
1265
1265
  Z: ()=>__WEBPACK_DEFAULT_EXPORT__
1266
1266
  });
@@ -1286,7 +1286,7 @@ var __webpack_modules__ = {
1286
1286
  };
1287
1287
  const __WEBPACK_DEFAULT_EXPORT__ = ___CSS_LOADER_EXPORT___;
1288
1288
  },
1289
- "../../../node_modules/.pnpm/@rsbuild+core@1.3.18/node_modules/@rsbuild/core/compiled/css-loader/index.js??ruleSet[1].rules[11].use[1]!builtin:lightningcss-loader??ruleSet[1].rules[11].use[2]!../../../node_modules/.pnpm/@rsbuild+plugin-less@1.5.0_@rsbuild+core@1.6.9/node_modules/@rsbuild/plugin-less/compiled/less-loader/index.js??ruleSet[1].rules[11].use[3]!./src/components/Cursor/styles.module.less": function(module, __webpack_exports__, __webpack_require__) {
1289
+ "../../../node_modules/.pnpm/@rsbuild+core@1.3.18/node_modules/@rsbuild/core/compiled/css-loader/index.js??ruleSet[1].rules[11].use[1]!builtin:lightningcss-loader??ruleSet[1].rules[11].use[2]!../../../node_modules/.pnpm/@rsbuild+plugin-less@1.5.0_@rsbuild+core@1.6.12/node_modules/@rsbuild/plugin-less/compiled/less-loader/index.js??ruleSet[1].rules[11].use[3]!./src/components/Cursor/styles.module.less": function(module, __webpack_exports__, __webpack_require__) {
1290
1290
  __webpack_require__.d(__webpack_exports__, {
1291
1291
  Z: ()=>__WEBPACK_DEFAULT_EXPORT__
1292
1292
  });
@@ -1330,7 +1330,7 @@ var __webpack_modules__ = {
1330
1330
  };
1331
1331
  const __WEBPACK_DEFAULT_EXPORT__ = ___CSS_LOADER_EXPORT___;
1332
1332
  },
1333
- "../../../node_modules/.pnpm/@rsbuild+core@1.3.18/node_modules/@rsbuild/core/compiled/css-loader/index.js??ruleSet[1].rules[11].use[1]!builtin:lightningcss-loader??ruleSet[1].rules[11].use[2]!../../../node_modules/.pnpm/@rsbuild+plugin-less@1.5.0_@rsbuild+core@1.6.9/node_modules/@rsbuild/plugin-less/compiled/less-loader/index.js??ruleSet[1].rules[11].use[3]!./src/components/Dashed/styles.module.less": function(module, __webpack_exports__, __webpack_require__) {
1333
+ "../../../node_modules/.pnpm/@rsbuild+core@1.3.18/node_modules/@rsbuild/core/compiled/css-loader/index.js??ruleSet[1].rules[11].use[1]!builtin:lightningcss-loader??ruleSet[1].rules[11].use[2]!../../../node_modules/.pnpm/@rsbuild+plugin-less@1.5.0_@rsbuild+core@1.6.12/node_modules/@rsbuild/plugin-less/compiled/less-loader/index.js??ruleSet[1].rules[11].use[3]!./src/components/Dashed/styles.module.less": function(module, __webpack_exports__, __webpack_require__) {
1334
1334
  __webpack_require__.d(__webpack_exports__, {
1335
1335
  Z: ()=>__WEBPACK_DEFAULT_EXPORT__
1336
1336
  });
@@ -1367,7 +1367,7 @@ var __webpack_modules__ = {
1367
1367
  };
1368
1368
  const __WEBPACK_DEFAULT_EXPORT__ = ___CSS_LOADER_EXPORT___;
1369
1369
  },
1370
- "../../../node_modules/.pnpm/@rsbuild+core@1.3.18/node_modules/@rsbuild/core/compiled/css-loader/index.js??ruleSet[1].rules[11].use[1]!builtin:lightningcss-loader??ruleSet[1].rules[11].use[2]!../../../node_modules/.pnpm/@rsbuild+plugin-less@1.5.0_@rsbuild+core@1.6.9/node_modules/@rsbuild/plugin-less/compiled/less-loader/index.js??ruleSet[1].rules[11].use[3]!./src/components/DragFrame/styles.module.less": function(module, __webpack_exports__, __webpack_require__) {
1370
+ "../../../node_modules/.pnpm/@rsbuild+core@1.3.18/node_modules/@rsbuild/core/compiled/css-loader/index.js??ruleSet[1].rules[11].use[1]!builtin:lightningcss-loader??ruleSet[1].rules[11].use[2]!../../../node_modules/.pnpm/@rsbuild+plugin-less@1.5.0_@rsbuild+core@1.6.12/node_modules/@rsbuild/plugin-less/compiled/less-loader/index.js??ruleSet[1].rules[11].use[3]!./src/components/DragFrame/styles.module.less": function(module, __webpack_exports__, __webpack_require__) {
1371
1371
  __webpack_require__.d(__webpack_exports__, {
1372
1372
  Z: ()=>__WEBPACK_DEFAULT_EXPORT__
1373
1373
  });
@@ -1426,7 +1426,7 @@ var __webpack_modules__ = {
1426
1426
  };
1427
1427
  const __WEBPACK_DEFAULT_EXPORT__ = ___CSS_LOADER_EXPORT___;
1428
1428
  },
1429
- "../../../node_modules/.pnpm/@rsbuild+core@1.3.18/node_modules/@rsbuild/core/compiled/css-loader/index.js??ruleSet[1].rules[11].use[1]!builtin:lightningcss-loader??ruleSet[1].rules[11].use[2]!../../../node_modules/.pnpm/@rsbuild+plugin-less@1.5.0_@rsbuild+core@1.6.9/node_modules/@rsbuild/plugin-less/compiled/less-loader/index.js??ruleSet[1].rules[11].use[3]!./src/components/Dropdown/styles.module.less": function(module, __webpack_exports__, __webpack_require__) {
1429
+ "../../../node_modules/.pnpm/@rsbuild+core@1.3.18/node_modules/@rsbuild/core/compiled/css-loader/index.js??ruleSet[1].rules[11].use[1]!builtin:lightningcss-loader??ruleSet[1].rules[11].use[2]!../../../node_modules/.pnpm/@rsbuild+plugin-less@1.5.0_@rsbuild+core@1.6.12/node_modules/@rsbuild/plugin-less/compiled/less-loader/index.js??ruleSet[1].rules[11].use[3]!./src/components/Dropdown/styles.module.less": function(module, __webpack_exports__, __webpack_require__) {
1430
1430
  __webpack_require__.d(__webpack_exports__, {
1431
1431
  Z: ()=>__WEBPACK_DEFAULT_EXPORT__
1432
1432
  });
@@ -1520,7 +1520,7 @@ var __webpack_modules__ = {
1520
1520
  };
1521
1521
  const __WEBPACK_DEFAULT_EXPORT__ = ___CSS_LOADER_EXPORT___;
1522
1522
  },
1523
- "../../../node_modules/.pnpm/@rsbuild+core@1.3.18/node_modules/@rsbuild/core/compiled/css-loader/index.js??ruleSet[1].rules[11].use[1]!builtin:lightningcss-loader??ruleSet[1].rules[11].use[2]!../../../node_modules/.pnpm/@rsbuild+plugin-less@1.5.0_@rsbuild+core@1.6.9/node_modules/@rsbuild/plugin-less/compiled/less-loader/index.js??ruleSet[1].rules[11].use[3]!./src/components/EventBus/styles.module.less": function(module, __webpack_exports__, __webpack_require__) {
1523
+ "../../../node_modules/.pnpm/@rsbuild+core@1.3.18/node_modules/@rsbuild/core/compiled/css-loader/index.js??ruleSet[1].rules[11].use[1]!builtin:lightningcss-loader??ruleSet[1].rules[11].use[2]!../../../node_modules/.pnpm/@rsbuild+plugin-less@1.5.0_@rsbuild+core@1.6.12/node_modules/@rsbuild/plugin-less/compiled/less-loader/index.js??ruleSet[1].rules[11].use[3]!./src/components/EventBus/styles.module.less": function(module, __webpack_exports__, __webpack_require__) {
1524
1524
  __webpack_require__.d(__webpack_exports__, {
1525
1525
  Z: ()=>__WEBPACK_DEFAULT_EXPORT__
1526
1526
  });
@@ -1553,7 +1553,7 @@ var __webpack_modules__ = {
1553
1553
  };
1554
1554
  const __WEBPACK_DEFAULT_EXPORT__ = ___CSS_LOADER_EXPORT___;
1555
1555
  },
1556
- "../../../node_modules/.pnpm/@rsbuild+core@1.3.18/node_modules/@rsbuild/core/compiled/css-loader/index.js??ruleSet[1].rules[11].use[1]!builtin:lightningcss-loader??ruleSet[1].rules[11].use[2]!../../../node_modules/.pnpm/@rsbuild+plugin-less@1.5.0_@rsbuild+core@1.6.9/node_modules/@rsbuild/plugin-less/compiled/less-loader/index.js??ruleSet[1].rules[11].use[3]!./src/components/FlexBox/styles.module.less": function(module, __webpack_exports__, __webpack_require__) {
1556
+ "../../../node_modules/.pnpm/@rsbuild+core@1.3.18/node_modules/@rsbuild/core/compiled/css-loader/index.js??ruleSet[1].rules[11].use[1]!builtin:lightningcss-loader??ruleSet[1].rules[11].use[2]!../../../node_modules/.pnpm/@rsbuild+plugin-less@1.5.0_@rsbuild+core@1.6.12/node_modules/@rsbuild/plugin-less/compiled/less-loader/index.js??ruleSet[1].rules[11].use[3]!./src/components/FlexBox/styles.module.less": function(module, __webpack_exports__, __webpack_require__) {
1557
1557
  __webpack_require__.d(__webpack_exports__, {
1558
1558
  Z: ()=>__WEBPACK_DEFAULT_EXPORT__
1559
1559
  });
@@ -1580,7 +1580,7 @@ var __webpack_modules__ = {
1580
1580
  };
1581
1581
  const __WEBPACK_DEFAULT_EXPORT__ = ___CSS_LOADER_EXPORT___;
1582
1582
  },
1583
- "../../../../node_modules/.pnpm/@rsbuild+core@1.3.18/node_modules/@rsbuild/core/compiled/css-loader/index.js??ruleSet[1].rules[11].use[1]!builtin:lightningcss-loader??ruleSet[1].rules[11].use[2]!../../../../node_modules/.pnpm/@rsbuild+plugin-less@1.5.0_@rsbuild+core@1.6.9/node_modules/@rsbuild/plugin-less/compiled/less-loader/index.js??ruleSet[1].rules[11].use[3]!./src/components/FrequencyAllocation/AllocationInfo/styles.module.less": function(module, __webpack_exports__, __webpack_require__) {
1583
+ "../../../../node_modules/.pnpm/@rsbuild+core@1.3.18/node_modules/@rsbuild/core/compiled/css-loader/index.js??ruleSet[1].rules[11].use[1]!builtin:lightningcss-loader??ruleSet[1].rules[11].use[2]!../../../../node_modules/.pnpm/@rsbuild+plugin-less@1.5.0_@rsbuild+core@1.6.12/node_modules/@rsbuild/plugin-less/compiled/less-loader/index.js??ruleSet[1].rules[11].use[3]!./src/components/FrequencyAllocation/AllocationInfo/styles.module.less": function(module, __webpack_exports__, __webpack_require__) {
1584
1584
  __webpack_require__.d(__webpack_exports__, {
1585
1585
  Z: ()=>__WEBPACK_DEFAULT_EXPORT__
1586
1586
  });
@@ -1634,7 +1634,7 @@ var __webpack_modules__ = {
1634
1634
  };
1635
1635
  const __WEBPACK_DEFAULT_EXPORT__ = ___CSS_LOADER_EXPORT___;
1636
1636
  },
1637
- "../../../../node_modules/.pnpm/@rsbuild+core@1.3.18/node_modules/@rsbuild/core/compiled/css-loader/index.js??ruleSet[1].rules[11].use[1]!builtin:lightningcss-loader??ruleSet[1].rules[11].use[2]!../../../../node_modules/.pnpm/@rsbuild+plugin-less@1.5.0_@rsbuild+core@1.6.9/node_modules/@rsbuild/plugin-less/compiled/less-loader/index.js??ruleSet[1].rules[11].use[3]!./src/components/FrequencyAllocation/Tooltip/styles.module.less": function(module, __webpack_exports__, __webpack_require__) {
1637
+ "../../../../node_modules/.pnpm/@rsbuild+core@1.3.18/node_modules/@rsbuild/core/compiled/css-loader/index.js??ruleSet[1].rules[11].use[1]!builtin:lightningcss-loader??ruleSet[1].rules[11].use[2]!../../../../node_modules/.pnpm/@rsbuild+plugin-less@1.5.0_@rsbuild+core@1.6.12/node_modules/@rsbuild/plugin-less/compiled/less-loader/index.js??ruleSet[1].rules[11].use[3]!./src/components/FrequencyAllocation/Tooltip/styles.module.less": function(module, __webpack_exports__, __webpack_require__) {
1638
1638
  __webpack_require__.d(__webpack_exports__, {
1639
1639
  Z: ()=>__WEBPACK_DEFAULT_EXPORT__
1640
1640
  });
@@ -1664,7 +1664,7 @@ var __webpack_modules__ = {
1664
1664
  };
1665
1665
  const __WEBPACK_DEFAULT_EXPORT__ = ___CSS_LOADER_EXPORT___;
1666
1666
  },
1667
- "../../../node_modules/.pnpm/@rsbuild+core@1.3.18/node_modules/@rsbuild/core/compiled/css-loader/index.js??ruleSet[1].rules[11].use[1]!builtin:lightningcss-loader??ruleSet[1].rules[11].use[2]!../../../node_modules/.pnpm/@rsbuild+plugin-less@1.5.0_@rsbuild+core@1.6.9/node_modules/@rsbuild/plugin-less/compiled/less-loader/index.js??ruleSet[1].rules[11].use[3]!./src/components/FrequencyAllocation/styles.module.less": function(module, __webpack_exports__, __webpack_require__) {
1667
+ "../../../node_modules/.pnpm/@rsbuild+core@1.3.18/node_modules/@rsbuild/core/compiled/css-loader/index.js??ruleSet[1].rules[11].use[1]!builtin:lightningcss-loader??ruleSet[1].rules[11].use[2]!../../../node_modules/.pnpm/@rsbuild+plugin-less@1.5.0_@rsbuild+core@1.6.12/node_modules/@rsbuild/plugin-less/compiled/less-loader/index.js??ruleSet[1].rules[11].use[3]!./src/components/FrequencyAllocation/styles.module.less": function(module, __webpack_exports__, __webpack_require__) {
1668
1668
  __webpack_require__.d(__webpack_exports__, {
1669
1669
  Z: ()=>__WEBPACK_DEFAULT_EXPORT__
1670
1670
  });
@@ -1748,7 +1748,7 @@ var __webpack_modules__ = {
1748
1748
  };
1749
1749
  const __WEBPACK_DEFAULT_EXPORT__ = ___CSS_LOADER_EXPORT___;
1750
1750
  },
1751
- "../../../../node_modules/.pnpm/@rsbuild+core@1.3.18/node_modules/@rsbuild/core/compiled/css-loader/index.js??ruleSet[1].rules[11].use[1]!builtin:lightningcss-loader??ruleSet[1].rules[11].use[2]!../../../../node_modules/.pnpm/@rsbuild+plugin-less@1.5.0_@rsbuild+core@1.6.9/node_modules/@rsbuild/plugin-less/compiled/less-loader/index.js??ruleSet[1].rules[11].use[3]!./src/components/FrequencyDataBoard/StationInfo/styles.module.less": function(module, __webpack_exports__, __webpack_require__) {
1751
+ "../../../../node_modules/.pnpm/@rsbuild+core@1.3.18/node_modules/@rsbuild/core/compiled/css-loader/index.js??ruleSet[1].rules[11].use[1]!builtin:lightningcss-loader??ruleSet[1].rules[11].use[2]!../../../../node_modules/.pnpm/@rsbuild+plugin-less@1.5.0_@rsbuild+core@1.6.12/node_modules/@rsbuild/plugin-less/compiled/less-loader/index.js??ruleSet[1].rules[11].use[3]!./src/components/FrequencyDataBoard/StationInfo/styles.module.less": function(module, __webpack_exports__, __webpack_require__) {
1752
1752
  __webpack_require__.d(__webpack_exports__, {
1753
1753
  Z: ()=>__WEBPACK_DEFAULT_EXPORT__
1754
1754
  });
@@ -1773,7 +1773,7 @@ var __webpack_modules__ = {
1773
1773
  };
1774
1774
  const __WEBPACK_DEFAULT_EXPORT__ = ___CSS_LOADER_EXPORT___;
1775
1775
  },
1776
- "../../../node_modules/.pnpm/@rsbuild+core@1.3.18/node_modules/@rsbuild/core/compiled/css-loader/index.js??ruleSet[1].rules[11].use[1]!builtin:lightningcss-loader??ruleSet[1].rules[11].use[2]!../../../node_modules/.pnpm/@rsbuild+plugin-less@1.5.0_@rsbuild+core@1.6.9/node_modules/@rsbuild/plugin-less/compiled/less-loader/index.js??ruleSet[1].rules[11].use[3]!./src/components/FrequencyDataBoard/styles.module.less": function(module, __webpack_exports__, __webpack_require__) {
1776
+ "../../../node_modules/.pnpm/@rsbuild+core@1.3.18/node_modules/@rsbuild/core/compiled/css-loader/index.js??ruleSet[1].rules[11].use[1]!builtin:lightningcss-loader??ruleSet[1].rules[11].use[2]!../../../node_modules/.pnpm/@rsbuild+plugin-less@1.5.0_@rsbuild+core@1.6.12/node_modules/@rsbuild/plugin-less/compiled/less-loader/index.js??ruleSet[1].rules[11].use[3]!./src/components/FrequencyDataBoard/styles.module.less": function(module, __webpack_exports__, __webpack_require__) {
1777
1777
  __webpack_require__.d(__webpack_exports__, {
1778
1778
  Z: ()=>__WEBPACK_DEFAULT_EXPORT__
1779
1779
  });
@@ -1824,7 +1824,7 @@ var __webpack_modules__ = {
1824
1824
  };
1825
1825
  const __WEBPACK_DEFAULT_EXPORT__ = ___CSS_LOADER_EXPORT___;
1826
1826
  },
1827
- "../../../../node_modules/.pnpm/@rsbuild+core@1.3.18/node_modules/@rsbuild/core/compiled/css-loader/index.js??ruleSet[1].rules[11].use[1]!builtin:lightningcss-loader??ruleSet[1].rules[11].use[2]!../../../../node_modules/.pnpm/@rsbuild+plugin-less@1.5.0_@rsbuild+core@1.6.9/node_modules/@rsbuild/plugin-less/compiled/less-loader/index.js??ruleSet[1].rules[11].use[3]!./src/components/FrequencyTagLine/Board/styles.module.less": function(module, __webpack_exports__, __webpack_require__) {
1827
+ "../../../../node_modules/.pnpm/@rsbuild+core@1.3.18/node_modules/@rsbuild/core/compiled/css-loader/index.js??ruleSet[1].rules[11].use[1]!builtin:lightningcss-loader??ruleSet[1].rules[11].use[2]!../../../../node_modules/.pnpm/@rsbuild+plugin-less@1.5.0_@rsbuild+core@1.6.12/node_modules/@rsbuild/plugin-less/compiled/less-loader/index.js??ruleSet[1].rules[11].use[3]!./src/components/FrequencyTagLine/Board/styles.module.less": function(module, __webpack_exports__, __webpack_require__) {
1828
1828
  __webpack_require__.d(__webpack_exports__, {
1829
1829
  Z: ()=>__WEBPACK_DEFAULT_EXPORT__
1830
1830
  });
@@ -1851,7 +1851,7 @@ var __webpack_modules__ = {
1851
1851
  };
1852
1852
  const __WEBPACK_DEFAULT_EXPORT__ = ___CSS_LOADER_EXPORT___;
1853
1853
  },
1854
- "../../../node_modules/.pnpm/@rsbuild+core@1.3.18/node_modules/@rsbuild/core/compiled/css-loader/index.js??ruleSet[1].rules[11].use[1]!builtin:lightningcss-loader??ruleSet[1].rules[11].use[2]!../../../node_modules/.pnpm/@rsbuild+plugin-less@1.5.0_@rsbuild+core@1.6.9/node_modules/@rsbuild/plugin-less/compiled/less-loader/index.js??ruleSet[1].rules[11].use[3]!./src/components/FrequencyTagLine/styles.module.less": function(module, __webpack_exports__, __webpack_require__) {
1854
+ "../../../node_modules/.pnpm/@rsbuild+core@1.3.18/node_modules/@rsbuild/core/compiled/css-loader/index.js??ruleSet[1].rules[11].use[1]!builtin:lightningcss-loader??ruleSet[1].rules[11].use[2]!../../../node_modules/.pnpm/@rsbuild+plugin-less@1.5.0_@rsbuild+core@1.6.12/node_modules/@rsbuild/plugin-less/compiled/less-loader/index.js??ruleSet[1].rules[11].use[3]!./src/components/FrequencyTagLine/styles.module.less": function(module, __webpack_exports__, __webpack_require__) {
1855
1855
  __webpack_require__.d(__webpack_exports__, {
1856
1856
  Z: ()=>__WEBPACK_DEFAULT_EXPORT__
1857
1857
  });
@@ -1884,7 +1884,7 @@ var __webpack_modules__ = {
1884
1884
  };
1885
1885
  const __WEBPACK_DEFAULT_EXPORT__ = ___CSS_LOADER_EXPORT___;
1886
1886
  },
1887
- "../../../../node_modules/.pnpm/@rsbuild+core@1.3.18/node_modules/@rsbuild/core/compiled/css-loader/index.js??ruleSet[1].rules[11].use[1]!builtin:lightningcss-loader??ruleSet[1].rules[11].use[2]!../../../../node_modules/.pnpm/@rsbuild+plugin-less@1.5.0_@rsbuild+core@1.6.9/node_modules/@rsbuild/plugin-less/compiled/less-loader/index.js??ruleSet[1].rules[11].use[3]!./src/components/GridLines/Boundary/styles.module.less": function(module, __webpack_exports__, __webpack_require__) {
1887
+ "../../../../node_modules/.pnpm/@rsbuild+core@1.3.18/node_modules/@rsbuild/core/compiled/css-loader/index.js??ruleSet[1].rules[11].use[1]!builtin:lightningcss-loader??ruleSet[1].rules[11].use[2]!../../../../node_modules/.pnpm/@rsbuild+plugin-less@1.5.0_@rsbuild+core@1.6.12/node_modules/@rsbuild/plugin-less/compiled/less-loader/index.js??ruleSet[1].rules[11].use[3]!./src/components/GridLines/Boundary/styles.module.less": function(module, __webpack_exports__, __webpack_require__) {
1888
1888
  __webpack_require__.d(__webpack_exports__, {
1889
1889
  Z: ()=>__WEBPACK_DEFAULT_EXPORT__
1890
1890
  });
@@ -1920,7 +1920,7 @@ var __webpack_modules__ = {
1920
1920
  };
1921
1921
  const __WEBPACK_DEFAULT_EXPORT__ = ___CSS_LOADER_EXPORT___;
1922
1922
  },
1923
- "../../../../node_modules/.pnpm/@rsbuild+core@1.3.18/node_modules/@rsbuild/core/compiled/css-loader/index.js??ruleSet[1].rules[11].use[1]!builtin:lightningcss-loader??ruleSet[1].rules[11].use[2]!../../../../node_modules/.pnpm/@rsbuild+plugin-less@1.5.0_@rsbuild+core@1.6.9/node_modules/@rsbuild/plugin-less/compiled/less-loader/index.js??ruleSet[1].rules[11].use[3]!./src/components/GridLines/Occdahsed/styles.module.less": function(module, __webpack_exports__, __webpack_require__) {
1923
+ "../../../../node_modules/.pnpm/@rsbuild+core@1.3.18/node_modules/@rsbuild/core/compiled/css-loader/index.js??ruleSet[1].rules[11].use[1]!builtin:lightningcss-loader??ruleSet[1].rules[11].use[2]!../../../../node_modules/.pnpm/@rsbuild+plugin-less@1.5.0_@rsbuild+core@1.6.12/node_modules/@rsbuild/plugin-less/compiled/less-loader/index.js??ruleSet[1].rules[11].use[3]!./src/components/GridLines/Occdahsed/styles.module.less": function(module, __webpack_exports__, __webpack_require__) {
1924
1924
  __webpack_require__.d(__webpack_exports__, {
1925
1925
  Z: ()=>__WEBPACK_DEFAULT_EXPORT__
1926
1926
  });
@@ -1968,7 +1968,7 @@ var __webpack_modules__ = {
1968
1968
  };
1969
1969
  const __WEBPACK_DEFAULT_EXPORT__ = ___CSS_LOADER_EXPORT___;
1970
1970
  },
1971
- "../../../node_modules/.pnpm/@rsbuild+core@1.3.18/node_modules/@rsbuild/core/compiled/css-loader/index.js??ruleSet[1].rules[11].use[1]!builtin:lightningcss-loader??ruleSet[1].rules[11].use[2]!../../../node_modules/.pnpm/@rsbuild+plugin-less@1.5.0_@rsbuild+core@1.6.9/node_modules/@rsbuild/plugin-less/compiled/less-loader/index.js??ruleSet[1].rules[11].use[3]!./src/components/GridLines/styles.module.less": function(module, __webpack_exports__, __webpack_require__) {
1971
+ "../../../node_modules/.pnpm/@rsbuild+core@1.3.18/node_modules/@rsbuild/core/compiled/css-loader/index.js??ruleSet[1].rules[11].use[1]!builtin:lightningcss-loader??ruleSet[1].rules[11].use[2]!../../../node_modules/.pnpm/@rsbuild+plugin-less@1.5.0_@rsbuild+core@1.6.12/node_modules/@rsbuild/plugin-less/compiled/less-loader/index.js??ruleSet[1].rules[11].use[3]!./src/components/GridLines/styles.module.less": function(module, __webpack_exports__, __webpack_require__) {
1972
1972
  __webpack_require__.d(__webpack_exports__, {
1973
1973
  Z: ()=>__WEBPACK_DEFAULT_EXPORT__
1974
1974
  });
@@ -2031,7 +2031,7 @@ var __webpack_modules__ = {
2031
2031
  };
2032
2032
  const __WEBPACK_DEFAULT_EXPORT__ = ___CSS_LOADER_EXPORT___;
2033
2033
  },
2034
- "../../../node_modules/.pnpm/@rsbuild+core@1.3.18/node_modules/@rsbuild/core/compiled/css-loader/index.js??ruleSet[1].rules[11].use[1]!builtin:lightningcss-loader??ruleSet[1].rules[11].use[2]!../../../node_modules/.pnpm/@rsbuild+plugin-less@1.5.0_@rsbuild+core@1.6.9/node_modules/@rsbuild/plugin-less/compiled/less-loader/index.js??ruleSet[1].rules[11].use[3]!./src/components/GuageBox/styles.module.less": function(module, __webpack_exports__, __webpack_require__) {
2034
+ "../../../node_modules/.pnpm/@rsbuild+core@1.3.18/node_modules/@rsbuild/core/compiled/css-loader/index.js??ruleSet[1].rules[11].use[1]!builtin:lightningcss-loader??ruleSet[1].rules[11].use[2]!../../../node_modules/.pnpm/@rsbuild+plugin-less@1.5.0_@rsbuild+core@1.6.12/node_modules/@rsbuild/plugin-less/compiled/less-loader/index.js??ruleSet[1].rules[11].use[3]!./src/components/GuageBox/styles.module.less": function(module, __webpack_exports__, __webpack_require__) {
2035
2035
  __webpack_require__.d(__webpack_exports__, {
2036
2036
  Z: ()=>__WEBPACK_DEFAULT_EXPORT__
2037
2037
  });
@@ -2064,7 +2064,7 @@ var __webpack_modules__ = {
2064
2064
  };
2065
2065
  const __WEBPACK_DEFAULT_EXPORT__ = ___CSS_LOADER_EXPORT___;
2066
2066
  },
2067
- "../../../../node_modules/.pnpm/@rsbuild+core@1.3.18/node_modules/@rsbuild/core/compiled/css-loader/index.js??ruleSet[1].rules[11].use[1]!builtin:lightningcss-loader??ruleSet[1].rules[11].use[2]!../../../../node_modules/.pnpm/@rsbuild+plugin-less@1.5.0_@rsbuild+core@1.6.9/node_modules/@rsbuild/plugin-less/compiled/less-loader/index.js??ruleSet[1].rules[11].use[3]!./src/components/HeatmapCapture/Area/styles.module.less": function(module, __webpack_exports__, __webpack_require__) {
2067
+ "../../../../node_modules/.pnpm/@rsbuild+core@1.3.18/node_modules/@rsbuild/core/compiled/css-loader/index.js??ruleSet[1].rules[11].use[1]!builtin:lightningcss-loader??ruleSet[1].rules[11].use[2]!../../../../node_modules/.pnpm/@rsbuild+plugin-less@1.5.0_@rsbuild+core@1.6.12/node_modules/@rsbuild/plugin-less/compiled/less-loader/index.js??ruleSet[1].rules[11].use[3]!./src/components/HeatmapCapture/Area/styles.module.less": function(module, __webpack_exports__, __webpack_require__) {
2068
2068
  __webpack_require__.d(__webpack_exports__, {
2069
2069
  Z: ()=>__WEBPACK_DEFAULT_EXPORT__
2070
2070
  });
@@ -2127,7 +2127,7 @@ var __webpack_modules__ = {
2127
2127
  };
2128
2128
  const __WEBPACK_DEFAULT_EXPORT__ = ___CSS_LOADER_EXPORT___;
2129
2129
  },
2130
- "../../../../node_modules/.pnpm/@rsbuild+core@1.3.18/node_modules/@rsbuild/core/compiled/css-loader/index.js??ruleSet[1].rules[11].use[1]!builtin:lightningcss-loader??ruleSet[1].rules[11].use[2]!../../../../node_modules/.pnpm/@rsbuild+plugin-less@1.5.0_@rsbuild+core@1.6.9/node_modules/@rsbuild/plugin-less/compiled/less-loader/index.js??ruleSet[1].rules[11].use[3]!./src/components/HeatmapCapture/RowIndex/styles.module.less": function(module, __webpack_exports__, __webpack_require__) {
2130
+ "../../../../node_modules/.pnpm/@rsbuild+core@1.3.18/node_modules/@rsbuild/core/compiled/css-loader/index.js??ruleSet[1].rules[11].use[1]!builtin:lightningcss-loader??ruleSet[1].rules[11].use[2]!../../../../node_modules/.pnpm/@rsbuild+plugin-less@1.5.0_@rsbuild+core@1.6.12/node_modules/@rsbuild/plugin-less/compiled/less-loader/index.js??ruleSet[1].rules[11].use[3]!./src/components/HeatmapCapture/RowIndex/styles.module.less": function(module, __webpack_exports__, __webpack_require__) {
2131
2131
  __webpack_require__.d(__webpack_exports__, {
2132
2132
  Z: ()=>__WEBPACK_DEFAULT_EXPORT__
2133
2133
  });
@@ -2196,7 +2196,7 @@ var __webpack_modules__ = {
2196
2196
  };
2197
2197
  const __WEBPACK_DEFAULT_EXPORT__ = ___CSS_LOADER_EXPORT___;
2198
2198
  },
2199
- "../../../../node_modules/.pnpm/@rsbuild+core@1.3.18/node_modules/@rsbuild/core/compiled/css-loader/index.js??ruleSet[1].rules[11].use[1]!builtin:lightningcss-loader??ruleSet[1].rules[11].use[2]!../../../../node_modules/.pnpm/@rsbuild+plugin-less@1.5.0_@rsbuild+core@1.6.9/node_modules/@rsbuild/plugin-less/compiled/less-loader/index.js??ruleSet[1].rules[11].use[3]!./src/components/HeatmapCapture/Slider/styles.module.less": function(module, __webpack_exports__, __webpack_require__) {
2199
+ "../../../../node_modules/.pnpm/@rsbuild+core@1.3.18/node_modules/@rsbuild/core/compiled/css-loader/index.js??ruleSet[1].rules[11].use[1]!builtin:lightningcss-loader??ruleSet[1].rules[11].use[2]!../../../../node_modules/.pnpm/@rsbuild+plugin-less@1.5.0_@rsbuild+core@1.6.12/node_modules/@rsbuild/plugin-less/compiled/less-loader/index.js??ruleSet[1].rules[11].use[3]!./src/components/HeatmapCapture/Slider/styles.module.less": function(module, __webpack_exports__, __webpack_require__) {
2200
2200
  __webpack_require__.d(__webpack_exports__, {
2201
2201
  Z: ()=>__WEBPACK_DEFAULT_EXPORT__
2202
2202
  });
@@ -2469,7 +2469,7 @@ var __webpack_modules__ = {
2469
2469
  };
2470
2470
  const __WEBPACK_DEFAULT_EXPORT__ = ___CSS_LOADER_EXPORT___;
2471
2471
  },
2472
- "../../../node_modules/.pnpm/@rsbuild+core@1.3.18/node_modules/@rsbuild/core/compiled/css-loader/index.js??ruleSet[1].rules[11].use[1]!builtin:lightningcss-loader??ruleSet[1].rules[11].use[2]!../../../node_modules/.pnpm/@rsbuild+plugin-less@1.5.0_@rsbuild+core@1.6.9/node_modules/@rsbuild/plugin-less/compiled/less-loader/index.js??ruleSet[1].rules[11].use[3]!./src/components/Legend/styles.module.less": function(module, __webpack_exports__, __webpack_require__) {
2472
+ "../../../node_modules/.pnpm/@rsbuild+core@1.3.18/node_modules/@rsbuild/core/compiled/css-loader/index.js??ruleSet[1].rules[11].use[1]!builtin:lightningcss-loader??ruleSet[1].rules[11].use[2]!../../../node_modules/.pnpm/@rsbuild+plugin-less@1.5.0_@rsbuild+core@1.6.12/node_modules/@rsbuild/plugin-less/compiled/less-loader/index.js??ruleSet[1].rules[11].use[3]!./src/components/Legend/styles.module.less": function(module, __webpack_exports__, __webpack_require__) {
2473
2473
  __webpack_require__.d(__webpack_exports__, {
2474
2474
  Z: ()=>__WEBPACK_DEFAULT_EXPORT__
2475
2475
  });
@@ -2498,7 +2498,7 @@ var __webpack_modules__ = {
2498
2498
  };
2499
2499
  const __WEBPACK_DEFAULT_EXPORT__ = ___CSS_LOADER_EXPORT___;
2500
2500
  },
2501
- "../../../node_modules/.pnpm/@rsbuild+core@1.3.18/node_modules/@rsbuild/core/compiled/css-loader/index.js??ruleSet[1].rules[11].use[1]!builtin:lightningcss-loader??ruleSet[1].rules[11].use[2]!../../../node_modules/.pnpm/@rsbuild+plugin-less@1.5.0_@rsbuild+core@1.6.9/node_modules/@rsbuild/plugin-less/compiled/less-loader/index.js??ruleSet[1].rules[11].use[3]!./src/components/Limit/styles.module.less": function(module, __webpack_exports__, __webpack_require__) {
2501
+ "../../../node_modules/.pnpm/@rsbuild+core@1.3.18/node_modules/@rsbuild/core/compiled/css-loader/index.js??ruleSet[1].rules[11].use[1]!builtin:lightningcss-loader??ruleSet[1].rules[11].use[2]!../../../node_modules/.pnpm/@rsbuild+plugin-less@1.5.0_@rsbuild+core@1.6.12/node_modules/@rsbuild/plugin-less/compiled/less-loader/index.js??ruleSet[1].rules[11].use[3]!./src/components/Limit/styles.module.less": function(module, __webpack_exports__, __webpack_require__) {
2502
2502
  __webpack_require__.d(__webpack_exports__, {
2503
2503
  Z: ()=>__WEBPACK_DEFAULT_EXPORT__
2504
2504
  });
@@ -2617,7 +2617,7 @@ var __webpack_modules__ = {
2617
2617
  };
2618
2618
  const __WEBPACK_DEFAULT_EXPORT__ = ___CSS_LOADER_EXPORT___;
2619
2619
  },
2620
- "../../../../node_modules/.pnpm/@rsbuild+core@1.3.18/node_modules/@rsbuild/core/compiled/css-loader/index.js??ruleSet[1].rules[11].use[1]!builtin:lightningcss-loader??ruleSet[1].rules[11].use[2]!../../../../node_modules/.pnpm/@rsbuild+plugin-less@1.5.0_@rsbuild+core@1.6.9/node_modules/@rsbuild/plugin-less/compiled/less-loader/index.js??ruleSet[1].rules[11].use[3]!./src/components/Markers/MarkerItem/styles.module.less": function(module, __webpack_exports__, __webpack_require__) {
2620
+ "../../../../node_modules/.pnpm/@rsbuild+core@1.3.18/node_modules/@rsbuild/core/compiled/css-loader/index.js??ruleSet[1].rules[11].use[1]!builtin:lightningcss-loader??ruleSet[1].rules[11].use[2]!../../../../node_modules/.pnpm/@rsbuild+plugin-less@1.5.0_@rsbuild+core@1.6.12/node_modules/@rsbuild/plugin-less/compiled/less-loader/index.js??ruleSet[1].rules[11].use[3]!./src/components/Markers/MarkerItem/styles.module.less": function(module, __webpack_exports__, __webpack_require__) {
2621
2621
  __webpack_require__.d(__webpack_exports__, {
2622
2622
  Z: ()=>__WEBPACK_DEFAULT_EXPORT__
2623
2623
  });
@@ -2687,7 +2687,7 @@ var __webpack_modules__ = {
2687
2687
  };
2688
2688
  const __WEBPACK_DEFAULT_EXPORT__ = ___CSS_LOADER_EXPORT___;
2689
2689
  },
2690
- "../../../node_modules/.pnpm/@rsbuild+core@1.3.18/node_modules/@rsbuild/core/compiled/css-loader/index.js??ruleSet[1].rules[11].use[1]!builtin:lightningcss-loader??ruleSet[1].rules[11].use[2]!../../../node_modules/.pnpm/@rsbuild+plugin-less@1.5.0_@rsbuild+core@1.6.9/node_modules/@rsbuild/plugin-less/compiled/less-loader/index.js??ruleSet[1].rules[11].use[3]!./src/components/Markers/styles.module.less": function(module, __webpack_exports__, __webpack_require__) {
2690
+ "../../../node_modules/.pnpm/@rsbuild+core@1.3.18/node_modules/@rsbuild/core/compiled/css-loader/index.js??ruleSet[1].rules[11].use[1]!builtin:lightningcss-loader??ruleSet[1].rules[11].use[2]!../../../node_modules/.pnpm/@rsbuild+plugin-less@1.5.0_@rsbuild+core@1.6.12/node_modules/@rsbuild/plugin-less/compiled/less-loader/index.js??ruleSet[1].rules[11].use[3]!./src/components/Markers/styles.module.less": function(module, __webpack_exports__, __webpack_require__) {
2691
2691
  __webpack_require__.d(__webpack_exports__, {
2692
2692
  Z: ()=>__WEBPACK_DEFAULT_EXPORT__
2693
2693
  });
@@ -2714,7 +2714,7 @@ var __webpack_modules__ = {
2714
2714
  };
2715
2715
  const __WEBPACK_DEFAULT_EXPORT__ = ___CSS_LOADER_EXPORT___;
2716
2716
  },
2717
- "../../../node_modules/.pnpm/@rsbuild+core@1.3.18/node_modules/@rsbuild/core/compiled/css-loader/index.js??ruleSet[1].rules[11].use[1]!builtin:lightningcss-loader??ruleSet[1].rules[11].use[2]!../../../node_modules/.pnpm/@rsbuild+plugin-less@1.5.0_@rsbuild+core@1.6.9/node_modules/@rsbuild/plugin-less/compiled/less-loader/index.js??ruleSet[1].rules[11].use[3]!./src/components/Mask/styles.module.less": function(module, __webpack_exports__, __webpack_require__) {
2717
+ "../../../node_modules/.pnpm/@rsbuild+core@1.3.18/node_modules/@rsbuild/core/compiled/css-loader/index.js??ruleSet[1].rules[11].use[1]!builtin:lightningcss-loader??ruleSet[1].rules[11].use[2]!../../../node_modules/.pnpm/@rsbuild+plugin-less@1.5.0_@rsbuild+core@1.6.12/node_modules/@rsbuild/plugin-less/compiled/less-loader/index.js??ruleSet[1].rules[11].use[3]!./src/components/Mask/styles.module.less": function(module, __webpack_exports__, __webpack_require__) {
2718
2718
  __webpack_require__.d(__webpack_exports__, {
2719
2719
  Z: ()=>__WEBPACK_DEFAULT_EXPORT__
2720
2720
  });
@@ -2778,7 +2778,7 @@ var __webpack_modules__ = {
2778
2778
  };
2779
2779
  const __WEBPACK_DEFAULT_EXPORT__ = ___CSS_LOADER_EXPORT___;
2780
2780
  },
2781
- "../../../node_modules/.pnpm/@rsbuild+core@1.3.18/node_modules/@rsbuild/core/compiled/css-loader/index.js??ruleSet[1].rules[11].use[1]!builtin:lightningcss-loader??ruleSet[1].rules[11].use[2]!../../../node_modules/.pnpm/@rsbuild+plugin-less@1.5.0_@rsbuild+core@1.6.9/node_modules/@rsbuild/plugin-less/compiled/less-loader/index.js??ruleSet[1].rules[11].use[3]!./src/components/PluginBox/styles.module.less": function(module, __webpack_exports__, __webpack_require__) {
2781
+ "../../../node_modules/.pnpm/@rsbuild+core@1.3.18/node_modules/@rsbuild/core/compiled/css-loader/index.js??ruleSet[1].rules[11].use[1]!builtin:lightningcss-loader??ruleSet[1].rules[11].use[2]!../../../node_modules/.pnpm/@rsbuild+plugin-less@1.5.0_@rsbuild+core@1.6.12/node_modules/@rsbuild/plugin-less/compiled/less-loader/index.js??ruleSet[1].rules[11].use[3]!./src/components/PluginBox/styles.module.less": function(module, __webpack_exports__, __webpack_require__) {
2782
2782
  __webpack_require__.d(__webpack_exports__, {
2783
2783
  Z: ()=>__WEBPACK_DEFAULT_EXPORT__
2784
2784
  });
@@ -2809,7 +2809,7 @@ var __webpack_modules__ = {
2809
2809
  };
2810
2810
  const __WEBPACK_DEFAULT_EXPORT__ = ___CSS_LOADER_EXPORT___;
2811
2811
  },
2812
- "../../../node_modules/.pnpm/@rsbuild+core@1.3.18/node_modules/@rsbuild/core/compiled/css-loader/index.js??ruleSet[1].rules[11].use[1]!builtin:lightningcss-loader??ruleSet[1].rules[11].use[2]!../../../node_modules/.pnpm/@rsbuild+plugin-less@1.5.0_@rsbuild+core@1.6.9/node_modules/@rsbuild/plugin-less/compiled/less-loader/index.js??ruleSet[1].rules[11].use[3]!./src/components/Popover/styles.module.less": function(module, __webpack_exports__, __webpack_require__) {
2812
+ "../../../node_modules/.pnpm/@rsbuild+core@1.3.18/node_modules/@rsbuild/core/compiled/css-loader/index.js??ruleSet[1].rules[11].use[1]!builtin:lightningcss-loader??ruleSet[1].rules[11].use[2]!../../../node_modules/.pnpm/@rsbuild+plugin-less@1.5.0_@rsbuild+core@1.6.12/node_modules/@rsbuild/plugin-less/compiled/less-loader/index.js??ruleSet[1].rules[11].use[3]!./src/components/Popover/styles.module.less": function(module, __webpack_exports__, __webpack_require__) {
2813
2813
  __webpack_require__.d(__webpack_exports__, {
2814
2814
  Z: ()=>__WEBPACK_DEFAULT_EXPORT__
2815
2815
  });
@@ -2836,7 +2836,7 @@ var __webpack_modules__ = {
2836
2836
  };
2837
2837
  const __WEBPACK_DEFAULT_EXPORT__ = ___CSS_LOADER_EXPORT___;
2838
2838
  },
2839
- "../../../node_modules/.pnpm/@rsbuild+core@1.3.18/node_modules/@rsbuild/core/compiled/css-loader/index.js??ruleSet[1].rules[11].use[1]!builtin:lightningcss-loader??ruleSet[1].rules[11].use[2]!../../../node_modules/.pnpm/@rsbuild+plugin-less@1.5.0_@rsbuild+core@1.6.9/node_modules/@rsbuild/plugin-less/compiled/less-loader/index.js??ruleSet[1].rules[11].use[3]!./src/components/RulerTicks/styles.module.less": function(module, __webpack_exports__, __webpack_require__) {
2839
+ "../../../node_modules/.pnpm/@rsbuild+core@1.3.18/node_modules/@rsbuild/core/compiled/css-loader/index.js??ruleSet[1].rules[11].use[1]!builtin:lightningcss-loader??ruleSet[1].rules[11].use[2]!../../../node_modules/.pnpm/@rsbuild+plugin-less@1.5.0_@rsbuild+core@1.6.12/node_modules/@rsbuild/plugin-less/compiled/less-loader/index.js??ruleSet[1].rules[11].use[3]!./src/components/RulerTicks/styles.module.less": function(module, __webpack_exports__, __webpack_require__) {
2840
2840
  __webpack_require__.d(__webpack_exports__, {
2841
2841
  Z: ()=>__WEBPACK_DEFAULT_EXPORT__
2842
2842
  });
@@ -2864,7 +2864,7 @@ var __webpack_modules__ = {
2864
2864
  };
2865
2865
  const __WEBPACK_DEFAULT_EXPORT__ = ___CSS_LOADER_EXPORT___;
2866
2866
  },
2867
- "../../../node_modules/.pnpm/@rsbuild+core@1.3.18/node_modules/@rsbuild/core/compiled/css-loader/index.js??ruleSet[1].rules[11].use[1]!builtin:lightningcss-loader??ruleSet[1].rules[11].use[2]!../../../node_modules/.pnpm/@rsbuild+plugin-less@1.5.0_@rsbuild+core@1.6.9/node_modules/@rsbuild/plugin-less/compiled/less-loader/index.js??ruleSet[1].rules[11].use[3]!./src/components/Scope/styles.module.less": function(module, __webpack_exports__, __webpack_require__) {
2867
+ "../../../node_modules/.pnpm/@rsbuild+core@1.3.18/node_modules/@rsbuild/core/compiled/css-loader/index.js??ruleSet[1].rules[11].use[1]!builtin:lightningcss-loader??ruleSet[1].rules[11].use[2]!../../../node_modules/.pnpm/@rsbuild+plugin-less@1.5.0_@rsbuild+core@1.6.12/node_modules/@rsbuild/plugin-less/compiled/less-loader/index.js??ruleSet[1].rules[11].use[3]!./src/components/Scope/styles.module.less": function(module, __webpack_exports__, __webpack_require__) {
2868
2868
  __webpack_require__.d(__webpack_exports__, {
2869
2869
  Z: ()=>__WEBPACK_DEFAULT_EXPORT__
2870
2870
  });
@@ -2894,7 +2894,7 @@ var __webpack_modules__ = {
2894
2894
  };
2895
2895
  const __WEBPACK_DEFAULT_EXPORT__ = ___CSS_LOADER_EXPORT___;
2896
2896
  },
2897
- "../../../node_modules/.pnpm/@rsbuild+core@1.3.18/node_modules/@rsbuild/core/compiled/css-loader/index.js??ruleSet[1].rules[11].use[1]!builtin:lightningcss-loader??ruleSet[1].rules[11].use[2]!../../../node_modules/.pnpm/@rsbuild+plugin-less@1.5.0_@rsbuild+core@1.6.9/node_modules/@rsbuild/plugin-less/compiled/less-loader/index.js??ruleSet[1].rules[11].use[3]!./src/components/SegmentsZebra/styles.module.less": function(module, __webpack_exports__, __webpack_require__) {
2897
+ "../../../node_modules/.pnpm/@rsbuild+core@1.3.18/node_modules/@rsbuild/core/compiled/css-loader/index.js??ruleSet[1].rules[11].use[1]!builtin:lightningcss-loader??ruleSet[1].rules[11].use[2]!../../../node_modules/.pnpm/@rsbuild+plugin-less@1.5.0_@rsbuild+core@1.6.12/node_modules/@rsbuild/plugin-less/compiled/less-loader/index.js??ruleSet[1].rules[11].use[3]!./src/components/SegmentsZebra/styles.module.less": function(module, __webpack_exports__, __webpack_require__) {
2898
2898
  __webpack_require__.d(__webpack_exports__, {
2899
2899
  Z: ()=>__WEBPACK_DEFAULT_EXPORT__
2900
2900
  });
@@ -2925,7 +2925,7 @@ var __webpack_modules__ = {
2925
2925
  };
2926
2926
  const __WEBPACK_DEFAULT_EXPORT__ = ___CSS_LOADER_EXPORT___;
2927
2927
  },
2928
- "../../../node_modules/.pnpm/@rsbuild+core@1.3.18/node_modules/@rsbuild/core/compiled/css-loader/index.js??ruleSet[1].rules[11].use[1]!builtin:lightningcss-loader??ruleSet[1].rules[11].use[2]!../../../node_modules/.pnpm/@rsbuild+plugin-less@1.5.0_@rsbuild+core@1.6.9/node_modules/@rsbuild/plugin-less/compiled/less-loader/index.js??ruleSet[1].rules[11].use[3]!./src/components/Signal/styles.module.less": function(module, __webpack_exports__, __webpack_require__) {
2928
+ "../../../node_modules/.pnpm/@rsbuild+core@1.3.18/node_modules/@rsbuild/core/compiled/css-loader/index.js??ruleSet[1].rules[11].use[1]!builtin:lightningcss-loader??ruleSet[1].rules[11].use[2]!../../../node_modules/.pnpm/@rsbuild+plugin-less@1.5.0_@rsbuild+core@1.6.12/node_modules/@rsbuild/plugin-less/compiled/less-loader/index.js??ruleSet[1].rules[11].use[3]!./src/components/Signal/styles.module.less": function(module, __webpack_exports__, __webpack_require__) {
2929
2929
  __webpack_require__.d(__webpack_exports__, {
2930
2930
  Z: ()=>__WEBPACK_DEFAULT_EXPORT__
2931
2931
  });
@@ -3021,7 +3021,7 @@ var __webpack_modules__ = {
3021
3021
  };
3022
3022
  const __WEBPACK_DEFAULT_EXPORT__ = ___CSS_LOADER_EXPORT___;
3023
3023
  },
3024
- "../../../node_modules/.pnpm/@rsbuild+core@1.3.18/node_modules/@rsbuild/core/compiled/css-loader/index.js??ruleSet[1].rules[11].use[1]!builtin:lightningcss-loader??ruleSet[1].rules[11].use[2]!../../../node_modules/.pnpm/@rsbuild+plugin-less@1.5.0_@rsbuild+core@1.6.9/node_modules/@rsbuild/plugin-less/compiled/less-loader/index.js??ruleSet[1].rules[11].use[3]!./src/components/Square/styles.module.less": function(module, __webpack_exports__, __webpack_require__) {
3024
+ "../../../node_modules/.pnpm/@rsbuild+core@1.3.18/node_modules/@rsbuild/core/compiled/css-loader/index.js??ruleSet[1].rules[11].use[1]!builtin:lightningcss-loader??ruleSet[1].rules[11].use[2]!../../../node_modules/.pnpm/@rsbuild+plugin-less@1.5.0_@rsbuild+core@1.6.12/node_modules/@rsbuild/plugin-less/compiled/less-loader/index.js??ruleSet[1].rules[11].use[3]!./src/components/Square/styles.module.less": function(module, __webpack_exports__, __webpack_require__) {
3025
3025
  __webpack_require__.d(__webpack_exports__, {
3026
3026
  Z: ()=>__WEBPACK_DEFAULT_EXPORT__
3027
3027
  });
@@ -3055,7 +3055,7 @@ var __webpack_modules__ = {
3055
3055
  };
3056
3056
  const __WEBPACK_DEFAULT_EXPORT__ = ___CSS_LOADER_EXPORT___;
3057
3057
  },
3058
- "../../../node_modules/.pnpm/@rsbuild+core@1.3.18/node_modules/@rsbuild/core/compiled/css-loader/index.js??ruleSet[1].rules[11].use[1]!builtin:lightningcss-loader??ruleSet[1].rules[11].use[2]!../../../node_modules/.pnpm/@rsbuild+plugin-less@1.5.0_@rsbuild+core@1.6.9/node_modules/@rsbuild/plugin-less/compiled/less-loader/index.js??ruleSet[1].rules[11].use[3]!./src/components/Stripe/styles.module.less": function(module, __webpack_exports__, __webpack_require__) {
3058
+ "../../../node_modules/.pnpm/@rsbuild+core@1.3.18/node_modules/@rsbuild/core/compiled/css-loader/index.js??ruleSet[1].rules[11].use[1]!builtin:lightningcss-loader??ruleSet[1].rules[11].use[2]!../../../node_modules/.pnpm/@rsbuild+plugin-less@1.5.0_@rsbuild+core@1.6.12/node_modules/@rsbuild/plugin-less/compiled/less-loader/index.js??ruleSet[1].rules[11].use[3]!./src/components/Stripe/styles.module.less": function(module, __webpack_exports__, __webpack_require__) {
3059
3059
  __webpack_require__.d(__webpack_exports__, {
3060
3060
  Z: ()=>__WEBPACK_DEFAULT_EXPORT__
3061
3061
  });
@@ -3091,7 +3091,7 @@ var __webpack_modules__ = {
3091
3091
  };
3092
3092
  const __WEBPACK_DEFAULT_EXPORT__ = ___CSS_LOADER_EXPORT___;
3093
3093
  },
3094
- "../../../../node_modules/.pnpm/@rsbuild+core@1.3.18/node_modules/@rsbuild/core/compiled/css-loader/index.js??ruleSet[1].rules[11].use[1]!builtin:lightningcss-loader??ruleSet[1].rules[11].use[2]!../../../../node_modules/.pnpm/@rsbuild+plugin-less@1.5.0_@rsbuild+core@1.6.9/node_modules/@rsbuild/plugin-less/compiled/less-loader/index.js??ruleSet[1].rules[11].use[3]!./src/components/ToolsBar/GradientRibbon/styles.module.less": function(module, __webpack_exports__, __webpack_require__) {
3094
+ "../../../../node_modules/.pnpm/@rsbuild+core@1.3.18/node_modules/@rsbuild/core/compiled/css-loader/index.js??ruleSet[1].rules[11].use[1]!builtin:lightningcss-loader??ruleSet[1].rules[11].use[2]!../../../../node_modules/.pnpm/@rsbuild+plugin-less@1.5.0_@rsbuild+core@1.6.12/node_modules/@rsbuild/plugin-less/compiled/less-loader/index.js??ruleSet[1].rules[11].use[3]!./src/components/ToolsBar/GradientRibbon/styles.module.less": function(module, __webpack_exports__, __webpack_require__) {
3095
3095
  __webpack_require__.d(__webpack_exports__, {
3096
3096
  Z: ()=>__WEBPACK_DEFAULT_EXPORT__
3097
3097
  });
@@ -3145,7 +3145,7 @@ var __webpack_modules__ = {
3145
3145
  };
3146
3146
  const __WEBPACK_DEFAULT_EXPORT__ = ___CSS_LOADER_EXPORT___;
3147
3147
  },
3148
- "../../../../node_modules/.pnpm/@rsbuild+core@1.3.18/node_modules/@rsbuild/core/compiled/css-loader/index.js??ruleSet[1].rules[11].use[1]!builtin:lightningcss-loader??ruleSet[1].rules[11].use[2]!../../../../node_modules/.pnpm/@rsbuild+plugin-less@1.5.0_@rsbuild+core@1.6.9/node_modules/@rsbuild/plugin-less/compiled/less-loader/index.js??ruleSet[1].rules[11].use[3]!./src/components/ToolsBar/SeriesDisplayControl/styles.module.less": function(module, __webpack_exports__, __webpack_require__) {
3148
+ "../../../../node_modules/.pnpm/@rsbuild+core@1.3.18/node_modules/@rsbuild/core/compiled/css-loader/index.js??ruleSet[1].rules[11].use[1]!builtin:lightningcss-loader??ruleSet[1].rules[11].use[2]!../../../../node_modules/.pnpm/@rsbuild+plugin-less@1.5.0_@rsbuild+core@1.6.12/node_modules/@rsbuild/plugin-less/compiled/less-loader/index.js??ruleSet[1].rules[11].use[3]!./src/components/ToolsBar/SeriesDisplayControl/styles.module.less": function(module, __webpack_exports__, __webpack_require__) {
3149
3149
  __webpack_require__.d(__webpack_exports__, {
3150
3150
  Z: ()=>__WEBPACK_DEFAULT_EXPORT__
3151
3151
  });
@@ -3242,7 +3242,7 @@ var __webpack_modules__ = {
3242
3242
  };
3243
3243
  const __WEBPACK_DEFAULT_EXPORT__ = ___CSS_LOADER_EXPORT___;
3244
3244
  },
3245
- "../../../node_modules/.pnpm/@rsbuild+core@1.3.18/node_modules/@rsbuild/core/compiled/css-loader/index.js??ruleSet[1].rules[11].use[1]!builtin:lightningcss-loader??ruleSet[1].rules[11].use[2]!../../../node_modules/.pnpm/@rsbuild+plugin-less@1.5.0_@rsbuild+core@1.6.9/node_modules/@rsbuild/plugin-less/compiled/less-loader/index.js??ruleSet[1].rules[11].use[3]!./src/components/ToolsBar/styles.module.less": function(module, __webpack_exports__, __webpack_require__) {
3245
+ "../../../node_modules/.pnpm/@rsbuild+core@1.3.18/node_modules/@rsbuild/core/compiled/css-loader/index.js??ruleSet[1].rules[11].use[1]!builtin:lightningcss-loader??ruleSet[1].rules[11].use[2]!../../../node_modules/.pnpm/@rsbuild+plugin-less@1.5.0_@rsbuild+core@1.6.12/node_modules/@rsbuild/plugin-less/compiled/less-loader/index.js??ruleSet[1].rules[11].use[3]!./src/components/ToolsBar/styles.module.less": function(module, __webpack_exports__, __webpack_require__) {
3246
3246
  __webpack_require__.d(__webpack_exports__, {
3247
3247
  Z: ()=>__WEBPACK_DEFAULT_EXPORT__
3248
3248
  });
@@ -3335,7 +3335,7 @@ var __webpack_modules__ = {
3335
3335
  };
3336
3336
  const __WEBPACK_DEFAULT_EXPORT__ = ___CSS_LOADER_EXPORT___;
3337
3337
  },
3338
- "../../../node_modules/.pnpm/@rsbuild+core@1.3.18/node_modules/@rsbuild/core/compiled/css-loader/index.js??ruleSet[1].rules[11].use[1]!builtin:lightningcss-loader??ruleSet[1].rules[11].use[2]!../../../node_modules/.pnpm/@rsbuild+plugin-less@1.5.0_@rsbuild+core@1.6.9/node_modules/@rsbuild/plugin-less/compiled/less-loader/index.js??ruleSet[1].rules[11].use[3]!./src/components/Tooltip/styles.module.less": function(module, __webpack_exports__, __webpack_require__) {
3338
+ "../../../node_modules/.pnpm/@rsbuild+core@1.3.18/node_modules/@rsbuild/core/compiled/css-loader/index.js??ruleSet[1].rules[11].use[1]!builtin:lightningcss-loader??ruleSet[1].rules[11].use[2]!../../../node_modules/.pnpm/@rsbuild+plugin-less@1.5.0_@rsbuild+core@1.6.12/node_modules/@rsbuild/plugin-less/compiled/less-loader/index.js??ruleSet[1].rules[11].use[3]!./src/components/Tooltip/styles.module.less": function(module, __webpack_exports__, __webpack_require__) {
3339
3339
  __webpack_require__.d(__webpack_exports__, {
3340
3340
  Z: ()=>__WEBPACK_DEFAULT_EXPORT__
3341
3341
  });
@@ -3404,7 +3404,7 @@ var __webpack_modules__ = {
3404
3404
  };
3405
3405
  const __WEBPACK_DEFAULT_EXPORT__ = ___CSS_LOADER_EXPORT___;
3406
3406
  },
3407
- "../../../../node_modules/.pnpm/@rsbuild+core@1.3.18/node_modules/@rsbuild/core/compiled/css-loader/index.js??ruleSet[1].rules[11].use[1]!builtin:lightningcss-loader??ruleSet[1].rules[11].use[2]!../../../../node_modules/.pnpm/@rsbuild+plugin-less@1.5.0_@rsbuild+core@1.6.9/node_modules/@rsbuild/plugin-less/compiled/less-loader/index.js??ruleSet[1].rules[11].use[3]!./src/components/Zoom/Switch/styles.module.less": function(module, __webpack_exports__, __webpack_require__) {
3407
+ "../../../../node_modules/.pnpm/@rsbuild+core@1.3.18/node_modules/@rsbuild/core/compiled/css-loader/index.js??ruleSet[1].rules[11].use[1]!builtin:lightningcss-loader??ruleSet[1].rules[11].use[2]!../../../../node_modules/.pnpm/@rsbuild+plugin-less@1.5.0_@rsbuild+core@1.6.12/node_modules/@rsbuild/plugin-less/compiled/less-loader/index.js??ruleSet[1].rules[11].use[3]!./src/components/Zoom/Switch/styles.module.less": function(module, __webpack_exports__, __webpack_require__) {
3408
3408
  __webpack_require__.d(__webpack_exports__, {
3409
3409
  Z: ()=>__WEBPACK_DEFAULT_EXPORT__
3410
3410
  });
@@ -3437,7 +3437,7 @@ var __webpack_modules__ = {
3437
3437
  };
3438
3438
  const __WEBPACK_DEFAULT_EXPORT__ = ___CSS_LOADER_EXPORT___;
3439
3439
  },
3440
- "../../../../node_modules/.pnpm/@rsbuild+core@1.3.18/node_modules/@rsbuild/core/compiled/css-loader/index.js??ruleSet[1].rules[11].use[1]!builtin:lightningcss-loader??ruleSet[1].rules[11].use[2]!../../../../node_modules/.pnpm/@rsbuild+plugin-less@1.5.0_@rsbuild+core@1.6.9/node_modules/@rsbuild/plugin-less/compiled/less-loader/index.js??ruleSet[1].rules[11].use[3]!./src/components/Zoom/ZoomOffsetContainer/styles.module.less": function(module, __webpack_exports__, __webpack_require__) {
3440
+ "../../../../node_modules/.pnpm/@rsbuild+core@1.3.18/node_modules/@rsbuild/core/compiled/css-loader/index.js??ruleSet[1].rules[11].use[1]!builtin:lightningcss-loader??ruleSet[1].rules[11].use[2]!../../../../node_modules/.pnpm/@rsbuild+plugin-less@1.5.0_@rsbuild+core@1.6.12/node_modules/@rsbuild/plugin-less/compiled/less-loader/index.js??ruleSet[1].rules[11].use[3]!./src/components/Zoom/ZoomOffsetContainer/styles.module.less": function(module, __webpack_exports__, __webpack_require__) {
3441
3441
  __webpack_require__.d(__webpack_exports__, {
3442
3442
  Z: ()=>__WEBPACK_DEFAULT_EXPORT__
3443
3443
  });
@@ -3482,7 +3482,7 @@ var __webpack_modules__ = {
3482
3482
  };
3483
3483
  const __WEBPACK_DEFAULT_EXPORT__ = ___CSS_LOADER_EXPORT___;
3484
3484
  },
3485
- "../../../node_modules/.pnpm/@rsbuild+core@1.3.18/node_modules/@rsbuild/core/compiled/css-loader/index.js??ruleSet[1].rules[11].use[1]!builtin:lightningcss-loader??ruleSet[1].rules[11].use[2]!../../../node_modules/.pnpm/@rsbuild+plugin-less@1.5.0_@rsbuild+core@1.6.9/node_modules/@rsbuild/plugin-less/compiled/less-loader/index.js??ruleSet[1].rules[11].use[3]!./src/hooks/useChart/styles.module.less": function(module, __webpack_exports__, __webpack_require__) {
3485
+ "../../../node_modules/.pnpm/@rsbuild+core@1.3.18/node_modules/@rsbuild/core/compiled/css-loader/index.js??ruleSet[1].rules[11].use[1]!builtin:lightningcss-loader??ruleSet[1].rules[11].use[2]!../../../node_modules/.pnpm/@rsbuild+plugin-less@1.5.0_@rsbuild+core@1.6.12/node_modules/@rsbuild/plugin-less/compiled/less-loader/index.js??ruleSet[1].rules[11].use[3]!./src/hooks/useChart/styles.module.less": function(module, __webpack_exports__, __webpack_require__) {
3486
3486
  __webpack_require__.d(__webpack_exports__, {
3487
3487
  Z: ()=>__WEBPACK_DEFAULT_EXPORT__
3488
3488
  });
@@ -3516,7 +3516,7 @@ var __webpack_modules__ = {
3516
3516
  };
3517
3517
  const __WEBPACK_DEFAULT_EXPORT__ = ___CSS_LOADER_EXPORT___;
3518
3518
  },
3519
- "../../../../node_modules/.pnpm/@rsbuild+core@1.3.18/node_modules/@rsbuild/core/compiled/css-loader/index.js??ruleSet[1].rules[11].use[1]!builtin:lightningcss-loader??ruleSet[1].rules[11].use[2]!../../../../node_modules/.pnpm/@rsbuild+plugin-less@1.5.0_@rsbuild+core@1.6.9/node_modules/@rsbuild/plugin-less/compiled/less-loader/index.js??ruleSet[1].rules[11].use[3]!./src/modules/Occupancy/TotalLine/styles.module.less": function(module, __webpack_exports__, __webpack_require__) {
3519
+ "../../../../node_modules/.pnpm/@rsbuild+core@1.3.18/node_modules/@rsbuild/core/compiled/css-loader/index.js??ruleSet[1].rules[11].use[1]!builtin:lightningcss-loader??ruleSet[1].rules[11].use[2]!../../../../node_modules/.pnpm/@rsbuild+plugin-less@1.5.0_@rsbuild+core@1.6.12/node_modules/@rsbuild/plugin-less/compiled/less-loader/index.js??ruleSet[1].rules[11].use[3]!./src/modules/Occupancy/TotalLine/styles.module.less": function(module, __webpack_exports__, __webpack_require__) {
3520
3520
  __webpack_require__.d(__webpack_exports__, {
3521
3521
  Z: ()=>__WEBPACK_DEFAULT_EXPORT__
3522
3522
  });
@@ -4365,7 +4365,6 @@ function defaultState_createParams() {
4365
4365
  type: axisYTypeList["default"],
4366
4366
  hidden: [],
4367
4367
  linkage: true,
4368
- heatmapFullTicks: void 0,
4369
4368
  onChange: ()=>{}
4370
4369
  },
4371
4370
  axisX: {
@@ -4451,7 +4450,7 @@ function defaultState_createParams() {
4451
4450
  },
4452
4451
  signal: {
4453
4452
  show: true,
4454
- display: true,
4453
+ display: false,
4455
4454
  data: [],
4456
4455
  onChange: ()=>{}
4457
4456
  },
@@ -4793,7 +4792,7 @@ var insertStyleElement = __webpack_require__("./node_modules/.pnpm/@rsbuild+core
4793
4792
  var insertStyleElement_default = /*#__PURE__*/ __webpack_require__.n(insertStyleElement);
4794
4793
  var styleTagTransform = __webpack_require__("./node_modules/.pnpm/@rsbuild+core@1.3.18/node_modules/@rsbuild/core/compiled/style-loader/runtime/styleTagTransform.js");
4795
4794
  var styleTagTransform_default = /*#__PURE__*/ __webpack_require__.n(styleTagTransform);
4796
- var styles_module = __webpack_require__("../../../node_modules/.pnpm/@rsbuild+core@1.3.18/node_modules/@rsbuild/core/compiled/css-loader/index.js??ruleSet[1].rules[11].use[1]!builtin:lightningcss-loader??ruleSet[1].rules[11].use[2]!../../../node_modules/.pnpm/@rsbuild+plugin-less@1.5.0_@rsbuild+core@1.6.9/node_modules/@rsbuild/plugin-less/compiled/less-loader/index.js??ruleSet[1].rules[11].use[3]!./src/components/Background/styles.module.less");
4795
+ var styles_module = __webpack_require__("../../../node_modules/.pnpm/@rsbuild+core@1.3.18/node_modules/@rsbuild/core/compiled/css-loader/index.js??ruleSet[1].rules[11].use[1]!builtin:lightningcss-loader??ruleSet[1].rules[11].use[2]!../../../node_modules/.pnpm/@rsbuild+plugin-less@1.5.0_@rsbuild+core@1.6.12/node_modules/@rsbuild/plugin-less/compiled/less-loader/index.js??ruleSet[1].rules[11].use[3]!./src/components/Background/styles.module.less");
4797
4796
  var styles_module_options = {};
4798
4797
  styles_module_options.styleTagTransform = styleTagTransform_default();
4799
4798
  styles_module_options.setAttributes = setAttributesWithoutAttributes_default();
@@ -4842,7 +4841,7 @@ const usePublish = ({ publish, subscribe = ()=>{} })=>{
4842
4841
  ]);
4843
4842
  };
4844
4843
  const hooks_usePublish = usePublish;
4845
- var Container_styles_module = __webpack_require__("../../../node_modules/.pnpm/@rsbuild+core@1.3.18/node_modules/@rsbuild/core/compiled/css-loader/index.js??ruleSet[1].rules[11].use[1]!builtin:lightningcss-loader??ruleSet[1].rules[11].use[2]!../../../node_modules/.pnpm/@rsbuild+plugin-less@1.5.0_@rsbuild+core@1.6.9/node_modules/@rsbuild/plugin-less/compiled/less-loader/index.js??ruleSet[1].rules[11].use[3]!./src/components/Container/styles.module.less");
4844
+ var Container_styles_module = __webpack_require__("../../../node_modules/.pnpm/@rsbuild+core@1.3.18/node_modules/@rsbuild/core/compiled/css-loader/index.js??ruleSet[1].rules[11].use[1]!builtin:lightningcss-loader??ruleSet[1].rules[11].use[2]!../../../node_modules/.pnpm/@rsbuild+plugin-less@1.5.0_@rsbuild+core@1.6.12/node_modules/@rsbuild/plugin-less/compiled/less-loader/index.js??ruleSet[1].rules[11].use[3]!./src/components/Container/styles.module.less");
4846
4845
  var Container_styles_module_options = {};
4847
4846
  Container_styles_module_options.styleTagTransform = styleTagTransform_default();
4848
4847
  Container_styles_module_options.setAttributes = setAttributesWithoutAttributes_default();
@@ -4911,7 +4910,7 @@ const Container = (props)=>{
4911
4910
  });
4912
4911
  };
4913
4912
  const components_Container = Container;
4914
- var Square_styles_module = __webpack_require__("../../../node_modules/.pnpm/@rsbuild+core@1.3.18/node_modules/@rsbuild/core/compiled/css-loader/index.js??ruleSet[1].rules[11].use[1]!builtin:lightningcss-loader??ruleSet[1].rules[11].use[2]!../../../node_modules/.pnpm/@rsbuild+plugin-less@1.5.0_@rsbuild+core@1.6.9/node_modules/@rsbuild/plugin-less/compiled/less-loader/index.js??ruleSet[1].rules[11].use[3]!./src/components/Square/styles.module.less");
4913
+ var Square_styles_module = __webpack_require__("../../../node_modules/.pnpm/@rsbuild+core@1.3.18/node_modules/@rsbuild/core/compiled/css-loader/index.js??ruleSet[1].rules[11].use[1]!builtin:lightningcss-loader??ruleSet[1].rules[11].use[2]!../../../node_modules/.pnpm/@rsbuild+plugin-less@1.5.0_@rsbuild+core@1.6.12/node_modules/@rsbuild/plugin-less/compiled/less-loader/index.js??ruleSet[1].rules[11].use[3]!./src/components/Square/styles.module.less");
4915
4914
  var Square_styles_module_options = {};
4916
4915
  Square_styles_module_options.styleTagTransform = styleTagTransform_default();
4917
4916
  Square_styles_module_options.setAttributes = setAttributesWithoutAttributes_default();
@@ -4954,7 +4953,7 @@ const Square = ({ children })=>{
4954
4953
  });
4955
4954
  };
4956
4955
  const components_Square = Square;
4957
- var useChart_styles_module = __webpack_require__("../../../node_modules/.pnpm/@rsbuild+core@1.3.18/node_modules/@rsbuild/core/compiled/css-loader/index.js??ruleSet[1].rules[11].use[1]!builtin:lightningcss-loader??ruleSet[1].rules[11].use[2]!../../../node_modules/.pnpm/@rsbuild+plugin-less@1.5.0_@rsbuild+core@1.6.9/node_modules/@rsbuild/plugin-less/compiled/less-loader/index.js??ruleSet[1].rules[11].use[3]!./src/hooks/useChart/styles.module.less");
4956
+ var useChart_styles_module = __webpack_require__("../../../node_modules/.pnpm/@rsbuild+core@1.3.18/node_modules/@rsbuild/core/compiled/css-loader/index.js??ruleSet[1].rules[11].use[1]!builtin:lightningcss-loader??ruleSet[1].rules[11].use[2]!../../../node_modules/.pnpm/@rsbuild+plugin-less@1.5.0_@rsbuild+core@1.6.12/node_modules/@rsbuild/plugin-less/compiled/less-loader/index.js??ruleSet[1].rules[11].use[3]!./src/hooks/useChart/styles.module.less");
4958
4957
  var useChart_styles_module_options = {};
4959
4958
  useChart_styles_module_options.styleTagTransform = styleTagTransform_default();
4960
4959
  useChart_styles_module_options.setAttributes = setAttributesWithoutAttributes_default();
@@ -5330,357 +5329,83 @@ function getCoordinates(radius, padding, angle) {
5330
5329
  y
5331
5330
  ];
5332
5331
  }
5333
- var Mask_styles_module = __webpack_require__("../../../node_modules/.pnpm/@rsbuild+core@1.3.18/node_modules/@rsbuild/core/compiled/css-loader/index.js??ruleSet[1].rules[11].use[1]!builtin:lightningcss-loader??ruleSet[1].rules[11].use[2]!../../../node_modules/.pnpm/@rsbuild+plugin-less@1.5.0_@rsbuild+core@1.6.9/node_modules/@rsbuild/plugin-less/compiled/less-loader/index.js??ruleSet[1].rules[11].use[3]!./src/components/Mask/styles.module.less");
5334
- var Mask_styles_module_options = {};
5335
- Mask_styles_module_options.styleTagTransform = styleTagTransform_default();
5336
- Mask_styles_module_options.setAttributes = setAttributesWithoutAttributes_default();
5337
- Mask_styles_module_options.insert = insertBySelector_default().bind(null, "head");
5338
- Mask_styles_module_options.domAPI = styleDomAPI_default();
5339
- Mask_styles_module_options.insertStyleElement = insertStyleElement_default();
5340
- injectStylesIntoStyleTag_default()(Mask_styles_module.Z, Mask_styles_module_options);
5341
- const components_Mask_styles_module = Mask_styles_module.Z && Mask_styles_module.Z.locals ? Mask_styles_module.Z.locals : void 0;
5342
- const Mask_Mask = /*#__PURE__*/ (0, __WEBPACK_EXTERNAL_MODULE_react__.forwardRef)(({ children, className, style }, ref)=>/*#__PURE__*/ (0, __WEBPACK_EXTERNAL_MODULE_react_jsx_runtime_225474f2__.jsxs)("div", {
5343
- className: `${components_Mask_styles_module.Mask} ${className}`,
5344
- style: style,
5345
- ref: ref,
5346
- children: [
5347
- /*#__PURE__*/ (0, __WEBPACK_EXTERNAL_MODULE_react_jsx_runtime_225474f2__.jsx)("div", {
5348
- className: components_Mask_styles_module.bg
5349
- }),
5350
- /*#__PURE__*/ (0, __WEBPACK_EXTERNAL_MODULE_react_jsx_runtime_225474f2__.jsx)("div", {
5351
- className: components_Mask_styles_module.content,
5352
- children: children
5353
- })
5354
- ]
5355
- }));
5356
- const Mask = /*#__PURE__*/ __WEBPACK_EXTERNAL_MODULE_react__["default"].memo(Mask_Mask);
5357
- var Tooltip_styles_module = __webpack_require__("../../../node_modules/.pnpm/@rsbuild+core@1.3.18/node_modules/@rsbuild/core/compiled/css-loader/index.js??ruleSet[1].rules[11].use[1]!builtin:lightningcss-loader??ruleSet[1].rules[11].use[2]!../../../node_modules/.pnpm/@rsbuild+plugin-less@1.5.0_@rsbuild+core@1.6.9/node_modules/@rsbuild/plugin-less/compiled/less-loader/index.js??ruleSet[1].rules[11].use[3]!./src/components/Tooltip/styles.module.less");
5358
- var Tooltip_styles_module_options = {};
5359
- Tooltip_styles_module_options.styleTagTransform = styleTagTransform_default();
5360
- Tooltip_styles_module_options.setAttributes = setAttributesWithoutAttributes_default();
5361
- Tooltip_styles_module_options.insert = insertBySelector_default().bind(null, "head");
5362
- Tooltip_styles_module_options.domAPI = styleDomAPI_default();
5363
- Tooltip_styles_module_options.insertStyleElement = insertStyleElement_default();
5364
- injectStylesIntoStyleTag_default()(Tooltip_styles_module.Z, Tooltip_styles_module_options);
5365
- const components_Tooltip_styles_module = Tooltip_styles_module.Z && Tooltip_styles_module.Z.locals ? Tooltip_styles_module.Z.locals : void 0;
5366
- const Tooltip_Tooltip = ({ children, content, delay = 200, duration = 3000, offset = {
5367
- x: 0,
5368
- y: 0
5369
- } })=>{
5370
- const [visible, setVisible] = (0, __WEBPACK_EXTERNAL_MODULE_react__.useState)(false);
5371
- const [position, setPosition] = (0, __WEBPACK_EXTERNAL_MODULE_react__.useState)({
5372
- x: 0,
5373
- y: 0
5374
- });
5375
- const triggerRef = (0, __WEBPACK_EXTERNAL_MODULE_react__.useRef)(null);
5376
- const tooltipRef = (0, __WEBPACK_EXTERNAL_MODULE_react__.useRef)(null);
5377
- const timerRef = (0, __WEBPACK_EXTERNAL_MODULE_react__.useRef)();
5378
- const hideTimerRef = (0, __WEBPACK_EXTERNAL_MODULE_react__.useRef)();
5379
- const updatePosition = (0, __WEBPACK_EXTERNAL_MODULE_react__.useCallback)(()=>{
5380
- if (!triggerRef.current || !tooltipRef.current) return;
5381
- const triggerRect = triggerRef.current.getBoundingClientRect();
5382
- const tooltipRect = tooltipRef.current.getBoundingClientRect();
5383
- const windowWidth = window.innerWidth;
5384
- const windowHeight = window.innerHeight;
5385
- let x = triggerRect.left + (triggerRect.width - tooltipRect.width) / 2 + (offset.x || 0);
5386
- let y = triggerRect.top - tooltipRect.height - 6 + (offset.y || 0);
5387
- let placement = 'top';
5388
- let arrowPosition = '50%';
5389
- const triggerCenter = triggerRect.left + triggerRect.width / 2;
5390
- if (x + tooltipRect.width > windowWidth - 8) {
5391
- x = windowWidth - tooltipRect.width - 8;
5392
- arrowPosition = `${((triggerCenter - x) / tooltipRect.width * 100).toFixed(2)}%`;
5393
- if (Number.parseFloat(arrowPosition) > 90) arrowPosition = '90%';
5394
- }
5395
- if (x < 8) {
5396
- x = 8;
5397
- arrowPosition = `${((triggerCenter - x) / tooltipRect.width * 100).toFixed(2)}%`;
5398
- if (Number.parseFloat(arrowPosition) < 10) arrowPosition = '10%';
5399
- }
5400
- if (y < 8) {
5401
- y = triggerRect.bottom + 6;
5402
- placement = 'bottom';
5403
- }
5404
- if ('bottom' === placement && y + tooltipRect.height > windowHeight - 8) {
5405
- y = triggerRect.top - tooltipRect.height - 6;
5406
- placement = 'top';
5407
- }
5408
- setPosition({
5409
- x,
5410
- y
5332
+ const BLOCK_RENDER_MODE = true;
5333
+ class Fluorescence extends engine_Engine {
5334
+ init(props) {
5335
+ super.init(props);
5336
+ const { colors } = props;
5337
+ this.updateProps({
5338
+ colors,
5339
+ data: []
5411
5340
  });
5412
- tooltipRef.current.dataset.placement = placement;
5413
- tooltipRef.current.style.setProperty('--arrow-position', arrowPosition);
5414
- }, []);
5415
- const resizeObserverRef = (0, __WEBPACK_EXTERNAL_MODULE_react__.useRef)();
5416
- const debounce = (0, __WEBPACK_EXTERNAL_MODULE_react__.useCallback)((fn, wait)=>{
5417
- let timeout;
5418
- return (...args)=>{
5419
- clearTimeout(timeout);
5420
- timeout = setTimeout(()=>fn(...args), wait);
5341
+ this.resize();
5342
+ }
5343
+ updateProps(e) {
5344
+ super.updateProps(e);
5345
+ }
5346
+ clearImageData() {
5347
+ const { ctx, canvas: { height, width } } = this.state;
5348
+ if (height && width) this.updateProps({
5349
+ imageData: ctx.createImageData(width, height)
5350
+ });
5351
+ }
5352
+ clearRect() {
5353
+ super.clearRect();
5354
+ this.clearImageData();
5355
+ }
5356
+ clear() {
5357
+ this.clearRect();
5358
+ this.updateProps({
5359
+ data: []
5360
+ });
5361
+ }
5362
+ dispose() {
5363
+ this.intensityMatrixCache = null;
5364
+ this.gridCentersCache = null;
5365
+ this.weightLookupCache = null;
5366
+ this.colorLookupCache = null;
5367
+ this.colorCache.clear();
5368
+ this.lastRenderParams = null;
5369
+ this.blockPositionsCache = null;
5370
+ this.lastBlockRenderParams = null;
5371
+ }
5372
+ drawBlocks() {
5373
+ const { imageData, data, canvas, ctx, colors = [
5374
+ '#000080',
5375
+ '#0000FF',
5376
+ '#00FFFF',
5377
+ '#00FF00',
5378
+ '#FFFF00',
5379
+ '#FF0000'
5380
+ ], range = [
5381
+ -20,
5382
+ 100
5383
+ ], fluorescenceMaxCount = 1 } = this.state;
5384
+ if (!data || 0 === data.length || !imageData) return;
5385
+ const { width, height } = canvas;
5386
+ const [rangeMin, rangeMax] = range;
5387
+ const rangeSpan = rangeMax - rangeMin;
5388
+ if (rangeSpan <= 0) return;
5389
+ const dataLength = data.length;
5390
+ const currentParams = {
5391
+ dataLength,
5392
+ width,
5393
+ height,
5394
+ rangeMin,
5395
+ rangeMax
5421
5396
  };
5422
- }, []);
5423
- const debouncedUpdatePosition = (0, __WEBPACK_EXTERNAL_MODULE_react__.useCallback)(debounce(()=>{
5424
- if (visible) updatePosition();
5425
- }, 16), [
5426
- visible,
5427
- updatePosition
5428
- ]);
5429
- const handleMouseEnter = (0, __WEBPACK_EXTERNAL_MODULE_react__.useCallback)(()=>{
5430
- if (timerRef.current) clearTimeout(timerRef.current);
5431
- if (hideTimerRef.current) clearTimeout(hideTimerRef.current);
5432
- timerRef.current = setTimeout(()=>{
5433
- if (triggerRef.current) {
5434
- const triggerRect = triggerRef.current.getBoundingClientRect();
5435
- const windowWidth = window.innerWidth;
5436
- const estimatedWidth = 120;
5437
- const estimatedHeight = 50;
5438
- let x = triggerRect.left + (triggerRect.width - estimatedWidth) / 2 + (offset.x || 0);
5439
- let y = triggerRect.top - estimatedHeight - 6 + (offset.y || 0);
5440
- if (x < 8) x = 8;
5441
- if (x + estimatedWidth > windowWidth - 8) x = windowWidth - estimatedWidth - 8;
5442
- if (y < 8) y = triggerRect.bottom + 6;
5443
- setPosition({
5444
- x,
5445
- y
5446
- });
5447
- }
5448
- setVisible(true);
5449
- requestAnimationFrame(()=>{
5450
- updatePosition();
5451
- requestAnimationFrame(updatePosition);
5452
- });
5453
- hideTimerRef.current = setTimeout(()=>setVisible(false), duration);
5454
- }, delay);
5455
- }, [
5456
- delay,
5457
- duration,
5458
- updatePosition,
5459
- offset
5460
- ]);
5461
- const handleMouseLeave = (0, __WEBPACK_EXTERNAL_MODULE_react__.useCallback)(()=>{
5462
- if (timerRef.current) clearTimeout(timerRef.current);
5463
- if (hideTimerRef.current) clearTimeout(hideTimerRef.current);
5464
- setVisible(false);
5465
- }, []);
5466
- (0, __WEBPACK_EXTERNAL_MODULE_react__.useLayoutEffect)(()=>{
5467
- if (visible && tooltipRef.current) {
5468
- if (!resizeObserverRef.current) resizeObserverRef.current = new ResizeObserver(debouncedUpdatePosition);
5469
- resizeObserverRef.current.observe(tooltipRef.current);
5470
- window.addEventListener('scroll', debouncedUpdatePosition);
5471
- window.addEventListener('resize', debouncedUpdatePosition);
5472
- return ()=>{
5473
- if (resizeObserverRef.current) resizeObserverRef.current.disconnect();
5474
- window.removeEventListener('scroll', debouncedUpdatePosition);
5475
- window.removeEventListener('resize', debouncedUpdatePosition);
5476
- };
5477
- }
5478
- }, [
5479
- visible
5480
- ]);
5481
- return /*#__PURE__*/ (0, __WEBPACK_EXTERNAL_MODULE_react_jsx_runtime_225474f2__.jsxs)(__WEBPACK_EXTERNAL_MODULE_react_jsx_runtime_225474f2__.Fragment, {
5482
- children: [
5483
- /*#__PURE__*/ __WEBPACK_EXTERNAL_MODULE_react__["default"].cloneElement(__WEBPACK_EXTERNAL_MODULE_react__["default"].Children.only(children), {
5484
- ref: triggerRef,
5485
- onMouseEnter: handleMouseEnter,
5486
- onMouseLeave: handleMouseLeave
5487
- }),
5488
- visible && /*#__PURE__*/ (0, __WEBPACK_EXTERNAL_MODULE_react_dom_7136dc57__.createPortal)(/*#__PURE__*/ (0, __WEBPACK_EXTERNAL_MODULE_react_jsx_runtime_225474f2__.jsx)(Mask, {
5489
- ref: tooltipRef,
5490
- className: components_Tooltip_styles_module.tooltip,
5491
- style: {
5492
- left: position.x,
5493
- top: position.y,
5494
- opacity: tooltipRef.current ? 1 : 0,
5495
- transition: 'opacity 0.1s ease-in-out'
5496
- },
5497
- children: content
5498
- }), document.body)
5499
- ]
5500
- });
5501
- };
5502
- const components_Tooltip = Tooltip_Tooltip;
5503
- var ToolsBar_styles_module = __webpack_require__("../../../node_modules/.pnpm/@rsbuild+core@1.3.18/node_modules/@rsbuild/core/compiled/css-loader/index.js??ruleSet[1].rules[11].use[1]!builtin:lightningcss-loader??ruleSet[1].rules[11].use[2]!../../../node_modules/.pnpm/@rsbuild+plugin-less@1.5.0_@rsbuild+core@1.6.9/node_modules/@rsbuild/plugin-less/compiled/less-loader/index.js??ruleSet[1].rules[11].use[3]!./src/components/ToolsBar/styles.module.less");
5504
- var ToolsBar_styles_module_options = {};
5505
- ToolsBar_styles_module_options.styleTagTransform = styleTagTransform_default();
5506
- ToolsBar_styles_module_options.setAttributes = setAttributesWithoutAttributes_default();
5507
- ToolsBar_styles_module_options.insert = insertBySelector_default().bind(null, "head");
5508
- ToolsBar_styles_module_options.domAPI = styleDomAPI_default();
5509
- ToolsBar_styles_module_options.insertStyleElement = insertStyleElement_default();
5510
- injectStylesIntoStyleTag_default()(ToolsBar_styles_module.Z, ToolsBar_styles_module_options);
5511
- const components_ToolsBar_styles_module = ToolsBar_styles_module.Z && ToolsBar_styles_module.Z.locals ? ToolsBar_styles_module.Z.locals : void 0;
5512
- const IconBox_IconBox = (props)=>/*#__PURE__*/ (0, __WEBPACK_EXTERNAL_MODULE_react_jsx_runtime_225474f2__.jsx)(components_Tooltip, {
5513
- content: props.title,
5514
- children: /*#__PURE__*/ (0, __WEBPACK_EXTERNAL_MODULE_react_jsx_runtime_225474f2__.jsx)("div", {
5515
- className: `${components_ToolsBar_styles_module.IconBox} ${props.className}`,
5516
- ...props,
5517
- title: ""
5518
- })
5519
- });
5520
- const ToolsBar_IconBox = IconBox_IconBox;
5521
- var GradientRibbon_styles_module = __webpack_require__("../../../../node_modules/.pnpm/@rsbuild+core@1.3.18/node_modules/@rsbuild/core/compiled/css-loader/index.js??ruleSet[1].rules[11].use[1]!builtin:lightningcss-loader??ruleSet[1].rules[11].use[2]!../../../../node_modules/.pnpm/@rsbuild+plugin-less@1.5.0_@rsbuild+core@1.6.9/node_modules/@rsbuild/plugin-less/compiled/less-loader/index.js??ruleSet[1].rules[11].use[3]!./src/components/ToolsBar/GradientRibbon/styles.module.less");
5522
- var GradientRibbon_styles_module_options = {};
5523
- GradientRibbon_styles_module_options.styleTagTransform = styleTagTransform_default();
5524
- GradientRibbon_styles_module_options.setAttributes = setAttributesWithoutAttributes_default();
5525
- GradientRibbon_styles_module_options.insert = insertBySelector_default().bind(null, "head");
5526
- GradientRibbon_styles_module_options.domAPI = styleDomAPI_default();
5527
- GradientRibbon_styles_module_options.insertStyleElement = insertStyleElement_default();
5528
- injectStylesIntoStyleTag_default()(GradientRibbon_styles_module.Z, GradientRibbon_styles_module_options);
5529
- const ToolsBar_GradientRibbon_styles_module = GradientRibbon_styles_module.Z && GradientRibbon_styles_module.Z.locals ? GradientRibbon_styles_module.Z.locals : void 0;
5530
- const handleColor = (globalID, name, func)=>subscription_createSubscriptionManager(`handleColor-${globalID}`, name, func);
5531
- const GradientRibbon_config = getConfig();
5532
- const gradientConfig = GradientRibbon_config.gradient;
5533
- const initialIndex = gradientConfig.index;
5534
- const gradientItems = [
5535
- ...gradientConfig.item
5536
- ];
5537
- const GradientRibbon = ()=>{
5538
- const { state: { axisY: { range }, globalID } } = useStore_useStore();
5539
- const [minValue, maxValue] = range;
5540
- const [currentIndex, setCurrentIndex] = (0, __WEBPACK_EXTERNAL_MODULE_react__.useState)(initialIndex);
5541
- const currentColors = (0, __WEBPACK_EXTERNAL_MODULE_react__.useMemo)(()=>[
5542
- ...gradientItems[currentIndex]
5543
- ].reverse().map(hexToRGBA), [
5544
- currentIndex
5545
- ]);
5546
- const handleGradientChange = (0, __WEBPACK_EXTERNAL_MODULE_react__.useCallback)(()=>{
5547
- const nextIndex = (currentIndex + 1) % gradientItems.length;
5548
- setCurrentIndex(nextIndex);
5549
- const newColors = [
5550
- ...gradientItems[nextIndex]
5551
- ].reverse().map(hexToRGBA);
5552
- if (globalID) handleColor(globalID)(newColors);
5553
- }, [
5554
- currentIndex,
5555
- globalID
5556
- ]);
5557
- (0, __WEBPACK_EXTERNAL_MODULE_react__.useEffect)(()=>{
5558
- if (!globalID) return;
5559
- return handleColor(globalID, 'setGradientColors', (colors)=>{
5560
- const colorIndex = gradientItems.findIndex((item)=>JSON.stringify([
5561
- ...item
5562
- ].reverse().map(hexToRGBA)) === JSON.stringify(colors));
5563
- if (-1 !== colorIndex) setCurrentIndex(colorIndex);
5564
- });
5565
- }, [
5566
- globalID
5567
- ]);
5568
- const renderGradient = (0, __WEBPACK_EXTERNAL_MODULE_react__.useMemo)(()=>currentColors.map((color, idx, arr)=>{
5569
- if (idx === arr.length - 1) return null;
5570
- const nextColor = arr[idx + 1];
5571
- return /*#__PURE__*/ (0, __WEBPACK_EXTERNAL_MODULE_react_jsx_runtime_225474f2__.jsx)("span", {
5572
- style: {
5573
- background: `linear-gradient(to right, rgba(${color.r},${color.g},${color.b},${color.a}), rgba(${nextColor.r},${nextColor.g},${nextColor.b},${nextColor.a}))`
5574
- }
5575
- }, `gradient-${idx}`);
5576
- }), [
5577
- currentColors
5578
- ]);
5579
- return /*#__PURE__*/ (0, __WEBPACK_EXTERNAL_MODULE_react_jsx_runtime_225474f2__.jsx)(ToolsBar_IconBox, {
5580
- onClick: handleGradientChange,
5581
- title: "\u70B9\u51FB\u5207\u6362\u7011\u5E03\u56FE\u8272\u9636",
5582
- children: /*#__PURE__*/ (0, __WEBPACK_EXTERNAL_MODULE_react_jsx_runtime_225474f2__.jsxs)("div", {
5583
- className: ToolsBar_GradientRibbon_styles_module.GradientRibbon,
5584
- children: [
5585
- /*#__PURE__*/ (0, __WEBPACK_EXTERNAL_MODULE_react_jsx_runtime_225474f2__.jsxs)("div", {
5586
- className: ToolsBar_GradientRibbon_styles_module.scaleplate,
5587
- children: [
5588
- /*#__PURE__*/ (0, __WEBPACK_EXTERNAL_MODULE_react_jsx_runtime_225474f2__.jsx)("div", {
5589
- children: Math.round(minValue)
5590
- }),
5591
- /*#__PURE__*/ (0, __WEBPACK_EXTERNAL_MODULE_react_jsx_runtime_225474f2__.jsx)("div", {
5592
- children: Math.round(maxValue)
5593
- })
5594
- ]
5595
- }),
5596
- renderGradient
5597
- ]
5598
- })
5599
- });
5600
- };
5601
- const ToolsBar_GradientRibbon = /*#__PURE__*/ __WEBPACK_EXTERNAL_MODULE_react__["default"].memo(GradientRibbon);
5602
- const BLOCK_RENDER_MODE = true;
5603
- class Fluorescence extends engine_Engine {
5604
- init(props) {
5605
- super.init(props);
5606
- const { colors } = props;
5607
- this.updateProps({
5608
- colors,
5609
- data: []
5610
- });
5611
- this.resize();
5612
- handleColor(props.globalID, 'Fluorescence-Engine', (colors)=>{
5613
- this.updateProps({
5614
- colors
5615
- });
5616
- });
5617
- }
5618
- updateProps(e) {
5619
- super.updateProps(e);
5620
- }
5621
- clearImageData() {
5622
- const { ctx, canvas: { height, width } } = this.state;
5623
- if (height && width) this.updateProps({
5624
- imageData: ctx.createImageData(width, height)
5625
- });
5626
- }
5627
- clearRect() {
5628
- super.clearRect();
5629
- this.clearImageData();
5630
- }
5631
- clear() {
5632
- this.clearRect();
5633
- this.updateProps({
5634
- data: []
5635
- });
5636
- }
5637
- dispose() {
5638
- this.intensityMatrixCache = null;
5639
- this.gridCentersCache = null;
5640
- this.weightLookupCache = null;
5641
- this.colorLookupCache = null;
5642
- this.colorCache.clear();
5643
- this.lastRenderParams = null;
5644
- this.blockPositionsCache = null;
5645
- this.lastBlockRenderParams = null;
5646
- }
5647
- drawBlocks() {
5648
- const { imageData, data, canvas, ctx, colors = [
5649
- '#000080',
5650
- '#0000FF',
5651
- '#00FFFF',
5652
- '#00FF00',
5653
- '#FFFF00',
5654
- '#FF0000'
5655
- ], range = [
5656
- -20,
5657
- 100
5658
- ], fluorescenceMaxCount = 1 } = this.state;
5659
- if (!data || 0 === data.length || !imageData) return;
5660
- const { width, height } = canvas;
5661
- const [rangeMin, rangeMax] = range;
5662
- const rangeSpan = rangeMax - rangeMin;
5663
- if (rangeSpan <= 0) return;
5664
- const dataLength = data.length;
5665
- const currentParams = {
5666
- dataLength,
5667
- width,
5668
- height,
5669
- rangeMin,
5670
- rangeMax
5671
- };
5672
- const paramsChanged = !this.lastBlockRenderParams || Object.keys(currentParams).some((key)=>this.lastBlockRenderParams?.[key] !== currentParams[key]);
5673
- if (paramsChanged || !this.blockPositionsCache || this.blockPositionsCache.length !== dataLength) {
5674
- this.blockPositionsCache = new Array(dataLength);
5675
- const blockWidth = Math.max(1, Math.floor(width / dataLength));
5676
- for(let i = 0; i < dataLength; i++){
5677
- const startX = Math.floor(i * width / dataLength);
5678
- const endX = Math.min(width - 1, startX + blockWidth - 1);
5679
- this.blockPositionsCache[i] = {
5680
- startX,
5681
- endX,
5682
- width: endX - startX + 1
5683
- };
5397
+ const paramsChanged = !this.lastBlockRenderParams || Object.keys(currentParams).some((key)=>this.lastBlockRenderParams?.[key] !== currentParams[key]);
5398
+ if (paramsChanged || !this.blockPositionsCache || this.blockPositionsCache.length !== dataLength) {
5399
+ this.blockPositionsCache = new Array(dataLength);
5400
+ const blockWidth = Math.max(1, Math.floor(width / dataLength));
5401
+ for(let i = 0; i < dataLength; i++){
5402
+ const startX = Math.floor(i * width / dataLength);
5403
+ const endX = Math.min(width - 1, startX + blockWidth - 1);
5404
+ this.blockPositionsCache[i] = {
5405
+ startX,
5406
+ endX,
5407
+ width: endX - startX + 1
5408
+ };
5684
5409
  }
5685
5410
  }
5686
5411
  this.lastBlockRenderParams = currentParams;
@@ -5936,6 +5661,7 @@ class Fluorescence extends engine_Engine {
5936
5661
  ctx.putImageData(imageData, 0, 0);
5937
5662
  }
5938
5663
  }
5664
+ const utils_isNumberAlias = (n)=>Number.isFinite(Number(n));
5939
5665
  class Gauge extends engine_Engine {
5940
5666
  init(props) {
5941
5667
  super.init(props);
@@ -5983,7 +5709,7 @@ class Gauge extends engine_Engine {
5983
5709
  }
5984
5710
  drawLimit() {
5985
5711
  const { data: { limit }, range: [min, max], canvas, ctx, baseWidth, padding, lineWidth, fillStylePrimary } = this.state;
5986
- if (!(0, utils.Ri)(limit)) return;
5712
+ if (!utils_isNumberAlias(limit)) return;
5987
5713
  const width = 3 * baseWidth;
5988
5714
  const height = canvas.height - 2 * padding;
5989
5715
  const x = (canvas.width - width) / 2;
@@ -6045,7 +5771,7 @@ class Gauge extends engine_Engine {
6045
5771
  this.state.BGCanvas = BGCanvas;
6046
5772
  }
6047
5773
  }
6048
- class ColorInterpolator_ColorInterpolator {
5774
+ class ColorInterpolator {
6049
5775
  colorsPresetList = [];
6050
5776
  range = [
6051
5777
  0,
@@ -6111,21 +5837,15 @@ class Heatmap extends engine_Engine {
6111
5837
  data: []
6112
5838
  });
6113
5839
  this.resize();
6114
- handleColor(props.globalID, 'Heatmap-Engine', (colors)=>{
6115
- this.updateProps({
6116
- colors,
6117
- range: this.state.range
6118
- });
6119
- });
6120
5840
  }
6121
5841
  updateProps(e) {
6122
5842
  super.updateProps(e);
6123
5843
  const { range = this.state.range, colors = this.state.colors } = e;
6124
5844
  if (range && colors) {
6125
5845
  const [rangeMin, rangeMax] = range;
6126
- if ((0, utils.Ri)(rangeMin) && (0, utils.Ri)(rangeMax) && rangeMin < rangeMax) if (this.state.CI) this.state.CI.setColors(colors, rangeMin, rangeMax, 0.1);
5846
+ if (utils_isNumberAlias(rangeMin) && utils_isNumberAlias(rangeMax) && rangeMin < rangeMax) if (this.state.CI) this.state.CI.setColors(colors, rangeMin, rangeMax, 0.1);
6127
5847
  else this.updateProps({
6128
- CI: new ColorInterpolator_ColorInterpolator(colors, rangeMin, rangeMax, 0.1)
5848
+ CI: new ColorInterpolator(colors, rangeMin, rangeMax, 0.1)
6129
5849
  });
6130
5850
  }
6131
5851
  }
@@ -6159,9 +5879,7 @@ class Heatmap extends engine_Engine {
6159
5879
  render(data) {
6160
5880
  if (data?.length >= 0) {
6161
5881
  this.state.data = data;
6162
- (0, utils.P2)(()=>{
6163
- this.draw();
6164
- })();
5882
+ this.draw();
6165
5883
  }
6166
5884
  }
6167
5885
  draw() {
@@ -6187,9 +5905,7 @@ class IQ extends engine_Engine {
6187
5905
  render(data) {
6188
5906
  if (data.IData && data.QData) {
6189
5907
  this.state.data = data;
6190
- (0, utils.P2)(()=>{
6191
- this.draw();
6192
- })();
5908
+ this.draw();
6193
5909
  }
6194
5910
  }
6195
5911
  draw() {
@@ -6254,9 +5970,7 @@ class iqEye_IQ extends engine_Engine {
6254
5970
  render(data) {
6255
5971
  if (data.IData && data.QData) {
6256
5972
  this.state.data = data;
6257
- (0, utils.P2)(()=>{
6258
- this.draw();
6259
- })();
5973
+ this.draw();
6260
5974
  }
6261
5975
  }
6262
5976
  draw() {
@@ -6367,19 +6081,19 @@ class iqEye_IQ extends engine_Engine {
6367
6081
  }
6368
6082
  }
6369
6083
  }
6370
- var type_OrientationType = /*#__PURE__*/ function(OrientationType1) {
6371
- OrientationType1["Horizontal"] = "horizontal";
6372
- OrientationType1["Vertical"] = "vertical";
6373
- return OrientationType1;
6084
+ var type_OrientationType = /*#__PURE__*/ function(OrientationType) {
6085
+ OrientationType["Horizontal"] = "horizontal";
6086
+ OrientationType["Vertical"] = "vertical";
6087
+ return OrientationType;
6374
6088
  }({});
6375
- var type_GraphicType = /*#__PURE__*/ function(GraphicType1) {
6376
- GraphicType1["Circle"] = "circle";
6377
- GraphicType1["Rect"] = "rect";
6378
- GraphicType1["Line"] = "line";
6379
- GraphicType1["Stepline"] = "stepline";
6380
- GraphicType1["Bar"] = "bar";
6381
- GraphicType1["Area"] = "area";
6382
- return GraphicType1;
6089
+ var type_GraphicType = /*#__PURE__*/ function(GraphicType) {
6090
+ GraphicType["Circle"] = "circle";
6091
+ GraphicType["Rect"] = "rect";
6092
+ GraphicType["Line"] = "line";
6093
+ GraphicType["Stepline"] = "stepline";
6094
+ GraphicType["Bar"] = "bar";
6095
+ GraphicType["Area"] = "area";
6096
+ return GraphicType;
6383
6097
  }({});
6384
6098
  const ENABLE_AREA_GRADIENT = false;
6385
6099
  class Series extends engine_Engine {
@@ -6399,7 +6113,7 @@ class Series extends engine_Engine {
6399
6113
  super.updateProps(e);
6400
6114
  const { colors = this.state.colors } = e;
6401
6115
  if (this.state.barValue2Color && !this.state.CI) this.updateProps({
6402
- CI: new ColorInterpolator_ColorInterpolator(colors, 0, 100, 0.1)
6116
+ CI: new ColorInterpolator(colors, 0, 100, 0.1)
6403
6117
  });
6404
6118
  }
6405
6119
  clear() {
@@ -6449,9 +6163,7 @@ class Series extends engine_Engine {
6449
6163
  }
6450
6164
  render(e) {
6451
6165
  e && this.setSeries(e);
6452
- (0, utils.P2)(()=>{
6453
- this.draw();
6454
- })();
6166
+ this.draw();
6455
6167
  }
6456
6168
  draw() {
6457
6169
  const { series, ctx, disabledClearRect } = this.state;
@@ -6647,504 +6359,45 @@ class Series extends engine_Engine {
6647
6359
  ctx.restore();
6648
6360
  }
6649
6361
  }
6650
- class webglEngine_WebGLEngine {
6651
- state = {
6652
- id: '',
6653
- container: void 0,
6654
- canvas: null,
6655
- ctx: null,
6656
- range: [
6657
- -20,
6658
- 100
6659
- ]
6660
- };
6362
+ class IQStream {
6363
+ state;
6661
6364
  constructor(props){
6662
- this.updateProps(props);
6663
- this.init(props);
6664
- }
6665
- updateProps(e) {
6666
6365
  this.state = {
6667
- ...this.state,
6668
- ...e
6366
+ chart: null,
6367
+ ...props
6669
6368
  };
6369
+ this.init();
6670
6370
  }
6671
- init(_p) {
6371
+ init() {
6672
6372
  const { id } = this.state;
6673
- const container = document.getElementById(id);
6674
- const canvas = document.createElement('canvas');
6675
- const gl = canvas.getContext('webgl') || canvas.getContext('experimental-webgl');
6676
- if (!gl) return;
6677
- canvas.style.transform = 'scaleY(-1)';
6678
- this.updateProps({
6679
- container,
6680
- canvas,
6681
- gl
6373
+ if (!id) return;
6374
+ this.state.chart = new Dial({
6375
+ id,
6376
+ ...(0, utils.vY)()
6682
6377
  });
6683
- container?.appendChild(canvas);
6684
- this.initWebGL();
6685
- this.resize(false);
6686
- }
6687
- initWebGL() {
6688
- const { gl } = this.state;
6689
- if (!gl) return;
6690
- const program = this.createShaderProgram();
6691
- const positionBuffer = gl.createBuffer();
6692
- const colorBuffer = gl.createBuffer();
6693
- this.updateProps({
6694
- program,
6695
- buffers: {
6696
- position: positionBuffer,
6697
- color: colorBuffer
6698
- }
6378
+ setTimeout(()=>{
6379
+ this.state.chart.resize();
6380
+ });
6381
+ __WEBPACK_EXTERNAL_MODULE__rfkit_theme_a11ca9cb__.themeObserver.subscribe(()=>{
6382
+ this.state.chart.updateProps({
6383
+ ...(0, utils.vY)()
6384
+ });
6385
+ this.state.chart.resize();
6386
+ this.state.chart.draw();
6699
6387
  });
6700
- gl.viewport(0, 0, gl.canvas.width, gl.canvas.height);
6701
- gl.enable(gl.BLEND);
6702
- gl.blendFunc(gl.SRC_ALPHA, gl.ONE_MINUS_SRC_ALPHA);
6703
6388
  }
6704
- createShaderProgram() {
6705
- const { gl } = this.state;
6706
- if (!gl) return null;
6707
- const vertexShaderSource = `
6708
- attribute vec2 a_position;
6709
- attribute vec4 a_color;
6710
- uniform vec2 u_resolution;
6711
- varying vec4 v_color;
6712
-
6713
- void main() {
6714
- // \u{5C06}\u{50CF}\u{7D20}\u{5750}\u{6807}\u{8F6C}\u{6362}\u{4E3A}\u{88C1}\u{526A}\u{7A7A}\u{95F4}\u{5750}\u{6807}
6715
- vec2 zeroToOne = a_position / u_resolution;
6716
- vec2 zeroToTwo = zeroToOne * 2.0;
6717
- vec2 clipSpace = zeroToTwo - 1.0;
6718
-
6719
- gl_Position = vec4(clipSpace * vec2(1, -1), 0, 1);
6720
- v_color = a_color;
6721
- }
6722
- `;
6723
- const fragmentShaderSource = `
6724
- precision mediump float;
6725
- varying vec4 v_color;
6726
-
6727
- void main() {
6728
- gl_FragColor = v_color;
6729
- }
6730
- `;
6731
- const vertexShader = this.createShader(gl, gl.VERTEX_SHADER, vertexShaderSource);
6732
- const fragmentShader = this.createShader(gl, gl.FRAGMENT_SHADER, fragmentShaderSource);
6733
- if (!vertexShader || !fragmentShader) return null;
6734
- const program = gl.createProgram();
6735
- if (!program) return null;
6736
- gl.attachShader(program, vertexShader);
6737
- gl.attachShader(program, fragmentShader);
6738
- gl.linkProgram(program);
6739
- if (!gl.getProgramParameter(program, gl.LINK_STATUS)) return null;
6740
- return program;
6389
+ updateSeries(d) {
6390
+ this.state.chart.render(d);
6741
6391
  }
6742
- createShader(gl, type, source) {
6743
- const shader = gl.createShader(type);
6744
- if (!shader) return null;
6745
- gl.shaderSource(shader, source);
6746
- gl.compileShader(shader);
6747
- if (!gl.getShaderParameter(shader, gl.COMPILE_STATUS)) {
6748
- gl.deleteShader(shader);
6749
- return null;
6750
- }
6751
- return shader;
6392
+ reset() {
6393
+ this.resize();
6394
+ this.clear();
6752
6395
  }
6753
- resize(draw = true) {
6754
- const { canvas, container, gl } = this.state;
6755
- const { clientWidth, clientHeight } = container;
6756
- if (!clientWidth || !clientHeight) return;
6757
- canvas.width = clientWidth;
6758
- canvas.height = clientHeight;
6759
- if (gl) gl.viewport(0, 0, clientWidth, clientHeight);
6760
- if (draw) setTimeout(()=>{
6761
- this.draw();
6762
- });
6396
+ resize() {
6397
+ this.state.chart.resize();
6763
6398
  }
6764
6399
  clear() {
6765
- const { gl } = this.state;
6766
- if (!gl) return;
6767
- gl.clearColor(0.0, 0.0, 0.0, 0.0);
6768
- gl.clear(gl.COLOR_BUFFER_BIT);
6769
- }
6770
- draw() {}
6771
- drawLines(vertices, colors) {
6772
- const { gl, program, buffers } = this.state;
6773
- if (!gl || !program || !buffers) return;
6774
- gl.useProgram(program);
6775
- const resolutionLocation = gl.getUniformLocation(program, 'u_resolution');
6776
- gl.uniform2f(resolutionLocation, gl.canvas.width, gl.canvas.height);
6777
- const positionLocation = gl.getAttribLocation(program, 'a_position');
6778
- gl.bindBuffer(gl.ARRAY_BUFFER, buffers.position);
6779
- gl.bufferData(gl.ARRAY_BUFFER, vertices, gl.STATIC_DRAW);
6780
- gl.enableVertexAttribArray(positionLocation);
6781
- gl.vertexAttribPointer(positionLocation, 2, gl.FLOAT, false, 0, 0);
6782
- const colorLocation = gl.getAttribLocation(program, 'a_color');
6783
- gl.bindBuffer(gl.ARRAY_BUFFER, buffers.color);
6784
- gl.bufferData(gl.ARRAY_BUFFER, colors, gl.STATIC_DRAW);
6785
- gl.enableVertexAttribArray(colorLocation);
6786
- gl.vertexAttribPointer(colorLocation, 4, gl.FLOAT, false, 0, 0);
6787
- const vertexCount = vertices.length / 2;
6788
- gl.drawArrays(gl.TRIANGLES, 0, vertexCount);
6789
- }
6790
- drawTriangles(vertices, colors) {
6791
- const { gl, program, buffers } = this.state;
6792
- if (!gl || !program || !buffers) return;
6793
- gl.useProgram(program);
6794
- const resolutionLocation = gl.getUniformLocation(program, 'u_resolution');
6795
- gl.uniform2f(resolutionLocation, gl.canvas.width, gl.canvas.height);
6796
- const positionLocation = gl.getAttribLocation(program, 'a_position');
6797
- gl.bindBuffer(gl.ARRAY_BUFFER, buffers.position);
6798
- gl.bufferData(gl.ARRAY_BUFFER, vertices, gl.STATIC_DRAW);
6799
- gl.enableVertexAttribArray(positionLocation);
6800
- gl.vertexAttribPointer(positionLocation, 2, gl.FLOAT, false, 0, 0);
6801
- const colorLocation = gl.getAttribLocation(program, 'a_color');
6802
- gl.bindBuffer(gl.ARRAY_BUFFER, buffers.color);
6803
- gl.bufferData(gl.ARRAY_BUFFER, colors, gl.STATIC_DRAW);
6804
- gl.enableVertexAttribArray(colorLocation);
6805
- gl.vertexAttribPointer(colorLocation, 4, gl.FLOAT, false, 0, 0);
6806
- const vertexCount = vertices.length / 2;
6807
- gl.drawArrays(gl.TRIANGLES, 0, vertexCount);
6808
- }
6809
- setupBuffers(vertices, colors) {
6810
- const { gl, program, buffers } = this.state;
6811
- if (!gl || !program || !buffers) return;
6812
- gl.useProgram(program);
6813
- const resolutionLocation = gl.getUniformLocation(program, 'u_resolution');
6814
- gl.uniform2f(resolutionLocation, gl.canvas.width, gl.canvas.height);
6815
- const positionLocation = gl.getAttribLocation(program, 'a_position');
6816
- gl.bindBuffer(gl.ARRAY_BUFFER, buffers.position);
6817
- gl.bufferData(gl.ARRAY_BUFFER, vertices, gl.STATIC_DRAW);
6818
- gl.enableVertexAttribArray(positionLocation);
6819
- gl.vertexAttribPointer(positionLocation, 2, gl.FLOAT, false, 0, 0);
6820
- const colorLocation = gl.getAttribLocation(program, 'a_color');
6821
- gl.bindBuffer(gl.ARRAY_BUFFER, buffers.color);
6822
- gl.bufferData(gl.ARRAY_BUFFER, colors, gl.STATIC_DRAW);
6823
- gl.enableVertexAttribArray(colorLocation);
6824
- gl.vertexAttribPointer(colorLocation, 4, gl.FLOAT, false, 0, 0);
6825
- }
6826
- }
6827
- class WebGLSeries extends null {
6828
- vertexData = new Float32Array(0);
6829
- colorData = new Float32Array(0);
6830
- throttledDraw = throttle(()=>{
6831
- this.draw();
6832
- });
6833
- init(props) {
6834
- super.init(props);
6835
- const { series } = props;
6836
- this.updateProps({
6837
- interval: 0,
6838
- series: {}
6839
- });
6840
- this.setRange(this.state.range);
6841
- series?.forEach((e)=>{
6842
- this.setSeries(e);
6843
- });
6844
- }
6845
- updateProps(e) {
6846
- super.updateProps(e);
6847
- const { colors = this.state.colors } = e;
6848
- if (this.state.barValue2Color && !this.state.CI) this.updateProps({
6849
- CI: new ColorInterpolator(colors, 0, 100, 0.1)
6850
- });
6851
- }
6852
- clear() {
6853
- super.clear();
6854
- const { series } = this.state;
6855
- const seriesArray = Object.entries(series);
6856
- seriesArray.forEach(([name, i])=>{
6857
- series[name] = {
6858
- ...i,
6859
- data: void 0
6860
- };
6861
- });
6862
- }
6863
- setRange(range) {
6864
- this.updateProps({
6865
- range: [
6866
- ...range,
6867
- range[1] - range[0]
6868
- ]
6869
- });
6870
- this.draw();
6871
- }
6872
- setIntervel(interval) {
6873
- if (!interval) return;
6874
- this.updateProps({
6875
- interval
6876
- });
6877
- }
6878
- setSeries(e) {
6879
- if (e?.name) {
6880
- const { name } = e;
6881
- const { series } = this.state;
6882
- series[name] = {
6883
- thickness: 1,
6884
- display: true,
6885
- color: '#000000',
6886
- type: GraphicType.Line,
6887
- data: void 0,
6888
- path: void 0,
6889
- orientation: OrientationType.Vertical,
6890
- ...series[name],
6891
- ...e
6892
- };
6893
- }
6894
- }
6895
- render(e) {
6896
- e && this.setSeries(e);
6897
- this.throttledDraw();
6898
- }
6899
- hexToRgba(hex, alpha = 1) {
6900
- const r = Number.parseInt(hex.slice(1, 3), 16) / 255;
6901
- const g = Number.parseInt(hex.slice(3, 5), 16) / 255;
6902
- const b = Number.parseInt(hex.slice(5, 7), 16) / 255;
6903
- return [
6904
- r,
6905
- g,
6906
- b,
6907
- alpha
6908
- ];
6909
- }
6910
- generateLineVertices(data, color, thickness) {
6911
- const vertices = [];
6912
- const colors = [];
6913
- const [r, g, b, a] = this.hexToRgba(color);
6914
- const { range: [min, , rangeY], canvas: { width, height } } = this.state;
6915
- const len = data.length;
6916
- const per = width / len;
6917
- const halfThickness = thickness / 2;
6918
- for(let i = 0; i < len - 1; i++){
6919
- const value1 = data[i];
6920
- const value2 = data[i + 1];
6921
- if (void 0 === value1 || void 0 === value2 || Number.isNaN(value1) || Number.isNaN(value2)) continue;
6922
- const x1 = (i + 0.5) * per;
6923
- const y1 = (value1 - min) / rangeY * height;
6924
- const x2 = (i + 1.5) * per;
6925
- const y2 = (value2 - min) / rangeY * height;
6926
- const dx = x2 - x1;
6927
- const dy = y2 - y1;
6928
- const length = Math.sqrt(dx * dx + dy * dy);
6929
- const nx = -dy / length * halfThickness;
6930
- const ny = dx / length * halfThickness;
6931
- vertices.push(x1 + nx, y1 + ny, x1 - nx, y1 - ny, x2 + nx, y2 + ny);
6932
- vertices.push(x1 - nx, y1 - ny, x2 - nx, y2 - ny, x2 + nx, y2 + ny);
6933
- for(let j = 0; j < 6; j++)colors.push(r, g, b, a);
6934
- }
6935
- return {
6936
- vertices,
6937
- colors
6938
- };
6939
- }
6940
- generateSteplineVertices(data, color, thickness) {
6941
- const vertices = [];
6942
- const colors = [];
6943
- const [r, g, b, a] = this.hexToRgba(color);
6944
- const { range: [min, , rangeY], canvas: { width, height } } = this.state;
6945
- const len = data.length;
6946
- const per = width / len;
6947
- const halfThickness = thickness / 2;
6948
- for(let i = 0; i < len - 1; i++){
6949
- const value1 = data[i];
6950
- const value2 = data[i + 1];
6951
- if (void 0 === value1 || void 0 === value2 || Number.isNaN(value1) || Number.isNaN(value2)) continue;
6952
- const x1 = i * per;
6953
- const y1 = (value1 - min) / rangeY * height;
6954
- const x2 = (i + 1) * per;
6955
- const y2 = (value2 - min) / rangeY * height;
6956
- vertices.push(x1, y1 - halfThickness, x1, y1 + halfThickness, x2, y1 - halfThickness, x1, y1 + halfThickness, x2, y1 + halfThickness, x2, y1 - halfThickness);
6957
- vertices.push(x2 - halfThickness, y1, x2 + halfThickness, y1, x2 - halfThickness, y2, x2 + halfThickness, y1, x2 + halfThickness, y2, x2 - halfThickness, y2);
6958
- for(let j = 0; j < 12; j++)colors.push(r, g, b, a);
6959
- }
6960
- return {
6961
- vertices,
6962
- colors
6963
- };
6964
- }
6965
- generateBarVertices(data, color, orientation) {
6966
- const vertices = [];
6967
- const colors = [];
6968
- const [r, g, b, a] = this.hexToRgba(color);
6969
- const { range: [min, , rangeY], canvas: { width, height } } = this.state;
6970
- const len = data.length;
6971
- if (orientation === OrientationType.Vertical) for(let i = 0; i < len; i++){
6972
- const value = data[i];
6973
- if (void 0 === value || Number.isNaN(value)) continue;
6974
- const startX = Math.floor(i * width / len);
6975
- const endX = Math.floor((i + 1) * width / len);
6976
- const barHeight = (value - min) / rangeY * height;
6977
- vertices.push(startX, 0, endX, 0, startX, barHeight, endX, 0, endX, barHeight, startX, barHeight);
6978
- for(let j = 0; j < 6; j++)if (this.state.barValue2Color && this.state.CI) {
6979
- const colorObj = this.state.CI.getColor(value);
6980
- const [cr, cg, cb] = this.hexToRgba(colorObj.hax);
6981
- colors.push(cr, cg, cb, a);
6982
- } else colors.push(r, g, b, a);
6983
- }
6984
- else {
6985
- const h = height / len;
6986
- for(let i = 0; i < len; i++){
6987
- const value = data[i];
6988
- if (void 0 === value || Number.isNaN(value)) continue;
6989
- const y = Math.round(height - (i + 1) * h);
6990
- const w = (value - min) / rangeY * width;
6991
- const x = width - w;
6992
- const hh = Math.round(h);
6993
- vertices.push(x, y, width, y, x, y + hh, width, y, width, y + hh, x, y + hh);
6994
- for(let j = 0; j < 6; j++)colors.push(r, g, b, a);
6995
- }
6996
- }
6997
- return {
6998
- vertices,
6999
- colors
7000
- };
7001
- }
7002
- generateCircleVertices(data, color, thickness) {
7003
- const vertices = [];
7004
- const colors = [];
7005
- const [r, g, b, a] = this.hexToRgba(color);
7006
- const { range: [min, , rangeY], canvas: { width, height } } = this.state;
7007
- const len = data.length;
7008
- const per = width / len;
7009
- const radius = thickness / 2;
7010
- const segments = 16;
7011
- for(let i = 0; i < len; i++){
7012
- const value = data[i];
7013
- if (void 0 === value || Number.isNaN(value)) continue;
7014
- const centerX = (i + 0.5) * per;
7015
- const centerY = (value - min) / rangeY * height;
7016
- for(let j = 0; j < segments; j++){
7017
- const angle1 = j / segments * 2 * Math.PI;
7018
- const angle2 = (j + 1) / segments * 2 * Math.PI;
7019
- vertices.push(centerX, centerY, centerX + Math.cos(angle1) * radius, centerY + Math.sin(angle1) * radius, centerX + Math.cos(angle2) * radius, centerY + Math.sin(angle2) * radius);
7020
- for(let k = 0; k < 3; k++)colors.push(r, g, b, a);
7021
- }
7022
- }
7023
- return {
7024
- vertices,
7025
- colors
7026
- };
7027
- }
7028
- generateRectVertices(data, color, thickness) {
7029
- const vertices = [];
7030
- const colors = [];
7031
- const [r, g, b, a] = this.hexToRgba(color);
7032
- const { range: [min, , rangeY], canvas: { width, height } } = this.state;
7033
- const len = data.length;
7034
- const per = width / len;
7035
- const side = thickness;
7036
- const halfSide = side / 2;
7037
- for(let i = 0; i < len; i++){
7038
- const value = data[i];
7039
- if (void 0 === value || Number.isNaN(value)) continue;
7040
- const centerX = (i + 0.5) * per;
7041
- const centerY = (value - min) / rangeY * height;
7042
- vertices.push(centerX - halfSide, centerY - halfSide, centerX + halfSide, centerY - halfSide, centerX - halfSide, centerY + halfSide, centerX + halfSide, centerY - halfSide, centerX + halfSide, centerY + halfSide, centerX - halfSide, centerY + halfSide);
7043
- for(let j = 0; j < 6; j++)colors.push(r, g, b, a);
7044
- }
7045
- return {
7046
- vertices,
7047
- colors
7048
- };
7049
- }
7050
- draw() {
7051
- const { series, gl, program, buffers } = this.state;
7052
- if (!gl || !program || !buffers) return;
7053
- gl.clearColor(0.0, 0.0, 0.0, 0.0);
7054
- gl.clear(gl.COLOR_BUFFER_BIT);
7055
- const seriesArray = Object.values(series);
7056
- const allVertices = [];
7057
- const allColors = [];
7058
- for (const seriesConfig of seriesArray){
7059
- const { display, color, type, data, orientation, thickness } = seriesConfig;
7060
- if (!data || !display) continue;
7061
- let result;
7062
- switch(type){
7063
- case GraphicType.Line:
7064
- result = this.generateLineVertices(data, color, thickness || 1);
7065
- this.drawLines(new Float32Array(result.vertices), new Float32Array(result.colors));
7066
- break;
7067
- case GraphicType.Stepline:
7068
- result = this.generateSteplineVertices(data, color, thickness || 1);
7069
- this.drawLines(new Float32Array(result.vertices), new Float32Array(result.colors));
7070
- break;
7071
- case GraphicType.Bar:
7072
- result = this.generateBarVertices(data, color, orientation || OrientationType.Vertical);
7073
- this.drawTriangles(new Float32Array(result.vertices), new Float32Array(result.colors));
7074
- break;
7075
- case GraphicType.Circle:
7076
- result = this.generateCircleVertices(data, color, thickness || 4);
7077
- this.drawTriangles(new Float32Array(result.vertices), new Float32Array(result.colors));
7078
- break;
7079
- case GraphicType.Rect:
7080
- result = this.generateRectVertices(data, color, thickness || 3);
7081
- this.drawTriangles(new Float32Array(result.vertices), new Float32Array(result.colors));
7082
- break;
7083
- }
7084
- const vertices = result.vertices;
7085
- const colors = result.colors;
7086
- allVertices.push(...vertices);
7087
- allColors.push(...colors);
7088
- }
7089
- if (0 === allVertices.length) return;
7090
- this.vertexData = new Float32Array(allVertices);
7091
- this.colorData = new Float32Array(allColors);
7092
- gl.useProgram(program);
7093
- const resolutionLocation = gl.getUniformLocation(program, 'u_resolution');
7094
- gl.uniform2f(resolutionLocation, gl.canvas.width, gl.canvas.height);
7095
- const positionLocation = gl.getAttribLocation(program, 'a_position');
7096
- gl.bindBuffer(gl.ARRAY_BUFFER, buffers.position);
7097
- gl.bufferData(gl.ARRAY_BUFFER, this.vertexData, gl.STATIC_DRAW);
7098
- gl.enableVertexAttribArray(positionLocation);
7099
- gl.vertexAttribPointer(positionLocation, 2, gl.FLOAT, false, 0, 0);
7100
- const colorLocation = gl.getAttribLocation(program, 'a_color');
7101
- gl.bindBuffer(gl.ARRAY_BUFFER, buffers.color);
7102
- gl.bufferData(gl.ARRAY_BUFFER, this.colorData, gl.STATIC_DRAW);
7103
- gl.enableVertexAttribArray(colorLocation);
7104
- gl.vertexAttribPointer(colorLocation, 4, gl.FLOAT, false, 0, 0);
7105
- const vertexCount = this.vertexData.length / 2;
7106
- gl.drawArrays(gl.TRIANGLES, 0, vertexCount);
7107
- }
7108
- }
7109
- class IQStream {
7110
- state;
7111
- constructor(props){
7112
- this.state = {
7113
- chart: null,
7114
- ...props
7115
- };
7116
- this.init();
7117
- }
7118
- init() {
7119
- const { id } = this.state;
7120
- if (!id) return;
7121
- this.state.chart = new Dial({
7122
- id,
7123
- ...(0, utils.vY)()
7124
- });
7125
- setTimeout(()=>{
7126
- this.state.chart.resize();
7127
- });
7128
- __WEBPACK_EXTERNAL_MODULE__rfkit_theme_a11ca9cb__.themeObserver.subscribe(()=>{
7129
- this.state.chart.updateProps({
7130
- ...(0, utils.vY)()
7131
- });
7132
- this.state.chart.resize();
7133
- this.state.chart.draw();
7134
- });
7135
- }
7136
- updateSeries(d) {
7137
- this.state.chart.render(d);
7138
- }
7139
- reset() {
7140
- this.resize();
7141
- this.clear();
7142
- }
7143
- resize() {
7144
- this.state.chart.resize();
7145
- }
7146
- clear() {
7147
- this.state.chart.clear();
6400
+ this.state.chart.clear();
7148
6401
  }
7149
6402
  }
7150
6403
  const Dial_Dial = ()=>{
@@ -7209,7 +6462,7 @@ const DialChart = (props)=>/*#__PURE__*/ (0, __WEBPACK_EXTERNAL_MODULE_react_jsx
7209
6462
  });
7210
6463
  const lib_Dial_Dial = withChartPublisher(DialChart, 'Dial');
7211
6464
  const lib_Dial = lib_Dial_Dial;
7212
- var GuageBox_styles_module = __webpack_require__("../../../node_modules/.pnpm/@rsbuild+core@1.3.18/node_modules/@rsbuild/core/compiled/css-loader/index.js??ruleSet[1].rules[11].use[1]!builtin:lightningcss-loader??ruleSet[1].rules[11].use[2]!../../../node_modules/.pnpm/@rsbuild+plugin-less@1.5.0_@rsbuild+core@1.6.9/node_modules/@rsbuild/plugin-less/compiled/less-loader/index.js??ruleSet[1].rules[11].use[3]!./src/components/GuageBox/styles.module.less");
6465
+ var GuageBox_styles_module = __webpack_require__("../../../node_modules/.pnpm/@rsbuild+core@1.3.18/node_modules/@rsbuild/core/compiled/css-loader/index.js??ruleSet[1].rules[11].use[1]!builtin:lightningcss-loader??ruleSet[1].rules[11].use[2]!../../../node_modules/.pnpm/@rsbuild+plugin-less@1.5.0_@rsbuild+core@1.6.12/node_modules/@rsbuild/plugin-less/compiled/less-loader/index.js??ruleSet[1].rules[11].use[3]!./src/components/GuageBox/styles.module.less");
7213
6466
  var GuageBox_styles_module_options = {};
7214
6467
  GuageBox_styles_module_options.styleTagTransform = styleTagTransform_default();
7215
6468
  GuageBox_styles_module_options.setAttributes = setAttributesWithoutAttributes_default();
@@ -7368,68 +6621,253 @@ const Gauge_Gauge = ({ onChange })=>{
7368
6621
  limit
7369
6622
  });
7370
6623
  }, [
7371
- limit,
7372
- globalID
6624
+ limit,
6625
+ globalID
6626
+ ]);
6627
+ (0, __WEBPACK_EXTERNAL_MODULE_react__.useEffect)(()=>{
6628
+ if (range) chart?.updateProps({
6629
+ range
6630
+ });
6631
+ }, [
6632
+ range
6633
+ ]);
6634
+ return /*#__PURE__*/ (0, __WEBPACK_EXTERNAL_MODULE_react_jsx_runtime_225474f2__.jsx)(components_GuageBox, {
6635
+ padding: Gauge_padding,
6636
+ limit: limit,
6637
+ step: Gauge_step,
6638
+ setLimit: (e)=>setLimit(e),
6639
+ onChange: onChange,
6640
+ children: /*#__PURE__*/ (0, __WEBPACK_EXTERNAL_MODULE_react_jsx_runtime_225474f2__.jsx)(Chart, {})
6641
+ });
6642
+ };
6643
+ const modules_Gauge = Gauge_Gauge;
6644
+ const Gauge_Chart_Chart = (props)=>{
6645
+ const { publish, onChange } = props;
6646
+ const { state: { globalID } } = useStore_useStore();
6647
+ hooks_usePublish({
6648
+ publish,
6649
+ subscribe: (e)=>{
6650
+ tools(globalID, constants_ModuleType.Gauge)(e);
6651
+ }
6652
+ });
6653
+ return /*#__PURE__*/ (0, __WEBPACK_EXTERNAL_MODULE_react_jsx_runtime_225474f2__.jsx)(components_Container, {
6654
+ children: /*#__PURE__*/ (0, __WEBPACK_EXTERNAL_MODULE_react_jsx_runtime_225474f2__.jsx)(modules_Gauge, {
6655
+ onChange: onChange
6656
+ })
6657
+ });
6658
+ };
6659
+ const Gauge_Chart = Gauge_Chart_Chart;
6660
+ const GaugeChart = (props)=>/*#__PURE__*/ (0, __WEBPACK_EXTERNAL_MODULE_react_jsx_runtime_225474f2__.jsx)(store, {
6661
+ ...props,
6662
+ system: {
6663
+ padding: false,
6664
+ border: false
6665
+ },
6666
+ children: /*#__PURE__*/ (0, __WEBPACK_EXTERNAL_MODULE_react_jsx_runtime_225474f2__.jsx)(Gauge_Chart, {
6667
+ ...props
6668
+ })
6669
+ });
6670
+ const lib_Gauge_Gauge = withChartPublisher(GaugeChart, 'Gauge');
6671
+ const lib_Gauge = lib_Gauge_Gauge;
6672
+ const useAxisYWidth_width = 40;
6673
+ function useAxisYWidth_useAxisYWidth() {
6674
+ const { state: { system: { padding }, axisY: { show } } } = useStore_useStore();
6675
+ const w = (0, __WEBPACK_EXTERNAL_MODULE_react__.useMemo)(()=>show ? useAxisYWidth_width : 0, [
6676
+ show
6677
+ ]);
6678
+ return {
6679
+ width: `${w}px`,
6680
+ axisYWidth: `${w + padding / 2}px`,
6681
+ marginLeft: `${0 - padding / 2}px`,
6682
+ pluginBoxWidth: `calc(100% - ${w}px`
6683
+ };
6684
+ }
6685
+ var Mask_styles_module = __webpack_require__("../../../node_modules/.pnpm/@rsbuild+core@1.3.18/node_modules/@rsbuild/core/compiled/css-loader/index.js??ruleSet[1].rules[11].use[1]!builtin:lightningcss-loader??ruleSet[1].rules[11].use[2]!../../../node_modules/.pnpm/@rsbuild+plugin-less@1.5.0_@rsbuild+core@1.6.12/node_modules/@rsbuild/plugin-less/compiled/less-loader/index.js??ruleSet[1].rules[11].use[3]!./src/components/Mask/styles.module.less");
6686
+ var Mask_styles_module_options = {};
6687
+ Mask_styles_module_options.styleTagTransform = styleTagTransform_default();
6688
+ Mask_styles_module_options.setAttributes = setAttributesWithoutAttributes_default();
6689
+ Mask_styles_module_options.insert = insertBySelector_default().bind(null, "head");
6690
+ Mask_styles_module_options.domAPI = styleDomAPI_default();
6691
+ Mask_styles_module_options.insertStyleElement = insertStyleElement_default();
6692
+ injectStylesIntoStyleTag_default()(Mask_styles_module.Z, Mask_styles_module_options);
6693
+ const components_Mask_styles_module = Mask_styles_module.Z && Mask_styles_module.Z.locals ? Mask_styles_module.Z.locals : void 0;
6694
+ const Mask_Mask = /*#__PURE__*/ (0, __WEBPACK_EXTERNAL_MODULE_react__.forwardRef)(({ children, className, style }, ref)=>/*#__PURE__*/ (0, __WEBPACK_EXTERNAL_MODULE_react_jsx_runtime_225474f2__.jsxs)("div", {
6695
+ className: `${components_Mask_styles_module.Mask} ${className}`,
6696
+ style: style,
6697
+ ref: ref,
6698
+ children: [
6699
+ /*#__PURE__*/ (0, __WEBPACK_EXTERNAL_MODULE_react_jsx_runtime_225474f2__.jsx)("div", {
6700
+ className: components_Mask_styles_module.bg
6701
+ }),
6702
+ /*#__PURE__*/ (0, __WEBPACK_EXTERNAL_MODULE_react_jsx_runtime_225474f2__.jsx)("div", {
6703
+ className: components_Mask_styles_module.content,
6704
+ children: children
6705
+ })
6706
+ ]
6707
+ }));
6708
+ const Mask = /*#__PURE__*/ __WEBPACK_EXTERNAL_MODULE_react__["default"].memo(Mask_Mask);
6709
+ var Tooltip_styles_module = __webpack_require__("../../../node_modules/.pnpm/@rsbuild+core@1.3.18/node_modules/@rsbuild/core/compiled/css-loader/index.js??ruleSet[1].rules[11].use[1]!builtin:lightningcss-loader??ruleSet[1].rules[11].use[2]!../../../node_modules/.pnpm/@rsbuild+plugin-less@1.5.0_@rsbuild+core@1.6.12/node_modules/@rsbuild/plugin-less/compiled/less-loader/index.js??ruleSet[1].rules[11].use[3]!./src/components/Tooltip/styles.module.less");
6710
+ var Tooltip_styles_module_options = {};
6711
+ Tooltip_styles_module_options.styleTagTransform = styleTagTransform_default();
6712
+ Tooltip_styles_module_options.setAttributes = setAttributesWithoutAttributes_default();
6713
+ Tooltip_styles_module_options.insert = insertBySelector_default().bind(null, "head");
6714
+ Tooltip_styles_module_options.domAPI = styleDomAPI_default();
6715
+ Tooltip_styles_module_options.insertStyleElement = insertStyleElement_default();
6716
+ injectStylesIntoStyleTag_default()(Tooltip_styles_module.Z, Tooltip_styles_module_options);
6717
+ const components_Tooltip_styles_module = Tooltip_styles_module.Z && Tooltip_styles_module.Z.locals ? Tooltip_styles_module.Z.locals : void 0;
6718
+ const Tooltip_Tooltip = ({ children, content, delay = 200, duration = 3000, offset = {
6719
+ x: 0,
6720
+ y: 0
6721
+ } })=>{
6722
+ const [visible, setVisible] = (0, __WEBPACK_EXTERNAL_MODULE_react__.useState)(false);
6723
+ const [position, setPosition] = (0, __WEBPACK_EXTERNAL_MODULE_react__.useState)({
6724
+ x: 0,
6725
+ y: 0
6726
+ });
6727
+ const triggerRef = (0, __WEBPACK_EXTERNAL_MODULE_react__.useRef)(null);
6728
+ const tooltipRef = (0, __WEBPACK_EXTERNAL_MODULE_react__.useRef)(null);
6729
+ const timerRef = (0, __WEBPACK_EXTERNAL_MODULE_react__.useRef)(null);
6730
+ const hideTimerRef = (0, __WEBPACK_EXTERNAL_MODULE_react__.useRef)(null);
6731
+ const updatePosition = (0, __WEBPACK_EXTERNAL_MODULE_react__.useCallback)(()=>{
6732
+ if (!triggerRef.current || !tooltipRef.current) return;
6733
+ const triggerRect = triggerRef.current.getBoundingClientRect();
6734
+ const tooltipRect = tooltipRef.current.getBoundingClientRect();
6735
+ const windowWidth = window.innerWidth;
6736
+ const windowHeight = window.innerHeight;
6737
+ let x = triggerRect.left + (triggerRect.width - tooltipRect.width) / 2 + (offset.x || 0);
6738
+ let y = triggerRect.top - tooltipRect.height - 6 + (offset.y || 0);
6739
+ let placement = 'top';
6740
+ let arrowPosition = '50%';
6741
+ const triggerCenter = triggerRect.left + triggerRect.width / 2;
6742
+ if (x + tooltipRect.width > windowWidth - 8) {
6743
+ x = windowWidth - tooltipRect.width - 8;
6744
+ arrowPosition = `${((triggerCenter - x) / tooltipRect.width * 100).toFixed(2)}%`;
6745
+ if (Number.parseFloat(arrowPosition) > 90) arrowPosition = '90%';
6746
+ }
6747
+ if (x < 8) {
6748
+ x = 8;
6749
+ arrowPosition = `${((triggerCenter - x) / tooltipRect.width * 100).toFixed(2)}%`;
6750
+ if (Number.parseFloat(arrowPosition) < 10) arrowPosition = '10%';
6751
+ }
6752
+ if (y < 8) {
6753
+ y = triggerRect.bottom + 6;
6754
+ placement = 'bottom';
6755
+ }
6756
+ if ('bottom' === placement && y + tooltipRect.height > windowHeight - 8) {
6757
+ y = triggerRect.top - tooltipRect.height - 6;
6758
+ placement = 'top';
6759
+ }
6760
+ setPosition({
6761
+ x,
6762
+ y
6763
+ });
6764
+ tooltipRef.current.dataset.placement = placement;
6765
+ tooltipRef.current.style.setProperty('--arrow-position', arrowPosition);
6766
+ }, []);
6767
+ const resizeObserverRef = (0, __WEBPACK_EXTERNAL_MODULE_react__.useRef)(null);
6768
+ const debounce = (0, __WEBPACK_EXTERNAL_MODULE_react__.useCallback)((fn, wait)=>{
6769
+ let timeout = null;
6770
+ return (...args)=>{
6771
+ if (timeout) clearTimeout(timeout);
6772
+ timeout = setTimeout(()=>fn(...args), wait);
6773
+ };
6774
+ }, []);
6775
+ const debouncedUpdatePosition = (0, __WEBPACK_EXTERNAL_MODULE_react__.useCallback)(debounce(()=>{
6776
+ if (visible) updatePosition();
6777
+ }, 16), [
6778
+ visible,
6779
+ updatePosition
6780
+ ]);
6781
+ const handleMouseEnter = (0, __WEBPACK_EXTERNAL_MODULE_react__.useCallback)(()=>{
6782
+ if (timerRef.current) {
6783
+ clearTimeout(timerRef.current);
6784
+ timerRef.current = null;
6785
+ }
6786
+ if (hideTimerRef.current) {
6787
+ clearTimeout(hideTimerRef.current);
6788
+ hideTimerRef.current = null;
6789
+ }
6790
+ timerRef.current = setTimeout(()=>{
6791
+ if (triggerRef.current) {
6792
+ const triggerRect = triggerRef.current.getBoundingClientRect();
6793
+ const windowWidth = window.innerWidth;
6794
+ const estimatedWidth = 120;
6795
+ const estimatedHeight = 50;
6796
+ let x = triggerRect.left + (triggerRect.width - estimatedWidth) / 2 + (offset.x || 0);
6797
+ let y = triggerRect.top - estimatedHeight - 6 + (offset.y || 0);
6798
+ if (x < 8) x = 8;
6799
+ if (x + estimatedWidth > windowWidth - 8) x = windowWidth - estimatedWidth - 8;
6800
+ if (y < 8) y = triggerRect.bottom + 6;
6801
+ setPosition({
6802
+ x,
6803
+ y
6804
+ });
6805
+ }
6806
+ setVisible(true);
6807
+ requestAnimationFrame(()=>{
6808
+ updatePosition();
6809
+ requestAnimationFrame(updatePosition);
6810
+ });
6811
+ hideTimerRef.current = setTimeout(()=>{
6812
+ setVisible(false);
6813
+ hideTimerRef.current = null;
6814
+ }, duration);
6815
+ }, delay);
6816
+ }, [
6817
+ delay,
6818
+ duration,
6819
+ updatePosition,
6820
+ offset
7373
6821
  ]);
7374
- (0, __WEBPACK_EXTERNAL_MODULE_react__.useEffect)(()=>{
7375
- if (range) chart?.updateProps({
7376
- range
7377
- });
6822
+ const handleMouseLeave = (0, __WEBPACK_EXTERNAL_MODULE_react__.useCallback)(()=>{
6823
+ if (timerRef.current) {
6824
+ clearTimeout(timerRef.current);
6825
+ timerRef.current = null;
6826
+ }
6827
+ if (hideTimerRef.current) {
6828
+ clearTimeout(hideTimerRef.current);
6829
+ hideTimerRef.current = null;
6830
+ }
6831
+ setVisible(false);
6832
+ }, []);
6833
+ (0, __WEBPACK_EXTERNAL_MODULE_react__.useLayoutEffect)(()=>{
6834
+ if (visible && tooltipRef.current) {
6835
+ if (!resizeObserverRef.current) resizeObserverRef.current = new ResizeObserver(debouncedUpdatePosition);
6836
+ resizeObserverRef.current.observe(tooltipRef.current);
6837
+ window.addEventListener('scroll', debouncedUpdatePosition);
6838
+ window.addEventListener('resize', debouncedUpdatePosition);
6839
+ return ()=>{
6840
+ if (resizeObserverRef.current) resizeObserverRef.current.disconnect();
6841
+ window.removeEventListener('scroll', debouncedUpdatePosition);
6842
+ window.removeEventListener('resize', debouncedUpdatePosition);
6843
+ };
6844
+ }
7378
6845
  }, [
7379
- range
6846
+ visible
7380
6847
  ]);
7381
- return /*#__PURE__*/ (0, __WEBPACK_EXTERNAL_MODULE_react_jsx_runtime_225474f2__.jsx)(components_GuageBox, {
7382
- padding: Gauge_padding,
7383
- limit: limit,
7384
- step: Gauge_step,
7385
- setLimit: (e)=>setLimit(e),
7386
- onChange: onChange,
7387
- children: /*#__PURE__*/ (0, __WEBPACK_EXTERNAL_MODULE_react_jsx_runtime_225474f2__.jsx)(Chart, {})
7388
- });
7389
- };
7390
- const modules_Gauge = Gauge_Gauge;
7391
- const Gauge_Chart_Chart = (props)=>{
7392
- const { publish, onChange } = props;
7393
- const { state: { globalID } } = useStore_useStore();
7394
- hooks_usePublish({
7395
- publish,
7396
- subscribe: (e)=>{
7397
- tools(globalID, constants_ModuleType.Gauge)(e);
7398
- }
7399
- });
7400
- return /*#__PURE__*/ (0, __WEBPACK_EXTERNAL_MODULE_react_jsx_runtime_225474f2__.jsx)(components_Container, {
7401
- children: /*#__PURE__*/ (0, __WEBPACK_EXTERNAL_MODULE_react_jsx_runtime_225474f2__.jsx)(modules_Gauge, {
7402
- onChange: onChange
7403
- })
6848
+ return /*#__PURE__*/ (0, __WEBPACK_EXTERNAL_MODULE_react_jsx_runtime_225474f2__.jsxs)(__WEBPACK_EXTERNAL_MODULE_react_jsx_runtime_225474f2__.Fragment, {
6849
+ children: [
6850
+ /*#__PURE__*/ __WEBPACK_EXTERNAL_MODULE_react__["default"].cloneElement(children, {
6851
+ ref: triggerRef,
6852
+ onMouseEnter: handleMouseEnter,
6853
+ onMouseLeave: handleMouseLeave
6854
+ }),
6855
+ visible && /*#__PURE__*/ (0, __WEBPACK_EXTERNAL_MODULE_react_dom_7136dc57__.createPortal)(/*#__PURE__*/ (0, __WEBPACK_EXTERNAL_MODULE_react_jsx_runtime_225474f2__.jsx)(Mask, {
6856
+ ref: tooltipRef,
6857
+ className: components_Tooltip_styles_module.tooltip,
6858
+ style: {
6859
+ left: position.x,
6860
+ top: position.y,
6861
+ opacity: tooltipRef.current ? 1 : 0,
6862
+ transition: 'opacity 0.1s ease-in-out'
6863
+ },
6864
+ children: content
6865
+ }), document.body)
6866
+ ]
7404
6867
  });
7405
6868
  };
7406
- const Gauge_Chart = Gauge_Chart_Chart;
7407
- const GaugeChart = (props)=>/*#__PURE__*/ (0, __WEBPACK_EXTERNAL_MODULE_react_jsx_runtime_225474f2__.jsx)(store, {
7408
- ...props,
7409
- system: {
7410
- padding: false,
7411
- border: false
7412
- },
7413
- children: /*#__PURE__*/ (0, __WEBPACK_EXTERNAL_MODULE_react_jsx_runtime_225474f2__.jsx)(Gauge_Chart, {
7414
- ...props
7415
- })
7416
- });
7417
- const lib_Gauge_Gauge = withChartPublisher(GaugeChart, 'Gauge');
7418
- const lib_Gauge = lib_Gauge_Gauge;
7419
- const useAxisYWidth_width = 40;
7420
- function useAxisYWidth_useAxisYWidth() {
7421
- const { state: { system: { padding }, axisY: { show } } } = useStore_useStore();
7422
- const w = (0, __WEBPACK_EXTERNAL_MODULE_react__.useMemo)(()=>show ? useAxisYWidth_width : 0, [
7423
- show
7424
- ]);
7425
- return {
7426
- width: `${w}px`,
7427
- axisYWidth: `${w + padding / 2}px`,
7428
- marginLeft: `${0 - padding / 2}px`,
7429
- pluginBoxWidth: `calc(100% - ${w}px`
7430
- };
7431
- }
7432
- var AxisX_styles_module = __webpack_require__("../../../node_modules/.pnpm/@rsbuild+core@1.3.18/node_modules/@rsbuild/core/compiled/css-loader/index.js??ruleSet[1].rules[11].use[1]!builtin:lightningcss-loader??ruleSet[1].rules[11].use[2]!../../../node_modules/.pnpm/@rsbuild+plugin-less@1.5.0_@rsbuild+core@1.6.9/node_modules/@rsbuild/plugin-less/compiled/less-loader/index.js??ruleSet[1].rules[11].use[3]!./src/components/AxisX/styles.module.less");
6869
+ const components_Tooltip = Tooltip_Tooltip;
6870
+ var AxisX_styles_module = __webpack_require__("../../../node_modules/.pnpm/@rsbuild+core@1.3.18/node_modules/@rsbuild/core/compiled/css-loader/index.js??ruleSet[1].rules[11].use[1]!builtin:lightningcss-loader??ruleSet[1].rules[11].use[2]!../../../node_modules/.pnpm/@rsbuild+plugin-less@1.5.0_@rsbuild+core@1.6.12/node_modules/@rsbuild/plugin-less/compiled/less-loader/index.js??ruleSet[1].rules[11].use[3]!./src/components/AxisX/styles.module.less");
7433
6871
  var AxisX_styles_module_options = {};
7434
6872
  AxisX_styles_module_options.styleTagTransform = styleTagTransform_default();
7435
6873
  AxisX_styles_module_options.setAttributes = setAttributesWithoutAttributes_default();
@@ -7438,7 +6876,7 @@ AxisX_styles_module_options.domAPI = styleDomAPI_default();
7438
6876
  AxisX_styles_module_options.insertStyleElement = insertStyleElement_default();
7439
6877
  injectStylesIntoStyleTag_default()(AxisX_styles_module.Z, AxisX_styles_module_options);
7440
6878
  const components_AxisX_styles_module = AxisX_styles_module.Z && AxisX_styles_module.Z.locals ? AxisX_styles_module.Z.locals : void 0;
7441
- var RulerTicks_styles_module = __webpack_require__("../../../node_modules/.pnpm/@rsbuild+core@1.3.18/node_modules/@rsbuild/core/compiled/css-loader/index.js??ruleSet[1].rules[11].use[1]!builtin:lightningcss-loader??ruleSet[1].rules[11].use[2]!../../../node_modules/.pnpm/@rsbuild+plugin-less@1.5.0_@rsbuild+core@1.6.9/node_modules/@rsbuild/plugin-less/compiled/less-loader/index.js??ruleSet[1].rules[11].use[3]!./src/components/RulerTicks/styles.module.less");
6879
+ var RulerTicks_styles_module = __webpack_require__("../../../node_modules/.pnpm/@rsbuild+core@1.3.18/node_modules/@rsbuild/core/compiled/css-loader/index.js??ruleSet[1].rules[11].use[1]!builtin:lightningcss-loader??ruleSet[1].rules[11].use[2]!../../../node_modules/.pnpm/@rsbuild+plugin-less@1.5.0_@rsbuild+core@1.6.12/node_modules/@rsbuild/plugin-less/compiled/less-loader/index.js??ruleSet[1].rules[11].use[3]!./src/components/RulerTicks/styles.module.less");
7442
6880
  var RulerTicks_styles_module_options = {};
7443
6881
  RulerTicks_styles_module_options.styleTagTransform = styleTagTransform_default();
7444
6882
  RulerTicks_styles_module_options.setAttributes = setAttributesWithoutAttributes_default();
@@ -7508,7 +6946,7 @@ const RulerTicks_RulerTicks = ({ length = 10, tickColor = 'var(--theme-color-bas
7508
6946
  });
7509
6947
  };
7510
6948
  const components_RulerTicks = RulerTicks_RulerTicks;
7511
- var ZoomOffsetContainer_styles_module = __webpack_require__("../../../../node_modules/.pnpm/@rsbuild+core@1.3.18/node_modules/@rsbuild/core/compiled/css-loader/index.js??ruleSet[1].rules[11].use[1]!builtin:lightningcss-loader??ruleSet[1].rules[11].use[2]!../../../../node_modules/.pnpm/@rsbuild+plugin-less@1.5.0_@rsbuild+core@1.6.9/node_modules/@rsbuild/plugin-less/compiled/less-loader/index.js??ruleSet[1].rules[11].use[3]!./src/components/Zoom/ZoomOffsetContainer/styles.module.less");
6949
+ var ZoomOffsetContainer_styles_module = __webpack_require__("../../../../node_modules/.pnpm/@rsbuild+core@1.3.18/node_modules/@rsbuild/core/compiled/css-loader/index.js??ruleSet[1].rules[11].use[1]!builtin:lightningcss-loader??ruleSet[1].rules[11].use[2]!../../../../node_modules/.pnpm/@rsbuild+plugin-less@1.5.0_@rsbuild+core@1.6.12/node_modules/@rsbuild/plugin-less/compiled/less-loader/index.js??ruleSet[1].rules[11].use[3]!./src/components/Zoom/ZoomOffsetContainer/styles.module.less");
7512
6950
  var ZoomOffsetContainer_styles_module_options = {};
7513
6951
  ZoomOffsetContainer_styles_module_options.styleTagTransform = styleTagTransform_default();
7514
6952
  ZoomOffsetContainer_styles_module_options.setAttributes = setAttributesWithoutAttributes_default();
@@ -7675,7 +7113,7 @@ const AxisXTicks = ({ type })=>{
7675
7113
  });
7676
7114
  };
7677
7115
  const AxisX_Ticks = /*#__PURE__*/ (0, __WEBPACK_EXTERNAL_MODULE_react__.memo)(AxisXTicks);
7678
- const AxisX_AxisX = ({ type })=>{
7116
+ const AxisX = ({ type })=>{
7679
7117
  const { state: { axisX } } = useStore_useStore();
7680
7118
  const { children, unit, ticks } = axisX;
7681
7119
  const { width, pluginBoxWidth } = useAxisYWidth_useAxisYWidth();
@@ -7713,8 +7151,8 @@ const AxisX_AxisX = ({ type })=>{
7713
7151
  })
7714
7152
  });
7715
7153
  };
7716
- const AxisX = /*#__PURE__*/ (0, __WEBPACK_EXTERNAL_MODULE_react__.memo)(AxisX_AxisX);
7717
- var FlexBox_styles_module = __webpack_require__("../../../node_modules/.pnpm/@rsbuild+core@1.3.18/node_modules/@rsbuild/core/compiled/css-loader/index.js??ruleSet[1].rules[11].use[1]!builtin:lightningcss-loader??ruleSet[1].rules[11].use[2]!../../../node_modules/.pnpm/@rsbuild+plugin-less@1.5.0_@rsbuild+core@1.6.9/node_modules/@rsbuild/plugin-less/compiled/less-loader/index.js??ruleSet[1].rules[11].use[3]!./src/components/FlexBox/styles.module.less");
7154
+ const components_AxisX = /*#__PURE__*/ (0, __WEBPACK_EXTERNAL_MODULE_react__.memo)(AxisX);
7155
+ var FlexBox_styles_module = __webpack_require__("../../../node_modules/.pnpm/@rsbuild+core@1.3.18/node_modules/@rsbuild/core/compiled/css-loader/index.js??ruleSet[1].rules[11].use[1]!builtin:lightningcss-loader??ruleSet[1].rules[11].use[2]!../../../node_modules/.pnpm/@rsbuild+plugin-less@1.5.0_@rsbuild+core@1.6.12/node_modules/@rsbuild/plugin-less/compiled/less-loader/index.js??ruleSet[1].rules[11].use[3]!./src/components/FlexBox/styles.module.less");
7718
7156
  var FlexBox_styles_module_options = {};
7719
7157
  FlexBox_styles_module_options.styleTagTransform = styleTagTransform_default();
7720
7158
  FlexBox_styles_module_options.setAttributes = setAttributesWithoutAttributes_default();
@@ -7888,18 +7326,19 @@ function useSpectrumRule(type) {
7888
7326
  }, []);
7889
7327
  return handleSpectrumRule;
7890
7328
  }
7891
- var FullTicks_styles_module = __webpack_require__("../../../../../../node_modules/.pnpm/@rsbuild+core@1.3.18/node_modules/@rsbuild/core/compiled/css-loader/index.js??ruleSet[1].rules[11].use[1]!builtin:lightningcss-loader??ruleSet[1].rules[11].use[2]!../../../../../../node_modules/.pnpm/@rsbuild+plugin-less@1.5.0_@rsbuild+core@1.6.9/node_modules/@rsbuild/plugin-less/compiled/less-loader/index.js??ruleSet[1].rules[11].use[3]!./src/components/AxisY/heatmap/components/FullTicks/styles.module.less");
7892
- var FullTicks_styles_module_options = {};
7893
- FullTicks_styles_module_options.styleTagTransform = styleTagTransform_default();
7894
- FullTicks_styles_module_options.setAttributes = setAttributesWithoutAttributes_default();
7895
- FullTicks_styles_module_options.insert = insertBySelector_default().bind(null, "head");
7896
- FullTicks_styles_module_options.domAPI = styleDomAPI_default();
7897
- FullTicks_styles_module_options.insertStyleElement = insertStyleElement_default();
7898
- injectStylesIntoStyleTag_default()(FullTicks_styles_module.Z, FullTicks_styles_module_options);
7899
- const components_FullTicks_styles_module = FullTicks_styles_module.Z && FullTicks_styles_module.Z.locals ? FullTicks_styles_module.Z.locals : void 0;
7329
+ var Ticks_styles_module = __webpack_require__("../../../../../../node_modules/.pnpm/@rsbuild+core@1.3.18/node_modules/@rsbuild/core/compiled/css-loader/index.js??ruleSet[1].rules[11].use[1]!builtin:lightningcss-loader??ruleSet[1].rules[11].use[2]!../../../../../../node_modules/.pnpm/@rsbuild+plugin-less@1.5.0_@rsbuild+core@1.6.12/node_modules/@rsbuild/plugin-less/compiled/less-loader/index.js??ruleSet[1].rules[11].use[3]!./src/components/AxisY/heatmap/components/Ticks/styles.module.less");
7330
+ var Ticks_styles_module_options = {};
7331
+ Ticks_styles_module_options.styleTagTransform = styleTagTransform_default();
7332
+ Ticks_styles_module_options.setAttributes = setAttributesWithoutAttributes_default();
7333
+ Ticks_styles_module_options.insert = insertBySelector_default().bind(null, "head");
7334
+ Ticks_styles_module_options.domAPI = styleDomAPI_default();
7335
+ Ticks_styles_module_options.insertStyleElement = insertStyleElement_default();
7336
+ injectStylesIntoStyleTag_default()(Ticks_styles_module.Z, Ticks_styles_module_options);
7337
+ const components_Ticks_styles_module = Ticks_styles_module.Z && Ticks_styles_module.Z.locals ? Ticks_styles_module.Z.locals : void 0;
7900
7338
  const COMPONENT_KEY = 'AxisYHeatmapTicks';
7339
+ const calcTimeDiffLastTwoDigits = (time)=>time?.slice?.(-8);
7901
7340
  const HEATMAP_FULL_TICKS = 10;
7902
- const FullTicks_Ticks = (props)=>{
7341
+ const Ticks_Ticks = (props)=>{
7903
7342
  const { id } = props;
7904
7343
  const { state: { globalID } } = useStore_useStore();
7905
7344
  const [timeValues, setTimeValues] = (0, __WEBPACK_EXTERNAL_MODULE_react__.useState)(Array(HEATMAP_FULL_TICKS).fill(''));
@@ -7916,7 +7355,7 @@ const FullTicks_Ticks = (props)=>{
7916
7355
  for(let i = 0; i < HEATMAP_FULL_TICKS; i++){
7917
7356
  const index = Math.floor((dataLength - 1) * i / (HEATMAP_FULL_TICKS - 1));
7918
7357
  const data = waterfallData[index];
7919
- const value = data?.timestamp ? (0, utils.Fc)(data.timestamp, void 0, void 0, true) : '';
7358
+ const value = calcTimeDiffLastTwoDigits(data?.timestamp);
7920
7359
  values.push(value);
7921
7360
  }
7922
7361
  setTimeValues(values);
@@ -7926,65 +7365,18 @@ const FullTicks_Ticks = (props)=>{
7926
7365
  globalID
7927
7366
  ]);
7928
7367
  return /*#__PURE__*/ (0, __WEBPACK_EXTERNAL_MODULE_react_jsx_runtime_225474f2__.jsx)("div", {
7929
- className: components_FullTicks_styles_module.ticks,
7368
+ className: components_Ticks_styles_module.ticks,
7930
7369
  children: positions.map((position, index)=>/*#__PURE__*/ (0, __WEBPACK_EXTERNAL_MODULE_react_jsx_runtime_225474f2__.jsx)("div", {
7931
- className: components_FullTicks_styles_module.tick,
7370
+ className: components_Ticks_styles_module.tick,
7932
7371
  style: {
7933
7372
  top: position
7934
7373
  },
7935
7374
  children: timeValues[index]
7936
- }, index))
7937
- });
7938
- };
7939
- const FullTicks = /*#__PURE__*/ __WEBPACK_EXTERNAL_MODULE_react__["default"].memo(FullTicks_Ticks);
7940
- var Ticks_styles_module = __webpack_require__("../../../../../../node_modules/.pnpm/@rsbuild+core@1.3.18/node_modules/@rsbuild/core/compiled/css-loader/index.js??ruleSet[1].rules[11].use[1]!builtin:lightningcss-loader??ruleSet[1].rules[11].use[2]!../../../../../../node_modules/.pnpm/@rsbuild+plugin-less@1.5.0_@rsbuild+core@1.6.9/node_modules/@rsbuild/plugin-less/compiled/less-loader/index.js??ruleSet[1].rules[11].use[3]!./src/components/AxisY/heatmap/components/Ticks/styles.module.less");
7941
- var Ticks_styles_module_options = {};
7942
- Ticks_styles_module_options.styleTagTransform = styleTagTransform_default();
7943
- Ticks_styles_module_options.setAttributes = setAttributesWithoutAttributes_default();
7944
- Ticks_styles_module_options.insert = insertBySelector_default().bind(null, "head");
7945
- Ticks_styles_module_options.domAPI = styleDomAPI_default();
7946
- Ticks_styles_module_options.insertStyleElement = insertStyleElement_default();
7947
- injectStylesIntoStyleTag_default()(Ticks_styles_module.Z, Ticks_styles_module_options);
7948
- const components_Ticks_styles_module = Ticks_styles_module.Z && Ticks_styles_module.Z.locals ? Ticks_styles_module.Z.locals : void 0;
7949
- const Ticks_COMPONENT_KEY = 'AxisYHeatmapTicks';
7950
- const Ticks_Ticks = (props)=>{
7951
- const { id, inside = false } = props;
7952
- const { state: { globalID } } = useStore_useStore();
7953
- const [tickFormat, setTickFormat] = (0, __WEBPACK_EXTERNAL_MODULE_react__.useState)();
7954
- (0, __WEBPACK_EXTERNAL_MODULE_react__.useEffect)(()=>{
7955
- if (id && globalID) withUpdateData(id, Ticks_COMPONENT_KEY, ()=>{
7956
- let { waterfallData: d } = withDatabase(globalID).getAllRawData();
7957
- if (d?.length > 0) {
7958
- if (d.at(0)?.length === 0) d = d?.filter?.((i)=>i?.length > 0);
7959
- const start = d.at(-1)?.timestamp;
7960
- const end = d.at(0)?.timestamp;
7961
- if (start && end) setTickFormat((start - end) / 1e3);
7962
- }
7963
- });
7964
- }, [
7965
- id,
7966
- globalID
7967
- ]);
7968
- return /*#__PURE__*/ (0, __WEBPACK_EXTERNAL_MODULE_react_jsx_runtime_225474f2__.jsxs)("div", {
7969
- className: components_Ticks_styles_module.ticks,
7970
- style: {
7971
- alignItems: inside ? 'flex-start' : 'flex-end'
7972
- },
7973
- children: [
7974
- /*#__PURE__*/ (0, __WEBPACK_EXTERNAL_MODULE_react_jsx_runtime_225474f2__.jsx)("div", {
7975
- className: components_Ticks_styles_module.start,
7976
- children: "0"
7977
- }),
7978
- /*#__PURE__*/ (0, __WEBPACK_EXTERNAL_MODULE_react_jsx_runtime_225474f2__.jsx)("div", {
7979
- className: components_Ticks_styles_module.end,
7980
- title: "\u5355\u4F4D\uFF1A\u79D2",
7981
- children: tickFormat?.toFixed(1)
7982
- })
7983
- ]
7375
+ }, `tick-${position}`))
7984
7376
  });
7985
7377
  };
7986
- const components_Ticks = Ticks_Ticks;
7987
- var Default_styles_module = __webpack_require__("../../../../../../node_modules/.pnpm/@rsbuild+core@1.3.18/node_modules/@rsbuild/core/compiled/css-loader/index.js??ruleSet[1].rules[11].use[1]!builtin:lightningcss-loader??ruleSet[1].rules[11].use[2]!../../../../../../node_modules/.pnpm/@rsbuild+plugin-less@1.5.0_@rsbuild+core@1.6.9/node_modules/@rsbuild/plugin-less/compiled/less-loader/index.js??ruleSet[1].rules[11].use[3]!./src/components/AxisY/heatmap/type/Default/styles.module.less");
7378
+ const components_Ticks = /*#__PURE__*/ __WEBPACK_EXTERNAL_MODULE_react__["default"].memo(Ticks_Ticks);
7379
+ var Default_styles_module = __webpack_require__("../../../../../../node_modules/.pnpm/@rsbuild+core@1.3.18/node_modules/@rsbuild/core/compiled/css-loader/index.js??ruleSet[1].rules[11].use[1]!builtin:lightningcss-loader??ruleSet[1].rules[11].use[2]!../../../../../../node_modules/.pnpm/@rsbuild+plugin-less@1.5.0_@rsbuild+core@1.6.12/node_modules/@rsbuild/plugin-less/compiled/less-loader/index.js??ruleSet[1].rules[11].use[3]!./src/components/AxisY/heatmap/type/Default/styles.module.less");
7988
7380
  var Default_styles_module_options = {};
7989
7381
  Default_styles_module_options.styleTagTransform = styleTagTransform_default();
7990
7382
  Default_styles_module_options.setAttributes = setAttributesWithoutAttributes_default();
@@ -7994,7 +7386,6 @@ Default_styles_module_options.insertStyleElement = insertStyleElement_default();
7994
7386
  injectStylesIntoStyleTag_default()(Default_styles_module.Z, Default_styles_module_options);
7995
7387
  const type_Default_styles_module = Default_styles_module.Z && Default_styles_module.Z.locals ? Default_styles_module.Z.locals : void 0;
7996
7388
  const Default_Default = (props)=>{
7997
- const { state: { axisY: { heatmapFullTicks } } } = useStore_useStore();
7998
7389
  const { axisYWidth, marginLeft } = useAxisYWidth_useAxisYWidth();
7999
7390
  return /*#__PURE__*/ (0, __WEBPACK_EXTERNAL_MODULE_react_jsx_runtime_225474f2__.jsx)("div", {
8000
7391
  className: type_Default_styles_module.axisyheatmapdefault,
@@ -8002,23 +7393,21 @@ const Default_Default = (props)=>{
8002
7393
  width: axisYWidth,
8003
7394
  marginLeft
8004
7395
  },
8005
- children: heatmapFullTicks ? /*#__PURE__*/ (0, __WEBPACK_EXTERNAL_MODULE_react_jsx_runtime_225474f2__.jsx)(FullTicks, {
8006
- ...props
8007
- }) : /*#__PURE__*/ (0, __WEBPACK_EXTERNAL_MODULE_react_jsx_runtime_225474f2__.jsx)(components_Ticks, {
7396
+ children: /*#__PURE__*/ (0, __WEBPACK_EXTERNAL_MODULE_react_jsx_runtime_225474f2__.jsx)(components_Ticks, {
8008
7397
  ...props
8009
7398
  })
8010
7399
  });
8011
7400
  };
8012
7401
  const Default = Default_Default;
8013
- var Default_GradientRibbon_styles_module = __webpack_require__("../../../../../../../node_modules/.pnpm/@rsbuild+core@1.3.18/node_modules/@rsbuild/core/compiled/css-loader/index.js??ruleSet[1].rules[11].use[1]!builtin:lightningcss-loader??ruleSet[1].rules[11].use[2]!../../../../../../../node_modules/.pnpm/@rsbuild+plugin-less@1.5.0_@rsbuild+core@1.6.9/node_modules/@rsbuild/plugin-less/compiled/less-loader/index.js??ruleSet[1].rules[11].use[3]!./src/components/AxisY/heatmap/type/Default/GradientRibbon/styles.module.less");
8014
- var Default_GradientRibbon_styles_module_options = {};
8015
- Default_GradientRibbon_styles_module_options.styleTagTransform = styleTagTransform_default();
8016
- Default_GradientRibbon_styles_module_options.setAttributes = setAttributesWithoutAttributes_default();
8017
- Default_GradientRibbon_styles_module_options.insert = insertBySelector_default().bind(null, "head");
8018
- Default_GradientRibbon_styles_module_options.domAPI = styleDomAPI_default();
8019
- Default_GradientRibbon_styles_module_options.insertStyleElement = insertStyleElement_default();
8020
- injectStylesIntoStyleTag_default()(Default_GradientRibbon_styles_module.Z, Default_GradientRibbon_styles_module_options);
8021
- Default_GradientRibbon_styles_module.Z && Default_GradientRibbon_styles_module.Z.locals && Default_GradientRibbon_styles_module.Z.locals;
7402
+ var GradientRibbon_styles_module = __webpack_require__("../../../../../../../node_modules/.pnpm/@rsbuild+core@1.3.18/node_modules/@rsbuild/core/compiled/css-loader/index.js??ruleSet[1].rules[11].use[1]!builtin:lightningcss-loader??ruleSet[1].rules[11].use[2]!../../../../../../../node_modules/.pnpm/@rsbuild+plugin-less@1.5.0_@rsbuild+core@1.6.12/node_modules/@rsbuild/plugin-less/compiled/less-loader/index.js??ruleSet[1].rules[11].use[3]!./src/components/AxisY/heatmap/type/Default/GradientRibbon/styles.module.less");
7403
+ var GradientRibbon_styles_module_options = {};
7404
+ GradientRibbon_styles_module_options.styleTagTransform = styleTagTransform_default();
7405
+ GradientRibbon_styles_module_options.setAttributes = setAttributesWithoutAttributes_default();
7406
+ GradientRibbon_styles_module_options.insert = insertBySelector_default().bind(null, "head");
7407
+ GradientRibbon_styles_module_options.domAPI = styleDomAPI_default();
7408
+ GradientRibbon_styles_module_options.insertStyleElement = insertStyleElement_default();
7409
+ injectStylesIntoStyleTag_default()(GradientRibbon_styles_module.Z, GradientRibbon_styles_module_options);
7410
+ GradientRibbon_styles_module.Z && GradientRibbon_styles_module.Z.locals && GradientRibbon_styles_module.Z.locals;
8022
7411
  getGradient();
8023
7412
  const AxisYHeatmap = (props)=>{
8024
7413
  const { chart } = props;
@@ -8115,7 +7504,7 @@ function resetEventLevel(id, level) {
8115
7504
  const currentLevel = getEventLevel(id);
8116
7505
  if (level && currentLevel === level) getEventLevel(id, EVENT_PRIORITY_LEVEL_DEFAULT);
8117
7506
  }
8118
- var Popover_styles_module = __webpack_require__("../../../node_modules/.pnpm/@rsbuild+core@1.3.18/node_modules/@rsbuild/core/compiled/css-loader/index.js??ruleSet[1].rules[11].use[1]!builtin:lightningcss-loader??ruleSet[1].rules[11].use[2]!../../../node_modules/.pnpm/@rsbuild+plugin-less@1.5.0_@rsbuild+core@1.6.9/node_modules/@rsbuild/plugin-less/compiled/less-loader/index.js??ruleSet[1].rules[11].use[3]!./src/components/Popover/styles.module.less");
7507
+ var Popover_styles_module = __webpack_require__("../../../node_modules/.pnpm/@rsbuild+core@1.3.18/node_modules/@rsbuild/core/compiled/css-loader/index.js??ruleSet[1].rules[11].use[1]!builtin:lightningcss-loader??ruleSet[1].rules[11].use[2]!../../../node_modules/.pnpm/@rsbuild+plugin-less@1.5.0_@rsbuild+core@1.6.12/node_modules/@rsbuild/plugin-less/compiled/less-loader/index.js??ruleSet[1].rules[11].use[3]!./src/components/Popover/styles.module.less");
8119
7508
  var Popover_styles_module_options = {};
8120
7509
  Popover_styles_module_options.styleTagTransform = styleTagTransform_default();
8121
7510
  Popover_styles_module_options.setAttributes = setAttributesWithoutAttributes_default();
@@ -8627,7 +8016,7 @@ function getStableOrder(globalID, currentNames) {
8627
8016
  }
8628
8017
  return stored;
8629
8018
  }
8630
- function useFilteredSeries_useFilteredSeries(globalID, filter) {
8019
+ function useFilteredSeries(globalID, filter) {
8631
8020
  const { series } = useSeriesManager(globalID);
8632
8021
  const { state: { series: { legendExternal } } } = useStore_useStore();
8633
8022
  const filteredData = (0, __WEBPACK_EXTERNAL_MODULE_react__.useMemo)(()=>{
@@ -8684,7 +8073,7 @@ const SIGNAL_TYPE_MAP = {
8684
8073
  isLegitimate: false
8685
8074
  }
8686
8075
  };
8687
- var StationInfo_styles_module = __webpack_require__("../../../../node_modules/.pnpm/@rsbuild+core@1.3.18/node_modules/@rsbuild/core/compiled/css-loader/index.js??ruleSet[1].rules[11].use[1]!builtin:lightningcss-loader??ruleSet[1].rules[11].use[2]!../../../../node_modules/.pnpm/@rsbuild+plugin-less@1.5.0_@rsbuild+core@1.6.9/node_modules/@rsbuild/plugin-less/compiled/less-loader/index.js??ruleSet[1].rules[11].use[3]!./src/components/FrequencyDataBoard/StationInfo/styles.module.less");
8076
+ var StationInfo_styles_module = __webpack_require__("../../../../node_modules/.pnpm/@rsbuild+core@1.3.18/node_modules/@rsbuild/core/compiled/css-loader/index.js??ruleSet[1].rules[11].use[1]!builtin:lightningcss-loader??ruleSet[1].rules[11].use[2]!../../../../node_modules/.pnpm/@rsbuild+plugin-less@1.5.0_@rsbuild+core@1.6.12/node_modules/@rsbuild/plugin-less/compiled/less-loader/index.js??ruleSet[1].rules[11].use[3]!./src/components/FrequencyDataBoard/StationInfo/styles.module.less");
8688
8077
  var StationInfo_styles_module_options = {};
8689
8078
  StationInfo_styles_module_options.styleTagTransform = styleTagTransform_default();
8690
8079
  StationInfo_styles_module_options.setAttributes = setAttributesWithoutAttributes_default();
@@ -8759,7 +8148,7 @@ const StationInfo_StationInfo = ({ stationInfo })=>{
8759
8148
  });
8760
8149
  };
8761
8150
  const StationInfo = /*#__PURE__*/ __WEBPACK_EXTERNAL_MODULE_react__["default"].memo(StationInfo_StationInfo);
8762
- var FrequencyDataBoard_styles_module = __webpack_require__("../../../node_modules/.pnpm/@rsbuild+core@1.3.18/node_modules/@rsbuild/core/compiled/css-loader/index.js??ruleSet[1].rules[11].use[1]!builtin:lightningcss-loader??ruleSet[1].rules[11].use[2]!../../../node_modules/.pnpm/@rsbuild+plugin-less@1.5.0_@rsbuild+core@1.6.9/node_modules/@rsbuild/plugin-less/compiled/less-loader/index.js??ruleSet[1].rules[11].use[3]!./src/components/FrequencyDataBoard/styles.module.less");
8151
+ var FrequencyDataBoard_styles_module = __webpack_require__("../../../node_modules/.pnpm/@rsbuild+core@1.3.18/node_modules/@rsbuild/core/compiled/css-loader/index.js??ruleSet[1].rules[11].use[1]!builtin:lightningcss-loader??ruleSet[1].rules[11].use[2]!../../../node_modules/.pnpm/@rsbuild+plugin-less@1.5.0_@rsbuild+core@1.6.12/node_modules/@rsbuild/plugin-less/compiled/less-loader/index.js??ruleSet[1].rules[11].use[3]!./src/components/FrequencyDataBoard/styles.module.less");
8763
8152
  var FrequencyDataBoard_styles_module_options = {};
8764
8153
  FrequencyDataBoard_styles_module_options.styleTagTransform = styleTagTransform_default();
8765
8154
  FrequencyDataBoard_styles_module_options.setAttributes = setAttributesWithoutAttributes_default();
@@ -8770,7 +8159,7 @@ injectStylesIntoStyleTag_default()(FrequencyDataBoard_styles_module.Z, Frequency
8770
8159
  const components_FrequencyDataBoard_styles_module = FrequencyDataBoard_styles_module.Z && FrequencyDataBoard_styles_module.Z.locals ? FrequencyDataBoard_styles_module.Z.locals : void 0;
8771
8160
  const FrequencyDataBoard_FrequencyDataBoard = ({ left, updateKey, onChange })=>{
8772
8161
  const { state: { axisY, axisX: { frequencyFormat, unit }, globalID } } = useStore_useStore();
8773
- const filteredSeries = useFilteredSeries_useFilteredSeries(globalID);
8162
+ const filteredSeries = useFilteredSeries(globalID);
8774
8163
  const index = (0, __WEBPACK_EXTERNAL_MODULE_react__.useRef)(Number.NaN);
8775
8164
  const calculateIndex = (0, __WEBPACK_EXTERNAL_MODULE_react__.useCallback)((data, n, series)=>{
8776
8165
  const values = data[n] || [];
@@ -8913,7 +8302,7 @@ const HeatmapPopover = ({ id })=>{
8913
8302
  const newValue = yValue[xIndex];
8914
8303
  setValue(Number.isFinite(newValue) ? newValue.toFixed(1) : '');
8915
8304
  const timestamp = yValue.timestamp;
8916
- if (timestamp) setTimestamp((0, utils.Fc)(timestamp));
8305
+ if (timestamp) setTimestamp(timestamp);
8917
8306
  }
8918
8307
  }
8919
8308
  }
@@ -8982,7 +8371,7 @@ const LevelStreamPopover = ({ id })=>{
8982
8371
  setValue(Number.isFinite(dataValue) ? dataValue.toFixed(1) : '');
8983
8372
  if (levelStreamData.timestampData && levelStreamData.timestampData.length > clampedIndex) {
8984
8373
  const timestampValue = levelStreamData.timestampData[clampedIndex];
8985
- if (timestampValue) setTimestamp((0, utils.Fc)(timestampValue));
8374
+ if (timestampValue) setTimestamp((0, utils.i$)(Number(timestampValue)));
8986
8375
  }
8987
8376
  }
8988
8377
  }
@@ -9070,7 +8459,7 @@ const OccupancyPopover = ()=>{
9070
8459
  ]
9071
8460
  });
9072
8461
  };
9073
- var Cursor_styles_module = __webpack_require__("../../../node_modules/.pnpm/@rsbuild+core@1.3.18/node_modules/@rsbuild/core/compiled/css-loader/index.js??ruleSet[1].rules[11].use[1]!builtin:lightningcss-loader??ruleSet[1].rules[11].use[2]!../../../node_modules/.pnpm/@rsbuild+plugin-less@1.5.0_@rsbuild+core@1.6.9/node_modules/@rsbuild/plugin-less/compiled/less-loader/index.js??ruleSet[1].rules[11].use[3]!./src/components/Cursor/styles.module.less");
8462
+ var Cursor_styles_module = __webpack_require__("../../../node_modules/.pnpm/@rsbuild+core@1.3.18/node_modules/@rsbuild/core/compiled/css-loader/index.js??ruleSet[1].rules[11].use[1]!builtin:lightningcss-loader??ruleSet[1].rules[11].use[2]!../../../node_modules/.pnpm/@rsbuild+plugin-less@1.5.0_@rsbuild+core@1.6.12/node_modules/@rsbuild/plugin-less/compiled/less-loader/index.js??ruleSet[1].rules[11].use[3]!./src/components/Cursor/styles.module.less");
9074
8463
  var Cursor_styles_module_options = {};
9075
8464
  Cursor_styles_module_options.styleTagTransform = styleTagTransform_default();
9076
8465
  Cursor_styles_module_options.setAttributes = setAttributesWithoutAttributes_default();
@@ -9179,7 +8568,7 @@ const Cursor = ({ id, type })=>{
9179
8568
  });
9180
8569
  };
9181
8570
  const components_Cursor = Cursor;
9182
- var EventBus_styles_module = __webpack_require__("../../../node_modules/.pnpm/@rsbuild+core@1.3.18/node_modules/@rsbuild/core/compiled/css-loader/index.js??ruleSet[1].rules[11].use[1]!builtin:lightningcss-loader??ruleSet[1].rules[11].use[2]!../../../node_modules/.pnpm/@rsbuild+plugin-less@1.5.0_@rsbuild+core@1.6.9/node_modules/@rsbuild/plugin-less/compiled/less-loader/index.js??ruleSet[1].rules[11].use[3]!./src/components/EventBus/styles.module.less");
8571
+ var EventBus_styles_module = __webpack_require__("../../../node_modules/.pnpm/@rsbuild+core@1.3.18/node_modules/@rsbuild/core/compiled/css-loader/index.js??ruleSet[1].rules[11].use[1]!builtin:lightningcss-loader??ruleSet[1].rules[11].use[2]!../../../node_modules/.pnpm/@rsbuild+plugin-less@1.5.0_@rsbuild+core@1.6.12/node_modules/@rsbuild/plugin-less/compiled/less-loader/index.js??ruleSet[1].rules[11].use[3]!./src/components/EventBus/styles.module.less");
9183
8572
  var EventBus_styles_module_options = {};
9184
8573
  EventBus_styles_module_options.styleTagTransform = styleTagTransform_default();
9185
8574
  EventBus_styles_module_options.setAttributes = setAttributesWithoutAttributes_default();
@@ -9228,7 +8617,7 @@ function useKeyEvent(globalID, EID) {
9228
8617
  EID
9229
8618
  ]);
9230
8619
  }
9231
- const EventBus = ({ id })=>{
8620
+ const EventBus_EventBus = ({ id })=>{
9232
8621
  const { state: { globalID } } = useStore_useStore();
9233
8622
  const EID = (0, __WEBPACK_EXTERNAL_MODULE_react__.useMemo)(()=>getEID(id), [
9234
8623
  id
@@ -9351,8 +8740,8 @@ const EventBus = ({ id })=>{
9351
8740
  })
9352
8741
  });
9353
8742
  };
9354
- const components_EventBus = EventBus;
9355
- var Boundary_styles_module = __webpack_require__("../../../../node_modules/.pnpm/@rsbuild+core@1.3.18/node_modules/@rsbuild/core/compiled/css-loader/index.js??ruleSet[1].rules[11].use[1]!builtin:lightningcss-loader??ruleSet[1].rules[11].use[2]!../../../../node_modules/.pnpm/@rsbuild+plugin-less@1.5.0_@rsbuild+core@1.6.9/node_modules/@rsbuild/plugin-less/compiled/less-loader/index.js??ruleSet[1].rules[11].use[3]!./src/components/GridLines/Boundary/styles.module.less");
8743
+ const EventBus = EventBus_EventBus;
8744
+ var Boundary_styles_module = __webpack_require__("../../../../node_modules/.pnpm/@rsbuild+core@1.3.18/node_modules/@rsbuild/core/compiled/css-loader/index.js??ruleSet[1].rules[11].use[1]!builtin:lightningcss-loader??ruleSet[1].rules[11].use[2]!../../../../node_modules/.pnpm/@rsbuild+plugin-less@1.5.0_@rsbuild+core@1.6.12/node_modules/@rsbuild/plugin-less/compiled/less-loader/index.js??ruleSet[1].rules[11].use[3]!./src/components/GridLines/Boundary/styles.module.less");
9356
8745
  var Boundary_styles_module_options = {};
9357
8746
  Boundary_styles_module_options.styleTagTransform = styleTagTransform_default();
9358
8747
  Boundary_styles_module_options.setAttributes = setAttributesWithoutAttributes_default();
@@ -9375,12 +8764,8 @@ const defaultAreaInfoResult = {
9375
8764
  endIndex: 0,
9376
8765
  startCol: 0,
9377
8766
  endCol: 0,
9378
- startTimestamp: 0,
9379
- startTimestampFormat: '',
9380
- endTimestamp: 0,
9381
- endTimestampFormat: '',
9382
- duration: 0,
9383
- durationFormat: '',
8767
+ startTimestamp: '',
8768
+ endTimestamp: '',
9384
8769
  startFrequency: 0,
9385
8770
  startFrequencyFormat: '',
9386
8771
  endFrequency: 0,
@@ -9405,20 +8790,15 @@ function calculateAreaInfo({ endLeft, startLeft, startTop, endTop, frequencyForm
9405
8790
  end: Math.round(Number(frequencyFormat(endLeft)) * tools_PRECISION) / tools_PRECISION
9406
8791
  };
9407
8792
  const bandwidth = Math.abs(frequencies.end - frequencies.start);
9408
- const startTimestamp = waterfallData[indices.top]?.timestamp || 0;
9409
- const endTimestamp = waterfallData[indices.bottom]?.timestamp || 0;
9410
- const duration = endTimestamp - startTimestamp;
8793
+ const startTimestamp = waterfallData[indices.top]?.timestamp || '';
8794
+ const endTimestamp = waterfallData[indices.bottom]?.timestamp || '';
9411
8795
  const result = {
9412
8796
  startIndex: indices.top,
9413
8797
  endIndex: indices.bottom,
9414
8798
  startCol: indices.start,
9415
8799
  endCol: indices.end,
9416
8800
  startTimestamp,
9417
- startTimestampFormat: (0, utils.Fc)(startTimestamp),
9418
8801
  endTimestamp,
9419
- endTimestampFormat: (0, utils.Fc)(endTimestamp),
9420
- duration,
9421
- durationFormat: (0, utils.lj)(duration / 1000, 3),
9422
8802
  startFrequency: frequencies.start,
9423
8803
  startFrequencyFormat: String(frequencies.start),
9424
8804
  endFrequency: frequencies.end,
@@ -9430,7 +8810,7 @@ function calculateAreaInfo({ endLeft, startLeft, startTop, endTop, frequencyForm
9430
8810
  return result;
9431
8811
  }
9432
8812
  const heatmapCaptureUpdate = (globalID, func)=>subscription_createSubscriptionManager(`heatmapCaptureUpdate-${globalID}`, '0', func);
9433
- var Area_styles_module = __webpack_require__("../../../../node_modules/.pnpm/@rsbuild+core@1.3.18/node_modules/@rsbuild/core/compiled/css-loader/index.js??ruleSet[1].rules[11].use[1]!builtin:lightningcss-loader??ruleSet[1].rules[11].use[2]!../../../../node_modules/.pnpm/@rsbuild+plugin-less@1.5.0_@rsbuild+core@1.6.9/node_modules/@rsbuild/plugin-less/compiled/less-loader/index.js??ruleSet[1].rules[11].use[3]!./src/components/HeatmapCapture/Area/styles.module.less");
8813
+ var Area_styles_module = __webpack_require__("../../../../node_modules/.pnpm/@rsbuild+core@1.3.18/node_modules/@rsbuild/core/compiled/css-loader/index.js??ruleSet[1].rules[11].use[1]!builtin:lightningcss-loader??ruleSet[1].rules[11].use[2]!../../../../node_modules/.pnpm/@rsbuild+plugin-less@1.5.0_@rsbuild+core@1.6.12/node_modules/@rsbuild/plugin-less/compiled/less-loader/index.js??ruleSet[1].rules[11].use[3]!./src/components/HeatmapCapture/Area/styles.module.less");
9434
8814
  var Area_styles_module_options = {};
9435
8815
  Area_styles_module_options.styleTagTransform = styleTagTransform_default();
9436
8816
  Area_styles_module_options.setAttributes = setAttributesWithoutAttributes_default();
@@ -9440,7 +8820,7 @@ Area_styles_module_options.insertStyleElement = insertStyleElement_default();
9440
8820
  injectStylesIntoStyleTag_default()(Area_styles_module.Z, Area_styles_module_options);
9441
8821
  const HeatmapCapture_Area_styles_module = Area_styles_module.Z && Area_styles_module.Z.locals ? Area_styles_module.Z.locals : void 0;
9442
8822
  const Area_COMPONENT_KEY = constants_ToolType.HeatmapCapture;
9443
- const Area_Area = (props)=>{
8823
+ const Area = (props)=>{
9444
8824
  const { state: { heatmapCapture, segments, axisX: { frequencyFormat, unit }, system, globalID } } = useStore_useStore();
9445
8825
  const { id } = props;
9446
8826
  const { type, show, sync, onChange } = heatmapCapture;
@@ -9564,7 +8944,7 @@ const Area_Area = (props)=>{
9564
8944
  children: "\u8D77\u59CB\u65F6\u95F4"
9565
8945
  }),
9566
8946
  /*#__PURE__*/ (0, __WEBPACK_EXTERNAL_MODULE_react_jsx_runtime_225474f2__.jsx)("div", {
9567
- children: info?.startTimestampFormat
8947
+ children: info?.startTimestamp
9568
8948
  })
9569
8949
  ]
9570
8950
  }),
@@ -9575,18 +8955,7 @@ const Area_Area = (props)=>{
9575
8955
  children: "\u7ED3\u675F\u65F6\u95F4"
9576
8956
  }),
9577
8957
  /*#__PURE__*/ (0, __WEBPACK_EXTERNAL_MODULE_react_jsx_runtime_225474f2__.jsx)("div", {
9578
- children: info?.endTimestampFormat
9579
- })
9580
- ]
9581
- }),
9582
- (0, utils.Ri)(info.durationFormat) && /*#__PURE__*/ (0, __WEBPACK_EXTERNAL_MODULE_react_jsx_runtime_225474f2__.jsxs)("div", {
9583
- className: HeatmapCapture_Area_styles_module.item,
9584
- children: [
9585
- /*#__PURE__*/ (0, __WEBPACK_EXTERNAL_MODULE_react_jsx_runtime_225474f2__.jsx)("div", {
9586
- children: "\u65F6\u95F4\u5DEE"
9587
- }),
9588
- /*#__PURE__*/ (0, __WEBPACK_EXTERNAL_MODULE_react_jsx_runtime_225474f2__.jsx)("div", {
9589
- children: `${info.durationFormat}s`
8958
+ children: info?.endTimestamp
9590
8959
  })
9591
8960
  ]
9592
8961
  })
@@ -9607,8 +8976,8 @@ const Area_Area = (props)=>{
9607
8976
  ]
9608
8977
  });
9609
8978
  };
9610
- const Area = Area_Area;
9611
- var RowIndex_styles_module = __webpack_require__("../../../../node_modules/.pnpm/@rsbuild+core@1.3.18/node_modules/@rsbuild/core/compiled/css-loader/index.js??ruleSet[1].rules[11].use[1]!builtin:lightningcss-loader??ruleSet[1].rules[11].use[2]!../../../../node_modules/.pnpm/@rsbuild+plugin-less@1.5.0_@rsbuild+core@1.6.9/node_modules/@rsbuild/plugin-less/compiled/less-loader/index.js??ruleSet[1].rules[11].use[3]!./src/components/HeatmapCapture/RowIndex/styles.module.less");
8979
+ const HeatmapCapture_Area = Area;
8980
+ var RowIndex_styles_module = __webpack_require__("../../../../node_modules/.pnpm/@rsbuild+core@1.3.18/node_modules/@rsbuild/core/compiled/css-loader/index.js??ruleSet[1].rules[11].use[1]!builtin:lightningcss-loader??ruleSet[1].rules[11].use[2]!../../../../node_modules/.pnpm/@rsbuild+plugin-less@1.5.0_@rsbuild+core@1.6.12/node_modules/@rsbuild/plugin-less/compiled/less-loader/index.js??ruleSet[1].rules[11].use[3]!./src/components/HeatmapCapture/RowIndex/styles.module.less");
9612
8981
  var RowIndex_styles_module_options = {};
9613
8982
  RowIndex_styles_module_options.styleTagTransform = styleTagTransform_default();
9614
8983
  RowIndex_styles_module_options.setAttributes = setAttributesWithoutAttributes_default();
@@ -9638,7 +9007,6 @@ const RowIndex = ({ id })=>{
9638
9007
  const rowData = {
9639
9008
  data: waterfallData[newRowIndex],
9640
9009
  timestamp: newTimestamp,
9641
- timestampFormat: (0, utils.Fc)(newTimestamp),
9642
9010
  rowIndex: newRowIndex
9643
9011
  };
9644
9012
  setInfo(rowData);
@@ -9725,7 +9093,7 @@ const RowIndex = ({ id })=>{
9725
9093
  /*#__PURE__*/ (0, __WEBPACK_EXTERNAL_MODULE_react_jsx_runtime_225474f2__.jsxs)("span", {
9726
9094
  children: [
9727
9095
  "\u65F6\u95F4",
9728
- info?.timestampFormat
9096
+ info?.timestamp
9729
9097
  ]
9730
9098
  })
9731
9099
  ]
@@ -9734,7 +9102,7 @@ const RowIndex = ({ id })=>{
9734
9102
  });
9735
9103
  };
9736
9104
  const HeatmapCapture_RowIndex = RowIndex;
9737
- var Slider_styles_module = __webpack_require__("../../../../node_modules/.pnpm/@rsbuild+core@1.3.18/node_modules/@rsbuild/core/compiled/css-loader/index.js??ruleSet[1].rules[11].use[1]!builtin:lightningcss-loader??ruleSet[1].rules[11].use[2]!../../../../node_modules/.pnpm/@rsbuild+plugin-less@1.5.0_@rsbuild+core@1.6.9/node_modules/@rsbuild/plugin-less/compiled/less-loader/index.js??ruleSet[1].rules[11].use[3]!./src/components/HeatmapCapture/Slider/styles.module.less");
9105
+ var Slider_styles_module = __webpack_require__("../../../../node_modules/.pnpm/@rsbuild+core@1.3.18/node_modules/@rsbuild/core/compiled/css-loader/index.js??ruleSet[1].rules[11].use[1]!builtin:lightningcss-loader??ruleSet[1].rules[11].use[2]!../../../../node_modules/.pnpm/@rsbuild+plugin-less@1.5.0_@rsbuild+core@1.6.12/node_modules/@rsbuild/plugin-less/compiled/less-loader/index.js??ruleSet[1].rules[11].use[3]!./src/components/HeatmapCapture/Slider/styles.module.less");
9738
9106
  var Slider_styles_module_options = {};
9739
9107
  Slider_styles_module_options.styleTagTransform = styleTagTransform_default();
9740
9108
  Slider_styles_module_options.setAttributes = setAttributesWithoutAttributes_default();
@@ -9790,9 +9158,11 @@ const Slider = ({ id })=>{
9790
9158
  const { position: pos, height: h, leftPosition: left, width: w } = r;
9791
9159
  const endIndex = Math.round((100 - pos) / 100 * (len - 1));
9792
9160
  const startIndex = Math.round((100 - (pos + h)) / 100 * (len - 1));
9793
- const startTimestamp = heatmapData[startIndex]?.timestamp;
9794
- const endTimestamp = heatmapData[endIndex]?.timestamp;
9795
- const duration = endTimestamp - startTimestamp;
9161
+ const startTimestamp = heatmapData[startIndex]?.timestamp ?? '';
9162
+ const endTimestamp = heatmapData[endIndex]?.timestamp ?? '';
9163
+ const startTs = (0, utils.JP)(startTimestamp);
9164
+ const endTs = (0, utils.JP)(endTimestamp);
9165
+ const duration = startTs > 0 && endTs > 0 ? Math.abs(endTs - startTs) : 0;
9796
9166
  const colCount = heatmapData[0]?.length || 0;
9797
9167
  const startCol = Math.max(0, Math.min(colCount - 1, Math.ceil(colCount * left / 100) - 1));
9798
9168
  const endCol = Math.max(0, Math.min(colCount - 1, Math.ceil(colCount * (left + w) / 100) - 1));
@@ -9802,23 +9172,21 @@ const Slider = ({ id })=>{
9802
9172
  const PRECISION = 1e4;
9803
9173
  const startFrequency = startFreqStr ? Math.round(Number(startFreqStr) * PRECISION) / PRECISION : 0;
9804
9174
  const endFrequency = endFreqStr ? Math.round(Number(endFreqStr) * PRECISION) / PRECISION : 0;
9175
+ const bandwidth = Math.abs(endFrequency - startFrequency);
9805
9176
  return {
9806
9177
  startIndex,
9807
9178
  endIndex,
9808
9179
  startTimestamp,
9809
- startTimestampFormat: (0, utils.Fc)(startTimestamp),
9810
9180
  endTimestamp,
9811
- endTimestampFormat: (0, utils.Fc)(endTimestamp),
9812
9181
  duration,
9813
- durationFormat: (duration / 1000).toFixed(3),
9814
9182
  startCol,
9815
9183
  endCol,
9816
9184
  startFrequency,
9817
9185
  startFrequencyFormat: String(startFrequency),
9818
9186
  endFrequency,
9819
9187
  endFrequencyFormat: String(endFrequency),
9820
- bandwidth: Math.abs(endFrequency - startFrequency),
9821
- bandwidthFormat: (0, utils.lj)(Math.abs(endFrequency - startFrequency))
9188
+ bandwidth,
9189
+ bandwidthFormat: (0, utils.lj)(bandwidth)
9822
9190
  };
9823
9191
  }, [
9824
9192
  getHeatmapData
@@ -10079,7 +9447,7 @@ const Slider = ({ id })=>{
10079
9447
  top: `${position}%`,
10080
9448
  left: `${leftPosition + width / 2}%`
10081
9449
  },
10082
- children: info?.endTimestampFormat
9450
+ children: info?.endTimestamp
10083
9451
  }),
10084
9452
  /*#__PURE__*/ (0, __WEBPACK_EXTERNAL_MODULE_react_jsx_runtime_225474f2__.jsx)("div", {
10085
9453
  className: `${HeatmapCapture_Slider_styles_module.externalLabel} ${bounds.nearBottom ? HeatmapCapture_Slider_styles_module.externalLabelBottomInner : HeatmapCapture_Slider_styles_module.externalLabelBottom} ${bounds.centerNearLeft ? HeatmapCapture_Slider_styles_module.externalLabelHorizontalRight : bounds.centerNearRight ? HeatmapCapture_Slider_styles_module.externalLabelHorizontalLeft : ''}`,
@@ -10087,7 +9455,7 @@ const Slider = ({ id })=>{
10087
9455
  top: `${position + height}%`,
10088
9456
  left: `${leftPosition + width / 2}%`
10089
9457
  },
10090
- children: info?.startTimestampFormat
9458
+ children: info?.startTimestamp
10091
9459
  }),
10092
9460
  /*#__PURE__*/ (0, __WEBPACK_EXTERNAL_MODULE_react_jsx_runtime_225474f2__.jsxs)("div", {
10093
9461
  className: HeatmapCapture_Slider_styles_module.slider,
@@ -10115,15 +9483,14 @@ const Slider = ({ id })=>{
10115
9483
  /*#__PURE__*/ (0, __WEBPACK_EXTERNAL_MODULE_react_jsx_runtime_225474f2__.jsxs)("div", {
10116
9484
  children: [
10117
9485
  "\u5E26\u5BBD:",
10118
- ' ',
10119
9486
  info?.bandwidth !== void 0 ? (1000 * info.bandwidth).toFixed(2) : '',
10120
9487
  unitKHz
10121
9488
  ]
10122
9489
  }),
10123
9490
  /*#__PURE__*/ (0, __WEBPACK_EXTERNAL_MODULE_react_jsx_runtime_225474f2__.jsxs)("div", {
10124
9491
  children: [
10125
- "\u65F6\u957F: ",
10126
- info?.durationFormat,
9492
+ "\u65F6\u957F:",
9493
+ info?.duration !== void 0 ? (info.duration / 1000).toFixed(3) : '',
10127
9494
  "s"
10128
9495
  ]
10129
9496
  })
@@ -10152,12 +9519,12 @@ const HeatmapCapture_HeatmapCapture = (props)=>{
10152
9519
  ...props
10153
9520
  }) : type === store_HeatmapCaptureType.RowIndex ? /*#__PURE__*/ (0, __WEBPACK_EXTERNAL_MODULE_react_jsx_runtime_225474f2__.jsx)(HeatmapCapture_RowIndex, {
10154
9521
  ...props
10155
- }) : /*#__PURE__*/ (0, __WEBPACK_EXTERNAL_MODULE_react_jsx_runtime_225474f2__.jsx)(Area, {
9522
+ }) : /*#__PURE__*/ (0, __WEBPACK_EXTERNAL_MODULE_react_jsx_runtime_225474f2__.jsx)(HeatmapCapture_Area, {
10156
9523
  ...props
10157
9524
  });
10158
9525
  };
10159
9526
  const HeatmapCapture = HeatmapCapture_HeatmapCapture;
10160
- var PluginBox_styles_module = __webpack_require__("../../../node_modules/.pnpm/@rsbuild+core@1.3.18/node_modules/@rsbuild/core/compiled/css-loader/index.js??ruleSet[1].rules[11].use[1]!builtin:lightningcss-loader??ruleSet[1].rules[11].use[2]!../../../node_modules/.pnpm/@rsbuild+plugin-less@1.5.0_@rsbuild+core@1.6.9/node_modules/@rsbuild/plugin-less/compiled/less-loader/index.js??ruleSet[1].rules[11].use[3]!./src/components/PluginBox/styles.module.less");
9527
+ var PluginBox_styles_module = __webpack_require__("../../../node_modules/.pnpm/@rsbuild+core@1.3.18/node_modules/@rsbuild/core/compiled/css-loader/index.js??ruleSet[1].rules[11].use[1]!builtin:lightningcss-loader??ruleSet[1].rules[11].use[2]!../../../node_modules/.pnpm/@rsbuild+plugin-less@1.5.0_@rsbuild+core@1.6.12/node_modules/@rsbuild/plugin-less/compiled/less-loader/index.js??ruleSet[1].rules[11].use[3]!./src/components/PluginBox/styles.module.less");
10161
9528
  var PluginBox_styles_module_options = {};
10162
9529
  PluginBox_styles_module_options.styleTagTransform = styleTagTransform_default();
10163
9530
  PluginBox_styles_module_options.setAttributes = setAttributesWithoutAttributes_default();
@@ -10511,6 +9878,105 @@ function useZoomEvent(id, name) {
10511
9878
  handleDrag
10512
9879
  ]);
10513
9880
  }
9881
+ var ToolsBar_styles_module = __webpack_require__("../../../node_modules/.pnpm/@rsbuild+core@1.3.18/node_modules/@rsbuild/core/compiled/css-loader/index.js??ruleSet[1].rules[11].use[1]!builtin:lightningcss-loader??ruleSet[1].rules[11].use[2]!../../../node_modules/.pnpm/@rsbuild+plugin-less@1.5.0_@rsbuild+core@1.6.12/node_modules/@rsbuild/plugin-less/compiled/less-loader/index.js??ruleSet[1].rules[11].use[3]!./src/components/ToolsBar/styles.module.less");
9882
+ var ToolsBar_styles_module_options = {};
9883
+ ToolsBar_styles_module_options.styleTagTransform = styleTagTransform_default();
9884
+ ToolsBar_styles_module_options.setAttributes = setAttributesWithoutAttributes_default();
9885
+ ToolsBar_styles_module_options.insert = insertBySelector_default().bind(null, "head");
9886
+ ToolsBar_styles_module_options.domAPI = styleDomAPI_default();
9887
+ ToolsBar_styles_module_options.insertStyleElement = insertStyleElement_default();
9888
+ injectStylesIntoStyleTag_default()(ToolsBar_styles_module.Z, ToolsBar_styles_module_options);
9889
+ const components_ToolsBar_styles_module = ToolsBar_styles_module.Z && ToolsBar_styles_module.Z.locals ? ToolsBar_styles_module.Z.locals : void 0;
9890
+ const IconBox_IconBox = (props)=>/*#__PURE__*/ (0, __WEBPACK_EXTERNAL_MODULE_react_jsx_runtime_225474f2__.jsx)(components_Tooltip, {
9891
+ content: props.title,
9892
+ children: /*#__PURE__*/ (0, __WEBPACK_EXTERNAL_MODULE_react_jsx_runtime_225474f2__.jsx)("div", {
9893
+ className: `${components_ToolsBar_styles_module.IconBox} ${props.className}`,
9894
+ ...props,
9895
+ title: ""
9896
+ })
9897
+ });
9898
+ const ToolsBar_IconBox = IconBox_IconBox;
9899
+ var ToolsBar_GradientRibbon_styles_module = __webpack_require__("../../../../node_modules/.pnpm/@rsbuild+core@1.3.18/node_modules/@rsbuild/core/compiled/css-loader/index.js??ruleSet[1].rules[11].use[1]!builtin:lightningcss-loader??ruleSet[1].rules[11].use[2]!../../../../node_modules/.pnpm/@rsbuild+plugin-less@1.5.0_@rsbuild+core@1.6.12/node_modules/@rsbuild/plugin-less/compiled/less-loader/index.js??ruleSet[1].rules[11].use[3]!./src/components/ToolsBar/GradientRibbon/styles.module.less");
9900
+ var ToolsBar_GradientRibbon_styles_module_options = {};
9901
+ ToolsBar_GradientRibbon_styles_module_options.styleTagTransform = styleTagTransform_default();
9902
+ ToolsBar_GradientRibbon_styles_module_options.setAttributes = setAttributesWithoutAttributes_default();
9903
+ ToolsBar_GradientRibbon_styles_module_options.insert = insertBySelector_default().bind(null, "head");
9904
+ ToolsBar_GradientRibbon_styles_module_options.domAPI = styleDomAPI_default();
9905
+ ToolsBar_GradientRibbon_styles_module_options.insertStyleElement = insertStyleElement_default();
9906
+ injectStylesIntoStyleTag_default()(ToolsBar_GradientRibbon_styles_module.Z, ToolsBar_GradientRibbon_styles_module_options);
9907
+ const components_ToolsBar_GradientRibbon_styles_module = ToolsBar_GradientRibbon_styles_module.Z && ToolsBar_GradientRibbon_styles_module.Z.locals ? ToolsBar_GradientRibbon_styles_module.Z.locals : void 0;
9908
+ const handleColor = (globalID, name, func)=>subscription_createSubscriptionManager(`handleColor-${globalID}`, name, func);
9909
+ const GradientRibbon_config = getConfig();
9910
+ const gradientConfig = GradientRibbon_config.gradient;
9911
+ const initialIndex = gradientConfig.index;
9912
+ const gradientItems = [
9913
+ ...gradientConfig.item
9914
+ ];
9915
+ const GradientRibbon_GradientRibbon = ()=>{
9916
+ const { state: { axisY: { range }, globalID } } = useStore_useStore();
9917
+ const [minValue, maxValue] = range;
9918
+ const [currentIndex, setCurrentIndex] = (0, __WEBPACK_EXTERNAL_MODULE_react__.useState)(initialIndex);
9919
+ const currentColors = (0, __WEBPACK_EXTERNAL_MODULE_react__.useMemo)(()=>[
9920
+ ...gradientItems[currentIndex]
9921
+ ].reverse().map(hexToRGBA), [
9922
+ currentIndex
9923
+ ]);
9924
+ const handleGradientChange = (0, __WEBPACK_EXTERNAL_MODULE_react__.useCallback)(()=>{
9925
+ const nextIndex = (currentIndex + 1) % gradientItems.length;
9926
+ setCurrentIndex(nextIndex);
9927
+ const newColors = [
9928
+ ...gradientItems[nextIndex]
9929
+ ].reverse().map(hexToRGBA);
9930
+ if (globalID) handleColor(globalID)(newColors);
9931
+ }, [
9932
+ currentIndex,
9933
+ globalID
9934
+ ]);
9935
+ (0, __WEBPACK_EXTERNAL_MODULE_react__.useEffect)(()=>{
9936
+ if (!globalID) return;
9937
+ return handleColor(globalID, 'setGradientColors', (colors)=>{
9938
+ const colorIndex = gradientItems.findIndex((item)=>JSON.stringify([
9939
+ ...item
9940
+ ].reverse().map(hexToRGBA)) === JSON.stringify(colors));
9941
+ if (-1 !== colorIndex) setCurrentIndex(colorIndex);
9942
+ });
9943
+ }, [
9944
+ globalID
9945
+ ]);
9946
+ const renderGradient = (0, __WEBPACK_EXTERNAL_MODULE_react__.useMemo)(()=>currentColors.map((color, idx, arr)=>{
9947
+ if (idx === arr.length - 1) return null;
9948
+ const nextColor = arr[idx + 1];
9949
+ return /*#__PURE__*/ (0, __WEBPACK_EXTERNAL_MODULE_react_jsx_runtime_225474f2__.jsx)("span", {
9950
+ style: {
9951
+ background: `linear-gradient(to right, rgba(${color.r},${color.g},${color.b},${color.a}), rgba(${nextColor.r},${nextColor.g},${nextColor.b},${nextColor.a}))`
9952
+ }
9953
+ }, `gradient-${idx}`);
9954
+ }), [
9955
+ currentColors
9956
+ ]);
9957
+ return /*#__PURE__*/ (0, __WEBPACK_EXTERNAL_MODULE_react_jsx_runtime_225474f2__.jsx)(ToolsBar_IconBox, {
9958
+ onClick: handleGradientChange,
9959
+ title: "\u70B9\u51FB\u5207\u6362\u7011\u5E03\u56FE\u8272\u9636",
9960
+ children: /*#__PURE__*/ (0, __WEBPACK_EXTERNAL_MODULE_react_jsx_runtime_225474f2__.jsxs)("div", {
9961
+ className: components_ToolsBar_GradientRibbon_styles_module.GradientRibbon,
9962
+ children: [
9963
+ /*#__PURE__*/ (0, __WEBPACK_EXTERNAL_MODULE_react_jsx_runtime_225474f2__.jsxs)("div", {
9964
+ className: components_ToolsBar_GradientRibbon_styles_module.scaleplate,
9965
+ children: [
9966
+ /*#__PURE__*/ (0, __WEBPACK_EXTERNAL_MODULE_react_jsx_runtime_225474f2__.jsx)("div", {
9967
+ children: Math.round(minValue)
9968
+ }),
9969
+ /*#__PURE__*/ (0, __WEBPACK_EXTERNAL_MODULE_react_jsx_runtime_225474f2__.jsx)("div", {
9970
+ children: Math.round(maxValue)
9971
+ })
9972
+ ]
9973
+ }),
9974
+ renderGradient
9975
+ ]
9976
+ })
9977
+ });
9978
+ };
9979
+ const ToolsBar_GradientRibbon = /*#__PURE__*/ __WEBPACK_EXTERNAL_MODULE_react__["default"].memo(GradientRibbon_GradientRibbon);
10514
9980
  class render_Heatmap {
10515
9981
  constructor(props){
10516
9982
  this.state = {
@@ -10531,6 +9997,11 @@ class render_Heatmap {
10531
9997
  ...getGradient()
10532
9998
  ].reverse().map((c)=>hexToRGBA(c))
10533
9999
  });
10000
+ handleColor(globalID, 'Heatmap-Render', (colors)=>{
10001
+ this.state.chart?.updateProps({
10002
+ colors
10003
+ });
10004
+ });
10534
10005
  this.updateSeries(this.state.heatmapDefaultData);
10535
10006
  this.setRange();
10536
10007
  }
@@ -10614,7 +10085,7 @@ const Heatmap_Heatmap = (props)=>{
10614
10085
  children: [
10615
10086
  /*#__PURE__*/ (0, __WEBPACK_EXTERNAL_MODULE_react_jsx_runtime_225474f2__.jsx)(Boundary, {}),
10616
10087
  /*#__PURE__*/ (0, __WEBPACK_EXTERNAL_MODULE_react_jsx_runtime_225474f2__.jsx)(Chart, {}),
10617
- /*#__PURE__*/ (0, __WEBPACK_EXTERNAL_MODULE_react_jsx_runtime_225474f2__.jsx)(components_EventBus, {
10088
+ /*#__PURE__*/ (0, __WEBPACK_EXTERNAL_MODULE_react_jsx_runtime_225474f2__.jsx)(EventBus, {
10618
10089
  id: id
10619
10090
  }),
10620
10091
  /*#__PURE__*/ (0, __WEBPACK_EXTERNAL_MODULE_react_jsx_runtime_225474f2__.jsx)(HeatmapCapture, {
@@ -10671,7 +10142,7 @@ const Heatmap_Chart_Chart = ({ publish, heatmapDefaultData })=>{
10671
10142
  heatmapDefaultData: heatmapDefaultData
10672
10143
  })
10673
10144
  }),
10674
- /*#__PURE__*/ (0, __WEBPACK_EXTERNAL_MODULE_react_jsx_runtime_225474f2__.jsx)(AxisX, {
10145
+ /*#__PURE__*/ (0, __WEBPACK_EXTERNAL_MODULE_react_jsx_runtime_225474f2__.jsx)(components_AxisX, {
10675
10146
  type: constants_ChartType.Scan
10676
10147
  })
10677
10148
  ]
@@ -10826,7 +10297,7 @@ const GridLinesSVG = ({ row = 10, col = 10, strokeColor = 'var(--theme-border-ba
10826
10297
  });
10827
10298
  };
10828
10299
  const GridLines_GridLinesSVG = GridLinesSVG;
10829
- var GridLines_styles_module = __webpack_require__("../../../node_modules/.pnpm/@rsbuild+core@1.3.18/node_modules/@rsbuild/core/compiled/css-loader/index.js??ruleSet[1].rules[11].use[1]!builtin:lightningcss-loader??ruleSet[1].rules[11].use[2]!../../../node_modules/.pnpm/@rsbuild+plugin-less@1.5.0_@rsbuild+core@1.6.9/node_modules/@rsbuild/plugin-less/compiled/less-loader/index.js??ruleSet[1].rules[11].use[3]!./src/components/GridLines/styles.module.less");
10300
+ var GridLines_styles_module = __webpack_require__("../../../node_modules/.pnpm/@rsbuild+core@1.3.18/node_modules/@rsbuild/core/compiled/css-loader/index.js??ruleSet[1].rules[11].use[1]!builtin:lightningcss-loader??ruleSet[1].rules[11].use[2]!../../../node_modules/.pnpm/@rsbuild+plugin-less@1.5.0_@rsbuild+core@1.6.12/node_modules/@rsbuild/plugin-less/compiled/less-loader/index.js??ruleSet[1].rules[11].use[3]!./src/components/GridLines/styles.module.less");
10830
10301
  var GridLines_styles_module_options = {};
10831
10302
  GridLines_styles_module_options.styleTagTransform = styleTagTransform_default();
10832
10303
  GridLines_styles_module_options.setAttributes = setAttributesWithoutAttributes_default();
@@ -10885,7 +10356,7 @@ const GridLines = ()=>{
10885
10356
  });
10886
10357
  };
10887
10358
  const components_GridLines = /*#__PURE__*/ __WEBPACK_EXTERNAL_MODULE_react__["default"].memo(GridLines);
10888
- var spectrum_components_Ticks_styles_module = __webpack_require__("../../../../../../node_modules/.pnpm/@rsbuild+core@1.3.18/node_modules/@rsbuild/core/compiled/css-loader/index.js??ruleSet[1].rules[11].use[1]!builtin:lightningcss-loader??ruleSet[1].rules[11].use[2]!../../../../../../node_modules/.pnpm/@rsbuild+plugin-less@1.5.0_@rsbuild+core@1.6.9/node_modules/@rsbuild/plugin-less/compiled/less-loader/index.js??ruleSet[1].rules[11].use[3]!./src/components/AxisY/spectrum/components/Ticks/styles.module.less");
10359
+ var spectrum_components_Ticks_styles_module = __webpack_require__("../../../../../../node_modules/.pnpm/@rsbuild+core@1.3.18/node_modules/@rsbuild/core/compiled/css-loader/index.js??ruleSet[1].rules[11].use[1]!builtin:lightningcss-loader??ruleSet[1].rules[11].use[2]!../../../../../../node_modules/.pnpm/@rsbuild+plugin-less@1.5.0_@rsbuild+core@1.6.12/node_modules/@rsbuild/plugin-less/compiled/less-loader/index.js??ruleSet[1].rules[11].use[3]!./src/components/AxisY/spectrum/components/Ticks/styles.module.less");
10889
10360
  var components_Ticks_styles_module_options = {};
10890
10361
  components_Ticks_styles_module_options.styleTagTransform = styleTagTransform_default();
10891
10362
  components_Ticks_styles_module_options.setAttributes = setAttributesWithoutAttributes_default();
@@ -10894,7 +10365,7 @@ components_Ticks_styles_module_options.domAPI = styleDomAPI_default();
10894
10365
  components_Ticks_styles_module_options.insertStyleElement = insertStyleElement_default();
10895
10366
  injectStylesIntoStyleTag_default()(spectrum_components_Ticks_styles_module.Z, components_Ticks_styles_module_options);
10896
10367
  spectrum_components_Ticks_styles_module.Z && spectrum_components_Ticks_styles_module.Z.locals && spectrum_components_Ticks_styles_module.Z.locals;
10897
- var spectrum_styles_module = __webpack_require__("../../../../node_modules/.pnpm/@rsbuild+core@1.3.18/node_modules/@rsbuild/core/compiled/css-loader/index.js??ruleSet[1].rules[11].use[1]!builtin:lightningcss-loader??ruleSet[1].rules[11].use[2]!../../../../node_modules/.pnpm/@rsbuild+plugin-less@1.5.0_@rsbuild+core@1.6.9/node_modules/@rsbuild/plugin-less/compiled/less-loader/index.js??ruleSet[1].rules[11].use[3]!./src/components/AxisY/spectrum/styles.module.less");
10368
+ var spectrum_styles_module = __webpack_require__("../../../../node_modules/.pnpm/@rsbuild+core@1.3.18/node_modules/@rsbuild/core/compiled/css-loader/index.js??ruleSet[1].rules[11].use[1]!builtin:lightningcss-loader??ruleSet[1].rules[11].use[2]!../../../../node_modules/.pnpm/@rsbuild+plugin-less@1.5.0_@rsbuild+core@1.6.12/node_modules/@rsbuild/plugin-less/compiled/less-loader/index.js??ruleSet[1].rules[11].use[3]!./src/components/AxisY/spectrum/styles.module.less");
10898
10369
  var spectrum_styles_module_options = {};
10899
10370
  spectrum_styles_module_options.styleTagTransform = styleTagTransform_default();
10900
10371
  spectrum_styles_module_options.setAttributes = setAttributesWithoutAttributes_default();
@@ -11886,7 +11357,7 @@ const TimeRange_Switch_Switch = ()=>{
11886
11357
  });
11887
11358
  };
11888
11359
  const TimeRange_Switch = /*#__PURE__*/ __WEBPACK_EXTERNAL_MODULE_react__["default"].memo(TimeRange_Switch_Switch);
11889
- var Switch_styles_module = __webpack_require__("../../../../node_modules/.pnpm/@rsbuild+core@1.3.18/node_modules/@rsbuild/core/compiled/css-loader/index.js??ruleSet[1].rules[11].use[1]!builtin:lightningcss-loader??ruleSet[1].rules[11].use[2]!../../../../node_modules/.pnpm/@rsbuild+plugin-less@1.5.0_@rsbuild+core@1.6.9/node_modules/@rsbuild/plugin-less/compiled/less-loader/index.js??ruleSet[1].rules[11].use[3]!./src/components/Zoom/Switch/styles.module.less");
11360
+ var Switch_styles_module = __webpack_require__("../../../../node_modules/.pnpm/@rsbuild+core@1.3.18/node_modules/@rsbuild/core/compiled/css-loader/index.js??ruleSet[1].rules[11].use[1]!builtin:lightningcss-loader??ruleSet[1].rules[11].use[2]!../../../../node_modules/.pnpm/@rsbuild+plugin-less@1.5.0_@rsbuild+core@1.6.12/node_modules/@rsbuild/plugin-less/compiled/less-loader/index.js??ruleSet[1].rules[11].use[3]!./src/components/Zoom/Switch/styles.module.less");
11890
11361
  var Switch_styles_module_options = {};
11891
11362
  Switch_styles_module_options.styleTagTransform = styleTagTransform_default();
11892
11363
  Switch_styles_module_options.setAttributes = setAttributesWithoutAttributes_default();
@@ -12046,7 +11517,7 @@ const Reset_Reset = ()=>{
12046
11517
  });
12047
11518
  };
12048
11519
  const Reset = Reset_Reset;
12049
- var Dropdown_styles_module = __webpack_require__("../../../node_modules/.pnpm/@rsbuild+core@1.3.18/node_modules/@rsbuild/core/compiled/css-loader/index.js??ruleSet[1].rules[11].use[1]!builtin:lightningcss-loader??ruleSet[1].rules[11].use[2]!../../../node_modules/.pnpm/@rsbuild+plugin-less@1.5.0_@rsbuild+core@1.6.9/node_modules/@rsbuild/plugin-less/compiled/less-loader/index.js??ruleSet[1].rules[11].use[3]!./src/components/Dropdown/styles.module.less");
11520
+ var Dropdown_styles_module = __webpack_require__("../../../node_modules/.pnpm/@rsbuild+core@1.3.18/node_modules/@rsbuild/core/compiled/css-loader/index.js??ruleSet[1].rules[11].use[1]!builtin:lightningcss-loader??ruleSet[1].rules[11].use[2]!../../../node_modules/.pnpm/@rsbuild+plugin-less@1.5.0_@rsbuild+core@1.6.12/node_modules/@rsbuild/plugin-less/compiled/less-loader/index.js??ruleSet[1].rules[11].use[3]!./src/components/Dropdown/styles.module.less");
12050
11521
  var Dropdown_styles_module_options = {};
12051
11522
  Dropdown_styles_module_options.styleTagTransform = styleTagTransform_default();
12052
11523
  Dropdown_styles_module_options.setAttributes = setAttributesWithoutAttributes_default();
@@ -12267,7 +11738,7 @@ const SeriesControl = ({ type })=>{
12267
11738
  });
12268
11739
  };
12269
11740
  const ToolsBar_SeriesControl = SeriesControl;
12270
- var SeriesDisplayControl_styles_module = __webpack_require__("../../../../node_modules/.pnpm/@rsbuild+core@1.3.18/node_modules/@rsbuild/core/compiled/css-loader/index.js??ruleSet[1].rules[11].use[1]!builtin:lightningcss-loader??ruleSet[1].rules[11].use[2]!../../../../node_modules/.pnpm/@rsbuild+plugin-less@1.5.0_@rsbuild+core@1.6.9/node_modules/@rsbuild/plugin-less/compiled/less-loader/index.js??ruleSet[1].rules[11].use[3]!./src/components/ToolsBar/SeriesDisplayControl/styles.module.less");
11741
+ var SeriesDisplayControl_styles_module = __webpack_require__("../../../../node_modules/.pnpm/@rsbuild+core@1.3.18/node_modules/@rsbuild/core/compiled/css-loader/index.js??ruleSet[1].rules[11].use[1]!builtin:lightningcss-loader??ruleSet[1].rules[11].use[2]!../../../../node_modules/.pnpm/@rsbuild+plugin-less@1.5.0_@rsbuild+core@1.6.12/node_modules/@rsbuild/plugin-less/compiled/less-loader/index.js??ruleSet[1].rules[11].use[3]!./src/components/ToolsBar/SeriesDisplayControl/styles.module.less");
12271
11742
  var SeriesDisplayControl_styles_module_options = {};
12272
11743
  SeriesDisplayControl_styles_module_options.styleTagTransform = styleTagTransform_default();
12273
11744
  SeriesDisplayControl_styles_module_options.setAttributes = setAttributesWithoutAttributes_default();
@@ -12278,7 +11749,7 @@ injectStylesIntoStyleTag_default()(SeriesDisplayControl_styles_module.Z, SeriesD
12278
11749
  const ToolsBar_SeriesDisplayControl_styles_module = SeriesDisplayControl_styles_module.Z && SeriesDisplayControl_styles_module.Z.locals ? SeriesDisplayControl_styles_module.Z.locals : void 0;
12279
11750
  const SeriesDisplayControl = ()=>{
12280
11751
  const { state: { globalID, series: seriesConfig } } = useStore_useStore();
12281
- const filteredSeries = useFilteredSeries_useFilteredSeries(globalID);
11752
+ const filteredSeries = useFilteredSeries(globalID);
12282
11753
  const { forceUpdate } = useSeriesForComponent(globalID);
12283
11754
  (0, __WEBPACK_EXTERNAL_MODULE_react__.useEffect)(()=>{
12284
11755
  if (!globalID || !seriesConfig?.forceDisplay) return;
@@ -12773,7 +12244,7 @@ const Level_Level = (props)=>{
12773
12244
  });
12774
12245
  };
12775
12246
  const Level = Level_Level;
12776
- var index_module = __webpack_require__("../../../node_modules/.pnpm/@rsbuild+core@1.3.18/node_modules/@rsbuild/core/compiled/css-loader/index.js??ruleSet[1].rules[11].use[1]!builtin:lightningcss-loader??ruleSet[1].rules[11].use[2]!../../../node_modules/.pnpm/@rsbuild+plugin-less@1.5.0_@rsbuild+core@1.6.9/node_modules/@rsbuild/plugin-less/compiled/less-loader/index.js??ruleSet[1].rules[11].use[3]!./src/components/AxisYByCanvas/index.module.less");
12247
+ var index_module = __webpack_require__("../../../node_modules/.pnpm/@rsbuild+core@1.3.18/node_modules/@rsbuild/core/compiled/css-loader/index.js??ruleSet[1].rules[11].use[1]!builtin:lightningcss-loader??ruleSet[1].rules[11].use[2]!../../../node_modules/.pnpm/@rsbuild+plugin-less@1.5.0_@rsbuild+core@1.6.12/node_modules/@rsbuild/plugin-less/compiled/less-loader/index.js??ruleSet[1].rules[11].use[3]!./src/components/AxisYByCanvas/index.module.less");
12777
12248
  var index_module_options = {};
12778
12249
  index_module_options.styleTagTransform = styleTagTransform_default();
12779
12250
  index_module_options.setAttributes = setAttributesWithoutAttributes_default();
@@ -13078,7 +12549,7 @@ function AxisYByCanvas(props) {
13078
12549
  ]
13079
12550
  });
13080
12551
  }
13081
- var Band_styles_module = __webpack_require__("../../../node_modules/.pnpm/@rsbuild+core@1.3.18/node_modules/@rsbuild/core/compiled/css-loader/index.js??ruleSet[1].rules[11].use[1]!builtin:lightningcss-loader??ruleSet[1].rules[11].use[2]!../../../node_modules/.pnpm/@rsbuild+plugin-less@1.5.0_@rsbuild+core@1.6.9/node_modules/@rsbuild/plugin-less/compiled/less-loader/index.js??ruleSet[1].rules[11].use[3]!./src/components/Band/styles.module.less");
12552
+ var Band_styles_module = __webpack_require__("../../../node_modules/.pnpm/@rsbuild+core@1.3.18/node_modules/@rsbuild/core/compiled/css-loader/index.js??ruleSet[1].rules[11].use[1]!builtin:lightningcss-loader??ruleSet[1].rules[11].use[2]!../../../node_modules/.pnpm/@rsbuild+plugin-less@1.5.0_@rsbuild+core@1.6.12/node_modules/@rsbuild/plugin-less/compiled/less-loader/index.js??ruleSet[1].rules[11].use[3]!./src/components/Band/styles.module.less");
13082
12553
  var Band_styles_module_options = {};
13083
12554
  Band_styles_module_options.styleTagTransform = styleTagTransform_default();
13084
12555
  Band_styles_module_options.setAttributes = setAttributesWithoutAttributes_default();
@@ -13121,7 +12592,7 @@ const Band_Band = ()=>{
13121
12592
  });
13122
12593
  };
13123
12594
  const Band = Band_Band;
13124
- var DragFrame_styles_module = __webpack_require__("../../../node_modules/.pnpm/@rsbuild+core@1.3.18/node_modules/@rsbuild/core/compiled/css-loader/index.js??ruleSet[1].rules[11].use[1]!builtin:lightningcss-loader??ruleSet[1].rules[11].use[2]!../../../node_modules/.pnpm/@rsbuild+plugin-less@1.5.0_@rsbuild+core@1.6.9/node_modules/@rsbuild/plugin-less/compiled/less-loader/index.js??ruleSet[1].rules[11].use[3]!./src/components/DragFrame/styles.module.less");
12595
+ var DragFrame_styles_module = __webpack_require__("../../../node_modules/.pnpm/@rsbuild+core@1.3.18/node_modules/@rsbuild/core/compiled/css-loader/index.js??ruleSet[1].rules[11].use[1]!builtin:lightningcss-loader??ruleSet[1].rules[11].use[2]!../../../node_modules/.pnpm/@rsbuild+plugin-less@1.5.0_@rsbuild+core@1.6.12/node_modules/@rsbuild/plugin-less/compiled/less-loader/index.js??ruleSet[1].rules[11].use[3]!./src/components/DragFrame/styles.module.less");
13125
12596
  var DragFrame_styles_module_options = {};
13126
12597
  DragFrame_styles_module_options.styleTagTransform = styleTagTransform_default();
13127
12598
  DragFrame_styles_module_options.setAttributes = setAttributesWithoutAttributes_default();
@@ -13283,7 +12754,7 @@ const DragFrame = ({ id })=>{
13283
12754
  });
13284
12755
  };
13285
12756
  const components_DragFrame = /*#__PURE__*/ (0, __WEBPACK_EXTERNAL_MODULE_react__.memo)(DragFrame);
13286
- var AllocationInfo_styles_module = __webpack_require__("../../../../node_modules/.pnpm/@rsbuild+core@1.3.18/node_modules/@rsbuild/core/compiled/css-loader/index.js??ruleSet[1].rules[11].use[1]!builtin:lightningcss-loader??ruleSet[1].rules[11].use[2]!../../../../node_modules/.pnpm/@rsbuild+plugin-less@1.5.0_@rsbuild+core@1.6.9/node_modules/@rsbuild/plugin-less/compiled/less-loader/index.js??ruleSet[1].rules[11].use[3]!./src/components/FrequencyAllocation/AllocationInfo/styles.module.less");
12757
+ var AllocationInfo_styles_module = __webpack_require__("../../../../node_modules/.pnpm/@rsbuild+core@1.3.18/node_modules/@rsbuild/core/compiled/css-loader/index.js??ruleSet[1].rules[11].use[1]!builtin:lightningcss-loader??ruleSet[1].rules[11].use[2]!../../../../node_modules/.pnpm/@rsbuild+plugin-less@1.5.0_@rsbuild+core@1.6.12/node_modules/@rsbuild/plugin-less/compiled/less-loader/index.js??ruleSet[1].rules[11].use[3]!./src/components/FrequencyAllocation/AllocationInfo/styles.module.less");
13287
12758
  var AllocationInfo_styles_module_options = {};
13288
12759
  AllocationInfo_styles_module_options.styleTagTransform = styleTagTransform_default();
13289
12760
  AllocationInfo_styles_module_options.setAttributes = setAttributesWithoutAttributes_default();
@@ -13921,7 +13392,7 @@ const FrequencyAllocation_data = [
13921
13392
  description: "WIFI\u3001\u65E0\u4EBA\u673A\u7B49\u4F7F\u7528\u9891\u6BB5"
13922
13393
  }
13923
13394
  ];
13924
- var FrequencyAllocation_styles_module = __webpack_require__("../../../node_modules/.pnpm/@rsbuild+core@1.3.18/node_modules/@rsbuild/core/compiled/css-loader/index.js??ruleSet[1].rules[11].use[1]!builtin:lightningcss-loader??ruleSet[1].rules[11].use[2]!../../../node_modules/.pnpm/@rsbuild+plugin-less@1.5.0_@rsbuild+core@1.6.9/node_modules/@rsbuild/plugin-less/compiled/less-loader/index.js??ruleSet[1].rules[11].use[3]!./src/components/FrequencyAllocation/styles.module.less");
13395
+ var FrequencyAllocation_styles_module = __webpack_require__("../../../node_modules/.pnpm/@rsbuild+core@1.3.18/node_modules/@rsbuild/core/compiled/css-loader/index.js??ruleSet[1].rules[11].use[1]!builtin:lightningcss-loader??ruleSet[1].rules[11].use[2]!../../../node_modules/.pnpm/@rsbuild+plugin-less@1.5.0_@rsbuild+core@1.6.12/node_modules/@rsbuild/plugin-less/compiled/less-loader/index.js??ruleSet[1].rules[11].use[3]!./src/components/FrequencyAllocation/styles.module.less");
13925
13396
  var FrequencyAllocation_styles_module_options = {};
13926
13397
  FrequencyAllocation_styles_module_options.styleTagTransform = styleTagTransform_default();
13927
13398
  FrequencyAllocation_styles_module_options.setAttributes = setAttributesWithoutAttributes_default();
@@ -13947,7 +13418,7 @@ const SegmentContainer = /*#__PURE__*/ (0, __WEBPACK_EXTERNAL_MODULE_react__.mem
13947
13418
  }, `band-${band.title}-${index}`))
13948
13419
  }));
13949
13420
  const FrequencyAllocation_SegmentContainer = SegmentContainer;
13950
- var FrequencyAllocation_Tooltip_styles_module = __webpack_require__("../../../../node_modules/.pnpm/@rsbuild+core@1.3.18/node_modules/@rsbuild/core/compiled/css-loader/index.js??ruleSet[1].rules[11].use[1]!builtin:lightningcss-loader??ruleSet[1].rules[11].use[2]!../../../../node_modules/.pnpm/@rsbuild+plugin-less@1.5.0_@rsbuild+core@1.6.9/node_modules/@rsbuild/plugin-less/compiled/less-loader/index.js??ruleSet[1].rules[11].use[3]!./src/components/FrequencyAllocation/Tooltip/styles.module.less");
13421
+ var FrequencyAllocation_Tooltip_styles_module = __webpack_require__("../../../../node_modules/.pnpm/@rsbuild+core@1.3.18/node_modules/@rsbuild/core/compiled/css-loader/index.js??ruleSet[1].rules[11].use[1]!builtin:lightningcss-loader??ruleSet[1].rules[11].use[2]!../../../../node_modules/.pnpm/@rsbuild+plugin-less@1.5.0_@rsbuild+core@1.6.12/node_modules/@rsbuild/plugin-less/compiled/less-loader/index.js??ruleSet[1].rules[11].use[3]!./src/components/FrequencyAllocation/Tooltip/styles.module.less");
13951
13422
  var FrequencyAllocation_Tooltip_styles_module_options = {};
13952
13423
  FrequencyAllocation_Tooltip_styles_module_options.styleTagTransform = styleTagTransform_default();
13953
13424
  FrequencyAllocation_Tooltip_styles_module_options.setAttributes = setAttributesWithoutAttributes_default();
@@ -14135,7 +13606,7 @@ const FrequencyAllocation_FrequencyAllocation = ()=>{
14135
13606
  });
14136
13607
  };
14137
13608
  const FrequencyAllocation = FrequencyAllocation_FrequencyAllocation;
14138
- var Board_styles_module = __webpack_require__("../../../../node_modules/.pnpm/@rsbuild+core@1.3.18/node_modules/@rsbuild/core/compiled/css-loader/index.js??ruleSet[1].rules[11].use[1]!builtin:lightningcss-loader??ruleSet[1].rules[11].use[2]!../../../../node_modules/.pnpm/@rsbuild+plugin-less@1.5.0_@rsbuild+core@1.6.9/node_modules/@rsbuild/plugin-less/compiled/less-loader/index.js??ruleSet[1].rules[11].use[3]!./src/components/FrequencyTagLine/Board/styles.module.less");
13609
+ var Board_styles_module = __webpack_require__("../../../../node_modules/.pnpm/@rsbuild+core@1.3.18/node_modules/@rsbuild/core/compiled/css-loader/index.js??ruleSet[1].rules[11].use[1]!builtin:lightningcss-loader??ruleSet[1].rules[11].use[2]!../../../../node_modules/.pnpm/@rsbuild+plugin-less@1.5.0_@rsbuild+core@1.6.12/node_modules/@rsbuild/plugin-less/compiled/less-loader/index.js??ruleSet[1].rules[11].use[3]!./src/components/FrequencyTagLine/Board/styles.module.less");
14139
13610
  var Board_styles_module_options = {};
14140
13611
  Board_styles_module_options.styleTagTransform = styleTagTransform_default();
14141
13612
  Board_styles_module_options.setAttributes = setAttributesWithoutAttributes_default();
@@ -14181,7 +13652,7 @@ const Board_Board = ({ id })=>{
14181
13652
  });
14182
13653
  };
14183
13654
  const Board = /*#__PURE__*/ __WEBPACK_EXTERNAL_MODULE_react__["default"].memo(Board_Board);
14184
- var FrequencyTagLine_styles_module = __webpack_require__("../../../node_modules/.pnpm/@rsbuild+core@1.3.18/node_modules/@rsbuild/core/compiled/css-loader/index.js??ruleSet[1].rules[11].use[1]!builtin:lightningcss-loader??ruleSet[1].rules[11].use[2]!../../../node_modules/.pnpm/@rsbuild+plugin-less@1.5.0_@rsbuild+core@1.6.9/node_modules/@rsbuild/plugin-less/compiled/less-loader/index.js??ruleSet[1].rules[11].use[3]!./src/components/FrequencyTagLine/styles.module.less");
13655
+ var FrequencyTagLine_styles_module = __webpack_require__("../../../node_modules/.pnpm/@rsbuild+core@1.3.18/node_modules/@rsbuild/core/compiled/css-loader/index.js??ruleSet[1].rules[11].use[1]!builtin:lightningcss-loader??ruleSet[1].rules[11].use[2]!../../../node_modules/.pnpm/@rsbuild+plugin-less@1.5.0_@rsbuild+core@1.6.12/node_modules/@rsbuild/plugin-less/compiled/less-loader/index.js??ruleSet[1].rules[11].use[3]!./src/components/FrequencyTagLine/styles.module.less");
14185
13656
  var FrequencyTagLine_styles_module_options = {};
14186
13657
  FrequencyTagLine_styles_module_options.styleTagTransform = styleTagTransform_default();
14187
13658
  FrequencyTagLine_styles_module_options.setAttributes = setAttributesWithoutAttributes_default();
@@ -14272,7 +13743,7 @@ const FrequencyTagLine_FrequencyTagLine = (props)=>{
14272
13743
  });
14273
13744
  };
14274
13745
  const FrequencyTagLine = /*#__PURE__*/ __WEBPACK_EXTERNAL_MODULE_react__["default"].memo(FrequencyTagLine_FrequencyTagLine);
14275
- var Limit_styles_module = __webpack_require__("../../../node_modules/.pnpm/@rsbuild+core@1.3.18/node_modules/@rsbuild/core/compiled/css-loader/index.js??ruleSet[1].rules[11].use[1]!builtin:lightningcss-loader??ruleSet[1].rules[11].use[2]!../../../node_modules/.pnpm/@rsbuild+plugin-less@1.5.0_@rsbuild+core@1.6.9/node_modules/@rsbuild/plugin-less/compiled/less-loader/index.js??ruleSet[1].rules[11].use[3]!./src/components/Limit/styles.module.less");
13746
+ var Limit_styles_module = __webpack_require__("../../../node_modules/.pnpm/@rsbuild+core@1.3.18/node_modules/@rsbuild/core/compiled/css-loader/index.js??ruleSet[1].rules[11].use[1]!builtin:lightningcss-loader??ruleSet[1].rules[11].use[2]!../../../node_modules/.pnpm/@rsbuild+plugin-less@1.5.0_@rsbuild+core@1.6.12/node_modules/@rsbuild/plugin-less/compiled/less-loader/index.js??ruleSet[1].rules[11].use[3]!./src/components/Limit/styles.module.less");
14276
13747
  var Limit_styles_module_options = {};
14277
13748
  Limit_styles_module_options.styleTagTransform = styleTagTransform_default();
14278
13749
  Limit_styles_module_options.setAttributes = setAttributesWithoutAttributes_default();
@@ -14920,7 +14391,7 @@ const useMarkers = (props)=>{
14920
14391
  setState
14921
14392
  };
14922
14393
  };
14923
- var Dashed_styles_module = __webpack_require__("../../../node_modules/.pnpm/@rsbuild+core@1.3.18/node_modules/@rsbuild/core/compiled/css-loader/index.js??ruleSet[1].rules[11].use[1]!builtin:lightningcss-loader??ruleSet[1].rules[11].use[2]!../../../node_modules/.pnpm/@rsbuild+plugin-less@1.5.0_@rsbuild+core@1.6.9/node_modules/@rsbuild/plugin-less/compiled/less-loader/index.js??ruleSet[1].rules[11].use[3]!./src/components/Dashed/styles.module.less");
14394
+ var Dashed_styles_module = __webpack_require__("../../../node_modules/.pnpm/@rsbuild+core@1.3.18/node_modules/@rsbuild/core/compiled/css-loader/index.js??ruleSet[1].rules[11].use[1]!builtin:lightningcss-loader??ruleSet[1].rules[11].use[2]!../../../node_modules/.pnpm/@rsbuild+plugin-less@1.5.0_@rsbuild+core@1.6.12/node_modules/@rsbuild/plugin-less/compiled/less-loader/index.js??ruleSet[1].rules[11].use[3]!./src/components/Dashed/styles.module.less");
14924
14395
  var Dashed_styles_module_options = {};
14925
14396
  Dashed_styles_module_options.styleTagTransform = styleTagTransform_default();
14926
14397
  Dashed_styles_module_options.setAttributes = setAttributesWithoutAttributes_default();
@@ -14951,7 +14422,7 @@ const Dashed_Dashed = (props)=>{
14951
14422
  });
14952
14423
  };
14953
14424
  const Dashed = Dashed_Dashed;
14954
- var MarkerItem_styles_module = __webpack_require__("../../../../node_modules/.pnpm/@rsbuild+core@1.3.18/node_modules/@rsbuild/core/compiled/css-loader/index.js??ruleSet[1].rules[11].use[1]!builtin:lightningcss-loader??ruleSet[1].rules[11].use[2]!../../../../node_modules/.pnpm/@rsbuild+plugin-less@1.5.0_@rsbuild+core@1.6.9/node_modules/@rsbuild/plugin-less/compiled/less-loader/index.js??ruleSet[1].rules[11].use[3]!./src/components/Markers/MarkerItem/styles.module.less");
14425
+ var MarkerItem_styles_module = __webpack_require__("../../../../node_modules/.pnpm/@rsbuild+core@1.3.18/node_modules/@rsbuild/core/compiled/css-loader/index.js??ruleSet[1].rules[11].use[1]!builtin:lightningcss-loader??ruleSet[1].rules[11].use[2]!../../../../node_modules/.pnpm/@rsbuild+plugin-less@1.5.0_@rsbuild+core@1.6.12/node_modules/@rsbuild/plugin-less/compiled/less-loader/index.js??ruleSet[1].rules[11].use[3]!./src/components/Markers/MarkerItem/styles.module.less");
14955
14426
  var MarkerItem_styles_module_options = {};
14956
14427
  MarkerItem_styles_module_options.styleTagTransform = styleTagTransform_default();
14957
14428
  MarkerItem_styles_module_options.setAttributes = setAttributesWithoutAttributes_default();
@@ -15062,7 +14533,7 @@ const MarkerItem = ({ marker })=>{
15062
14533
  }, marker.id);
15063
14534
  };
15064
14535
  const Markers_MarkerItem = /*#__PURE__*/ __WEBPACK_EXTERNAL_MODULE_react__["default"].memo(MarkerItem);
15065
- var Markers_styles_module = __webpack_require__("../../../node_modules/.pnpm/@rsbuild+core@1.3.18/node_modules/@rsbuild/core/compiled/css-loader/index.js??ruleSet[1].rules[11].use[1]!builtin:lightningcss-loader??ruleSet[1].rules[11].use[2]!../../../node_modules/.pnpm/@rsbuild+plugin-less@1.5.0_@rsbuild+core@1.6.9/node_modules/@rsbuild/plugin-less/compiled/less-loader/index.js??ruleSet[1].rules[11].use[3]!./src/components/Markers/styles.module.less");
14536
+ var Markers_styles_module = __webpack_require__("../../../node_modules/.pnpm/@rsbuild+core@1.3.18/node_modules/@rsbuild/core/compiled/css-loader/index.js??ruleSet[1].rules[11].use[1]!builtin:lightningcss-loader??ruleSet[1].rules[11].use[2]!../../../node_modules/.pnpm/@rsbuild+plugin-less@1.5.0_@rsbuild+core@1.6.12/node_modules/@rsbuild/plugin-less/compiled/less-loader/index.js??ruleSet[1].rules[11].use[3]!./src/components/Markers/styles.module.less");
15066
14537
  var Markers_styles_module_options = {};
15067
14538
  Markers_styles_module_options.styleTagTransform = styleTagTransform_default();
15068
14539
  Markers_styles_module_options.setAttributes = setAttributesWithoutAttributes_default();
@@ -15166,7 +14637,7 @@ const Markers = ({ id })=>{
15166
14637
  });
15167
14638
  };
15168
14639
  const components_Markers = Markers;
15169
- var Scope_styles_module = __webpack_require__("../../../node_modules/.pnpm/@rsbuild+core@1.3.18/node_modules/@rsbuild/core/compiled/css-loader/index.js??ruleSet[1].rules[11].use[1]!builtin:lightningcss-loader??ruleSet[1].rules[11].use[2]!../../../node_modules/.pnpm/@rsbuild+plugin-less@1.5.0_@rsbuild+core@1.6.9/node_modules/@rsbuild/plugin-less/compiled/less-loader/index.js??ruleSet[1].rules[11].use[3]!./src/components/Scope/styles.module.less");
14640
+ var Scope_styles_module = __webpack_require__("../../../node_modules/.pnpm/@rsbuild+core@1.3.18/node_modules/@rsbuild/core/compiled/css-loader/index.js??ruleSet[1].rules[11].use[1]!builtin:lightningcss-loader??ruleSet[1].rules[11].use[2]!../../../node_modules/.pnpm/@rsbuild+plugin-less@1.5.0_@rsbuild+core@1.6.12/node_modules/@rsbuild/plugin-less/compiled/less-loader/index.js??ruleSet[1].rules[11].use[3]!./src/components/Scope/styles.module.less");
15170
14641
  var Scope_styles_module_options = {};
15171
14642
  Scope_styles_module_options.styleTagTransform = styleTagTransform_default();
15172
14643
  Scope_styles_module_options.setAttributes = setAttributesWithoutAttributes_default();
@@ -15234,7 +14705,7 @@ const Scope = ()=>{
15234
14705
  });
15235
14706
  };
15236
14707
  const components_Scope = Scope;
15237
- var Signal_styles_module = __webpack_require__("../../../node_modules/.pnpm/@rsbuild+core@1.3.18/node_modules/@rsbuild/core/compiled/css-loader/index.js??ruleSet[1].rules[11].use[1]!builtin:lightningcss-loader??ruleSet[1].rules[11].use[2]!../../../node_modules/.pnpm/@rsbuild+plugin-less@1.5.0_@rsbuild+core@1.6.9/node_modules/@rsbuild/plugin-less/compiled/less-loader/index.js??ruleSet[1].rules[11].use[3]!./src/components/Signal/styles.module.less");
14708
+ var Signal_styles_module = __webpack_require__("../../../node_modules/.pnpm/@rsbuild+core@1.3.18/node_modules/@rsbuild/core/compiled/css-loader/index.js??ruleSet[1].rules[11].use[1]!builtin:lightningcss-loader??ruleSet[1].rules[11].use[2]!../../../node_modules/.pnpm/@rsbuild+plugin-less@1.5.0_@rsbuild+core@1.6.12/node_modules/@rsbuild/plugin-less/compiled/less-loader/index.js??ruleSet[1].rules[11].use[3]!./src/components/Signal/styles.module.less");
15238
14709
  var Signal_styles_module_options = {};
15239
14710
  Signal_styles_module_options.styleTagTransform = styleTagTransform_default();
15240
14711
  Signal_styles_module_options.setAttributes = setAttributesWithoutAttributes_default();
@@ -15388,7 +14859,7 @@ const Signal = ({ show = true, display = true })=>{
15388
14859
  });
15389
14860
  };
15390
14861
  const components_Signal = Signal;
15391
- var Stripe_styles_module = __webpack_require__("../../../node_modules/.pnpm/@rsbuild+core@1.3.18/node_modules/@rsbuild/core/compiled/css-loader/index.js??ruleSet[1].rules[11].use[1]!builtin:lightningcss-loader??ruleSet[1].rules[11].use[2]!../../../node_modules/.pnpm/@rsbuild+plugin-less@1.5.0_@rsbuild+core@1.6.9/node_modules/@rsbuild/plugin-less/compiled/less-loader/index.js??ruleSet[1].rules[11].use[3]!./src/components/Stripe/styles.module.less");
14862
+ var Stripe_styles_module = __webpack_require__("../../../node_modules/.pnpm/@rsbuild+core@1.3.18/node_modules/@rsbuild/core/compiled/css-loader/index.js??ruleSet[1].rules[11].use[1]!builtin:lightningcss-loader??ruleSet[1].rules[11].use[2]!../../../node_modules/.pnpm/@rsbuild+plugin-less@1.5.0_@rsbuild+core@1.6.12/node_modules/@rsbuild/plugin-less/compiled/less-loader/index.js??ruleSet[1].rules[11].use[3]!./src/components/Stripe/styles.module.less");
15392
14863
  var Stripe_styles_module_options = {};
15393
14864
  Stripe_styles_module_options.styleTagTransform = styleTagTransform_default();
15394
14865
  Stripe_styles_module_options.setAttributes = setAttributesWithoutAttributes_default();
@@ -15617,7 +15088,7 @@ const Spectrum_Spectrum = (props)=>{
15617
15088
  /*#__PURE__*/ (0, __WEBPACK_EXTERNAL_MODULE_react_jsx_runtime_225474f2__.jsx)(components_Markers, {
15618
15089
  id: id
15619
15090
  }),
15620
- /*#__PURE__*/ (0, __WEBPACK_EXTERNAL_MODULE_react_jsx_runtime_225474f2__.jsx)(components_EventBus, {
15091
+ /*#__PURE__*/ (0, __WEBPACK_EXTERNAL_MODULE_react_jsx_runtime_225474f2__.jsx)(EventBus, {
15621
15092
  id: id
15622
15093
  }),
15623
15094
  /*#__PURE__*/ (0, __WEBPACK_EXTERNAL_MODULE_react_jsx_runtime_225474f2__.jsx)(components_Limit, {
@@ -15655,7 +15126,7 @@ const LevelStream_Chart_Chart = (props)=>{
15655
15126
  subscribe: (e)=>{
15656
15127
  const { pstype } = e;
15657
15128
  if (pstype === constants_PSType.Reset) analyzer?.reset();
15658
- if (pstype === constants_PSType.LevelStream) analyzer?.process(e.data, e.timestamp);
15129
+ if (pstype === constants_PSType.LevelStream) analyzer?.process(e.data, (0, utils.JP)(e.timestamp));
15659
15130
  }
15660
15131
  });
15661
15132
  (0, __WEBPACK_EXTERNAL_MODULE_react__.useEffect)(()=>{
@@ -15703,7 +15174,7 @@ const LevelStreamChart = (props)=>/*#__PURE__*/ (0, __WEBPACK_EXTERNAL_MODULE_re
15703
15174
  });
15704
15175
  const LevelStream_LevelStream = withChartPublisher(LevelStreamChart, 'LevelStream');
15705
15176
  const LevelStream = LevelStream_LevelStream;
15706
- var occupancy_components_Ticks_styles_module = __webpack_require__("../../../../../../node_modules/.pnpm/@rsbuild+core@1.3.18/node_modules/@rsbuild/core/compiled/css-loader/index.js??ruleSet[1].rules[11].use[1]!builtin:lightningcss-loader??ruleSet[1].rules[11].use[2]!../../../../../../node_modules/.pnpm/@rsbuild+plugin-less@1.5.0_@rsbuild+core@1.6.9/node_modules/@rsbuild/plugin-less/compiled/less-loader/index.js??ruleSet[1].rules[11].use[3]!./src/components/AxisY/occupancy/components/Ticks/styles.module.less");
15177
+ var occupancy_components_Ticks_styles_module = __webpack_require__("../../../../../../node_modules/.pnpm/@rsbuild+core@1.3.18/node_modules/@rsbuild/core/compiled/css-loader/index.js??ruleSet[1].rules[11].use[1]!builtin:lightningcss-loader??ruleSet[1].rules[11].use[2]!../../../../../../node_modules/.pnpm/@rsbuild+plugin-less@1.5.0_@rsbuild+core@1.6.12/node_modules/@rsbuild/plugin-less/compiled/less-loader/index.js??ruleSet[1].rules[11].use[3]!./src/components/AxisY/occupancy/components/Ticks/styles.module.less");
15707
15178
  var occupancy_components_Ticks_styles_module_options = {};
15708
15179
  occupancy_components_Ticks_styles_module_options.styleTagTransform = styleTagTransform_default();
15709
15180
  occupancy_components_Ticks_styles_module_options.setAttributes = setAttributesWithoutAttributes_default();
@@ -15732,7 +15203,7 @@ const occupancy_components_Ticks_Ticks = (props)=>{
15732
15203
  });
15733
15204
  };
15734
15205
  const occupancy_components_Ticks = occupancy_components_Ticks_Ticks;
15735
- var occupancy_type_Default_styles_module = __webpack_require__("../../../../../../node_modules/.pnpm/@rsbuild+core@1.3.18/node_modules/@rsbuild/core/compiled/css-loader/index.js??ruleSet[1].rules[11].use[1]!builtin:lightningcss-loader??ruleSet[1].rules[11].use[2]!../../../../../../node_modules/.pnpm/@rsbuild+plugin-less@1.5.0_@rsbuild+core@1.6.9/node_modules/@rsbuild/plugin-less/compiled/less-loader/index.js??ruleSet[1].rules[11].use[3]!./src/components/AxisY/occupancy/type/Default/styles.module.less");
15206
+ var occupancy_type_Default_styles_module = __webpack_require__("../../../../../../node_modules/.pnpm/@rsbuild+core@1.3.18/node_modules/@rsbuild/core/compiled/css-loader/index.js??ruleSet[1].rules[11].use[1]!builtin:lightningcss-loader??ruleSet[1].rules[11].use[2]!../../../../../../node_modules/.pnpm/@rsbuild+plugin-less@1.5.0_@rsbuild+core@1.6.12/node_modules/@rsbuild/plugin-less/compiled/less-loader/index.js??ruleSet[1].rules[11].use[3]!./src/components/AxisY/occupancy/type/Default/styles.module.less");
15736
15207
  var type_Default_styles_module_options = {};
15737
15208
  type_Default_styles_module_options.styleTagTransform = styleTagTransform_default();
15738
15209
  type_Default_styles_module_options.setAttributes = setAttributesWithoutAttributes_default();
@@ -15761,7 +15232,7 @@ const AxisYOccupancy = (props)=>{
15761
15232
  return /*#__PURE__*/ (0, __WEBPACK_EXTERNAL_MODULE_react_jsx_runtime_225474f2__.jsx)(type_Default, {});
15762
15233
  };
15763
15234
  const occupancy = AxisYOccupancy;
15764
- var Occdahsed_styles_module = __webpack_require__("../../../../node_modules/.pnpm/@rsbuild+core@1.3.18/node_modules/@rsbuild/core/compiled/css-loader/index.js??ruleSet[1].rules[11].use[1]!builtin:lightningcss-loader??ruleSet[1].rules[11].use[2]!../../../../node_modules/.pnpm/@rsbuild+plugin-less@1.5.0_@rsbuild+core@1.6.9/node_modules/@rsbuild/plugin-less/compiled/less-loader/index.js??ruleSet[1].rules[11].use[3]!./src/components/GridLines/Occdahsed/styles.module.less");
15235
+ var Occdahsed_styles_module = __webpack_require__("../../../../node_modules/.pnpm/@rsbuild+core@1.3.18/node_modules/@rsbuild/core/compiled/css-loader/index.js??ruleSet[1].rules[11].use[1]!builtin:lightningcss-loader??ruleSet[1].rules[11].use[2]!../../../../node_modules/.pnpm/@rsbuild+plugin-less@1.5.0_@rsbuild+core@1.6.12/node_modules/@rsbuild/plugin-less/compiled/less-loader/index.js??ruleSet[1].rules[11].use[3]!./src/components/GridLines/Occdahsed/styles.module.less");
15765
15236
  var Occdahsed_styles_module_options = {};
15766
15237
  Occdahsed_styles_module_options.styleTagTransform = styleTagTransform_default();
15767
15238
  Occdahsed_styles_module_options.setAttributes = setAttributesWithoutAttributes_default();
@@ -15786,7 +15257,7 @@ const Occdahsed_Occdahsed = ()=>{
15786
15257
  });
15787
15258
  };
15788
15259
  const Occdahsed = Occdahsed_Occdahsed;
15789
- var TotalLine_styles_module = __webpack_require__("../../../../node_modules/.pnpm/@rsbuild+core@1.3.18/node_modules/@rsbuild/core/compiled/css-loader/index.js??ruleSet[1].rules[11].use[1]!builtin:lightningcss-loader??ruleSet[1].rules[11].use[2]!../../../../node_modules/.pnpm/@rsbuild+plugin-less@1.5.0_@rsbuild+core@1.6.9/node_modules/@rsbuild/plugin-less/compiled/less-loader/index.js??ruleSet[1].rules[11].use[3]!./src/modules/Occupancy/TotalLine/styles.module.less");
15260
+ var TotalLine_styles_module = __webpack_require__("../../../../node_modules/.pnpm/@rsbuild+core@1.3.18/node_modules/@rsbuild/core/compiled/css-loader/index.js??ruleSet[1].rules[11].use[1]!builtin:lightningcss-loader??ruleSet[1].rules[11].use[2]!../../../../node_modules/.pnpm/@rsbuild+plugin-less@1.5.0_@rsbuild+core@1.6.12/node_modules/@rsbuild/plugin-less/compiled/less-loader/index.js??ruleSet[1].rules[11].use[3]!./src/modules/Occupancy/TotalLine/styles.module.less");
15790
15261
  var TotalLine_styles_module_options = {};
15791
15262
  TotalLine_styles_module_options.styleTagTransform = styleTagTransform_default();
15792
15263
  TotalLine_styles_module_options.setAttributes = setAttributesWithoutAttributes_default();
@@ -15795,7 +15266,7 @@ TotalLine_styles_module_options.domAPI = styleDomAPI_default();
15795
15266
  TotalLine_styles_module_options.insertStyleElement = insertStyleElement_default();
15796
15267
  injectStylesIntoStyleTag_default()(TotalLine_styles_module.Z, TotalLine_styles_module_options);
15797
15268
  const Occupancy_TotalLine_styles_module = TotalLine_styles_module.Z && TotalLine_styles_module.Z.locals ? TotalLine_styles_module.Z.locals : void 0;
15798
- const TotalLine = (props)=>{
15269
+ const TotalLine_TotalLine = (props)=>{
15799
15270
  const { value } = props;
15800
15271
  const style = (0, __WEBPACK_EXTERNAL_MODULE_react__.useMemo)(()=>({
15801
15272
  bottom: `${value || -200}%`
@@ -15819,7 +15290,7 @@ const TotalLine = (props)=>{
15819
15290
  })
15820
15291
  });
15821
15292
  };
15822
- const Occupancy_TotalLine = TotalLine;
15293
+ const TotalLine = TotalLine_TotalLine;
15823
15294
  const Occupancy_Occupancy = (props)=>{
15824
15295
  const { occupancyAxisYDisabled } = props;
15825
15296
  const { state: { globalID } } = useStore_useStore();
@@ -15862,10 +15333,10 @@ const Occupancy_Occupancy = (props)=>{
15862
15333
  children: [
15863
15334
  /*#__PURE__*/ (0, __WEBPACK_EXTERNAL_MODULE_react_jsx_runtime_225474f2__.jsx)(Occdahsed, {}),
15864
15335
  /*#__PURE__*/ (0, __WEBPACK_EXTERNAL_MODULE_react_jsx_runtime_225474f2__.jsx)(Chart, {}),
15865
- /*#__PURE__*/ (0, __WEBPACK_EXTERNAL_MODULE_react_jsx_runtime_225474f2__.jsx)(components_EventBus, {
15336
+ /*#__PURE__*/ (0, __WEBPACK_EXTERNAL_MODULE_react_jsx_runtime_225474f2__.jsx)(EventBus, {
15866
15337
  id: id
15867
15338
  }),
15868
- /*#__PURE__*/ (0, __WEBPACK_EXTERNAL_MODULE_react_jsx_runtime_225474f2__.jsx)(Occupancy_TotalLine, {
15339
+ /*#__PURE__*/ (0, __WEBPACK_EXTERNAL_MODULE_react_jsx_runtime_225474f2__.jsx)(TotalLine, {
15869
15340
  value: value
15870
15341
  }),
15871
15342
  /*#__PURE__*/ (0, __WEBPACK_EXTERNAL_MODULE_react_jsx_runtime_225474f2__.jsx)(components_Cursor, {
@@ -15905,7 +15376,7 @@ const OccupancyChart = (props)=>/*#__PURE__*/ (0, __WEBPACK_EXTERNAL_MODULE_reac
15905
15376
  });
15906
15377
  const lib_Occupancy_Occupancy = withChartPublisher(OccupancyChart, 'Occupancy');
15907
15378
  const lib_Occupancy = lib_Occupancy_Occupancy;
15908
- var Blaze_styles_module = __webpack_require__("../../../node_modules/.pnpm/@rsbuild+core@1.3.18/node_modules/@rsbuild/core/compiled/css-loader/index.js??ruleSet[1].rules[11].use[1]!builtin:lightningcss-loader??ruleSet[1].rules[11].use[2]!../../../node_modules/.pnpm/@rsbuild+plugin-less@1.5.0_@rsbuild+core@1.6.9/node_modules/@rsbuild/plugin-less/compiled/less-loader/index.js??ruleSet[1].rules[11].use[3]!./src/components/Blaze/styles.module.less");
15379
+ var Blaze_styles_module = __webpack_require__("../../../node_modules/.pnpm/@rsbuild+core@1.3.18/node_modules/@rsbuild/core/compiled/css-loader/index.js??ruleSet[1].rules[11].use[1]!builtin:lightningcss-loader??ruleSet[1].rules[11].use[2]!../../../node_modules/.pnpm/@rsbuild+plugin-less@1.5.0_@rsbuild+core@1.6.12/node_modules/@rsbuild/plugin-less/compiled/less-loader/index.js??ruleSet[1].rules[11].use[3]!./src/components/Blaze/styles.module.less");
15909
15380
  var Blaze_styles_module_options = {};
15910
15381
  Blaze_styles_module_options.styleTagTransform = styleTagTransform_default();
15911
15382
  Blaze_styles_module_options.setAttributes = setAttributesWithoutAttributes_default();
@@ -15955,7 +15426,7 @@ const Blaze = ()=>{
15955
15426
  });
15956
15427
  };
15957
15428
  const components_Blaze = /*#__PURE__*/ __WEBPACK_EXTERNAL_MODULE_react__["default"].memo(Blaze);
15958
- var Legend_styles_module = __webpack_require__("../../../node_modules/.pnpm/@rsbuild+core@1.3.18/node_modules/@rsbuild/core/compiled/css-loader/index.js??ruleSet[1].rules[11].use[1]!builtin:lightningcss-loader??ruleSet[1].rules[11].use[2]!../../../node_modules/.pnpm/@rsbuild+plugin-less@1.5.0_@rsbuild+core@1.6.9/node_modules/@rsbuild/plugin-less/compiled/less-loader/index.js??ruleSet[1].rules[11].use[3]!./src/components/Legend/styles.module.less");
15429
+ var Legend_styles_module = __webpack_require__("../../../node_modules/.pnpm/@rsbuild+core@1.3.18/node_modules/@rsbuild/core/compiled/css-loader/index.js??ruleSet[1].rules[11].use[1]!builtin:lightningcss-loader??ruleSet[1].rules[11].use[2]!../../../node_modules/.pnpm/@rsbuild+plugin-less@1.5.0_@rsbuild+core@1.6.12/node_modules/@rsbuild/plugin-less/compiled/less-loader/index.js??ruleSet[1].rules[11].use[3]!./src/components/Legend/styles.module.less");
15959
15430
  var Legend_styles_module_options = {};
15960
15431
  Legend_styles_module_options.styleTagTransform = styleTagTransform_default();
15961
15432
  Legend_styles_module_options.setAttributes = setAttributesWithoutAttributes_default();
@@ -15972,7 +15443,7 @@ const Legend = ()=>{
15972
15443
  });
15973
15444
  };
15974
15445
  const components_Legend = Legend;
15975
- var SegmentsZebra_styles_module = __webpack_require__("../../../node_modules/.pnpm/@rsbuild+core@1.3.18/node_modules/@rsbuild/core/compiled/css-loader/index.js??ruleSet[1].rules[11].use[1]!builtin:lightningcss-loader??ruleSet[1].rules[11].use[2]!../../../node_modules/.pnpm/@rsbuild+plugin-less@1.5.0_@rsbuild+core@1.6.9/node_modules/@rsbuild/plugin-less/compiled/less-loader/index.js??ruleSet[1].rules[11].use[3]!./src/components/SegmentsZebra/styles.module.less");
15446
+ var SegmentsZebra_styles_module = __webpack_require__("../../../node_modules/.pnpm/@rsbuild+core@1.3.18/node_modules/@rsbuild/core/compiled/css-loader/index.js??ruleSet[1].rules[11].use[1]!builtin:lightningcss-loader??ruleSet[1].rules[11].use[2]!../../../node_modules/.pnpm/@rsbuild+plugin-less@1.5.0_@rsbuild+core@1.6.12/node_modules/@rsbuild/plugin-less/compiled/less-loader/index.js??ruleSet[1].rules[11].use[3]!./src/components/SegmentsZebra/styles.module.less");
15976
15447
  var SegmentsZebra_styles_module_options = {};
15977
15448
  SegmentsZebra_styles_module_options.styleTagTransform = styleTagTransform_default();
15978
15449
  SegmentsZebra_styles_module_options.setAttributes = setAttributesWithoutAttributes_default();
@@ -16038,7 +15509,7 @@ const Zoom_Zoom = ()=>{
16038
15509
  return null;
16039
15510
  };
16040
15511
  const Zoom = Zoom_Zoom;
16041
- const useMarkerPublish_useMarkerPublish = ({ globalID })=>{
15512
+ const useMarkerPublish = ({ globalID })=>{
16042
15513
  const handleMarkerPublish = (0, __WEBPACK_EXTERNAL_MODULE_react__.useCallback)((e)=>{
16043
15514
  if (!globalID) return;
16044
15515
  switch(e.pstype){
@@ -16060,7 +15531,7 @@ const useMarkerPublish_useMarkerPublish = ({ globalID })=>{
16060
15531
  handleMarkerPublish
16061
15532
  };
16062
15533
  };
16063
- const useMarkerPublish = useMarkerPublish_useMarkerPublish;
15534
+ const hooks_useMarkerPublish = useMarkerPublish;
16064
15535
  function useSignalDataManager() {
16065
15536
  const { state, dispatch } = useStore_useStore();
16066
15537
  const globalID = state.globalID;
@@ -16454,6 +15925,11 @@ class FluorescenceRender {
16454
15925
  ].reverse().map((c)=>hexToRGBA(c)),
16455
15926
  ignoreValue: 0
16456
15927
  });
15928
+ handleColor(globalID, 'Fluorescence-Render', (colors)=>{
15929
+ this.state.chart?.updateProps({
15930
+ colors
15931
+ });
15932
+ });
16457
15933
  }
16458
15934
  updateParams(params) {
16459
15935
  this.clear();
@@ -16555,7 +16031,7 @@ const HeatmapPortal_Chart = (props)=>{
16555
16031
  type: constants_ChartType.Heatmap
16556
16032
  }),
16557
16033
  /*#__PURE__*/ (0, __WEBPACK_EXTERNAL_MODULE_react_jsx_runtime_225474f2__.jsx)(modules_Heatmap, {}),
16558
- /*#__PURE__*/ (0, __WEBPACK_EXTERNAL_MODULE_react_jsx_runtime_225474f2__.jsx)(AxisX, {
16034
+ /*#__PURE__*/ (0, __WEBPACK_EXTERNAL_MODULE_react_jsx_runtime_225474f2__.jsx)(components_AxisX, {
16559
16035
  type: type
16560
16036
  })
16561
16037
  ]
@@ -16573,7 +16049,7 @@ const OccupancyPortal_Chart = (props)=>{
16573
16049
  type: constants_ChartType.Occupancy
16574
16050
  }),
16575
16051
  /*#__PURE__*/ (0, __WEBPACK_EXTERNAL_MODULE_react_jsx_runtime_225474f2__.jsx)(modules_Occupancy, {}),
16576
- /*#__PURE__*/ (0, __WEBPACK_EXTERNAL_MODULE_react_jsx_runtime_225474f2__.jsx)(AxisX, {
16052
+ /*#__PURE__*/ (0, __WEBPACK_EXTERNAL_MODULE_react_jsx_runtime_225474f2__.jsx)(components_AxisX, {
16577
16053
  type: type
16578
16054
  })
16579
16055
  ]
@@ -16595,7 +16071,7 @@ const Spectrum_Chart_Chart = (props)=>{
16595
16071
  }
16596
16072
  });
16597
16073
  const handleSpectrumRule = useSpectrumRule(type);
16598
- const { handleMarkerPublish } = useMarkerPublish({
16074
+ const { handleMarkerPublish } = hooks_useMarkerPublish({
16599
16075
  globalID
16600
16076
  });
16601
16077
  hooks_usePublish({
@@ -16641,7 +16117,7 @@ const Spectrum_Chart_Chart = (props)=>{
16641
16117
  })
16642
16118
  ]
16643
16119
  }),
16644
- /*#__PURE__*/ (0, __WEBPACK_EXTERNAL_MODULE_react_jsx_runtime_225474f2__.jsx)(AxisX, {
16120
+ /*#__PURE__*/ (0, __WEBPACK_EXTERNAL_MODULE_react_jsx_runtime_225474f2__.jsx)(components_AxisX, {
16645
16121
  type: type
16646
16122
  })
16647
16123
  ]