@cloudtower/eagle 0.28.3 → 0.28.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/cjs/index.js +3 -5
- package/dist/cjs/legacy-antd.js +33 -35
- package/dist/cjs/stats1.html +1 -1
- package/dist/components.css +2438 -2445
- package/dist/esm/index.js +0 -1
- package/dist/esm/legacy-antd.js +0 -2
- package/dist/esm/stats1.html +1 -1
- package/dist/src/coreX/index.d.ts +0 -2
- package/dist/src/spec/base.d.ts +1 -2
- package/dist/style.css +2433 -2440
- package/package.json +4 -4
- package/dist/cjs/coreX/TruncatedTextWithTooltip/index.js +0 -73
- package/dist/esm/coreX/TruncatedTextWithTooltip/index.js +0 -67
- package/dist/src/coreX/TruncatedTextWithTooltip/index.d.ts +0 -11
- package/dist/src/coreX/TruncatedTextWithTooltip/truncatedTextWithTooltip.type.d.ts +0 -5
- package/dist/stories/docs/coreX/TruncatedTextWithTooltip.stories.d.ts +0 -7
|
@@ -17,7 +17,6 @@ export * from "./SortableList";
|
|
|
17
17
|
export * from "./SummaryTable";
|
|
18
18
|
export * from "./SwitchWithText";
|
|
19
19
|
export * from "./TabMenu";
|
|
20
|
-
export * from "./TruncatedTextWithTooltip";
|
|
21
20
|
export * from "./UnitWithChart";
|
|
22
21
|
export { default as BarChart } from "./BarChart";
|
|
23
22
|
export { default as BatchOperation } from "./BatchOperation";
|
|
@@ -37,5 +36,4 @@ export { default as SortableList } from "./SortableList";
|
|
|
37
36
|
export { default as SummaryTable } from "./SummaryTable";
|
|
38
37
|
export { default as SwitchWithText } from "./SwitchWithText";
|
|
39
38
|
export { default as TabMenu } from "./TabMenu";
|
|
40
|
-
export { default as TruncatedTextWithTooltip } from "./TruncatedTextWithTooltip";
|
|
41
39
|
export { default as UnitWithChart } from "./UnitWithChart";
|
package/dist/src/spec/base.d.ts
CHANGED
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
import type { AlertComponentType, ArchComponentType, BadgeComponentType, BaseEnumProps, ButtonGroupType, ButtonProps, CalendarComponentType, CardProps, CloseButtonProps, FieldBaseProps, FieldRenderProps, IAccordionCardProps, IBreadcrumbProps, ICircleProgressProps, IDetailCardProps, IDonutChartProps, IDropdownMenuProps, InputGroupComponentType, InputSize, IntFieldProps, ISegmentedControlProps, ISimplePaginationProps, ISpaceProps, IStepsProps, ITimeProps, ITimeZoneSelectProps, LinkComponentType, LoadingComponentType, MessageApi, ModalProps, PaginationProps, PercentFn, RadioButtonProps, RadioProps, SearchInputProps, SelectComponentType, StatusCapsuleComponentType, StringProps, SwitchProps, TableComponent, TableFormHandle, TableFormProps, TagComponentType, TextAreaProps, TokenComponentType, TooltipProps, TruncatePropTypes, UnitFn } from "../core";
|
|
2
|
-
import type { CronCalendarProps, CronPlanProps, DateRangePickerProps, DeprecatedIDonutChartProps, DropdownTransitionProps, GoBackButtonType, I18nNameTagType, IBatchOperation, IChartWithUnitProps, ICountingProps, ICWTProps, IUnitWithChartProps, NamesTooltipType, OverflowTooltipProps, SidebarSubtitleComponentType, SortableListComponentType, SummaryTableComponentType, SwitchWithTextProps
|
|
2
|
+
import type { CronCalendarProps, CronPlanProps, DateRangePickerProps, DeprecatedIDonutChartProps, DropdownTransitionProps, GoBackButtonType, I18nNameTagType, IBatchOperation, IChartWithUnitProps, ICountingProps, ICWTProps, IUnitWithChartProps, NamesTooltipType, OverflowTooltipProps, SidebarSubtitleComponentType, SortableListComponentType, SummaryTableComponentType, SwitchWithTextProps } from "../coreX";
|
|
3
3
|
import { AutoCompleteProps } from "antd/lib/auto-complete";
|
|
4
4
|
import { BadgeProps } from "antd/lib/badge";
|
|
5
5
|
import { ButtonProps as AntdButtonProps } from "antd/lib/button";
|
|
@@ -239,7 +239,6 @@ export interface Kit<V = any, T extends HTMLElement = HTMLElement> {
|
|
|
239
239
|
CloseButton: React.FC<CloseButtonProps>;
|
|
240
240
|
};
|
|
241
241
|
DetailCard: React.FC<IDetailCardProps>;
|
|
242
|
-
TruncatedTextWithTooltip: React.FC<TruncateTextWithTooltipType>;
|
|
243
242
|
Counting: React.FC<ICountingProps>;
|
|
244
243
|
Breadcrumb: React.FC<IBreadcrumbProps>;
|
|
245
244
|
CircleProgress: React.FC<ICircleProgressProps>;
|