@esvndev/es-react-table-interface 1.7.96 → 1.7.98
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/ToolbarTemplate/index.d.ts +2 -0
- package/dist/component/option_configs/index.d.ts +2 -12
- package/dist/component/option_configs/optionConfig.d.ts +8 -0
- package/dist/component/table_configs/index.d.ts +2 -14
- package/dist/component/table_configs/tableConfig.d.ts +14 -0
- package/dist/index.js +54 -54
- package/package.json +1 -1
|
@@ -1,12 +1,2 @@
|
|
|
1
|
-
import
|
|
2
|
-
|
|
3
|
-
userAction: any;
|
|
4
|
-
userSubject: any;
|
|
5
|
-
useAbility: any;
|
|
6
|
-
AbilityContext: any;
|
|
7
|
-
NotPermission: any;
|
|
8
|
-
CanPer: any;
|
|
9
|
-
useConfig: any;
|
|
10
|
-
}
|
|
11
|
-
declare const IndexPage: (props: II) => React.JSX.Element;
|
|
12
|
-
export default IndexPage;
|
|
1
|
+
import OptionConfig from './optionConfig';
|
|
2
|
+
export default OptionConfig;
|
|
@@ -1,14 +1,2 @@
|
|
|
1
|
-
import
|
|
2
|
-
|
|
3
|
-
userAction: any;
|
|
4
|
-
userSubject: any;
|
|
5
|
-
useAbility: any;
|
|
6
|
-
AbilityContext: any;
|
|
7
|
-
NotPermission: any;
|
|
8
|
-
CanPer: any;
|
|
9
|
-
initAbility: any;
|
|
10
|
-
getOption: any;
|
|
11
|
-
useConfig: any;
|
|
12
|
-
}
|
|
13
|
-
declare const TableConfigPage: (props: II) => React.JSX.Element;
|
|
14
|
-
export default TableConfigPage;
|
|
1
|
+
import TableConfig from './tableConfig';
|
|
2
|
+
export default TableConfig;
|
|
@@ -0,0 +1,14 @@
|
|
|
1
|
+
import React from "react";
|
|
2
|
+
interface II {
|
|
3
|
+
userAction: any;
|
|
4
|
+
userSubject: any;
|
|
5
|
+
useAbility: any;
|
|
6
|
+
AbilityContext: any;
|
|
7
|
+
NotPermission: any;
|
|
8
|
+
CanPer: any;
|
|
9
|
+
initAbility: any;
|
|
10
|
+
getOption: any;
|
|
11
|
+
useConfig: any;
|
|
12
|
+
}
|
|
13
|
+
declare const TableConfigPage: (props: II) => React.JSX.Element;
|
|
14
|
+
export default TableConfigPage;
|