@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.
Files changed (48) hide show
  1. package/dist/ibiz-markdown-editor-DJ662N4_.js +1 -0
  2. package/dist/{index-CaWTEUU1.js → index-CG3sQH0b.js} +1 -1
  3. package/dist/index-D3x_MFr-.js +11 -0
  4. package/dist/{index-CD2XM6M6.js → index-kZrZndeH.js} +1 -1
  5. package/dist/index.min.css +1 -1
  6. package/dist/index.system.min.js +1 -1
  7. package/dist/wang-editor-DDSO3Ha9.js +1 -0
  8. package/dist/{xlsx-util-Dvg2kWh7.js → xlsx-util-8YSXhmdI.js} +1 -1
  9. package/es/control/form/form-detail/form-item/composite-form-item-ex/composite-form-item-ex.controller.mjs +16 -6
  10. package/es/control/toolbar/export-excel/export-excel.mjs +19 -4
  11. package/es/editor/code/monaco-editor/monaco-editor.mjs +13 -195
  12. package/es/editor/html/wang-editor/module/ai-module.mjs +1 -1
  13. package/es/editor/html/wang-editor/wang-editor.mjs +31 -202
  14. package/es/editor/markdown/ibiz-markdown-editor/custom-menu.mjs +16 -223
  15. package/es/editor/markdown/ibiz-markdown-editor/ibiz-markdown-editor.css +1 -1
  16. package/es/editor/markdown/ibiz-markdown-editor/ibiz-markdown-editor.mjs +2 -1
  17. package/es/editor/text-box/input/input.mjs +9 -197
  18. package/es/locale/en/index.mjs +24 -1
  19. package/es/locale/zh-CN/index.mjs +24 -1
  20. package/es/panel-component/panel-app-title/panel-app-title.mjs +19 -42
  21. package/es/util/ai-chat-util/ai-chat-util.mjs +644 -15
  22. package/es/util/ai-chat-util/ai-feedback/ai-feedback.css +1 -0
  23. package/es/util/ai-chat-util/ai-feedback/ai-feedback.mjs +130 -0
  24. package/es/util/app-util/app-util.mjs +24 -246
  25. package/es/util/inline-ai-util/inline-ai-textarea/inline-ai-textarea.hook.mjs +12 -4
  26. package/es/util/inline-ai-util/inline-ai-textarea/inline-ai-textarea.mjs +3 -1
  27. package/lib/control/form/form-detail/form-item/composite-form-item-ex/composite-form-item-ex.controller.cjs +16 -6
  28. package/lib/control/toolbar/export-excel/export-excel.cjs +18 -3
  29. package/lib/editor/code/monaco-editor/monaco-editor.cjs +13 -195
  30. package/lib/editor/html/wang-editor/module/ai-module.cjs +1 -1
  31. package/lib/editor/html/wang-editor/wang-editor.cjs +30 -201
  32. package/lib/editor/markdown/ibiz-markdown-editor/custom-menu.cjs +16 -223
  33. package/lib/editor/markdown/ibiz-markdown-editor/ibiz-markdown-editor.cjs +2 -1
  34. package/lib/editor/markdown/ibiz-markdown-editor/ibiz-markdown-editor.css +1 -1
  35. package/lib/editor/text-box/input/input.cjs +8 -196
  36. package/lib/locale/en/index.cjs +24 -1
  37. package/lib/locale/zh-CN/index.cjs +24 -1
  38. package/lib/panel-component/panel-app-title/panel-app-title.cjs +18 -41
  39. package/lib/util/ai-chat-util/ai-chat-util.cjs +642 -13
  40. package/lib/util/ai-chat-util/ai-feedback/ai-feedback.cjs +132 -0
  41. package/lib/util/ai-chat-util/ai-feedback/ai-feedback.css +1 -0
  42. package/lib/util/app-util/app-util.cjs +23 -245
  43. package/lib/util/inline-ai-util/inline-ai-textarea/inline-ai-textarea.cjs +3 -1
  44. package/lib/util/inline-ai-util/inline-ai-textarea/inline-ai-textarea.hook.cjs +12 -4
  45. package/package.json +7 -7
  46. package/dist/ibiz-markdown-editor-DEV-iSvz.js +0 -1
  47. package/dist/index-Bv2fgePf.js +0 -11
  48. 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
- }, [tempIcon]);
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
- }, [tempIcon, vue.createVNode("svg", {
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
- if (isSvg) {
228
- iconVNode = vue.createVNode("ion-icon", {
229
- "class": this.ns.e("logo"),
230
- "icon": icon
231
- }, null);
232
- } else {
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") {