@plattar/plattar-ar-adapter 1.132.1 → 1.136.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 +538 -382
- package/build/es2015/plattar-ar-adapter.min.js +1 -1
- package/build/es2019/plattar-ar-adapter.js +228 -121
- package/build/es2019/plattar-ar-adapter.min.js +1 -1
- package/dist/ar/scene-ar.js +18 -3
- package/dist/version.d.ts +1 -1
- package/dist/version.js +1 -1
- package/package.json +9 -9
|
@@ -349,8 +349,8 @@ function _typeof(obj) { "@babel/helpers - typeof"; return _typeof = "function" =
|
|
|
349
349
|
"../viewers/reality-viewer": 19,
|
|
350
350
|
"../viewers/scene-viewer": 20,
|
|
351
351
|
"./launcher-ar": 1,
|
|
352
|
-
"@plattar/plattar-analytics":
|
|
353
|
-
"@plattar/plattar-api":
|
|
352
|
+
"@plattar/plattar-analytics": 39,
|
|
353
|
+
"@plattar/plattar-api": 43
|
|
354
354
|
}],
|
|
355
355
|
3: [function (require, module, exports) {
|
|
356
356
|
"use strict";
|
|
@@ -629,8 +629,8 @@ function _typeof(obj) { "@babel/helpers - typeof"; return _typeof = "function" =
|
|
|
629
629
|
"../viewers/reality-viewer": 19,
|
|
630
630
|
"../viewers/scene-viewer": 20,
|
|
631
631
|
"./launcher-ar": 1,
|
|
632
|
-
"@plattar/plattar-analytics":
|
|
633
|
-
"@plattar/plattar-api":
|
|
632
|
+
"@plattar/plattar-analytics": 39,
|
|
633
|
+
"@plattar/plattar-api": 43
|
|
634
634
|
}],
|
|
635
635
|
4: [function (require, module, exports) {
|
|
636
636
|
"use strict";
|
|
@@ -888,24 +888,39 @@ function _typeof(obj) { "@babel/helpers - typeof"; return _typeof = "function" =
|
|
|
888
888
|
key: "_ComposeScene",
|
|
889
889
|
value: function _ComposeScene(scene, output) {
|
|
890
890
|
return new Promise(function (accept, reject) {
|
|
891
|
-
var sceneProducts = scene.relationships.filter(plattar_api_1.SceneProduct);
|
|
891
|
+
var sceneProducts = scene.relationships.filter(plattar_api_1.SceneProduct);
|
|
892
|
+
var sceneModels = scene.relationships.filter(plattar_api_1.SceneModel); // nothing to do if no AR components can be found
|
|
892
893
|
|
|
893
|
-
if (sceneProducts.length <= 0) {
|
|
894
|
+
if (sceneProducts.length + sceneModels.length <= 0) {
|
|
894
895
|
return reject(new Error("SceneAR.ComposeScene() - cannot proceed as scene does not contain AR components"));
|
|
895
896
|
} // define our configurator
|
|
896
897
|
|
|
897
898
|
|
|
898
899
|
var configurator = new plattar_services_1.Configurator();
|
|
899
900
|
configurator.server = plattar_api_1.Server.location().type;
|
|
900
|
-
configurator.output = output;
|
|
901
|
+
configurator.output = output;
|
|
902
|
+
var totalARObjectCount = 0; // add our scene products
|
|
901
903
|
|
|
902
904
|
sceneProducts.forEach(function (sceneProduct) {
|
|
903
905
|
var product = sceneProduct.relationships.find(plattar_api_1.Product);
|
|
904
906
|
|
|
905
|
-
if (product && product.attributes.product_variation_id) {
|
|
907
|
+
if (sceneProduct.attributes.include_in_augment && product && product.attributes.product_variation_id) {
|
|
906
908
|
configurator.addSceneProduct(sceneProduct.id, product.attributes.product_variation_id);
|
|
909
|
+
totalARObjectCount++;
|
|
907
910
|
}
|
|
908
|
-
});
|
|
911
|
+
}); // add our scene models
|
|
912
|
+
|
|
913
|
+
sceneModels.forEach(function (sceneModel) {
|
|
914
|
+
if (sceneModel.attributes.include_in_augment) {
|
|
915
|
+
configurator.addModel(sceneModel.id);
|
|
916
|
+
totalARObjectCount++;
|
|
917
|
+
}
|
|
918
|
+
}); // ensure we have actually added AR objects
|
|
919
|
+
|
|
920
|
+
if (totalARObjectCount <= 0) {
|
|
921
|
+
return reject(new Error("SceneAR.ComposeScene() - cannot proceed as scene does not contain any enabled AR components"));
|
|
922
|
+
}
|
|
923
|
+
|
|
909
924
|
return configurator.get().then(function (result) {
|
|
910
925
|
accept(result.filename);
|
|
911
926
|
})["catch"](reject);
|
|
@@ -933,6 +948,7 @@ function _typeof(obj) { "@babel/helpers - typeof"; return _typeof = "function" =
|
|
|
933
948
|
scene.include(plattar_api_1.Project);
|
|
934
949
|
scene.include(plattar_api_1.SceneProduct);
|
|
935
950
|
scene.include(plattar_api_1.SceneProduct.include(plattar_api_1.Product));
|
|
951
|
+
scene.include(plattar_api_1.SceneModel);
|
|
936
952
|
scene.get().then(function (scene) {
|
|
937
953
|
_this9._SetupAnalytics(scene);
|
|
938
954
|
|
|
@@ -1035,9 +1051,9 @@ function _typeof(obj) { "@babel/helpers - typeof"; return _typeof = "function" =
|
|
|
1035
1051
|
"../viewers/reality-viewer": 19,
|
|
1036
1052
|
"../viewers/scene-viewer": 20,
|
|
1037
1053
|
"./launcher-ar": 1,
|
|
1038
|
-
"@plattar/plattar-analytics":
|
|
1039
|
-
"@plattar/plattar-api":
|
|
1040
|
-
"@plattar/plattar-services":
|
|
1054
|
+
"@plattar/plattar-analytics": 39,
|
|
1055
|
+
"@plattar/plattar-api": 43,
|
|
1056
|
+
"@plattar/plattar-services": 114
|
|
1041
1057
|
}],
|
|
1042
1058
|
6: [function (require, module, exports) {
|
|
1043
1059
|
"use strict";
|
|
@@ -1131,7 +1147,7 @@ function _typeof(obj) { "@babel/helpers - typeof"; return _typeof = "function" =
|
|
|
1131
1147
|
}, {
|
|
1132
1148
|
"../util/util": 15,
|
|
1133
1149
|
"./product-ar": 3,
|
|
1134
|
-
"@plattar/plattar-api":
|
|
1150
|
+
"@plattar/plattar-api": 43
|
|
1135
1151
|
}],
|
|
1136
1152
|
7: [function (require, module, exports) {
|
|
1137
1153
|
"use strict";
|
|
@@ -1473,8 +1489,8 @@ function _typeof(obj) { "@babel/helpers - typeof"; return _typeof = "function" =
|
|
|
1473
1489
|
"../../util/configurator-state": 14,
|
|
1474
1490
|
"../../util/util": 15,
|
|
1475
1491
|
"./plattar-controller": 8,
|
|
1476
|
-
"@plattar/plattar-api":
|
|
1477
|
-
"@plattar/plattar-services":
|
|
1492
|
+
"@plattar/plattar-api": 43,
|
|
1493
|
+
"@plattar/plattar-services": 114
|
|
1478
1494
|
}],
|
|
1479
1495
|
8: [function (require, module, exports) {
|
|
1480
1496
|
"use strict";
|
|
@@ -1699,7 +1715,7 @@ function _typeof(obj) { "@babel/helpers - typeof"; return _typeof = "function" =
|
|
|
1699
1715
|
|
|
1700
1716
|
exports.PlattarController = PlattarController;
|
|
1701
1717
|
}, {
|
|
1702
|
-
"@plattar/plattar-api":
|
|
1718
|
+
"@plattar/plattar-api": 43
|
|
1703
1719
|
}],
|
|
1704
1720
|
9: [function (require, module, exports) {
|
|
1705
1721
|
"use strict";
|
|
@@ -1934,7 +1950,7 @@ function _typeof(obj) { "@babel/helpers - typeof"; return _typeof = "function" =
|
|
|
1934
1950
|
"../../ar/product-ar": 3,
|
|
1935
1951
|
"../../util/util": 15,
|
|
1936
1952
|
"./plattar-controller": 8,
|
|
1937
|
-
"@plattar/plattar-api":
|
|
1953
|
+
"@plattar/plattar-api": 43
|
|
1938
1954
|
}],
|
|
1939
1955
|
10: [function (require, module, exports) {
|
|
1940
1956
|
"use strict";
|
|
@@ -2233,7 +2249,7 @@ function _typeof(obj) { "@babel/helpers - typeof"; return _typeof = "function" =
|
|
|
2233
2249
|
"../../util/configurator-state": 14,
|
|
2234
2250
|
"../../util/util": 15,
|
|
2235
2251
|
"./plattar-controller": 8,
|
|
2236
|
-
"@plattar/plattar-api":
|
|
2252
|
+
"@plattar/plattar-api": 43
|
|
2237
2253
|
}],
|
|
2238
2254
|
11: [function (require, module, exports) {
|
|
2239
2255
|
"use strict";
|
|
@@ -2549,8 +2565,8 @@ function _typeof(obj) { "@babel/helpers - typeof"; return _typeof = "function" =
|
|
|
2549
2565
|
"../../ar/raw-ar": 4,
|
|
2550
2566
|
"../../util/util": 15,
|
|
2551
2567
|
"./plattar-controller": 8,
|
|
2552
|
-
"@plattar/plattar-api":
|
|
2553
|
-
"@plattar/plattar-services":
|
|
2568
|
+
"@plattar/plattar-api": 43,
|
|
2569
|
+
"@plattar/plattar-services": 114
|
|
2554
2570
|
}],
|
|
2555
2571
|
12: [function (require, module, exports) {
|
|
2556
2572
|
"use strict";
|
|
@@ -2773,7 +2789,7 @@ function _typeof(obj) { "@babel/helpers - typeof"; return _typeof = "function" =
|
|
|
2773
2789
|
"./controllers/product-controller": 9,
|
|
2774
2790
|
"./controllers/viewer-controller": 10,
|
|
2775
2791
|
"./controllers/vto-controller": 11,
|
|
2776
|
-
"@plattar/plattar-api":
|
|
2792
|
+
"@plattar/plattar-api": 43
|
|
2777
2793
|
}],
|
|
2778
2794
|
13: [function (require, module, exports) {
|
|
2779
2795
|
"use strict";
|
|
@@ -2926,8 +2942,8 @@ function _typeof(obj) { "@babel/helpers - typeof"; return _typeof = "function" =
|
|
|
2926
2942
|
"./util/configurator-state": 14,
|
|
2927
2943
|
"./util/util": 15,
|
|
2928
2944
|
"./version": 16,
|
|
2929
|
-
"@plattar/plattar-qrcode":
|
|
2930
|
-
"@plattar/plattar-web":
|
|
2945
|
+
"@plattar/plattar-qrcode": 109,
|
|
2946
|
+
"@plattar/plattar-web": 128
|
|
2931
2947
|
}],
|
|
2932
2948
|
14: [function (require, module, exports) {
|
|
2933
2949
|
"use strict";
|
|
@@ -3219,7 +3235,7 @@ function _typeof(obj) { "@babel/helpers - typeof"; return _typeof = "function" =
|
|
|
3219
3235
|
|
|
3220
3236
|
exports.ConfiguratorState = ConfiguratorState;
|
|
3221
3237
|
}, {
|
|
3222
|
-
"@plattar/plattar-api":
|
|
3238
|
+
"@plattar/plattar-api": 43
|
|
3223
3239
|
}],
|
|
3224
3240
|
15: [function (require, module, exports) {
|
|
3225
3241
|
"use strict";
|
|
@@ -3351,7 +3367,7 @@ function _typeof(obj) { "@babel/helpers - typeof"; return _typeof = "function" =
|
|
|
3351
3367
|
Object.defineProperty(exports, "__esModule", {
|
|
3352
3368
|
value: true
|
|
3353
3369
|
});
|
|
3354
|
-
exports["default"] = "1.
|
|
3370
|
+
exports["default"] = "1.136.1";
|
|
3355
3371
|
}, {}],
|
|
3356
3372
|
17: [function (require, module, exports) {
|
|
3357
3373
|
"use strict";
|
|
@@ -4994,6 +5010,11 @@ function _typeof(obj) { "@babel/helpers - typeof"; return _typeof = "function" =
|
|
|
4994
5010
|
value: function push(key, value) {
|
|
4995
5011
|
this._map.set(key, value);
|
|
4996
5012
|
}
|
|
5013
|
+
}, {
|
|
5014
|
+
key: "get",
|
|
5015
|
+
value: function get(key) {
|
|
5016
|
+
return this._map.get(key);
|
|
5017
|
+
}
|
|
4997
5018
|
}, {
|
|
4998
5019
|
key: "data",
|
|
4999
5020
|
get: function get() {
|
|
@@ -5036,7 +5057,7 @@ function _typeof(obj) { "@babel/helpers - typeof"; return _typeof = "function" =
|
|
|
5036
5057
|
|
|
5037
5058
|
exports.AnalyticsData = AnalyticsData;
|
|
5038
5059
|
}, {
|
|
5039
|
-
"../util/util":
|
|
5060
|
+
"../util/util": 41
|
|
5040
5061
|
}],
|
|
5041
5062
|
37: [function (require, module, exports) {
|
|
5042
5063
|
"use strict";
|
|
@@ -5056,6 +5077,8 @@ function _typeof(obj) { "@babel/helpers - typeof"; return _typeof = "function" =
|
|
|
5056
5077
|
|
|
5057
5078
|
var analytics_data_1 = require("./analytics-data");
|
|
5058
5079
|
|
|
5080
|
+
var google_analytics_1 = require("./google/google-analytics");
|
|
5081
|
+
|
|
5059
5082
|
var Analytics = /*#__PURE__*/function () {
|
|
5060
5083
|
function Analytics(applicationID) {
|
|
5061
5084
|
var _this41 = this;
|
|
@@ -5072,6 +5095,7 @@ function _typeof(obj) { "@babel/helpers - typeof"; return _typeof = "function" =
|
|
|
5072
5095
|
this.isBeacon = false;
|
|
5073
5096
|
this._applicationID = applicationID;
|
|
5074
5097
|
this._data = new analytics_data_1.AnalyticsData();
|
|
5098
|
+
this._ga = new google_analytics_1.GoogleAnalytics();
|
|
5075
5099
|
|
|
5076
5100
|
this._handlePageHide = function () {
|
|
5077
5101
|
if (document.visibilityState === "hidden") {
|
|
@@ -5095,6 +5119,11 @@ function _typeof(obj) { "@babel/helpers - typeof"; return _typeof = "function" =
|
|
|
5095
5119
|
}
|
|
5096
5120
|
|
|
5097
5121
|
_createClass(Analytics, [{
|
|
5122
|
+
key: "googleAnalytics",
|
|
5123
|
+
get: function get() {
|
|
5124
|
+
return this._ga;
|
|
5125
|
+
}
|
|
5126
|
+
}, {
|
|
5098
5127
|
key: "query",
|
|
5099
5128
|
value: function query() {
|
|
5100
5129
|
var _this42 = this;
|
|
@@ -5144,6 +5173,8 @@ function _typeof(obj) { "@babel/helpers - typeof"; return _typeof = "function" =
|
|
|
5144
5173
|
accept(result && result.results ? result.results : {});
|
|
5145
5174
|
})["catch"](reject);
|
|
5146
5175
|
}
|
|
5176
|
+
|
|
5177
|
+
_this43.googleAnalytics.write(_this43.event, _this43.data);
|
|
5147
5178
|
});
|
|
5148
5179
|
}
|
|
5149
5180
|
}, {
|
|
@@ -5163,12 +5194,129 @@ function _typeof(obj) { "@babel/helpers - typeof"; return _typeof = "function" =
|
|
|
5163
5194
|
|
|
5164
5195
|
exports.Analytics = Analytics;
|
|
5165
5196
|
}, {
|
|
5166
|
-
"../util/basic-http":
|
|
5167
|
-
"./analytics-data": 36
|
|
5197
|
+
"../util/basic-http": 40,
|
|
5198
|
+
"./analytics-data": 36,
|
|
5199
|
+
"./google/google-analytics": 38
|
|
5168
5200
|
}],
|
|
5169
5201
|
38: [function (require, module, exports) {
|
|
5170
5202
|
"use strict";
|
|
5171
5203
|
|
|
5204
|
+
Object.defineProperty(exports, "__esModule", {
|
|
5205
|
+
value: true
|
|
5206
|
+
});
|
|
5207
|
+
exports.GoogleAnalytics = void 0;
|
|
5208
|
+
|
|
5209
|
+
var GoogleAnalytics = /*#__PURE__*/function () {
|
|
5210
|
+
function GoogleAnalytics() {
|
|
5211
|
+
_classCallCheck(this, GoogleAnalytics);
|
|
5212
|
+
|
|
5213
|
+
this._tokens = new Set();
|
|
5214
|
+
}
|
|
5215
|
+
|
|
5216
|
+
_createClass(GoogleAnalytics, [{
|
|
5217
|
+
key: "addUniversalToken",
|
|
5218
|
+
value: function addUniversalToken(gaToken) {
|
|
5219
|
+
// ensure duplicates not added or processed
|
|
5220
|
+
if (this._tokens.has(gaToken)) {
|
|
5221
|
+
return;
|
|
5222
|
+
}
|
|
5223
|
+
|
|
5224
|
+
this._tokens.add(gaToken);
|
|
5225
|
+
|
|
5226
|
+
var gInstance = gtag;
|
|
5227
|
+
|
|
5228
|
+
if (gInstance) {
|
|
5229
|
+
gInstance("config", gaToken, {
|
|
5230
|
+
"custom_map": {
|
|
5231
|
+
"dimension1": "application_id",
|
|
5232
|
+
"dimension2": "application_title",
|
|
5233
|
+
'dimension3': 'platform'
|
|
5234
|
+
}
|
|
5235
|
+
});
|
|
5236
|
+
gInstance("event", "app_dimension", {
|
|
5237
|
+
"platform": "Viewer"
|
|
5238
|
+
});
|
|
5239
|
+
}
|
|
5240
|
+
}
|
|
5241
|
+
}, {
|
|
5242
|
+
key: "addToken",
|
|
5243
|
+
value: function addToken(gaToken) {
|
|
5244
|
+
// ensure duplicates not added or processed
|
|
5245
|
+
if (this._tokens.has(gaToken)) {
|
|
5246
|
+
return;
|
|
5247
|
+
}
|
|
5248
|
+
|
|
5249
|
+
this._tokens.add(gaToken);
|
|
5250
|
+
|
|
5251
|
+
var gInstance = gtag;
|
|
5252
|
+
|
|
5253
|
+
if (gInstance) {
|
|
5254
|
+
gInstance("config", gaToken, {
|
|
5255
|
+
"custom_map": {
|
|
5256
|
+
"dimension1": "application_id",
|
|
5257
|
+
"dimension2": "application_title"
|
|
5258
|
+
}
|
|
5259
|
+
});
|
|
5260
|
+
}
|
|
5261
|
+
}
|
|
5262
|
+
}, {
|
|
5263
|
+
key: "write",
|
|
5264
|
+
value: function write(event, data) {
|
|
5265
|
+
if (this._tokens.size <= 0) {
|
|
5266
|
+
return;
|
|
5267
|
+
}
|
|
5268
|
+
|
|
5269
|
+
this._tokens.forEach(function (token) {
|
|
5270
|
+
var gInstance = gtag;
|
|
5271
|
+
|
|
5272
|
+
if (gInstance) {
|
|
5273
|
+
gInstance("event", "app_dimension", {
|
|
5274
|
+
"application_id": data.get("applicationId")
|
|
5275
|
+
});
|
|
5276
|
+
gInstance("event", "app_dimension", {
|
|
5277
|
+
"application_title": data.get("applicationTitle")
|
|
5278
|
+
});
|
|
5279
|
+
|
|
5280
|
+
if (event === "track") {
|
|
5281
|
+
var eventCategory = data.get("eventCategory"); // 0
|
|
5282
|
+
|
|
5283
|
+
var eventAction = data.get("eventAction"); // 1
|
|
5284
|
+
|
|
5285
|
+
var eventLabel = data.get("eventLabel"); // 2
|
|
5286
|
+
|
|
5287
|
+
gInstance("event", eventAction, {
|
|
5288
|
+
"send_to": token,
|
|
5289
|
+
"event_category": eventCategory,
|
|
5290
|
+
"event_label": eventLabel
|
|
5291
|
+
});
|
|
5292
|
+
}
|
|
5293
|
+
|
|
5294
|
+
if (event === "pageview") {
|
|
5295
|
+
var _eventCategory = data.get("eventCategory"); // 0
|
|
5296
|
+
|
|
5297
|
+
|
|
5298
|
+
var _eventLabel = data.get("eventLabel"); // 2
|
|
5299
|
+
|
|
5300
|
+
|
|
5301
|
+
gInstance("event", "pageview", {
|
|
5302
|
+
"send_to": token,
|
|
5303
|
+
"event_category": _eventCategory,
|
|
5304
|
+
"event_label": _eventLabel
|
|
5305
|
+
});
|
|
5306
|
+
}
|
|
5307
|
+
}
|
|
5308
|
+
});
|
|
5309
|
+
}
|
|
5310
|
+
}]);
|
|
5311
|
+
|
|
5312
|
+
return GoogleAnalytics;
|
|
5313
|
+
}();
|
|
5314
|
+
|
|
5315
|
+
exports.GoogleAnalytics = GoogleAnalytics;
|
|
5316
|
+
}, {}],
|
|
5317
|
+
39: [function (require, module, exports) {
|
|
5318
|
+
"use strict";
|
|
5319
|
+
|
|
5172
5320
|
var __createBinding = this && this.__createBinding || (Object.create ? function (o, m, k, k2) {
|
|
5173
5321
|
if (k2 === undefined) k2 = k;
|
|
5174
5322
|
var desc = Object.getOwnPropertyDescriptor(m, k);
|
|
@@ -5235,9 +5383,9 @@ function _typeof(obj) { "@babel/helpers - typeof"; return _typeof = "function" =
|
|
|
5235
5383
|
console.log("using @plattar/plattar-analytics v" + version_1["default"]);
|
|
5236
5384
|
}, {
|
|
5237
5385
|
"./analytics/analytics": 37,
|
|
5238
|
-
"./version":
|
|
5386
|
+
"./version": 42
|
|
5239
5387
|
}],
|
|
5240
|
-
|
|
5388
|
+
40: [function (require, module, exports) {
|
|
5241
5389
|
"use strict";
|
|
5242
5390
|
|
|
5243
5391
|
Object.defineProperty(exports, "__esModule", {
|
|
@@ -5323,7 +5471,7 @@ function _typeof(obj) { "@babel/helpers - typeof"; return _typeof = "function" =
|
|
|
5323
5471
|
|
|
5324
5472
|
exports["default"] = BasicHTTP;
|
|
5325
5473
|
}, {}],
|
|
5326
|
-
|
|
5474
|
+
41: [function (require, module, exports) {
|
|
5327
5475
|
"use strict";
|
|
5328
5476
|
|
|
5329
5477
|
Object.defineProperty(exports, "__esModule", {
|
|
@@ -5362,15 +5510,15 @@ function _typeof(obj) { "@babel/helpers - typeof"; return _typeof = "function" =
|
|
|
5362
5510
|
|
|
5363
5511
|
exports.Util = Util;
|
|
5364
5512
|
}, {}],
|
|
5365
|
-
|
|
5513
|
+
42: [function (require, module, exports) {
|
|
5366
5514
|
"use strict";
|
|
5367
5515
|
|
|
5368
5516
|
Object.defineProperty(exports, "__esModule", {
|
|
5369
5517
|
value: true
|
|
5370
5518
|
});
|
|
5371
|
-
exports["default"] = "1.
|
|
5519
|
+
exports["default"] = "1.134.3";
|
|
5372
5520
|
}, {}],
|
|
5373
|
-
|
|
5521
|
+
43: [function (require, module, exports) {
|
|
5374
5522
|
"use strict";
|
|
5375
5523
|
|
|
5376
5524
|
var Server = require("./server/plattar-server.js");
|
|
@@ -5573,67 +5721,67 @@ function _typeof(obj) { "@babel/helpers - typeof"; return _typeof = "function" =
|
|
|
5573
5721
|
version: Version
|
|
5574
5722
|
};
|
|
5575
5723
|
}, {
|
|
5576
|
-
"./server/plattar-server.js":
|
|
5577
|
-
"./types/application.js":
|
|
5578
|
-
"./types/content-pipeline/brief.js":
|
|
5579
|
-
"./types/content-pipeline/comment-brief.js":
|
|
5580
|
-
"./types/content-pipeline/comment-quote.js":
|
|
5581
|
-
"./types/content-pipeline/comment-solution.js":
|
|
5582
|
-
"./types/content-pipeline/folder.js":
|
|
5583
|
-
"./types/content-pipeline/pipeline-user.js":
|
|
5584
|
-
"./types/content-pipeline/quote.js":
|
|
5585
|
-
"./types/content-pipeline/rating.js":
|
|
5586
|
-
"./types/content-pipeline/solution.js":
|
|
5587
|
-
"./types/file/file-audio.js":
|
|
5588
|
-
"./types/file/file-base.js":
|
|
5589
|
-
"./types/file/file-image.js":
|
|
5590
|
-
"./types/file/file-model.js":
|
|
5591
|
-
"./types/file/file-script.js":
|
|
5592
|
-
"./types/file/file-video.js":
|
|
5593
|
-
"./types/misc/application-build.js":
|
|
5594
|
-
"./types/misc/asset-library.js":
|
|
5595
|
-
"./types/misc/async-job.js":
|
|
5596
|
-
"./types/misc/script-event.js":
|
|
5597
|
-
"./types/misc/tag.js":
|
|
5598
|
-
"./types/page/card-base.js":
|
|
5599
|
-
"./types/page/card-button.js":
|
|
5600
|
-
"./types/page/card-html.js":
|
|
5601
|
-
"./types/page/card-iframe.js":
|
|
5602
|
-
"./types/page/card-image.js":
|
|
5603
|
-
"./types/page/card-map.js":
|
|
5604
|
-
"./types/page/card-paragraph.js":
|
|
5605
|
-
"./types/page/card-row.js":
|
|
5606
|
-
"./types/page/card-slider.js":
|
|
5607
|
-
"./types/page/card-title.js":
|
|
5608
|
-
"./types/page/card-video.js":
|
|
5609
|
-
"./types/page/card-youtube.js":
|
|
5610
|
-
"./types/page/page.js":
|
|
5611
|
-
"./types/product/product-annotation.js":
|
|
5612
|
-
"./types/product/product-base.js":
|
|
5613
|
-
"./types/product/product-variation.js":
|
|
5614
|
-
"./types/product/product.js":
|
|
5615
|
-
"./types/scene/scene-annotation.js":
|
|
5616
|
-
"./types/scene/scene-audio.js":
|
|
5617
|
-
"./types/scene/scene-base.js":
|
|
5618
|
-
"./types/scene/scene-button.js":
|
|
5619
|
-
"./types/scene/scene-camera.js":
|
|
5620
|
-
"./types/scene/scene-carousel.js":
|
|
5621
|
-
"./types/scene/scene-image.js":
|
|
5622
|
-
"./types/scene/scene-model.js":
|
|
5623
|
-
"./types/scene/scene-panorama.js":
|
|
5624
|
-
"./types/scene/scene-poller.js":
|
|
5625
|
-
"./types/scene/scene-product.js":
|
|
5626
|
-
"./types/scene/scene-script.js":
|
|
5627
|
-
"./types/scene/scene-shadow.js":
|
|
5628
|
-
"./types/scene/scene-video.js":
|
|
5629
|
-
"./types/scene/scene-volumetric.js":
|
|
5630
|
-
"./types/scene/scene-youtube.js":
|
|
5631
|
-
"./types/scene/scene.js":
|
|
5632
|
-
"./types/trigger/trigger-image.js":
|
|
5633
|
-
"./util/plattar-util.js":
|
|
5634
|
-
"./version":
|
|
5724
|
+
"./server/plattar-server.js": 45,
|
|
5725
|
+
"./types/application.js": 46,
|
|
5726
|
+
"./types/content-pipeline/brief.js": 47,
|
|
5727
|
+
"./types/content-pipeline/comment-brief.js": 48,
|
|
5728
|
+
"./types/content-pipeline/comment-quote.js": 49,
|
|
5729
|
+
"./types/content-pipeline/comment-solution.js": 50,
|
|
5730
|
+
"./types/content-pipeline/folder.js": 51,
|
|
5731
|
+
"./types/content-pipeline/pipeline-user.js": 52,
|
|
5732
|
+
"./types/content-pipeline/quote.js": 53,
|
|
5733
|
+
"./types/content-pipeline/rating.js": 54,
|
|
5734
|
+
"./types/content-pipeline/solution.js": 55,
|
|
5735
|
+
"./types/file/file-audio.js": 56,
|
|
5736
|
+
"./types/file/file-base.js": 57,
|
|
5737
|
+
"./types/file/file-image.js": 58,
|
|
5738
|
+
"./types/file/file-model.js": 59,
|
|
5739
|
+
"./types/file/file-script.js": 60,
|
|
5740
|
+
"./types/file/file-video.js": 61,
|
|
5741
|
+
"./types/misc/application-build.js": 65,
|
|
5742
|
+
"./types/misc/asset-library.js": 66,
|
|
5743
|
+
"./types/misc/async-job.js": 67,
|
|
5744
|
+
"./types/misc/script-event.js": 68,
|
|
5745
|
+
"./types/misc/tag.js": 69,
|
|
5746
|
+
"./types/page/card-base.js": 70,
|
|
5747
|
+
"./types/page/card-button.js": 71,
|
|
5748
|
+
"./types/page/card-html.js": 72,
|
|
5749
|
+
"./types/page/card-iframe.js": 73,
|
|
5750
|
+
"./types/page/card-image.js": 74,
|
|
5751
|
+
"./types/page/card-map.js": 75,
|
|
5752
|
+
"./types/page/card-paragraph.js": 76,
|
|
5753
|
+
"./types/page/card-row.js": 77,
|
|
5754
|
+
"./types/page/card-slider.js": 78,
|
|
5755
|
+
"./types/page/card-title.js": 79,
|
|
5756
|
+
"./types/page/card-video.js": 80,
|
|
5757
|
+
"./types/page/card-youtube.js": 81,
|
|
5758
|
+
"./types/page/page.js": 82,
|
|
5759
|
+
"./types/product/product-annotation.js": 83,
|
|
5760
|
+
"./types/product/product-base.js": 84,
|
|
5761
|
+
"./types/product/product-variation.js": 85,
|
|
5762
|
+
"./types/product/product.js": 86,
|
|
5763
|
+
"./types/scene/scene-annotation.js": 87,
|
|
5764
|
+
"./types/scene/scene-audio.js": 88,
|
|
5765
|
+
"./types/scene/scene-base.js": 89,
|
|
5766
|
+
"./types/scene/scene-button.js": 90,
|
|
5767
|
+
"./types/scene/scene-camera.js": 91,
|
|
5768
|
+
"./types/scene/scene-carousel.js": 92,
|
|
5769
|
+
"./types/scene/scene-image.js": 93,
|
|
5770
|
+
"./types/scene/scene-model.js": 94,
|
|
5771
|
+
"./types/scene/scene-panorama.js": 95,
|
|
5772
|
+
"./types/scene/scene-poller.js": 96,
|
|
5773
|
+
"./types/scene/scene-product.js": 97,
|
|
5774
|
+
"./types/scene/scene-script.js": 98,
|
|
5775
|
+
"./types/scene/scene-shadow.js": 99,
|
|
5776
|
+
"./types/scene/scene-video.js": 100,
|
|
5777
|
+
"./types/scene/scene-volumetric.js": 101,
|
|
5778
|
+
"./types/scene/scene-youtube.js": 102,
|
|
5779
|
+
"./types/scene/scene.js": 103,
|
|
5780
|
+
"./types/trigger/trigger-image.js": 104,
|
|
5781
|
+
"./util/plattar-util.js": 105,
|
|
5782
|
+
"./version": 106
|
|
5635
5783
|
}],
|
|
5636
|
-
|
|
5784
|
+
44: [function (require, module, exports) {
|
|
5637
5785
|
var fetch = require("node-fetch");
|
|
5638
5786
|
|
|
5639
5787
|
var PlattarQuery = /*#__PURE__*/function () {
|
|
@@ -6117,10 +6265,10 @@ function _typeof(obj) { "@babel/helpers - typeof"; return _typeof = "function" =
|
|
|
6117
6265
|
|
|
6118
6266
|
module.exports = PlattarQuery;
|
|
6119
6267
|
}, {
|
|
6120
|
-
"../util/plattar-util.js":
|
|
6121
|
-
"node-fetch":
|
|
6268
|
+
"../util/plattar-util.js": 105,
|
|
6269
|
+
"node-fetch": 131
|
|
6122
6270
|
}],
|
|
6123
|
-
|
|
6271
|
+
45: [function (require, module, exports) {
|
|
6124
6272
|
(function (process) {
|
|
6125
6273
|
(function () {
|
|
6126
6274
|
var fetch = require("node-fetch");
|
|
@@ -6342,10 +6490,10 @@ function _typeof(obj) { "@babel/helpers - typeof"; return _typeof = "function" =
|
|
|
6342
6490
|
}).call(this);
|
|
6343
6491
|
}).call(this, require('_process'));
|
|
6344
6492
|
}, {
|
|
6345
|
-
"_process":
|
|
6346
|
-
"node-fetch":
|
|
6493
|
+
"_process": 133,
|
|
6494
|
+
"node-fetch": 131
|
|
6347
6495
|
}],
|
|
6348
|
-
|
|
6496
|
+
46: [function (require, module, exports) {
|
|
6349
6497
|
var PlattarBase = require("./interfaces/plattar-base.js");
|
|
6350
6498
|
|
|
6351
6499
|
var Application = /*#__PURE__*/function (_PlattarBase) {
|
|
@@ -6371,9 +6519,9 @@ function _typeof(obj) { "@babel/helpers - typeof"; return _typeof = "function" =
|
|
|
6371
6519
|
|
|
6372
6520
|
module.exports = Application;
|
|
6373
6521
|
}, {
|
|
6374
|
-
"./interfaces/plattar-base.js":
|
|
6522
|
+
"./interfaces/plattar-base.js": 62
|
|
6375
6523
|
}],
|
|
6376
|
-
|
|
6524
|
+
47: [function (require, module, exports) {
|
|
6377
6525
|
var PlattarBase = require("../interfaces/plattar-base");
|
|
6378
6526
|
|
|
6379
6527
|
var Brief = /*#__PURE__*/function (_PlattarBase2) {
|
|
@@ -6399,9 +6547,9 @@ function _typeof(obj) { "@babel/helpers - typeof"; return _typeof = "function" =
|
|
|
6399
6547
|
|
|
6400
6548
|
module.exports = Brief;
|
|
6401
6549
|
}, {
|
|
6402
|
-
"../interfaces/plattar-base":
|
|
6550
|
+
"../interfaces/plattar-base": 62
|
|
6403
6551
|
}],
|
|
6404
|
-
|
|
6552
|
+
48: [function (require, module, exports) {
|
|
6405
6553
|
var PlattarBase = require("../interfaces/plattar-base");
|
|
6406
6554
|
|
|
6407
6555
|
var CommentBrief = /*#__PURE__*/function (_PlattarBase3) {
|
|
@@ -6427,9 +6575,9 @@ function _typeof(obj) { "@babel/helpers - typeof"; return _typeof = "function" =
|
|
|
6427
6575
|
|
|
6428
6576
|
module.exports = CommentBrief;
|
|
6429
6577
|
}, {
|
|
6430
|
-
"../interfaces/plattar-base":
|
|
6578
|
+
"../interfaces/plattar-base": 62
|
|
6431
6579
|
}],
|
|
6432
|
-
|
|
6580
|
+
49: [function (require, module, exports) {
|
|
6433
6581
|
var PlattarBase = require("../interfaces/plattar-base");
|
|
6434
6582
|
|
|
6435
6583
|
var CommentQuote = /*#__PURE__*/function (_PlattarBase4) {
|
|
@@ -6455,9 +6603,9 @@ function _typeof(obj) { "@babel/helpers - typeof"; return _typeof = "function" =
|
|
|
6455
6603
|
|
|
6456
6604
|
module.exports = CommentQuote;
|
|
6457
6605
|
}, {
|
|
6458
|
-
"../interfaces/plattar-base":
|
|
6606
|
+
"../interfaces/plattar-base": 62
|
|
6459
6607
|
}],
|
|
6460
|
-
|
|
6608
|
+
50: [function (require, module, exports) {
|
|
6461
6609
|
var PlattarBase = require("../interfaces/plattar-base");
|
|
6462
6610
|
|
|
6463
6611
|
var CommentSolution = /*#__PURE__*/function (_PlattarBase5) {
|
|
@@ -6483,9 +6631,9 @@ function _typeof(obj) { "@babel/helpers - typeof"; return _typeof = "function" =
|
|
|
6483
6631
|
|
|
6484
6632
|
module.exports = CommentSolution;
|
|
6485
6633
|
}, {
|
|
6486
|
-
"../interfaces/plattar-base":
|
|
6634
|
+
"../interfaces/plattar-base": 62
|
|
6487
6635
|
}],
|
|
6488
|
-
|
|
6636
|
+
51: [function (require, module, exports) {
|
|
6489
6637
|
var PlattarBase = require("../interfaces/plattar-base");
|
|
6490
6638
|
|
|
6491
6639
|
var Folder = /*#__PURE__*/function (_PlattarBase6) {
|
|
@@ -6511,9 +6659,9 @@ function _typeof(obj) { "@babel/helpers - typeof"; return _typeof = "function" =
|
|
|
6511
6659
|
|
|
6512
6660
|
module.exports = Folder;
|
|
6513
6661
|
}, {
|
|
6514
|
-
"../interfaces/plattar-base":
|
|
6662
|
+
"../interfaces/plattar-base": 62
|
|
6515
6663
|
}],
|
|
6516
|
-
|
|
6664
|
+
52: [function (require, module, exports) {
|
|
6517
6665
|
var PlattarBase = require("../interfaces/plattar-base");
|
|
6518
6666
|
|
|
6519
6667
|
var PipelineUser = /*#__PURE__*/function (_PlattarBase7) {
|
|
@@ -6539,9 +6687,9 @@ function _typeof(obj) { "@babel/helpers - typeof"; return _typeof = "function" =
|
|
|
6539
6687
|
|
|
6540
6688
|
module.exports = PipelineUser;
|
|
6541
6689
|
}, {
|
|
6542
|
-
"../interfaces/plattar-base":
|
|
6690
|
+
"../interfaces/plattar-base": 62
|
|
6543
6691
|
}],
|
|
6544
|
-
|
|
6692
|
+
53: [function (require, module, exports) {
|
|
6545
6693
|
var PlattarBase = require("../interfaces/plattar-base");
|
|
6546
6694
|
|
|
6547
6695
|
var Quote = /*#__PURE__*/function (_PlattarBase8) {
|
|
@@ -6567,9 +6715,9 @@ function _typeof(obj) { "@babel/helpers - typeof"; return _typeof = "function" =
|
|
|
6567
6715
|
|
|
6568
6716
|
module.exports = Quote;
|
|
6569
6717
|
}, {
|
|
6570
|
-
"../interfaces/plattar-base":
|
|
6718
|
+
"../interfaces/plattar-base": 62
|
|
6571
6719
|
}],
|
|
6572
|
-
|
|
6720
|
+
54: [function (require, module, exports) {
|
|
6573
6721
|
var PlattarBase = require("../interfaces/plattar-base");
|
|
6574
6722
|
|
|
6575
6723
|
var Rating = /*#__PURE__*/function (_PlattarBase9) {
|
|
@@ -6595,9 +6743,9 @@ function _typeof(obj) { "@babel/helpers - typeof"; return _typeof = "function" =
|
|
|
6595
6743
|
|
|
6596
6744
|
module.exports = Rating;
|
|
6597
6745
|
}, {
|
|
6598
|
-
"../interfaces/plattar-base":
|
|
6746
|
+
"../interfaces/plattar-base": 62
|
|
6599
6747
|
}],
|
|
6600
|
-
|
|
6748
|
+
55: [function (require, module, exports) {
|
|
6601
6749
|
var PlattarBase = require("../interfaces/plattar-base");
|
|
6602
6750
|
|
|
6603
6751
|
var Solution = /*#__PURE__*/function (_PlattarBase10) {
|
|
@@ -6623,9 +6771,9 @@ function _typeof(obj) { "@babel/helpers - typeof"; return _typeof = "function" =
|
|
|
6623
6771
|
|
|
6624
6772
|
module.exports = Solution;
|
|
6625
6773
|
}, {
|
|
6626
|
-
"../interfaces/plattar-base":
|
|
6774
|
+
"../interfaces/plattar-base": 62
|
|
6627
6775
|
}],
|
|
6628
|
-
|
|
6776
|
+
56: [function (require, module, exports) {
|
|
6629
6777
|
var FileBase = require("./file-base.js");
|
|
6630
6778
|
|
|
6631
6779
|
var FileAudio = /*#__PURE__*/function (_FileBase) {
|
|
@@ -6651,9 +6799,9 @@ function _typeof(obj) { "@babel/helpers - typeof"; return _typeof = "function" =
|
|
|
6651
6799
|
|
|
6652
6800
|
module.exports = FileAudio;
|
|
6653
6801
|
}, {
|
|
6654
|
-
"./file-base.js":
|
|
6802
|
+
"./file-base.js": 57
|
|
6655
6803
|
}],
|
|
6656
|
-
|
|
6804
|
+
57: [function (require, module, exports) {
|
|
6657
6805
|
var PlattarBase = require("../interfaces/plattar-base.js");
|
|
6658
6806
|
|
|
6659
6807
|
var Server = require("../../server/plattar-server.js");
|
|
@@ -6739,14 +6887,14 @@ function _typeof(obj) { "@babel/helpers - typeof"; return _typeof = "function" =
|
|
|
6739
6887
|
|
|
6740
6888
|
module.exports = FileBase;
|
|
6741
6889
|
}, {
|
|
6742
|
-
"../../server/plattar-server.js":
|
|
6743
|
-
"../interfaces/plattar-base.js":
|
|
6744
|
-
"./file-audio.js":
|
|
6745
|
-
"./file-image.js":
|
|
6746
|
-
"./file-model.js":
|
|
6747
|
-
"./file-video.js":
|
|
6890
|
+
"../../server/plattar-server.js": 45,
|
|
6891
|
+
"../interfaces/plattar-base.js": 62,
|
|
6892
|
+
"./file-audio.js": 56,
|
|
6893
|
+
"./file-image.js": 58,
|
|
6894
|
+
"./file-model.js": 59,
|
|
6895
|
+
"./file-video.js": 61
|
|
6748
6896
|
}],
|
|
6749
|
-
|
|
6897
|
+
58: [function (require, module, exports) {
|
|
6750
6898
|
var FileBase = require("./file-base.js");
|
|
6751
6899
|
|
|
6752
6900
|
var FileImage = /*#__PURE__*/function (_FileBase2) {
|
|
@@ -6772,9 +6920,9 @@ function _typeof(obj) { "@babel/helpers - typeof"; return _typeof = "function" =
|
|
|
6772
6920
|
|
|
6773
6921
|
module.exports = FileImage;
|
|
6774
6922
|
}, {
|
|
6775
|
-
"./file-base.js":
|
|
6923
|
+
"./file-base.js": 57
|
|
6776
6924
|
}],
|
|
6777
|
-
|
|
6925
|
+
59: [function (require, module, exports) {
|
|
6778
6926
|
var FileBase = require("./file-base.js");
|
|
6779
6927
|
|
|
6780
6928
|
var FileModel = /*#__PURE__*/function (_FileBase3) {
|
|
@@ -6800,9 +6948,9 @@ function _typeof(obj) { "@babel/helpers - typeof"; return _typeof = "function" =
|
|
|
6800
6948
|
|
|
6801
6949
|
module.exports = FileModel;
|
|
6802
6950
|
}, {
|
|
6803
|
-
"./file-base.js":
|
|
6951
|
+
"./file-base.js": 57
|
|
6804
6952
|
}],
|
|
6805
|
-
|
|
6953
|
+
60: [function (require, module, exports) {
|
|
6806
6954
|
var FileBase = require("./file-base.js");
|
|
6807
6955
|
|
|
6808
6956
|
var FileScript = /*#__PURE__*/function (_FileBase4) {
|
|
@@ -6828,9 +6976,9 @@ function _typeof(obj) { "@babel/helpers - typeof"; return _typeof = "function" =
|
|
|
6828
6976
|
|
|
6829
6977
|
module.exports = FileScript;
|
|
6830
6978
|
}, {
|
|
6831
|
-
"./file-base.js":
|
|
6979
|
+
"./file-base.js": 57
|
|
6832
6980
|
}],
|
|
6833
|
-
|
|
6981
|
+
61: [function (require, module, exports) {
|
|
6834
6982
|
var FileBase = require("./file-base.js");
|
|
6835
6983
|
|
|
6836
6984
|
var FileVideo = /*#__PURE__*/function (_FileBase5) {
|
|
@@ -6856,9 +7004,9 @@ function _typeof(obj) { "@babel/helpers - typeof"; return _typeof = "function" =
|
|
|
6856
7004
|
|
|
6857
7005
|
module.exports = FileVideo;
|
|
6858
7006
|
}, {
|
|
6859
|
-
"./file-base.js":
|
|
7007
|
+
"./file-base.js": 57
|
|
6860
7008
|
}],
|
|
6861
|
-
|
|
7009
|
+
62: [function (require, module, exports) {
|
|
6862
7010
|
var PlattarObject = require("./plattar-object.js");
|
|
6863
7011
|
|
|
6864
7012
|
var Server = require("../../server/plattar-server.js");
|
|
@@ -6887,10 +7035,10 @@ function _typeof(obj) { "@babel/helpers - typeof"; return _typeof = "function" =
|
|
|
6887
7035
|
|
|
6888
7036
|
module.exports = PlattarBase;
|
|
6889
7037
|
}, {
|
|
6890
|
-
"../../server/plattar-server.js":
|
|
6891
|
-
"./plattar-object.js":
|
|
7038
|
+
"../../server/plattar-server.js": 45,
|
|
7039
|
+
"./plattar-object.js": 64
|
|
6892
7040
|
}],
|
|
6893
|
-
|
|
7041
|
+
63: [function (require, module, exports) {
|
|
6894
7042
|
/**
|
|
6895
7043
|
* Handles the list of relationships for the provided object
|
|
6896
7044
|
*/
|
|
@@ -7026,9 +7174,9 @@ function _typeof(obj) { "@babel/helpers - typeof"; return _typeof = "function" =
|
|
|
7026
7174
|
|
|
7027
7175
|
module.exports = PlattarObjectRelations;
|
|
7028
7176
|
}, {
|
|
7029
|
-
"../../util/plattar-util.js":
|
|
7177
|
+
"../../util/plattar-util.js": 105
|
|
7030
7178
|
}],
|
|
7031
|
-
|
|
7179
|
+
64: [function (require, module, exports) {
|
|
7032
7180
|
var PlattarQuery = require("../../server/plattar-query.js");
|
|
7033
7181
|
|
|
7034
7182
|
var PlattarObjectRelations = require("./plattar-object-relations.js");
|
|
@@ -7208,10 +7356,10 @@ function _typeof(obj) { "@babel/helpers - typeof"; return _typeof = "function" =
|
|
|
7208
7356
|
|
|
7209
7357
|
module.exports = PlattarObject;
|
|
7210
7358
|
}, {
|
|
7211
|
-
"../../server/plattar-query.js":
|
|
7212
|
-
"./plattar-object-relations.js":
|
|
7359
|
+
"../../server/plattar-query.js": 44,
|
|
7360
|
+
"./plattar-object-relations.js": 63
|
|
7213
7361
|
}],
|
|
7214
|
-
|
|
7362
|
+
65: [function (require, module, exports) {
|
|
7215
7363
|
var PlattarBase = require("../interfaces/plattar-base.js");
|
|
7216
7364
|
|
|
7217
7365
|
var ApplicationBuild = /*#__PURE__*/function (_PlattarBase12) {
|
|
@@ -7237,9 +7385,9 @@ function _typeof(obj) { "@babel/helpers - typeof"; return _typeof = "function" =
|
|
|
7237
7385
|
|
|
7238
7386
|
module.exports = ApplicationBuild;
|
|
7239
7387
|
}, {
|
|
7240
|
-
"../interfaces/plattar-base.js":
|
|
7388
|
+
"../interfaces/plattar-base.js": 62
|
|
7241
7389
|
}],
|
|
7242
|
-
|
|
7390
|
+
66: [function (require, module, exports) {
|
|
7243
7391
|
var PlattarBase = require("../interfaces/plattar-base.js");
|
|
7244
7392
|
|
|
7245
7393
|
var AssetLibrary = /*#__PURE__*/function (_PlattarBase13) {
|
|
@@ -7265,9 +7413,9 @@ function _typeof(obj) { "@babel/helpers - typeof"; return _typeof = "function" =
|
|
|
7265
7413
|
|
|
7266
7414
|
module.exports = AssetLibrary;
|
|
7267
7415
|
}, {
|
|
7268
|
-
"../interfaces/plattar-base.js":
|
|
7416
|
+
"../interfaces/plattar-base.js": 62
|
|
7269
7417
|
}],
|
|
7270
|
-
|
|
7418
|
+
67: [function (require, module, exports) {
|
|
7271
7419
|
var PlattarBase = require("../interfaces/plattar-base.js");
|
|
7272
7420
|
|
|
7273
7421
|
var AsyncJob = /*#__PURE__*/function (_PlattarBase14) {
|
|
@@ -7298,9 +7446,9 @@ function _typeof(obj) { "@babel/helpers - typeof"; return _typeof = "function" =
|
|
|
7298
7446
|
|
|
7299
7447
|
module.exports = AsyncJob;
|
|
7300
7448
|
}, {
|
|
7301
|
-
"../interfaces/plattar-base.js":
|
|
7449
|
+
"../interfaces/plattar-base.js": 62
|
|
7302
7450
|
}],
|
|
7303
|
-
|
|
7451
|
+
68: [function (require, module, exports) {
|
|
7304
7452
|
var PlattarBase = require("../interfaces/plattar-base.js");
|
|
7305
7453
|
|
|
7306
7454
|
var ScriptEvent = /*#__PURE__*/function (_PlattarBase15) {
|
|
@@ -7326,9 +7474,9 @@ function _typeof(obj) { "@babel/helpers - typeof"; return _typeof = "function" =
|
|
|
7326
7474
|
|
|
7327
7475
|
module.exports = ScriptEvent;
|
|
7328
7476
|
}, {
|
|
7329
|
-
"../interfaces/plattar-base.js":
|
|
7477
|
+
"../interfaces/plattar-base.js": 62
|
|
7330
7478
|
}],
|
|
7331
|
-
|
|
7479
|
+
69: [function (require, module, exports) {
|
|
7332
7480
|
var PlattarBase = require("../interfaces/plattar-base.js");
|
|
7333
7481
|
|
|
7334
7482
|
var Tag = /*#__PURE__*/function (_PlattarBase16) {
|
|
@@ -7354,9 +7502,9 @@ function _typeof(obj) { "@babel/helpers - typeof"; return _typeof = "function" =
|
|
|
7354
7502
|
|
|
7355
7503
|
module.exports = Tag;
|
|
7356
7504
|
}, {
|
|
7357
|
-
"../interfaces/plattar-base.js":
|
|
7505
|
+
"../interfaces/plattar-base.js": 62
|
|
7358
7506
|
}],
|
|
7359
|
-
|
|
7507
|
+
70: [function (require, module, exports) {
|
|
7360
7508
|
var PlattarBase = require("../interfaces/plattar-base.js");
|
|
7361
7509
|
|
|
7362
7510
|
var Server = require("../../server/plattar-server.js");
|
|
@@ -7414,21 +7562,21 @@ function _typeof(obj) { "@babel/helpers - typeof"; return _typeof = "function" =
|
|
|
7414
7562
|
|
|
7415
7563
|
module.exports = CardBase;
|
|
7416
7564
|
}, {
|
|
7417
|
-
"../../server/plattar-server.js":
|
|
7418
|
-
"../interfaces/plattar-base.js":
|
|
7419
|
-
"./card-button.js":
|
|
7420
|
-
"./card-html.js":
|
|
7421
|
-
"./card-iframe.js":
|
|
7422
|
-
"./card-image.js":
|
|
7423
|
-
"./card-map.js":
|
|
7424
|
-
"./card-paragraph.js":
|
|
7425
|
-
"./card-row.js":
|
|
7426
|
-
"./card-slider.js":
|
|
7427
|
-
"./card-title.js":
|
|
7428
|
-
"./card-video.js":
|
|
7429
|
-
"./card-youtube.js":
|
|
7565
|
+
"../../server/plattar-server.js": 45,
|
|
7566
|
+
"../interfaces/plattar-base.js": 62,
|
|
7567
|
+
"./card-button.js": 71,
|
|
7568
|
+
"./card-html.js": 72,
|
|
7569
|
+
"./card-iframe.js": 73,
|
|
7570
|
+
"./card-image.js": 74,
|
|
7571
|
+
"./card-map.js": 75,
|
|
7572
|
+
"./card-paragraph.js": 76,
|
|
7573
|
+
"./card-row.js": 77,
|
|
7574
|
+
"./card-slider.js": 78,
|
|
7575
|
+
"./card-title.js": 79,
|
|
7576
|
+
"./card-video.js": 80,
|
|
7577
|
+
"./card-youtube.js": 81
|
|
7430
7578
|
}],
|
|
7431
|
-
|
|
7579
|
+
71: [function (require, module, exports) {
|
|
7432
7580
|
var CardBase = require("./card-base.js");
|
|
7433
7581
|
|
|
7434
7582
|
var CardButton = /*#__PURE__*/function (_CardBase) {
|
|
@@ -7454,9 +7602,9 @@ function _typeof(obj) { "@babel/helpers - typeof"; return _typeof = "function" =
|
|
|
7454
7602
|
|
|
7455
7603
|
module.exports = CardButton;
|
|
7456
7604
|
}, {
|
|
7457
|
-
"./card-base.js":
|
|
7605
|
+
"./card-base.js": 70
|
|
7458
7606
|
}],
|
|
7459
|
-
|
|
7607
|
+
72: [function (require, module, exports) {
|
|
7460
7608
|
var CardBase = require("./card-base.js");
|
|
7461
7609
|
|
|
7462
7610
|
var CardHTML = /*#__PURE__*/function (_CardBase2) {
|
|
@@ -7482,9 +7630,9 @@ function _typeof(obj) { "@babel/helpers - typeof"; return _typeof = "function" =
|
|
|
7482
7630
|
|
|
7483
7631
|
module.exports = CardHTML;
|
|
7484
7632
|
}, {
|
|
7485
|
-
"./card-base.js":
|
|
7633
|
+
"./card-base.js": 70
|
|
7486
7634
|
}],
|
|
7487
|
-
|
|
7635
|
+
73: [function (require, module, exports) {
|
|
7488
7636
|
var CardBase = require("./card-base.js");
|
|
7489
7637
|
|
|
7490
7638
|
var CardIFrame = /*#__PURE__*/function (_CardBase3) {
|
|
@@ -7510,9 +7658,9 @@ function _typeof(obj) { "@babel/helpers - typeof"; return _typeof = "function" =
|
|
|
7510
7658
|
|
|
7511
7659
|
module.exports = CardIFrame;
|
|
7512
7660
|
}, {
|
|
7513
|
-
"./card-base.js":
|
|
7661
|
+
"./card-base.js": 70
|
|
7514
7662
|
}],
|
|
7515
|
-
|
|
7663
|
+
74: [function (require, module, exports) {
|
|
7516
7664
|
var CardBase = require("./card-base.js");
|
|
7517
7665
|
|
|
7518
7666
|
var CardImage = /*#__PURE__*/function (_CardBase4) {
|
|
@@ -7538,9 +7686,9 @@ function _typeof(obj) { "@babel/helpers - typeof"; return _typeof = "function" =
|
|
|
7538
7686
|
|
|
7539
7687
|
module.exports = CardImage;
|
|
7540
7688
|
}, {
|
|
7541
|
-
"./card-base.js":
|
|
7689
|
+
"./card-base.js": 70
|
|
7542
7690
|
}],
|
|
7543
|
-
|
|
7691
|
+
75: [function (require, module, exports) {
|
|
7544
7692
|
var CardBase = require("./card-base.js");
|
|
7545
7693
|
|
|
7546
7694
|
var CardMap = /*#__PURE__*/function (_CardBase5) {
|
|
@@ -7566,9 +7714,9 @@ function _typeof(obj) { "@babel/helpers - typeof"; return _typeof = "function" =
|
|
|
7566
7714
|
|
|
7567
7715
|
module.exports = CardMap;
|
|
7568
7716
|
}, {
|
|
7569
|
-
"./card-base.js":
|
|
7717
|
+
"./card-base.js": 70
|
|
7570
7718
|
}],
|
|
7571
|
-
|
|
7719
|
+
76: [function (require, module, exports) {
|
|
7572
7720
|
var CardBase = require("./card-base.js");
|
|
7573
7721
|
|
|
7574
7722
|
var CardParagraph = /*#__PURE__*/function (_CardBase6) {
|
|
@@ -7594,9 +7742,9 @@ function _typeof(obj) { "@babel/helpers - typeof"; return _typeof = "function" =
|
|
|
7594
7742
|
|
|
7595
7743
|
module.exports = CardParagraph;
|
|
7596
7744
|
}, {
|
|
7597
|
-
"./card-base.js":
|
|
7745
|
+
"./card-base.js": 70
|
|
7598
7746
|
}],
|
|
7599
|
-
|
|
7747
|
+
77: [function (require, module, exports) {
|
|
7600
7748
|
var CardBase = require("./card-base.js");
|
|
7601
7749
|
|
|
7602
7750
|
var CardRow = /*#__PURE__*/function (_CardBase7) {
|
|
@@ -7622,9 +7770,9 @@ function _typeof(obj) { "@babel/helpers - typeof"; return _typeof = "function" =
|
|
|
7622
7770
|
|
|
7623
7771
|
module.exports = CardRow;
|
|
7624
7772
|
}, {
|
|
7625
|
-
"./card-base.js":
|
|
7773
|
+
"./card-base.js": 70
|
|
7626
7774
|
}],
|
|
7627
|
-
|
|
7775
|
+
78: [function (require, module, exports) {
|
|
7628
7776
|
var CardBase = require("./card-base.js");
|
|
7629
7777
|
|
|
7630
7778
|
var CardSlider = /*#__PURE__*/function (_CardBase8) {
|
|
@@ -7650,9 +7798,9 @@ function _typeof(obj) { "@babel/helpers - typeof"; return _typeof = "function" =
|
|
|
7650
7798
|
|
|
7651
7799
|
module.exports = CardSlider;
|
|
7652
7800
|
}, {
|
|
7653
|
-
"./card-base.js":
|
|
7801
|
+
"./card-base.js": 70
|
|
7654
7802
|
}],
|
|
7655
|
-
|
|
7803
|
+
79: [function (require, module, exports) {
|
|
7656
7804
|
var CardBase = require("./card-base.js");
|
|
7657
7805
|
|
|
7658
7806
|
var CardTitle = /*#__PURE__*/function (_CardBase9) {
|
|
@@ -7678,9 +7826,9 @@ function _typeof(obj) { "@babel/helpers - typeof"; return _typeof = "function" =
|
|
|
7678
7826
|
|
|
7679
7827
|
module.exports = CardTitle;
|
|
7680
7828
|
}, {
|
|
7681
|
-
"./card-base.js":
|
|
7829
|
+
"./card-base.js": 70
|
|
7682
7830
|
}],
|
|
7683
|
-
|
|
7831
|
+
80: [function (require, module, exports) {
|
|
7684
7832
|
var CardBase = require("./card-base.js");
|
|
7685
7833
|
|
|
7686
7834
|
var CardVideo = /*#__PURE__*/function (_CardBase10) {
|
|
@@ -7706,9 +7854,9 @@ function _typeof(obj) { "@babel/helpers - typeof"; return _typeof = "function" =
|
|
|
7706
7854
|
|
|
7707
7855
|
module.exports = CardVideo;
|
|
7708
7856
|
}, {
|
|
7709
|
-
"./card-base.js":
|
|
7857
|
+
"./card-base.js": 70
|
|
7710
7858
|
}],
|
|
7711
|
-
|
|
7859
|
+
81: [function (require, module, exports) {
|
|
7712
7860
|
var CardBase = require("./card-base.js");
|
|
7713
7861
|
|
|
7714
7862
|
var CardYoutube = /*#__PURE__*/function (_CardBase11) {
|
|
@@ -7734,9 +7882,9 @@ function _typeof(obj) { "@babel/helpers - typeof"; return _typeof = "function" =
|
|
|
7734
7882
|
|
|
7735
7883
|
module.exports = CardYoutube;
|
|
7736
7884
|
}, {
|
|
7737
|
-
"./card-base.js":
|
|
7885
|
+
"./card-base.js": 70
|
|
7738
7886
|
}],
|
|
7739
|
-
|
|
7887
|
+
82: [function (require, module, exports) {
|
|
7740
7888
|
var PlattarBase = require("../interfaces/plattar-base.js");
|
|
7741
7889
|
|
|
7742
7890
|
var Page = /*#__PURE__*/function (_PlattarBase18) {
|
|
@@ -7762,9 +7910,9 @@ function _typeof(obj) { "@babel/helpers - typeof"; return _typeof = "function" =
|
|
|
7762
7910
|
|
|
7763
7911
|
module.exports = Page;
|
|
7764
7912
|
}, {
|
|
7765
|
-
"../interfaces/plattar-base.js":
|
|
7913
|
+
"../interfaces/plattar-base.js": 62
|
|
7766
7914
|
}],
|
|
7767
|
-
|
|
7915
|
+
83: [function (require, module, exports) {
|
|
7768
7916
|
var ProductBase = require("./product-base.js");
|
|
7769
7917
|
|
|
7770
7918
|
var ProductAnnotation = /*#__PURE__*/function (_ProductBase) {
|
|
@@ -7790,9 +7938,9 @@ function _typeof(obj) { "@babel/helpers - typeof"; return _typeof = "function" =
|
|
|
7790
7938
|
|
|
7791
7939
|
module.exports = ProductAnnotation;
|
|
7792
7940
|
}, {
|
|
7793
|
-
"./product-base.js":
|
|
7941
|
+
"./product-base.js": 84
|
|
7794
7942
|
}],
|
|
7795
|
-
|
|
7943
|
+
84: [function (require, module, exports) {
|
|
7796
7944
|
var PlattarBase = require("../interfaces/plattar-base.js");
|
|
7797
7945
|
|
|
7798
7946
|
var Server = require("../../server/plattar-server.js");
|
|
@@ -7832,12 +7980,12 @@ function _typeof(obj) { "@babel/helpers - typeof"; return _typeof = "function" =
|
|
|
7832
7980
|
|
|
7833
7981
|
module.exports = ProductBase;
|
|
7834
7982
|
}, {
|
|
7835
|
-
"../../server/plattar-server.js":
|
|
7836
|
-
"../interfaces/plattar-base.js":
|
|
7837
|
-
"./product-annotation.js":
|
|
7838
|
-
"./product-variation.js":
|
|
7983
|
+
"../../server/plattar-server.js": 45,
|
|
7984
|
+
"../interfaces/plattar-base.js": 62,
|
|
7985
|
+
"./product-annotation.js": 83,
|
|
7986
|
+
"./product-variation.js": 85
|
|
7839
7987
|
}],
|
|
7840
|
-
|
|
7988
|
+
85: [function (require, module, exports) {
|
|
7841
7989
|
var ProductBase = require("./product-base.js");
|
|
7842
7990
|
|
|
7843
7991
|
var ProductVariation = /*#__PURE__*/function (_ProductBase2) {
|
|
@@ -7863,9 +8011,9 @@ function _typeof(obj) { "@babel/helpers - typeof"; return _typeof = "function" =
|
|
|
7863
8011
|
|
|
7864
8012
|
module.exports = ProductVariation;
|
|
7865
8013
|
}, {
|
|
7866
|
-
"./product-base.js":
|
|
8014
|
+
"./product-base.js": 84
|
|
7867
8015
|
}],
|
|
7868
|
-
|
|
8016
|
+
86: [function (require, module, exports) {
|
|
7869
8017
|
var PlattarBase = require("../interfaces/plattar-base.js");
|
|
7870
8018
|
|
|
7871
8019
|
var Product = /*#__PURE__*/function (_PlattarBase20) {
|
|
@@ -7891,9 +8039,9 @@ function _typeof(obj) { "@babel/helpers - typeof"; return _typeof = "function" =
|
|
|
7891
8039
|
|
|
7892
8040
|
module.exports = Product;
|
|
7893
8041
|
}, {
|
|
7894
|
-
"../interfaces/plattar-base.js":
|
|
8042
|
+
"../interfaces/plattar-base.js": 62
|
|
7895
8043
|
}],
|
|
7896
|
-
|
|
8044
|
+
87: [function (require, module, exports) {
|
|
7897
8045
|
var SceneBase = require("./scene-base.js");
|
|
7898
8046
|
|
|
7899
8047
|
var SceneAnnotation = /*#__PURE__*/function (_SceneBase) {
|
|
@@ -7919,9 +8067,9 @@ function _typeof(obj) { "@babel/helpers - typeof"; return _typeof = "function" =
|
|
|
7919
8067
|
|
|
7920
8068
|
module.exports = SceneAnnotation;
|
|
7921
8069
|
}, {
|
|
7922
|
-
"./scene-base.js":
|
|
8070
|
+
"./scene-base.js": 89
|
|
7923
8071
|
}],
|
|
7924
|
-
|
|
8072
|
+
88: [function (require, module, exports) {
|
|
7925
8073
|
var SceneBase = require("./scene-base.js");
|
|
7926
8074
|
|
|
7927
8075
|
var SceneAudio = /*#__PURE__*/function (_SceneBase2) {
|
|
@@ -7947,9 +8095,9 @@ function _typeof(obj) { "@babel/helpers - typeof"; return _typeof = "function" =
|
|
|
7947
8095
|
|
|
7948
8096
|
module.exports = SceneAudio;
|
|
7949
8097
|
}, {
|
|
7950
|
-
"./scene-base.js":
|
|
8098
|
+
"./scene-base.js": 89
|
|
7951
8099
|
}],
|
|
7952
|
-
|
|
8100
|
+
89: [function (require, module, exports) {
|
|
7953
8101
|
var PlattarBase = require("../interfaces/plattar-base.js");
|
|
7954
8102
|
|
|
7955
8103
|
var Server = require("../../server/plattar-server.js");
|
|
@@ -8013,24 +8161,24 @@ function _typeof(obj) { "@babel/helpers - typeof"; return _typeof = "function" =
|
|
|
8013
8161
|
|
|
8014
8162
|
module.exports = SceneBase;
|
|
8015
8163
|
}, {
|
|
8016
|
-
"../../server/plattar-server.js":
|
|
8017
|
-
"../interfaces/plattar-base.js":
|
|
8018
|
-
"./scene-annotation.js":
|
|
8019
|
-
"./scene-audio.js":
|
|
8020
|
-
"./scene-button.js":
|
|
8021
|
-
"./scene-camera.js":
|
|
8022
|
-
"./scene-carousel.js":
|
|
8023
|
-
"./scene-image.js":
|
|
8024
|
-
"./scene-model.js":
|
|
8025
|
-
"./scene-panorama.js":
|
|
8026
|
-
"./scene-poller.js":
|
|
8027
|
-
"./scene-product.js":
|
|
8028
|
-
"./scene-shadow.js":
|
|
8029
|
-
"./scene-video.js":
|
|
8030
|
-
"./scene-volumetric.js":
|
|
8031
|
-
"./scene-youtube.js":
|
|
8164
|
+
"../../server/plattar-server.js": 45,
|
|
8165
|
+
"../interfaces/plattar-base.js": 62,
|
|
8166
|
+
"./scene-annotation.js": 87,
|
|
8167
|
+
"./scene-audio.js": 88,
|
|
8168
|
+
"./scene-button.js": 90,
|
|
8169
|
+
"./scene-camera.js": 91,
|
|
8170
|
+
"./scene-carousel.js": 92,
|
|
8171
|
+
"./scene-image.js": 93,
|
|
8172
|
+
"./scene-model.js": 94,
|
|
8173
|
+
"./scene-panorama.js": 95,
|
|
8174
|
+
"./scene-poller.js": 96,
|
|
8175
|
+
"./scene-product.js": 97,
|
|
8176
|
+
"./scene-shadow.js": 99,
|
|
8177
|
+
"./scene-video.js": 100,
|
|
8178
|
+
"./scene-volumetric.js": 101,
|
|
8179
|
+
"./scene-youtube.js": 102
|
|
8032
8180
|
}],
|
|
8033
|
-
|
|
8181
|
+
90: [function (require, module, exports) {
|
|
8034
8182
|
var SceneBase = require("./scene-base.js");
|
|
8035
8183
|
|
|
8036
8184
|
var SceneButton = /*#__PURE__*/function (_SceneBase3) {
|
|
@@ -8056,9 +8204,9 @@ function _typeof(obj) { "@babel/helpers - typeof"; return _typeof = "function" =
|
|
|
8056
8204
|
|
|
8057
8205
|
module.exports = SceneButton;
|
|
8058
8206
|
}, {
|
|
8059
|
-
"./scene-base.js":
|
|
8207
|
+
"./scene-base.js": 89
|
|
8060
8208
|
}],
|
|
8061
|
-
|
|
8209
|
+
91: [function (require, module, exports) {
|
|
8062
8210
|
var SceneBase = require("./scene-base.js");
|
|
8063
8211
|
|
|
8064
8212
|
var SceneCamera = /*#__PURE__*/function (_SceneBase4) {
|
|
@@ -8084,9 +8232,9 @@ function _typeof(obj) { "@babel/helpers - typeof"; return _typeof = "function" =
|
|
|
8084
8232
|
|
|
8085
8233
|
module.exports = SceneCamera;
|
|
8086
8234
|
}, {
|
|
8087
|
-
"./scene-base.js":
|
|
8235
|
+
"./scene-base.js": 89
|
|
8088
8236
|
}],
|
|
8089
|
-
|
|
8237
|
+
92: [function (require, module, exports) {
|
|
8090
8238
|
var SceneBase = require("./scene-base.js");
|
|
8091
8239
|
|
|
8092
8240
|
var SceneCarousel = /*#__PURE__*/function (_SceneBase5) {
|
|
@@ -8112,9 +8260,9 @@ function _typeof(obj) { "@babel/helpers - typeof"; return _typeof = "function" =
|
|
|
8112
8260
|
|
|
8113
8261
|
module.exports = SceneCarousel;
|
|
8114
8262
|
}, {
|
|
8115
|
-
"./scene-base.js":
|
|
8263
|
+
"./scene-base.js": 89
|
|
8116
8264
|
}],
|
|
8117
|
-
|
|
8265
|
+
93: [function (require, module, exports) {
|
|
8118
8266
|
var SceneBase = require("./scene-base.js");
|
|
8119
8267
|
|
|
8120
8268
|
var SceneImage = /*#__PURE__*/function (_SceneBase6) {
|
|
@@ -8140,9 +8288,9 @@ function _typeof(obj) { "@babel/helpers - typeof"; return _typeof = "function" =
|
|
|
8140
8288
|
|
|
8141
8289
|
module.exports = SceneImage;
|
|
8142
8290
|
}, {
|
|
8143
|
-
"./scene-base.js":
|
|
8291
|
+
"./scene-base.js": 89
|
|
8144
8292
|
}],
|
|
8145
|
-
|
|
8293
|
+
94: [function (require, module, exports) {
|
|
8146
8294
|
var SceneBase = require("./scene-base.js");
|
|
8147
8295
|
|
|
8148
8296
|
var SceneModel = /*#__PURE__*/function (_SceneBase7) {
|
|
@@ -8168,9 +8316,9 @@ function _typeof(obj) { "@babel/helpers - typeof"; return _typeof = "function" =
|
|
|
8168
8316
|
|
|
8169
8317
|
module.exports = SceneModel;
|
|
8170
8318
|
}, {
|
|
8171
|
-
"./scene-base.js":
|
|
8319
|
+
"./scene-base.js": 89
|
|
8172
8320
|
}],
|
|
8173
|
-
|
|
8321
|
+
95: [function (require, module, exports) {
|
|
8174
8322
|
var SceneBase = require("./scene-base.js");
|
|
8175
8323
|
|
|
8176
8324
|
var ScenePanorama = /*#__PURE__*/function (_SceneBase8) {
|
|
@@ -8196,9 +8344,9 @@ function _typeof(obj) { "@babel/helpers - typeof"; return _typeof = "function" =
|
|
|
8196
8344
|
|
|
8197
8345
|
module.exports = ScenePanorama;
|
|
8198
8346
|
}, {
|
|
8199
|
-
"./scene-base.js":
|
|
8347
|
+
"./scene-base.js": 89
|
|
8200
8348
|
}],
|
|
8201
|
-
|
|
8349
|
+
96: [function (require, module, exports) {
|
|
8202
8350
|
var SceneBase = require("./scene-base.js");
|
|
8203
8351
|
|
|
8204
8352
|
var ScenePoller = /*#__PURE__*/function (_SceneBase9) {
|
|
@@ -8224,9 +8372,9 @@ function _typeof(obj) { "@babel/helpers - typeof"; return _typeof = "function" =
|
|
|
8224
8372
|
|
|
8225
8373
|
module.exports = ScenePoller;
|
|
8226
8374
|
}, {
|
|
8227
|
-
"./scene-base.js":
|
|
8375
|
+
"./scene-base.js": 89
|
|
8228
8376
|
}],
|
|
8229
|
-
|
|
8377
|
+
97: [function (require, module, exports) {
|
|
8230
8378
|
var SceneBase = require("./scene-base.js");
|
|
8231
8379
|
|
|
8232
8380
|
var SceneProduct = /*#__PURE__*/function (_SceneBase10) {
|
|
@@ -8252,9 +8400,9 @@ function _typeof(obj) { "@babel/helpers - typeof"; return _typeof = "function" =
|
|
|
8252
8400
|
|
|
8253
8401
|
module.exports = SceneProduct;
|
|
8254
8402
|
}, {
|
|
8255
|
-
"./scene-base.js":
|
|
8403
|
+
"./scene-base.js": 89
|
|
8256
8404
|
}],
|
|
8257
|
-
|
|
8405
|
+
98: [function (require, module, exports) {
|
|
8258
8406
|
var SceneBase = require("./scene-base.js");
|
|
8259
8407
|
|
|
8260
8408
|
var SceneScript = /*#__PURE__*/function (_SceneBase11) {
|
|
@@ -8280,9 +8428,9 @@ function _typeof(obj) { "@babel/helpers - typeof"; return _typeof = "function" =
|
|
|
8280
8428
|
|
|
8281
8429
|
module.exports = SceneScript;
|
|
8282
8430
|
}, {
|
|
8283
|
-
"./scene-base.js":
|
|
8431
|
+
"./scene-base.js": 89
|
|
8284
8432
|
}],
|
|
8285
|
-
|
|
8433
|
+
99: [function (require, module, exports) {
|
|
8286
8434
|
var SceneBase = require("./scene-base.js");
|
|
8287
8435
|
|
|
8288
8436
|
var SceneShadow = /*#__PURE__*/function (_SceneBase12) {
|
|
@@ -8308,9 +8456,9 @@ function _typeof(obj) { "@babel/helpers - typeof"; return _typeof = "function" =
|
|
|
8308
8456
|
|
|
8309
8457
|
module.exports = SceneShadow;
|
|
8310
8458
|
}, {
|
|
8311
|
-
"./scene-base.js":
|
|
8459
|
+
"./scene-base.js": 89
|
|
8312
8460
|
}],
|
|
8313
|
-
|
|
8461
|
+
100: [function (require, module, exports) {
|
|
8314
8462
|
var SceneBase = require("./scene-base.js");
|
|
8315
8463
|
|
|
8316
8464
|
var SceneVideo = /*#__PURE__*/function (_SceneBase13) {
|
|
@@ -8336,9 +8484,9 @@ function _typeof(obj) { "@babel/helpers - typeof"; return _typeof = "function" =
|
|
|
8336
8484
|
|
|
8337
8485
|
module.exports = SceneVideo;
|
|
8338
8486
|
}, {
|
|
8339
|
-
"./scene-base.js":
|
|
8487
|
+
"./scene-base.js": 89
|
|
8340
8488
|
}],
|
|
8341
|
-
|
|
8489
|
+
101: [function (require, module, exports) {
|
|
8342
8490
|
var SceneBase = require("./scene-base.js");
|
|
8343
8491
|
|
|
8344
8492
|
var SceneVolumetric = /*#__PURE__*/function (_SceneBase14) {
|
|
@@ -8364,9 +8512,9 @@ function _typeof(obj) { "@babel/helpers - typeof"; return _typeof = "function" =
|
|
|
8364
8512
|
|
|
8365
8513
|
module.exports = SceneVolumetric;
|
|
8366
8514
|
}, {
|
|
8367
|
-
"./scene-base.js":
|
|
8515
|
+
"./scene-base.js": 89
|
|
8368
8516
|
}],
|
|
8369
|
-
|
|
8517
|
+
102: [function (require, module, exports) {
|
|
8370
8518
|
var SceneBase = require("./scene-base.js");
|
|
8371
8519
|
|
|
8372
8520
|
var SceneYoutube = /*#__PURE__*/function (_SceneBase15) {
|
|
@@ -8392,9 +8540,9 @@ function _typeof(obj) { "@babel/helpers - typeof"; return _typeof = "function" =
|
|
|
8392
8540
|
|
|
8393
8541
|
module.exports = SceneYoutube;
|
|
8394
8542
|
}, {
|
|
8395
|
-
"./scene-base.js":
|
|
8543
|
+
"./scene-base.js": 89
|
|
8396
8544
|
}],
|
|
8397
|
-
|
|
8545
|
+
103: [function (require, module, exports) {
|
|
8398
8546
|
var PlattarBase = require("../interfaces/plattar-base.js");
|
|
8399
8547
|
|
|
8400
8548
|
var Scene = /*#__PURE__*/function (_PlattarBase22) {
|
|
@@ -8420,9 +8568,9 @@ function _typeof(obj) { "@babel/helpers - typeof"; return _typeof = "function" =
|
|
|
8420
8568
|
|
|
8421
8569
|
module.exports = Scene;
|
|
8422
8570
|
}, {
|
|
8423
|
-
"../interfaces/plattar-base.js":
|
|
8571
|
+
"../interfaces/plattar-base.js": 62
|
|
8424
8572
|
}],
|
|
8425
|
-
|
|
8573
|
+
104: [function (require, module, exports) {
|
|
8426
8574
|
var PlattarBase = require("../interfaces/plattar-base.js");
|
|
8427
8575
|
|
|
8428
8576
|
var TriggerImage = /*#__PURE__*/function (_PlattarBase23) {
|
|
@@ -8448,9 +8596,9 @@ function _typeof(obj) { "@babel/helpers - typeof"; return _typeof = "function" =
|
|
|
8448
8596
|
|
|
8449
8597
|
module.exports = TriggerImage;
|
|
8450
8598
|
}, {
|
|
8451
|
-
"../interfaces/plattar-base.js":
|
|
8599
|
+
"../interfaces/plattar-base.js": 62
|
|
8452
8600
|
}],
|
|
8453
|
-
|
|
8601
|
+
105: [function (require, module, exports) {
|
|
8454
8602
|
var Application = require("../types/application.js"); // import Scene types and its children
|
|
8455
8603
|
|
|
8456
8604
|
|
|
@@ -8837,64 +8985,64 @@ function _typeof(obj) { "@babel/helpers - typeof"; return _typeof = "function" =
|
|
|
8837
8985
|
|
|
8838
8986
|
module.exports = PlattarUtil;
|
|
8839
8987
|
}, {
|
|
8840
|
-
"../types/application.js":
|
|
8841
|
-
"../types/content-pipeline/brief.js":
|
|
8842
|
-
"../types/content-pipeline/comment-brief.js":
|
|
8843
|
-
"../types/content-pipeline/comment-quote.js":
|
|
8844
|
-
"../types/content-pipeline/comment-solution.js":
|
|
8845
|
-
"../types/content-pipeline/folder.js":
|
|
8846
|
-
"../types/content-pipeline/pipeline-user.js":
|
|
8847
|
-
"../types/content-pipeline/quote.js":
|
|
8848
|
-
"../types/content-pipeline/rating.js":
|
|
8849
|
-
"../types/content-pipeline/solution.js":
|
|
8850
|
-
"../types/file/file-audio.js":
|
|
8851
|
-
"../types/file/file-image.js":
|
|
8852
|
-
"../types/file/file-model.js":
|
|
8853
|
-
"../types/file/file-script.js":
|
|
8854
|
-
"../types/file/file-video.js":
|
|
8855
|
-
"../types/interfaces/plattar-object.js":
|
|
8856
|
-
"../types/misc/application-build.js":
|
|
8857
|
-
"../types/misc/asset-library":
|
|
8858
|
-
"../types/misc/async-job.js":
|
|
8859
|
-
"../types/misc/script-event.js":
|
|
8860
|
-
"../types/misc/tag.js":
|
|
8861
|
-
"../types/page/card-button.js":
|
|
8862
|
-
"../types/page/card-html.js":
|
|
8863
|
-
"../types/page/card-iframe.js":
|
|
8864
|
-
"../types/page/card-image.js":
|
|
8865
|
-
"../types/page/card-map.js":
|
|
8866
|
-
"../types/page/card-paragraph.js":
|
|
8867
|
-
"../types/page/card-row.js":
|
|
8868
|
-
"../types/page/card-slider.js":
|
|
8869
|
-
"../types/page/card-title.js":
|
|
8870
|
-
"../types/page/card-video.js":
|
|
8871
|
-
"../types/page/card-youtube.js":
|
|
8872
|
-
"../types/page/page.js":
|
|
8873
|
-
"../types/product/product-annotation.js":
|
|
8874
|
-
"../types/product/product-variation.js":
|
|
8875
|
-
"../types/product/product.js":
|
|
8876
|
-
"../types/scene/scene-annotation.js":
|
|
8877
|
-
"../types/scene/scene-audio.js":
|
|
8878
|
-
"../types/scene/scene-button.js":
|
|
8879
|
-
"../types/scene/scene-camera.js":
|
|
8880
|
-
"../types/scene/scene-carousel.js":
|
|
8881
|
-
"../types/scene/scene-image.js":
|
|
8882
|
-
"../types/scene/scene-model.js":
|
|
8883
|
-
"../types/scene/scene-panorama.js":
|
|
8884
|
-
"../types/scene/scene-poller.js":
|
|
8885
|
-
"../types/scene/scene-product.js":
|
|
8886
|
-
"../types/scene/scene-script.js":
|
|
8887
|
-
"../types/scene/scene-shadow.js":
|
|
8888
|
-
"../types/scene/scene-video.js":
|
|
8889
|
-
"../types/scene/scene-volumetric.js":
|
|
8890
|
-
"../types/scene/scene-youtube.js":
|
|
8891
|
-
"../types/scene/scene.js":
|
|
8892
|
-
"../types/trigger/trigger-image.js":
|
|
8988
|
+
"../types/application.js": 46,
|
|
8989
|
+
"../types/content-pipeline/brief.js": 47,
|
|
8990
|
+
"../types/content-pipeline/comment-brief.js": 48,
|
|
8991
|
+
"../types/content-pipeline/comment-quote.js": 49,
|
|
8992
|
+
"../types/content-pipeline/comment-solution.js": 50,
|
|
8993
|
+
"../types/content-pipeline/folder.js": 51,
|
|
8994
|
+
"../types/content-pipeline/pipeline-user.js": 52,
|
|
8995
|
+
"../types/content-pipeline/quote.js": 53,
|
|
8996
|
+
"../types/content-pipeline/rating.js": 54,
|
|
8997
|
+
"../types/content-pipeline/solution.js": 55,
|
|
8998
|
+
"../types/file/file-audio.js": 56,
|
|
8999
|
+
"../types/file/file-image.js": 58,
|
|
9000
|
+
"../types/file/file-model.js": 59,
|
|
9001
|
+
"../types/file/file-script.js": 60,
|
|
9002
|
+
"../types/file/file-video.js": 61,
|
|
9003
|
+
"../types/interfaces/plattar-object.js": 64,
|
|
9004
|
+
"../types/misc/application-build.js": 65,
|
|
9005
|
+
"../types/misc/asset-library": 66,
|
|
9006
|
+
"../types/misc/async-job.js": 67,
|
|
9007
|
+
"../types/misc/script-event.js": 68,
|
|
9008
|
+
"../types/misc/tag.js": 69,
|
|
9009
|
+
"../types/page/card-button.js": 71,
|
|
9010
|
+
"../types/page/card-html.js": 72,
|
|
9011
|
+
"../types/page/card-iframe.js": 73,
|
|
9012
|
+
"../types/page/card-image.js": 74,
|
|
9013
|
+
"../types/page/card-map.js": 75,
|
|
9014
|
+
"../types/page/card-paragraph.js": 76,
|
|
9015
|
+
"../types/page/card-row.js": 77,
|
|
9016
|
+
"../types/page/card-slider.js": 78,
|
|
9017
|
+
"../types/page/card-title.js": 79,
|
|
9018
|
+
"../types/page/card-video.js": 80,
|
|
9019
|
+
"../types/page/card-youtube.js": 81,
|
|
9020
|
+
"../types/page/page.js": 82,
|
|
9021
|
+
"../types/product/product-annotation.js": 83,
|
|
9022
|
+
"../types/product/product-variation.js": 85,
|
|
9023
|
+
"../types/product/product.js": 86,
|
|
9024
|
+
"../types/scene/scene-annotation.js": 87,
|
|
9025
|
+
"../types/scene/scene-audio.js": 88,
|
|
9026
|
+
"../types/scene/scene-button.js": 90,
|
|
9027
|
+
"../types/scene/scene-camera.js": 91,
|
|
9028
|
+
"../types/scene/scene-carousel.js": 92,
|
|
9029
|
+
"../types/scene/scene-image.js": 93,
|
|
9030
|
+
"../types/scene/scene-model.js": 94,
|
|
9031
|
+
"../types/scene/scene-panorama.js": 95,
|
|
9032
|
+
"../types/scene/scene-poller.js": 96,
|
|
9033
|
+
"../types/scene/scene-product.js": 97,
|
|
9034
|
+
"../types/scene/scene-script.js": 98,
|
|
9035
|
+
"../types/scene/scene-shadow.js": 99,
|
|
9036
|
+
"../types/scene/scene-video.js": 100,
|
|
9037
|
+
"../types/scene/scene-volumetric.js": 101,
|
|
9038
|
+
"../types/scene/scene-youtube.js": 102,
|
|
9039
|
+
"../types/scene/scene.js": 103,
|
|
9040
|
+
"../types/trigger/trigger-image.js": 104
|
|
8893
9041
|
}],
|
|
8894
|
-
|
|
9042
|
+
106: [function (require, module, exports) {
|
|
8895
9043
|
module.exports = "1.120.1";
|
|
8896
9044
|
}, {}],
|
|
8897
|
-
|
|
9045
|
+
107: [function (require, module, exports) {
|
|
8898
9046
|
var QRCodeStyling = require("qr-code-styling");
|
|
8899
9047
|
|
|
8900
9048
|
var BaseElement = /*#__PURE__*/function (_HTMLElement2) {
|
|
@@ -8954,8 +9102,8 @@ function _typeof(obj) { "@babel/helpers - typeof"; return _typeof = "function" =
|
|
|
8954
9102
|
return;
|
|
8955
9103
|
}
|
|
8956
9104
|
|
|
8957
|
-
var width = this.hasAttribute("width") ?
|
|
8958
|
-
var height = this.hasAttribute("height") ?
|
|
9105
|
+
var width = this.hasAttribute("width") ? this.getAttribute("width") : "100%";
|
|
9106
|
+
var height = this.hasAttribute("height") ? this.getAttribute("height") : "100%";
|
|
8959
9107
|
var margin = this.hasAttribute("margin") ? this.getAttribute("margin") : 0;
|
|
8960
9108
|
var image = this.hasAttribute("image") ? this.getAttribute("image") : undefined;
|
|
8961
9109
|
var color = this.hasAttribute("color") ? this.getAttribute("color") : "#000000";
|
|
@@ -9081,8 +9229,8 @@ function _typeof(obj) { "@babel/helpers - typeof"; return _typeof = "function" =
|
|
|
9081
9229
|
|
|
9082
9230
|
if (this._divContainer) {
|
|
9083
9231
|
var div = this._divContainer;
|
|
9084
|
-
div.style.width = width
|
|
9085
|
-
div.style.height = height
|
|
9232
|
+
div.style.width = width;
|
|
9233
|
+
div.style.height = height;
|
|
9086
9234
|
}
|
|
9087
9235
|
}
|
|
9088
9236
|
}, {
|
|
@@ -9152,9 +9300,9 @@ function _typeof(obj) { "@babel/helpers - typeof"; return _typeof = "function" =
|
|
|
9152
9300
|
|
|
9153
9301
|
module.exports = BaseElement;
|
|
9154
9302
|
}, {
|
|
9155
|
-
"qr-code-styling":
|
|
9303
|
+
"qr-code-styling": 134
|
|
9156
9304
|
}],
|
|
9157
|
-
|
|
9305
|
+
108: [function (require, module, exports) {
|
|
9158
9306
|
var BaseElement = require("./base/base-element.js");
|
|
9159
9307
|
|
|
9160
9308
|
var QRCodeElement = /*#__PURE__*/function (_BaseElement) {
|
|
@@ -9173,9 +9321,9 @@ function _typeof(obj) { "@babel/helpers - typeof"; return _typeof = "function" =
|
|
|
9173
9321
|
|
|
9174
9322
|
module.exports = QRCodeElement;
|
|
9175
9323
|
}, {
|
|
9176
|
-
"./base/base-element.js":
|
|
9324
|
+
"./base/base-element.js": 107
|
|
9177
9325
|
}],
|
|
9178
|
-
|
|
9326
|
+
109: [function (require, module, exports) {
|
|
9179
9327
|
"use strict";
|
|
9180
9328
|
|
|
9181
9329
|
var QRCodeElement = require("./elements/qrcode-element.js");
|
|
@@ -9193,13 +9341,13 @@ function _typeof(obj) { "@babel/helpers - typeof"; return _typeof = "function" =
|
|
|
9193
9341
|
version: Version
|
|
9194
9342
|
};
|
|
9195
9343
|
}, {
|
|
9196
|
-
"./elements/qrcode-element.js":
|
|
9197
|
-
"./version":
|
|
9344
|
+
"./elements/qrcode-element.js": 108,
|
|
9345
|
+
"./version": 110
|
|
9198
9346
|
}],
|
|
9199
|
-
109: [function (require, module, exports) {
|
|
9200
|
-
module.exports = "1.122.1";
|
|
9201
|
-
}, {}],
|
|
9202
9347
|
110: [function (require, module, exports) {
|
|
9348
|
+
module.exports = "1.134.1";
|
|
9349
|
+
}, {}],
|
|
9350
|
+
111: [function (require, module, exports) {
|
|
9203
9351
|
"use strict";
|
|
9204
9352
|
|
|
9205
9353
|
var __importDefault = this && this.__importDefault || function (mod) {
|
|
@@ -9433,11 +9581,11 @@ function _typeof(obj) { "@babel/helpers - typeof"; return _typeof = "function" =
|
|
|
9433
9581
|
|
|
9434
9582
|
exports.Configurator = Configurator;
|
|
9435
9583
|
}, {
|
|
9436
|
-
"./remote-request":
|
|
9437
|
-
"@plattar/plattar-api":
|
|
9438
|
-
"object-hash":
|
|
9584
|
+
"./remote-request": 113,
|
|
9585
|
+
"@plattar/plattar-api": 43,
|
|
9586
|
+
"object-hash": 132
|
|
9439
9587
|
}],
|
|
9440
|
-
|
|
9588
|
+
112: [function (require, module, exports) {
|
|
9441
9589
|
"use strict";
|
|
9442
9590
|
|
|
9443
9591
|
var __importDefault = this && this.__importDefault || function (mod) {
|
|
@@ -9532,11 +9680,11 @@ function _typeof(obj) { "@babel/helpers - typeof"; return _typeof = "function" =
|
|
|
9532
9680
|
|
|
9533
9681
|
exports.ModelConverter = ModelConverter;
|
|
9534
9682
|
}, {
|
|
9535
|
-
"./remote-request":
|
|
9536
|
-
"@plattar/plattar-api":
|
|
9537
|
-
"object-hash":
|
|
9683
|
+
"./remote-request": 113,
|
|
9684
|
+
"@plattar/plattar-api": 43,
|
|
9685
|
+
"object-hash": 132
|
|
9538
9686
|
}],
|
|
9539
|
-
|
|
9687
|
+
113: [function (require, module, exports) {
|
|
9540
9688
|
"use strict";
|
|
9541
9689
|
|
|
9542
9690
|
var __importDefault = this && this.__importDefault || function (mod) {
|
|
@@ -9624,9 +9772,9 @@ function _typeof(obj) { "@babel/helpers - typeof"; return _typeof = "function" =
|
|
|
9624
9772
|
|
|
9625
9773
|
exports.RemoteRequest = RemoteRequest;
|
|
9626
9774
|
}, {
|
|
9627
|
-
"node-fetch":
|
|
9775
|
+
"node-fetch": 131
|
|
9628
9776
|
}],
|
|
9629
|
-
|
|
9777
|
+
114: [function (require, module, exports) {
|
|
9630
9778
|
"use strict";
|
|
9631
9779
|
|
|
9632
9780
|
var __createBinding = this && this.__createBinding || (Object.create ? function (o, m, k, k2) {
|
|
@@ -9697,11 +9845,11 @@ function _typeof(obj) { "@babel/helpers - typeof"; return _typeof = "function" =
|
|
|
9697
9845
|
|
|
9698
9846
|
console.log("using @plattar/plattar-services v" + version_1["default"]);
|
|
9699
9847
|
}, {
|
|
9700
|
-
"./core/configurator":
|
|
9701
|
-
"./core/model-converter":
|
|
9702
|
-
"./version":
|
|
9848
|
+
"./core/configurator": 111,
|
|
9849
|
+
"./core/model-converter": 112,
|
|
9850
|
+
"./version": 115
|
|
9703
9851
|
}],
|
|
9704
|
-
|
|
9852
|
+
115: [function (require, module, exports) {
|
|
9705
9853
|
"use strict";
|
|
9706
9854
|
|
|
9707
9855
|
Object.defineProperty(exports, "__esModule", {
|
|
@@ -9709,7 +9857,7 @@ function _typeof(obj) { "@babel/helpers - typeof"; return _typeof = "function" =
|
|
|
9709
9857
|
});
|
|
9710
9858
|
exports["default"] = "1.120.1";
|
|
9711
9859
|
}, {}],
|
|
9712
|
-
|
|
9860
|
+
116: [function (require, module, exports) {
|
|
9713
9861
|
var Util = require("../../util/util");
|
|
9714
9862
|
|
|
9715
9863
|
var ElementController = require("../controllers/element-controller");
|
|
@@ -9888,10 +10036,10 @@ function _typeof(obj) { "@babel/helpers - typeof"; return _typeof = "function" =
|
|
|
9888
10036
|
|
|
9889
10037
|
module.exports = BaseElement;
|
|
9890
10038
|
}, {
|
|
9891
|
-
"../../util/util":
|
|
9892
|
-
"../controllers/element-controller":
|
|
10039
|
+
"../../util/util": 129,
|
|
10040
|
+
"../controllers/element-controller": 118
|
|
9893
10041
|
}],
|
|
9894
|
-
|
|
10042
|
+
117: [function (require, module, exports) {
|
|
9895
10043
|
var BaseElement = require("./base/base-element.js");
|
|
9896
10044
|
|
|
9897
10045
|
var ConfiguratorElement = /*#__PURE__*/function (_BaseElement2) {
|
|
@@ -9943,9 +10091,9 @@ function _typeof(obj) { "@babel/helpers - typeof"; return _typeof = "function" =
|
|
|
9943
10091
|
|
|
9944
10092
|
module.exports = ConfiguratorElement;
|
|
9945
10093
|
}, {
|
|
9946
|
-
"./base/base-element.js":
|
|
10094
|
+
"./base/base-element.js": 116
|
|
9947
10095
|
}],
|
|
9948
|
-
|
|
10096
|
+
118: [function (require, module, exports) {
|
|
9949
10097
|
var Util = require("../../util/util.js");
|
|
9950
10098
|
|
|
9951
10099
|
var _require = require("@plattar/context-messenger"),
|
|
@@ -10067,11 +10215,11 @@ function _typeof(obj) { "@babel/helpers - typeof"; return _typeof = "function" =
|
|
|
10067
10215
|
|
|
10068
10216
|
module.exports = ElementController;
|
|
10069
10217
|
}, {
|
|
10070
|
-
"../../util/util.js":
|
|
10071
|
-
"./iframe-controller.js":
|
|
10218
|
+
"../../util/util.js": 129,
|
|
10219
|
+
"./iframe-controller.js": 119,
|
|
10072
10220
|
"@plattar/context-messenger": 21
|
|
10073
10221
|
}],
|
|
10074
|
-
|
|
10222
|
+
119: [function (require, module, exports) {
|
|
10075
10223
|
var Util = require("../../util/util.js");
|
|
10076
10224
|
|
|
10077
10225
|
var IFrameController = /*#__PURE__*/function () {
|
|
@@ -10185,9 +10333,9 @@ function _typeof(obj) { "@babel/helpers - typeof"; return _typeof = "function" =
|
|
|
10185
10333
|
|
|
10186
10334
|
module.exports = IFrameController;
|
|
10187
10335
|
}, {
|
|
10188
|
-
"../../util/util.js":
|
|
10336
|
+
"../../util/util.js": 129
|
|
10189
10337
|
}],
|
|
10190
|
-
|
|
10338
|
+
120: [function (require, module, exports) {
|
|
10191
10339
|
var BaseElement = require("./base/base-element.js");
|
|
10192
10340
|
|
|
10193
10341
|
var EditorElement = /*#__PURE__*/function (_BaseElement3) {
|
|
@@ -10218,9 +10366,9 @@ function _typeof(obj) { "@babel/helpers - typeof"; return _typeof = "function" =
|
|
|
10218
10366
|
|
|
10219
10367
|
module.exports = EditorElement;
|
|
10220
10368
|
}, {
|
|
10221
|
-
"./base/base-element.js":
|
|
10369
|
+
"./base/base-element.js": 116
|
|
10222
10370
|
}],
|
|
10223
|
-
|
|
10371
|
+
121: [function (require, module, exports) {
|
|
10224
10372
|
var BaseElement = require("./base/base-element.js");
|
|
10225
10373
|
|
|
10226
10374
|
var EWallElement = /*#__PURE__*/function (_BaseElement4) {
|
|
@@ -10273,9 +10421,9 @@ function _typeof(obj) { "@babel/helpers - typeof"; return _typeof = "function" =
|
|
|
10273
10421
|
|
|
10274
10422
|
module.exports = EWallElement;
|
|
10275
10423
|
}, {
|
|
10276
|
-
"./base/base-element.js":
|
|
10424
|
+
"./base/base-element.js": 116
|
|
10277
10425
|
}],
|
|
10278
|
-
|
|
10426
|
+
122: [function (require, module, exports) {
|
|
10279
10427
|
var BaseElement = require("./base/base-element.js");
|
|
10280
10428
|
|
|
10281
10429
|
var FaceARElement = /*#__PURE__*/function (_BaseElement5) {
|
|
@@ -10326,9 +10474,9 @@ function _typeof(obj) { "@babel/helpers - typeof"; return _typeof = "function" =
|
|
|
10326
10474
|
|
|
10327
10475
|
module.exports = FaceARElement;
|
|
10328
10476
|
}, {
|
|
10329
|
-
"./base/base-element.js":
|
|
10477
|
+
"./base/base-element.js": 116
|
|
10330
10478
|
}],
|
|
10331
|
-
|
|
10479
|
+
123: [function (require, module, exports) {
|
|
10332
10480
|
var BaseElement = require("./base/base-element.js");
|
|
10333
10481
|
|
|
10334
10482
|
var ModelElement = /*#__PURE__*/function (_BaseElement6) {
|
|
@@ -10345,7 +10493,7 @@ function _typeof(obj) { "@babel/helpers - typeof"; return _typeof = "function" =
|
|
|
10345
10493
|
_createClass(ModelElement, [{
|
|
10346
10494
|
key: "permissions",
|
|
10347
10495
|
get: function get() {
|
|
10348
|
-
return ["autoplay"];
|
|
10496
|
+
return ["camera", "autoplay"];
|
|
10349
10497
|
}
|
|
10350
10498
|
}, {
|
|
10351
10499
|
key: "elementType",
|
|
@@ -10360,6 +10508,14 @@ function _typeof(obj) { "@babel/helpers - typeof"; return _typeof = "function" =
|
|
|
10360
10508
|
map: "model_id"
|
|
10361
10509
|
}];
|
|
10362
10510
|
}
|
|
10511
|
+
}, {
|
|
10512
|
+
key: "optionalAttributes",
|
|
10513
|
+
get: function get() {
|
|
10514
|
+
return [{
|
|
10515
|
+
key: "mode",
|
|
10516
|
+
map: "mode"
|
|
10517
|
+
}];
|
|
10518
|
+
}
|
|
10363
10519
|
}]);
|
|
10364
10520
|
|
|
10365
10521
|
return ModelElement;
|
|
@@ -10367,9 +10523,9 @@ function _typeof(obj) { "@babel/helpers - typeof"; return _typeof = "function" =
|
|
|
10367
10523
|
|
|
10368
10524
|
module.exports = ModelElement;
|
|
10369
10525
|
}, {
|
|
10370
|
-
"./base/base-element.js":
|
|
10526
|
+
"./base/base-element.js": 116
|
|
10371
10527
|
}],
|
|
10372
|
-
|
|
10528
|
+
124: [function (require, module, exports) {
|
|
10373
10529
|
var BaseElement = require("./base/base-element.js");
|
|
10374
10530
|
|
|
10375
10531
|
var ProductElement = /*#__PURE__*/function (_BaseElement7) {
|
|
@@ -10422,9 +10578,9 @@ function _typeof(obj) { "@babel/helpers - typeof"; return _typeof = "function" =
|
|
|
10422
10578
|
|
|
10423
10579
|
module.exports = ProductElement;
|
|
10424
10580
|
}, {
|
|
10425
|
-
"./base/base-element.js":
|
|
10581
|
+
"./base/base-element.js": 116
|
|
10426
10582
|
}],
|
|
10427
|
-
|
|
10583
|
+
125: [function (require, module, exports) {
|
|
10428
10584
|
var BaseElement = require("./base/base-element.js");
|
|
10429
10585
|
|
|
10430
10586
|
var StudioElement = /*#__PURE__*/function (_BaseElement8) {
|
|
@@ -10455,9 +10611,9 @@ function _typeof(obj) { "@babel/helpers - typeof"; return _typeof = "function" =
|
|
|
10455
10611
|
|
|
10456
10612
|
module.exports = StudioElement;
|
|
10457
10613
|
}, {
|
|
10458
|
-
"./base/base-element.js":
|
|
10614
|
+
"./base/base-element.js": 116
|
|
10459
10615
|
}],
|
|
10460
|
-
|
|
10616
|
+
126: [function (require, module, exports) {
|
|
10461
10617
|
var BaseElement = require("./base/base-element.js");
|
|
10462
10618
|
|
|
10463
10619
|
var ViewerElement = /*#__PURE__*/function (_BaseElement9) {
|
|
@@ -10505,9 +10661,9 @@ function _typeof(obj) { "@babel/helpers - typeof"; return _typeof = "function" =
|
|
|
10505
10661
|
|
|
10506
10662
|
module.exports = ViewerElement;
|
|
10507
10663
|
}, {
|
|
10508
|
-
"./base/base-element.js":
|
|
10664
|
+
"./base/base-element.js": 116
|
|
10509
10665
|
}],
|
|
10510
|
-
|
|
10666
|
+
127: [function (require, module, exports) {
|
|
10511
10667
|
var BaseElement = require("./base/base-element.js");
|
|
10512
10668
|
|
|
10513
10669
|
var WebXRElement = /*#__PURE__*/function (_BaseElement10) {
|
|
@@ -10538,9 +10694,9 @@ function _typeof(obj) { "@babel/helpers - typeof"; return _typeof = "function" =
|
|
|
10538
10694
|
|
|
10539
10695
|
module.exports = WebXRElement;
|
|
10540
10696
|
}, {
|
|
10541
|
-
"./base/base-element.js":
|
|
10697
|
+
"./base/base-element.js": 116
|
|
10542
10698
|
}],
|
|
10543
|
-
|
|
10699
|
+
128: [function (require, module, exports) {
|
|
10544
10700
|
"use strict";
|
|
10545
10701
|
|
|
10546
10702
|
var WebXRElement = require("./elements/webxr-element.js");
|
|
@@ -10604,18 +10760,18 @@ function _typeof(obj) { "@babel/helpers - typeof"; return _typeof = "function" =
|
|
|
10604
10760
|
version: Version
|
|
10605
10761
|
};
|
|
10606
10762
|
}, {
|
|
10607
|
-
"./elements/configurator-element.js":
|
|
10608
|
-
"./elements/editor-element.js":
|
|
10609
|
-
"./elements/ewall-element.js":
|
|
10610
|
-
"./elements/facear-element.js":
|
|
10611
|
-
"./elements/model-element.js":
|
|
10612
|
-
"./elements/product-element.js":
|
|
10613
|
-
"./elements/studio-element.js":
|
|
10614
|
-
"./elements/viewer-element.js":
|
|
10615
|
-
"./elements/webxr-element.js":
|
|
10616
|
-
"./version":
|
|
10763
|
+
"./elements/configurator-element.js": 117,
|
|
10764
|
+
"./elements/editor-element.js": 120,
|
|
10765
|
+
"./elements/ewall-element.js": 121,
|
|
10766
|
+
"./elements/facear-element.js": 122,
|
|
10767
|
+
"./elements/model-element.js": 123,
|
|
10768
|
+
"./elements/product-element.js": 124,
|
|
10769
|
+
"./elements/studio-element.js": 125,
|
|
10770
|
+
"./elements/viewer-element.js": 126,
|
|
10771
|
+
"./elements/webxr-element.js": 127,
|
|
10772
|
+
"./version": 130
|
|
10617
10773
|
}],
|
|
10618
|
-
|
|
10774
|
+
129: [function (require, module, exports) {
|
|
10619
10775
|
var Util = /*#__PURE__*/function () {
|
|
10620
10776
|
function Util() {
|
|
10621
10777
|
_classCallCheck(this, Util);
|
|
@@ -10695,10 +10851,10 @@ function _typeof(obj) { "@babel/helpers - typeof"; return _typeof = "function" =
|
|
|
10695
10851
|
|
|
10696
10852
|
module.exports = Util;
|
|
10697
10853
|
}, {}],
|
|
10698
|
-
129: [function (require, module, exports) {
|
|
10699
|
-
module.exports = "1.131.1";
|
|
10700
|
-
}, {}],
|
|
10701
10854
|
130: [function (require, module, exports) {
|
|
10855
|
+
module.exports = "1.135.2";
|
|
10856
|
+
}, {}],
|
|
10857
|
+
131: [function (require, module, exports) {
|
|
10702
10858
|
(function (global) {
|
|
10703
10859
|
(function () {
|
|
10704
10860
|
"use strict"; // ref: https://github.com/tc39/proposal-global
|
|
@@ -10735,7 +10891,7 @@ function _typeof(obj) { "@babel/helpers - typeof"; return _typeof = "function" =
|
|
|
10735
10891
|
}).call(this);
|
|
10736
10892
|
}).call(this, typeof global !== "undefined" ? global : typeof self !== "undefined" ? self : typeof window !== "undefined" ? window : {});
|
|
10737
10893
|
}, {}],
|
|
10738
|
-
|
|
10894
|
+
132: [function (require, module, exports) {
|
|
10739
10895
|
(function (global) {
|
|
10740
10896
|
(function () {
|
|
10741
10897
|
!function (e) {
|
|
@@ -12007,7 +12163,7 @@ function _typeof(obj) { "@babel/helpers - typeof"; return _typeof = "function" =
|
|
|
12007
12163
|
}).call(this);
|
|
12008
12164
|
}).call(this, typeof global !== "undefined" ? global : typeof self !== "undefined" ? self : typeof window !== "undefined" ? window : {});
|
|
12009
12165
|
}, {}],
|
|
12010
|
-
|
|
12166
|
+
133: [function (require, module, exports) {
|
|
12011
12167
|
// shim for using process in browser
|
|
12012
12168
|
var process = module.exports = {}; // cached from whatever global is present so that test runners that stub it
|
|
12013
12169
|
// don't break things. But we need to wrap it in a try catch in case it is
|
|
@@ -12217,7 +12373,7 @@ function _typeof(obj) { "@babel/helpers - typeof"; return _typeof = "function" =
|
|
|
12217
12373
|
return 0;
|
|
12218
12374
|
};
|
|
12219
12375
|
}, {}],
|
|
12220
|
-
|
|
12376
|
+
134: [function (require, module, exports) {
|
|
12221
12377
|
!function (t, e) {
|
|
12222
12378
|
"object" == _typeof(exports) && "object" == _typeof(module) ? module.exports = e() : "function" == typeof define && define.amd ? define([], e) : "object" == _typeof(exports) ? exports.QRCodeStyling = e() : t.QRCodeStyling = e();
|
|
12223
12379
|
}(self, function () {
|