@starasia/admin 3.21.9 → 3.23.0
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.
|
@@ -12,9 +12,11 @@ interface ActionProps {
|
|
|
12
12
|
export type TableHeaderProps = {
|
|
13
13
|
action?: ActionProps[] | React.ReactNode;
|
|
14
14
|
rightContent?: React.ReactNode;
|
|
15
|
+
leftContent?: React.ReactNode;
|
|
16
|
+
headerSlot?: React.ReactNode;
|
|
15
17
|
advanceFilter?: AdvanceFilterBarProps;
|
|
16
18
|
show?: boolean;
|
|
17
19
|
showFilter?: boolean;
|
|
18
20
|
};
|
|
19
|
-
export declare const TableHeader: ({ action, rightContent, advanceFilter, showFilter }: TableHeaderProps) => React.JSX.Element;
|
|
21
|
+
export declare const TableHeader: ({ action, rightContent, leftContent, headerSlot, advanceFilter, showFilter }: TableHeaderProps) => React.JSX.Element;
|
|
20
22
|
export {};
|
|
@@ -96,6 +96,8 @@ interface ActionProps {
|
|
|
96
96
|
export type TableHeaderProps = {
|
|
97
97
|
action?: ActionProps[] | React.ReactNode;
|
|
98
98
|
rightContent?: React.ReactNode;
|
|
99
|
+
leftContent?: React.ReactNode;
|
|
100
|
+
headerSlot?: React.ReactNode;
|
|
99
101
|
advanceFilter?: AdvanceFilterBarProps;
|
|
100
102
|
show?: boolean;
|
|
101
103
|
showFilter?: boolean;
|