@thinkpixellab-public/px-vue 3.0.24 → 3.0.25

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.
@@ -305,7 +305,7 @@ export default {
305
305
  rowIndex++;
306
306
  }
307
307
 
308
- if (!this.padOrphans && itemIndex > itemCount) {
308
+ if (rows?.length && !this.padOrphans && itemIndex > itemCount) {
309
309
  // remove empty
310
310
  rows[rows.length - 1] = rows[rows.length - 1].filter(sp => {
311
311
  sp.cards = sp.cards.filter(card => !!card);
@@ -664,7 +664,7 @@ export default {
664
664
  },
665
665
  },
666
666
  methods: {
667
- toggleButtonChange(nv) {},
667
+ toggleButtonChange() {},
668
668
  onValidChanged(isValid, id) {
669
669
  this.$set(this.validation, id, isValid);
670
670
  },
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@thinkpixellab-public/px-vue",
3
- "version": "3.0.24",
3
+ "version": "3.0.25",
4
4
  "description": "General purpose Vue components and helpers that can be used across projects.",
5
5
  "author": "Pixel Lab",
6
6
  "license": "MIT",