@flexem/fc-gui 3.0.0-alpha.130 → 3.0.0-alpha.131

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.
@@ -197,8 +197,18 @@ export class HistoricalCurveElement extends ConditionalDisplayElement {
197
197
  }
198
198
  }
199
199
  reRenderElement(startTime, endTime, limit, rangeType) {
200
+ // 清理图表实例
201
+ if (this.chartElement) {
202
+ // 隐藏 tooltip
203
+ if (this.chartElement.tooltip) {
204
+ this.chartElement.tooltip.hidden(true);
205
+ }
206
+ // 清理图表引用
207
+ this.chartElement = null;
208
+ }
209
+ // 清除 DOM 元素
200
210
  this.rootElement.selectAll('*').remove();
201
- this.chartElement = null;
211
+ // 重新渲染
202
212
  this.renderElement(startTime, endTime, limit, rangeType);
203
213
  }
204
214
  renderElement(startTime, endTime, limit, rangeType) {
@@ -329,18 +339,16 @@ export class HistoricalCurveElement extends ConditionalDisplayElement {
329
339
  data.push({ key: displayName, area: channel.projectEnabled, values: values });
330
340
  });
331
341
  this.data = data;
332
- nv.addGraph(() => {
333
- let chart;
334
- if (this.model.displaySetting.curveType === CurveType.BarGroup || this.model.displaySetting.curveType === CurveType.BarStack) {
335
- chart = this.getMultiBarWithFocusChart(chartWidth, chartHeight, data);
336
- }
337
- else {
338
- chart = this.getLineChart(chartWidth, chartHeight, data);
339
- }
340
- // 设置 tooltip 自动隐藏逻辑
341
- this.setupTooltipAutoHide(chart);
342
- return chart;
343
- });
342
+ let chart;
343
+ if (this.model.displaySetting.curveType === CurveType.BarGroup || this.model.displaySetting.curveType === CurveType.BarStack) {
344
+ chart = this.getMultiBarWithFocusChart(chartWidth, chartHeight, data);
345
+ }
346
+ else {
347
+ chart = this.getLineChart(chartWidth, chartHeight, data);
348
+ }
349
+ // 设置 tooltip 自动隐藏逻辑
350
+ this.setupTooltipAutoHide(chart);
351
+ return chart;
344
352
  }
345
353
  /**
346
354
  * 【新格式】多条目独立数据的曲线渲染
@@ -377,18 +385,16 @@ export class HistoricalCurveElement extends ConditionalDisplayElement {
377
385
  });
378
386
  });
379
387
  this.data = data;
380
- nv.addGraph(() => {
381
- let chart;
382
- if (this.model.displaySetting.curveType === CurveType.BarGroup || this.model.displaySetting.curveType === CurveType.BarStack) {
383
- chart = this.getMultiBarWithFocusChart(chartWidth, chartHeight, data);
384
- }
385
- else {
386
- chart = this.getLineChart(chartWidth, chartHeight, data);
387
- }
388
- // 设置 tooltip 自动隐藏逻辑
389
- this.setupTooltipAutoHide(chart);
390
- return chart;
391
- });
388
+ let chart;
389
+ if (this.model.displaySetting.curveType === CurveType.BarGroup || this.model.displaySetting.curveType === CurveType.BarStack) {
390
+ chart = this.getMultiBarWithFocusChart(chartWidth, chartHeight, data);
391
+ }
392
+ else {
393
+ chart = this.getLineChart(chartWidth, chartHeight, data);
394
+ }
395
+ // 设置 tooltip 自动隐藏逻辑
396
+ this.setupTooltipAutoHide(chart);
397
+ return chart;
392
398
  }
393
399
  initPoint() {
394
400
  try {
@@ -35,6 +35,7 @@ export declare class ScrollAlarmElement extends ConditionalDynamicDisplayElement
35
35
  private headerFont;
36
36
  private fontString;
37
37
  private hasTriedFirstPage;
38
+ private isSimulateMode;
38
39
  constructor(element: HTMLElement, injector: Injector, permissionChecker: PermissionChecker, variableCommunicator: VariableCommunicator, variableStore: VariableStore, alarmsStore: AlarmsStore, signalRAppId: string);
39
40
  dispose(): void;
40
41
  private getAlarmData;
@@ -51,4 +52,16 @@ export declare class ScrollAlarmElement extends ConditionalDynamicDisplayElement
51
52
  private setStatusAsLoading;
52
53
  private renderStatus;
53
54
  private clearStatus;
55
+ /**
56
+ * 模拟运行时的静态显示逻辑:只显示字段标签,不查询数据
57
+ */
58
+ private renderStaticDisplay;
59
+ /**
60
+ * 模拟运行时的静态滚动逻辑
61
+ */
62
+ private initStaticScrolling;
63
+ /**
64
+ * 模拟运行时的静态内容滚动
65
+ */
66
+ private scrollStaticContent;
54
67
  }
