@cloudtower/eagle 0.27.52 → 0.27.53
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.css +1572 -1572
- package/dist/esm/index.js +634 -635
- package/dist/esm/stats1.html +1 -1
- package/dist/src/core/Cascader/index.d.ts +1 -2
- package/dist/src/index.d.ts +1 -0
- package/dist/src/spec/base.d.ts +0 -2
- package/dist/stories/docs/cascader/cascader.stories.d.ts +1 -1
- package/dist/style.css +1789 -1789
- package/dist/umd/index.js +633 -633
- package/dist/umd/stats1.html +1 -1
- package/package.json +5 -5
package/dist/src/index.d.ts
CHANGED
|
@@ -1,6 +1,7 @@
|
|
|
1
1
|
import "./styles/index.scss";
|
|
2
2
|
export type { CardProps, DateRange, GraphType, IconProps, IDataPoint, } from "./core";
|
|
3
3
|
export { antdKit, BaseIcon, Button, ButtonStyle, CannotOperationInfo, ContentWrapper, createBatchMessageMethods, Desc, FailedLoad, FullView, Icon, InputTagItem, KitStoreProvider, LightDesc, ModalStack, RadioDesc, radioStyle, tableStyleCover, tickFormatter, Truncate, Typo, useKitDispatch, useKitSelector, WizardBody, } from "./core";
|
|
4
|
+
export { Cascader } from "./core/Cascader";
|
|
4
5
|
export * from "./core/Cascader/cascader.style";
|
|
5
6
|
export * from "./core/Cascader/cascader.type";
|
|
6
7
|
export * from "./core/Cascader/cascader.widget";
|
package/dist/src/spec/base.d.ts
CHANGED
|
@@ -53,7 +53,6 @@ import { TreeProps as AntdTreeProps } from "antd/lib/tree";
|
|
|
53
53
|
import type TreeSelect from "antd/lib/tree-select";
|
|
54
54
|
import { TextProps } from "antd/lib/typography/Text";
|
|
55
55
|
import { DraggerProps, UploadProps } from "antd/lib/upload";
|
|
56
|
-
import { CascaderProps } from "antd5/lib/cascader";
|
|
57
56
|
import type { Dayjs } from "dayjs";
|
|
58
57
|
import type { History } from "history";
|
|
59
58
|
import type { Moment } from "moment";
|
|
@@ -490,7 +489,6 @@ export interface Kit<V = any, T extends HTMLElement = HTMLElement> {
|
|
|
490
489
|
row: React.FC<RowProps>;
|
|
491
490
|
timeline: React.FC<TimelineProps>;
|
|
492
491
|
timelineItem: React.FC<TimeLineItemProps>;
|
|
493
|
-
cascader: React.ComponentType<CascaderProps>;
|
|
494
492
|
checkboxGroup: React.ComponentType<CheckboxGroupProps>;
|
|
495
493
|
typographyText: React.FC<TextProps>;
|
|
496
494
|
upload: React.ComponentType<UploadProps>;
|