@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.
@@ -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 {};