@qqt-product/ui 7.0.2 → 7.0.4
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/index.es.js +22614 -20373
- package/dist/index.umd.js +109 -104
- package/dist/lib/components/layout/index.d.ts +7 -1
- package/dist/lib/components/layout/src/header/index.vue.d.ts +14 -0
- package/dist/lib/components/layout/src/header/navRight/index.vue.d.ts +8 -0
- package/dist/lib/components/layout/src/header/navRight/rightTool.vue.d.ts +8 -0
- package/dist/lib/components/layout/src/index.vue.d.ts +7 -1
- package/dist/lib/components/layout/src/types.d.ts +9 -0
- package/dist/lib/components/list-page-layout/src/components/common/columnSetting/columnSetting.vue.d.ts +1 -1
- package/dist/lib/components/list-page-layout/src/components/list-content/events-helper.d.ts +2 -2
- package/dist/lib/components/list-page-layout/src/components/list-content/list-content.vue.d.ts +1 -0
- package/dist/lib/components/list-page-layout/src/hooks/common-hook.d.ts +5 -0
- package/dist/lib/components/list-page-layout/src/hooks/use-column-drag-hook.d.ts +5 -0
- package/dist/style.css +1 -1
- package/package.json +12 -8
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@qqt-product/ui",
|
|
3
3
|
"private": false,
|
|
4
|
-
"version": "7.0.
|
|
4
|
+
"version": "7.0.4",
|
|
5
5
|
"main": "dist/index.umd.js",
|
|
6
6
|
"module": "dist/index.es.js",
|
|
7
7
|
"type": "module",
|
|
@@ -22,12 +22,13 @@
|
|
|
22
22
|
"@codemirror/language": "6.10.1",
|
|
23
23
|
"@codemirror/state": "6.4.1",
|
|
24
24
|
"@codemirror/view": "6.24.1",
|
|
25
|
-
"@qqt-product/api": "7.0.
|
|
26
|
-
"@qqt-product/directive": "7.0.
|
|
27
|
-
"@qqt-product/icons": "7.0.
|
|
28
|
-
"@qqt-product/utils": "7.0.
|
|
25
|
+
"@qqt-product/api": "7.0.3",
|
|
26
|
+
"@qqt-product/directive": "7.0.3",
|
|
27
|
+
"@qqt-product/icons": "7.0.3",
|
|
28
|
+
"@qqt-product/utils": "7.0.3",
|
|
29
29
|
"@types/echarts": "^4.9.21",
|
|
30
30
|
"@types/node": "^18.11.4",
|
|
31
|
+
"@types/sortablejs": "^1.15.1",
|
|
31
32
|
"@types/tinymce": "^4.6.5",
|
|
32
33
|
"@typescript-eslint/eslint-plugin": "^5.40.0",
|
|
33
34
|
"@typescript-eslint/parser": "^5.40.0",
|
|
@@ -49,6 +50,7 @@
|
|
|
49
50
|
"prettier": "^2.7.1",
|
|
50
51
|
"relation-graph": "^2.0.27",
|
|
51
52
|
"sass": "1.63.6",
|
|
53
|
+
"sortablejs": "^1.15.0",
|
|
52
54
|
"tinymce": "^6.6.0",
|
|
53
55
|
"typescript": "^4.6.4",
|
|
54
56
|
"vite": "^3.1.0",
|
|
@@ -73,11 +75,12 @@
|
|
|
73
75
|
"@codemirror/language": "6.10.1",
|
|
74
76
|
"@codemirror/state": "6.4.1",
|
|
75
77
|
"@codemirror/view": "6.24.1",
|
|
76
|
-
"@qqt-product/api": "7.0.
|
|
78
|
+
"@qqt-product/api": "7.0.3",
|
|
77
79
|
"@qqt-product/directive": "^0.0.4",
|
|
78
|
-
"@qqt-product/icons": "7.0.
|
|
79
|
-
"@qqt-product/utils": "7.0.
|
|
80
|
+
"@qqt-product/icons": "7.0.3",
|
|
81
|
+
"@qqt-product/utils": "7.0.3",
|
|
80
82
|
"@types/echarts": "^4.9.21",
|
|
83
|
+
"@types/sortablejs": "^1.15.1",
|
|
81
84
|
"@types/tinymce": "^4.6.5",
|
|
82
85
|
"@vitejs/plugin-vue-jsx": "^3.0.1",
|
|
83
86
|
"ant-design-vue": "3.2.20",
|
|
@@ -91,6 +94,7 @@
|
|
|
91
94
|
"pinia-plugin-persistedstate": "^3.0.2",
|
|
92
95
|
"relation-graph": "^2.0.27",
|
|
93
96
|
"sass": "1.63.6",
|
|
97
|
+
"sortablejs": "^1.15.0",
|
|
94
98
|
"tinymce": "^6.6.0",
|
|
95
99
|
"vue": "3.3.4",
|
|
96
100
|
"vue-codemirror6": "1.2.5",
|