@plattar/plattar-ar-adapter 1.157.1 → 1.158.1
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/build/es2015/plattar-ar-adapter.js +137 -254
- package/build/es2015/plattar-ar-adapter.min.js +1 -1
- package/build/es2019/plattar-ar-adapter.js +7 -4
- package/build/es2019/plattar-ar-adapter.min.js +1 -1
- package/dist/embed/plattar-embed.js +1 -1
- package/dist/version.d.ts +1 -1
- package/dist/version.js +1 -1
- package/package.json +6 -6
|
@@ -1984,7 +1984,7 @@ class PlattarEmbed extends HTMLElement {
|
|
|
1984
1984
|
attributes: true
|
|
1985
1985
|
});
|
|
1986
1986
|
}
|
|
1987
|
-
const productID = this.hasAttribute("product-id") ? this.getAttribute("product-id") : null;
|
|
1987
|
+
const productID = this.hasAttribute("product-id") && !this.hasAttribute("scene-id") ? this.getAttribute("product-id") : null;
|
|
1988
1988
|
if (productID) {
|
|
1989
1989
|
this._currentType = EmbedType.Legacy;
|
|
1990
1990
|
this._CreateLegacyEmbed();
|
|
@@ -2693,7 +2693,7 @@ exports.Util = Util;
|
|
|
2693
2693
|
},{}],16:[function(require,module,exports){
|
|
2694
2694
|
"use strict";
|
|
2695
2695
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
2696
|
-
exports.default = "1.
|
|
2696
|
+
exports.default = "1.158.1";
|
|
2697
2697
|
|
|
2698
2698
|
},{}],17:[function(require,module,exports){
|
|
2699
2699
|
"use strict";
|
|
@@ -7148,8 +7148,11 @@ const version_1 = __importDefault(require("./version"));
|
|
|
7148
7148
|
console.log("using @plattar/plattar-services v" + version_1.default);
|
|
7149
7149
|
|
|
7150
7150
|
},{"./core/configurator":112,"./core/model-converter":113,"./version":116}],116:[function(require,module,exports){
|
|
7151
|
-
|
|
7152
|
-
|
|
7151
|
+
"use strict";
|
|
7152
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
7153
|
+
exports.default = "1.157.1";
|
|
7154
|
+
|
|
7155
|
+
},{}],117:[function(require,module,exports){
|
|
7153
7156
|
const Util = require("../../util/util");
|
|
7154
7157
|
const ElementController = require("../controllers/element-controller");
|
|
7155
7158
|
const { messenger } = require("@plattar/context-messenger");
|