@cloudtower/eagle 0.26.6 → 0.26.8

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.
@@ -35,7 +35,7 @@ import { RowProps } from "antd/lib/row";
35
35
  import { SelectProps as AntdSelectProps, SelectProps } from "antd/lib/select";
36
36
  import { SkeletonProps as AntdSkeletonProps } from "antd/lib/skeleton";
37
37
  import { SkeletonButtonProps } from "antd/lib/skeleton/Button";
38
- import { StepProps, StepsProps } from "antd/lib/steps";
38
+ import Steps, { StepProps, StepsProps } from "antd/lib/steps";
39
39
  import { SwitchProps as AntdSwitchProps } from "antd/lib/switch";
40
40
  import { ColumnsType, ColumnType, TableProps as AntdTableProps } from "antd/lib/table";
41
41
  import { TableRowSelection } from "antd/lib/table/interface";
@@ -450,6 +450,7 @@ export interface Kit<V = any, T extends HTMLElement = HTMLElement> {
450
450
  buttonGroup: React.ForwardRefExoticComponent<ButtonGroupType & React.RefAttributes<HTMLDivElement>>;
451
451
  steps: React.FC<IStepsProps>;
452
452
  form: Form;
453
+ antdSteps: typeof Steps;
453
454
  simplePagination: React.FC<ISimplePaginationProps>;
454
455
  space: React.FC<ISpaceProps>;
455
456
  timeZoneSelect: React.FC<ITimeZoneSelectProps>;
@@ -475,7 +476,9 @@ export interface Kit<V = any, T extends HTMLElement = HTMLElement> {
475
476
  antdButton: React.ComponentType<AntdButtonProps>;
476
477
  antdSelect: React.ComponentType<SelectProps<V>>;
477
478
  antdTooltip: React.FC<TooltipProps>;
478
- antdModal: React.FC<AntdModalProps>;
479
+ antdModal: React.FC<AntdModalProps & {
480
+ focusTriggerAfterClose?: boolean;
481
+ }>;
479
482
  antdInput: typeof Input;
480
483
  antdTable: AntdTableComponentType;
481
484
  antdEmpty: EmptyType;