eoss-ui 0.7.36 → 0.7.37
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/lib/eoss-ui.common.js +14 -10
- package/lib/index.js +1 -1
- package/lib/main.js +13 -9
- package/package.json +1 -1
- package/packages/main/src/simplicity/index.vue +8 -1
- package/src/index.js +1 -1
package/lib/main.js
CHANGED
|
@@ -4659,8 +4659,8 @@ render._withStripped = true
|
|
|
4659
4659
|
// EXTERNAL MODULE: ./src/config/image.js
|
|
4660
4660
|
var config_image = __webpack_require__(20);
|
|
4661
4661
|
|
|
4662
|
-
// CONCATENATED MODULE: ./node_modules/vue-loader/lib/loaders/templateLoader.js??vue-loader-options!./node_modules/vue-loader/lib??vue-loader-options!./packages/main/src/simplicity/index.vue?vue&type=template&id=
|
|
4663
|
-
var
|
|
4662
|
+
// CONCATENATED MODULE: ./node_modules/vue-loader/lib/loaders/templateLoader.js??vue-loader-options!./node_modules/vue-loader/lib??vue-loader-options!./packages/main/src/simplicity/index.vue?vue&type=template&id=27df8ff9&scoped=true&
|
|
4663
|
+
var simplicityvue_type_template_id_27df8ff9_scoped_true_render = function () {
|
|
4664
4664
|
var _vm = this
|
|
4665
4665
|
var _h = _vm.$createElement
|
|
4666
4666
|
var _c = _vm._self._c || _h
|
|
@@ -5370,11 +5370,11 @@ var simplicityvue_type_template_id_38ab4370_scoped_true_render = function () {
|
|
|
5370
5370
|
),
|
|
5371
5371
|
])
|
|
5372
5372
|
}
|
|
5373
|
-
var
|
|
5374
|
-
|
|
5373
|
+
var simplicityvue_type_template_id_27df8ff9_scoped_true_staticRenderFns = []
|
|
5374
|
+
simplicityvue_type_template_id_27df8ff9_scoped_true_render._withStripped = true
|
|
5375
5375
|
|
|
5376
5376
|
|
|
5377
|
-
// CONCATENATED MODULE: ./packages/main/src/simplicity/index.vue?vue&type=template&id=
|
|
5377
|
+
// CONCATENATED MODULE: ./packages/main/src/simplicity/index.vue?vue&type=template&id=27df8ff9&scoped=true&
|
|
5378
5378
|
|
|
5379
5379
|
// CONCATENATED MODULE: ./node_modules/vue-loader/lib/loaders/templateLoader.js??vue-loader-options!./node_modules/vue-loader/lib??vue-loader-options!./packages/main/src/simplicity/avatar.vue?vue&type=template&id=e722b45c&scoped=true&
|
|
5380
5380
|
var avatarvue_type_template_id_e722b45c_scoped_true_render = function () {
|
|
@@ -12600,8 +12600,12 @@ var events = [function (tabs, index, that) {
|
|
|
12600
12600
|
if (isIE || tab.method === 'iframe') {
|
|
12601
12601
|
if (arg && arg === 'pageData') {
|
|
12602
12602
|
var iframe = document.getElementById(tab.id || tab.appCode);
|
|
12603
|
+
var source = tab.url;
|
|
12604
|
+
if (source && !util["a" /* default */].startWith(source, ['http', 'https'], true)) {
|
|
12605
|
+
source = location.origin + source.replace('./', '/');
|
|
12606
|
+
}
|
|
12603
12607
|
!iframe && (iframe = document.getElementById(this.iframeId));
|
|
12604
|
-
iframe && iframe.contentWindow.postMessage({ method: 'refresh' },
|
|
12608
|
+
iframe && iframe.contentWindow.postMessage({ method: 'refresh' }, source || '*');
|
|
12605
12609
|
} else {
|
|
12606
12610
|
this.$set(this.tabs[i], 'url', util["a" /* default */].handlerUrl(tab.url));
|
|
12607
12611
|
}
|
|
@@ -13048,11 +13052,11 @@ var events = [function (tabs, index, that) {
|
|
|
13048
13052
|
|
|
13049
13053
|
var simplicity_component = Object(componentNormalizer["a" /* default */])(
|
|
13050
13054
|
src_simplicityvue_type_script_lang_js_,
|
|
13051
|
-
|
|
13052
|
-
|
|
13055
|
+
simplicityvue_type_template_id_27df8ff9_scoped_true_render,
|
|
13056
|
+
simplicityvue_type_template_id_27df8ff9_scoped_true_staticRenderFns,
|
|
13053
13057
|
false,
|
|
13054
13058
|
null,
|
|
13055
|
-
"
|
|
13059
|
+
"27df8ff9",
|
|
13056
13060
|
null
|
|
13057
13061
|
|
|
13058
13062
|
)
|
package/package.json
CHANGED
|
@@ -1814,9 +1814,16 @@ export default {
|
|
|
1814
1814
|
if (isIE || tab.method === 'iframe') {
|
|
1815
1815
|
if (arg && arg === 'pageData') {
|
|
1816
1816
|
let iframe = document.getElementById(tab.id || tab.appCode);
|
|
1817
|
+
let source = tab.url;
|
|
1818
|
+
if (source && !util.startWith(source, ['http', 'https'], true)) {
|
|
1819
|
+
source = location.origin + source.replace('./', '/');
|
|
1820
|
+
}
|
|
1817
1821
|
!iframe && (iframe = document.getElementById(this.iframeId));
|
|
1818
1822
|
iframe &&
|
|
1819
|
-
iframe.contentWindow.postMessage(
|
|
1823
|
+
iframe.contentWindow.postMessage(
|
|
1824
|
+
{ method: 'refresh' },
|
|
1825
|
+
source || '*'
|
|
1826
|
+
);
|
|
1820
1827
|
} else {
|
|
1821
1828
|
this.$set(this.tabs[i], 'url', util.handlerUrl(tab.url));
|
|
1822
1829
|
}
|