@cloudtower/eagle 0.22.21 → 0.22.24
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/Styled/index.d.ts +0 -5
- package/dist/components/Table/common.d.ts +1 -32
- package/dist/components/Table/index.d.ts +0 -9
- package/dist/components/index.d.ts +1 -0
- package/dist/esm/index.js +837 -661
- package/dist/esm/stats1.html +1 -1
- package/dist/hooks/index.d.ts +0 -2
- package/dist/index.d.ts +1 -1
- package/dist/spec/base.d.ts +13 -5
- package/dist/store/index.d.ts +0 -1
- package/dist/style.css +1141 -1278
- package/dist/umd/index.js +839 -665
- package/dist/umd/stats1.html +1 -1
- package/package.json +5 -5
- package/dist/components/Table/CustomizeColumn.d.ts +0 -13
- package/dist/components/Table/HeaderCell.d.ts +0 -25
- package/dist/components/Table/PendingTable.d.ts +0 -3
- package/dist/components/Table/SearchWidget.d.ts +0 -20
- package/dist/components/Table/customize-column.d.ts +0 -3
- package/dist/hooks/useLocalStorage.d.ts +0 -61
- package/dist/store/table.d.ts +0 -54
|
@@ -75,9 +75,4 @@ export declare const LeftEndInputStyle: import("@linaria/core").LinariaClassName
|
|
|
75
75
|
export declare const RightEndInputStyle: import("@linaria/core").LinariaClassName;
|
|
76
76
|
export declare const LeftEndSelectStyle: import("@linaria/core").LinariaClassName;
|
|
77
77
|
export declare const RightEndSelectStyle: import("@linaria/core").LinariaClassName;
|
|
78
|
-
export declare const PAGINATION_SELECTOR = ".pagination-wrapper";
|
|
79
|
-
export declare const TABLE_WRAPPER_SELECTOR = ".table-wrapper";
|
|
80
|
-
export declare const THEAD_SELECTOR = ".ant-table-thead";
|
|
81
|
-
export declare const TBODY_SELECTOR = ".ant-table-tbody";
|
|
82
|
-
export declare const MODAL_WHITELIST: string[];
|
|
83
78
|
export {};
|
|
@@ -1,33 +1,2 @@
|
|
|
1
|
-
import React
|
|
2
|
-
export type TableRenderer<T, C> = (cell: T, record: C, index: number) => React.ReactNode;
|
|
3
|
-
export declare function arrayMove<T>(arr: T[], fromIndex: number, toIndex: number): T[];
|
|
4
|
-
export declare function handleColumnsByKeys<T extends string>(totalKeys: T[], columnKeys: Array<T | "*">): T[];
|
|
5
|
-
export declare function eventStopPropagation(event: BaseSyntheticEvent): void;
|
|
6
|
-
export declare const BLANK_COLUMN: {
|
|
7
|
-
title: string;
|
|
8
|
-
key: string;
|
|
9
|
-
dataIndex: string;
|
|
10
|
-
className: string;
|
|
11
|
-
};
|
|
12
|
-
export declare function canScroll(el: Element, direction?: string): boolean;
|
|
1
|
+
import React from "react";
|
|
13
2
|
export declare const useTableBodyHasScrollBar: (tableBodyEl?: React.MutableRefObject<HTMLDivElement | null>, data?: unknown) => boolean;
|
|
14
|
-
export declare function tableScrollToTop(ref: React.MutableRefObject<HTMLDivElement | null>): void;
|
|
15
|
-
type TableScrollConfig = {
|
|
16
|
-
x?: string | number;
|
|
17
|
-
y?: string | number;
|
|
18
|
-
} | undefined;
|
|
19
|
-
export declare const useTransformScrollAndColumns: <T>(tableProps: {
|
|
20
|
-
wrapper?: React.MutableRefObject<HTMLDivElement | null> | undefined;
|
|
21
|
-
loading?: boolean | undefined;
|
|
22
|
-
rowSelection?: unknown;
|
|
23
|
-
data?: unknown;
|
|
24
|
-
tableKey?: string | undefined;
|
|
25
|
-
uniqueKey?: string | undefined;
|
|
26
|
-
stickyHeader?: boolean | undefined;
|
|
27
|
-
columns: T[];
|
|
28
|
-
scroll?: "auto" | {
|
|
29
|
-
x?: string | number | boolean | undefined;
|
|
30
|
-
y?: string | number | boolean | undefined;
|
|
31
|
-
} | "autoHeight" | undefined;
|
|
32
|
-
}) => [TableScrollConfig, T[]];
|
|
33
|
-
export {};
|
|
@@ -5,14 +5,5 @@ declare const Table: <T extends {
|
|
|
5
5
|
id: string;
|
|
6
6
|
}>(props: TableProps<T>) => JSX.Element;
|
|
7
7
|
export default Table;
|
|
8
|
-
export type { CustomizeColumnType } from "../../hooks";
|
|
9
8
|
export * from "./common";
|
|
10
|
-
export * from "./customize-column";
|
|
11
|
-
export * from "./CustomizeColumn";
|
|
12
|
-
export { default as CustomizeColumn } from "./CustomizeColumn";
|
|
13
|
-
export * from "./HeaderCell";
|
|
14
|
-
export { default as HeaderCell } from "./HeaderCell";
|
|
15
|
-
export * from "./PendingTable";
|
|
16
|
-
export { default as PendingTable } from "./PendingTable";
|
|
17
|
-
export * from "./SearchWidget";
|
|
18
9
|
export * from "./TableWidget";
|
|
@@ -8,6 +8,7 @@ export { default as ErrorBoundary } from "./ErrorBoundary";
|
|
|
8
8
|
export { default as FailedLoad } from "./FailedLoad";
|
|
9
9
|
export type { IconProps } from "./Icon";
|
|
10
10
|
export { default as Icon } from "./Icon";
|
|
11
|
+
export { default as InputTagItem } from "./InputTagItem";
|
|
11
12
|
export * from "./KitStoreProvider";
|
|
12
13
|
export { default as KitStoreProvider } from "./KitStoreProvider";
|
|
13
14
|
export { default as Loading } from "./Loading";
|