@ibiz-template/vue3-components 0.7.41-alpha.41 → 0.7.41-alpha.43
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/ibiz-markdown-editor-DJ662N4_.js +1 -0
- package/dist/{index-CaWTEUU1.js → index-CG3sQH0b.js} +1 -1
- package/dist/index-D3x_MFr-.js +11 -0
- package/dist/{index-CD2XM6M6.js → index-kZrZndeH.js} +1 -1
- package/dist/index.min.css +1 -1
- package/dist/index.system.min.js +1 -1
- package/dist/wang-editor-DDSO3Ha9.js +1 -0
- package/dist/{xlsx-util-Dvg2kWh7.js → xlsx-util-8YSXhmdI.js} +1 -1
- package/es/control/form/form-detail/form-item/composite-form-item-ex/composite-form-item-ex.controller.mjs +16 -6
- package/es/control/toolbar/export-excel/export-excel.mjs +19 -4
- package/es/editor/code/monaco-editor/monaco-editor.mjs +13 -195
- package/es/editor/html/wang-editor/module/ai-module.mjs +1 -1
- package/es/editor/html/wang-editor/wang-editor.mjs +31 -202
- package/es/editor/markdown/ibiz-markdown-editor/custom-menu.mjs +16 -223
- package/es/editor/markdown/ibiz-markdown-editor/ibiz-markdown-editor.css +1 -1
- package/es/editor/markdown/ibiz-markdown-editor/ibiz-markdown-editor.mjs +2 -1
- package/es/editor/text-box/input/input.mjs +9 -197
- package/es/locale/en/index.mjs +24 -1
- package/es/locale/zh-CN/index.mjs +24 -1
- package/es/panel-component/panel-app-title/panel-app-title.mjs +19 -42
- package/es/util/ai-chat-util/ai-chat-util.mjs +644 -15
- package/es/util/ai-chat-util/ai-feedback/ai-feedback.css +1 -0
- package/es/util/ai-chat-util/ai-feedback/ai-feedback.mjs +130 -0
- package/es/util/app-util/app-util.mjs +24 -246
- package/es/util/inline-ai-util/inline-ai-textarea/inline-ai-textarea.hook.mjs +12 -4
- package/es/util/inline-ai-util/inline-ai-textarea/inline-ai-textarea.mjs +3 -1
- package/lib/control/form/form-detail/form-item/composite-form-item-ex/composite-form-item-ex.controller.cjs +16 -6
- package/lib/control/toolbar/export-excel/export-excel.cjs +18 -3
- package/lib/editor/code/monaco-editor/monaco-editor.cjs +13 -195
- package/lib/editor/html/wang-editor/module/ai-module.cjs +1 -1
- package/lib/editor/html/wang-editor/wang-editor.cjs +30 -201
- package/lib/editor/markdown/ibiz-markdown-editor/custom-menu.cjs +16 -223
- package/lib/editor/markdown/ibiz-markdown-editor/ibiz-markdown-editor.cjs +2 -1
- package/lib/editor/markdown/ibiz-markdown-editor/ibiz-markdown-editor.css +1 -1
- package/lib/editor/text-box/input/input.cjs +8 -196
- package/lib/locale/en/index.cjs +24 -1
- package/lib/locale/zh-CN/index.cjs +24 -1
- package/lib/panel-component/panel-app-title/panel-app-title.cjs +18 -41
- package/lib/util/ai-chat-util/ai-chat-util.cjs +642 -13
- package/lib/util/ai-chat-util/ai-feedback/ai-feedback.cjs +132 -0
- package/lib/util/ai-chat-util/ai-feedback/ai-feedback.css +1 -0
- package/lib/util/app-util/app-util.cjs +23 -245
- package/lib/util/inline-ai-util/inline-ai-textarea/inline-ai-textarea.cjs +3 -1
- package/lib/util/inline-ai-util/inline-ai-textarea/inline-ai-textarea.hook.cjs +12 -4
- package/package.json +7 -7
- package/dist/ibiz-markdown-editor-DEV-iSvz.js +0 -1
- package/dist/index-Bv2fgePf.js +0 -11
- package/dist/wang-editor-4cNAgOaJ.js +0 -1
|
@@ -89,7 +89,6 @@ const PanelAppTitle = /* @__PURE__ */ vue.defineComponent({
|
|
|
89
89
|
render() {
|
|
90
90
|
const {
|
|
91
91
|
icon,
|
|
92
|
-
isSvg,
|
|
93
92
|
caption,
|
|
94
93
|
caption2,
|
|
95
94
|
subCaption,
|
|
@@ -106,22 +105,14 @@ const PanelAppTitle = /* @__PURE__ */ vue.defineComponent({
|
|
|
106
105
|
if (this.menuAlign === "LEFT") {
|
|
107
106
|
if (this.isCollapse) {
|
|
108
107
|
if (icon) {
|
|
109
|
-
let tempIcon = null;
|
|
110
|
-
if (isSvg) {
|
|
111
|
-
tempIcon = vue.createVNode("ion-icon", {
|
|
112
|
-
"class": this.ns.e("logo"),
|
|
113
|
-
"icon": icon
|
|
114
|
-
}, null);
|
|
115
|
-
} else {
|
|
116
|
-
tempIcon = vue.createVNode("span", {
|
|
117
|
-
"class": this.ns.e("logo")
|
|
118
|
-
}, [vue.createVNode("img", {
|
|
119
|
-
"src": icon
|
|
120
|
-
}, null)]);
|
|
121
|
-
}
|
|
122
108
|
iconVNode = vue.createVNode("div", {
|
|
123
109
|
"class": this.ns.e("collpase-icon")
|
|
124
|
-
}, [
|
|
110
|
+
}, [vue.createVNode(vue.resolveComponent("iBizIcon"), {
|
|
111
|
+
"class": this.ns.e("logo"),
|
|
112
|
+
"icon": {
|
|
113
|
+
rawContent: icon
|
|
114
|
+
}
|
|
115
|
+
}, null)]);
|
|
125
116
|
} else {
|
|
126
117
|
iconVNode = vue.createVNode("div", {
|
|
127
118
|
"class": this.ns.e("collapse-title")
|
|
@@ -132,19 +123,6 @@ const PanelAppTitle = /* @__PURE__ */ vue.defineComponent({
|
|
|
132
123
|
}, [subCaption2])]);
|
|
133
124
|
}
|
|
134
125
|
} else if (this.showIcon && icon) {
|
|
135
|
-
let tempIcon = null;
|
|
136
|
-
if (isSvg) {
|
|
137
|
-
tempIcon = vue.createVNode("ion-icon", {
|
|
138
|
-
"class": this.ns.em("logo", "expand"),
|
|
139
|
-
"icon": icon
|
|
140
|
-
}, null);
|
|
141
|
-
} else {
|
|
142
|
-
tempIcon = vue.createVNode("span", {
|
|
143
|
-
"class": this.ns.em("logo", "expand")
|
|
144
|
-
}, [vue.createVNode("img", {
|
|
145
|
-
"src": icon
|
|
146
|
-
}, null)]);
|
|
147
|
-
}
|
|
148
126
|
let tempContent = vue.createVNode("g", {
|
|
149
127
|
"id": "app-caption-panel",
|
|
150
128
|
"stroke": "none",
|
|
@@ -185,7 +163,12 @@ const PanelAppTitle = /* @__PURE__ */ vue.defineComponent({
|
|
|
185
163
|
}
|
|
186
164
|
iconVNode = vue.createVNode("span", {
|
|
187
165
|
"class": this.ns.e("logo")
|
|
188
|
-
}, [
|
|
166
|
+
}, [vue.createVNode(vue.resolveComponent("iBizIcon"), {
|
|
167
|
+
"class": this.ns.em("logo", "expand"),
|
|
168
|
+
"icon": {
|
|
169
|
+
rawContent: icon
|
|
170
|
+
}
|
|
171
|
+
}, null), vue.createVNode("svg", {
|
|
189
172
|
"width": "166px",
|
|
190
173
|
"height": "80px",
|
|
191
174
|
"viewBox": "0 0 166 90",
|
|
@@ -224,18 +207,12 @@ const PanelAppTitle = /* @__PURE__ */ vue.defineComponent({
|
|
|
224
207
|
}
|
|
225
208
|
} else if (this.menuAlign === "TOP") {
|
|
226
209
|
if (icon) {
|
|
227
|
-
|
|
228
|
-
|
|
229
|
-
|
|
230
|
-
|
|
231
|
-
}
|
|
232
|
-
}
|
|
233
|
-
iconVNode = vue.createVNode("span", {
|
|
234
|
-
"class": this.ns.e("logo")
|
|
235
|
-
}, [vue.createVNode("img", {
|
|
236
|
-
"src": icon
|
|
237
|
-
}, null)]);
|
|
238
|
-
}
|
|
210
|
+
iconVNode = vue.createVNode(vue.resolveComponent("iBizIcon"), {
|
|
211
|
+
"class": this.ns.e("logo"),
|
|
212
|
+
"icon": {
|
|
213
|
+
rawContent: icon
|
|
214
|
+
}
|
|
215
|
+
}, null);
|
|
239
216
|
}
|
|
240
217
|
}
|
|
241
218
|
if (this.menuAlign === "LEFT") {
|