@kp-ui/lowcode 2.14.0-beta → 2.14.0-beta.2

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 (61) hide show
  1. package/install.js +26 -25
  2. package/package.json +2 -2
  3. package/src/components/form-designer/form-widget/field-widget/diy-compontent-widget.vue.js +1 -1
  4. package/src/components/form-designer/index.vue.js +55 -54
  5. package/src/components/form-designer/setting-panel/form-crud-setting.vue.js +62 -23
  6. package/src/components/form-designer/setting-panel/index.vue.js +4 -386
  7. package/src/components/form-designer/setting-panel/index.vue2.js +273 -0
  8. package/src/components/form-designer/setting-panel/property-editor/button-list-editor.vue2.js +5 -4
  9. package/src/components/form-designer/setting-panel/property-editor/container-data-table/customRowEvent/data-table-customRow-editor.vue.js +1 -0
  10. package/src/components/form-designer/setting-panel/property-editor/container-data-table/data-table-dsEnabled-editor.vue.js +5 -4
  11. package/src/components/form-designer/setting-panel/property-editor/container-data-table/data-table-pagination-editor.vue.js +1 -0
  12. package/src/components/form-designer/setting-panel/property-editor/container-data-table/data-table-selections-editor.vue2.js +24 -24
  13. package/src/components/form-designer/setting-panel/property-editor/container-data-table/data-table-showButtonsColumn-editor.vue.js +9 -8
  14. package/src/components/form-designer/setting-panel/property-editor/container-data-table/data-table-tableColumns-editor.vue.js +1 -1
  15. package/src/components/form-designer/setting-panel/property-editor/container-data-table/data-table-tableColumns-editor.vue2.js +7 -6
  16. package/src/components/form-designer/setting-panel/property-editor/container-vf-dialog/bodyStyle-editor.vue2.js +7 -6
  17. package/src/components/form-designer/setting-panel/property-editor/customRender-editor.vue.js +2 -40
  18. package/src/components/form-designer/setting-panel/property-editor/customRender-editor.vue2.js +41 -0
  19. package/src/components/form-designer/setting-panel/property-editor/event-handler/onClickIcon-editor.vue.js +2 -47
  20. package/src/components/form-designer/setting-panel/property-editor/event-handler/onClickIcon-editor.vue2.js +44 -0
  21. package/src/components/form-designer/setting-panel/property-editor/event-handler/onCreated-editor.vue.js +2 -47
  22. package/src/components/form-designer/setting-panel/property-editor/event-handler/onCreated-editor.vue2.js +43 -0
  23. package/src/components/form-designer/setting-panel/property-editor/event-handler/onOkButtonClick-editor.vue.js +2 -46
  24. package/src/components/form-designer/setting-panel/property-editor/event-handler/onOkButtonClick-editor.vue2.js +43 -0
  25. package/src/components/form-designer/setting-panel/property-editor/event-handler/onValidate-editor.vue.js +2 -47
  26. package/src/components/form-designer/setting-panel/property-editor/event-handler/onValidate-editor.vue2.js +44 -0
  27. package/src/components/form-designer/setting-panel/property-editor/field-dropdown/dropdown-menuList-editor.vue.js +2 -66
  28. package/src/components/form-designer/setting-panel/property-editor/field-dropdown/dropdown-menuList-editor.vue2.js +42 -0
  29. package/src/components/form-designer/setting-panel/property-editor/field-html-text/htmlContent-editor.vue.js +5 -4
  30. package/src/components/form-designer/setting-panel/property-editor/hidden-editor.vue.js +6 -5
  31. package/src/components/form-designer/setting-panel/property-editor/index.js +146 -152
  32. package/src/components/form-designer/setting-panel/property-editor/labelIconClass-editor.vue.js +8 -7
  33. package/src/components/form-designer/setting-panel/property-editor/optionItems-editor.vue.js +38 -35
  34. package/src/components/form-designer/setting-panel/propertyRegister.js +0 -12
  35. package/src/components/form-render/container-item/data-table-item.vue.js +149 -0
  36. package/src/components/form-render/container-item/grid-col-item.vue.js +149 -0
  37. package/src/components/form-render/container-item/grid-item.vue.js +92 -0
  38. package/src/components/form-render/container-item/grid-sub-form-item.vue.js +319 -0
  39. package/src/components/form-render/container-item/index.js +24 -0
  40. package/src/components/form-render/container-item/sub-form-item.vue.js +429 -0
  41. package/src/components/form-render/container-item/tab-item.vue.js +160 -0
  42. package/src/components/form-render/container-item/table-cell-item.vue.js +95 -0
  43. package/src/components/form-render/container-item/table-item.vue.js +96 -0
  44. package/src/components/form-render/container-item/vf-collapse-item.vue.js +252 -0
  45. package/src/components/form-render/container-item/vf-dialog-item.vue.js +12 -0
  46. package/src/components/form-render/container-item/vf-drawer-item.vue.js +12 -0
  47. package/src/components/form-render/index.vue.js +12 -14
  48. package/src/components/http-editor/index.vue.js +10 -10
  49. package/src/components/public/ActionButtonListRender.vue.js +19 -24
  50. package/src/lang/en-US.js +1 -3
  51. package/src/lang/zh-CN.js +0 -3
  52. package/src/utils/useEmitter.js +57 -0
  53. package/src/utils/util.js +50 -49
  54. package/stats.html +1 -1
  55. package/styles/style.css +1 -1
  56. package/src/components/form-designer/setting-panel/property-editor/displayStyle-editor.vue.js +0 -46
  57. package/src/components/form-designer/setting-panel/property-editor/event-handler/onVformAdd-editor.vue.js +0 -49
  58. package/src/components/form-designer/setting-panel/property-editor/multipleSelect-editor.vue.js +0 -30
  59. package/src/components/form-designer/setting-panel/property-editor/uploadTip-editor.vue.js +0 -31
  60. package/src/components/form-designer/setting-panel/property-editor/uploadURL-editor.vue.js +0 -44
  61. package/src/components/form-designer/setting-panel/property-editor/withCredentials-editor.vue.js +0 -30
@@ -19,9 +19,9 @@ import * as C from "./container-data-table/data-table-colorRow-editor.vue.js";
19
19
  import * as w from "./container-data-table/data-table-customClass-editor.vue.js";
20
20
  import * as T from "./container-data-table/data-table-dsEnabled-editor.vue.js";
21
21
  import * as k from "./container-data-table/data-table-pagination-editor.vue.js";
22
- import * as S from "./container-data-table/data-table-rowKey-editor.vue.js";
23
- import * as B from "./container-data-table/data-table-selections-editor.vue.js";
24
- import * as D from "./container-data-table/data-table-showButtonsColumn-editor.vue.js";
22
+ import * as B from "./container-data-table/data-table-rowKey-editor.vue.js";
23
+ import * as D from "./container-data-table/data-table-selections-editor.vue.js";
24
+ import * as S from "./container-data-table/data-table-showButtonsColumn-editor.vue.js";
25
25
  import * as R from "./container-data-table/data-table-showIndex-editor.vue.js";
26
26
  import * as V from "./container-data-table/data-table-stripe-editor.vue.js";
27
27
  import * as y from "./container-data-table/data-table-tableColumns-editor.vue.js";
@@ -30,14 +30,14 @@ import * as F from "./container-data-table/data-table-tableSize-editor.vue.js";
30
30
  import * as H from "./container-data-table/data-table-tableWidth-editor.vue.js";
31
31
  import * as x from "./container-data-table/data-table-treeDataEnabled-editor.vue.js";
32
32
  import * as I from "./container-grid-col/grid-col-offset-editor.vue.js";
33
- import * as L from "./container-grid-col/grid-col-pull-editor.vue.js";
34
- import * as O from "./container-grid-col/grid-col-push-editor.vue.js";
35
- import * as M from "./container-grid-col/grid-col-responsive-editor.vue.js";
33
+ import * as O from "./container-grid-col/grid-col-pull-editor.vue.js";
34
+ import * as M from "./container-grid-col/grid-col-push-editor.vue.js";
35
+ import * as L from "./container-grid-col/grid-col-responsive-editor.vue.js";
36
36
  import * as A from "./container-grid-col/grid-col-span-editor.vue.js";
