@cloudtower/eagle 0.24.3 → 0.24.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
@@ -13,6 +13,10 @@ export type { MultipleSelectProps, SelectProps, SingleSelectProps, } from "./uti
13
13
  export * from "@cloudtower/parrot";
14
14
  export { Col, Row } from "antd";
15
15
  export type { ColProps } from "antd/lib/col";
16
+ export type { DatePickerProps } from "antd/lib/date-picker";
16
17
  export type { DropDownProps } from "antd/lib/dropdown";
18
+ export type { MenuProps } from "antd/lib/menu";
17
19
  export type { RowProps } from "antd/lib/row";
20
+ export type { SelectProps as AntdSelectProps } from "antd/lib/select";
18
21
  export type { ColumnsType, ColumnType, TableRowSelection, } from "antd/lib/table/interface";
22
+ export type { RcFile, UploadProps } from "antd/lib/upload";
@@ -47,7 +47,7 @@ import { TextProps } from "antd/lib/typography/Text";
47
47
  import { DraggerProps, UploadProps } from "antd/lib/upload";
48
48
  import type { Moment } from "moment";
49
49
  import React, { ReactNode } from "react";
50
- import { TableFormProps } from "../components/TableForm/types";
50
+ import { TableFormHandle, TableFormProps } from "../components/TableForm/types";
51
51
  import { SerializableObject } from "../utils/tower";
52
52
  import { FieldRenderProps } from "./react-final-form";
53
53
  import { Architecture, ISpaceProps, ITimeZoneSelectProps } from "./type";
@@ -440,7 +440,7 @@ export interface Kit<V = any, T extends HTMLElement = HTMLElement> {
440
440
  typographyText: React.FC<TextProps>;
441
441
  upload: React.ComponentType<UploadProps>;
442
442
  datePickerRangePicker: React.ComponentType<RangePickerProps>;
443
- tableForm: React.FC<TableFormProps>;
443
+ tableForm: React.ForwardRefExoticComponent<TableFormProps & React.RefAttributes<TableFormHandle>>;
444
444
  uploadDragger: React.ComponentType<DraggerProps>;
445
445
  calendar: React.FC<CalendarProps<Moment>>;
446
446
  timePicker: React.FC<TimePickerProps>;
@@ -480,5 +480,5 @@ export type EnumProps<V = any, T extends HTMLElement = HTMLElement> = {
480
480
  className?: string;
481
481
  dropdownClassName?: string;
482
482
  } & BaseEnumProps;
483
- export type TableFormPropsType = TableFormProps;
483
+ export type TableFormPropsType = React.ForwardRefExoticComponent<TableFormProps & React.RefAttributes<TableFormHandle>>;
484
484
  export {};