andoncloud-prometheus-widget 1.2.2 → 1.2.4
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/dist/helpers.d.ts +1 -1
- package/dist/index.d.ts +1 -0
- package/dist/index.js +1 -28352
- package/dist/index.js.map +1 -1
- package/dist/stories/Widget.stories.d.ts +2 -4
- package/dist/version.d.ts +1 -1
- package/package.json +14 -12
package/dist/helpers.d.ts
CHANGED
|
@@ -2,5 +2,5 @@
|
|
|
2
2
|
import * as BaseMoment from 'moment';
|
|
3
3
|
import { QueriesPeriod, QueriesTimeRange, WidgetData } from './types';
|
|
4
4
|
export declare const moment: import("moment-range").MomentRange & typeof import("moment");
|
|
5
|
-
export
|
|
5
|
+
export type Moment = BaseMoment.Moment;
|
|
6
6
|
export declare const getQueriesTimeRange: (period: QueriesPeriod, data: WidgetData) => QueriesTimeRange | null;
|
package/dist/index.d.ts
CHANGED
|
@@ -2,3 +2,4 @@ import './i18n';
|
|
|
2
2
|
export { default as Widget } from './components/Widget';
|
|
3
3
|
export declare const getDisplayName: (lang: 'en' | 'pl') => "PromQL chart" | "Wykres PromQL" | "prometheus-widget";
|
|
4
4
|
export declare const permissions: never[];
|
|
5
|
+
export { LIBRARY_VERSION as version } from './version';
|