@cloudtower/eagle 0.27.3 → 0.27.5

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/index.d.ts CHANGED
@@ -1,6 +1,6 @@
1
1
  import "./styles/index.scss";
2
2
  export type { CardProps, DateRange, GraphType, IconProps, IDataPoint, } from "./components";
3
- export { antdKit, BaseIcon, Button, ButtonStyle, createBatchMessageMethods, FailedLoad, FullView, Icon, InputTagItem, KitStoreProvider, ModalStack, tableStyleCover, tickFormatter, Truncate, Typo, useKitDispatch, useKitSelector, WizardBody, } from "./components";
3
+ export { antdKit, BaseIcon, Button, ButtonStyle, createBatchMessageMethods, FailedLoad, FullView, Icon, InputTagItem, KitStoreProvider, ModalStack, tableStyleCover, tickFormatter, Truncate, Typo, useKitDispatch, useKitSelector, WizardBody, radioStyle, CannotOperationInfo, ContentWrapper, Desc, LightDesc, RadioDesc, } from "./components";
4
4
  export * from "./components/TableForm/types";
5
5
  export * from "./coreX";
6
6
  export { useElementsSize } from "./hooks";
@@ -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;