@mxmweb/xviewer 1.1.40 → 1.1.41
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/assets/style.css +1 -1
- package/index.js +21407 -52400
- package/package.json +6 -8
- package/src/adopters/DatabaseIdView/CustomCom.d.ts +3 -6
- package/src/index.d.ts +1 -2
- package/src/lib_enter.d.ts +3 -13
- package/stats.html +4949 -0
- package/src/PreviewId.d.ts +0 -1
- package/src/adopters/KnowledgeBase/$axios.d.ts +0 -6
- package/src/adopters/KnowledgeBase/index.d.ts +0 -8
- package/src/adopters/KnowledgeBase/service.d.ts +0 -4
- package/src/core/DynamicAntTable.d.ts +0 -59
- package/src/core/DynamicForm.d.ts +0 -26
- package/src/core/DynamicTable.d.ts +0 -85
- package/src/core/components/Button.d.ts +0 -15
- package/src/core/hooks/useDynamicForm.d.ts +0 -116
- package/src/core/hooks/useDynamicTable.d.ts +0 -43
- package/src/theme_guideline.d.ts +0 -97
package/package.json
CHANGED
|
@@ -5,17 +5,15 @@
|
|
|
5
5
|
"style": "assets/style.css",
|
|
6
6
|
"types": "lib_enter.d.ts",
|
|
7
7
|
"private": false,
|
|
8
|
-
"version": "1.1.
|
|
8
|
+
"version": "1.1.41",
|
|
9
9
|
"author": "hanfeng_Zhang",
|
|
10
10
|
"type": "module",
|
|
11
11
|
"peerDependencies": {
|
|
12
|
-
"@
|
|
13
|
-
"@mxmweb/
|
|
14
|
-
"
|
|
15
|
-
"
|
|
16
|
-
"
|
|
17
|
-
"react": "*",
|
|
18
|
-
"react-dom": "*"
|
|
12
|
+
"@mxmweb/rtext": "^1.1.x",
|
|
13
|
+
"@mxmweb/zui": "^1.3.x",
|
|
14
|
+
"react": ">=18 <20",
|
|
15
|
+
"react-dom": ">=18 <20",
|
|
16
|
+
"styled-components": "^6.1.19"
|
|
19
17
|
},
|
|
20
18
|
"scripts": {
|
|
21
19
|
"test": "yarn link",
|
|
@@ -23,10 +23,7 @@ declare const statusArr: {
|
|
|
23
23
|
status: string;
|
|
24
24
|
}[];
|
|
25
25
|
declare const TableMetaDescriptionCom: (info: any) => import("react/jsx-runtime").JSX.Element | "-";
|
|
26
|
-
declare const EmptyData:
|
|
27
|
-
|
|
28
|
-
|
|
29
|
-
setDrawerVisible: (open: boolean) => void;
|
|
30
|
-
getBtnDisabled?: (type: OPT_BTN, permission: number) => boolean;
|
|
31
|
-
}) => import("react/jsx-runtime").JSX.Element;
|
|
26
|
+
declare const EmptyData: React.FC<{
|
|
27
|
+
dbType: 'DataTable' | 'DirectDB';
|
|
28
|
+
}>;
|
|
32
29
|
export { StatusComponent, TableMetaDescriptionCom, statusArr, EmptyData, OPT_BTN, DescStatus };
|
package/src/index.d.ts
CHANGED
|
@@ -3,5 +3,4 @@ import { default as DatabaseTableView } from './adopters/DatabaseTableView';
|
|
|
3
3
|
import { default as DatabaseView } from './adopters/DatabaseView';
|
|
4
4
|
import { default as SensitivityView } from './adopters/SensitiveView';
|
|
5
5
|
import { default as ModelManageView } from './adopters/ModelManageView';
|
|
6
|
-
|
|
7
|
-
export { DatabaseIdView, DatabaseTableView, DatabaseView, SensitivityView, ModelManageView, FormXviwer, };
|
|
6
|
+
export { DatabaseIdView, DatabaseTableView, DatabaseView, SensitivityView, ModelManageView };
|
package/src/lib_enter.d.ts
CHANGED
|
@@ -1,14 +1,4 @@
|
|
|
1
|
-
import { default as
|
|
2
|
-
import { default as FormXviwer } from './core/DynamicForm';
|
|
3
|
-
import { default as TableXviwer } from './core/DynamicTable';
|
|
4
|
-
import { default as CardXviwer } from './core/DynamicCards';
|
|
1
|
+
import { default as Xviwer } from './core/DynamicDashDataCore';
|
|
5
2
|
import { CustomComponents } from './core/types';
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
import { useDynamicTableColumns as useDynamicTable } from './core/hooks/useDynamicTable';
|
|
9
|
-
import { default as DatabaseIdView } from './adopters/DatabaseIdView';
|
|
10
|
-
import { default as DatabaseTableView } from './adopters/DatabaseTableView';
|
|
11
|
-
import { default as DatabaseView } from './adopters/DatabaseView';
|
|
12
|
-
import { default as ModelManageView } from './adopters/ModelManageView';
|
|
13
|
-
export { CoreXviwer, FormXviwer, TableXviwer, CardXviwer, useDynamicCards, useDynamicForm, useDynamicTable, DatabaseIdView, DatabaseTableView, DatabaseView, ModelManageView, DynamicDashDataCore, };
|
|
14
|
-
export type { FormItemProps, CustomComponents };
|
|
3
|
+
export { Xviwer, };
|
|
4
|
+
export type { CustomComponents };
|