@everchron/ec-shards 16.4.0 → 16.4.1
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.js +13 -0
- package/dist/ec-shards.umd.cjs +1 -1
- package/package.json +1 -1
package/dist/ec-shards.js
CHANGED
|
@@ -12720,6 +12720,12 @@ function sh(e, s, t, a, n, i) {
|
|
|
12720
12720
|
const zk = /* @__PURE__ */ b(th, [["render", sh]]), ih = {
|
|
12721
12721
|
name: "ecs-inplace",
|
|
12722
12722
|
emits: ["update:index"],
|
|
12723
|
+
props: {
|
|
12724
|
+
heightIncrement: {
|
|
12725
|
+
type: Number,
|
|
12726
|
+
default: 0
|
|
12727
|
+
}
|
|
12728
|
+
},
|
|
12723
12729
|
data() {
|
|
12724
12730
|
return {
|
|
12725
12731
|
direction: "right",
|
|
@@ -12736,6 +12742,13 @@ const zk = /* @__PURE__ */ b(th, [["render", sh]]), ih = {
|
|
|
12736
12742
|
return this.slots[this.currentIndex];
|
|
12737
12743
|
}
|
|
12738
12744
|
},
|
|
12745
|
+
watch: {
|
|
12746
|
+
heightIncrement() {
|
|
12747
|
+
this.$nextTick(() => {
|
|
12748
|
+
this.recalculateCurrentHeight();
|
|
12749
|
+
});
|
|
12750
|
+
}
|
|
12751
|
+
},
|
|
12739
12752
|
mounted() {
|
|
12740
12753
|
this.$nextTick(() => {
|
|
12741
12754
|
this.calculateAllHeights(), window.addEventListener("resize", this.handleResize);
|