ngx-hana-nameserver-history-viewer 1.2.0-9.8.beta → 1.2.0-9.9.beta
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/esm2020/src/nameserver-history-viewer/components/timezone-selector/timezone-selector.component.mjs +2 -2
- package/esm2020/src/nameserver-history-viewer/components/timezone-selector/timezone-selector.service.mjs +2 -2
- package/esm2020/src/nameserver-history-viewer/utils/chartjs-downsample/data_culling.mjs +2 -3
- package/esm2020/src/nameserver-history-viewer/utils/chartjs-downsample/responsive_downsample_plugin.mjs +2 -3
- package/esm2020/src/nameserver-history-viewer/utils/time-util.mjs +2 -2
- package/fesm2015/ngx-hana-nameserver-history-viewer.mjs +10 -12
- package/fesm2015/ngx-hana-nameserver-history-viewer.mjs.map +1 -1
- package/fesm2020/ngx-hana-nameserver-history-viewer.mjs +10 -12
- package/fesm2020/ngx-hana-nameserver-history-viewer.mjs.map +1 -1
- package/package.json +1 -1
- package/src/nameserver-history-viewer/utils/chartjs-downsample/data_culling.d.ts +2 -2
package/package.json
CHANGED
|
@@ -24,8 +24,8 @@
|
|
|
24
24
|
*/
|
|
25
25
|
import { ChartPoint } from 'chart.js';
|
|
26
26
|
import { Scale } from './chartjs_ext';
|
|
27
|
-
import
|
|
28
|
-
export declare type XValue = number | string | Date |
|
|
27
|
+
import moment from 'moment';
|
|
28
|
+
export declare type XValue = number | string | Date | moment.Moment;
|
|
29
29
|
export declare type Range = [XValue, XValue];
|
|
30
30
|
export declare function rangeIsEqual(previousValue: Range, currentValue: Range): boolean;
|
|
31
31
|
export declare function getScaleRange(scale: Scale): Range;
|