@ibiz-template/vue3-components 0.7.24-alpha.2 → 0.7.24
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-UoIBnm4j.js → index-XTX4vyZZ.js} +3 -3
- package/dist/index.min.css +1 -1
- package/dist/index.system.min.js +1 -1
- package/dist/{xlsx-util-mYK_A5hQ.js → xlsx-util-aO-rYvlt.js} +1 -1
- package/es/common/grid-setting/grid-setting.d.ts +1 -0
- package/es/control/tree/el-tree-util.d.ts +0 -16
- package/es/control/tree/index.d.ts +0 -16
- package/es/control/tree/tree.d.ts +0 -16
- package/es/editor/check-box/check-box-editor.provider.mjs +1 -1
- package/es/editor/check-box/ibiz-checkbox/ibiz-checkbox.mjs +7 -2
- package/es/editor/check-box-list/ibiz-checkbox-list/ibiz-checkbox-list.mjs +7 -2
- package/es/editor/data-picker/ibiz-picker-link/ibiz-picker-link.mjs +7 -2
- package/es/editor/list-box/ibiz-list-box/ibiz-list-box.mjs +7 -2
- package/es/editor/number-range/ibiz-number-range-picker/ibiz-number-range-picker.mjs +12 -10
- package/es/editor/radio-button-list/ibiz-radio/ibiz-radio.mjs +7 -2
- package/es/editor/rate/ibiz-rate/ibiz-rate.mjs +7 -2
- package/es/editor/slider/ibiz-slider/ibiz-slider.mjs +7 -2
- package/es/editor/span/span/span.d.ts +6 -0
- package/es/editor/span/span/span.mjs +11 -6
- package/es/editor/text-box/input/input.d.ts +35 -0
- package/es/editor/text-box/input/input.mjs +30 -3
- package/es/editor/text-box/text-box-editor.controller.d.ts +10 -3
- package/es/editor/text-box/text-box-editor.controller.mjs +13 -2
- package/es/editor/upload/ibiz-file-upload/ibiz-file-upload.mjs +7 -2
- package/es/editor/upload/ibiz-image-upload/ibiz-image-upload.mjs +7 -2
- package/es/locale/en/index.d.ts +1 -0
- package/es/locale/zh-CN/index.d.ts +1 -0
- package/es/node_modules/.pnpm/{element-plus@2.7.5_vue@3.3.8 → element-plus@2.4.4_vue@3.3.8}/node_modules/element-plus/dist/locale/zh-cn.mjs +1 -14
- package/es/web-app/create-vue-app.mjs +1 -1
- package/lib/editor/check-box/check-box-editor.provider.cjs +1 -1
- package/lib/editor/check-box/ibiz-checkbox/ibiz-checkbox.cjs +6 -1
- package/lib/editor/check-box-list/ibiz-checkbox-list/ibiz-checkbox-list.cjs +6 -1
- package/lib/editor/data-picker/ibiz-picker-link/ibiz-picker-link.cjs +6 -1
- package/lib/editor/list-box/ibiz-list-box/ibiz-list-box.cjs +6 -1
- package/lib/editor/number-range/ibiz-number-range-picker/ibiz-number-range-picker.cjs +11 -9
- package/lib/editor/radio-button-list/ibiz-radio/ibiz-radio.cjs +6 -1
- package/lib/editor/rate/ibiz-rate/ibiz-rate.cjs +6 -1
- package/lib/editor/slider/ibiz-slider/ibiz-slider.cjs +6 -1
- package/lib/editor/span/span/span.cjs +11 -6
- package/lib/editor/text-box/input/input.cjs +28 -1
- package/lib/editor/text-box/text-box-editor.controller.cjs +12 -1
- package/lib/editor/upload/ibiz-file-upload/ibiz-file-upload.cjs +6 -1
- package/lib/editor/upload/ibiz-image-upload/ibiz-image-upload.cjs +6 -1
- package/lib/node_modules/.pnpm/{element-plus@2.7.5_vue@3.3.8 → element-plus@2.4.4_vue@3.3.8}/node_modules/element-plus/dist/locale/zh-cn.cjs +1 -14
- package/lib/web-app/create-vue-app.cjs +1 -1
- package/package.json +8 -8
|
@@ -15,6 +15,10 @@ const IBizImageUpload = /* @__PURE__ */ vue.defineComponent({
|
|
|
15
15
|
}) {
|
|
16
16
|
const ns = vue3Util.useNamespace("image-upload");
|
|
17
17
|
const c = props.controller;
|
|
18
|
+
const {
|
|
19
|
+
useInFocusAndBlur,
|
|
20
|
+
useInValueChange
|
|
21
|
+
} = vue3Util.useAutoFocusBlur(props, emit);
|
|
18
22
|
const {
|
|
19
23
|
uploadUrl,
|
|
20
24
|
headers,
|
|
@@ -27,6 +31,7 @@ const IBizImageUpload = /* @__PURE__ */ vue.defineComponent({
|
|
|
27
31
|
beforeUpload
|
|
28
32
|
} = useIviewUpload.useIViewUpload(props, (value) => {
|
|
29
33
|
emit("change", value);
|
|
34
|
+
useInValueChange();
|
|
30
35
|
}, c);
|
|
31
36
|
const dialogImageUrl = vue.ref("");
|
|
32
37
|
const dialogVisible = vue.ref(false);
|
|
@@ -48,7 +53,7 @@ const IBizImageUpload = /* @__PURE__ */ vue.defineComponent({
|
|
|
48
53
|
});
|
|
49
54
|
const {
|
|
50
55
|
componentRef
|
|
51
|
-
} = vue3Util.useFocusAndBlur(() => emit("focus"), () =>
|
|
56
|
+
} = vue3Util.useFocusAndBlur(() => emit("focus"), () => useInFocusAndBlur());
|
|
52
57
|
return {
|
|
53
58
|
ns,
|
|
54
59
|
c,
|
|
@@ -2,14 +2,11 @@
|
|
|
2
2
|
|
|
3
3
|
Object.defineProperty(exports, '__esModule', { value: true });
|
|
4
4
|
|
|
5
|
-
/*! Element Plus v2.
|
|
5
|
+
/*! Element Plus v2.4.4 */
|
|
6
6
|
|
|
7
7
|
var zhCn = {
|
|
8
8
|
name: "zh-cn",
|
|
9
9
|
el: {
|
|
10
|
-
breadcrumb: {
|
|
11
|
-
label: "\u9762\u5305\u5C51"
|
|
12
|
-
},
|
|
13
10
|
colorpicker: {
|
|
14
11
|
confirm: "\u786E\u5B9A",
|
|
15
12
|
clear: "\u6E05\u7A7A"
|
|
@@ -111,11 +108,6 @@ var zhCn = {
|
|
|
111
108
|
clearFilter: "\u5168\u90E8",
|
|
112
109
|
sumText: "\u5408\u8BA1"
|
|
113
110
|
},
|
|
114
|
-
tour: {
|
|
115
|
-
next: "\u4E0B\u4E00\u6B65",
|
|
116
|
-
previous: "\u4E0A\u4E00\u6B65",
|
|
117
|
-
finish: "\u7ED3\u675F\u5BFC\u89C8"
|
|
118
|
-
},
|
|
119
111
|
tree: {
|
|
120
112
|
emptyText: "\u6682\u65E0\u6570\u636E"
|
|
121
113
|
},
|
|
@@ -136,11 +128,6 @@ var zhCn = {
|
|
|
136
128
|
popconfirm: {
|
|
137
129
|
confirmButtonText: "\u786E\u5B9A",
|
|
138
130
|
cancelButtonText: "\u53D6\u6D88"
|
|
139
|
-
},
|
|
140
|
-
carousel: {
|
|
141
|
-
leftArrow: "\u4E0A\u4E00\u5F20\u5E7B\u706F\u7247",
|
|
142
|
-
rightArrow: "\u4E0B\u4E00\u5F20\u5E7B\u706F\u7247",
|
|
143
|
-
indicator: "\u5E7B\u706F\u7247\u5207\u6362\u81F3\u7D22\u5F15 {index}"
|
|
144
131
|
}
|
|
145
132
|
}
|
|
146
133
|
};
|
|
@@ -2,7 +2,7 @@
|
|
|
2
2
|
|
|
3
3
|
var vue = require('vue');
|
|
4
4
|
var ElementPlus = require('element-plus');
|
|
5
|
-
var zhCn = require('../node_modules/.pnpm/element-plus@2.
|
|
5
|
+
var zhCn = require('../node_modules/.pnpm/element-plus@2.4.4_vue@3.3.8/node_modules/element-plus/dist/locale/zh-cn.cjs');
|
|
6
6
|
var vue3Util = require('@ibiz-template/vue3-util');
|
|
7
7
|
var ibizVue3 = require('../ibiz-vue3.cjs');
|
|
8
8
|
var index = require('../locale/index.cjs');
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@ibiz-template/vue3-components",
|
|
3
|
-
"version": "0.7.24
|
|
3
|
+
"version": "0.7.24",
|
|
4
4
|
"description": "使用 rollup 编译 vue 组件或者 jsx",
|
|
5
5
|
"main": "lib/index.cjs",
|
|
6
6
|
"module": "es/index.mjs",
|
|
@@ -32,12 +32,12 @@
|
|
|
32
32
|
"@ibiz-template-plugin/gantt": "0.1.8-alpha.3",
|
|
33
33
|
"@ibiz-template/core": "0.7.18",
|
|
34
34
|
"@ibiz-template/devtool": "0.0.1-dev.6",
|
|
35
|
-
"@ibiz-template/model-helper": "0.7.24
|
|
36
|
-
"@ibiz-template/runtime": "0.7.24
|
|
35
|
+
"@ibiz-template/model-helper": "0.7.24",
|
|
36
|
+
"@ibiz-template/runtime": "0.7.24",
|
|
37
37
|
"@ibiz-template/theme": "^0.7.0",
|
|
38
|
-
"@ibiz-template/vue3-util": "0.7.24
|
|
38
|
+
"@ibiz-template/vue3-util": "0.7.24",
|
|
39
39
|
"@ibiz-template/web-theme": "^1.1.18",
|
|
40
|
-
"@ibiz/model-core": "^0.1.
|
|
40
|
+
"@ibiz/model-core": "^0.1.34",
|
|
41
41
|
"@imengyu/vue3-context-menu": "^1.3.5",
|
|
42
42
|
"@monaco-editor/loader": "^1.4.0",
|
|
43
43
|
"@wangeditor/editor": "^5.1.23",
|
|
@@ -46,7 +46,7 @@
|
|
|
46
46
|
"cherry-markdown": "0.8.26",
|
|
47
47
|
"dayjs": "^1.11.10",
|
|
48
48
|
"echarts": "^5.4.3",
|
|
49
|
-
"element-plus": "
|
|
49
|
+
"element-plus": "2.4.4",
|
|
50
50
|
"file-saver": "^2.0.5",
|
|
51
51
|
"interactjs": "^1.10.20",
|
|
52
52
|
"lodash-es": "^4.17.21",
|
|
@@ -101,7 +101,7 @@
|
|
|
101
101
|
"@ibiz-template/runtime": "^0.7.0",
|
|
102
102
|
"@ibiz-template/theme": "^0.7.0",
|
|
103
103
|
"@ibiz-template/vue3-util": "^0.7.0",
|
|
104
|
-
"@ibiz/model-core": "^0.1.
|
|
104
|
+
"@ibiz/model-core": "^0.1.34",
|
|
105
105
|
"@imengyu/vue3-context-menu": "^1.3.3",
|
|
106
106
|
"@monaco-editor/loader": "^1.3.3",
|
|
107
107
|
"@wangeditor/editor": "^5.1.23",
|
|
@@ -110,7 +110,7 @@
|
|
|
110
110
|
"cherry-markdown": "^0.8.22",
|
|
111
111
|
"dayjs": "^1.11.9",
|
|
112
112
|
"echarts": "^5.4.3",
|
|
113
|
-
"element-plus": "
|
|
113
|
+
"element-plus": "2.4.4",
|
|
114
114
|
"lodash-es": "^4.17.21",
|
|
115
115
|
"monaco-editor": "^0.45.0",
|
|
116
116
|
"pinia": "^2.1.6",
|