@cloudtower/eagle 0.27.3-alpha.0 → 0.27.3

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (33) hide show
  1. package/dist/components/Metric/metric.d.ts +1 -1
  2. package/dist/components/index.d.ts +0 -10
  3. package/dist/components.css +607 -531
  4. package/dist/coreX/CronPlan/CronPlan.stories.d.ts +9 -0
  5. package/dist/coreX/CronPlan/index.d.ts +18 -0
  6. package/dist/coreX/NamesTooltip/NamesTooltip.stories.d.ts +7 -0
  7. package/dist/coreX/NamesTooltip/__test__/index.test.d.ts +1 -0
  8. package/dist/coreX/NamesTooltip/index.d.ts +4 -0
  9. package/dist/coreX/index.d.ts +1 -0
  10. package/dist/esm/index.js +3408 -2726
  11. package/dist/esm/stats1.html +1 -1
  12. package/dist/index.d.ts +1 -0
  13. package/dist/spec/base.d.ts +21 -7
  14. package/dist/style.css +1294 -1218
  15. package/dist/umd/index.js +3413 -2731
  16. package/dist/umd/stats1.html +1 -1
  17. package/dist/utils/__test__/compute.spec.d.ts +1 -0
  18. package/dist/utils/__test__/cron-time.spec.d.ts +1 -0
  19. package/dist/utils/__test__/time.spec.d.ts +1 -0
  20. package/dist/utils/compute.d.ts +1 -0
  21. package/dist/utils/cron-time.d.ts +65 -0
  22. package/dist/utils/index.d.ts +3 -0
  23. package/dist/utils/time.d.ts +25 -0
  24. package/dist/utils/tower.d.ts +0 -1
  25. package/package.json +6 -6
  26. package/dist/coreX/BarChart/BarChart.stories.d.ts +0 -6
  27. package/dist/coreX/BarChart/index.d.ts +0 -10
  28. package/dist/coreX/ChartWithTooltip/ChartWithTooltip.stories.d.ts +0 -7
  29. package/dist/coreX/ChartWithTooltip/index.d.ts +0 -40
  30. package/dist/coreX/DonutChart/DonutChart.stories.d.ts +0 -6
  31. package/dist/coreX/DonutChart/index.d.ts +0 -12
  32. package/dist/coreX/UnitWithChart/UnitWithChart.stories.d.ts +0 -7
  33. package/dist/coreX/UnitWithChart/index.d.ts +0 -30
@@ -2,7 +2,7 @@ import { DateRange, IDataPoint, IMetric } from "./type";
2
2
  export declare function filterPointsByDateRange(points: IDataPoint[], dateRange: DateRange): IDataPoint[];
3
3
  export declare const parseRange: (range: string) => {
4
4
  span: number;
5
- unit: "h" | "d";
5
+ unit: "d" | "h";
6
6
  };
7
7
  export declare const xaxisCal: (lastTime: number, dateRange: DateRange) => number[];
8
8
  export declare const tickFormatter: (tick: number, dateRange: DateRange) => string;
@@ -29,13 +29,3 @@ export * from "./TimeZoneSelect";
29
29
  export * from "./Tooltip";
30
30
  export { default as Truncate } from "./Truncate";
31
31
  export * from "./Typo";
32
- export declare const units: {
33
- Percent: import("../spec").PercentFn;
34
- Byte: import("../spec").UnitFn;
35
- Frequency: import("../spec").UnitFn;
36
- Speed: import("../spec").UnitFn;
37
- Bps: import("../spec").UnitFn;
38
- BitPerSecond: import("../spec").UnitFn;
39
- Bit: import("../spec").UnitFn;
40
- Second: import("../spec").UnitFn;
41
- };