@plattar/plattar-ar-adapter 1.131.1 → 1.135.2
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/build/es2015/plattar-ar-adapter.js +564 -397
- package/build/es2015/plattar-ar-adapter.min.js +1 -1
- package/build/es2019/plattar-ar-adapter.js +242 -129
- package/build/es2019/plattar-ar-adapter.min.js +1 -1
- package/dist/ar/scene-ar.js +18 -3
- package/dist/embed/controllers/configurator-controller.js +2 -1
- package/dist/embed/controllers/plattar-controller.d.ts +1 -1
- package/dist/embed/controllers/plattar-controller.js +6 -4
- package/dist/embed/controllers/product-controller.js +2 -1
- package/dist/embed/controllers/viewer-controller.js +2 -1
- package/dist/embed/controllers/vto-controller.js +2 -1
- 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";
|
|
@@ -1194,7 +1210,8 @@ function _typeof(obj) { "@babel/helpers - typeof"; return _typeof = "function" =
|
|
|
1194
1210
|
var sceneID = _this12.getAttribute("scene-id");
|
|
1195
1211
|
|
|
1196
1212
|
if (sceneID) {
|
|
1197
|
-
var opt = options ||
|
|
1213
|
+
var opt = options || _this12._GetDefaultQROptions();
|
|
1214
|
+
|
|
1198
1215
|
var viewer = document.createElement("plattar-qrcode"); // required attributes with defaults for plattar-viewer node
|
|
1199
1216
|
|
|
1200
1217
|
var width = _this12.getAttribute("width") || "500px";
|
|
@@ -1214,6 +1231,7 @@ function _typeof(obj) { "@babel/helpers - typeof"; return _typeof = "function" =
|
|
|
1214
1231
|
viewer.setAttribute("qr-type", opt.qrType);
|
|
1215
1232
|
}
|
|
1216
1233
|
|
|
1234
|
+
viewer.setAttribute("shorten", opt.shorten && (opt.shorten === true || opt.shorten === "true") ? "true" : "false");
|
|
1217
1235
|
var dst = plattar_api_1.Server.location().base + "renderer/configurator.html?scene_id=" + sceneID; // optional attributes
|
|
1218
1236
|
|
|
1219
1237
|
var configState = _this12.getAttribute("config-state");
|
|
@@ -1471,8 +1489,8 @@ function _typeof(obj) { "@babel/helpers - typeof"; return _typeof = "function" =
|
|
|
1471
1489
|
"../../util/configurator-state": 14,
|
|
1472
1490
|
"../../util/util": 15,
|
|
1473
1491
|
"./plattar-controller": 8,
|
|
1474
|
-
"@plattar/plattar-api":
|
|
1475
|
-
"@plattar/plattar-services":
|
|
1492
|
+
"@plattar/plattar-api": 43,
|
|
1493
|
+
"@plattar/plattar-services": 114
|
|
1476
1494
|
}],
|
|
1477
1495
|
8: [function (require, module, exports) {
|
|
1478
1496
|
"use strict";
|
|
@@ -1511,6 +1529,16 @@ function _typeof(obj) { "@babel/helpers - typeof"; return _typeof = "function" =
|
|
|
1511
1529
|
|
|
1512
1530
|
|
|
1513
1531
|
_createClass(PlattarController, [{
|
|
1532
|
+
key: "_GetDefaultQROptions",
|
|
1533
|
+
value: function _GetDefaultQROptions() {
|
|
1534
|
+
return {
|
|
1535
|
+
color: this.getAttribute("qr-color") || "#101721",
|
|
1536
|
+
qrType: this.getAttribute("qr-style") || "default",
|
|
1537
|
+
shorten: this.getAttribute("qr-shorten") || false,
|
|
1538
|
+
margin: 0
|
|
1539
|
+
};
|
|
1540
|
+
}
|
|
1541
|
+
}, {
|
|
1514
1542
|
key: "startAR",
|
|
1515
1543
|
value:
|
|
1516
1544
|
/**
|
|
@@ -1561,7 +1589,8 @@ function _typeof(obj) { "@babel/helpers - typeof"; return _typeof = "function" =
|
|
|
1561
1589
|
// remove the old renderer instance if any
|
|
1562
1590
|
_this16.removeRenderer();
|
|
1563
1591
|
|
|
1564
|
-
var opt = options ||
|
|
1592
|
+
var opt = options || _this16._GetDefaultQROptions();
|
|
1593
|
+
|
|
1565
1594
|
var viewer = document.createElement("plattar-qrcode"); // required attributes with defaults for plattar-viewer node
|
|
1566
1595
|
|
|
1567
1596
|
var width = _this16.getAttribute("width") || "500px";
|
|
@@ -1581,6 +1610,7 @@ function _typeof(obj) { "@babel/helpers - typeof"; return _typeof = "function" =
|
|
|
1581
1610
|
viewer.setAttribute("qr-type", opt.qrType);
|
|
1582
1611
|
}
|
|
1583
1612
|
|
|
1613
|
+
viewer.setAttribute("shorten", opt.shorten && (opt.shorten === true || opt.shorten === "true") ? "true" : "false");
|
|
1584
1614
|
var qrOptions = btoa(JSON.stringify(opt));
|
|
1585
1615
|
var dst = plattar_api_1.Server.location().base + "renderer/launcher.html?qr_options=" + qrOptions;
|
|
1586
1616
|
|
|
@@ -1678,15 +1708,6 @@ function _typeof(obj) { "@babel/helpers - typeof"; return _typeof = "function" =
|
|
|
1678
1708
|
});
|
|
1679
1709
|
shadow.append(element);
|
|
1680
1710
|
}
|
|
1681
|
-
}], [{
|
|
1682
|
-
key: "DEFAULT_QR_OPTIONS",
|
|
1683
|
-
get: function get() {
|
|
1684
|
-
return {
|
|
1685
|
-
color: "#101721",
|
|
1686
|
-
qrType: "default",
|
|
1687
|
-
margin: 0
|
|
1688
|
-
};
|
|
1689
|
-
}
|
|
1690
1711
|
}]);
|
|
1691
1712
|
|
|
1692
1713
|
return PlattarController;
|
|
@@ -1694,7 +1715,7 @@ function _typeof(obj) { "@babel/helpers - typeof"; return _typeof = "function" =
|
|
|
1694
1715
|
|
|
1695
1716
|
exports.PlattarController = PlattarController;
|
|
1696
1717
|
}, {
|
|
1697
|
-
"@plattar/plattar-api":
|
|
1718
|
+
"@plattar/plattar-api": 43
|
|
1698
1719
|
}],
|
|
1699
1720
|
9: [function (require, module, exports) {
|
|
1700
1721
|
"use strict";
|
|
@@ -1764,7 +1785,8 @@ function _typeof(obj) { "@babel/helpers - typeof"; return _typeof = "function" =
|
|
|
1764
1785
|
var productID = _this17.getAttribute("product-id");
|
|
1765
1786
|
|
|
1766
1787
|
if (productID) {
|
|
1767
|
-
var opt = options ||
|
|
1788
|
+
var opt = options || _this17._GetDefaultQROptions();
|
|
1789
|
+
|
|
1768
1790
|
var viewer = document.createElement("plattar-qrcode"); // required attributes with defaults for plattar-viewer node
|
|
1769
1791
|
|
|
1770
1792
|
var width = _this17.getAttribute("width") || "500px";
|
|
@@ -1782,8 +1804,9 @@ function _typeof(obj) { "@babel/helpers - typeof"; return _typeof = "function" =
|
|
|
1782
1804
|
|
|
1783
1805
|
if (opt.qrType) {
|
|
1784
1806
|
viewer.setAttribute("qr-type", opt.qrType);
|
|
1785
|
-
}
|
|
1807
|
+
}
|
|
1786
1808
|
|
|
1809
|
+
viewer.setAttribute("shorten", opt.shorten && (opt.shorten === true || opt.shorten === "true") ? "true" : "false"); // optional attributes
|
|
1787
1810
|
|
|
1788
1811
|
var variationID = _this17.getAttribute("variation-id");
|
|
1789
1812
|
|
|
@@ -1927,7 +1950,7 @@ function _typeof(obj) { "@babel/helpers - typeof"; return _typeof = "function" =
|
|
|
1927
1950
|
"../../ar/product-ar": 3,
|
|
1928
1951
|
"../../util/util": 15,
|
|
1929
1952
|
"./plattar-controller": 8,
|
|
1930
|
-
"@plattar/plattar-api":
|
|
1953
|
+
"@plattar/plattar-api": 43
|
|
1931
1954
|
}],
|
|
1932
1955
|
10: [function (require, module, exports) {
|
|
1933
1956
|
"use strict";
|
|
@@ -2004,7 +2027,8 @@ function _typeof(obj) { "@babel/helpers - typeof"; return _typeof = "function" =
|
|
|
2004
2027
|
var sceneID = _this20.getAttribute("scene-id");
|
|
2005
2028
|
|
|
2006
2029
|
if (sceneID) {
|
|
2007
|
-
var opt = options ||
|
|
2030
|
+
var opt = options || _this20._GetDefaultQROptions();
|
|
2031
|
+
|
|
2008
2032
|
var viewer = document.createElement("plattar-qrcode"); // required attributes with defaults for plattar-viewer node
|
|
2009
2033
|
|
|
2010
2034
|
var width = _this20.getAttribute("width") || "500px";
|
|
@@ -2024,6 +2048,7 @@ function _typeof(obj) { "@babel/helpers - typeof"; return _typeof = "function" =
|
|
|
2024
2048
|
viewer.setAttribute("qr-type", opt.qrType);
|
|
2025
2049
|
}
|
|
2026
2050
|
|
|
2051
|
+
viewer.setAttribute("shorten", opt.shorten && (opt.shorten === true || opt.shorten === "true") ? "true" : "false");
|
|
2027
2052
|
var dst = plattar_api_1.Server.location().base + "renderer/viewer.html?scene_id=" + sceneID; // optional attributes
|
|
2028
2053
|
|
|
2029
2054
|
var productID = _this20.getAttribute("product-id") || _this20.getAttribute("scene-product-id");
|
|
@@ -2224,7 +2249,7 @@ function _typeof(obj) { "@babel/helpers - typeof"; return _typeof = "function" =
|
|
|
2224
2249
|
"../../util/configurator-state": 14,
|
|
2225
2250
|
"../../util/util": 15,
|
|
2226
2251
|
"./plattar-controller": 8,
|
|
2227
|
-
"@plattar/plattar-api":
|
|
2252
|
+
"@plattar/plattar-api": 43
|
|
2228
2253
|
}],
|
|
2229
2254
|
11: [function (require, module, exports) {
|
|
2230
2255
|
"use strict";
|
|
@@ -2283,7 +2308,8 @@ function _typeof(obj) { "@babel/helpers - typeof"; return _typeof = "function" =
|
|
|
2283
2308
|
var sceneID = _this23.getAttribute("scene-id");
|
|
2284
2309
|
|
|
2285
2310
|
if (sceneID) {
|
|
2286
|
-
var opt = options ||
|
|
2311
|
+
var opt = options || _this23._GetDefaultQROptions();
|
|
2312
|
+
|
|
2287
2313
|
var viewer = document.createElement("plattar-qrcode"); // required attributes with defaults for plattar-viewer node
|
|
2288
2314
|
|
|
2289
2315
|
var width = _this23.getAttribute("width") || "500px";
|
|
@@ -2303,6 +2329,7 @@ function _typeof(obj) { "@babel/helpers - typeof"; return _typeof = "function" =
|
|
|
2303
2329
|
viewer.setAttribute("qr-type", opt.qrType);
|
|
2304
2330
|
}
|
|
2305
2331
|
|
|
2332
|
+
viewer.setAttribute("shorten", opt.shorten && (opt.shorten === true || opt.shorten === "true") ? "true" : "false");
|
|
2306
2333
|
var dst = plattar_api_1.Server.location().base + "renderer/facear.html?scene_id=" + sceneID; // optional attributes
|
|
2307
2334
|
|
|
2308
2335
|
var configState = _this23.getAttribute("config-state");
|
|
@@ -2538,8 +2565,8 @@ function _typeof(obj) { "@babel/helpers - typeof"; return _typeof = "function" =
|
|
|
2538
2565
|
"../../ar/raw-ar": 4,
|
|
2539
2566
|
"../../util/util": 15,
|
|
2540
2567
|
"./plattar-controller": 8,
|
|
2541
|
-
"@plattar/plattar-api":
|
|
2542
|
-
"@plattar/plattar-services":
|
|
2568
|
+
"@plattar/plattar-api": 43,
|
|
2569
|
+
"@plattar/plattar-services": 114
|
|
2543
2570
|
}],
|
|
2544
2571
|
12: [function (require, module, exports) {
|
|
2545
2572
|
"use strict";
|
|
@@ -2762,7 +2789,7 @@ function _typeof(obj) { "@babel/helpers - typeof"; return _typeof = "function" =
|
|
|
2762
2789
|
"./controllers/product-controller": 9,
|
|
2763
2790
|
"./controllers/viewer-controller": 10,
|
|
2764
2791
|
"./controllers/vto-controller": 11,
|
|
2765
|
-
"@plattar/plattar-api":
|
|
2792
|
+
"@plattar/plattar-api": 43
|
|
2766
2793
|
}],
|
|
2767
2794
|
13: [function (require, module, exports) {
|
|
2768
2795
|
"use strict";
|
|
@@ -2915,8 +2942,8 @@ function _typeof(obj) { "@babel/helpers - typeof"; return _typeof = "function" =
|
|
|
2915
2942
|
"./util/configurator-state": 14,
|
|
2916
2943
|
"./util/util": 15,
|
|
2917
2944
|
"./version": 16,
|
|
2918
|
-
"@plattar/plattar-qrcode":
|
|
2919
|
-
"@plattar/plattar-web":
|
|
2945
|
+
"@plattar/plattar-qrcode": 109,
|
|
2946
|
+
"@plattar/plattar-web": 128
|
|
2920
2947
|
}],
|
|
2921
2948
|
14: [function (require, module, exports) {
|
|
2922
2949
|
"use strict";
|
|
@@ -3208,7 +3235,7 @@ function _typeof(obj) { "@babel/helpers - typeof"; return _typeof = "function" =
|
|
|
3208
3235
|
|
|
3209
3236
|
exports.ConfiguratorState = ConfiguratorState;
|
|
3210
3237
|
}, {
|
|
3211
|
-
"@plattar/plattar-api":
|
|
3238
|
+
"@plattar/plattar-api": 43
|
|
3212
3239
|
}],
|
|
3213
3240
|
15: [function (require, module, exports) {
|
|
3214
3241
|
"use strict";
|
|
@@ -3340,7 +3367,7 @@ function _typeof(obj) { "@babel/helpers - typeof"; return _typeof = "function" =
|
|
|
3340
3367
|
Object.defineProperty(exports, "__esModule", {
|
|
3341
3368
|
value: true
|
|
3342
3369
|
});
|
|
3343
|
-
exports["default"] = "1.
|
|
3370
|
+
exports["default"] = "1.135.2";
|
|
3344
3371
|
}, {}],
|
|
3345
3372
|
17: [function (require, module, exports) {
|
|
3346
3373
|
"use strict";
|
|
@@ -4983,6 +5010,11 @@ function _typeof(obj) { "@babel/helpers - typeof"; return _typeof = "function" =
|
|
|
4983
5010
|
value: function push(key, value) {
|
|
4984
5011
|
this._map.set(key, value);
|
|
4985
5012
|
}
|
|
5013
|
+
}, {
|
|
5014
|
+
key: "get",
|
|
5015
|
+
value: function get(key) {
|
|
5016
|
+
return this._map.get(key);
|
|
5017
|
+
}
|
|
4986
5018
|
}, {
|
|
4987
5019
|
key: "data",
|
|
4988
5020
|
get: function get() {
|
|
@@ -5025,7 +5057,7 @@ function _typeof(obj) { "@babel/helpers - typeof"; return _typeof = "function" =
|
|
|
5025
5057
|
|
|
5026
5058
|
exports.AnalyticsData = AnalyticsData;
|
|
5027
5059
|
}, {
|
|
5028
|
-
"../util/util":
|
|
5060
|
+
"../util/util": 41
|
|
5029
5061
|
}],
|
|
5030
5062
|
37: [function (require, module, exports) {
|
|
5031
5063
|
"use strict";
|
|
@@ -5045,6 +5077,8 @@ function _typeof(obj) { "@babel/helpers - typeof"; return _typeof = "function" =
|
|
|
5045
5077
|
|
|
5046
5078
|
var analytics_data_1 = require("./analytics-data");
|
|
5047
5079
|
|
|
5080
|
+
var google_analytics_1 = require("./google/google-analytics");
|
|
5081
|
+
|
|
5048
5082
|
var Analytics = /*#__PURE__*/function () {
|
|
5049
5083
|
function Analytics(applicationID) {
|
|
5050
5084
|
var _this41 = this;
|
|
@@ -5061,6 +5095,7 @@ function _typeof(obj) { "@babel/helpers - typeof"; return _typeof = "function" =
|
|
|
5061
5095
|
this.isBeacon = false;
|
|
5062
5096
|
this._applicationID = applicationID;
|
|
5063
5097
|
this._data = new analytics_data_1.AnalyticsData();
|
|
5098
|
+
this._ga = new google_analytics_1.GoogleAnalytics();
|
|
5064
5099
|
|
|
5065
5100
|
this._handlePageHide = function () {
|
|
5066
5101
|
if (document.visibilityState === "hidden") {
|
|
@@ -5084,6 +5119,11 @@ function _typeof(obj) { "@babel/helpers - typeof"; return _typeof = "function" =
|
|
|
5084
5119
|
}
|
|
5085
5120
|
|
|
5086
5121
|
_createClass(Analytics, [{
|
|
5122
|
+
key: "googleAnalytics",
|
|
5123
|
+
get: function get() {
|
|
5124
|
+
return this._ga;
|
|
5125
|
+
}
|
|
5126
|
+
}, {
|
|
5087
5127
|
key: "query",
|
|
5088
5128
|
value: function query() {
|
|
5089
5129
|
var _this42 = this;
|
|
@@ -5133,6 +5173,8 @@ function _typeof(obj) { "@babel/helpers - typeof"; return _typeof = "function" =
|
|
|
5133
5173
|
accept(result && result.results ? result.results : {});
|
|
5134
5174
|
})["catch"](reject);
|
|
5135
5175
|
}
|
|
5176
|
+
|
|
5177
|
+
_this43.googleAnalytics.write(_this43.event, _this43.data);
|
|
5136
5178
|
});
|
|
5137
5179
|
}
|
|
5138
5180
|
}, {
|
|
@@ -5152,12 +5194,129 @@ function _typeof(obj) { "@babel/helpers - typeof"; return _typeof = "function" =
|
|
|
5152
5194
|
|
|
5153
5195
|
exports.Analytics = Analytics;
|
|
5154
5196
|
}, {
|
|
5155
|
-
"../util/basic-http":
|
|
5156
|
-
"./analytics-data": 36
|
|
5197
|
+
"../util/basic-http": 40,
|
|
5198
|
+
"./analytics-data": 36,
|
|
5199
|
+
"./google/google-analytics": 38
|
|
5157
5200
|
}],
|
|
5158
5201
|
38: [function (require, module, exports) {
|
|
5159
5202
|
"use strict";
|
|
5160
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
|
+
|
|
5161
5320
|
var __createBinding = this && this.__createBinding || (Object.create ? function (o, m, k, k2) {
|
|
5162
5321
|
if (k2 === undefined) k2 = k;
|
|
5163
5322
|
var desc = Object.getOwnPropertyDescriptor(m, k);
|
|
@@ -5224,9 +5383,9 @@ function _typeof(obj) { "@babel/helpers - typeof"; return _typeof = "function" =
|
|
|
5224
5383
|
console.log("using @plattar/plattar-analytics v" + version_1["default"]);
|
|
5225
5384
|
}, {
|
|
5226
5385
|
"./analytics/analytics": 37,
|
|
5227
|
-
"./version":
|
|
5386
|
+
"./version": 42
|
|
5228
5387
|
}],
|
|
5229
|
-
|
|
5388
|
+
40: [function (require, module, exports) {
|
|
5230
5389
|
"use strict";
|
|
5231
5390
|
|
|
5232
5391
|
Object.defineProperty(exports, "__esModule", {
|
|
@@ -5312,7 +5471,7 @@ function _typeof(obj) { "@babel/helpers - typeof"; return _typeof = "function" =
|
|
|
5312
5471
|
|
|
5313
5472
|
exports["default"] = BasicHTTP;
|
|
5314
5473
|
}, {}],
|
|
5315
|
-
|
|
5474
|
+
41: [function (require, module, exports) {
|
|
5316
5475
|
"use strict";
|
|
5317
5476
|
|
|
5318
5477
|
Object.defineProperty(exports, "__esModule", {
|
|
@@ -5351,15 +5510,15 @@ function _typeof(obj) { "@babel/helpers - typeof"; return _typeof = "function" =
|
|
|
5351
5510
|
|
|
5352
5511
|
exports.Util = Util;
|
|
5353
5512
|
}, {}],
|
|
5354
|
-
|
|
5513
|
+
42: [function (require, module, exports) {
|
|
5355
5514
|
"use strict";
|
|
5356
5515
|
|
|
5357
5516
|
Object.defineProperty(exports, "__esModule", {
|
|
5358
5517
|
value: true
|
|
5359
5518
|
});
|
|
5360
|
-
exports["default"] = "1.
|
|
5519
|
+
exports["default"] = "1.134.3";
|
|
5361
5520
|
}, {}],
|
|
5362
|
-
|
|
5521
|
+
43: [function (require, module, exports) {
|
|
5363
5522
|
"use strict";
|
|
5364
5523
|
|
|
5365
5524
|
var Server = require("./server/plattar-server.js");
|
|
@@ -5562,67 +5721,67 @@ function _typeof(obj) { "@babel/helpers - typeof"; return _typeof = "function" =
|
|
|
5562
5721
|
version: Version
|
|
5563
5722
|
};
|
|
5564
5723
|
}, {
|
|
5565
|
-
"./server/plattar-server.js":
|
|
5566
|
-
"./types/application.js":
|
|
5567
|
-
"./types/content-pipeline/brief.js":
|
|
5568
|
-
"./types/content-pipeline/comment-brief.js":
|
|
5569
|
-
"./types/content-pipeline/comment-quote.js":
|
|
5570
|
-
"./types/content-pipeline/comment-solution.js":
|
|
5571
|
-
"./types/content-pipeline/folder.js":
|
|
5572
|
-
"./types/content-pipeline/pipeline-user.js":
|
|
5573
|
-
"./types/content-pipeline/quote.js":
|
|
5574
|
-
"./types/content-pipeline/rating.js":
|
|
5575
|
-
"./types/content-pipeline/solution.js":
|
|
5576
|
-
"./types/file/file-audio.js":
|
|
5577
|
-
"./types/file/file-base.js":
|
|
5578
|
-
"./types/file/file-image.js":
|
|
5579
|
-
"./types/file/file-model.js":
|
|
5580
|
-
"./types/file/file-script.js":
|
|
5581
|
-
"./types/file/file-video.js":
|
|
5582
|
-
"./types/misc/application-build.js":
|
|
5583
|
-
"./types/misc/asset-library.js":
|
|
5584
|
-
"./types/misc/async-job.js":
|
|
5585
|
-
"./types/misc/script-event.js":
|
|
5586
|
-
"./types/misc/tag.js":
|
|
5587
|
-
"./types/page/card-base.js":
|
|
5588
|
-
"./types/page/card-button.js":
|
|
5589
|
-
"./types/page/card-html.js":
|
|
5590
|
-
"./types/page/card-iframe.js":
|
|
5591
|
-
"./types/page/card-image.js":
|
|
5592
|
-
"./types/page/card-map.js":
|
|
5593
|
-
"./types/page/card-paragraph.js":
|
|
5594
|
-
"./types/page/card-row.js":
|
|
5595
|
-
"./types/page/card-slider.js":
|
|
5596
|
-
"./types/page/card-title.js":
|
|
5597
|
-
"./types/page/card-video.js":
|
|
5598
|
-
"./types/page/card-youtube.js":
|
|
5599
|
-
"./types/page/page.js":
|
|
5600
|
-
"./types/product/product-annotation.js":
|
|
5601
|
-
"./types/product/product-base.js":
|
|
5602
|
-
"./types/product/product-variation.js":
|
|
5603
|
-
"./types/product/product.js":
|
|
5604
|
-
"./types/scene/scene-annotation.js":
|
|
5605
|
-
"./types/scene/scene-audio.js":
|
|
5606
|
-
"./types/scene/scene-base.js":
|
|
5607
|
-
"./types/scene/scene-button.js":
|
|
5608
|
-
"./types/scene/scene-camera.js":
|
|
5609
|
-
"./types/scene/scene-carousel.js":
|
|
5610
|
-
"./types/scene/scene-image.js":
|
|
5611
|
-
"./types/scene/scene-model.js":
|
|
5612
|
-
"./types/scene/scene-panorama.js":
|
|
5613
|
-
"./types/scene/scene-poller.js":
|
|
5614
|
-
"./types/scene/scene-product.js":
|
|
5615
|
-
"./types/scene/scene-script.js":
|
|
5616
|
-
"./types/scene/scene-shadow.js":
|
|
5617
|
-
"./types/scene/scene-video.js":
|
|
5618
|
-
"./types/scene/scene-volumetric.js":
|
|
5619
|
-
"./types/scene/scene-youtube.js":
|
|
5620
|
-
"./types/scene/scene.js":
|
|
5621
|
-
"./types/trigger/trigger-image.js":
|
|
5622
|
-
"./util/plattar-util.js":
|
|
5623
|
-
"./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
|
|
5624
5783
|
}],
|
|
5625
|
-
|
|
5784
|
+
44: [function (require, module, exports) {
|
|
5626
5785
|
var fetch = require("node-fetch");
|
|
5627
5786
|
|
|
5628
5787
|
var PlattarQuery = /*#__PURE__*/function () {
|
|
@@ -6106,10 +6265,10 @@ function _typeof(obj) { "@babel/helpers - typeof"; return _typeof = "function" =
|
|
|
6106
6265
|
|
|
6107
6266
|
module.exports = PlattarQuery;
|
|
6108
6267
|
}, {
|
|
6109
|
-
"../util/plattar-util.js":
|
|
6110
|
-
"node-fetch":
|
|
6268
|
+
"../util/plattar-util.js": 105,
|
|
6269
|
+
"node-fetch": 131
|
|
6111
6270
|
}],
|
|
6112
|
-
|
|
6271
|
+
45: [function (require, module, exports) {
|
|
6113
6272
|
(function (process) {
|
|
6114
6273
|
(function () {
|
|
6115
6274
|
var fetch = require("node-fetch");
|
|
@@ -6331,10 +6490,10 @@ function _typeof(obj) { "@babel/helpers - typeof"; return _typeof = "function" =
|
|
|
6331
6490
|
}).call(this);
|
|
6332
6491
|
}).call(this, require('_process'));
|
|
6333
6492
|
}, {
|
|
6334
|
-
"_process":
|
|
6335
|
-
"node-fetch":
|
|
6493
|
+
"_process": 133,
|
|
6494
|
+
"node-fetch": 131
|
|
6336
6495
|
}],
|
|
6337
|
-
|
|
6496
|
+
46: [function (require, module, exports) {
|
|
6338
6497
|
var PlattarBase = require("./interfaces/plattar-base.js");
|
|
6339
6498
|
|
|
6340
6499
|
var Application = /*#__PURE__*/function (_PlattarBase) {
|
|
@@ -6360,9 +6519,9 @@ function _typeof(obj) { "@babel/helpers - typeof"; return _typeof = "function" =
|
|
|
6360
6519
|
|
|
6361
6520
|
module.exports = Application;
|
|
6362
6521
|
}, {
|
|
6363
|
-
"./interfaces/plattar-base.js":
|
|
6522
|
+
"./interfaces/plattar-base.js": 62
|
|
6364
6523
|
}],
|
|
6365
|
-
|
|
6524
|
+
47: [function (require, module, exports) {
|
|
6366
6525
|
var PlattarBase = require("../interfaces/plattar-base");
|
|
6367
6526
|
|
|
6368
6527
|
var Brief = /*#__PURE__*/function (_PlattarBase2) {
|
|
@@ -6388,9 +6547,9 @@ function _typeof(obj) { "@babel/helpers - typeof"; return _typeof = "function" =
|
|
|
6388
6547
|
|
|
6389
6548
|
module.exports = Brief;
|
|
6390
6549
|
}, {
|
|
6391
|
-
"../interfaces/plattar-base":
|
|
6550
|
+
"../interfaces/plattar-base": 62
|
|
6392
6551
|
}],
|
|
6393
|
-
|
|
6552
|
+
48: [function (require, module, exports) {
|
|
6394
6553
|
var PlattarBase = require("../interfaces/plattar-base");
|
|
6395
6554
|
|
|
6396
6555
|
var CommentBrief = /*#__PURE__*/function (_PlattarBase3) {
|
|
@@ -6416,9 +6575,9 @@ function _typeof(obj) { "@babel/helpers - typeof"; return _typeof = "function" =
|
|
|
6416
6575
|
|
|
6417
6576
|
module.exports = CommentBrief;
|
|
6418
6577
|
}, {
|
|
6419
|
-
"../interfaces/plattar-base":
|
|
6578
|
+
"../interfaces/plattar-base": 62
|
|
6420
6579
|
}],
|
|
6421
|
-
|
|
6580
|
+
49: [function (require, module, exports) {
|
|
6422
6581
|
var PlattarBase = require("../interfaces/plattar-base");
|
|
6423
6582
|
|
|
6424
6583
|
var CommentQuote = /*#__PURE__*/function (_PlattarBase4) {
|
|
@@ -6444,9 +6603,9 @@ function _typeof(obj) { "@babel/helpers - typeof"; return _typeof = "function" =
|
|
|
6444
6603
|
|
|
6445
6604
|
module.exports = CommentQuote;
|
|
6446
6605
|
}, {
|
|
6447
|
-
"../interfaces/plattar-base":
|
|
6606
|
+
"../interfaces/plattar-base": 62
|
|
6448
6607
|
}],
|
|
6449
|
-
|
|
6608
|
+
50: [function (require, module, exports) {
|
|
6450
6609
|
var PlattarBase = require("../interfaces/plattar-base");
|
|
6451
6610
|
|
|
6452
6611
|
var CommentSolution = /*#__PURE__*/function (_PlattarBase5) {
|
|
@@ -6472,9 +6631,9 @@ function _typeof(obj) { "@babel/helpers - typeof"; return _typeof = "function" =
|
|
|
6472
6631
|
|
|
6473
6632
|
module.exports = CommentSolution;
|
|
6474
6633
|
}, {
|
|
6475
|
-
"../interfaces/plattar-base":
|
|
6634
|
+
"../interfaces/plattar-base": 62
|
|
6476
6635
|
}],
|
|
6477
|
-
|
|
6636
|
+
51: [function (require, module, exports) {
|
|
6478
6637
|
var PlattarBase = require("../interfaces/plattar-base");
|
|
6479
6638
|
|
|
6480
6639
|
var Folder = /*#__PURE__*/function (_PlattarBase6) {
|
|
@@ -6500,9 +6659,9 @@ function _typeof(obj) { "@babel/helpers - typeof"; return _typeof = "function" =
|
|
|
6500
6659
|
|
|
6501
6660
|
module.exports = Folder;
|
|
6502
6661
|
}, {
|
|
6503
|
-
"../interfaces/plattar-base":
|
|
6662
|
+
"../interfaces/plattar-base": 62
|
|
6504
6663
|
}],
|
|
6505
|
-
|
|
6664
|
+
52: [function (require, module, exports) {
|
|
6506
6665
|
var PlattarBase = require("../interfaces/plattar-base");
|
|
6507
6666
|
|
|
6508
6667
|
var PipelineUser = /*#__PURE__*/function (_PlattarBase7) {
|
|
@@ -6528,9 +6687,9 @@ function _typeof(obj) { "@babel/helpers - typeof"; return _typeof = "function" =
|
|
|
6528
6687
|
|
|
6529
6688
|
module.exports = PipelineUser;
|
|
6530
6689
|
}, {
|
|
6531
|
-
"../interfaces/plattar-base":
|
|
6690
|
+
"../interfaces/plattar-base": 62
|
|
6532
6691
|
}],
|
|
6533
|
-
|
|
6692
|
+
53: [function (require, module, exports) {
|
|
6534
6693
|
var PlattarBase = require("../interfaces/plattar-base");
|
|
6535
6694
|
|
|
6536
6695
|
var Quote = /*#__PURE__*/function (_PlattarBase8) {
|
|
@@ -6556,9 +6715,9 @@ function _typeof(obj) { "@babel/helpers - typeof"; return _typeof = "function" =
|
|
|
6556
6715
|
|
|
6557
6716
|
module.exports = Quote;
|
|
6558
6717
|
}, {
|
|
6559
|
-
"../interfaces/plattar-base":
|
|
6718
|
+
"../interfaces/plattar-base": 62
|
|
6560
6719
|
}],
|
|
6561
|
-
|
|
6720
|
+
54: [function (require, module, exports) {
|
|
6562
6721
|
var PlattarBase = require("../interfaces/plattar-base");
|
|
6563
6722
|
|
|
6564
6723
|
var Rating = /*#__PURE__*/function (_PlattarBase9) {
|
|
@@ -6584,9 +6743,9 @@ function _typeof(obj) { "@babel/helpers - typeof"; return _typeof = "function" =
|
|
|
6584
6743
|
|
|
6585
6744
|
module.exports = Rating;
|
|
6586
6745
|
}, {
|
|
6587
|
-
"../interfaces/plattar-base":
|
|
6746
|
+
"../interfaces/plattar-base": 62
|
|
6588
6747
|
}],
|
|
6589
|
-
|
|
6748
|
+
55: [function (require, module, exports) {
|
|
6590
6749
|
var PlattarBase = require("../interfaces/plattar-base");
|
|
6591
6750
|
|
|
6592
6751
|
var Solution = /*#__PURE__*/function (_PlattarBase10) {
|
|
@@ -6612,9 +6771,9 @@ function _typeof(obj) { "@babel/helpers - typeof"; return _typeof = "function" =
|
|
|
6612
6771
|
|
|
6613
6772
|
module.exports = Solution;
|
|
6614
6773
|
}, {
|
|
6615
|
-
"../interfaces/plattar-base":
|
|
6774
|
+
"../interfaces/plattar-base": 62
|
|
6616
6775
|
}],
|
|
6617
|
-
|
|
6776
|
+
56: [function (require, module, exports) {
|
|
6618
6777
|
var FileBase = require("./file-base.js");
|
|
6619
6778
|
|
|
6620
6779
|
var FileAudio = /*#__PURE__*/function (_FileBase) {
|
|
@@ -6640,9 +6799,9 @@ function _typeof(obj) { "@babel/helpers - typeof"; return _typeof = "function" =
|
|
|
6640
6799
|
|
|
6641
6800
|
module.exports = FileAudio;
|
|
6642
6801
|
}, {
|
|
6643
|
-
"./file-base.js":
|
|
6802
|
+
"./file-base.js": 57
|
|
6644
6803
|
}],
|
|
6645
|
-
|
|
6804
|
+
57: [function (require, module, exports) {
|
|
6646
6805
|
var PlattarBase = require("../interfaces/plattar-base.js");
|
|
6647
6806
|
|
|
6648
6807
|
var Server = require("../../server/plattar-server.js");
|
|
@@ -6728,14 +6887,14 @@ function _typeof(obj) { "@babel/helpers - typeof"; return _typeof = "function" =
|
|
|
6728
6887
|
|
|
6729
6888
|
module.exports = FileBase;
|
|
6730
6889
|
}, {
|
|
6731
|
-
"../../server/plattar-server.js":
|
|
6732
|
-
"../interfaces/plattar-base.js":
|
|
6733
|
-
"./file-audio.js":
|
|
6734
|
-
"./file-image.js":
|
|
6735
|
-
"./file-model.js":
|
|
6736
|
-
"./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
|
|
6737
6896
|
}],
|
|
6738
|
-
|
|
6897
|
+
58: [function (require, module, exports) {
|
|
6739
6898
|
var FileBase = require("./file-base.js");
|
|
6740
6899
|
|
|
6741
6900
|
var FileImage = /*#__PURE__*/function (_FileBase2) {
|
|
@@ -6761,9 +6920,9 @@ function _typeof(obj) { "@babel/helpers - typeof"; return _typeof = "function" =
|
|
|
6761
6920
|
|
|
6762
6921
|
module.exports = FileImage;
|
|
6763
6922
|
}, {
|
|
6764
|
-
"./file-base.js":
|
|
6923
|
+
"./file-base.js": 57
|
|
6765
6924
|
}],
|
|
6766
|
-
|
|
6925
|
+
59: [function (require, module, exports) {
|
|
6767
6926
|
var FileBase = require("./file-base.js");
|
|
6768
6927
|
|
|
6769
6928
|
var FileModel = /*#__PURE__*/function (_FileBase3) {
|
|
@@ -6789,9 +6948,9 @@ function _typeof(obj) { "@babel/helpers - typeof"; return _typeof = "function" =
|
|
|
6789
6948
|
|
|
6790
6949
|
module.exports = FileModel;
|
|
6791
6950
|
}, {
|
|
6792
|
-
"./file-base.js":
|
|
6951
|
+
"./file-base.js": 57
|
|
6793
6952
|
}],
|
|
6794
|
-
|
|
6953
|
+
60: [function (require, module, exports) {
|
|
6795
6954
|
var FileBase = require("./file-base.js");
|
|
6796
6955
|
|
|
6797
6956
|
var FileScript = /*#__PURE__*/function (_FileBase4) {
|
|
@@ -6817,9 +6976,9 @@ function _typeof(obj) { "@babel/helpers - typeof"; return _typeof = "function" =
|
|
|
6817
6976
|
|
|
6818
6977
|
module.exports = FileScript;
|
|
6819
6978
|
}, {
|
|
6820
|
-
"./file-base.js":
|
|
6979
|
+
"./file-base.js": 57
|
|
6821
6980
|
}],
|
|
6822
|
-
|
|
6981
|
+
61: [function (require, module, exports) {
|
|
6823
6982
|
var FileBase = require("./file-base.js");
|
|
6824
6983
|
|
|
6825
6984
|
var FileVideo = /*#__PURE__*/function (_FileBase5) {
|
|
@@ -6845,9 +7004,9 @@ function _typeof(obj) { "@babel/helpers - typeof"; return _typeof = "function" =
|
|
|
6845
7004
|
|
|
6846
7005
|
module.exports = FileVideo;
|
|
6847
7006
|
}, {
|
|
6848
|
-
"./file-base.js":
|
|
7007
|
+
"./file-base.js": 57
|
|
6849
7008
|
}],
|
|
6850
|
-
|
|
7009
|
+
62: [function (require, module, exports) {
|
|
6851
7010
|
var PlattarObject = require("./plattar-object.js");
|
|
6852
7011
|
|
|
6853
7012
|
var Server = require("../../server/plattar-server.js");
|
|
@@ -6876,10 +7035,10 @@ function _typeof(obj) { "@babel/helpers - typeof"; return _typeof = "function" =
|
|
|
6876
7035
|
|
|
6877
7036
|
module.exports = PlattarBase;
|
|
6878
7037
|
}, {
|
|
6879
|
-
"../../server/plattar-server.js":
|
|
6880
|
-
"./plattar-object.js":
|
|
7038
|
+
"../../server/plattar-server.js": 45,
|
|
7039
|
+
"./plattar-object.js": 64
|
|
6881
7040
|
}],
|
|
6882
|
-
|
|
7041
|
+
63: [function (require, module, exports) {
|
|
6883
7042
|
/**
|
|
6884
7043
|
* Handles the list of relationships for the provided object
|
|
6885
7044
|
*/
|
|
@@ -7015,9 +7174,9 @@ function _typeof(obj) { "@babel/helpers - typeof"; return _typeof = "function" =
|
|
|
7015
7174
|
|
|
7016
7175
|
module.exports = PlattarObjectRelations;
|
|
7017
7176
|
}, {
|
|
7018
|
-
"../../util/plattar-util.js":
|
|
7177
|
+
"../../util/plattar-util.js": 105
|
|
7019
7178
|
}],
|
|
7020
|
-
|
|
7179
|
+
64: [function (require, module, exports) {
|
|
7021
7180
|
var PlattarQuery = require("../../server/plattar-query.js");
|
|
7022
7181
|
|
|
7023
7182
|
var PlattarObjectRelations = require("./plattar-object-relations.js");
|
|
@@ -7197,10 +7356,10 @@ function _typeof(obj) { "@babel/helpers - typeof"; return _typeof = "function" =
|
|
|
7197
7356
|
|
|
7198
7357
|
module.exports = PlattarObject;
|
|
7199
7358
|
}, {
|
|
7200
|
-
"../../server/plattar-query.js":
|
|
7201
|
-
"./plattar-object-relations.js":
|
|
7359
|
+
"../../server/plattar-query.js": 44,
|
|
7360
|
+
"./plattar-object-relations.js": 63
|
|
7202
7361
|
}],
|
|
7203
|
-
|
|
7362
|
+
65: [function (require, module, exports) {
|
|
7204
7363
|
var PlattarBase = require("../interfaces/plattar-base.js");
|
|
7205
7364
|
|
|
7206
7365
|
var ApplicationBuild = /*#__PURE__*/function (_PlattarBase12) {
|
|
@@ -7226,9 +7385,9 @@ function _typeof(obj) { "@babel/helpers - typeof"; return _typeof = "function" =
|
|
|
7226
7385
|
|
|
7227
7386
|
module.exports = ApplicationBuild;
|
|
7228
7387
|
}, {
|
|
7229
|
-
"../interfaces/plattar-base.js":
|
|
7388
|
+
"../interfaces/plattar-base.js": 62
|
|
7230
7389
|
}],
|
|
7231
|
-
|
|
7390
|
+
66: [function (require, module, exports) {
|
|
7232
7391
|
var PlattarBase = require("../interfaces/plattar-base.js");
|
|
7233
7392
|
|
|
7234
7393
|
var AssetLibrary = /*#__PURE__*/function (_PlattarBase13) {
|
|
@@ -7254,9 +7413,9 @@ function _typeof(obj) { "@babel/helpers - typeof"; return _typeof = "function" =
|
|
|
7254
7413
|
|
|
7255
7414
|
module.exports = AssetLibrary;
|
|
7256
7415
|
}, {
|
|
7257
|
-
"../interfaces/plattar-base.js":
|
|
7416
|
+
"../interfaces/plattar-base.js": 62
|
|
7258
7417
|
}],
|
|
7259
|
-
|
|
7418
|
+
67: [function (require, module, exports) {
|
|
7260
7419
|
var PlattarBase = require("../interfaces/plattar-base.js");
|
|
7261
7420
|
|
|
7262
7421
|
var AsyncJob = /*#__PURE__*/function (_PlattarBase14) {
|
|
@@ -7287,9 +7446,9 @@ function _typeof(obj) { "@babel/helpers - typeof"; return _typeof = "function" =
|
|
|
7287
7446
|
|
|
7288
7447
|
module.exports = AsyncJob;
|
|
7289
7448
|
}, {
|
|
7290
|
-
"../interfaces/plattar-base.js":
|
|
7449
|
+
"../interfaces/plattar-base.js": 62
|
|
7291
7450
|
}],
|
|
7292
|
-
|
|
7451
|
+
68: [function (require, module, exports) {
|
|
7293
7452
|
var PlattarBase = require("../interfaces/plattar-base.js");
|
|
7294
7453
|
|
|
7295
7454
|
var ScriptEvent = /*#__PURE__*/function (_PlattarBase15) {
|
|
@@ -7315,9 +7474,9 @@ function _typeof(obj) { "@babel/helpers - typeof"; return _typeof = "function" =
|
|
|
7315
7474
|
|
|
7316
7475
|
module.exports = ScriptEvent;
|
|
7317
7476
|
}, {
|
|
7318
|
-
"../interfaces/plattar-base.js":
|
|
7477
|
+
"../interfaces/plattar-base.js": 62
|
|
7319
7478
|
}],
|
|
7320
|
-
|
|
7479
|
+
69: [function (require, module, exports) {
|
|
7321
7480
|
var PlattarBase = require("../interfaces/plattar-base.js");
|
|
7322
7481
|
|
|
7323
7482
|
var Tag = /*#__PURE__*/function (_PlattarBase16) {
|
|
@@ -7343,9 +7502,9 @@ function _typeof(obj) { "@babel/helpers - typeof"; return _typeof = "function" =
|
|
|
7343
7502
|
|
|
7344
7503
|
module.exports = Tag;
|
|
7345
7504
|
}, {
|
|
7346
|
-
"../interfaces/plattar-base.js":
|
|
7505
|
+
"../interfaces/plattar-base.js": 62
|
|
7347
7506
|
}],
|
|
7348
|
-
|
|
7507
|
+
70: [function (require, module, exports) {
|
|
7349
7508
|
var PlattarBase = require("../interfaces/plattar-base.js");
|
|
7350
7509
|
|
|
7351
7510
|
var Server = require("../../server/plattar-server.js");
|
|
@@ -7403,21 +7562,21 @@ function _typeof(obj) { "@babel/helpers - typeof"; return _typeof = "function" =
|
|
|
7403
7562
|
|
|
7404
7563
|
module.exports = CardBase;
|
|
7405
7564
|
}, {
|
|
7406
|
-
"../../server/plattar-server.js":
|
|
7407
|
-
"../interfaces/plattar-base.js":
|
|
7408
|
-
"./card-button.js":
|
|
7409
|
-
"./card-html.js":
|
|
7410
|
-
"./card-iframe.js":
|
|
7411
|
-
"./card-image.js":
|
|
7412
|
-
"./card-map.js":
|
|
7413
|
-
"./card-paragraph.js":
|
|
7414
|
-
"./card-row.js":
|
|
7415
|
-
"./card-slider.js":
|
|
7416
|
-
"./card-title.js":
|
|
7417
|
-
"./card-video.js":
|
|
7418
|
-
"./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
|
|
7419
7578
|
}],
|
|
7420
|
-
|
|
7579
|
+
71: [function (require, module, exports) {
|
|
7421
7580
|
var CardBase = require("./card-base.js");
|
|
7422
7581
|
|
|
7423
7582
|
var CardButton = /*#__PURE__*/function (_CardBase) {
|
|
@@ -7443,9 +7602,9 @@ function _typeof(obj) { "@babel/helpers - typeof"; return _typeof = "function" =
|
|
|
7443
7602
|
|
|
7444
7603
|
module.exports = CardButton;
|
|
7445
7604
|
}, {
|
|
7446
|
-
"./card-base.js":
|
|
7605
|
+
"./card-base.js": 70
|
|
7447
7606
|
}],
|
|
7448
|
-
|
|
7607
|
+
72: [function (require, module, exports) {
|
|
7449
7608
|
var CardBase = require("./card-base.js");
|
|
7450
7609
|
|
|
7451
7610
|
var CardHTML = /*#__PURE__*/function (_CardBase2) {
|
|
@@ -7471,9 +7630,9 @@ function _typeof(obj) { "@babel/helpers - typeof"; return _typeof = "function" =
|
|
|
7471
7630
|
|
|
7472
7631
|
module.exports = CardHTML;
|
|
7473
7632
|
}, {
|
|
7474
|
-
"./card-base.js":
|
|
7633
|
+
"./card-base.js": 70
|
|
7475
7634
|
}],
|
|
7476
|
-
|
|
7635
|
+
73: [function (require, module, exports) {
|
|
7477
7636
|
var CardBase = require("./card-base.js");
|
|
7478
7637
|
|
|
7479
7638
|
var CardIFrame = /*#__PURE__*/function (_CardBase3) {
|
|
@@ -7499,9 +7658,9 @@ function _typeof(obj) { "@babel/helpers - typeof"; return _typeof = "function" =
|
|
|
7499
7658
|
|
|
7500
7659
|
module.exports = CardIFrame;
|
|
7501
7660
|
}, {
|
|
7502
|
-
"./card-base.js":
|
|
7661
|
+
"./card-base.js": 70
|
|
7503
7662
|
}],
|
|
7504
|
-
|
|
7663
|
+
74: [function (require, module, exports) {
|
|
7505
7664
|
var CardBase = require("./card-base.js");
|
|
7506
7665
|
|
|
7507
7666
|
var CardImage = /*#__PURE__*/function (_CardBase4) {
|
|
@@ -7527,9 +7686,9 @@ function _typeof(obj) { "@babel/helpers - typeof"; return _typeof = "function" =
|
|
|
7527
7686
|
|
|
7528
7687
|
module.exports = CardImage;
|
|
7529
7688
|
}, {
|
|
7530
|
-
"./card-base.js":
|
|
7689
|
+
"./card-base.js": 70
|
|
7531
7690
|
}],
|
|
7532
|
-
|
|
7691
|
+
75: [function (require, module, exports) {
|
|
7533
7692
|
var CardBase = require("./card-base.js");
|
|
7534
7693
|
|
|
7535
7694
|
var CardMap = /*#__PURE__*/function (_CardBase5) {
|
|
@@ -7555,9 +7714,9 @@ function _typeof(obj) { "@babel/helpers - typeof"; return _typeof = "function" =
|
|
|
7555
7714
|
|
|
7556
7715
|
module.exports = CardMap;
|
|
7557
7716
|
}, {
|
|
7558
|
-
"./card-base.js":
|
|
7717
|
+
"./card-base.js": 70
|
|
7559
7718
|
}],
|
|
7560
|
-
|
|
7719
|
+
76: [function (require, module, exports) {
|
|
7561
7720
|
var CardBase = require("./card-base.js");
|
|
7562
7721
|
|
|
7563
7722
|
var CardParagraph = /*#__PURE__*/function (_CardBase6) {
|
|
@@ -7583,9 +7742,9 @@ function _typeof(obj) { "@babel/helpers - typeof"; return _typeof = "function" =
|
|
|
7583
7742
|
|
|
7584
7743
|
module.exports = CardParagraph;
|
|
7585
7744
|
}, {
|
|
7586
|
-
"./card-base.js":
|
|
7745
|
+
"./card-base.js": 70
|
|
7587
7746
|
}],
|
|
7588
|
-
|
|
7747
|
+
77: [function (require, module, exports) {
|
|
7589
7748
|
var CardBase = require("./card-base.js");
|
|
7590
7749
|
|
|
7591
7750
|
var CardRow = /*#__PURE__*/function (_CardBase7) {
|
|
@@ -7611,9 +7770,9 @@ function _typeof(obj) { "@babel/helpers - typeof"; return _typeof = "function" =
|
|
|
7611
7770
|
|
|
7612
7771
|
module.exports = CardRow;
|
|
7613
7772
|
}, {
|
|
7614
|
-
"./card-base.js":
|
|
7773
|
+
"./card-base.js": 70
|
|
7615
7774
|
}],
|
|
7616
|
-
|
|
7775
|
+
78: [function (require, module, exports) {
|
|
7617
7776
|
var CardBase = require("./card-base.js");
|
|
7618
7777
|
|
|
7619
7778
|
var CardSlider = /*#__PURE__*/function (_CardBase8) {
|
|
@@ -7639,9 +7798,9 @@ function _typeof(obj) { "@babel/helpers - typeof"; return _typeof = "function" =
|
|
|
7639
7798
|
|
|
7640
7799
|
module.exports = CardSlider;
|
|
7641
7800
|
}, {
|
|
7642
|
-
"./card-base.js":
|
|
7801
|
+
"./card-base.js": 70
|
|
7643
7802
|
}],
|
|
7644
|
-
|
|
7803
|
+
79: [function (require, module, exports) {
|
|
7645
7804
|
var CardBase = require("./card-base.js");
|
|
7646
7805
|
|
|
7647
7806
|
var CardTitle = /*#__PURE__*/function (_CardBase9) {
|
|
@@ -7667,9 +7826,9 @@ function _typeof(obj) { "@babel/helpers - typeof"; return _typeof = "function" =
|
|
|
7667
7826
|
|
|
7668
7827
|
module.exports = CardTitle;
|
|
7669
7828
|
}, {
|
|
7670
|
-
"./card-base.js":
|
|
7829
|
+
"./card-base.js": 70
|
|
7671
7830
|
}],
|
|
7672
|
-
|
|
7831
|
+
80: [function (require, module, exports) {
|
|
7673
7832
|
var CardBase = require("./card-base.js");
|
|
7674
7833
|
|
|
7675
7834
|
var CardVideo = /*#__PURE__*/function (_CardBase10) {
|
|
@@ -7695,9 +7854,9 @@ function _typeof(obj) { "@babel/helpers - typeof"; return _typeof = "function" =
|
|
|
7695
7854
|
|
|
7696
7855
|
module.exports = CardVideo;
|
|
7697
7856
|
}, {
|
|
7698
|
-
"./card-base.js":
|
|
7857
|
+
"./card-base.js": 70
|
|
7699
7858
|
}],
|
|
7700
|
-
|
|
7859
|
+
81: [function (require, module, exports) {
|
|
7701
7860
|
var CardBase = require("./card-base.js");
|
|
7702
7861
|
|
|
7703
7862
|
var CardYoutube = /*#__PURE__*/function (_CardBase11) {
|
|
@@ -7723,9 +7882,9 @@ function _typeof(obj) { "@babel/helpers - typeof"; return _typeof = "function" =
|
|
|
7723
7882
|
|
|
7724
7883
|
module.exports = CardYoutube;
|
|
7725
7884
|
}, {
|
|
7726
|
-
"./card-base.js":
|
|
7885
|
+
"./card-base.js": 70
|
|
7727
7886
|
}],
|
|
7728
|
-
|
|
7887
|
+
82: [function (require, module, exports) {
|
|
7729
7888
|
var PlattarBase = require("../interfaces/plattar-base.js");
|
|
7730
7889
|
|
|
7731
7890
|
var Page = /*#__PURE__*/function (_PlattarBase18) {
|
|
@@ -7751,9 +7910,9 @@ function _typeof(obj) { "@babel/helpers - typeof"; return _typeof = "function" =
|
|
|
7751
7910
|
|
|
7752
7911
|
module.exports = Page;
|
|
7753
7912
|
}, {
|
|
7754
|
-
"../interfaces/plattar-base.js":
|
|
7913
|
+
"../interfaces/plattar-base.js": 62
|
|
7755
7914
|
}],
|
|
7756
|
-
|
|
7915
|
+
83: [function (require, module, exports) {
|
|
7757
7916
|
var ProductBase = require("./product-base.js");
|
|
7758
7917
|
|
|
7759
7918
|
var ProductAnnotation = /*#__PURE__*/function (_ProductBase) {
|
|
@@ -7779,9 +7938,9 @@ function _typeof(obj) { "@babel/helpers - typeof"; return _typeof = "function" =
|
|
|
7779
7938
|
|
|
7780
7939
|
module.exports = ProductAnnotation;
|
|
7781
7940
|
}, {
|
|
7782
|
-
"./product-base.js":
|
|
7941
|
+
"./product-base.js": 84
|
|
7783
7942
|
}],
|
|
7784
|
-
|
|
7943
|
+
84: [function (require, module, exports) {
|
|
7785
7944
|
var PlattarBase = require("../interfaces/plattar-base.js");
|
|
7786
7945
|
|
|
7787
7946
|
var Server = require("../../server/plattar-server.js");
|
|
@@ -7821,12 +7980,12 @@ function _typeof(obj) { "@babel/helpers - typeof"; return _typeof = "function" =
|
|
|
7821
7980
|
|
|
7822
7981
|
module.exports = ProductBase;
|
|
7823
7982
|
}, {
|
|
7824
|
-
"../../server/plattar-server.js":
|
|
7825
|
-
"../interfaces/plattar-base.js":
|
|
7826
|
-
"./product-annotation.js":
|
|
7827
|
-
"./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
|
|
7828
7987
|
}],
|
|
7829
|
-
|
|
7988
|
+
85: [function (require, module, exports) {
|
|
7830
7989
|
var ProductBase = require("./product-base.js");
|
|
7831
7990
|
|
|
7832
7991
|
var ProductVariation = /*#__PURE__*/function (_ProductBase2) {
|
|
@@ -7852,9 +8011,9 @@ function _typeof(obj) { "@babel/helpers - typeof"; return _typeof = "function" =
|
|
|
7852
8011
|
|
|
7853
8012
|
module.exports = ProductVariation;
|
|
7854
8013
|
}, {
|
|
7855
|
-
"./product-base.js":
|
|
8014
|
+
"./product-base.js": 84
|
|
7856
8015
|
}],
|
|
7857
|
-
|
|
8016
|
+
86: [function (require, module, exports) {
|
|
7858
8017
|
var PlattarBase = require("../interfaces/plattar-base.js");
|
|
7859
8018
|
|
|
7860
8019
|
var Product = /*#__PURE__*/function (_PlattarBase20) {
|
|
@@ -7880,9 +8039,9 @@ function _typeof(obj) { "@babel/helpers - typeof"; return _typeof = "function" =
|
|
|
7880
8039
|
|
|
7881
8040
|
module.exports = Product;
|
|
7882
8041
|
}, {
|
|
7883
|
-
"../interfaces/plattar-base.js":
|
|
8042
|
+
"../interfaces/plattar-base.js": 62
|
|
7884
8043
|
}],
|
|
7885
|
-
|
|
8044
|
+
87: [function (require, module, exports) {
|
|
7886
8045
|
var SceneBase = require("./scene-base.js");
|
|
7887
8046
|
|
|
7888
8047
|
var SceneAnnotation = /*#__PURE__*/function (_SceneBase) {
|
|
@@ -7908,9 +8067,9 @@ function _typeof(obj) { "@babel/helpers - typeof"; return _typeof = "function" =
|
|
|
7908
8067
|
|
|
7909
8068
|
module.exports = SceneAnnotation;
|
|
7910
8069
|
}, {
|
|
7911
|
-
"./scene-base.js":
|
|
8070
|
+
"./scene-base.js": 89
|
|
7912
8071
|
}],
|
|
7913
|
-
|
|
8072
|
+
88: [function (require, module, exports) {
|
|
7914
8073
|
var SceneBase = require("./scene-base.js");
|
|
7915
8074
|
|
|
7916
8075
|
var SceneAudio = /*#__PURE__*/function (_SceneBase2) {
|
|
@@ -7936,9 +8095,9 @@ function _typeof(obj) { "@babel/helpers - typeof"; return _typeof = "function" =
|
|
|
7936
8095
|
|
|
7937
8096
|
module.exports = SceneAudio;
|
|
7938
8097
|
}, {
|
|
7939
|
-
"./scene-base.js":
|
|
8098
|
+
"./scene-base.js": 89
|
|
7940
8099
|
}],
|
|
7941
|
-
|
|
8100
|
+
89: [function (require, module, exports) {
|
|
7942
8101
|
var PlattarBase = require("../interfaces/plattar-base.js");
|
|
7943
8102
|
|
|
7944
8103
|
var Server = require("../../server/plattar-server.js");
|
|
@@ -8002,24 +8161,24 @@ function _typeof(obj) { "@babel/helpers - typeof"; return _typeof = "function" =
|
|
|
8002
8161
|
|
|
8003
8162
|
module.exports = SceneBase;
|
|
8004
8163
|
}, {
|
|
8005
|
-
"../../server/plattar-server.js":
|
|
8006
|
-
"../interfaces/plattar-base.js":
|
|
8007
|
-
"./scene-annotation.js":
|
|
8008
|
-
"./scene-audio.js":
|
|
8009
|
-
"./scene-button.js":
|
|
8010
|
-
"./scene-camera.js":
|
|
8011
|
-
"./scene-carousel.js":
|
|
8012
|
-
"./scene-image.js":
|
|
8013
|
-
"./scene-model.js":
|
|
8014
|
-
"./scene-panorama.js":
|
|
8015
|
-
"./scene-poller.js":
|
|
8016
|
-
"./scene-product.js":
|
|
8017
|
-
"./scene-shadow.js":
|
|
8018
|
-
"./scene-video.js":
|
|
8019
|
-
"./scene-volumetric.js":
|
|
8020
|
-
"./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
|
|
8021
8180
|
}],
|
|
8022
|
-
|
|
8181
|
+
90: [function (require, module, exports) {
|
|
8023
8182
|
var SceneBase = require("./scene-base.js");
|
|
8024
8183
|
|
|
8025
8184
|
var SceneButton = /*#__PURE__*/function (_SceneBase3) {
|
|
@@ -8045,9 +8204,9 @@ function _typeof(obj) { "@babel/helpers - typeof"; return _typeof = "function" =
|
|
|
8045
8204
|
|
|
8046
8205
|
module.exports = SceneButton;
|
|
8047
8206
|
}, {
|
|
8048
|
-
"./scene-base.js":
|
|
8207
|
+
"./scene-base.js": 89
|
|
8049
8208
|
}],
|
|
8050
|
-
|
|
8209
|
+
91: [function (require, module, exports) {
|
|
8051
8210
|
var SceneBase = require("./scene-base.js");
|
|
8052
8211
|
|
|
8053
8212
|
var SceneCamera = /*#__PURE__*/function (_SceneBase4) {
|
|
@@ -8073,9 +8232,9 @@ function _typeof(obj) { "@babel/helpers - typeof"; return _typeof = "function" =
|
|
|
8073
8232
|
|
|
8074
8233
|
module.exports = SceneCamera;
|
|
8075
8234
|
}, {
|
|
8076
|
-
"./scene-base.js":
|
|
8235
|
+
"./scene-base.js": 89
|
|
8077
8236
|
}],
|
|
8078
|
-
|
|
8237
|
+
92: [function (require, module, exports) {
|
|
8079
8238
|
var SceneBase = require("./scene-base.js");
|
|
8080
8239
|
|
|
8081
8240
|
var SceneCarousel = /*#__PURE__*/function (_SceneBase5) {
|
|
@@ -8101,9 +8260,9 @@ function _typeof(obj) { "@babel/helpers - typeof"; return _typeof = "function" =
|
|
|
8101
8260
|
|
|
8102
8261
|
module.exports = SceneCarousel;
|
|
8103
8262
|
}, {
|
|
8104
|
-
"./scene-base.js":
|
|
8263
|
+
"./scene-base.js": 89
|
|
8105
8264
|
}],
|
|
8106
|
-
|
|
8265
|
+
93: [function (require, module, exports) {
|
|
8107
8266
|
var SceneBase = require("./scene-base.js");
|
|
8108
8267
|
|
|
8109
8268
|
var SceneImage = /*#__PURE__*/function (_SceneBase6) {
|
|
@@ -8129,9 +8288,9 @@ function _typeof(obj) { "@babel/helpers - typeof"; return _typeof = "function" =
|
|
|
8129
8288
|
|
|
8130
8289
|
module.exports = SceneImage;
|
|
8131
8290
|
}, {
|
|
8132
|
-
"./scene-base.js":
|
|
8291
|
+
"./scene-base.js": 89
|
|
8133
8292
|
}],
|
|
8134
|
-
|
|
8293
|
+
94: [function (require, module, exports) {
|
|
8135
8294
|
var SceneBase = require("./scene-base.js");
|
|
8136
8295
|
|
|
8137
8296
|
var SceneModel = /*#__PURE__*/function (_SceneBase7) {
|
|
@@ -8157,9 +8316,9 @@ function _typeof(obj) { "@babel/helpers - typeof"; return _typeof = "function" =
|
|
|
8157
8316
|
|
|
8158
8317
|
module.exports = SceneModel;
|
|
8159
8318
|
}, {
|
|
8160
|
-
"./scene-base.js":
|
|
8319
|
+
"./scene-base.js": 89
|
|
8161
8320
|
}],
|
|
8162
|
-
|
|
8321
|
+
95: [function (require, module, exports) {
|
|
8163
8322
|
var SceneBase = require("./scene-base.js");
|
|
8164
8323
|
|
|
8165
8324
|
var ScenePanorama = /*#__PURE__*/function (_SceneBase8) {
|
|
@@ -8185,9 +8344,9 @@ function _typeof(obj) { "@babel/helpers - typeof"; return _typeof = "function" =
|
|
|
8185
8344
|
|
|
8186
8345
|
module.exports = ScenePanorama;
|
|
8187
8346
|
}, {
|
|
8188
|
-
"./scene-base.js":
|
|
8347
|
+
"./scene-base.js": 89
|
|
8189
8348
|
}],
|
|
8190
|
-
|
|
8349
|
+
96: [function (require, module, exports) {
|
|
8191
8350
|
var SceneBase = require("./scene-base.js");
|
|
8192
8351
|
|
|
8193
8352
|
var ScenePoller = /*#__PURE__*/function (_SceneBase9) {
|
|
@@ -8213,9 +8372,9 @@ function _typeof(obj) { "@babel/helpers - typeof"; return _typeof = "function" =
|
|
|
8213
8372
|
|
|
8214
8373
|
module.exports = ScenePoller;
|
|
8215
8374
|
}, {
|
|
8216
|
-
"./scene-base.js":
|
|
8375
|
+
"./scene-base.js": 89
|
|
8217
8376
|
}],
|
|
8218
|
-
|
|
8377
|
+
97: [function (require, module, exports) {
|
|
8219
8378
|
var SceneBase = require("./scene-base.js");
|
|
8220
8379
|
|
|
8221
8380
|
var SceneProduct = /*#__PURE__*/function (_SceneBase10) {
|
|
@@ -8241,9 +8400,9 @@ function _typeof(obj) { "@babel/helpers - typeof"; return _typeof = "function" =
|
|
|
8241
8400
|
|
|
8242
8401
|
module.exports = SceneProduct;
|
|
8243
8402
|
}, {
|
|
8244
|
-
"./scene-base.js":
|
|
8403
|
+
"./scene-base.js": 89
|
|
8245
8404
|
}],
|
|
8246
|
-
|
|
8405
|
+
98: [function (require, module, exports) {
|
|
8247
8406
|
var SceneBase = require("./scene-base.js");
|
|
8248
8407
|
|
|
8249
8408
|
var SceneScript = /*#__PURE__*/function (_SceneBase11) {
|
|
@@ -8269,9 +8428,9 @@ function _typeof(obj) { "@babel/helpers - typeof"; return _typeof = "function" =
|
|
|
8269
8428
|
|
|
8270
8429
|
module.exports = SceneScript;
|
|
8271
8430
|
}, {
|
|
8272
|
-
"./scene-base.js":
|
|
8431
|
+
"./scene-base.js": 89
|
|
8273
8432
|
}],
|
|
8274
|
-
|
|
8433
|
+
99: [function (require, module, exports) {
|
|
8275
8434
|
var SceneBase = require("./scene-base.js");
|
|
8276
8435
|
|
|
8277
8436
|
var SceneShadow = /*#__PURE__*/function (_SceneBase12) {
|
|
@@ -8297,9 +8456,9 @@ function _typeof(obj) { "@babel/helpers - typeof"; return _typeof = "function" =
|
|
|
8297
8456
|
|
|
8298
8457
|
module.exports = SceneShadow;
|
|
8299
8458
|
}, {
|
|
8300
|
-
"./scene-base.js":
|
|
8459
|
+
"./scene-base.js": 89
|
|
8301
8460
|
}],
|
|
8302
|
-
|
|
8461
|
+
100: [function (require, module, exports) {
|
|
8303
8462
|
var SceneBase = require("./scene-base.js");
|
|
8304
8463
|
|
|
8305
8464
|
var SceneVideo = /*#__PURE__*/function (_SceneBase13) {
|
|
@@ -8325,9 +8484,9 @@ function _typeof(obj) { "@babel/helpers - typeof"; return _typeof = "function" =
|
|
|
8325
8484
|
|
|
8326
8485
|
module.exports = SceneVideo;
|
|
8327
8486
|
}, {
|
|
8328
|
-
"./scene-base.js":
|
|
8487
|
+
"./scene-base.js": 89
|
|
8329
8488
|
}],
|
|
8330
|
-
|
|
8489
|
+
101: [function (require, module, exports) {
|
|
8331
8490
|
var SceneBase = require("./scene-base.js");
|
|
8332
8491
|
|
|
8333
8492
|
var SceneVolumetric = /*#__PURE__*/function (_SceneBase14) {
|
|
@@ -8353,9 +8512,9 @@ function _typeof(obj) { "@babel/helpers - typeof"; return _typeof = "function" =
|
|
|
8353
8512
|
|
|
8354
8513
|
module.exports = SceneVolumetric;
|
|
8355
8514
|
}, {
|
|
8356
|
-
"./scene-base.js":
|
|
8515
|
+
"./scene-base.js": 89
|
|
8357
8516
|
}],
|
|
8358
|
-
|
|
8517
|
+
102: [function (require, module, exports) {
|
|
8359
8518
|
var SceneBase = require("./scene-base.js");
|
|
8360
8519
|
|
|
8361
8520
|
var SceneYoutube = /*#__PURE__*/function (_SceneBase15) {
|
|
@@ -8381,9 +8540,9 @@ function _typeof(obj) { "@babel/helpers - typeof"; return _typeof = "function" =
|
|
|
8381
8540
|
|
|
8382
8541
|
module.exports = SceneYoutube;
|
|
8383
8542
|
}, {
|
|
8384
|
-
"./scene-base.js":
|
|
8543
|
+
"./scene-base.js": 89
|
|
8385
8544
|
}],
|
|
8386
|
-
|
|
8545
|
+
103: [function (require, module, exports) {
|
|
8387
8546
|
var PlattarBase = require("../interfaces/plattar-base.js");
|
|
8388
8547
|
|
|
8389
8548
|
var Scene = /*#__PURE__*/function (_PlattarBase22) {
|
|
@@ -8409,9 +8568,9 @@ function _typeof(obj) { "@babel/helpers - typeof"; return _typeof = "function" =
|
|
|
8409
8568
|
|
|
8410
8569
|
module.exports = Scene;
|
|
8411
8570
|
}, {
|
|
8412
|
-
"../interfaces/plattar-base.js":
|
|
8571
|
+
"../interfaces/plattar-base.js": 62
|
|
8413
8572
|
}],
|
|
8414
|
-
|
|
8573
|
+
104: [function (require, module, exports) {
|
|
8415
8574
|
var PlattarBase = require("../interfaces/plattar-base.js");
|
|
8416
8575
|
|
|
8417
8576
|
var TriggerImage = /*#__PURE__*/function (_PlattarBase23) {
|
|
@@ -8437,9 +8596,9 @@ function _typeof(obj) { "@babel/helpers - typeof"; return _typeof = "function" =
|
|
|
8437
8596
|
|
|
8438
8597
|
module.exports = TriggerImage;
|
|
8439
8598
|
}, {
|
|
8440
|
-
"../interfaces/plattar-base.js":
|
|
8599
|
+
"../interfaces/plattar-base.js": 62
|
|
8441
8600
|
}],
|
|
8442
|
-
|
|
8601
|
+
105: [function (require, module, exports) {
|
|
8443
8602
|
var Application = require("../types/application.js"); // import Scene types and its children
|
|
8444
8603
|
|
|
8445
8604
|
|
|
@@ -8826,64 +8985,64 @@ function _typeof(obj) { "@babel/helpers - typeof"; return _typeof = "function" =
|
|
|
8826
8985
|
|
|
8827
8986
|
module.exports = PlattarUtil;
|
|
8828
8987
|
}, {
|
|
8829
|
-
"../types/application.js":
|
|
8830
|
-
"../types/content-pipeline/brief.js":
|
|
8831
|
-
"../types/content-pipeline/comment-brief.js":
|
|
8832
|
-
"../types/content-pipeline/comment-quote.js":
|
|
8833
|
-
"../types/content-pipeline/comment-solution.js":
|
|
8834
|
-
"../types/content-pipeline/folder.js":
|
|
8835
|
-
"../types/content-pipeline/pipeline-user.js":
|
|
8836
|
-
"../types/content-pipeline/quote.js":
|
|
8837
|
-
"../types/content-pipeline/rating.js":
|
|
8838
|
-
"../types/content-pipeline/solution.js":
|
|
8839
|
-
"../types/file/file-audio.js":
|
|
8840
|
-
"../types/file/file-image.js":
|
|
8841
|
-
"../types/file/file-model.js":
|
|
8842
|
-
"../types/file/file-script.js":
|
|
8843
|
-
"../types/file/file-video.js":
|
|
8844
|
-
"../types/interfaces/plattar-object.js":
|
|
8845
|
-
"../types/misc/application-build.js":
|
|
8846
|
-
"../types/misc/asset-library":
|
|
8847
|
-
"../types/misc/async-job.js":
|
|
8848
|
-
"../types/misc/script-event.js":
|
|
8849
|
-
"../types/misc/tag.js":
|
|
8850
|
-
"../types/page/card-button.js":
|
|
8851
|
-
"../types/page/card-html.js":
|
|
8852
|
-
"../types/page/card-iframe.js":
|
|
8853
|
-
"../types/page/card-image.js":
|
|
8854
|
-
"../types/page/card-map.js":
|
|
8855
|
-
"../types/page/card-paragraph.js":
|
|
8856
|
-
"../types/page/card-row.js":
|
|
8857
|
-
"../types/page/card-slider.js":
|
|
8858
|
-
"../types/page/card-title.js":
|
|
8859
|
-
"../types/page/card-video.js":
|
|
8860
|
-
"../types/page/card-youtube.js":
|
|
8861
|
-
"../types/page/page.js":
|
|
8862
|
-
"../types/product/product-annotation.js":
|
|
8863
|
-
"../types/product/product-variation.js":
|
|
8864
|
-
"../types/product/product.js":
|
|
8865
|
-
"../types/scene/scene-annotation.js":
|
|
8866
|
-
"../types/scene/scene-audio.js":
|
|
8867
|
-
"../types/scene/scene-button.js":
|
|
8868
|
-
"../types/scene/scene-camera.js":
|
|
8869
|
-
"../types/scene/scene-carousel.js":
|
|
8870
|
-
"../types/scene/scene-image.js":
|
|
8871
|
-
"../types/scene/scene-model.js":
|
|
8872
|
-
"../types/scene/scene-panorama.js":
|
|
8873
|
-
"../types/scene/scene-poller.js":
|
|
8874
|
-
"../types/scene/scene-product.js":
|
|
8875
|
-
"../types/scene/scene-script.js":
|
|
8876
|
-
"../types/scene/scene-shadow.js":
|
|
8877
|
-
"../types/scene/scene-video.js":
|
|
8878
|
-
"../types/scene/scene-volumetric.js":
|
|
8879
|
-
"../types/scene/scene-youtube.js":
|
|
8880
|
-
"../types/scene/scene.js":
|
|
8881
|
-
"../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
|
|
8882
9041
|
}],
|
|
8883
|
-
|
|
9042
|
+
106: [function (require, module, exports) {
|
|
8884
9043
|
module.exports = "1.120.1";
|
|
8885
9044
|
}, {}],
|
|
8886
|
-
|
|
9045
|
+
107: [function (require, module, exports) {
|
|
8887
9046
|
var QRCodeStyling = require("qr-code-styling");
|
|
8888
9047
|
|
|
8889
9048
|
var BaseElement = /*#__PURE__*/function (_HTMLElement2) {
|
|
@@ -8943,8 +9102,8 @@ function _typeof(obj) { "@babel/helpers - typeof"; return _typeof = "function" =
|
|
|
8943
9102
|
return;
|
|
8944
9103
|
}
|
|
8945
9104
|
|
|
8946
|
-
var width = this.hasAttribute("width") ?
|
|
8947
|
-
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%";
|
|
8948
9107
|
var margin = this.hasAttribute("margin") ? this.getAttribute("margin") : 0;
|
|
8949
9108
|
var image = this.hasAttribute("image") ? this.getAttribute("image") : undefined;
|
|
8950
9109
|
var color = this.hasAttribute("color") ? this.getAttribute("color") : "#000000";
|
|
@@ -9070,8 +9229,8 @@ function _typeof(obj) { "@babel/helpers - typeof"; return _typeof = "function" =
|
|
|
9070
9229
|
|
|
9071
9230
|
if (this._divContainer) {
|
|
9072
9231
|
var div = this._divContainer;
|
|
9073
|
-
div.style.width = width
|
|
9074
|
-
div.style.height = height
|
|
9232
|
+
div.style.width = width;
|
|
9233
|
+
div.style.height = height;
|
|
9075
9234
|
}
|
|
9076
9235
|
}
|
|
9077
9236
|
}, {
|
|
@@ -9141,9 +9300,9 @@ function _typeof(obj) { "@babel/helpers - typeof"; return _typeof = "function" =
|
|
|
9141
9300
|
|
|
9142
9301
|
module.exports = BaseElement;
|
|
9143
9302
|
}, {
|
|
9144
|
-
"qr-code-styling":
|
|
9303
|
+
"qr-code-styling": 134
|
|
9145
9304
|
}],
|
|
9146
|
-
|
|
9305
|
+
108: [function (require, module, exports) {
|
|
9147
9306
|
var BaseElement = require("./base/base-element.js");
|
|
9148
9307
|
|
|
9149
9308
|
var QRCodeElement = /*#__PURE__*/function (_BaseElement) {
|
|
@@ -9162,9 +9321,9 @@ function _typeof(obj) { "@babel/helpers - typeof"; return _typeof = "function" =
|
|
|
9162
9321
|
|
|
9163
9322
|
module.exports = QRCodeElement;
|
|
9164
9323
|
}, {
|
|
9165
|
-
"./base/base-element.js":
|
|
9324
|
+
"./base/base-element.js": 107
|
|
9166
9325
|
}],
|
|
9167
|
-
|
|
9326
|
+
109: [function (require, module, exports) {
|
|
9168
9327
|
"use strict";
|
|
9169
9328
|
|
|
9170
9329
|
var QRCodeElement = require("./elements/qrcode-element.js");
|
|
@@ -9182,13 +9341,13 @@ function _typeof(obj) { "@babel/helpers - typeof"; return _typeof = "function" =
|
|
|
9182
9341
|
version: Version
|
|
9183
9342
|
};
|
|
9184
9343
|
}, {
|
|
9185
|
-
"./elements/qrcode-element.js":
|
|
9186
|
-
"./version":
|
|
9344
|
+
"./elements/qrcode-element.js": 108,
|
|
9345
|
+
"./version": 110
|
|
9187
9346
|
}],
|
|
9188
|
-
109: [function (require, module, exports) {
|
|
9189
|
-
module.exports = "1.122.1";
|
|
9190
|
-
}, {}],
|
|
9191
9347
|
110: [function (require, module, exports) {
|
|
9348
|
+
module.exports = "1.134.1";
|
|
9349
|
+
}, {}],
|
|
9350
|
+
111: [function (require, module, exports) {
|
|
9192
9351
|
"use strict";
|
|
9193
9352
|
|
|
9194
9353
|
var __importDefault = this && this.__importDefault || function (mod) {
|
|
@@ -9422,11 +9581,11 @@ function _typeof(obj) { "@babel/helpers - typeof"; return _typeof = "function" =
|
|
|
9422
9581
|
|
|
9423
9582
|
exports.Configurator = Configurator;
|
|
9424
9583
|
}, {
|
|
9425
|
-
"./remote-request":
|
|
9426
|
-
"@plattar/plattar-api":
|
|
9427
|
-
"object-hash":
|
|
9584
|
+
"./remote-request": 113,
|
|
9585
|
+
"@plattar/plattar-api": 43,
|
|
9586
|
+
"object-hash": 132
|
|
9428
9587
|
}],
|
|
9429
|
-
|
|
9588
|
+
112: [function (require, module, exports) {
|
|
9430
9589
|
"use strict";
|
|
9431
9590
|
|
|
9432
9591
|
var __importDefault = this && this.__importDefault || function (mod) {
|
|
@@ -9521,11 +9680,11 @@ function _typeof(obj) { "@babel/helpers - typeof"; return _typeof = "function" =
|
|
|
9521
9680
|
|
|
9522
9681
|
exports.ModelConverter = ModelConverter;
|
|
9523
9682
|
}, {
|
|
9524
|
-
"./remote-request":
|
|
9525
|
-
"@plattar/plattar-api":
|
|
9526
|
-
"object-hash":
|
|
9683
|
+
"./remote-request": 113,
|
|
9684
|
+
"@plattar/plattar-api": 43,
|
|
9685
|
+
"object-hash": 132
|
|
9527
9686
|
}],
|
|
9528
|
-
|
|
9687
|
+
113: [function (require, module, exports) {
|
|
9529
9688
|
"use strict";
|
|
9530
9689
|
|
|
9531
9690
|
var __importDefault = this && this.__importDefault || function (mod) {
|
|
@@ -9613,9 +9772,9 @@ function _typeof(obj) { "@babel/helpers - typeof"; return _typeof = "function" =
|
|
|
9613
9772
|
|
|
9614
9773
|
exports.RemoteRequest = RemoteRequest;
|
|
9615
9774
|
}, {
|
|
9616
|
-
"node-fetch":
|
|
9775
|
+
"node-fetch": 131
|
|
9617
9776
|
}],
|
|
9618
|
-
|
|
9777
|
+
114: [function (require, module, exports) {
|
|
9619
9778
|
"use strict";
|
|
9620
9779
|
|
|
9621
9780
|
var __createBinding = this && this.__createBinding || (Object.create ? function (o, m, k, k2) {
|
|
@@ -9686,11 +9845,11 @@ function _typeof(obj) { "@babel/helpers - typeof"; return _typeof = "function" =
|
|
|
9686
9845
|
|
|
9687
9846
|
console.log("using @plattar/plattar-services v" + version_1["default"]);
|
|
9688
9847
|
}, {
|
|
9689
|
-
"./core/configurator":
|
|
9690
|
-
"./core/model-converter":
|
|
9691
|
-
"./version":
|
|
9848
|
+
"./core/configurator": 111,
|
|
9849
|
+
"./core/model-converter": 112,
|
|
9850
|
+
"./version": 115
|
|
9692
9851
|
}],
|
|
9693
|
-
|
|
9852
|
+
115: [function (require, module, exports) {
|
|
9694
9853
|
"use strict";
|
|
9695
9854
|
|
|
9696
9855
|
Object.defineProperty(exports, "__esModule", {
|
|
@@ -9698,7 +9857,7 @@ function _typeof(obj) { "@babel/helpers - typeof"; return _typeof = "function" =
|
|
|
9698
9857
|
});
|
|
9699
9858
|
exports["default"] = "1.120.1";
|
|
9700
9859
|
}, {}],
|
|
9701
|
-
|
|
9860
|
+
116: [function (require, module, exports) {
|
|
9702
9861
|
var Util = require("../../util/util");
|
|
9703
9862
|
|
|
9704
9863
|
var ElementController = require("../controllers/element-controller");
|
|
@@ -9877,10 +10036,10 @@ function _typeof(obj) { "@babel/helpers - typeof"; return _typeof = "function" =
|
|
|
9877
10036
|
|
|
9878
10037
|
module.exports = BaseElement;
|
|
9879
10038
|
}, {
|
|
9880
|
-
"../../util/util":
|
|
9881
|
-
"../controllers/element-controller":
|
|
10039
|
+
"../../util/util": 129,
|
|
10040
|
+
"../controllers/element-controller": 118
|
|
9882
10041
|
}],
|
|
9883
|
-
|
|
10042
|
+
117: [function (require, module, exports) {
|
|
9884
10043
|
var BaseElement = require("./base/base-element.js");
|
|
9885
10044
|
|
|
9886
10045
|
var ConfiguratorElement = /*#__PURE__*/function (_BaseElement2) {
|
|
@@ -9932,9 +10091,9 @@ function _typeof(obj) { "@babel/helpers - typeof"; return _typeof = "function" =
|
|
|
9932
10091
|
|
|
9933
10092
|
module.exports = ConfiguratorElement;
|
|
9934
10093
|
}, {
|
|
9935
|
-
"./base/base-element.js":
|
|
10094
|
+
"./base/base-element.js": 116
|
|
9936
10095
|
}],
|
|
9937
|
-
|
|
10096
|
+
118: [function (require, module, exports) {
|
|
9938
10097
|
var Util = require("../../util/util.js");
|
|
9939
10098
|
|
|
9940
10099
|
var _require = require("@plattar/context-messenger"),
|
|
@@ -10056,11 +10215,11 @@ function _typeof(obj) { "@babel/helpers - typeof"; return _typeof = "function" =
|
|
|
10056
10215
|
|
|
10057
10216
|
module.exports = ElementController;
|
|
10058
10217
|
}, {
|
|
10059
|
-
"../../util/util.js":
|
|
10060
|
-
"./iframe-controller.js":
|
|
10218
|
+
"../../util/util.js": 129,
|
|
10219
|
+
"./iframe-controller.js": 119,
|
|
10061
10220
|
"@plattar/context-messenger": 21
|
|
10062
10221
|
}],
|
|
10063
|
-
|
|
10222
|
+
119: [function (require, module, exports) {
|
|
10064
10223
|
var Util = require("../../util/util.js");
|
|
10065
10224
|
|
|
10066
10225
|
var IFrameController = /*#__PURE__*/function () {
|
|
@@ -10174,9 +10333,9 @@ function _typeof(obj) { "@babel/helpers - typeof"; return _typeof = "function" =
|
|
|
10174
10333
|
|
|
10175
10334
|
module.exports = IFrameController;
|
|
10176
10335
|
}, {
|
|
10177
|
-
"../../util/util.js":
|
|
10336
|
+
"../../util/util.js": 129
|
|
10178
10337
|
}],
|
|
10179
|
-
|
|
10338
|
+
120: [function (require, module, exports) {
|
|
10180
10339
|
var BaseElement = require("./base/base-element.js");
|
|
10181
10340
|
|
|
10182
10341
|
var EditorElement = /*#__PURE__*/function (_BaseElement3) {
|
|
@@ -10207,9 +10366,9 @@ function _typeof(obj) { "@babel/helpers - typeof"; return _typeof = "function" =
|
|
|
10207
10366
|
|
|
10208
10367
|
module.exports = EditorElement;
|
|
10209
10368
|
}, {
|
|
10210
|
-
"./base/base-element.js":
|
|
10369
|
+
"./base/base-element.js": 116
|
|
10211
10370
|
}],
|
|
10212
|
-
|
|
10371
|
+
121: [function (require, module, exports) {
|
|
10213
10372
|
var BaseElement = require("./base/base-element.js");
|
|
10214
10373
|
|
|
10215
10374
|
var EWallElement = /*#__PURE__*/function (_BaseElement4) {
|
|
@@ -10262,9 +10421,9 @@ function _typeof(obj) { "@babel/helpers - typeof"; return _typeof = "function" =
|
|
|
10262
10421
|
|
|
10263
10422
|
module.exports = EWallElement;
|
|
10264
10423
|
}, {
|
|
10265
|
-
"./base/base-element.js":
|
|
10424
|
+
"./base/base-element.js": 116
|
|
10266
10425
|
}],
|
|
10267
|
-
|
|
10426
|
+
122: [function (require, module, exports) {
|
|
10268
10427
|
var BaseElement = require("./base/base-element.js");
|
|
10269
10428
|
|
|
10270
10429
|
var FaceARElement = /*#__PURE__*/function (_BaseElement5) {
|
|
@@ -10315,9 +10474,9 @@ function _typeof(obj) { "@babel/helpers - typeof"; return _typeof = "function" =
|
|
|
10315
10474
|
|
|
10316
10475
|
module.exports = FaceARElement;
|
|
10317
10476
|
}, {
|
|
10318
|
-
"./base/base-element.js":
|
|
10477
|
+
"./base/base-element.js": 116
|
|
10319
10478
|
}],
|
|
10320
|
-
|
|
10479
|
+
123: [function (require, module, exports) {
|
|
10321
10480
|
var BaseElement = require("./base/base-element.js");
|
|
10322
10481
|
|
|
10323
10482
|
var ModelElement = /*#__PURE__*/function (_BaseElement6) {
|
|
@@ -10334,7 +10493,7 @@ function _typeof(obj) { "@babel/helpers - typeof"; return _typeof = "function" =
|
|
|
10334
10493
|
_createClass(ModelElement, [{
|
|
10335
10494
|
key: "permissions",
|
|
10336
10495
|
get: function get() {
|
|
10337
|
-
return ["autoplay"];
|
|
10496
|
+
return ["camera", "autoplay"];
|
|
10338
10497
|
}
|
|
10339
10498
|
}, {
|
|
10340
10499
|
key: "elementType",
|
|
@@ -10349,6 +10508,14 @@ function _typeof(obj) { "@babel/helpers - typeof"; return _typeof = "function" =
|
|
|
10349
10508
|
map: "model_id"
|
|
10350
10509
|
}];
|
|
10351
10510
|
}
|
|
10511
|
+
}, {
|
|
10512
|
+
key: "optionalAttributes",
|
|
10513
|
+
get: function get() {
|
|
10514
|
+
return [{
|
|
10515
|
+
key: "mode",
|
|
10516
|
+
map: "mode"
|
|
10517
|
+
}];
|
|
10518
|
+
}
|
|
10352
10519
|
}]);
|
|
10353
10520
|
|
|
10354
10521
|
return ModelElement;
|
|
@@ -10356,9 +10523,9 @@ function _typeof(obj) { "@babel/helpers - typeof"; return _typeof = "function" =
|
|
|
10356
10523
|
|
|
10357
10524
|
module.exports = ModelElement;
|
|
10358
10525
|
}, {
|
|
10359
|
-
"./base/base-element.js":
|
|
10526
|
+
"./base/base-element.js": 116
|
|
10360
10527
|
}],
|
|
10361
|
-
|
|
10528
|
+
124: [function (require, module, exports) {
|
|
10362
10529
|
var BaseElement = require("./base/base-element.js");
|
|
10363
10530
|
|
|
10364
10531
|
var ProductElement = /*#__PURE__*/function (_BaseElement7) {
|
|
@@ -10411,9 +10578,9 @@ function _typeof(obj) { "@babel/helpers - typeof"; return _typeof = "function" =
|
|
|
10411
10578
|
|
|
10412
10579
|
module.exports = ProductElement;
|
|
10413
10580
|
}, {
|
|
10414
|
-
"./base/base-element.js":
|
|
10581
|
+
"./base/base-element.js": 116
|
|
10415
10582
|
}],
|
|
10416
|
-
|
|
10583
|
+
125: [function (require, module, exports) {
|
|
10417
10584
|
var BaseElement = require("./base/base-element.js");
|
|
10418
10585
|
|
|
10419
10586
|
var StudioElement = /*#__PURE__*/function (_BaseElement8) {
|
|
@@ -10444,9 +10611,9 @@ function _typeof(obj) { "@babel/helpers - typeof"; return _typeof = "function" =
|
|
|
10444
10611
|
|
|
10445
10612
|
module.exports = StudioElement;
|
|
10446
10613
|
}, {
|
|
10447
|
-
"./base/base-element.js":
|
|
10614
|
+
"./base/base-element.js": 116
|
|
10448
10615
|
}],
|
|
10449
|
-
|
|
10616
|
+
126: [function (require, module, exports) {
|
|
10450
10617
|
var BaseElement = require("./base/base-element.js");
|
|
10451
10618
|
|
|
10452
10619
|
var ViewerElement = /*#__PURE__*/function (_BaseElement9) {
|
|
@@ -10494,9 +10661,9 @@ function _typeof(obj) { "@babel/helpers - typeof"; return _typeof = "function" =
|
|
|
10494
10661
|
|
|
10495
10662
|
module.exports = ViewerElement;
|
|
10496
10663
|
}, {
|
|
10497
|
-
"./base/base-element.js":
|
|
10664
|
+
"./base/base-element.js": 116
|
|
10498
10665
|
}],
|
|
10499
|
-
|
|
10666
|
+
127: [function (require, module, exports) {
|
|
10500
10667
|
var BaseElement = require("./base/base-element.js");
|
|
10501
10668
|
|
|
10502
10669
|
var WebXRElement = /*#__PURE__*/function (_BaseElement10) {
|
|
@@ -10527,9 +10694,9 @@ function _typeof(obj) { "@babel/helpers - typeof"; return _typeof = "function" =
|
|
|
10527
10694
|
|
|
10528
10695
|
module.exports = WebXRElement;
|
|
10529
10696
|
}, {
|
|
10530
|
-
"./base/base-element.js":
|
|
10697
|
+
"./base/base-element.js": 116
|
|
10531
10698
|
}],
|
|
10532
|
-
|
|
10699
|
+
128: [function (require, module, exports) {
|
|
10533
10700
|
"use strict";
|
|
10534
10701
|
|
|
10535
10702
|
var WebXRElement = require("./elements/webxr-element.js");
|
|
@@ -10593,18 +10760,18 @@ function _typeof(obj) { "@babel/helpers - typeof"; return _typeof = "function" =
|
|
|
10593
10760
|
version: Version
|
|
10594
10761
|
};
|
|
10595
10762
|
}, {
|
|
10596
|
-
"./elements/configurator-element.js":
|
|
10597
|
-
"./elements/editor-element.js":
|
|
10598
|
-
"./elements/ewall-element.js":
|
|
10599
|
-
"./elements/facear-element.js":
|
|
10600
|
-
"./elements/model-element.js":
|
|
10601
|
-
"./elements/product-element.js":
|
|
10602
|
-
"./elements/studio-element.js":
|
|
10603
|
-
"./elements/viewer-element.js":
|
|
10604
|
-
"./elements/webxr-element.js":
|
|
10605
|
-
"./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
|
|
10606
10773
|
}],
|
|
10607
|
-
|
|
10774
|
+
129: [function (require, module, exports) {
|
|
10608
10775
|
var Util = /*#__PURE__*/function () {
|
|
10609
10776
|
function Util() {
|
|
10610
10777
|
_classCallCheck(this, Util);
|
|
@@ -10684,10 +10851,10 @@ function _typeof(obj) { "@babel/helpers - typeof"; return _typeof = "function" =
|
|
|
10684
10851
|
|
|
10685
10852
|
module.exports = Util;
|
|
10686
10853
|
}, {}],
|
|
10687
|
-
129: [function (require, module, exports) {
|
|
10688
|
-
module.exports = "1.131.1";
|
|
10689
|
-
}, {}],
|
|
10690
10854
|
130: [function (require, module, exports) {
|
|
10855
|
+
module.exports = "1.135.2";
|
|
10856
|
+
}, {}],
|
|
10857
|
+
131: [function (require, module, exports) {
|
|
10691
10858
|
(function (global) {
|
|
10692
10859
|
(function () {
|
|
10693
10860
|
"use strict"; // ref: https://github.com/tc39/proposal-global
|
|
@@ -10724,7 +10891,7 @@ function _typeof(obj) { "@babel/helpers - typeof"; return _typeof = "function" =
|
|
|
10724
10891
|
}).call(this);
|
|
10725
10892
|
}).call(this, typeof global !== "undefined" ? global : typeof self !== "undefined" ? self : typeof window !== "undefined" ? window : {});
|
|
10726
10893
|
}, {}],
|
|
10727
|
-
|
|
10894
|
+
132: [function (require, module, exports) {
|
|
10728
10895
|
(function (global) {
|
|
10729
10896
|
(function () {
|
|
10730
10897
|
!function (e) {
|
|
@@ -11996,7 +12163,7 @@ function _typeof(obj) { "@babel/helpers - typeof"; return _typeof = "function" =
|
|
|
11996
12163
|
}).call(this);
|
|
11997
12164
|
}).call(this, typeof global !== "undefined" ? global : typeof self !== "undefined" ? self : typeof window !== "undefined" ? window : {});
|
|
11998
12165
|
}, {}],
|
|
11999
|
-
|
|
12166
|
+
133: [function (require, module, exports) {
|
|
12000
12167
|
// shim for using process in browser
|
|
12001
12168
|
var process = module.exports = {}; // cached from whatever global is present so that test runners that stub it
|
|
12002
12169
|
// don't break things. But we need to wrap it in a try catch in case it is
|
|
@@ -12206,7 +12373,7 @@ function _typeof(obj) { "@babel/helpers - typeof"; return _typeof = "function" =
|
|
|
12206
12373
|
return 0;
|
|
12207
12374
|
};
|
|
12208
12375
|
}, {}],
|
|
12209
|
-
|
|
12376
|
+
134: [function (require, module, exports) {
|
|
12210
12377
|
!function (t, e) {
|
|
12211
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();
|
|
12212
12379
|
}(self, function () {
|