@esvndev/es-react-table-interface 1.0.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.
package/README.md ADDED
@@ -0,0 +1,6 @@
1
+ #
2
+
3
+ ## Quick Features
4
+
5
+
6
+ <!-- Force 1 -->
@@ -0,0 +1,3 @@
1
+ import React from "react";
2
+ import { IExternalInterface } from "../../interface";
3
+ export declare const ExternalInterface: (props: IExternalInterface) => React.JSX.Element;
@@ -0,0 +1,4 @@
1
+ import 'split-pane-react/esm/themes/default.css';
2
+ import { IExternalInterface } from '../../interface';
3
+ import React from 'react';
4
+ export declare const ExternalInterfaceExtend: (props: IExternalInterface) => React.JSX.Element;
@@ -0,0 +1,2 @@
1
+ export * from './ExternalInterface';
2
+ export * from './ExternalInterfaceExtend';
@@ -0,0 +1,10 @@
1
+ import { IHeaderToolbar } from "../../interface";
2
+ import React from 'react';
3
+ /**
4
+ * Dùng để xây dựng thanh header phía trên bảng
5
+ * @param breadCrumb là các tham số của thành liên kết
6
+ * @param buttons là các nút chức năng bên phải
7
+ * @param CanPer là hàm kiểm tra quyền
8
+ * @param t là hàm dịch ngôn ngữ
9
+ */
10
+ export declare const HeaderExternalInterface: (props: IHeaderToolbar) => React.JSX.Element;
@@ -0,0 +1 @@
1
+ export * from './Header';
@@ -0,0 +1,9 @@
1
+ import React from "react";
2
+ import { IToolbarTemplate } from "../../ultility/Export";
3
+ /**
4
+ * Dùng để xây dựng thanh toolbar phía trên bảng
5
+ */
6
+ export declare const ToolbarTemplate: (props: IToolbarTemplate[]) => {
7
+ template: React.JSX.Element;
8
+ position: string;
9
+ }[];
@@ -0,0 +1 @@
1
+ export * from './ToolbarTemplate';
@@ -0,0 +1,3 @@
1
+ export * from './ExternalInterface';
2
+ export * from './Header';
3
+ export * from './ToolbarTemplate';
package/dist/func.d.ts ADDED
@@ -0,0 +1,23 @@
1
+ import { INumericFormatted, ITypeNumericFormatted } from "./interface";
2
+ export declare const configNumber: any;
3
+ export declare const useDebounce: (value: string, milliSeconds: any) => string;
4
+ export declare const isNullOrUndefined: (d: any) => boolean;
5
+ export declare const isStringNullOrEmpty: (d: any) => boolean;
6
+ export declare const convertDateTimeRangeToString: (date: Date, ope: string) => string;
7
+ export declare const dateTemplate: (props: any) => string | undefined;
8
+ export declare const isObjEmpty: (obj: any) => boolean;
9
+ export declare const generateUUID: () => string;
10
+ export declare const typeDecimal: (type: ITypeNumericFormatted) => any;
11
+ export declare const checkThousandSeparator: (thousandSeparator: any, decimalSeparator: any) => any;
12
+ export declare const checkDecimalSeparator: (thousandSeparator: any, decimalSeparator: any) => any;
13
+ export declare const numericFormatted: ({ value, type, currency, decimalScale }: INumericFormatted) => string;
14
+ export declare const numberQuantityTemplate: (props: any) => string;
15
+ export declare const numberOverseaMoneyTemplate: (props: any) => string;
16
+ export declare const numberExchangeMoneyTemplate: (props: any) => string;
17
+ export declare const numberUnitpriceExchangeTemplate: (props: any) => string;
18
+ export declare const numberUnitpriceOverseaTemplate: (props: any) => string;
19
+ export declare const numberRateTemplate: (props: any) => string;
20
+ export declare const numberRatioTemplate: (props: any) => string;
21
+ export declare const numberAllocationRatioTemplate: (props: any) => string;
22
+ export declare const numberSo_CongTemplate: (props: any) => string;
23
+ export declare const columnsSelectTable_Key_Label: any[];
@@ -0,0 +1,2 @@
1
+ export * from './component';
2
+ export * from './ultility/Export';