37
37
  import * as W from "./container-grid/colHeight-editor.vue.js";
38
38
  import * as z from "./container-grid/gutter-editor.vue.js";
39
- import * as U from "./container-sub-form/showBlankRow-editor.vue.js";
40
- import * as G from "./container-sub-form/showRowNumber-editor.vue.js";
39
+ import * as G from "./container-sub-form/showBlankRow-editor.vue.js";
40
+ import * as U from "./container-sub-form/showRowNumber-editor.vue.js";
41
41
  import * as q from "./container-sub-form/sub-form-labelAlign-editor.vue.js";
42
42
  import * as N from "./container-tab/tab-customClass-editor.vue.js";
43
43
  import * as K from "./container-tab/tab-tabBarGutter-editor.vue.js";
@@ -70,157 +70,151 @@ import * as bo from "./customClass-editor.vue.js";
70
70
  import * as go from "./customRender-editor.vue.js";
71
71
  import * as Co from "./defaultValue-editor.vue.js";
72
72
  import * as wo from "./disabled-editor.vue.js";
73
- import * as To from "./displayStyle-editor.vue.js";
74
- import * as ko from "./editable-editor.vue.js";
75
- import * as So from "./endPlaceholder-editor.vue.js";
73
+ import * as To from "./editable-editor.vue.js";
74
+ import * as ko from "./endPlaceholder-editor.vue.js";
76
75
  import * as Bo from "./event-handler/onAppendButtonClick-editor.vue.js";
77
76
  import * as Do from "./event-handler/onBeforeUpload-editor.vue.js";
78
- import * as Ro from "./event-handler/onBlur-editor.vue.js";
79
- import * as Vo from "./event-handler/onCancelButtonClick-editor.vue.js";
80
- import * as yo from "./event-handler/onCellClick-editor.vue.js";
81
- import * as Po from "./event-handler/onCellDoubleClick-editor.vue.js";
82
- import * as Fo from "./event-handler/onChange-editor.vue.js";
83
- import * as Ho from "./event-handler/onCheck-editor.vue.js";
84
- import * as xo from "./event-handler/onClick-editor.vue.js";
85
- import * as Io from "./event-handler/onClickIcon-editor.vue.js";
86
- import * as Lo from "./event-handler/onCreated-editor.vue.js";
77
+ import * as So from "./event-handler/onBlur-editor.vue.js";
78
+ import * as Ro from "./event-handler/onCancelButtonClick-editor.vue.js";
79
+ import * as Vo from "./event-handler/onCellClick-editor.vue.js";
80
+ import * as yo from "./event-handler/onCellDoubleClick-editor.vue.js";
81
+ import * as Po from "./event-handler/onChange-editor.vue.js";
82
+ import * as Fo from "./event-handler/onCheck-editor.vue.js";
83
+ import * as Ho from "./event-handler/onClick-editor.vue.js";
84
+ import * as xo from "./event-handler/onClickIcon-editor.vue.js";
85
+ import * as Io from "./event-handler/onCreated-editor.vue.js";
87
86
  import * as Oo from "./event-handler/onCurrentPageChange-editor.vue.js";
88
87
  import * as Mo from "./event-handler/onDialogBeforeClose-editor.vue.js";
89
- import * as Ao from "./event-handler/onDialogOpened-editor.vue.js";
90
- import * as Wo from "./event-handler/onDisableOperationButton-editor.vue.js";
91
- import * as zo from "./event-handler/onDrawerBeforeClose-editor.vue.js";
92
- import * as Uo from "./event-handler/onDrawerOpened-editor.vue.js";
88
+ import * as Lo from "./event-handler/onDialogOpened-editor.vue.js";
89
+ import * as Ao from "./event-handler/onDisableOperationButton-editor.vue.js";
90
+ import * as Wo from "./event-handler/onDrawerBeforeClose-editor.vue.js";
91
+ import * as zo from "./event-handler/onDrawerOpened-editor.vue.js";
93
92
  import * as Go from "./event-handler/onFileRemove.vue.js";
