@cloudtower/eagle 0.27.14-dry → 0.27.14
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 +1459 -1459
- package/dist/esm/index.js +456 -489
- package/dist/esm/stats1.html +1 -1
- package/dist/spec/base.d.ts +0 -12
- package/dist/style.css +1711 -1711
- package/dist/umd/index.js +459 -492
- package/dist/umd/stats1.html +1 -1
- package/package.json +5 -5
- package/dist/coreX/SidebarSubtitle/SidebarSubtitle.stories.d.ts +0 -5
- package/dist/coreX/SidebarSubtitle/__test__/index.test.d.ts +0 -1
- package/dist/coreX/SidebarSubtitle/index.d.ts +0 -3
- package/dist/coreX/SortableList/SortableList.stories.d.ts +0 -6
- package/dist/coreX/SortableList/index.d.ts +0 -3
package/dist/spec/base.d.ts
CHANGED
|
@@ -52,7 +52,6 @@ import type { Dayjs } from "dayjs";
|
|
|
52
52
|
import type { History } from "history";
|
|
53
53
|
import type { Moment } from "moment";
|
|
54
54
|
import React, { ForwardRefExoticComponent, PropsWithChildren, PropsWithoutRef, ReactNode, RefAttributes } from "react";
|
|
55
|
-
import { Draggable } from "react-beautiful-dnd";
|
|
56
55
|
import { CardProps } from "../components/Card";
|
|
57
56
|
import { IEmptyProps } from "../components/Empty";
|
|
58
57
|
import { MessageApi } from "../components/message";
|
|
@@ -542,8 +541,6 @@ export interface Kit<V = any, T extends HTMLElement = HTMLElement> {
|
|
|
542
541
|
GoBackButton: React.FC<GoBackButtonType>;
|
|
543
542
|
CronCalendar: React.FC<CronCalendarProps>;
|
|
544
543
|
SummaryTable: SummaryTableComponentType;
|
|
545
|
-
SortableList: SortableListComponentType;
|
|
546
|
-
SidebarSubtitle: SidebarSubtitleComponentType;
|
|
547
544
|
}
|
|
548
545
|
export type ArchComponentType = React.FC<{
|
|
549
546
|
architecture?: Architecture;
|
|
@@ -694,13 +691,4 @@ type SummaryTableContentProps<T> = {
|
|
|
694
691
|
type SummaryTableProps<T> = SummaryTableContentProps<T> & SummaryTableCommonProps;
|
|
695
692
|
export type SummaryTableContentComponentType = <T>(props: SummaryTableContentProps<T>) => JSX.Element;
|
|
696
693
|
export type SummaryTableComponentType = <T = unknown>(props: SummaryTableProps<T> | SummaryTableCustomRenderProps) => JSX.Element;
|
|
697
|
-
export type SortableListComponentType = React.FC<{
|
|
698
|
-
moveItem: (from: number, to: number) => void;
|
|
699
|
-
}> & {
|
|
700
|
-
Item: typeof Draggable;
|
|
701
|
-
};
|
|
702
|
-
export type SidebarSubtitleComponentType = React.FC<{
|
|
703
|
-
title: string;
|
|
704
|
-
className?: string;
|
|
705
|
-
}>;
|
|
706
694
|
export {};
|