@farris/ui-vue 1.7.0-beta.2 → 1.7.1-beta.0
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/components/button-group/index.esm.js +62 -62
- package/components/button-group/index.umd.cjs +1 -1
- package/components/combo-list/index.esm.js +96 -92
- package/components/combo-list/index.umd.cjs +1 -1
- package/components/data-view/index.esm.js +823 -823
- package/components/data-view/index.umd.cjs +1 -1
- package/components/expression-editor/index.esm.js +7 -3
- package/components/expression-editor/index.umd.cjs +4 -4
- package/components/filter-condition-editor/index.esm.js +434 -430
- package/components/filter-condition-editor/index.umd.cjs +5 -5
- package/components/order/index.esm.js +7 -3
- package/components/order/index.umd.cjs +1 -1
- package/components/pagination/index.esm.js +70 -70
- package/components/pagination/index.umd.cjs +2 -2
- package/components/response-layout-editor/index.esm.js +8 -0
- package/components/response-layout-editor/index.umd.cjs +1 -1
- package/components/schema-selector/index.esm.js +460 -460
- package/components/schema-selector/index.umd.cjs +1 -1
- package/components/sort-condition-editor/index.esm.js +571 -567
- package/components/sort-condition-editor/index.umd.cjs +5 -5
- package/components/switch/index.esm.js +19 -15
- package/components/switch/index.umd.cjs +2 -2
- package/designer/checkbox-group/index.esm.js +48 -44
- package/designer/checkbox-group/index.umd.cjs +1 -1
- package/designer/data-grid/index.esm.js +14 -14
- package/designer/data-grid/index.umd.cjs +2 -2
- package/designer/data-view/index.esm.js +4 -3
- package/designer/data-view/index.umd.cjs +2 -2
- package/designer/farris-designer.all.esm.js +3 -3
- package/designer/farris-designer.all.umd.cjs +1 -1
- package/farris.all.esm.js +34 -24
- package/farris.all.umd.cjs +25 -25
- package/package.json +1 -1
- package/types/components.d.ts +1 -1
|
@@ -1710,6 +1710,10 @@ const Di = /* @__PURE__ */ new Map([
|
|
|
1710
1710
|
description: "清空事件",
|
|
1711
1711
|
type: "string",
|
|
1712
1712
|
default: ""
|
|
1713
|
+
},
|
|
1714
|
+
"onUpdate:modelValue": {
|
|
1715
|
+
description: "",
|
|
1716
|
+
type: "object"
|
|
1713
1717
|
}
|
|
1714
1718
|
}, $i = [
|
|
1715
1719
|
"type"
|
|
@@ -2212,7 +2216,7 @@ class Yi extends La {
|
|
|
2212
2216
|
super(t, n);
|
|
2213
2217
|
}
|
|
2214
2218
|
getCommonEditorProperties(t) {
|
|
2215
|
-
var n, a, o, i, r;
|
|
2219
|
+
var n, a, o, i, r, s;
|
|
2216
2220
|
return {
|
|
2217
2221
|
viewType: {
|
|
2218
2222
|
visible: !!((n = t.editor) != null && n.multiSelect),
|
|
@@ -2246,10 +2250,10 @@ class Yi extends La {
|
|
|
2246
2250
|
title: "允许编辑",
|
|
2247
2251
|
type: "boolean",
|
|
2248
2252
|
refreshPanelAfterChanged: !0,
|
|
2249
|
-
readonly: !!((i = t.editor) != null && i.multiSelect)
|
|
2253
|
+
readonly: !!((i = t.editor) != null && i.multiSelect) && (((r = t.editor) == null ? void 0 : r.viewType) === "tag" || !t.editor.viewType)
|
|
2250
2254
|
},
|
|
2251
2255
|
enableHighlightSearch: {
|
|
2252
|
-
visible: !!((
|
|
2256
|
+
visible: !!((s = t.editor) != null && s.editable),
|
|
2253
2257
|
description: "编辑状态下启用高亮搜索",
|
|
2254
2258
|
title: "启用高亮搜索",
|
|
2255
2259
|
type: "boolean"
|