94
- import * as qo from "./event-handler/onFocus-editor.vue.js";
95
- import * as No from "./event-handler/onGetOperationButtonLabel-editor.vue.js";
96
- import * as Ko from "./event-handler/onGetRowClassName-editor.vue.js";
97
- import * as Qo from "./event-handler/onGetSpanMethod-editor.vue.js";
98
- import * as jo from "./event-handler/onHeaderClick-editor.vue.js";
99
- import * as $o from "./event-handler/onHideOperationButton-editor.vue.js";
100
- import * as Jo from "./event-handler/onInput-editor.vue.js";
101
- import * as Xo from "./event-handler/onMenuClick-editor.vue.js";
102
- import * as Yo from "./event-handler/onMounted-editor.vue.js";
103
- import * as Zo from "./event-handler/onOkButtonClick-editor.vue.js";
104
- import * as _o from "./event-handler/onOperationButtonClick-editor.vue.js";
105
- import * as oe from "./event-handler/onPageSizeChange-editor.vue.js";
106
- import * as ee from "./event-handler/onRemoteQuery-editor.vue.js";
107
- import * as te from "./event-handler/onRowClick-editor.vue.js";
108
- import * as re from "./event-handler/onRowDoubleClick-editor.vue.js";
109
- import * as ie from "./event-handler/onSelectionChange-editor.vue.js";
110
- import * as ae from "./event-handler/onSubFormRowAdd-editor.vue.js";
111
- import * as de from "./event-handler/onSubFormRowChange-editor.vue.js";
112
- import * as le from "./event-handler/onSubFormRowDelete-editor.vue.js";
113
- import * as ne from "./event-handler/onSubFormRowInsert-editor.vue.js";
114
- import * as me from "./event-handler/onTabClick-editor.vue.js";
115
- import * as ue from "./event-handler/onTableChange-editor.vue.js";
116
- import * as se from "./event-handler/onUploadError-editor.vue.js";
117
- import * as fe from "./event-handler/onUploadSuccess-editor.vue.js";
118
- import * as pe from "./event-handler/onValidate-editor.vue.js";
119
- import * as ve from "./event-handler/onVformAdd-editor.vue.js";
120
- import * as ce from "./field-button/circle-editor.vue.js";
121
- import * as Ee from "./field-button/danger-editor.vue.js";
122
- import * as he from "./field-button/ghost-editor.vue.js";
123
- import * as be from "./field-button/icon-editor.vue.js";
124
- import * as ge from "./field-button/plain-editor.vue.js";
125
- import * as Ce from "./field-button/round-editor.vue.js";
126
- import * as we from "./field-button/shape-editor.vue.js";
127
- import * as Te from "./field-button/type-editor.vue.js";
128
- import * as ke from "./field-cascader/cascader-defaultValue-editor.vue.js";
129
- import * as Se from "./field-cascader/cascader-multiple-editor.vue.js";
130
- import * as Be from "./field-checkbox/checkbox-defaultValue-editor.vue.js";
131
- import * as De from "./field-color/color-defaultValue-editor.vue.js";
132
- import * as Re from "./field-date-range/date-range-defaultValue-editor.vue.js";
133
- import * as Ve from "./field-date-range/date-range-format-editor.vue.js";
134
- import * as ye from "./field-date-range/date-range-type-editor.vue.js";
135
- import * as Pe from "./field-date-range/date-range-valueFormat-editor.vue.js";
136
- import * as Fe from "./field-date/date-defaultValue-editor.vue.js";
137
- import * as He from "./field-date/date-format-editor.vue.js";
138
- import * as xe from "./field-date/date-type-editor.vue.js";
139
- import * as Ie from "./field-date/date-valueFormat-editor.vue.js";
140
- import * as Le from "./field-divider/contentPosition-editor.vue.js";
141
- import * as Oe from "./field-divider/divider-direction-editor.vue.js";
142
- import * as Me from "./field-dropdown/dropdown-menuList-editor.vue.js";
143
- import * as Ae from "./field-file-upload/file-upload-fileTypes-editor.vue.js";
144
- import * as We from "./field-html-text/htmlContent-editor.vue.js";
145
- import * as ze from "./field-number/controlsPosition-editor.vue.js";
146
- import * as Ue from "./field-number/number-defaultValue-editor.vue.js";
147
- import * as Ge from "./field-picture-upload/picture-upload-fileTypes-editor.vue.js";
148
- import * as qe from "./field-radio/radio-defaultValue-editor.vue.js";
149
- import * as Ne from "./field-rate/allowHalf-editor.vue.js";
150
- import * as Ke from "./field-rate/highThreshold-editor.vue.js";
151
- import * as Qe from "./field-rate/lowThreshold-editor.vue.js";
152
- import * as je from "./field-rate/rate-count-editor.vue.js";
153
- import * as $e from "./field-rate/rate-defaultValue-editor.vue.js";
154
- import * as Je from "./field-rate/showScore-editor.vue.js";
155
- import * as Xe from "./field-rate/showText-editor.vue.js";
156
- import * as Ye from "./field-rich-editor/rich-editor-contentHeight-editor.vue.js";
157
- import * as Ze from "./field-select/mode-editor.vue.js";
158
- import * as _e from "./field-select/select-defaultValue-editor.vue.js";
159
- import * as ot from "./field-slider/range-editor.vue.js";
160
- import * as et from "./field-slider/vertical-editor.vue.js";
161
- import * as tt from "./field-static-text/textContent-editor.vue.js";
162
- import * as rt from "./field-switch/activeColor-editor.vue.js";
163
- import * as it from "./field-switch/checkedValue-editor.vue.js";
164
- import * as at from "./field-switch/inactiveColor-editor.vue.js";
165
- import * as dt from "./field-switch/switch-defaultValue-editor.vue.js";
166
- import * as lt from "./field-switch/switchWidth-editor.vue.js";
167
- import * as nt from "./field-switch/unCheckedValue-editor.vue.js";
168
- import * as mt from "./field-time-range/time-range-defaultValue-editor.vue.js";
169
- import * as ut from "./field-time-range/time-range-format-editor.vue.js";
170
- import * as st from "./field-time/time-defaultValue-editor.vue.js";
171
- import * as ft from "./field-time/time-format-editor.vue.js";
172
- import * as pt from "./field-tree/tree-data-editor.vue.js";
173
- import * as vt from "./field-treeSelect/treeSelect-treeDefaultExpandAll-editor.vue.js";
174
- import * as ct from "./flex-editor.vue.js";
175
- import * as Et from "./hidden-editor.vue.js";
176
- import * as ht from "./label-editor.vue.js";
177
- import * as bt from "./labelAlign-editor.vue.js";
178
- import * as gt from "./labelHidden-editor.vue.js";
179
- import * as Ct from "./labelIconClass-editor.vue.js";
180
- import * as wt from "./labelIconPosition-editor.vue.js";
181
- import * as Tt from "./labelTooltip-editor.vue.js";
182
- import * as kt from "./labelWidth-editor.vue.js";
183
- import * as St from "./limit-editor.vue.js";
184
- import * as Bt from "./loadingPage-editor.vue.js";
185
- import * as Dt from "./max-editor.vue.js";
186
- import * as Rt from "./maxLength-editor.vue.js";
187
- import * as Vt from "./maxSize-editor.vue.js";
188
- import * as yt from "./min-editor.vue.js";
189
- import * as Pt from "./minLength-editor.vue.js";
190
- import * as Ft from "./multiple-editor.vue.js";
191
- import * as Ht from "./multipleSelect-editor.vue.js";
192
- import * as xt from "./name-editor.vue.js";
193
- import * as It from "./optionItems-editor.vue.js";
194
- import * as Lt from "./placeholder-editor.vue.js";
195
- import * as Ot from "./placement-editor.vue.js";
196
- import * as Mt from "./precision-editor.vue.js";
197
- import * as At from "./readonly-editor.vue.js";
198
- import * as Wt from "./required-editor.vue.js";
199
- import * as zt from "./requiredHint-editor.vue.js";
200
- import * as Ut from "./rightSlotCss-editor.vue.js";
201
- import * as Gt from "./rows-editor.vue.js";
202
- import * as qt from "./showCount-editor.vue.js";
203
- import * as Nt from "./showFileList-editor.vue.js";
204
- import * as Kt from "./showPassword-editor.vue.js";
205
- import * as Qt from "./showSearch-editor.vue.js";
206
- import * as jt from "./showTime-editor.vue.js";
207
- import * as $t from "./size-editor.vue.js";
208
- import * as Jt from "./slot-compontent-editor.vue.js";
209
- import * as Xt from "./startPlaceholder-editor.vue.js";
210
- import * as Yt from "./step-editor.vue.js";
211
- import * as Zt from "./type-editor.vue.js";
212
- import * as _t from "./uploadListType-editor.vue.js";
213
- import * as or from "./uploadTip-editor.vue.js";
214
- import * as er from "./uploadURL-editor.vue.js";
215
- import * as tr from "./useModel-editor.vue.js";
216
- import * as rr from "./validation-editor.vue.js";
217
- import * as ir from "./validationHint-editor.vue.js";
218
- import * as ar from "./withCredentials-editor.vue.js";
219
- const dr = {}, o = /* @__PURE__ */ Object.assign({ "./accept-editor.vue": r, "./actionColumnPosition-editor.vue": i, "./addonAfter-editor.vue": a, "./addonBefore-editor.vue": d, "./allowClear-editor.vue": l, "./appendButton-editor.vue": n, "./appendButtonDisabled-editor.vue": m, "./autoFullWidth-editor.vue": u, "./border-editor.vue": s, "./boxModel-editor.vue": f, "./button-list-editor.vue": p, "./button-position-editor.vue": v, "./buttonIcon-editor.vue": c, "./buttonStyle-editor.vue": E, "./code-editor/code-editor-mode.vue": h, "./columnWidth-editor.vue": b, "./container-data-table/customRowEvent/data-table-customRow-editor.vue": g, "./container-data-table/data-table-colorRow-editor.vue": C, "./container-data-table/data-table-customClass-editor.vue": w, "./container-data-table/data-table-dsEnabled-editor.vue": T, "./container-data-table/data-table-pagination-editor.vue": k, "./container-data-table/data-table-rowKey-editor.vue": S, "./container-data-table/data-table-selections-editor.vue": B, "./container-data-table/data-table-showButtonsColumn-editor.vue": D, "./container-data-table/data-table-showIndex-editor.vue": R, "./container-data-table/data-table-stripe-editor.vue": V, "./container-data-table/data-table-tableColumns-editor.vue": y, "./container-data-table/data-table-tableHeight-editor.vue": P, "./container-data-table/data-table-tableSize-editor.vue": F, "./container-data-table/data-table-tableWidth-editor.vue": H, "./container-data-table/data-table-treeDataEnabled-editor.vue": x, "./container-grid-col/grid-col-offset-editor.vue": I, "./container-grid-col/grid-col-pull-editor.vue": L, "./container-grid-col/grid-col-push-editor.vue": O, "./container-grid-col/grid-col-responsive-editor.vue": M, "./container-grid-col/grid-col-span-editor.vue": A, "./container-grid/colHeight-editor.vue": W, "./container-grid/gutter-editor.vue": z, "./container-sub-form/showBlankRow-editor.vue": U, "./container-sub-form/showRowNumber-editor.vue": G, "./container-sub-form/sub-form-labelAlign-editor.vue": q, "./container-tab/tab-customClass-editor.vue": N, "./container-tab/tab-tabBarGutter-editor.vue": K, "./container-tab/tab-tabPosition-editor.vue": Q, "./container-tab/tab-type-editor.vue": j, "./container-table-cell/cellHeight-editor.vue": $, "./container-table-cell/cellWidth-editor.vue": J, "./container-vf-dialog/bodyStyle-editor.vue": X, "./container-vf-dialog/cancelButtonHidden-editor.vue": Y, "./container-vf-dialog/cancelButtonLabel-editor.vue": Z, "./container-vf-dialog/closeOnClickModal-editor.vue": _, "./container-vf-dialog/closeOnPressEscape-editor.vue": oo, "./container-vf-dialog/collapseIcon-editor.vue": eo, "./container-vf-dialog/disabledMode-editor.vue": to, "./container-vf-dialog/formCode-editor.vue": ro, "./container-vf-dialog/fullscreen-editor.vue": io, "./container-vf-dialog/height-editor.vue": ao, "./container-vf-dialog/isCollapse-editor.vue": lo, "./container-vf-dialog/line-height-editor.vue": no, "./container-vf-dialog/okButtonHidden-editor.vue": mo, "./container-vf-dialog/okButtonLabel-editor.vue": uo, "./container-vf-dialog/readMode-editor.vue": so, "./container-vf-dialog/showClose-editor.vue": fo, "./container-vf-dialog/title-editor.vue": po, "./container-vf-dialog/unCollapseIcon-editor.vue": vo, "./container-vf-dialog/width-editor.vue": co, "./container-vf-drawer/vf-drawer-direction-editor.vue": Eo, "./container-vf-drawer/vf-drawer-size-editor.vue": ho, "./customClass-editor.vue": bo, "./customRender-editor.vue": go, "./defaultValue-editor.vue": Co, "./disabled-editor.vue": wo, "./displayStyle-editor.vue": To, "./editable-editor.vue": ko, "./endPlaceholder-editor.vue": So, "./event-handler/onAppendButtonClick-editor.vue": Bo, "./event-handler/onBeforeUpload-editor.vue": Do, "./event-handler/onBlur-editor.vue": Ro, "./event-handler/onCancelButtonClick-editor.vue": Vo, "./event-handler/onCellClick-editor.vue": yo, "./event-handler/onCellDoubleClick-editor.vue": Po, "./event-handler/onChange-editor.vue": Fo, "./event-handler/onCheck-editor.vue": Ho, "./event-handler/onClick-editor.vue": xo, "./event-handler/onClickIcon-editor.vue": Io, "./event-handler/onCreated-editor.vue": Lo, "./event-handler/onCurrentPageChange-editor.vue": Oo, "./event-handler/onDialogBeforeClose-editor.vue": Mo, "./event-handler/onDialogOpened-editor.vue": Ao, "./event-handler/onDisableOperationButton-editor.vue": Wo, "./event-handler/onDrawerBeforeClose-editor.vue": zo, "./event-handler/onDrawerOpened-editor.vue": Uo, "./event-handler/onFileRemove.vue": Go, "./event-handler/onFocus-editor.vue": qo, "./event-handler/onGetOperationButtonLabel-editor.vue": No, "./event-handler/onGetRowClassName-editor.vue": Ko, "./event-handler/onGetSpanMethod-editor.vue": Qo, "./event-handler/onHeaderClick-editor.vue": jo, "./event-handler/onHideOperationButton-editor.vue": $o, "./event-handler/onInput-editor.vue": Jo, "./event-handler/onMenuClick-editor.vue": Xo, "./event-handler/onMounted-editor.vue": Yo, "./event-handler/onOkButtonClick-editor.vue": Zo, "./event-handler/onOperationButtonClick-editor.vue": _o, "./event-handler/onPageSizeChange-editor.vue": oe, "./event-handler/onRemoteQuery-editor.vue": ee, "./event-handler/onRowClick-editor.vue": te, "./event-handler/onRowDoubleClick-editor.vue": re, "./event-handler/onSelectionChange-editor.vue": ie, "./event-handler/onSubFormRowAdd-editor.vue": ae, "./event-handler/onSubFormRowChange-editor.vue": de, "./event-handler/onSubFormRowDelete-editor.vue": le, "./event-handler/onSubFormRowInsert-editor.vue": ne, "./event-handler/onTabClick-editor.vue": me, "./event-handler/onTableChange-editor.vue": ue, "./event-handler/onUploadError-editor.vue": se, "./event-handler/onUploadSuccess-editor.vue": fe, "./event-handler/onValidate-editor.vue": pe, "./event-handler/onVformAdd-editor.vue": ve, "./field-button/circle-editor.vue": ce, "./field-button/danger-editor.vue": Ee, "./field-button/ghost-editor.vue": he, "./field-button/icon-editor.vue": be, "./field-button/plain-editor.vue": ge, "./field-button/round-editor.vue": Ce, "./field-button/shape-editor.vue": we, "./field-button/type-editor.vue": Te, "./field-cascader/cascader-defaultValue-editor.vue": ke, "./field-cascader/cascader-multiple-editor.vue": Se, "./field-checkbox/checkbox-defaultValue-editor.vue": Be, "./field-color/color-defaultValue-editor.vue": De, "./field-date-range/date-range-defaultValue-editor.vue": Re, "./field-date-range/date-range-format-editor.vue": Ve, "./field-date-range/date-range-type-editor.vue": ye, "./field-date-range/date-range-valueFormat-editor.vue": Pe, "./field-date/date-defaultValue-editor.vue": Fe, "./field-date/date-format-editor.vue": He, "./field-date/date-type-editor.vue": xe, "./field-date/date-valueFormat-editor.vue": Ie, "./field-divider/contentPosition-editor.vue": Le, "./field-divider/divider-direction-editor.vue": Oe, "./field-dropdown/dropdown-menuList-editor.vue": Me, "./field-file-upload/file-upload-fileTypes-editor.vue": Ae, "./field-html-text/htmlContent-editor.vue": We, "./field-number/controlsPosition-editor.vue": ze, "./field-number/number-defaultValue-editor.vue": Ue, "./field-picture-upload/picture-upload-fileTypes-editor.vue": Ge, "./field-radio/radio-defaultValue-editor.vue": qe, "./field-rate/allowHalf-editor.vue": Ne, "./field-rate/highThreshold-editor.vue": Ke, "./field-rate/lowThreshold-editor.vue": Qe, "./field-rate/rate-count-editor.vue": je, "./field-rate/rate-defaultValue-editor.vue": $e, "./field-rate/showScore-editor.vue": Je, "./field-rate/showText-editor.vue": Xe, "./field-rich-editor/rich-editor-contentHeight-editor.vue": Ye, "./field-select/mode-editor.vue": Ze, "./field-select/select-defaultValue-editor.vue": _e, "./field-slider/range-editor.vue": ot, "./field-slider/vertical-editor.vue": et, "./field-static-text/textContent-editor.vue": tt, "./field-switch/activeColor-editor.vue": rt, "./field-switch/checkedValue-editor.vue": it, "./field-switch/inactiveColor-editor.vue": at, "./field-switch/switch-defaultValue-editor.vue": dt, "./field-switch/switchWidth-editor.vue": lt, "./field-switch/unCheckedValue-editor.vue": nt, "./field-time-range/time-range-defaultValue-editor.vue": mt, "./field-time-range/time-range-format-editor.vue": ut, "./field-time/time-defaultValue-editor.vue": st, "./field-time/time-format-editor.vue": ft, "./field-tree/tree-data-editor.vue": pt, "./field-treeSelect/treeSelect-treeDefaultExpandAll-editor.vue": vt, "./flex-editor.vue": ct, "./hidden-editor.vue": Et, "./label-editor.vue": ht, "./labelAlign-editor.vue": bt, "./labelHidden-editor.vue": gt, "./labelIconClass-editor.vue": Ct, "./labelIconPosition-editor.vue": wt, "./labelTooltip-editor.vue": Tt, "./labelWidth-editor.vue": kt, "./limit-editor.vue": St, "./loadingPage-editor.vue": Bt, "./max-editor.vue": Dt, "./maxLength-editor.vue": Rt, "./maxSize-editor.vue": Vt, "./min-editor.vue": yt, "./minLength-editor.vue": Pt, "./multiple-editor.vue": Ft, "./multipleSelect-editor.vue": Ht, "./name-editor.vue": xt, "./optionItems-editor.vue": It, "./placeholder-editor.vue": Lt, "./placement-editor.vue": Ot, "./precision-editor.vue": Mt, "./readonly-editor.vue": At, "./required-editor.vue": Wt, "./requiredHint-editor.vue": zt, "./rightSlotCss-editor.vue": Ut, "./rows-editor.vue": Gt, "./showCount-editor.vue": qt, "./showFileList-editor.vue": Nt, "./showPassword-editor.vue": Kt, "./showSearch-editor.vue": Qt, "./showTime-editor.vue": jt, "./size-editor.vue": $t, "./slot-compontent-editor.vue": Jt, "./startPlaceholder-editor.vue": Xt, "./step-editor.vue": Yt, "./type-editor.vue": Zt, "./uploadListType-editor.vue": _t, "./uploadTip-editor.vue": or, "./uploadURL-editor.vue": er, "./useModel-editor.vue": tr, "./validation-editor.vue": rr, "./validationHint-editor.vue": ir, "./withCredentials-editor.vue": ar });
93
+ import * as Uo from "./event-handler/onFocus-editor.vue.js";
94
+ import * as qo from "./event-handler/onGetOperationButtonLabel-editor.vue.js";
95
+ import * as No from "./event-handler/onGetRowClassName-editor.vue.js";
96
+ import * as Ko from "./event-handler/onGetSpanMethod-editor.vue.js";
97
+ import * as Qo from "./event-handler/onHeaderClick-editor.vue.js";
98
+ import * as jo from "./event-handler/onHideOperationButton-editor.vue.js";
99
+ import * as $o from "./event-handler/onInput-editor.vue.js";
100
+ import * as Jo from "./event-handler/onMenuClick-editor.vue.js";
101
+ import * as Xo from "./event-handler/onMounted-editor.vue.js";
102
+ import * as Yo from "./event-handler/onOkButtonClick-editor.vue.js";
103
+ import * as Zo from "./event-handler/onOperationButtonClick-editor.vue.js";
104
+ import * as _o from "./event-handler/onPageSizeChange-editor.vue.js";
105
+ import * as oe from "./event-handler/onRemoteQuery-editor.vue.js";
106
+ import * as ee from "./event-handler/onRowClick-editor.vue.js";
107
+ import * as te from "./event-handler/onRowDoubleClick-editor.vue.js";
108
+ import * as re from "./event-handler/onSelectionChange-editor.vue.js";
109
+ import * as ie from "./event-handler/onSubFormRowAdd-editor.vue.js";
110
+ import * as ae from "./event-handler/onSubFormRowChange-editor.vue.js";
111
+ import * as de from "./event-handler/onSubFormRowDelete-editor.vue.js";
112
+ import * as le from "./event-handler/onSubFormRowInsert-editor.vue.js";
113
+ import * as ne from "./event-handler/onTabClick-editor.vue.js";
114
+ import * as me from "./event-handler/onTableChange-editor.vue.js";
115
+ import * as ue from "./event-handler/onUploadError-editor.vue.js";
116
+ import * as se from "./event-handler/onUploadSuccess-editor.vue.js";
117
+ import * as fe from "./event-handler/onValidate-editor.vue.js";
118
+ import * as pe from "./field-button/circle-editor.vue.js";
119
+ import * as ve from "./field-button/danger-editor.vue.js";
120
+ import * as ce from "./field-button/ghost-editor.vue.js";
121
+ import * as Ee from "./field-button/icon-editor.vue.js";
122
+ import * as he from "./field-button/plain-editor.vue.js";
123
+ import * as be from "./field-button/round-editor.vue.js";
124
+ import * as ge from "./field-button/shape-editor.vue.js";
125
+ import * as Ce from "./field-button/type-editor.vue.js";
126
+ import * as we from "./field-cascader/cascader-defaultValue-editor.vue.js";
127
+ import * as Te from "./field-cascader/cascader-multiple-editor.vue.js";
128
+ import * as ke from "./field-checkbox/checkbox-defaultValue-editor.vue.js";
129
+ import * as Be from "./field-color/color-defaultValue-editor.vue.js";
130
+ import * as De from "./field-date-range/date-range-defaultValue-editor.vue.js";
131
+ import * as Se from "./field-date-range/date-range-format-editor.vue.js";
132
+ import * as Re from "./field-date-range/date-range-type-editor.vue.js";
133
+ import * as Ve from "./field-date-range/date-range-valueFormat-editor.vue.js";
134
+ import * as ye from "./field-date/date-defaultValue-editor.vue.js";
135
+ import * as Pe from "./field-date/date-format-editor.vue.js";
136
+ import * as Fe from "./field-date/date-type-editor.vue.js";
137
+ import * as He from "./field-date/date-valueFormat-editor.vue.js";
138
+ import * as xe from "./field-divider/contentPosition-editor.vue.js";
139
+ import * as Ie from "./field-divider/divider-direction-editor.vue.js";
140
+ import * as Oe from "./field-dropdown/dropdown-menuList-editor.vue.js";
141
+ import * as Me from "./field-file-upload/file-upload-fileTypes-editor.vue.js";
142
+ import * as Le from "./field-html-text/htmlContent-editor.vue.js";
143
+ import * as Ae from "./field-number/controlsPosition-editor.vue.js";
144
+ import * as We from "./field-number/number-defaultValue-editor.vue.js";
145
+ import * as ze from "./field-picture-upload/picture-upload-fileTypes-editor.vue.js";
146
+ import * as Ge from "./field-radio/radio-defaultValue-editor.vue.js";
147
+ import * as Ue from "./field-rate/allowHalf-editor.vue.js";
148
+ import * as qe from "./field-rate/highThreshold-editor.vue.js";
149
+ import * as Ne from "./field-rate/lowThreshold-editor.vue.js";
150
+ import * as Ke from "./field-rate/rate-count-editor.vue.js";
151
+ import * as Qe from "./field-rate/rate-defaultValue-editor.vue.js";
152
+ import * as je from "./field-rate/showScore-editor.vue.js";
153
+ import * as $e from "./field-rate/showText-editor.vue.js";
154
+ import * as Je from "./field-rich-editor/rich-editor-contentHeight-editor.vue.js";
155
+ import * as Xe from "./field-select/mode-editor.vue.js";
156
+ import * as Ye from "./field-select/select-defaultValue-editor.vue.js";
157
+ import * as Ze from "./field-slider/range-editor.vue.js";
158
+ import * as _e from "./field-slider/vertical-editor.vue.js";
159
+ import * as ot from "./field-static-text/textContent-editor.vue.js";
160
+ import * as et from "./field-switch/activeColor-editor.vue.js";
161
+ import * as tt from "./field-switch/checkedValue-editor.vue.js";
162
+ import * as rt from "./field-switch/inactiveColor-editor.vue.js";
163
+ import * as it from "./field-switch/switch-defaultValue-editor.vue.js";
164
+ import * as at from "./field-switch/switchWidth-editor.vue.js";
165
+ import * as dt from "./field-switch/unCheckedValue-editor.vue.js";
166
+ import * as lt from "./field-time-range/time-range-defaultValue-editor.vue.js";
167
+ import * as nt from "./field-time-range/time-range-format-editor.vue.js";
168
+ import * as mt from "./field-time/time-defaultValue-editor.vue.js";
169
+ import * as ut from "./field-time/time-format-editor.vue.js";
170
+ import * as st from "./field-tree/tree-data-editor.vue.js";
171
+ import * as ft from "./field-treeSelect/treeSelect-treeDefaultExpandAll-editor.vue.js";
172
+ import * as pt from "./flex-editor.vue.js";
173
+ import * as vt from "./hidden-editor.vue.js";
174
+ import * as ct from "./label-editor.vue.js";
175
+ import * as Et from "./labelAlign-editor.vue.js";
176
+ import * as ht from "./labelHidden-editor.vue.js";
177
+ import * as bt from "./labelIconClass-editor.vue.js";
178
+ import * as gt from "./labelIconPosition-editor.vue.js";
179
+ import * as Ct from "./labelTooltip-editor.vue.js";
180
+ import * as wt from "./labelWidth-editor.vue.js";
181
+ import * as Tt from "./limit-editor.vue.js";
182
+ import * as kt from "./loadingPage-editor.vue.js";
183
+ import * as Bt from "./max-editor.vue.js";
184
+ import * as Dt from "./maxLength-editor.vue.js";
185
+ import * as St from "./maxSize-editor.vue.js";
186
+ import * as Rt from "./min-editor.vue.js";
187
+ import * as Vt from "./minLength-editor.vue.js";
188
+ import * as yt from "./multiple-editor.vue.js";
189
+ import * as Pt from "./name-editor.vue.js";
190
+ import * as Ft from "./optionItems-editor.vue.js";
191
+ import * as Ht from "./placeholder-editor.vue.js";
192
+ import * as xt from "./placement-editor.vue.js";
193
+ import * as It from "./precision-editor.vue.js";
194
+ import * as Ot from "./readonly-editor.vue.js";
195
+ import * as Mt from "./required-editor.vue.js";
196
+ import * as Lt from "./requiredHint-editor.vue.js";
197
+ import * as At from "./rightSlotCss-editor.vue.js";
198
+ import * as Wt from "./rows-editor.vue.js";
199
+ import * as zt from "./showCount-editor.vue.js";
200
+ import * as Gt from "./showFileList-editor.vue.js";
201
+ import * as Ut from "./showPassword-editor.vue.js";
202
+ import * as qt from "./showSearch-editor.vue.js";
203
+ import * as Nt from "./showTime-editor.vue.js";
204
+ import * as Kt from "./size-editor.vue.js";
205
+ import * as Qt from "./slot-compontent-editor.vue.js";
206
+ import * as jt from "./startPlaceholder-editor.vue.js";
207
+ import * as $t from "./step-editor.vue.js";
208
+ import * as Jt from "./type-editor.vue.js";
209
+ import * as Xt from "./uploadListType-editor.vue.js";
210
+ import * as Yt from "./useModel-editor.vue.js";
211
+ import * as Zt from "./validation-editor.vue.js";
212
+ import * as _t from "./validationHint-editor.vue.js";
213
+ const or = {}, o = /* @__PURE__ */ Object.assign({ "./accept-editor.vue": r, "./actionColumnPosition-editor.vue": i, "./addonAfter-editor.vue": a, "./addonBefore-editor.vue": d, "./allowClear-editor.vue": l, "./appendButton-editor.vue": n, "./appendButtonDisabled-editor.vue": m, "./autoFullWidth-editor.vue": u, "./border-editor.vue": s, "./boxModel-editor.vue": f, "./button-list-editor.vue": p, "./button-position-editor.vue": v, "./buttonIcon-editor.vue": c, "./buttonStyle-editor.vue": E, "./code-editor/code-editor-mode.vue": h, "./columnWidth-editor.vue": b, "./container-data-table/customRowEvent/data-table-customRow-editor.vue": g, "./container-data-table/data-table-colorRow-editor.vue": C, "./container-data-table/data-table-customClass-editor.vue": w, "./container-data-table/data-table-dsEnabled-editor.vue": T, "./container-data-table/data-table-pagination-editor.vue": k, "./container-data-table/data-table-rowKey-editor.vue": B, "./container-data-table/data-table-selections-editor.vue": D, "./container-data-table/data-table-showButtonsColumn-editor.vue": S, "./container-data-table/data-table-showIndex-editor.vue": R, "./container-data-table/data-table-stripe-editor.vue": V, "./container-data-table/data-table-tableColumns-editor.vue": y, "./container-data-table/data-table-tableHeight-editor.vue": P, "./container-data-table/data-table-tableSize-editor.vue": F, "./container-data-table/data-table-tableWidth-editor.vue": H, "./container-data-table/data-table-treeDataEnabled-editor.vue": x, "./container-grid-col/grid-col-offset-editor.vue": I, "./container-grid-col/grid-col-pull-editor.vue": O, "./container-grid-col/grid-col-push-editor.vue": M, "./container-grid-col/grid-col-responsive-editor.vue": L, "./container-grid-col/grid-col-span-editor.vue": A, "./container-grid/colHeight-editor.vue": W, "./container-grid/gutter-editor.vue": z, "./container-sub-form/showBlankRow-editor.vue": G, "./container-sub-form/showRowNumber-editor.vue": U, "./container-sub-form/sub-form-labelAlign-editor.vue": q, "./container-tab/tab-customClass-editor.vue": N, "./container-tab/tab-tabBarGutter-editor.vue": K, "./container-tab/tab-tabPosition-editor.vue": Q, "./container-tab/tab-type-editor.vue": j, "./container-table-cell/cellHeight-editor.vue": $, "./container-table-cell/cellWidth-editor.vue": J, "./container-vf-dialog/bodyStyle-editor.vue": X, "./container-vf-dialog/cancelButtonHidden-editor.vue": Y, "./container-vf-dialog/cancelButtonLabel-editor.vue": Z, "./container-vf-dialog/closeOnClickModal-editor.vue": _, "./container-vf-dialog/closeOnPressEscape-editor.vue": oo, "./container-vf-dialog/collapseIcon-editor.vue": eo, "./container-vf-dialog/disabledMode-editor.vue": to, "./container-vf-dialog/formCode-editor.vue": ro, "./container-vf-dialog/fullscreen-editor.vue": io, "./container-vf-dialog/height-editor.vue": ao, "./container-vf-dialog/isCollapse-editor.vue": lo, "./container-vf-dialog/line-height-editor.vue": no, "./container-vf-dialog/okButtonHidden-editor.vue": mo, "./container-vf-dialog/okButtonLabel-editor.vue": uo, "./container-vf-dialog/readMode-editor.vue": so, "./container-vf-dialog/showClose-editor.vue": fo, "./container-vf-dialog/title-editor.vue": po, "./container-vf-dialog/unCollapseIcon-editor.vue": vo, "./container-vf-dialog/width-editor.vue": co, "./container-vf-drawer/vf-drawer-direction-editor.vue": Eo, "./container-vf-drawer/vf-drawer-size-editor.vue": ho, "./customClass-editor.vue": bo, "./customRender-editor.vue": go, "./defaultValue-editor.vue": Co, "./disabled-editor.vue": wo, "./editable-editor.vue": To, "./endPlaceholder-editor.vue": ko, "./event-handler/onAppendButtonClick-editor.vue": Bo, "./event-handler/onBeforeUpload-editor.vue": Do, "./event-handler/onBlur-editor.vue": So, "./event-handler/onCancelButtonClick-editor.vue": Ro, "./event-handler/onCellClick-editor.vue": Vo, "./event-handler/onCellDoubleClick-editor.vue": yo, "./event-handler/onChange-editor.vue": Po, "./event-handler/onCheck-editor.vue": Fo, "./event-handler/onClick-editor.vue": Ho, "./event-handler/onClickIcon-editor.vue": xo, "./event-handler/onCreated-editor.vue": Io, "./event-handler/onCurrentPageChange-editor.vue": Oo, "./event-handler/onDialogBeforeClose-editor.vue": Mo, "./event-handler/onDialogOpened-editor.vue": Lo, "./event-handler/onDisableOperationButton-editor.vue": Ao, "./event-handler/onDrawerBeforeClose-editor.vue": Wo, "./event-handler/onDrawerOpened-editor.vue": zo, "./event-handler/onFileRemove.vue": Go, "./event-handler/onFocus-editor.vue": Uo, "./event-handler/onGetOperationButtonLabel-editor.vue": qo, "./event-handler/onGetRowClassName-editor.vue": No, "./event-handler/onGetSpanMethod-editor.vue": Ko, "./event-handler/onHeaderClick-editor.vue": Qo, "./event-handler/onHideOperationButton-editor.vue": jo, "./event-handler/onInput-editor.vue": $o, "./event-handler/onMenuClick-editor.vue": Jo, "./event-handler/onMounted-editor.vue": Xo, "./event-handler/onOkButtonClick-editor.vue": Yo, "./event-handler/onOperationButtonClick-editor.vue": Zo, "./event-handler/onPageSizeChange-editor.vue": _o, "./event-handler/onRemoteQuery-editor.vue": oe, "./event-handler/onRowClick-editor.vue": ee, "./event-handler/onRowDoubleClick-editor.vue": te, "./event-handler/onSelectionChange-editor.vue": re, "./event-handler/onSubFormRowAdd-editor.vue": ie, "./event-handler/onSubFormRowChange-editor.vue": ae, "./event-handler/onSubFormRowDelete-editor.vue": de, "./event-handler/onSubFormRowInsert-editor.vue": le, "./event-handler/onTabClick-editor.vue": ne, "./event-handler/onTableChange-editor.vue": me, "./event-handler/onUploadError-editor.vue": ue, "./event-handler/onUploadSuccess-editor.vue": se, "./event-handler/onValidate-editor.vue": fe, "./field-button/circle-editor.vue": pe, "./field-button/danger-editor.vue": ve, "./field-button/ghost-editor.vue": ce, "./field-button/icon-editor.vue": Ee, "./field-button/plain-editor.vue": he, "./field-button/round-editor.vue": be, "./field-button/shape-editor.vue": ge, "./field-button/type-editor.vue": Ce, "./field-cascader/cascader-defaultValue-editor.vue": we, "./field-cascader/cascader-multiple-editor.vue": Te, "./field-checkbox/checkbox-defaultValue-editor.vue": ke, "./field-color/color-defaultValue-editor.vue": Be, "./field-date-range/date-range-defaultValue-editor.vue": De, "./field-date-range/date-range-format-editor.vue": Se, "./field-date-range/date-range-type-editor.vue": Re, "./field-date-range/date-range-valueFormat-editor.vue": Ve, "./field-date/date-defaultValue-editor.vue": ye, "./field-date/date-format-editor.vue": Pe, "./field-date/date-type-editor.vue": Fe, "./field-date/date-valueFormat-editor.vue": He, "./field-divider/contentPosition-editor.vue": xe, "./field-divider/divider-direction-editor.vue": Ie, "./field-dropdown/dropdown-menuList-editor.vue": Oe, "./field-file-upload/file-upload-fileTypes-editor.vue": Me, "./field-html-text/htmlContent-editor.vue": Le, "./field-number/controlsPosition-editor.vue": Ae, "./field-number/number-defaultValue-editor.vue": We, "./field-picture-upload/picture-upload-fileTypes-editor.vue": ze, "./field-radio/radio-defaultValue-editor.vue": Ge, "./field-rate/allowHalf-editor.vue": Ue, "./field-rate/highThreshold-editor.vue": qe, "./field-rate/lowThreshold-editor.vue": Ne, "./field-rate/rate-count-editor.vue": Ke, "./field-rate/rate-defaultValue-editor.vue": Qe, "./field-rate/showScore-editor.vue": je, "./field-rate/showText-editor.vue": $e, "./field-rich-editor/rich-editor-contentHeight-editor.vue": Je, "./field-select/mode-editor.vue": Xe, "./field-select/select-defaultValue-editor.vue": Ye, "./field-slider/range-editor.vue": Ze, "./field-slider/vertical-editor.vue": _e, "./field-static-text/textContent-editor.vue": ot, "./field-switch/activeColor-editor.vue": et, "./field-switch/checkedValue-editor.vue": tt, "./field-switch/inactiveColor-editor.vue": rt, "./field-switch/switch-defaultValue-editor.vue": it, "./field-switch/switchWidth-editor.vue": at, "./field-switch/unCheckedValue-editor.vue": dt, "./field-time-range/time-range-defaultValue-editor.vue": lt, "./field-time-range/time-range-format-editor.vue": nt, "./field-time/time-defaultValue-editor.vue": mt, "./field-time/time-format-editor.vue": ut, "./field-tree/tree-data-editor.vue": st, "./field-treeSelect/treeSelect-treeDefaultExpandAll-editor.vue": ft, "./flex-editor.vue": pt, "./hidden-editor.vue": vt, "./label-editor.vue": ct, "./labelAlign-editor.vue": Et, "./labelHidden-editor.vue": ht, "./labelIconClass-editor.vue": bt, "./labelIconPosition-editor.vue": gt, "./labelTooltip-editor.vue": Ct, "./labelWidth-editor.vue": wt, "./limit-editor.vue": Tt, "./loadingPage-editor.vue": kt, "./max-editor.vue": Bt, "./maxLength-editor.vue": Dt, "./maxSize-editor.vue": St, "./min-editor.vue": Rt, "./minLength-editor.vue": Vt, "./multiple-editor.vue": yt, "./name-editor.vue": Pt, "./optionItems-editor.vue": Ft, "./placeholder-editor.vue": Ht, "./placement-editor.vue": xt, "./precision-editor.vue": It, "./readonly-editor.vue": Ot, "./required-editor.vue": Mt, "./requiredHint-editor.vue": Lt, "./rightSlotCss-editor.vue": At, "./rows-editor.vue": Wt, "./showCount-editor.vue": zt, "./showFileList-editor.vue": Gt, "./showPassword-editor.vue": Ut, "./showSearch-editor.vue": qt, "./showTime-editor.vue": Nt, "./size-editor.vue": Kt, "./slot-compontent-editor.vue": Qt, "./startPlaceholder-editor.vue": jt, "./step-editor.vue": $t, "./type-editor.vue": Jt, "./uploadListType-editor.vue": Xt, "./useModel-editor.vue": Yt, "./validation-editor.vue": Zt, "./validationHint-editor.vue": _t });
220
214
  for (const e in o) {
221
215
  const t = o[e].default.name;
222
- dr[t] = o[e].default;
216
+ or[t] = o[e].default;
223
217
  }
