@complex-suite/component-antd 4.10.12 → 5.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.
Files changed (2) hide show
  1. package/index.ts +15 -1
  2. package/package.json +6 -6
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,6 +1,6 @@
1
1
  {
2
2
  "name": "@complex-suite/component-antd",
3
- "version": "4.10.12",
3
+ "version": "5.0.1",
4
4
  "description": "a complex component by antd v4",
5
5
  "type": "module",
6
6
  "main": "index.ts",
@@ -11,10 +11,10 @@
11
11
  "dependencies": {
12
12
  "ant-design-vue": "^4.2.6",
13
13
  "dayjs": "^1.11.0",
14
- "@complex-suite/utils": "2.10.5",
15
- "@complex-suite/component": "4.10.4",
16
- "@complex-suite/plugin": "4.10.2",
17
- "@complex-suite/data": "4.10.9"
14
+ "@complex-suite/utils": "3.0.1",
15
+ "@complex-suite/plugin": "5.0.1",
16
+ "@complex-suite/data": "5.0.1",
17
+ "@complex-suite/component": "5.0.1"
18
18
  },
19
19
  "devDependencies": {
20
20
  "typescript": "^5.2.2",
@@ -34,6 +34,6 @@
34
34
  "check": "tsc --noEmit",
35
35
  "test": "vitest",
36
36
  "coverage": "vitest run --coverage",
37
- "release": "npm publish --registry=https://registry.npmjs.org"
37
+ "release": "pnpm publish --registry=https://registry.npmjs.org"
38
38
  }
39
39
  }