@iframe-resizer/vue 5.4.5-beta.1 → 5.4.5-beta.2

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/README.md CHANGED
@@ -22,4 +22,4 @@ yarn add @iframe-resizer/vue
22
22
 
23
23
  ---
24
24
 
25
- _iframe-resizer version 5.4.5-beta.1 2025-04-08 - 10:00:09.352Z_
25
+ _iframe-resizer version 5.4.5-beta.2 2025-04-08 - 12:05:42.359Z_
@@ -4,6 +4,7 @@
4
4
 
5
5
  <script>
6
6
  import connectResizer from '@iframe-resizer/core'
7
+ import autoConsoleGroup from 'auto-console-group'
7
8
 
8
9
  export default {
9
10
  name: 'IframeResizer',
@@ -57,15 +58,22 @@
57
58
  ),
58
59
  waitForLoad: true,
59
60
 
60
- onClose: () => false, // Disable close methods, use Vue to remove iframe
61
+ onClose: () => {
62
+ consoleGroup.event('onClose')
63
+ consoleGroup.warn('Close method is disabled, use Vue to remove iframe')
64
+ return false
65
+ },
61
66
  onReady: (...args) => self.$emit('onReady', ...args),
62
67
  onMessage: (...args) => self.$emit('onMessage', ...args),
63
68
  onResized: (...args) => self.$emit('onResized', ...args),
64
69
  }
65
70
 
66
71
  const connectWithOptions = connectResizer(options)
67
-
68
72
  self.resizer = connectWithOptions(iframe)
73
+
74
+ const consoleGroup = autoConsoleGroup({ label: `Vue(${iframe.id})` })
75
+ consoleGroup.event('setup')
76
+ consoleGroup.log('Created Vue competent')
69
77
  },
70
78
 
