@everchron/ec-shards 19.7.7 → 19.7.8
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/ec-shards.css +1 -1
- package/dist/ec-shards.js +5 -3
- package/dist/ec-shards.umd.cjs +1 -1
- package/package.json +1 -1
package/dist/ec-shards.js
CHANGED
|
@@ -8062,7 +8062,7 @@ var cl = /* @__PURE__ */ V(il, [["render", sl], ["__scopeId", "data-v-c6e97366"]
|
|
|
8062
8062
|
methods: {
|
|
8063
8063
|
applySelectValue() {
|
|
8064
8064
|
let e = this.$refs.select;
|
|
8065
|
-
!e || this.modelValue
|
|
8065
|
+
!e || this.modelValue == null || (e.value = String(this.modelValue), this.modelValue !== this.currentValue && (this.currentValue = this.modelValue));
|
|
8066
8066
|
},
|
|
8067
8067
|
scheduleDelayedSync(e) {
|
|
8068
8068
|
this._syncTimeouts = e.map((e) => setTimeout(() => this.syncSelectedContent(), e));
|
|
@@ -8082,7 +8082,9 @@ var cl = /* @__PURE__ */ V(il, [["render", sl], ["__scopeId", "data-v-c6e97366"]
|
|
|
8082
8082
|
},
|
|
8083
8083
|
watch: { modelValue(e) {
|
|
8084
8084
|
let t = this.$refs.select;
|
|
8085
|
-
t && (t.value = e
|
|
8085
|
+
t && (t.value = e == null ? "" : String(e));
|
|
8086
|
+
let n = e ?? "";
|
|
8087
|
+
n !== this.currentValue && (this.currentValue = n), this.$nextTick(() => this.syncSelectedContent());
|
|
8086
8088
|
} }
|
|
8087
8089
|
}, fl = [
|
|
8088
8090
|
"disabled",
|
|
@@ -8131,7 +8133,7 @@ function gl(t, n, r, i, a, o) {
|
|
|
8131
8133
|
}, null, 8, ["size"])
|
|
8132
8134
|
], 2);
|
|
8133
8135
|
}
|
|
8134
|
-
var _l = /* @__PURE__ */ V(dl, [["render", gl], ["__scopeId", "data-v-
|
|
8136
|
+
var _l = /* @__PURE__ */ V(dl, [["render", gl], ["__scopeId", "data-v-9b975df8"]]), vl = (e) => e == null, yl = {
|
|
8135
8137
|
name: "ecs-data-grid-head-cell",
|
|
8136
8138
|
emits: [
|
|
8137
8139
|
"resizedWidth",
|