@cloudtower/eagle 0.27.69-alpha.5 → 0.27.69-alpha.6
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/stats1.html +1 -1
- package/dist/components.css +3731 -3731
- package/dist/esm/stats1.html +1 -1
- package/dist/src/antd.d.ts +5 -5
- package/dist/style.css +3871 -3871
- package/package.json +5 -5
package/dist/src/antd.d.ts
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
|
-
/// <reference types="react" />
|
|
2
1
|
import { MenuItemGroupProps } from "antd/lib/menu";
|
|
3
2
|
import { ModalProps as AntdModalProps } from "antd/lib/modal";
|
|
3
|
+
import { FC } from "react";
|
|
4
4
|
export { Badge as AntdBadge, Button as AntdButton, Checkbox as AntdCheckbox, Collapse as AntdCollapse, Divider as AntdDivider, Drawer as AntdDrawer, Empty as AntdEmpty, Input as AntdInput, message as AntdMessage, Select as AntdSelect, Steps as AntdSteps, Switch as AntdSwitch, Table as AntdTable, TimePicker as AntdTimePicker, Tooltip as AntdTooltip, TreeSelect as AntdTreeSelect, AutoComplete, Col, DatePicker, Dropdown, Layout, List, Menu, Popover, Row, Skeleton, Tabs, Timeline, Tree, Typography, Upload, } from "antd";
|
|
5
5
|
export declare const DatePickerRangePicker: import("react").ComponentClass<import("antd/lib/date-picker/generatePicker").RangePickerProps<import("moment").Moment>, any>;
|
|
6
6
|
export declare const ListItem: import("antd/lib/list/Item").ListItemTypeProps;
|
|
@@ -12,14 +12,14 @@ export declare const SkeletonButton: {
|
|
|
12
12
|
};
|
|
13
13
|
};
|
|
14
14
|
export declare const TabsTabPane: typeof import("rc-tabs").TabPane;
|
|
15
|
-
export declare const TimelineItem:
|
|
16
|
-
export declare const TypographyText:
|
|
15
|
+
export declare const TimelineItem: FC<import("antd/lib/timeline").TimeLineItemProps>;
|
|
16
|
+
export declare const TypographyText: FC<import("antd/lib/typography/Text").TextProps>;
|
|
17
17
|
export declare const UploadDragger: typeof import("antd/lib/upload/Dragger").default;
|
|
18
18
|
export declare const AntdOption: import("rc-select/lib/Option").OptionFC;
|
|
19
19
|
export declare const AntdSelectOptGroup: import("rc-select/lib/OptGroup").OptionGroupFC;
|
|
20
|
-
export declare const AntdModal: AntdModalProps & {
|
|
20
|
+
export declare const AntdModal: FC<AntdModalProps & {
|
|
21
21
|
focusTriggerAfterClose?: boolean | undefined;
|
|
22
|
-
}
|
|
22
|
+
}>;
|
|
23
23
|
export type { ButtonProps as AntdButtonProps } from "antd/lib/button";
|
|
24
24
|
export type { CheckboxChangeEvent as AntdCheckboxChangeEvent } from "antd/lib/checkbox";
|
|
25
25
|
export type { ColProps as AntdColProps } from "antd/lib/col";
|