@cloudtower/eagle 0.24.23 → 0.25.1

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.
@@ -8,14 +8,16 @@ import { CalendarProps } from "antd/lib/calendar/generateCalendar";
8
8
  import { CascaderProps } from "antd/lib/cascader";
9
9
  import { CheckboxGroupProps, CheckboxProps } from "antd/lib/checkbox";
10
10
  import { ColProps } from "antd/lib/col";
11
+ import { CollapsePanelProps, CollapseProps } from "antd/lib/collapse";
11
12
  import { DatePickerProps, RangePickerProps } from "antd/lib/date-picker";
12
13
  import { DividerProps as AntdDividerProps } from "antd/lib/divider";
14
+ import { DrawerProps } from "antd/lib/drawer";
13
15
  import { DropDownProps } from "antd/lib/dropdown";
14
16
  import { EmptyProps } from "antd/lib/empty";
15
17
  import type Form from "antd/lib/form";
16
18
  import { FormItemProps } from "antd/lib/form";
17
- import { GroupProps, InputProps } from "antd/lib/input";
18
19
  import type Input from "antd/lib/input";
20
+ import { GroupProps, InputProps } from "antd/lib/input";
19
21
  import { TextAreaProps as AntdTextAreaProps } from "antd/lib/input/TextArea";
20
22
  import { InputNumberProps } from "antd/lib/input-number";
21
23
  import { SiderProps } from "antd/lib/layout";
@@ -45,6 +47,7 @@ import { TimePickerProps } from "antd/lib/time-picker";
45
47
  import { TimeLineItemProps, TimelineProps } from "antd/lib/timeline";
46
48
  import { TooltipProps as AntdTooltipProps } from "antd/lib/tooltip";
47
49
  import { TreeProps as AntdTreeProps } from "antd/lib/tree";
50
+ import type TreeSelect from "antd/lib/tree-select";
48
51
  import { TextProps } from "antd/lib/typography/Text";
49
52
  import { DraggerProps, UploadProps } from "antd/lib/upload";
50
53
  import type { Moment } from "moment";
@@ -53,9 +56,6 @@ import { TableFormHandle, TableFormProps } from "../components/TableForm/types";
53
56
  import { SerializableObject } from "../utils/tower";
54
57
  import { FieldRenderProps } from "./react-final-form";
55
58
  import { Architecture, ISpaceProps, ITimeZoneSelectProps } from "./type";
56
- import { CollapsePanelProps, CollapseProps } from "antd/lib/collapse";
57
- import type TreeSelect from "antd/lib/tree-select";
58
- import { DrawerProps } from "antd/lib/drawer";
59
59
  export type AntdTableComponentType = <RecordType extends object = any>(props: AntdTableProps<RecordType>) => JSX.Element;
60
60
  export type AntdTreeSelectComponentType<T> = TreeSelect<T>;
61
61
  interface EmptyType extends React.FC<EmptyProps> {
@@ -1,34 +1,8 @@
1
1
  /// <reference types="react" />
2
- export type Maybe<T> = T | null | undefined;
3
- export type Scalars = {
4
- ID: string;
5
- String: string;
6
- Boolean: boolean;
7
- Int: number;
8
- Float: number;
9
- DateTime: string;
10
- [key: string]: string | number | boolean | undefined;
11
- };
12
2
  export declare enum Architecture {
13
3
  Aarch64 = "AARCH64",
14
4
  X86_64 = "X86_64"
15
5
  }
16
- export declare enum UserSource {
17
- Ldap = "LDAP",
18
- Local = "LOCAL"
19
- }
20
- export declare enum EntityAsyncStatus {
21
- Creating = "CREATING",
22
- Deleting = "DELETING",
23
- Updating = "UPDATING"
24
- }
25
- export declare enum TaskStatus {
26
- Executing = "EXECUTING",
27
- Failed = "FAILED",
28
- Paused = "PAUSED",
29
- Pending = "PENDING",
30
- Successed = "SUCCESSED"
31
- }
32
6
  export interface AdditionOptions {
33
7
  error?: boolean;
34
8
  controls?: boolean;
@@ -23,14 +23,6 @@ export declare enum ModalActions {
23
23
  REMOVE_MODAL = "REMOVE_MODAL",
24
24
  CLOSE_MODAL = "CLOSE_MODAL"
25
25
  }
26
- export declare enum EverouteOperationItem {
27
- License = "License",
28
- Image = "Image"
29
- }
30
- export declare enum BackupOperationItem {
31
- License = "License",
32
- Image = "Image"
33
- }
34
26
  type PUSH_MODAL<TProps> = {
35
27
  type: ModalActions.PUSH_MODAL;
36
28
  payload: ModalType<TProps>;