71
79
  beforeUnmount() {
package/index.cjs.js CHANGED
@@ -1,7 +1,7 @@
1
1
  /*!
2
2
  * @preserve
3
3
  *
4
- * @module iframe-resizer/vue 5.4.5-beta.1 (cjs) - 2025-04-08
4
+ * @module iframe-resizer/vue 5.4.5-beta.2 (cjs) - 2025-04-08
5
5
  *
6
6
  * @license GPL-3.0 for non-commercial use only.
7
7
  * For commercial use, you must purchase a license from
@@ -20,6 +20,7 @@
20
20
  'use strict';
21
21
 
22
22
  const connectResizer = require('@iframe-resizer/core');
23
+ const autoConsoleGroup = require('auto-console-group');
23
24
  const vue = require('vue');
24
25
 
25
26
  const script = {
@@ -74,15 +75,22 @@ const script = {
74
75
  ),
75
76
  waitForLoad: true,
76
77
 
77
- onClose: () => false, // Disable close methods, use Vue to remove iframe
78
+ onClose: () => {
79
+ consoleGroup.event('onClose');
80
+ consoleGroup.warn('Close method is disabled, use Vue to remove iframe');
81
+ return false
82
+ },
78
83
  onReady: (...args) => self.$emit('onReady', ...args),
79
84
  onMessage: (...args) => self.$emit('onMessage', ...args),
80
85
  onResized: (...args) => self.$emit('onResized', ...args),
81
86
  };
82
87
 
83
88
  const connectWithOptions = connectResizer(options);
84
-
85
89
  self.resizer = connectWithOptions(iframe);
90
+
91
+ const consoleGroup = autoConsoleGroup({ label: `Vue(${iframe.id})` });
92
+ consoleGroup.event('setup');
93
+ consoleGroup.log('Created Vue competent');
86
94
  },
87
95
 
88
96
  beforeUnmount() {
package/index.esm.js CHANGED
@@ -1,7 +1,7 @@
1
1
  /*!
2
2
  * @preserve
3
3
  *
4
- * @module iframe-resizer/vue 5.4.5-beta.1 (esm) - 2025-04-08
4
+ * @module iframe-resizer/vue 5.4.5-beta.2 (esm) - 2025-04-08
5
5
  *
6
6
  * @license GPL-3.0 for non-commercial use only.
7
7
  * For commercial use, you must purchase a license from
@@ -18,6 +18,7 @@
18
18
 
19
19
 
20
20
  import connectResizer from '@iframe-resizer/core';
21
+ import autoConsoleGroup from 'auto-console-group';
21
22
  import { createElementBlock, openBlock, mergeProps } from 'vue';
22
23
 
23
24
  const script = {
@@ -72,15 +73,22 @@ const script = {
72
73
  ),
73
74
  waitForLoad: true,
74
75
 
75
- onClose: () => false, // Disable close methods, use Vue to remove iframe
76
+ onClose: () => {
77
+ consoleGroup.event('onClose');
78
+ consoleGroup.warn('Close method is disabled, use Vue to remove iframe');
79
+ return false
80
+ },
76
81
  onReady: (...args) => self.$emit('onReady', ...args),
77
82
  onMessage: (...args) => self.$emit('onMessage', ...args),
78
83
  onResized: (...args) => self.$emit('onResized', ...args),
79
84
  };
80
85
 
81
86
  const connectWithOptions = connectResizer(options);
82
-
83
87
  self.resizer = connectWithOptions(iframe);
88
+
89
+ const consoleGroup = autoConsoleGroup({ label: `Vue(${iframe.id})` });
90
+ consoleGroup.event('setup');
91
+ consoleGroup.log('Created Vue competent');
84
92
  },
85
93
 
86
94
  beforeUnmount() {
package/index.umd.js CHANGED
@@ -1,7 +1,7 @@
1
1
  /*!
2
2
  * @preserve
3
3
  *
4
- * @module iframe-resizer/vue 5.4.5-beta.1 (umd) - 2025-04-08
4
+ * @module iframe-resizer/vue 5.4.5-beta.2 (umd) - 2025-04-08
5
5
  *
6
6
  * @license GPL-3.0 for non-commercial use only.
7
7
  * For commercial use, you must purchase a license from
@@ -17,5 +17,5 @@
17
17
  */
18
18
 
19
19
 
20
- !function(e,r){"object"==typeof exports&&"undefined"!=typeof module?module.exports=r(require("@iframe-resizer/core"),require("vue")):"function"==typeof define&&define.amd?define(["@iframe-resizer/core","vue"],r):(e="undefined"!=typeof globalThis?globalThis:e||self).IframeResizer=r(e.connectResizer,e.vue)}(this,(function(e,r){"use strict";const i={name:"IframeResizer",props:{license:{type:String,required:!0},bodyBackground:{type:String},bodyMargin:{type:String},bodyPadding:{type:String},checkOrigin:{type:Boolean,default:!0},direction:{type:String},inPageLinks:{type:Boolean},offset:{type:Number},scrolling:{type:Boolean},tolerance:{type:Number},warningTimeout:{type:Number}},mounted(){const r=this,{iframe:i}=this.$refs,n={...Object.fromEntries(Object.entries(this.$props).filter((([e,r])=>void 0!==r))),waitForLoad:!0,onClose:()=>!1,onReady:(...e)=>r.$emit("onReady",...e),onMessage:(...e)=>r.$emit("onMessage",...e),onResized:(...e)=>r.$emit("onResized",...e)},o=e(n);r.resizer=o(i)},beforeUnmount(){this.resizer?.disconnect()},methods:{moveToAnchor(e){this.resizer.moveToAnchor(e)},resize(){this.resizer.resize()},sendMessage(e,r){this.resizer.sendMessage(e,r)}}};i.render=function(e,i,n,o,t,s){return r.openBlock(),r.createElementBlock("iframe",r.mergeProps({ref:"iframe"},e.$attrs),null,16)},i.__file="./iframe-resizer.vue";return{install(e){e.component("IframeResizer",i)}}}));
20
+ !function(e,r){"object"==typeof exports&&"undefined"!=typeof module?module.exports=r(require("@iframe-resizer/core"),require("auto-console-group"),require("vue")):"function"==typeof define&&define.amd?define(["@iframe-resizer/core","auto-console-group","vue"],r):(e="undefined"!=typeof globalThis?globalThis:e||self).IframeResizer=r(e.connectResizer,e.autoConsoleGroup,e.vue)}(this,(function(e,r,o){"use strict";const i={name:"IframeResizer",props:{license:{type:String,required:!0},bodyBackground:{type:String},bodyMargin:{type:String},bodyPadding:{type:String},checkOrigin:{type:Boolean,default:!0},direction:{type:String},inPageLinks:{type:Boolean},offset:{type:Number},scrolling:{type:Boolean},tolerance:{type:Number},warningTimeout:{type:Number}},mounted(){const o=this,{iframe:i}=this.$refs,t={...Object.fromEntries(Object.entries(this.$props).filter((([e,r])=>void 0!==r))),waitForLoad:!0,onClose:()=>(s.event("onClose"),s.warn("Close method is disabled, use Vue to remove iframe"),!1),onReady:(...e)=>o.$emit("onReady",...e),onMessage:(...e)=>o.$emit("onMessage",...e),onResized:(...e)=>o.$emit("onResized",...e)},n=e(t);o.resizer=n(i);const s=r({label:`Vue(${i.id})`});s.event("setup"),s.log("Created Vue competent")},beforeUnmount(){this.resizer?.disconnect()},methods:{moveToAnchor(e){this.resizer.moveToAnchor(e)},resize(){this.resizer.resize()},sendMessage(e,r){this.resizer.sendMessage(e,r)}}};i.render=function(e,r,i,t,n,s){return o.openBlock(),o.createElementBlock("iframe",o.mergeProps({ref:"iframe"},e.$attrs),null,16)},i.__file="./iframe-resizer.vue";return{install(e){e.component("IframeResizer",i)}}}));
21
21
  //# sourceMappingURL=index.umd.js.map
package/index.umd.js.map CHANGED
@@ -1 +1 @@
1
- {"version":3,"file":"index.umd.js","sources":["../../packages/vue/iframe-resizer.vue","../../packages/vue/iframe-resizer.vue?vue&type=template&id=722fe402&lang.js","../../packages/vue/index.js"],"sourcesContent":["<template>\n <iframe ref=\"iframe\" v-bind=\"$attrs\"></iframe>\n</template>\n\n<script>\n import connectResizer from '@iframe-resizer/core'\n\n export default {\n name: 'IframeResizer',\n\n props: {\n license: {\n type: String,\n required: true\n },\n bodyBackground: {\n type: String,\n },\n bodyMargin: {\n type: String,\n },\n bodyPadding: {\n type: String,\n },\n checkOrigin: {\n type: Boolean,\n default: true,\n },\n direction: {\n type: String,\n },\n inPageLinks: {\n type: Boolean,\n },\n offset: {\n type: Number,\n },\n scrolling: {\n type: Boolean,\n },\n tolerance: {\n type: Number,\n },\n warningTimeout: {\n type: Number,\n },\n },\n \n mounted() {\n const self = this\n const { iframe } = this.$refs\n const options = {\n ...Object.fromEntries(\n Object\n .entries(this.$props)\n .filter(([key, value]) => value !== undefined)\n ),\n waitForLoad: true,\n\n onClose: () => false, // Disable close methods, use Vue to remove iframe\n onReady: (...args) => self.$emit('onReady', ...args),\n onMessage: (...args) => self.$emit('onMessage', ...args),\n onResized: (...args) => self.$emit('onResized', ...args),\n }\n\n const connectWithOptions = connectResizer(options)\n\n self.resizer = connectWithOptions(iframe)\n },\n \n beforeUnmount() {\n this.resizer?.disconnect()\n },\n\n methods: {\n moveToAnchor(anchor) {\n this.resizer.moveToAnchor(anchor)\n },\n resize() {\n this.resizer.resize()\n },\n sendMessage(msg, target) {\n this.resizer.sendMessage(msg, target)\n },\n },\n }\n\n</script>\n","<template>\n <iframe ref=\"iframe\" v-bind=\"$attrs\"></iframe>\n</template>\n\n<script>\n import connectResizer from '@iframe-resizer/core'\n\n export default {\n name: 'IframeResizer',\n\n props: {\n license: {\n type: String,\n required: true\n },\n bodyBackground: {\n type: String,\n },\n bodyMargin: {\n type: String,\n },\n bodyPadding: {\n type: String,\n },\n checkOrigin: {\n type: Boolean,\n default: true,\n },\n direction: {\n type: String,\n },\n inPageLinks: {\n type: Boolean,\n },\n offset: {\n type: Number,\n },\n scrolling: {\n type: Boolean,\n },\n tolerance: {\n type: Number,\n },\n warningTimeout: {\n type: Number,\n },\n },\n \n mounted() {\n const self = this\n const { iframe } = this.$refs\n const options = {\n ...Object.fromEntries(\n Object\n .entries(this.$props)\n .filter(([key, value]) => value !== undefined)\n ),\n waitForLoad: true,\n\n onClose: () => false, // Disable close methods, use Vue to remove iframe\n onReady: (...args) => self.$emit('onReady', ...args),\n onMessage: (...args) => self.$emit('onMessage', ...args),\n onResized: (...args) => self.$emit('onResized', ...args),\n }\n\n const connectWithOptions = connectResizer(options)\n\n self.resizer = connectWithOptions(iframe)\n },\n \n beforeUnmount() {\n this.resizer?.disconnect()\n },\n\n methods: {\n moveToAnchor(anchor) {\n this.resizer.moveToAnchor(anchor)\n },\n resize() {\n this.resizer.resize()\n },\n sendMessage(msg, target) {\n this.resizer.sendMessage(msg, target)\n },\n },\n }\n\n</script>\n","import IframeResizer from './iframe-resizer.vue'\n\nexport default {\n install(Vue) {\n Vue.component('IframeResizer', IframeResizer)\n },\n}\n"],"names":["script","name","props","license","type","String","required","bodyBackground","bodyMargin","bodyPadding","checkOrigin","Boolean","default","direction","inPageLinks","offset","Number","scrolling","tolerance","warningTimeout","mounted","self","this","iframe","$refs","options","Object","fromEntries","entries","$props","filter","key","value","undefined","waitForLoad","onClose","onReady","args","$emit","onMessage","onResized","connectWithOptions","connectResizer","resizer","beforeUnmount","disconnect","methods","moveToAnchor","anchor","resize","sendMessage","msg","target","_openBlock","openBlock","_createElementBlock","_mergeProps","mergeProps","ref","_ctx","$attrs","install","Vue","component","IframeResizer"],"mappings":";;;;;;;;;;;;;;;;;;;oVAOiB,MAAAA,EAAA,CACbC,KAAM,gBAENC,MAAO,CACLC,QAAS,CACPC,KAAMC,OACNC,UAAU,GAEZC,eAAgB,CACdH,KAAMC,QAERG,WAAY,CACVJ,KAAMC,QAERI,YAAa,CACXL,KAAMC,QAERK,YAAa,CACXN,KAAMO,QACNC,SAAS,GAEXC,UAAW,CACTT,KAAMC,QAERS,YAAa,CACXV,KAAMO,SAERI,OAAQ,CACNX,KAAMY,QAERC,UAAW,CACTb,KAAMO,SAERO,UAAW,CACTd,KAAMY,QAERG,eAAgB,CACdf,KAAMY,SAIV,OAAAI,GACE,MAAMC,EAAOC,MACPC,OAAEA,GAAWD,KAAKE,MAClBC,EAAU,IACXC,OAAOC,YACRD,OACGE,QAAQN,KAAKO,QACbC,QAAO,EAAEC,EAAKC,UAAqBC,IAAVD,KAE9BE,aAAa,EAEbC,QAAS,KAAM,EACfC,QAAS,IAAIC,IAAShB,EAAKiB,MAAM,aAAcD,GAC/CE,UAAW,IAAIF,IAAShB,EAAKiB,MAAM,eAAgBD,GACnDG,UAAW,IAAIH,IAAShB,EAAKiB,MAAM,eAAgBD,IAG/CI,EAAqBC,EAAejB,GAE1CJ,EAAKsB,QAAUF,EAAmBlB,EACnC,EAED,aAAAqB,GACEtB,KAAKqB,SAASE,YACf,EAEDC,QAAS,CACP,YAAAC,CAAaC,GACX1B,KAAKqB,QAAQI,aAAaC,EAC3B,EACD,MAAAC,GACE3B,KAAKqB,QAAQM,QACd,EACD,WAAAC,CAAYC,EAAKC,GACf9B,KAAKqB,QAAQO,YAAYC,EAAKC,EAC/B,mCClFL,OAAAC,EAAAC,YAAAC,EAAAA,mBAA6C,SAA7CC,EAA6CC,WAAA,CAArCC,IAAI,UAAiBC,EAAMC,QAAA,KAAA,sDCCtB,CACb,OAAAC,CAAQC,GACNA,EAAIC,UAAU,gBAAiBC,EAChC"}
1
+ {"version":3,"file":"index.umd.js","sources":["../../packages/vue/iframe-resizer.vue","../../packages/vue/iframe-resizer.vue?vue&type=template&id=722fe402&lang.js","../../packages/vue/index.js"],"sourcesContent":["<template>\n <iframe ref=\"iframe\" v-bind=\"$attrs\"></iframe>\n</template>\n\n<script>\n import connectResizer from '@iframe-resizer/core'\n import autoConsoleGroup from 'auto-console-group'\n\n export default {\n name: 'IframeResizer',\n\n props: {\n license: {\n type: String,\n required: true\n },\n bodyBackground: {\n type: String,\n },\n bodyMargin: {\n type: String,\n },\n bodyPadding: {\n type: String,\n },\n checkOrigin: {\n type: Boolean,\n default: true,\n },\n direction: {\n type: String,\n },\n inPageLinks: {\n type: Boolean,\n },\n offset: {\n type: Number,\n },\n scrolling: {\n type: Boolean,\n },\n tolerance: {\n type: Number,\n },\n warningTimeout: {\n type: Number,\n },\n },\n \n mounted() {\n const self = this\n const { iframe } = this.$refs\n const options = {\n ...Object.fromEntries(\n Object\n .entries(this.$props)\n .filter(([key, value]) => value !== undefined)\n ),\n waitForLoad: true,\n\n onClose: () => {\n consoleGroup.event('onClose')\n consoleGroup.warn('Close method is disabled, use Vue to remove iframe')\n return false\n },\n onReady: (...args) => self.$emit('onReady', ...args),\n onMessage: (...args) => self.$emit('onMessage', ...args),\n onResized: (...args) => self.$emit('onResized', ...args),\n }\n\n const connectWithOptions = connectResizer(options)\n self.resizer = connectWithOptions(iframe)\n\n const consoleGroup = autoConsoleGroup({ label: `Vue(${iframe.id})` })\n consoleGroup.event('setup')\n consoleGroup.log('Created Vue competent')\n },\n \n beforeUnmount() {\n this.resizer?.disconnect()\n },\n\n methods: {\n moveToAnchor(anchor) {\n this.resizer.moveToAnchor(anchor)\n },\n resize() {\n this.resizer.resize()\n },\n sendMessage(msg, target) {\n this.resizer.sendMessage(msg, target)\n },\n },\n }\n\n</script>\n","<template>\n <iframe ref=\"iframe\" v-bind=\"$attrs\"></iframe>\n</template>\n\n<script>\n import connectResizer from '@iframe-resizer/core'\n import autoConsoleGroup from 'auto-console-group'\n\n export default {\n name: 'IframeResizer',\n\n props: {\n license: {\n type: String,\n required: true\n },\n bodyBackground: {\n type: String,\n },\n bodyMargin: {\n type: String,\n },\n bodyPadding: {\n type: String,\n },\n checkOrigin: {\n type: Boolean,\n default: true,\n },\n direction: {\n type: String,\n },\n inPageLinks: {\n type: Boolean,\n },\n offset: {\n type: Number,\n },\n scrolling: {\n type: Boolean,\n },\n tolerance: {\n type: Number,\n },\n warningTimeout: {\n type: Number,\n },\n },\n \n mounted() {\n const self = this\n const { iframe } = this.$refs\n const options = {\n ...Object.fromEntries(\n Object\n .entries(this.$props)\n .filter(([key, value]) => value !== undefined)\n ),\n waitForLoad: true,\n\n onClose: () => {\n consoleGroup.event('onClose')\n consoleGroup.warn('Close method is disabled, use Vue to remove iframe')\n return false\n },\n onReady: (...args) => self.$emit('onReady', ...args),\n onMessage: (...args) => self.$emit('onMessage', ...args),\n onResized: (...args) => self.$emit('onResized', ...args),\n }\n\n const connectWithOptions = connectResizer(options)\n self.resizer = connectWithOptions(iframe)\n\n const consoleGroup = autoConsoleGroup({ label: `Vue(${iframe.id})` })\n consoleGroup.event('setup')\n consoleGroup.log('Created Vue competent')\n },\n \n beforeUnmount() {\n this.resizer?.disconnect()\n },\n\n methods: {\n moveToAnchor(anchor) {\n this.resizer.moveToAnchor(anchor)\n },\n resize() {\n this.resizer.resize()\n },\n sendMessage(msg, target) {\n this.resizer.sendMessage(msg, target)\n },\n },\n }\n\n</script>\n","import IframeResizer from './iframe-resizer.vue'\n\nexport default {\n install(Vue) {\n Vue.component('IframeResizer', IframeResizer)\n },\n}\n"],"names":["script","name","props","license","type","String","required","bodyBackground","bodyMargin","bodyPadding","checkOrigin","Boolean","default","direction","inPageLinks","offset","Number","scrolling","tolerance","warningTimeout","mounted","self","this","iframe","$refs","options","Object","fromEntries","entries","$props","filter","key","value","undefined","waitForLoad","onClose","consoleGroup","event","warn","onReady","args","$emit","onMessage","onResized","connectWithOptions","connectResizer","resizer","autoConsoleGroup","label","id","log","beforeUnmount","disconnect","methods","moveToAnchor","anchor","resize","sendMessage","msg","target","_openBlock","openBlock","_createElementBlock","_mergeProps","mergeProps","ref","_ctx","$attrs","install","Vue","component","IframeResizer"],"mappings":";;;;;;;;;;;;;;;;;;;4ZAQiB,MAAAA,EAAA,CACbC,KAAM,gBAENC,MAAO,CACLC,QAAS,CACPC,KAAMC,OACNC,UAAU,GAEZC,eAAgB,CACdH,KAAMC,QAERG,WAAY,CACVJ,KAAMC,QAERI,YAAa,CACXL,KAAMC,QAERK,YAAa,CACXN,KAAMO,QACNC,SAAS,GAEXC,UAAW,CACTT,KAAMC,QAERS,YAAa,CACXV,KAAMO,SAERI,OAAQ,CACNX,KAAMY,QAERC,UAAW,CACTb,KAAMO,SAERO,UAAW,CACTd,KAAMY,QAERG,eAAgB,CACdf,KAAMY,SAIV,OAAAI,GACE,MAAMC,EAAOC,MACPC,OAAEA,GAAWD,KAAKE,MAClBC,EAAU,IACXC,OAAOC,YACRD,OACGE,QAAQN,KAAKO,QACbC,QAAO,EAAEC,EAAKC,UAAqBC,IAAVD,KAE9BE,aAAa,EAEbC,QAAS,KACPC,EAAaC,MAAM,WACnBD,EAAaE,KAAK,uDACX,GAETC,QAAS,IAAIC,IAASnB,EAAKoB,MAAM,aAAcD,GAC/CE,UAAW,IAAIF,IAASnB,EAAKoB,MAAM,eAAgBD,GACnDG,UAAW,IAAIH,IAASnB,EAAKoB,MAAM,eAAgBD,IAG/CI,EAAqBC,EAAepB,GAC1CJ,EAAKyB,QAAUF,EAAmBrB,GAElC,MAAMa,EAAeW,EAAiB,CAAEC,MAAO,OAAOzB,EAAO0B,QAC7Db,EAAaC,MAAM,SACnBD,EAAac,IAAI,wBAClB,EAED,aAAAC,GACE7B,KAAKwB,SAASM,YACf,EAEDC,QAAS,CACP,YAAAC,CAAaC,GACXjC,KAAKwB,QAAQQ,aAAaC,EAC3B,EACD,MAAAC,GACElC,KAAKwB,QAAQU,QACd,EACD,WAAAC,CAAYC,EAAKC,GACfrC,KAAKwB,QAAQW,YAAYC,EAAKC,EAC/B,mCC1FL,OAAAC,EAAAC,YAAAC,EAAAA,mBAA6C,SAA7CC,EAA6CC,WAAA,CAArCC,IAAI,UAAiBC,EAAMC,QAAA,KAAA,sDCCtB,CACb,OAAAC,CAAQC,GACNA,EAAIC,UAAU,gBAAiBC,EAChC"}
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@iframe-resizer/vue",
3
- "version": "5.4.5-beta.1",
3
+ "version": "5.4.5-beta.2",
4
4
  "license": "GPL-3.0",
5
5
  "homepage": "https://iframe-resizer.com",
6
6
  "author": {
@@ -44,6 +44,7 @@
44
44
  "vue"
45
45
  ],
46
46
  "dependencies": {
47
- "@iframe-resizer/core": "5.4.5-beta.1"
47
+ "@iframe-resizer/core": "5.4.5-beta.2",
48
+ "auto-console-group": "1.2.5"
48
49
  }
49
50
  }