@cloudtower/eagle 0.27.3 → 0.27.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/components/index.d.ts +10 -0
- package/dist/components.css +1244 -1161
- package/dist/coreX/BarChart/BarChart.stories.d.ts +6 -0
- package/dist/coreX/BarChart/index.d.ts +10 -0
- package/dist/coreX/ChartWithTooltip/ChartWithTooltip.stories.d.ts +7 -0
- package/dist/coreX/ChartWithTooltip/index.d.ts +40 -0
- package/dist/coreX/DonutChart/DonutChart.stories.d.ts +6 -0
- package/dist/coreX/DonutChart/index.d.ts +12 -0
- package/dist/coreX/UnitWithChart/UnitWithChart.stories.d.ts +7 -0
- package/dist/coreX/UnitWithChart/index.d.ts +30 -0
- package/dist/esm/index.js +1600 -1299
- package/dist/esm/stats1.html +1 -1
- package/dist/spec/base.d.ts +7 -0
- package/dist/style.css +890 -807
- package/dist/umd/index.js +1590 -1289
- package/dist/umd/stats1.html +1 -1
- package/dist/utils/tower.d.ts +1 -0
- package/package.json +5 -5
package/dist/spec/base.d.ts
CHANGED
|
@@ -57,6 +57,9 @@ import { MessageApi } from "../components/message";
|
|
|
57
57
|
import { TableFormHandle, TableFormProps } from "../components/TableForm/types";
|
|
58
58
|
import { TruncatePropTypes } from "../components/Truncate";
|
|
59
59
|
import type { CloseButtonProps } from "../core/AccordionCard";
|
|
60
|
+
import { IChartWithUnitProps, ICWTProps } from "../coreX/ChartWithTooltip";
|
|
61
|
+
import { IDonutChartProps } from "../coreX/DonutChart";
|
|
62
|
+
import { IUnitWithChartProps } from "../coreX/UnitWithChart";
|
|
60
63
|
import { SerializableObject } from "../utils/tower";
|
|
61
64
|
import { FieldRenderProps } from "./react-final-form";
|
|
62
65
|
import { Architecture, DropdownTransitionProps, IAccordionCardProps, IBreadcrumbProps, ICircleProgressProps, ICountingProps, IDetailCardProps, ISpaceProps, ITimeProps, ITimeZoneSelectProps, PropsFrom } from "./type";
|
|
@@ -530,6 +533,10 @@ export interface Kit<V = any, T extends HTMLElement = HTMLElement> {
|
|
|
530
533
|
SwitchWithText: React.FC<SwitchWithTextProps>;
|
|
531
534
|
CronPlan: React.FC<CronPlanProps>;
|
|
532
535
|
NamesTooltip: React.FC<NamesTooltipType>;
|
|
536
|
+
ChartWithTooltip: React.FC<ICWTProps>;
|
|
537
|
+
ChartWithUnit: React.FC<IChartWithUnitProps>;
|
|
538
|
+
DonutChart: React.FC<IDonutChartProps>;
|
|
539
|
+
UnitWithChart: React.FC<IUnitWithChartProps>;
|
|
533
540
|
}
|
|
534
541
|
export type ArchComponentType = React.FC<{
|
|
535
542
|
architecture?: Architecture;
|