@complex-suite/component-antd 4.10.12 → 4.10.13
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/index.ts +15 -1
- package/package.json +39 -39
package/index.ts
CHANGED
|
@@ -5,6 +5,7 @@ import MenuView from "./src/MenuView"
|
|
|
5
5
|
import ButtonView from "./src/ButtonView"
|
|
6
6
|
import SimpleTable from "./src/SimpleTable"
|
|
7
7
|
import TableView from "./src/TableView"
|
|
8
|
+
import type { tablePayload, TableViewOption } from "./src/TableView"
|
|
8
9
|
import ModalView from "./src/ModalView"
|
|
9
10
|
import InfoView from "./src/InfoView"
|
|
10
11
|
import InfoArea from "./src/InfoArea"
|
|
@@ -18,9 +19,13 @@ import ChoiceInfo from "./src/components/ChoiceInfo.vue"
|
|
|
18
19
|
import PaginationView from "./src/components/PaginationView"
|
|
19
20
|
import TableMenu from "./src/components/TableMenu"
|
|
20
21
|
import QuickList from "./quick/QuickList"
|
|
22
|
+
import type { componentsProps, renderType, QuickListProps } from "./quick/QuickList"
|
|
21
23
|
import QuickCascade from "./quick/QuickCascade"
|
|
22
24
|
import QuickEdit from "./quick/QuickEdit"
|
|
23
25
|
import QuickFloat from "./quick/QuickFloat"
|
|
26
|
+
import icon, { iconDict } from "./icon"
|
|
27
|
+
import widthCalculator from "./widthCalculator"
|
|
28
|
+
import FloatData from "./quick/data/FloatData"
|
|
24
29
|
import plugin from "./plugin"
|
|
25
30
|
import antdConfig from "./antdConfig"
|
|
26
31
|
|
|
@@ -49,7 +54,16 @@ export const ComplexQuickEdit = QuickEdit
|
|
|
49
54
|
export const ComplexQuickFloat = QuickFloat
|
|
50
55
|
|
|
51
56
|
export {
|
|
52
|
-
antdConfig
|
|
57
|
+
antdConfig,
|
|
58
|
+
icon,
|
|
59
|
+
iconDict,
|
|
60
|
+
widthCalculator,
|
|
61
|
+
FloatData,
|
|
62
|
+
type tablePayload,
|
|
63
|
+
type TableViewOption,
|
|
64
|
+
type componentsProps,
|
|
65
|
+
type renderType,
|
|
66
|
+
type QuickListProps
|
|
53
67
|
}
|
|
54
68
|
|
|
55
69
|
export default plugin
|
package/package.json
CHANGED
|
@@ -1,39 +1,39 @@
|
|
|
1
|
-
{
|
|
2
|
-
"name": "@complex-suite/component-antd",
|
|
3
|
-
"version": "4.10.
|
|
4
|
-
"description": "a complex component by antd v4",
|
|
5
|
-
"type": "module",
|
|
6
|
-
"main": "index.ts",
|
|
7
|
-
"repository": {
|
|
8
|
-
"type": "git",
|
|
9
|
-
"url": "https://github.com/MarAngle/complex-component-antd.git"
|
|
10
|
-
},
|
|
11
|
-
"dependencies": {
|
|
12
|
-
"ant-design-vue": "^4.2.6",
|
|
13
|
-
"dayjs": "^1.11.0",
|
|
14
|
-
"@complex-suite/utils": "
|
|
15
|
-
"@complex-suite/
|
|
16
|
-
"@complex-suite/
|
|
17
|
-
"@complex-suite/
|
|
18
|
-
},
|
|
19
|
-
"devDependencies": {
|
|
20
|
-
"typescript": "^5.2.2",
|
|
21
|
-
"vitest": "^4.0.7",
|
|
22
|
-
"jsdom": "^27.1.0",
|
|
23
|
-
"@vitejs/plugin-vue": "^5.1.1",
|
|
24
|
-
"@vitejs/plugin-vue-jsx": "^4.0.0"
|
|
25
|
-
},
|
|
26
|
-
"
|
|
27
|
-
"
|
|
28
|
-
"
|
|
29
|
-
"
|
|
30
|
-
|
|
31
|
-
|
|
32
|
-
"
|
|
33
|
-
|
|
34
|
-
"
|
|
35
|
-
"
|
|
36
|
-
|
|
37
|
-
|
|
38
|
-
|
|
39
|
-
}
|
|
1
|
+
{
|
|
2
|
+
"name": "@complex-suite/component-antd",
|
|
3
|
+
"version": "4.10.13",
|
|
4
|
+
"description": "a complex component by antd v4",
|
|
5
|
+
"type": "module",
|
|
6
|
+
"main": "index.ts",
|
|
7
|
+
"repository": {
|
|
8
|
+
"type": "git",
|
|
9
|
+
"url": "https://github.com/MarAngle/complex-component-antd.git"
|
|
10
|
+
},
|
|
11
|
+
"dependencies": {
|
|
12
|
+
"ant-design-vue": "^4.2.6",
|
|
13
|
+
"dayjs": "^1.11.0",
|
|
14
|
+
"@complex-suite/utils": "workspace:*",
|
|
15
|
+
"@complex-suite/plugin": "workspace:*",
|
|
16
|
+
"@complex-suite/data": "workspace:*",
|
|
17
|
+
"@complex-suite/component": "workspace:*"
|
|
18
|
+
},
|
|
19
|
+
"devDependencies": {
|
|
20
|
+
"typescript": "^5.2.2",
|
|
21
|
+
"vitest": "^4.0.7",
|
|
22
|
+
"jsdom": "^27.1.0",
|
|
23
|
+
"@vitejs/plugin-vue": "^5.1.1",
|
|
24
|
+
"@vitejs/plugin-vue-jsx": "^4.0.0"
|
|
25
|
+
},
|
|
26
|
+
"scripts": {
|
|
27
|
+
"check": "tsc --noEmit",
|
|
28
|
+
"test": "vitest",
|
|
29
|
+
"coverage": "vitest run --coverage",
|
|
30
|
+
"release": "npm publish --registry=https://registry.npmjs.org"
|
|
31
|
+
},
|
|
32
|
+
"keywords": [
|
|
33
|
+
"complex",
|
|
34
|
+
"component",
|
|
35
|
+
"antd"
|
|
36
|
+
],
|
|
37
|
+
"author": "MarAngle",
|
|
38
|
+
"license": "ISC"
|
|
39
|
+
}
|