@cloudtower/eagle 0.27.23 → 0.27.25
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/Metric/metric.d.ts +1 -1
- package/dist/components.css +3047 -2361
- package/dist/coreX/DateRangePicker/AbsoluteDate.d.ts +7 -0
- package/dist/coreX/DateRangePicker/Calendar.d.ts +4 -0
- package/dist/coreX/DateRangePicker/DateRangePicker.stories.d.ts +7 -0
- package/dist/coreX/DateRangePicker/DateRangePicker.style.d.ts +43 -0
- package/dist/coreX/DateRangePicker/InputTime.d.ts +4 -0
- package/dist/coreX/DateRangePicker/RelativeTime.d.ts +4 -0
- package/dist/coreX/DateRangePicker/common.d.ts +72 -0
- package/dist/coreX/DateRangePicker/hooks/useElementIntersectionRatio.d.ts +2 -0
- package/dist/coreX/DateRangePicker/hooks/useMemoCompare.d.ts +2 -0
- package/dist/coreX/DateRangePicker/index.d.ts +9 -0
- package/dist/coreX/TabMenu/index.d.ts +32 -0
- package/dist/coreX/index.d.ts +2 -0
- package/dist/esm/index.js +3854 -2503
- package/dist/esm/stats1.html +1 -1
- package/dist/spec/base.d.ts +3 -1
- package/dist/spec/type.d.ts +5 -0
- package/dist/style.css +2469 -1783
- package/dist/umd/index.js +3862 -2505
- package/dist/umd/stats1.html +1 -1
- package/package.json +7 -5
package/dist/spec/base.d.ts
CHANGED
|
@@ -5,7 +5,6 @@ import { AutoCompleteProps } from "antd/lib/auto-complete";
|
|
|
5
5
|
import { BadgeProps } from "antd/lib/badge";
|
|
6
6
|
import { ButtonProps as AntdButtonProps, ButtonType } from "antd/lib/button";
|
|
7
7
|
import { CalendarProps } from "antd/lib/calendar/generateCalendar";
|
|
8
|
-
import { CascaderProps } from "antd5/lib/cascader";
|
|
9
8
|
import { CheckboxGroupProps, CheckboxProps } from "antd/lib/checkbox";
|
|
10
9
|
import { ColProps } from "antd/lib/col";
|
|
11
10
|
import { CollapsePanelProps, CollapseProps } from "antd/lib/collapse";
|
|
@@ -48,6 +47,7 @@ import { TreeProps as AntdTreeProps } from "antd/lib/tree";
|
|
|
48
47
|
import type TreeSelect from "antd/lib/tree-select";
|
|
49
48
|
import { TextProps } from "antd/lib/typography/Text";
|
|
50
49
|
import { DraggerProps, UploadProps } from "antd/lib/upload";
|
|
50
|
+
import { CascaderProps } from "antd5/lib/cascader";
|
|
51
51
|
import type { Dayjs } from "dayjs";
|
|
52
52
|
import type { History } from "history";
|
|
53
53
|
import type { Moment } from "moment";
|
|
@@ -60,6 +60,7 @@ import { TableFormHandle, TableFormProps } from "../components/TableForm/types";
|
|
|
60
60
|
import { TruncatePropTypes } from "../components/Truncate";
|
|
61
61
|
import type { CloseButtonProps } from "../core/AccordionCard";
|
|
62
62
|
import { IChartWithUnitProps, ICWTProps } from "../coreX/ChartWithTooltip";
|
|
63
|
+
import { DateRangePickerProps } from "../coreX/DateRangePicker/common";
|
|
63
64
|
import { IDonutChartProps } from "../coreX/DonutChart";
|
|
64
65
|
import { IUnitWithChartProps } from "../coreX/UnitWithChart";
|
|
65
66
|
import { SerializableObject } from "../utils/tower";
|
|
@@ -549,6 +550,7 @@ export interface Kit<V = any, T extends HTMLElement = HTMLElement> {
|
|
|
549
550
|
Link: LinkComponentType;
|
|
550
551
|
DropdownMenu: React.FC<IDropdownMenuProps>;
|
|
551
552
|
BatchOperation: React.FC<IBatchOperation>;
|
|
553
|
+
DateRangePicker: React.FC<DateRangePickerProps>;
|
|
552
554
|
}
|
|
553
555
|
export type ArchComponentType = React.FC<{
|
|
554
556
|
architecture?: Architecture;
|
package/dist/spec/type.d.ts
CHANGED