@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.
- package/dist/components/message/index.d.ts +0 -1
- package/dist/components.css +956 -956
- package/dist/esm/index.js +21 -23
- package/dist/esm/stats1.html +1 -1
- package/dist/index.d.ts +2 -0
- package/dist/spec/base.d.ts +5 -2
- package/dist/style.css +1004 -1004
- package/dist/umd/index.js +21 -23
- package/dist/umd/stats1.html +1 -1
- package/package.json +20 -15
package/dist/spec/base.d.ts
CHANGED
|
@@ -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;
|