@iframe-resizer/vue 5.4.5-beta.2 → 5.4.5-beta.4
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 +1 -1
- package/iframe-resizer.vue +15 -2
- package/index.cjs.js +14 -3
- package/index.esm.js +14 -3
- package/index.umd.js +2 -2
- package/index.umd.js.map +1 -1
- package/package.json +2 -2
package/README.md
CHANGED
package/iframe-resizer.vue
CHANGED
|
@@ -6,6 +6,8 @@
|
|
|
6
6
|
import connectResizer from '@iframe-resizer/core'
|
|
7
7
|
import autoConsoleGroup from 'auto-console-group'
|
|
8
8
|
|
|
9
|
+
const EXPAND = 'expanded'
|
|
10
|
+
|
|
9
11
|
export default {
|
|
10
12
|
name: 'IframeResizer',
|
|
11
13
|
|
|
@@ -30,6 +32,10 @@
|
|
|
30
32
|
direction: {
|
|
31
33
|
type: String,
|
|
32
34
|
},
|
|
35
|
+
log: {
|
|
36
|
+
type: String || Boolean,
|
|
37
|
+
default: false,
|
|
38
|
+
},
|
|
33
39
|
inPageLinks: {
|
|
34
40
|
type: Boolean,
|
|
35
41
|
},
|
|
@@ -68,12 +74,19 @@
|
|
|
68
74
|
onResized: (...args) => self.$emit('onResized', ...args),
|
|
69
75
|
}
|
|
70
76
|
|
|
77
|
+
if (options.log === '') options.log = true
|
|
78
|
+
|
|
71
79
|
const connectWithOptions = connectResizer(options)
|
|
72
80
|
self.resizer = connectWithOptions(iframe)
|
|
73
81
|
|
|
74
|
-
const
|
|
82
|
+
const consoleOptions = {
|
|
83
|
+
label: `vue(${iframe.id})`,
|
|
84
|
+
expand: options.logExpand, // set inside connectResizer
|
|
85
|
+
}
|
|
86
|
+
|
|
87
|
+
const consoleGroup = autoConsoleGroup(consoleOptions)
|
|
75
88
|
consoleGroup.event('setup')
|
|
76
|
-
consoleGroup.log('Created Vue competent')
|
|
89
|
+
if (options.log) consoleGroup.log('Created Vue competent')
|
|
77
90
|
},
|
|
78
91
|
|
|
79
92
|
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.
|
|
4
|
+
* @module iframe-resizer/vue 5.4.5-beta.4 (cjs) - 2025-04-10
|
|
5
5
|
*
|
|
6
6
|
* @license GPL-3.0 for non-commercial use only.
|
|
7
7
|
* For commercial use, you must purchase a license from
|
|
@@ -47,6 +47,10 @@ const script = {
|
|
|
47
47
|
direction: {
|
|
48
48
|
type: String,
|
|
49
49
|
},
|
|
50
|
+
log: {
|
|
51
|
+
type: String || Boolean,
|
|
52
|
+
default: false,
|
|
53
|
+
},
|
|
50
54
|
inPageLinks: {
|
|
51
55
|
type: Boolean,
|
|
52
56
|
},
|
|
@@ -85,12 +89,19 @@ const script = {
|
|
|
85
89
|
onResized: (...args) => self.$emit('onResized', ...args),
|
|
86
90
|
};
|
|
87
91
|
|
|
92
|
+
if (options.log === '') options.log = true;
|
|
93
|
+
|
|
88
94
|
const connectWithOptions = connectResizer(options);
|
|
89
95
|
self.resizer = connectWithOptions(iframe);
|
|
90
96
|
|
|
91
|
-
const
|
|
97
|
+
const consoleOptions = {
|
|
98
|
+
label: `vue(${iframe.id})`,
|
|
99
|
+
expand: options.logExpand, // set inside connectResizer
|
|
100
|
+
};
|
|
101
|
+
|
|
102
|
+
const consoleGroup = autoConsoleGroup(consoleOptions);
|
|
92
103
|
consoleGroup.event('setup');
|
|
93
|
-
consoleGroup.log('Created Vue competent');
|
|
104
|
+
if (options.log) consoleGroup.log('Created Vue competent');
|
|
94
105
|
},
|
|
95
106
|
|
|
96
107
|
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.
|
|
4
|
+
* @module iframe-resizer/vue 5.4.5-beta.4 (esm) - 2025-04-10
|
|
5
5
|
*
|
|
6
6
|
* @license GPL-3.0 for non-commercial use only.
|
|
7
7
|
* For commercial use, you must purchase a license from
|
|
@@ -45,6 +45,10 @@ const script = {
|
|
|
45
45
|
direction: {
|
|
46
46
|
type: String,
|
|
47
47
|
},
|
|
48
|
+
log: {
|
|
49
|
+
type: String || Boolean,
|
|
50
|
+
default: false,
|
|
51
|
+
},
|
|
48
52
|
inPageLinks: {
|
|
49
53
|
type: Boolean,
|
|
50
54
|
},
|
|
@@ -83,12 +87,19 @@ const script = {
|
|
|
83
87
|
onResized: (...args) => self.$emit('onResized', ...args),
|
|
84
88
|
};
|
|
85
89
|
|
|
90
|
+
if (options.log === '') options.log = true;
|
|
91
|
+
|
|
86
92
|
const connectWithOptions = connectResizer(options);
|
|
87
93
|
self.resizer = connectWithOptions(iframe);
|
|
88
94
|
|
|
89
|
-
const
|
|
95
|
+
const consoleOptions = {
|
|
96
|
+
label: `vue(${iframe.id})`,
|
|
97
|
+
expand: options.logExpand, // set inside connectResizer
|
|
98
|
+
};
|
|
99
|
+
|
|
100
|
+
const consoleGroup = autoConsoleGroup(consoleOptions);
|
|
90
101
|
consoleGroup.event('setup');
|
|
91
|
-
consoleGroup.log('Created Vue competent');
|
|
102
|
+
if (options.log) consoleGroup.log('Created Vue competent');
|
|
92
103
|
},
|
|
93
104
|
|
|
94
105
|
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.
|
|
4
|
+
* @module iframe-resizer/vue 5.4.5-beta.4 (umd) - 2025-04-10
|
|
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,
|
|
20
|
+
!function(e,o){"object"==typeof exports&&"undefined"!=typeof module?module.exports=o(require("@iframe-resizer/core"),require("auto-console-group"),require("vue")):"function"==typeof define&&define.amd?define(["@iframe-resizer/core","auto-console-group","vue"],o):(e="undefined"!=typeof globalThis?globalThis:e||self).IframeResizer=o(e.connectResizer,e.autoConsoleGroup,e.vue)}(this,(function(e,o,r){"use strict";const t={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},log:{type:String||Boolean,default:!1},inPageLinks:{type:Boolean},offset:{type:Number},scrolling:{type:Boolean},tolerance:{type:Number},warningTimeout:{type:Number}},mounted(){const r=this,{iframe:t}=this.$refs,n={...Object.fromEntries(Object.entries(this.$props).filter((([e,o])=>void 0!==o))),waitForLoad:!0,onClose:()=>(a.event("onClose"),a.warn("Close method is disabled, use Vue to remove iframe"),!1),onReady:(...e)=>r.$emit("onReady",...e),onMessage:(...e)=>r.$emit("onMessage",...e),onResized:(...e)=>r.$emit("onResized",...e)};""===n.log&&(n.log=!0);const i=e(n);r.resizer=i(t);const s={label:`vue(${t.id})`,expand:n.logExpand},a=o(s);a.event("setup"),n.log&&a.log("Created Vue competent")},beforeUnmount(){this.resizer?.disconnect()},methods:{moveToAnchor(e){this.resizer.moveToAnchor(e)},resize(){this.resizer.resize()},sendMessage(e,o){this.resizer.sendMessage(e,o)}}};t.render=function(e,o,t,n,i,s){return r.openBlock(),r.createElementBlock("iframe",r.mergeProps({ref:"iframe"},e.$attrs),null,16)},t.__file="./iframe-resizer.vue";return{install(e){e.component("IframeResizer",t)}}}));
|
|
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 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
|
|
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 const EXPAND = 'expanded'\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 log: {\n type: String || Boolean,\n default: false,\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 if (options.log === '') options.log = true\n\n const connectWithOptions = connectResizer(options)\n self.resizer = connectWithOptions(iframe)\n\n const consoleOptions = {\n label: `vue(${iframe.id})`,\n expand: options.logExpand, // set inside connectResizer\n }\n\n const consoleGroup = autoConsoleGroup(consoleOptions)\n consoleGroup.event('setup')\n if (options.log) 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 const EXPAND = 'expanded'\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 log: {\n type: String || Boolean,\n default: false,\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 if (options.log === '') options.log = true\n\n const connectWithOptions = connectResizer(options)\n self.resizer = connectWithOptions(iframe)\n\n const consoleOptions = {\n label: `vue(${iframe.id})`,\n expand: options.logExpand, // set inside connectResizer\n }\n\n const consoleGroup = autoConsoleGroup(consoleOptions)\n consoleGroup.event('setup')\n if (options.log) 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","log","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","consoleOptions","label","id","expand","logExpand","autoConsoleGroup","beforeUnmount","disconnect","methods","moveToAnchor","anchor","resize","sendMessage","msg","target","_openBlock","openBlock","_createElementBlock","_mergeProps","mergeProps","ref","_ctx","$attrs","install","Vue","component","IframeResizer"],"mappings":";;;;;;;;;;;;;;;;;;;4ZAUiB,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,IAAK,CACHV,KAAMC,QAAUM,QAChBC,SAAS,GAEXG,YAAa,CACXX,KAAMO,SAERK,OAAQ,CACNZ,KAAMa,QAERC,UAAW,CACTd,KAAMO,SAERQ,UAAW,CACTf,KAAMa,QAERG,eAAgB,CACdhB,KAAMa,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,IAGjC,KAAhBf,EAAQZ,MAAYY,EAAQZ,KAAM,GAEtC,MAAM+B,EAAqBC,EAAepB,GAC1CJ,EAAKyB,QAAUF,EAAmBrB,GAElC,MAAMwB,EAAiB,CACrBC,MAAO,OAAOzB,EAAO0B,MACrBC,OAAQzB,EAAQ0B,WAGZf,EAAegB,EAAiBL,GACtCX,EAAaC,MAAM,SACfZ,EAAQZ,KAAKuB,EAAavB,IAAI,wBACnC,EAED,aAAAwC,GACE/B,KAAKwB,SAASQ,YACf,EAEDC,QAAS,CACP,YAAAC,CAAaC,GACXnC,KAAKwB,QAAQU,aAAaC,EAC3B,EACD,MAAAC,GACEpC,KAAKwB,QAAQY,QACd,EACD,WAAAC,CAAYC,EAAKC,GACfvC,KAAKwB,QAAQa,YAAYC,EAAKC,EAC/B,mCCvGL,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.
|
|
3
|
+
"version": "5.4.5-beta.4",
|
|
4
4
|
"license": "GPL-3.0",
|
|
5
5
|
"homepage": "https://iframe-resizer.com",
|
|
6
6
|
"author": {
|
|
@@ -44,7 +44,7 @@
|
|
|
44
44
|
"vue"
|
|
45
45
|
],
|
|
46
46
|
"dependencies": {
|
|
47
|
-
"@iframe-resizer/core": "5.4.5-beta.
|
|
47
|
+
"@iframe-resizer/core": "5.4.5-beta.4",
|
|
48
48
|
"auto-console-group": "1.2.5"
|
|
49
49
|
}
|
|
50
50
|
}
|