224
218
  export {
225
- dr as default
219
+ or as default
226
220
  };
@@ -1,9 +1,10 @@
1
1
  import d from "../../../../utils/i18n.js";
2
2
  import { TpfSelectIcon as m } from "tmgc2-share";
3
- import { resolveComponent as o, createElementBlock as p, openBlock as f, Fragment as _, createVNode as e, withCtx as t, createTextVNode as u, toDisplayString as b } from "vue";
3
+ import { resolveComponent as t, createElementBlock as p, openBlock as f, Fragment as _, createVNode as e, withCtx as o, createTextVNode as u, toDisplayString as b } from "vue";
4
4
  import I from "../../../../../_virtual/_plugin-vue_export-helper.js";
5
5
  const g = {
6
6
  name: "labelIconClass-editor",
7
+ inheritAttrs: !1,
7
8
  mixins: [d],
8
9
  components: {
9
10
  TpfSelectIcon: m
@@ -15,12 +16,12 @@ const g = {
15
16
  }
16
17
  };
17
18
  function v(n, l, a, C, x, S) {
18
- const s = o("a-divider"), i = o("a-form-item"), c = o("TpfSelectIcon");
19
+ const s = t("a-divider"), i = t("a-form-item"), c = t("TpfSelectIcon");
19
20
  return f(), p(_, null, [
20
21
  e(i, { "label-width": "0" }, {
21
- default: t(() => [
22
+ default: o(() => [
22
23
  e(s, { class: "custom-divider" }, {
23
- default: t(() => [
24
+ default: o(() => [
24
25
  u(b(n.i18nt("designer.setting.customLabelIcon")), 1)
25
26
  ]),
26
27
  _: 1
@@ -31,7 +32,7 @@ function v(n, l, a, C, x, S) {
31
32
  e(i, {
32
33
  label: n.i18nt("designer.setting.labelIconClass")
33
34
  }, {
34
- default: t(() => [
35
+ default: o(() => [
35
36
  e(c, {
36
37
  value: a.optionModel.labelIconClass,
37
38
  "onUpdate:value": l[0] || (l[0] = (r) => a.optionModel.labelIconClass = r)
@@ -41,7 +42,7 @@ function v(n, l, a, C, x, S) {
41
42
  }, 8, ["label"])
42
43
  ], 64);
43
44
  }
44
- const k = /* @__PURE__ */ I(g, [["render", v]]);
45
+ const h = /* @__PURE__ */ I(g, [["render", v]]);
45
46
  export {
46
- k as default
47
+ h as default
47
48
  };
@@ -1,20 +1,21 @@
1
- import h from "../../../../utils/i18n.js";
2
- import _ from "../option-items-setting.vue.js";
3
- import b from "./propertyMixin.js";
1
+ import b from "../../../../utils/i18n.js";
2
+ import h from "../option-items-setting.vue.js";
3
+ import _ from "./propertyMixin.js";
4
4
  import { getDSByName as M } from "../../../../utils/util.js";
5
5
  import y from "../../../http-editor/index.vue.js";
6
- import { resolveComponent as a, createElementBlock as S, openBlock as s, Fragment as v, createVNode as i, createBlock as m, createCommentVNode as u, withCtx as l, createTextVNode as w, toDisplayString as k } from "vue";
6
+ import { resolveComponent as a, createElementBlock as S, openBlock as s, Fragment as v, createVNode as n, createBlock as m, createCommentVNode as u, withCtx as l, createTextVNode as w, toDisplayString as k } from "vue";
7
7
  import C from "../../../../../_virtual/_plugin-vue_export-helper.js";
8
8
  const E = {
9
9
  name: "optionItems-editor",
10
- mixins: [h, b],
10
+ mixins: [b, _],
11
+ inheritAttrs: !1,
11
12
  props: {
12
13
  designer: Object,
13
14
  selectedWidget: Object,
14
15
  optionModel: Object
15
16
  },
16
17
  components: {
17
- OptionItemsSetting: _,
18
+ OptionItemsSetting: h,
18
19
  HttpEditor: y
19
20
  },
20
21
  data() {
@@ -29,18 +30,18 @@ const E = {
29
30
  },
30
31
  watch: {
31
32
  selectedWidget: {
32
- handler(o, t) {
33
- o && this.loadDataSet(o.options.dsName);
33
+ handler(t, i) {
34
+ t && this.loadDataSet(t.options.dsName);
34
35
  },
35
36
  immediate: !0
36
37
  }
37
38
  },
38
39
  methods: {
39
- loadDataSet(o) {
40
- if (this.dataSetList.length = 0, !o)
40
+ loadDataSet(t) {
41
+ if (this.dataSetList.length = 0, !t)
41
42
  return;
42
- const t = M(this.designer.formConfig, o);
43
- t && t.dataSets && t.dataSets.forEach((e) => {
43
+ const i = M(this.designer.formConfig, t);
44
+ i && i.dataSets && i.dataSets.forEach((e) => {
44
45
  this.dataSetList.push({
45
46
  name: e.name,
46
47
  remark: e.remark
@@ -52,67 +53,67 @@ const E = {
52
53
  }
53
54
  }
54
55
  };
55
- function K(o, t, e, N, D, L) {
56
+ function K(t, i, e, N, D, L) {
56
57
  const g = a("a-divider"), d = a("a-form-item"), r = a("a-input"), c = a("a-switch"), f = a("HttpEditor"), p = a("option-items-setting");
57
58
  return s(), S(v, null, [
58
- i(d, { "label-width": "0" }, {
59
+ n(d, { "label-width": "0" }, {
59
60
  default: l(() => [
60
- i(g, { class: "custom-divider-margin-top" }, {
61
+ n(g, { class: "custom-divider-margin-top" }, {
61
62
  default: l(() => [
62
- w(k(o.i18nt("designer.setting.optionsSetting")), 1)
63
+ w(k(t.i18nt("designer.setting.optionsSetting")), 1)
63
64
  ]),
64
65
  _: 1
65
66
  })
66
67
  ]),
67
68
  _: 1
68
69
  }),
69
- i(d, {
70
- label: o.i18nt("designer.setting.labelKeyName")
70
+ n(d, {
71
+ label: t.i18nt("designer.setting.labelKeyName")
71
72
  }, {
72
73
  default: l(() => [
73
- i(r, {
74
+ n(r, {
74
75
  size: "small",
75
76
  value: e.optionModel.labelKey,
76
- "onUpdate:value": t[0] || (t[0] = (n) => e.optionModel.labelKey = n),
77
+ "onUpdate:value": i[0] || (i[0] = (o) => e.optionModel.labelKey = o),
77
78
  allowClear: ""
78
79
  }, null, 8, ["value"])
79
80
  ]),
80
81
  _: 1
81
82
  }, 8, ["label"]),
82
- i(d, {
83
- label: o.i18nt("designer.setting.valueKeyName")
83
+ n(d, {
84
+ label: t.i18nt("designer.setting.valueKeyName")
84
85
  }, {
85
86
  default: l(() => [
86
- i(r, {
87
+ n(r, {
87
88
  size: "small",
88
89
  value: e.optionModel.valueKey,
89
- "onUpdate:value": t[1] || (t[1] = (n) => e.optionModel.valueKey = n),
90
+ "onUpdate:value": i[1] || (i[1] = (o) => e.optionModel.valueKey = o),
90
91
  allowClear: ""
91
92
  }, null, 8, ["value"])
92
93
  ]),
93
94
  _: 1
94
95
  }, 8, ["label"]),
95
- o.hasConfig("childrenKey") ? (s(), m(d, {
96
+ t.hasConfig("childrenKey") ? (s(), m(d, {
96
97
  key: 0,
97
- label: o.i18nt("designer.setting.childrenKeyName")
98
+ label: t.i18nt("designer.setting.childrenKeyName")
98
99
  }, {
99
100
  default: l(() => [
100
- i(r, {
101
+ n(r, {
101
102
  size: "small",
102
103
  value: e.optionModel.childrenKey,
103
- "onUpdate:value": t[2] || (t[2] = (n) => e.optionModel.childrenKey = n),
104
+ "onUpdate:value": i[2] || (i[2] = (o) => e.optionModel.childrenKey = o),
104
105
  allowClear: ""
105
106
  }, null, 8, ["value"])
106
107
  ]),
107
108
  _: 1
108
109
  }, 8, ["label"])) : u("", !0),
109
- i(d, {
110
- label: o.i18nt("designer.setting.dsEnabled")
110
+ n(d, {
111
+ label: t.i18nt("designer.setting.dsEnabled")
111
112
  }, {
112
113
  default: l(() => [
113
- i(c, {
114
+ n(c, {
114
115
  checked: e.optionModel.dsEnabled,
115
- "onUpdate:checked": t[3] || (t[3] = (n) => e.optionModel.dsEnabled = n)
116
+ "onUpdate:checked": i[3] || (i[3] = (o) => e.optionModel.dsEnabled = o)
116
117
  }, null, 8, ["checked"])
117
118
  ]),
118
119
  _: 1
@@ -121,14 +122,16 @@ function K(o, t, e, N, D, L) {
121
122
  key: 1,
122
123
  designer: e.designer,
123
124
  "selected-widget": e.selectedWidget,
124
- optionModel: e.optionModel
125
- }, null, 8, ["designer", "selected-widget", "optionModel"])) : u("", !0),
125
+ optionModel: e.optionModel,
126
+ label: t.i18nt("designer.setting.dsName"),
127
+ "button-name": t.i18nt("designer.setting.editAction")
128
+ }, null, 8, ["designer", "selected-widget", "optionModel", "label", "button-name"])) : u("", !0),
126
129
  e.optionModel.dsEnabled ? u("", !0) : (s(), m(d, {
127
130
  key: 2,
128
131
  "label-width": "0"
129
132
  }, {
130
133
  default: l(() => [
131
- i(p, {
134
+ n(p, {
132
135
  designer: e.designer,
133
136
  "selected-widget": e.selectedWidget
134
137
  }, null, 8, ["designer", "selected-widget"])