aq-fe-framework 0.1.999 → 0.1.1000
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/{MyDataTable-gxL6qCfE.d.mts → MyDataTable-BZH_uH1I.d.mts} +3 -2
- package/dist/{chunk-7ARBAMH2.mjs → chunk-3KE2P7XV.mjs} +9754 -9756
- package/dist/{chunk-J4WTZ3B4.mjs → chunk-WJYGAYCW.mjs} +13 -13
- package/dist/components/index.d.mts +2 -2
- package/dist/components/index.mjs +9 -9
- package/dist/const/index.mjs +1 -1
- package/dist/core/index.d.mts +2 -2
- package/dist/core/index.mjs +11 -9
- package/dist/enum/index.mjs +1 -1
- package/dist/modules-features/index.mjs +4 -4
- package/dist/shared/index.mjs +5 -5
- package/package.json +1 -1
- package/dist/{chunk-OHAOJE5F.mjs → chunk-C74M5VPE.mjs} +1 -1
|
@@ -19,7 +19,8 @@ interface MyButtonProps extends Omit<React.ButtonHTMLAttributes<HTMLButtonElemen
|
|
|
19
19
|
/** Không cần bật kiểm tra quyền mặc định = true */
|
|
20
20
|
isCheckPermission?: boolean;
|
|
21
21
|
}
|
|
22
|
-
declare
|
|
22
|
+
declare const MyButton: typeof AppButton;
|
|
23
|
+
declare function AppButton({ children, actionType, isCheckPermission, ...rest }: MyButtonProps): react_jsx_runtime.JSX.Element;
|
|
23
24
|
|
|
24
25
|
interface MyButtonModalProps {
|
|
25
26
|
children?: ReactNode;
|
|
@@ -58,4 +59,4 @@ interface MyDataTableProps<TData extends MRT_RowData> extends MRT_TableOptions<T
|
|
|
58
59
|
}
|
|
59
60
|
declare function MyDataTable<TData extends MRT_RowData>({ rowActionSize, columns, data, setSelectedRow, isError, isLoading, pagination, idSelectionOne, setIdSelectionOne, renderTopToolbarCustomActions, visibleFields, ...rest }: MyDataTableProps<TData>): react_jsx_runtime.JSX.Element;
|
|
60
61
|
|
|
61
|
-
export { type MyButtonModalProps as M, type PaginationState as P, type MyActionIconProps as a, type MyButtonProps as b, type MyDataTableProps as c, MyActionIcon as d, MyButton as e, MyButtonModal as f, type MyDataTableInternalProps as g, MyDataTable as h };
|
|
62
|
+
export { AppButton as A, type MyButtonModalProps as M, type PaginationState as P, type MyActionIconProps as a, type MyButtonProps as b, type MyDataTableProps as c, MyActionIcon as d, MyButton as e, MyButtonModal as f, type MyDataTableInternalProps as g, MyDataTable as h };
|