@esvndev/es-react-table-interface 1.0.8 → 1.0.10
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/component/ExternalInterface/ExternalInterfaceExtend.d.ts +2 -0
- package/dist/component/ToolbarTemplate/ToolbarTemplate.d.ts +5 -3
- package/dist/index.js +74 -38
- package/dist/interface.d.ts +15 -0
- package/dist/ultility/Export/InterfaceExport.d.ts +1 -1
- package/dist/ultility/Export/functionExport.d.ts +2 -1
- package/dist/ultility/index.d.ts +2 -0
- package/dist/ultility/request/index.d.ts +3 -0
- package/package.json +4 -2
|
@@ -36,8 +36,10 @@ import React from 'react';
|
|
|
36
36
|
* @param rowSelection
|
|
37
37
|
* @param hideSelectAll ẩn/hiện select all
|
|
38
38
|
* @param dataSource dữ liệu của bảng (khi truyền vào sẽ không gọi dữ liệu mặc định)
|
|
39
|
+
* @param columns danh sách cột của bảng (khi truyền vào sẽ không gọi dữ liệu mặc định)
|
|
39
40
|
* @param totalCount tổng số bản ghi (khi truyền vào sẽ không gọi dữ liệu mặc định)
|
|
40
41
|
* @param stateChildId Mã các bảng con vd ['Table1', 'Table2'], bảng con đính kém: 'AttachFile'
|
|
41
42
|
* @param titleChild Tiêu đề của tabChild
|
|
43
|
+
* @param rowClassName return về 1 class css
|
|
42
44
|
*/
|
|
43
45
|
export declare const ExternalInterfaceExtend: (props: IExternalInterface) => React.JSX.Element;
|
|
@@ -1,8 +1,10 @@
|
|
|
1
1
|
import React from "react";
|
|
2
2
|
import { IToolbarTemplate } from "../../ultility/Export";
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
|
|
3
|
+
export declare const listFilterDate: () => {
|
|
4
|
+
type: number;
|
|
5
|
+
label: string;
|
|
6
|
+
value: Date[];
|
|
7
|
+
}[];
|
|
6
8
|
export declare const ToolbarTemplate: (props: IToolbarTemplate[]) => {
|
|
7
9
|
template: React.JSX.Element;
|
|
8
10
|
position: string;
|