@@ -10,7 +10,7 @@ var ScrollAlarmElementStatus;
10
10
  })(ScrollAlarmElementStatus || (ScrollAlarmElementStatus = {}));
11
11
  export class ScrollAlarmElement extends ConditionalDynamicDisplayElement {
12
12
  constructor(element, injector, permissionChecker, variableCommunicator, variableStore, alarmsStore, signalRAppId) {
13
- var _a, _b, _c, _d, _e;
13
+ var _a, _b, _c, _d, _e, _f;
14
14
  super(element, permissionChecker, variableCommunicator, variableStore, signalRAppId);
15
15
  this.alarmsStore = alarmsStore;
16
16
  this.elementStatus = ScrollAlarmElementStatus.Loading;
@@ -30,63 +30,98 @@ export class ScrollAlarmElement extends ConditionalDynamicDisplayElement {
30
30
  this.hasMoreData = true;
31
31
  this.isLoadingNextPage = false;
32
32
  this.hasTriedFirstPage = false; // 是否已经尝试加载过第一页
33
+ this.isSimulateMode = false; // 是否是模拟运行模式
33
34
  this.rootElement.selectAll('*').remove();
34
35
  this.setStatusAsLoading();
35
36
  this.logger = injector.get(LOGGER_SERVICE_TOKEN);
36
37
  this.variableCommunicator = variableCommunicator;
37
38
  this.autoCycle = (_b = (_a = this.model.generalSetting) === null || _a === void 0 ? void 0 : _a.autoCycle) !== null && _b !== void 0 ? _b : true;
38
39
  this.maxResultCount = (_d = (_c = this.model.generalSetting) === null || _c === void 0 ? void 0 : _c.pageSize) !== null && _d !== void 0 ? _d : 500;
39
- if (this.model.filterSetting) {
40
+ // 检测是否是模拟运行模式(通过检查 alarmsStore 的类型)
41
+ this.isSimulateMode = alarmsStore && alarmsStore.constructor.name === 'SimulateAlarmDataStore';
42
+ if (this.model.filterSetting && this.model.filterSetting.detailsData && this.model.filterSetting.detailsData.length > 0) {
40
43
  this.alarmNames = this.model.filterSetting.detailsData.map(item => item.name);
41
- this.updateQueryTimeRange();
42
- // 监听告警更新 (带节流,1秒内只执行一次)
43
- variableCommunicator.subscribeUserDeviceAlarms(signalRAppId).subscribe(alarms => {
44
- alarms.forEach(alarm => {
45
- if (this.alarmNames.indexOf(alarm.name) !== -1) {
46
- // 如果已经在等待刷新,直接返回,避免重复清理和创建定时器
47
- if (this.isWaitingForAlarmRefresh) {
44
+ // 如果是模拟运行模式,使用静态显示逻辑(类似设计态)
45
+ if (this.isSimulateMode) {
46
+ // 初始化显示容器
47
+ this.initDisplayContainer();
48
+ // 获取字体设置
49
+ this.headerFont = ((_e = this.model.generalSetting) === null || _e === void 0 ? void 0 : _e.headerFont) || {};
50
+ // 构建符合 CSS font 属性规范的字符串
51
+ let fontString = '';
52
+ if (this.headerFont.isItalic) {
53
+ fontString += 'italic ';
54
+ }
55
+ if (this.headerFont.isBold) {
56
+ fontString += 'bold ';
57
+ }
58
+ const fontSize = this.headerFont.fontSize || '16px';
59
+ const lineHeight = parseInt(fontSize, 10) + 5;
60
+ fontString += `${fontSize}/${lineHeight}px ${this.headerFont.fontFamily || 'Microsoft YaHei'}`;
61
+ this.fontString = fontString;
62
+ // 使用静态显示逻辑:只显示字段标签
63
+ this.renderStaticDisplay();
64
+ this.setStatusAsNormal();
65
+ }
66
+ else {
67
+ // 真实运行模式:使用原有的数据查询逻辑
68
+ this.updateQueryTimeRange();
69
+ // 监听告警更新 (带节流,1秒内只执行一次)
70
+ variableCommunicator.subscribeUserDeviceAlarms(signalRAppId).subscribe(alarms => {
71
+ alarms.forEach(alarm => {
72
+ if (this.alarmNames.indexOf(alarm.name) !== -1) {
73
+ // 如果已经在等待刷新,直接返回,避免重复清理和创建定时器
74
+ if (this.isWaitingForAlarmRefresh) {
75
+ return;
76
+ }
77
+ // 标记为等待刷新状态
78
+ this.isWaitingForAlarmRefresh = true;
79
+ // 设置节流定时器,1秒后执行
80
+ this.alarmRefreshThrottleId = setTimeout(() => {
81
+ // 收到新告警消息,重置到第一页并重新开始滚动
82
+ this.resetToFirstPage();
83
+ // 如果非自动循环模式,需要重新启动滚动
84
+ if (!this.autoCycle && !this.isScrolling) {
85
+ this.initScrolling();
86
+ }
87
+ // 重置等待刷新标志
88
+ this.isWaitingForAlarmRefresh = false;
89
+ }, 1000);
48
90
  return;
49
91
  }
50
- // 标记为等待刷新状态
51
- this.isWaitingForAlarmRefresh = true;
52
- // 设置节流定时器,1秒后执行
53
- this.alarmRefreshThrottleId = setTimeout(() => {
54
- // 收到新告警消息,重置到第一页并重新开始滚动
55
- this.resetToFirstPage();
56
- // 如果非自动循环模式,需要重新启动滚动
57
- if (!this.autoCycle && !this.isScrolling) {
58
- this.initScrolling();
59
- }
60
- // 重置等待刷新标志
61
- this.isWaitingForAlarmRefresh = false;
62
- }, 1000);
63
- return;
64
- }
92
+ });
65
93
  });
66
- });
67
- // 初始化显示容器
68
- this.initDisplayContainer();
69
- // 获取字体设置
70
- this.headerFont = ((_e = this.model.generalSetting) === null || _e === void 0 ? void 0 : _e.headerFont) || {};
71
- const fontStyle = [];
72
- if (this.headerFont.isBold)
73
- fontStyle.push('bold');
74
- if (this.headerFont.isItalic)
75
- fontStyle.push('italic');
76
- if (this.headerFont.isUnderline)
77
- fontStyle.push('underline');
78
- fontStyle.push(`${this.headerFont.fontSize || '16px'}`);
79
- fontStyle.push(`${this.headerFont.fontFamily || 'Microsoft YaHei'}`);
80
- this.fontString = fontStyle.join(' ');
81
- this.getAlarmData();
94
+ // 初始化显示容器
95
+ this.initDisplayContainer();
96
+ // 获取字体设置 - 参考 text-element.ts 的实现方式
97
+ this.headerFont = ((_f = this.model.generalSetting) === null || _f === void 0 ? void 0 : _f.headerFont) || {};
98
+ // 构建符合 CSS font 属性规范的字符串
99
+ // 格式:font-style font-weight font-size/line-height font-family
100
+ let fontString = '';
101
+ if (this.headerFont.isItalic) {
102
+ fontString += 'italic ';
103
+ }
104
+ if (this.headerFont.isBold) {
105
+ fontString += 'bold ';
106
+ }
107
+ const fontSize = this.headerFont.fontSize || '16px';
108
+ const lineHeight = parseInt(fontSize, 10) + 5;
109
+ fontString += `${fontSize}/${lineHeight}px ${this.headerFont.fontFamily || 'Microsoft YaHei'}`;
110
+ this.fontString = fontString;
111
+ this.getAlarmData();
112
+ }
82
113
  }
83
114
  else {
115
+ // 未配置告警(没有勾选过告警),不执行,直接展示空
84
116
  this.displayedItems = [];
117
+ // 初始化显示容器以显示空内容
118
+ this.initDisplayContainer();
85
119
  if (this.allAlarmsContainer) {
86
120
  this.allAlarmsContainer.innerHTML = '';
87
121
  this.totalWidth = 0;
88
122
  this.pageWidths = [];
89
123
  }
124
+ this.setStatusAsNormal();
90
125
  }
91
126
  }
92
127
  dispose() {
@@ -244,6 +279,7 @@ export class ScrollAlarmElement extends ConditionalDynamicDisplayElement {
244
279
  overflow: hidden;
245
280
  position: relative;
246
281
  border: 1px solid #8ea0aa;
282
+ border-radius: 2px;
247
283
  `;
248
284
  this.element.appendChild(this.container);
249
285
  // 创建一个大容器来包含所有告警项,初始位置在容器右侧(从右边开始滚入)
@@ -277,6 +313,10 @@ export class ScrollAlarmElement extends ConditionalDynamicDisplayElement {
277
313
  white-space: nowrap;
278
314
  overflow: visible;
279
315
  `;
316
+ // 应用下划线样式(参考 text-element.ts 的实现)
317
+ if (this.headerFont.isUnderline) {
318
+ textContainer.style.textDecoration = 'underline';
319
+ }
280
320
  // 构建告警信息内容,根据配置决定显示哪些字段
281
321
  const contentParts = [];
282
322
  // 显示触发时间
@@ -297,16 +337,16 @@ export class ScrollAlarmElement extends ConditionalDynamicDisplayElement {
297
337
  if (((_f = this.model.generalSetting) === null || _f === void 0 ? void 0 : _f.showAlarmName) && alarm.name) {
298
338
  contentParts.push(alarm.name);
299
339
  }
340
+ // 显示告警内容
341
+ if (((_g = this.model.generalSetting) === null || _g === void 0 ? void 0 : _g.showAlarmContent) && alarm.message) {
342
+ contentParts.push(alarm.message);
343
+ }
300
344
  // 显示告警状态
301
- if (((_g = this.model.generalSetting) === null || _g === void 0 ? void 0 : _g.showAlarmState) && alarm.state !== undefined) {
345
+ if (((_h = this.model.generalSetting) === null || _h === void 0 ? void 0 : _h.showAlarmState) && alarm.state !== undefined) {
302
346
  const stateMap = isChinese ? ['触发/未确认', '触发/已确认', '恢复/未确认', '恢复/已确认'] : ['Triggered/Unconfirmed', 'Triggered/Confirmed', 'Restored/Unconfirmed', 'Restored/Confirmed'];
303
347
  const alarmState = stateMap[alarm.state] || (isChinese ? '触发/未确认' : 'Triggered/Unconfirmed');
304
348
  contentParts.push(alarmState);
305
349
  }
306
- // 显示告警内容
307
- if (((_h = this.model.generalSetting) === null || _h === void 0 ? void 0 : _h.showAlarmContent) && alarm.message) {
308
- contentParts.push(alarm.message);
309
- }
310
350
  // 将所有显示字段用空格连接,确保一行显示
311
351
  const textContent = contentParts.join(' ');
312
352
  textContainer.textContent = textContent;
@@ -514,4 +554,110 @@ export class ScrollAlarmElement extends ConditionalDynamicDisplayElement {
514
554
  }
515
555
  this.$element.find('image#StateImage').remove();
516
556
  }
557
+ /**
558
+ * 模拟运行时的静态显示逻辑:只显示字段标签,不查询数据
559
+ */
560
+ renderStaticDisplay() {
561
+ var _a, _b, _c, _d, _e, _f, _g, _h, _j, _k, _l, _m, _o, _p, _q, _r, _s;
562
+ // 根据配置构建显示的字段标签
563
+ const textParts = [];
564
+ if (((_a = this.model.generalSetting) === null || _a === void 0 ? void 0 : _a.showTriggerTime) !== false) {
565
+ // 使用moment.format方法格式化日期时间
566
+ const timeStr = moment().format('YYYY/MM/DD HH:mm:ss');
567
+ textParts.push(timeStr);
568
+ }
569
+ if (((_b = this.model.generalSetting) === null || _b === void 0 ? void 0 : _b.showAlarmLevel) !== false) {
570
+ // 获取当前语言环境
571
+ const language = ((_e = (_d = (_c = window.abp) === null || _c === void 0 ? void 0 : _c.localization) === null || _d === void 0 ? void 0 : _d.currentLanguage) === null || _e === void 0 ? void 0 : _e.name) || 'zh-Hans';
572
+ const isChinese = language === 'zh-Hans' || language === 'zh';
573
+ textParts.push(isChinese ? '严重' : 'Critical');
574
+ }
575
+ if (((_f = this.model.generalSetting) === null || _f === void 0 ? void 0 : _f.showAlarmName) === true) {
576
+ // 获取当前语言环境
577
+ const language = ((_j = (_h = (_g = window.abp) === null || _g === void 0 ? void 0 : _g.localization) === null || _h === void 0 ? void 0 : _h.currentLanguage) === null || _j === void 0 ? void 0 : _j.name) || 'zh-Hans';
578
+ const isChinese = language === 'zh-Hans' || language === 'zh';
579
+ textParts.push(isChinese ? '室内温度' : 'Indoor Temperature');
580
+ }
581
+ if (((_k = this.model.generalSetting) === null || _k === void 0 ? void 0 : _k.showAlarmContent) !== false) {
582
+ // 获取当前语言环境
583
+ const language = ((_o = (_m = (_l = window.abp) === null || _l === void 0 ? void 0 : _l.localization) === null || _m === void 0 ? void 0 : _m.currentLanguage) === null || _o === void 0 ? void 0 : _o.name) || 'zh-Hans';
584
+ const isChinese = language === 'zh-Hans' || language === 'zh';
585
+ textParts.push(isChinese ? '室内温度高于30°C或小于10°C' : 'Indoor temperature is higher than 30℃ or lower than 10℃');
586
+ }
587
+ if (((_p = this.model.generalSetting) === null || _p === void 0 ? void 0 : _p.showAlarmState) === true) {
588
+ // 获取当前语言环境
589
+ const language = ((_s = (_r = (_q = window.abp) === null || _q === void 0 ? void 0 : _q.localization) === null || _r === void 0 ? void 0 : _r.currentLanguage) === null || _s === void 0 ? void 0 : _s.name) || 'zh-Hans';
590
+ const isChinese = language === 'zh-Hans' || language === 'zh';
591
+ textParts.push(isChinese ? '触发/未确认' : 'Triggered/Unconfirmed');
592
+ }
593
+ // 创建文本容器
594
+ const textContainer = document.createElement('div');
595
+ textContainer.style.cssText = `
596
+ font: ${this.fontString};
597
+ color: ${this.headerFont.color || '#E95F5F'};
598
+ white-space: nowrap;
599
+ overflow: visible;
600
+ `;
601
+ // 应用下划线样式
602
+ if (this.headerFont.isUnderline) {
603
+ textContainer.style.textDecoration = 'underline';
604
+ }
605
+ // 设置文本内容
606
+ textContainer.textContent = textParts.join(' ');
607
+ this.allAlarmsContainer.appendChild(textContainer);
608
+ // 计算文本宽度
609
+ const textWidth = textContainer.offsetWidth;
610
+ this.totalWidth = textWidth;
611
+ this.pageWidths.push(textWidth);
612
+ // 设置初始位置为容器宽度(从右侧滚入)
613
+ this.currentLeft = this.container.clientWidth;
614
+ this.allAlarmsContainer.style.left = `${this.currentLeft}px`;
615
+ // 根据 autoCycle 配置决定是否启动滚动
616
+ if (this.autoCycle) {
617
+ this.initStaticScrolling();
618
+ }
619
+ }
620
+ /**
621
+ * 模拟运行时的静态滚动逻辑
622
+ */
623
+ initStaticScrolling() {
624
+ clearInterval(this.scrollIntervalId);
625
+ // 确保初始位置在容器右侧
626
+ this.currentLeft = this.container.clientWidth;
627
+ this.allAlarmsContainer.style.left = `${this.currentLeft}px`;
628
+ const scrollInterval = 100;
629
+ // 延迟启动滚动确保内容渲染完成
630
+ setTimeout(() => {
631
+ this.isScrolling = true;
632
+ this.scrollIntervalId = setInterval(() => {
633
+ if (this.isScrolling) {
634
+ this.scrollStaticContent();
635
+ }
636
+ }, scrollInterval);
637
+ }, 500);
638
+ }
639
+ /**
640
+ * 模拟运行时的静态内容滚动
641
+ */
642
+ scrollStaticContent() {
643
+ // 每次滚动的距离
644
+ const scrollStep = 2;
645
+ // 更新位置 - 从右往左滚动
646
+ this.currentLeft -= scrollStep;
647
+ // 当内容完全滚出容器左侧时
648
+ if (this.currentLeft + this.totalWidth < 0) {
649
+ if (this.autoCycle) {
650
+ // 自动循环模式:重置到容器右侧
651
+ this.currentLeft = this.container.clientWidth;
652
+ }
653
+ else {
654
+ // 非循环模式:停止滚动
655
+ clearInterval(this.scrollIntervalId);
656
+ this.isScrolling = false;
657
+ return;
658
+ }
659
+ }
660
+ // 更新显示位置
661
+ this.allAlarmsContainer.style.left = `${this.currentLeft}px`;
662
+ }
517
663
  }
@@ -1 +1 @@
1
- [{"__symbolic":"module","version":4,"metadata":{"ScrollAlarmElement":{"__symbolic":"class","extends":{"__symbolic":"reference","module":"../base/conditional-dynamic-display-element","name":"ConditionalDynamicDisplayElement","line":17,"character":40},"members":{"__ctor__":[{"__symbolic":"constructor","parameters":[{"__symbolic":"error","message":"Could not resolve type","line":51,"character":25,"context":{"typeName":"HTMLElement"}},{"__symbolic":"reference","module":"@angular/core","name":"Injector","line":52,"character":18},{"__symbolic":"reference","module":"../../service","name":"PermissionChecker","line":53,"character":27},{"__symbolic":"reference","module":"../../communication","name":"VariableCommunicator","line":54,"character":30},{"__symbolic":"reference","module":"../../config","name":"VariableStore","line":55,"character":23},{"__symbolic":"reference","module":"../../config","name":"AlarmsStore","line":56,"character":38},{"__symbolic":"reference","name":"string"}]}],"dispose":[{"__symbolic":"method"}],"getAlarmData":[{"__symbolic":"method"}],"initDisplayContainer":[{"__symbolic":"method"}],"renderNewPage":[{"__symbolic":"method"}],"removeOldestPage":[{"__symbolic":"method"}],"scrollContent":[{"__symbolic":"method"}],"initScrolling":[{"__symbolic":"method"}],"pauseScroll":[{"__symbolic":"method"}],"resumeScroll":[{"__symbolic":"method"}],"resetToFirstPage":[{"__symbolic":"method"}],"updateQueryTimeRange":[{"__symbolic":"method"}],"setStatusAsNormal":[{"__symbolic":"method"}],"setStatusAsLoading":[{"__symbolic":"method"}],"renderStatus":[{"__symbolic":"method"}],"clearStatus":[{"__symbolic":"method"}]}}}}]
1
+ [{"__symbolic":"module","version":4,"metadata":{"ScrollAlarmElement":{"__symbolic":"class","extends":{"__symbolic":"reference","module":"../base/conditional-dynamic-display-element","name":"ConditionalDynamicDisplayElement","line":17,"character":40},"members":{"__ctor__":[{"__symbolic":"constructor","parameters":[{"__symbolic":"error","message":"Could not resolve type","line":52,"character":25,"context":{"typeName":"HTMLElement"}},{"__symbolic":"reference","module":"@angular/core","name":"Injector","line":53,"character":18},{"__symbolic":"reference","module":"../../service","name":"PermissionChecker","line":54,"character":27},{"__symbolic":"reference","module":"../../communication","name":"VariableCommunicator","line":55,"character":30},{"__symbolic":"reference","module":"../../config","name":"VariableStore","line":56,"character":23},{"__symbolic":"reference","module":"../../config","name":"AlarmsStore","line":57,"character":38},{"__symbolic":"reference","name":"string"}]}],"dispose":[{"__symbolic":"method"}],"getAlarmData":[{"__symbolic":"method"}],"initDisplayContainer":[{"__symbolic":"method"}],"renderNewPage":[{"__symbolic":"method"}],"removeOldestPage":[{"__symbolic":"method"}],"scrollContent":[{"__symbolic":"method"}],"initScrolling":[{"__symbolic":"method"}],"pauseScroll":[{"__symbolic":"method"}],"resumeScroll":[{"__symbolic":"method"}],"resetToFirstPage":[{"__symbolic":"method"}],"updateQueryTimeRange":[{"__symbolic":"method"}],"setStatusAsNormal":[{"__symbolic":"method"}],"setStatusAsLoading":[{"__symbolic":"method"}],"renderStatus":[{"__symbolic":"method"}],"clearStatus":[{"__symbolic":"method"}],"renderStaticDisplay":[{"__symbolic":"method"}],"initStaticScrolling":[{"__symbolic":"method"}],"scrollStaticContent":[{"__symbolic":"method"}]}}}}]
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "main": "bundles/fc-gui.umd.js",
3
- "version": "3.0.0-alpha.130",
3
+ "version": "3.0.0-alpha.131",
4
4
  "module": "public_api.js",
5
5
  "typings": "public_api.d.ts",
6
6
  "license": "UNLICENSED",