@thangdevalone/meeting-grid-layout-vue 1.5.9 → 1.5.11

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/index.cjs CHANGED
@@ -496,8 +496,8 @@ const GridItem = vue.defineComponent({
496
496
  motionV.motion.div,
497
497
  {
498
498
  key: `grid-${props.index}`,
499
- initial: { width: itemWidth, height: itemHeight },
500
- animate: { width: itemWidth, height: itemHeight },
499
+ initial: { width: `${itemWidth}px`, height: `${itemHeight}px` },
500
+ animate: { width: `${itemWidth}px`, height: `${itemHeight}px` },
501
501
  transition,
502
502
  style: {
503
503
  position: "absolute",
package/dist/index.mjs CHANGED
@@ -495,8 +495,8 @@ const GridItem = defineComponent({
495
495
  motion.div,
496
496
  {
497
497
  key: `grid-${props.index}`,
498
- initial: { width: itemWidth, height: itemHeight },
499
- animate: { width: itemWidth, height: itemHeight },
498
+ initial: { width: `${itemWidth}px`, height: `${itemHeight}px` },
499
+ animate: { width: `${itemWidth}px`, height: `${itemHeight}px` },
500
500
  transition,
501
501
  style: {
502
502
  position: "absolute",
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@thangdevalone/meeting-grid-layout-vue",
3
- "version": "1.5.9",
3
+ "version": "1.5.11",
4
4
  "description": "Vue 3 integration for meeting-grid-layout with Motion animations",
5
5
  "type": "module",
6
6
  "main": "./dist/index.cjs",
@@ -43,7 +43,7 @@
43
43
  "dependencies": {
44
44
  "@vueuse/core": "^10.7.0",
45
45
  "motion-v": "^1.0.0",
46
- "@thangdevalone/meeting-grid-layout-core": "1.5.9"
46
+ "@thangdevalone/meeting-grid-layout-core": "1.5.11"
47
47
  },
48
48
  "devDependencies": {
49
49
  "vue": "^3.4.0",