@plattar/plattar-ar-adapter 1.183.3 → 1.186.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 +393 -339
- package/build/es2015/plattar-ar-adapter.min.js +1 -1
- package/build/es2019/plattar-ar-adapter.js +155 -113
- package/build/es2019/plattar-ar-adapter.min.js +1 -1
- package/dist/embed/controllers/configurator-controller.js +1 -1
- package/dist/embed/controllers/launcher-controller.js +1 -1
- package/dist/embed/controllers/vto-controller.js +1 -1
- package/dist/util/configurator-state.d.ts +1 -0
- package/dist/util/configurator-state.js +26 -0
- package/dist/version.d.ts +1 -1
- package/dist/version.js +1 -1
- package/package.json +7 -7
|
@@ -340,7 +340,7 @@ function _typeof(o) { "@babel/helpers - typeof"; return _typeof = "function" ==
|
|
|
340
340
|
"./launcher-ar": 2,
|
|
341
341
|
"@plattar/plattar-analytics": 43,
|
|
342
342
|
"@plattar/plattar-api": 47,
|
|
343
|
-
"@plattar/plattar-services":
|
|
343
|
+
"@plattar/plattar-services": 121
|
|
344
344
|
}],
|
|
345
345
|
2: [function (require, module, exports) {
|
|
346
346
|
"use strict";
|
|
@@ -1252,7 +1252,7 @@ function _typeof(o) { "@babel/helpers - typeof"; return _typeof = "function" ==
|
|
|
1252
1252
|
"./launcher-ar": 2,
|
|
1253
1253
|
"@plattar/plattar-analytics": 43,
|
|
1254
1254
|
"@plattar/plattar-api": 47,
|
|
1255
|
-
"@plattar/plattar-services":
|
|
1255
|
+
"@plattar/plattar-services": 121
|
|
1256
1256
|
}],
|
|
1257
1257
|
7: [function (require, module, exports) {
|
|
1258
1258
|
"use strict";
|
|
@@ -1811,7 +1811,7 @@ function _typeof(o) { "@babel/helpers - typeof"; return _typeof = "function" ==
|
|
|
1811
1811
|
return this.getConfiguratorState();
|
|
1812
1812
|
case 5:
|
|
1813
1813
|
state = _context10.sent.state;
|
|
1814
|
-
first = state.
|
|
1814
|
+
first = state.firstActiveOfType("sceneproduct");
|
|
1815
1815
|
if (!first) {
|
|
1816
1816
|
_context10.next = 10;
|
|
1817
1817
|
break;
|
|
@@ -2474,7 +2474,7 @@ function _typeof(o) { "@babel/helpers - typeof"; return _typeof = "function" ==
|
|
|
2474
2474
|
return this.getConfiguratorState();
|
|
2475
2475
|
case 5:
|
|
2476
2476
|
state = _context23.sent.state;
|
|
2477
|
-
first = state.
|
|
2477
|
+
first = state.firstActiveOfType("sceneproduct");
|
|
2478
2478
|
if (!first) {
|
|
2479
2479
|
_context23.next = 10;
|
|
2480
2480
|
break;
|
|
@@ -3663,7 +3663,7 @@ function _typeof(o) { "@babel/helpers - typeof"; return _typeof = "function" ==
|
|
|
3663
3663
|
return this.getConfiguratorState();
|
|
3664
3664
|
case 5:
|
|
3665
3665
|
state = _context36.sent.state;
|
|
3666
|
-
first = state.
|
|
3666
|
+
first = state.firstActiveOfType("sceneproduct");
|
|
3667
3667
|
if (!first) {
|
|
3668
3668
|
_context36.next = 10;
|
|
3669
3669
|
break;
|
|
@@ -4572,8 +4572,8 @@ function _typeof(o) { "@babel/helpers - typeof"; return _typeof = "function" ==
|
|
|
4572
4572
|
"./util/configurator-state": 17,
|
|
4573
4573
|
"./util/util": 18,
|
|
4574
4574
|
"./version": 19,
|
|
4575
|
-
"@plattar/plattar-qrcode":
|
|
4576
|
-
"@plattar/plattar-web":
|
|
4575
|
+
"@plattar/plattar-qrcode": 116,
|
|
4576
|
+
"@plattar/plattar-web": 137
|
|
4577
4577
|
}],
|
|
4578
4578
|
17: [function (require, module, exports) {
|
|
4579
4579
|
"use strict";
|
|
@@ -4920,6 +4920,34 @@ function _typeof(o) { "@babel/helpers - typeof"; return _typeof = "function" ==
|
|
|
4920
4920
|
}
|
|
4921
4921
|
return null;
|
|
4922
4922
|
}
|
|
4923
|
+
}, {
|
|
4924
|
+
key: "firstActiveOfType",
|
|
4925
|
+
value: function firstActiveOfType(type) {
|
|
4926
|
+
var states = this._state.states;
|
|
4927
|
+
if (states.length > 0) {
|
|
4928
|
+
var meta = this._state.meta;
|
|
4929
|
+
var found = states.find(function (productState) {
|
|
4930
|
+
var check = productState[meta.scene_product_index];
|
|
4931
|
+
if (check !== null && check !== undefined) {
|
|
4932
|
+
return productState.length === 3 && productState[meta.meta_index].type === type && productState[meta.meta_index].augment === true;
|
|
4933
|
+
}
|
|
4934
|
+
return false;
|
|
4935
|
+
});
|
|
4936
|
+
if (!found) {
|
|
4937
|
+
return null;
|
|
4938
|
+
}
|
|
4939
|
+
var data = {
|
|
4940
|
+
scene_product_id: found[meta.scene_product_index],
|
|
4941
|
+
product_variation_id: found[meta.product_variation_index],
|
|
4942
|
+
meta_data: {
|
|
4943
|
+
augment: found[meta.meta_index].augment || true,
|
|
4944
|
+
type: found[meta.meta_index].type || type
|
|
4945
|
+
}
|
|
4946
|
+
};
|
|
4947
|
+
return data;
|
|
4948
|
+
}
|
|
4949
|
+
return null;
|
|
4950
|
+
}
|
|
4923
4951
|
}, {
|
|
4924
4952
|
key: "length",
|
|
4925
4953
|
get: function get() {
|
|
@@ -5242,7 +5270,7 @@ function _typeof(o) { "@babel/helpers - typeof"; return _typeof = "function" ==
|
|
|
5242
5270
|
Object.defineProperty(exports, "__esModule", {
|
|
5243
5271
|
value: true
|
|
5244
5272
|
});
|
|
5245
|
-
exports["default"] = "1.
|
|
5273
|
+
exports["default"] = "1.186.1";
|
|
5246
5274
|
}, {}],
|
|
5247
5275
|
20: [function (require, module, exports) {
|
|
5248
5276
|
"use strict";
|
|
@@ -7277,6 +7305,7 @@ function _typeof(o) { "@babel/helpers - typeof"; return _typeof = "function" ==
|
|
|
7277
7305
|
var FileModel = require("./types/file/file-model.js");
|
|
7278
7306
|
var FileImage = require("./types/file/file-image.js");
|
|
7279
7307
|
var FileScript = require("./types/file/file-script.js");
|
|
7308
|
+
var FileJSON = require("./types/file/file-json.js");
|
|
7280
7309
|
|
|
7281
7310
|
// import misc
|
|
7282
7311
|
var ScriptEvent = require("./types/misc/script-event.js");
|
|
@@ -7356,6 +7385,7 @@ function _typeof(o) { "@babel/helpers - typeof"; return _typeof = "function" ==
|
|
|
7356
7385
|
FileModel: FileModel,
|
|
7357
7386
|
FileImage: FileImage,
|
|
7358
7387
|
FileScript: FileScript,
|
|
7388
|
+
FileJSON: FileJSON,
|
|
7359
7389
|
FileObject: FileObject,
|
|
7360
7390
|
// misc
|
|
7361
7391
|
ScriptEvent: ScriptEvent,
|
|
@@ -7396,53 +7426,54 @@ function _typeof(o) { "@babel/helpers - typeof"; return _typeof = "function" ==
|
|
|
7396
7426
|
"./types/file/file-audio.js": 60,
|
|
7397
7427
|
"./types/file/file-base.js": 61,
|
|
7398
7428
|
"./types/file/file-image.js": 62,
|
|
7399
|
-
"./types/file/file-
|
|
7400
|
-
"./types/file/file-
|
|
7401
|
-
"./types/file/file-
|
|
7402
|
-
"./types/
|
|
7403
|
-
"./types/misc/
|
|
7404
|
-
"./types/misc/
|
|
7405
|
-
"./types/misc/
|
|
7406
|
-
"./types/misc/
|
|
7407
|
-
"./types/
|
|
7408
|
-
"./types/page/card-
|
|
7409
|
-
"./types/page/card-
|
|
7410
|
-
"./types/page/card-
|
|
7411
|
-
"./types/page/card-
|
|
7412
|
-
"./types/page/card-
|
|
7413
|
-
"./types/page/card-
|
|
7414
|
-
"./types/page/card-
|
|
7415
|
-
"./types/page/card-
|
|
7416
|
-
"./types/page/card-
|
|
7417
|
-
"./types/page/card-
|
|
7418
|
-
"./types/page/card-
|
|
7419
|
-
"./types/page/
|
|
7420
|
-
"./types/
|
|
7421
|
-
"./types/product/product-
|
|
7422
|
-
"./types/product/product-
|
|
7423
|
-
"./types/product/product.js": 90,
|
|
7424
|
-
"./types/
|
|
7425
|
-
"./types/scene/scene-
|
|
7426
|
-
"./types/scene/scene-
|
|
7427
|
-
"./types/scene/scene-
|
|
7428
|
-
"./types/scene/scene-
|
|
7429
|
-
"./types/scene/scene-
|
|
7430
|
-
"./types/scene/scene-
|
|
7431
|
-
"./types/scene/scene-gallery.js": 98,
|
|
7432
|
-
"./types/scene/scene-
|
|
7433
|
-
"./types/scene/scene-
|
|
7434
|
-
"./types/scene/scene-
|
|
7435
|
-
"./types/scene/scene-
|
|
7436
|
-
"./types/scene/scene-
|
|
7437
|
-
"./types/scene/scene-
|
|
7438
|
-
"./types/scene/scene-
|
|
7439
|
-
"./types/scene/scene-
|
|
7440
|
-
"./types/scene/scene-
|
|
7441
|
-
"./types/scene/scene-
|
|
7442
|
-
"./types/scene/scene.js": 109,
|
|
7443
|
-
"./types/
|
|
7444
|
-
"./
|
|
7445
|
-
"./
|
|
7429
|
+
"./types/file/file-json.js": 63,
|
|
7430
|
+
"./types/file/file-model.js": 64,
|
|
7431
|
+
"./types/file/file-script.js": 65,
|
|
7432
|
+
"./types/file/file-video.js": 66,
|
|
7433
|
+
"./types/misc/application-build.js": 70,
|
|
7434
|
+
"./types/misc/asset-library.js": 71,
|
|
7435
|
+
"./types/misc/async-job.js": 72,
|
|
7436
|
+
"./types/misc/script-event.js": 73,
|
|
7437
|
+
"./types/misc/tag.js": 74,
|
|
7438
|
+
"./types/page/card-base.js": 75,
|
|
7439
|
+
"./types/page/card-button.js": 76,
|
|
7440
|
+
"./types/page/card-html.js": 77,
|
|
7441
|
+
"./types/page/card-iframe.js": 78,
|
|
7442
|
+
"./types/page/card-image.js": 79,
|
|
7443
|
+
"./types/page/card-map.js": 80,
|
|
7444
|
+
"./types/page/card-paragraph.js": 81,
|
|
7445
|
+
"./types/page/card-row.js": 82,
|
|
7446
|
+
"./types/page/card-slider.js": 83,
|
|
7447
|
+
"./types/page/card-title.js": 84,
|
|
7448
|
+
"./types/page/card-video.js": 85,
|
|
7449
|
+
"./types/page/card-youtube.js": 86,
|
|
7450
|
+
"./types/page/page.js": 87,
|
|
7451
|
+
"./types/product/product-annotation.js": 88,
|
|
7452
|
+
"./types/product/product-base.js": 89,
|
|
7453
|
+
"./types/product/product-variation.js": 90,
|
|
7454
|
+
"./types/product/product.js": 91,
|
|
7455
|
+
"./types/scene/scene-annotation.js": 92,
|
|
7456
|
+
"./types/scene/scene-audio.js": 93,
|
|
7457
|
+
"./types/scene/scene-base.js": 94,
|
|
7458
|
+
"./types/scene/scene-button.js": 95,
|
|
7459
|
+
"./types/scene/scene-camera.js": 96,
|
|
7460
|
+
"./types/scene/scene-carousel.js": 97,
|
|
7461
|
+
"./types/scene/scene-gallery-image.js": 98,
|
|
7462
|
+
"./types/scene/scene-gallery.js": 99,
|
|
7463
|
+
"./types/scene/scene-image.js": 100,
|
|
7464
|
+
"./types/scene/scene-model.js": 101,
|
|
7465
|
+
"./types/scene/scene-panorama.js": 102,
|
|
7466
|
+
"./types/scene/scene-poller.js": 103,
|
|
7467
|
+
"./types/scene/scene-product.js": 104,
|
|
7468
|
+
"./types/scene/scene-script.js": 105,
|
|
7469
|
+
"./types/scene/scene-shadow.js": 106,
|
|
7470
|
+
"./types/scene/scene-video.js": 107,
|
|
7471
|
+
"./types/scene/scene-volumetric.js": 108,
|
|
7472
|
+
"./types/scene/scene-youtube.js": 109,
|
|
7473
|
+
"./types/scene/scene.js": 110,
|
|
7474
|
+
"./types/trigger/trigger-image.js": 111,
|
|
7475
|
+
"./util/plattar-util.js": 112,
|
|
7476
|
+
"./version": 113
|
|
7446
7477
|
}],
|
|
7447
7478
|
48: [function (require, module, exports) {
|
|
7448
7479
|
var fetch = require("node-fetch");
|
|
@@ -7870,8 +7901,8 @@ function _typeof(o) { "@babel/helpers - typeof"; return _typeof = "function" ==
|
|
|
7870
7901
|
};
|
|
7871
7902
|
module.exports = PlattarQuery;
|
|
7872
7903
|
}, {
|
|
7873
|
-
"../util/plattar-util.js":
|
|
7874
|
-
"node-fetch":
|
|
7904
|
+
"../util/plattar-util.js": 112,
|
|
7905
|
+
"node-fetch": 143
|
|
7875
7906
|
}],
|
|
7876
7907
|
49: [function (require, module, exports) {
|
|
7877
7908
|
(function (process) {
|
|
@@ -8092,8 +8123,8 @@ function _typeof(o) { "@babel/helpers - typeof"; return _typeof = "function" ==
|
|
|
8092
8123
|
}).call(this);
|
|
8093
8124
|
}).call(this, require('_process'));
|
|
8094
8125
|
}, {
|
|
8095
|
-
"_process":
|
|
8096
|
-
"node-fetch":
|
|
8126
|
+
"_process": 145,
|
|
8127
|
+
"node-fetch": 143
|
|
8097
8128
|
}],
|
|
8098
8129
|
50: [function (require, module, exports) {
|
|
8099
8130
|
var PlattarBase = require("./interfaces/plattar-base.js");
|
|
@@ -8112,7 +8143,7 @@ function _typeof(o) { "@babel/helpers - typeof"; return _typeof = "function" ==
|
|
|
8112
8143
|
}(PlattarBase);
|
|
8113
8144
|
module.exports = Application;
|
|
8114
8145
|
}, {
|
|
8115
|
-
"./interfaces/plattar-base.js":
|
|
8146
|
+
"./interfaces/plattar-base.js": 67
|
|
8116
8147
|
}],
|
|
8117
8148
|
51: [function (require, module, exports) {
|
|
8118
8149
|
var PlattarBase = require("../interfaces/plattar-base");
|
|
@@ -8131,7 +8162,7 @@ function _typeof(o) { "@babel/helpers - typeof"; return _typeof = "function" ==
|
|
|
8131
8162
|
}(PlattarBase);
|
|
8132
8163
|
module.exports = Brief;
|
|
8133
8164
|
}, {
|
|
8134
|
-
"../interfaces/plattar-base":
|
|
8165
|
+
"../interfaces/plattar-base": 67
|
|
8135
8166
|
}],
|
|
8136
8167
|
52: [function (require, module, exports) {
|
|
8137
8168
|
var PlattarBase = require("../interfaces/plattar-base");
|
|
@@ -8150,7 +8181,7 @@ function _typeof(o) { "@babel/helpers - typeof"; return _typeof = "function" ==
|
|
|
8150
8181
|
}(PlattarBase);
|
|
8151
8182
|
module.exports = CommentBrief;
|
|
8152
8183
|
}, {
|
|
8153
|
-
"../interfaces/plattar-base":
|
|
8184
|
+
"../interfaces/plattar-base": 67
|
|
8154
8185
|
}],
|
|
8155
8186
|
53: [function (require, module, exports) {
|
|
8156
8187
|
var PlattarBase = require("../interfaces/plattar-base");
|
|
@@ -8169,7 +8200,7 @@ function _typeof(o) { "@babel/helpers - typeof"; return _typeof = "function" ==
|
|
|
8169
8200
|
}(PlattarBase);
|
|
8170
8201
|
module.exports = CommentQuote;
|
|
8171
8202
|
}, {
|
|
8172
|
-
"../interfaces/plattar-base":
|
|
8203
|
+
"../interfaces/plattar-base": 67
|
|
8173
8204
|
}],
|
|
8174
8205
|
54: [function (require, module, exports) {
|
|
8175
8206
|
var PlattarBase = require("../interfaces/plattar-base");
|
|
@@ -8188,7 +8219,7 @@ function _typeof(o) { "@babel/helpers - typeof"; return _typeof = "function" ==
|
|
|
8188
8219
|
}(PlattarBase);
|
|
8189
8220
|
module.exports = CommentSolution;
|
|
8190
8221
|
}, {
|
|
8191
|
-
"../interfaces/plattar-base":
|
|
8222
|
+
"../interfaces/plattar-base": 67
|
|
8192
8223
|
}],
|
|
8193
8224
|
55: [function (require, module, exports) {
|
|
8194
8225
|
var PlattarBase = require("../interfaces/plattar-base");
|
|
@@ -8207,7 +8238,7 @@ function _typeof(o) { "@babel/helpers - typeof"; return _typeof = "function" ==
|
|
|
8207
8238
|
}(PlattarBase);
|
|
8208
8239
|
module.exports = Folder;
|
|
8209
8240
|
}, {
|
|
8210
|
-
"../interfaces/plattar-base":
|
|
8241
|
+
"../interfaces/plattar-base": 67
|
|
8211
8242
|
}],
|
|
8212
8243
|
56: [function (require, module, exports) {
|
|
8213
8244
|
var PlattarBase = require("../interfaces/plattar-base");
|
|
@@ -8226,7 +8257,7 @@ function _typeof(o) { "@babel/helpers - typeof"; return _typeof = "function" ==
|
|
|
8226
8257
|
}(PlattarBase);
|
|
8227
8258
|
module.exports = PipelineUser;
|
|
8228
8259
|
}, {
|
|
8229
|
-
"../interfaces/plattar-base":
|
|
8260
|
+
"../interfaces/plattar-base": 67
|
|
8230
8261
|
}],
|
|
8231
8262
|
57: [function (require, module, exports) {
|
|
8232
8263
|
var PlattarBase = require("../interfaces/plattar-base");
|
|
@@ -8245,7 +8276,7 @@ function _typeof(o) { "@babel/helpers - typeof"; return _typeof = "function" ==
|
|
|
8245
8276
|
}(PlattarBase);
|
|
8246
8277
|
module.exports = Quote;
|
|
8247
8278
|
}, {
|
|
8248
|
-
"../interfaces/plattar-base":
|
|
8279
|
+
"../interfaces/plattar-base": 67
|
|
8249
8280
|
}],
|
|
8250
8281
|
58: [function (require, module, exports) {
|
|
8251
8282
|
var PlattarBase = require("../interfaces/plattar-base");
|
|
@@ -8264,7 +8295,7 @@ function _typeof(o) { "@babel/helpers - typeof"; return _typeof = "function" ==
|
|
|
8264
8295
|
}(PlattarBase);
|
|
8265
8296
|
module.exports = Rating;
|
|
8266
8297
|
}, {
|
|
8267
|
-
"../interfaces/plattar-base":
|
|
8298
|
+
"../interfaces/plattar-base": 67
|
|
8268
8299
|
}],
|
|
8269
8300
|
59: [function (require, module, exports) {
|
|
8270
8301
|
var PlattarBase = require("../interfaces/plattar-base");
|
|
@@ -8283,7 +8314,7 @@ function _typeof(o) { "@babel/helpers - typeof"; return _typeof = "function" ==
|
|
|
8283
8314
|
}(PlattarBase);
|
|
8284
8315
|
module.exports = Solution;
|
|
8285
8316
|
}, {
|
|
8286
|
-
"../interfaces/plattar-base":
|
|
8317
|
+
"../interfaces/plattar-base": 67
|
|
8287
8318
|
}],
|
|
8288
8319
|
60: [function (require, module, exports) {
|
|
8289
8320
|
var FileBase = require("./file-base.js");
|
|
@@ -8364,18 +8395,20 @@ function _typeof(o) { "@babel/helpers - typeof"; return _typeof = "function" ==
|
|
|
8364
8395
|
var FileVideo = require("./file-video.js");
|
|
8365
8396
|
var FileModel = require("./file-model.js");
|
|
8366
8397
|
var FileImage = require("./file-image.js");
|
|
8367
|
-
|
|
8398
|
+
var FileJSON = require("./file-json.js");
|
|
8399
|
+
return [FileAudio, FileVideo, FileModel, FileImage, FileJSON];
|
|
8368
8400
|
}
|
|
8369
8401
|
}]);
|
|
8370
8402
|
}(PlattarBase);
|
|
8371
8403
|
module.exports = FileBase;
|
|
8372
8404
|
}, {
|
|
8373
8405
|
"../../server/plattar-server.js": 49,
|
|
8374
|
-
"../interfaces/plattar-base.js":
|
|
8406
|
+
"../interfaces/plattar-base.js": 67,
|
|
8375
8407
|
"./file-audio.js": 60,
|
|
8376
8408
|
"./file-image.js": 62,
|
|
8377
|
-
"./file-
|
|
8378
|
-
"./file-
|
|
8409
|
+
"./file-json.js": 63,
|
|
8410
|
+
"./file-model.js": 64,
|
|
8411
|
+
"./file-video.js": 66
|
|
8379
8412
|
}],
|
|
8380
8413
|
62: [function (require, module, exports) {
|
|
8381
8414
|
var FileBase = require("./file-base.js");
|
|
@@ -8398,12 +8431,31 @@ function _typeof(o) { "@babel/helpers - typeof"; return _typeof = "function" ==
|
|
|
8398
8431
|
}],
|
|
8399
8432
|
63: [function (require, module, exports) {
|
|
8400
8433
|
var FileBase = require("./file-base.js");
|
|
8401
|
-
var
|
|
8434
|
+
var FileJSON = /*#__PURE__*/function (_FileBase3) {
|
|
8435
|
+
function FileJSON() {
|
|
8436
|
+
_classCallCheck(this, FileJSON);
|
|
8437
|
+
return _callSuper(this, FileJSON, arguments);
|
|
8438
|
+
}
|
|
8439
|
+
_inherits(FileJSON, _FileBase3);
|
|
8440
|
+
return _createClass(FileJSON, null, [{
|
|
8441
|
+
key: "type",
|
|
8442
|
+
value: function type() {
|
|
8443
|
+
return "filejson";
|
|
8444
|
+
}
|
|
8445
|
+
}]);
|
|
8446
|
+
}(FileBase);
|
|
8447
|
+
module.exports = FileJSON;
|
|
8448
|
+
}, {
|
|
8449
|
+
"./file-base.js": 61
|
|
8450
|
+
}],
|
|
8451
|
+
64: [function (require, module, exports) {
|
|
8452
|
+
var FileBase = require("./file-base.js");
|
|
8453
|
+
var FileModel = /*#__PURE__*/function (_FileBase4) {
|
|
8402
8454
|
function FileModel() {
|
|
8403
8455
|
_classCallCheck(this, FileModel);
|
|
8404
8456
|
return _callSuper(this, FileModel, arguments);
|
|
8405
8457
|
}
|
|
8406
|
-
_inherits(FileModel,
|
|
8458
|
+
_inherits(FileModel, _FileBase4);
|
|
8407
8459
|
return _createClass(FileModel, null, [{
|
|
8408
8460
|
key: "type",
|
|
8409
8461
|
value: function type() {
|
|
@@ -8415,14 +8467,14 @@ function _typeof(o) { "@babel/helpers - typeof"; return _typeof = "function" ==
|
|
|
8415
8467
|
}, {
|
|
8416
8468
|
"./file-base.js": 61
|
|
8417
8469
|
}],
|
|
8418
|
-
|
|
8470
|
+
65: [function (require, module, exports) {
|
|
8419
8471
|
var FileBase = require("./file-base.js");
|
|
8420
|
-
var FileScript = /*#__PURE__*/function (
|
|
8472
|
+
var FileScript = /*#__PURE__*/function (_FileBase5) {
|
|
8421
8473
|
function FileScript() {
|
|
8422
8474
|
_classCallCheck(this, FileScript);
|
|
8423
8475
|
return _callSuper(this, FileScript, arguments);
|
|
8424
8476
|
}
|
|
8425
|
-
_inherits(FileScript,
|
|
8477
|
+
_inherits(FileScript, _FileBase5);
|
|
8426
8478
|
return _createClass(FileScript, null, [{
|
|
8427
8479
|
key: "type",
|
|
8428
8480
|
value: function type() {
|
|
@@ -8434,14 +8486,14 @@ function _typeof(o) { "@babel/helpers - typeof"; return _typeof = "function" ==
|
|
|
8434
8486
|
}, {
|
|
8435
8487
|
"./file-base.js": 61
|
|
8436
8488
|
}],
|
|
8437
|
-
|
|
8489
|
+
66: [function (require, module, exports) {
|
|
8438
8490
|
var FileBase = require("./file-base.js");
|
|
8439
|
-
var FileVideo = /*#__PURE__*/function (
|
|
8491
|
+
var FileVideo = /*#__PURE__*/function (_FileBase6) {
|
|
8440
8492
|
function FileVideo() {
|
|
8441
8493
|
_classCallCheck(this, FileVideo);
|
|
8442
8494
|
return _callSuper(this, FileVideo, arguments);
|
|
8443
8495
|
}
|
|
8444
|
-
_inherits(FileVideo,
|
|
8496
|
+
_inherits(FileVideo, _FileBase6);
|
|
8445
8497
|
return _createClass(FileVideo, null, [{
|
|
8446
8498
|
key: "type",
|
|
8447
8499
|
value: function type() {
|
|
@@ -8453,7 +8505,7 @@ function _typeof(o) { "@babel/helpers - typeof"; return _typeof = "function" ==
|
|
|
8453
8505
|
}, {
|
|
8454
8506
|
"./file-base.js": 61
|
|
8455
8507
|
}],
|
|
8456
|
-
|
|
8508
|
+
67: [function (require, module, exports) {
|
|
8457
8509
|
var PlattarObject = require("./plattar-object.js");
|
|
8458
8510
|
var Server = require("../../server/plattar-server.js");
|
|
8459
8511
|
var PlattarBase = /*#__PURE__*/function (_PlattarObject) {
|
|
@@ -8472,9 +8524,9 @@ function _typeof(o) { "@babel/helpers - typeof"; return _typeof = "function" ==
|
|
|
8472
8524
|
module.exports = PlattarBase;
|
|
8473
8525
|
}, {
|
|
8474
8526
|
"../../server/plattar-server.js": 49,
|
|
8475
|
-
"./plattar-object.js":
|
|
8527
|
+
"./plattar-object.js": 69
|
|
8476
8528
|
}],
|
|
8477
|
-
|
|
8529
|
+
68: [function (require, module, exports) {
|
|
8478
8530
|
/**
|
|
8479
8531
|
* Handles the list of relationships for the provided object
|
|
8480
8532
|
*/
|
|
@@ -8597,9 +8649,9 @@ function _typeof(o) { "@babel/helpers - typeof"; return _typeof = "function" ==
|
|
|
8597
8649
|
}();
|
|
8598
8650
|
module.exports = PlattarObjectRelations;
|
|
8599
8651
|
}, {
|
|
8600
|
-
"../../util/plattar-util.js":
|
|
8652
|
+
"../../util/plattar-util.js": 112
|
|
8601
8653
|
}],
|
|
8602
|
-
|
|
8654
|
+
69: [function (require, module, exports) {
|
|
8603
8655
|
var PlattarQuery = require("../../server/plattar-query.js");
|
|
8604
8656
|
var PlattarObjectRelations = require("./plattar-object-relations.js");
|
|
8605
8657
|
var PlattarObject = /*#__PURE__*/function () {
|
|
@@ -8766,9 +8818,9 @@ function _typeof(o) { "@babel/helpers - typeof"; return _typeof = "function" ==
|
|
|
8766
8818
|
module.exports = PlattarObject;
|
|
8767
8819
|
}, {
|
|
8768
8820
|
"../../server/plattar-query.js": 48,
|
|
8769
|
-
"./plattar-object-relations.js":
|
|
8821
|
+
"./plattar-object-relations.js": 68
|
|
8770
8822
|
}],
|
|
8771
|
-
|
|
8823
|
+
70: [function (require, module, exports) {
|
|
8772
8824
|
var PlattarBase = require("../interfaces/plattar-base.js");
|
|
8773
8825
|
var ApplicationBuild = /*#__PURE__*/function (_PlattarBase12) {
|
|
8774
8826
|
function ApplicationBuild() {
|
|
@@ -8785,9 +8837,9 @@ function _typeof(o) { "@babel/helpers - typeof"; return _typeof = "function" ==
|
|
|
8785
8837
|
}(PlattarBase);
|
|
8786
8838
|
module.exports = ApplicationBuild;
|
|
8787
8839
|
}, {
|
|
8788
|
-
"../interfaces/plattar-base.js":
|
|
8840
|
+
"../interfaces/plattar-base.js": 67
|
|
8789
8841
|
}],
|
|
8790
|
-
|
|
8842
|
+
71: [function (require, module, exports) {
|
|
8791
8843
|
var PlattarBase = require("../interfaces/plattar-base.js");
|
|
8792
8844
|
var AssetLibrary = /*#__PURE__*/function (_PlattarBase13) {
|
|
8793
8845
|
function AssetLibrary() {
|
|
@@ -8804,9 +8856,9 @@ function _typeof(o) { "@babel/helpers - typeof"; return _typeof = "function" ==
|
|
|
8804
8856
|
}(PlattarBase);
|
|
8805
8857
|
module.exports = AssetLibrary;
|
|
8806
8858
|
}, {
|
|
8807
|
-
"../interfaces/plattar-base.js":
|
|
8859
|
+
"../interfaces/plattar-base.js": 67
|
|
8808
8860
|
}],
|
|
8809
|
-
|
|
8861
|
+
72: [function (require, module, exports) {
|
|
8810
8862
|
var PlattarBase = require("../interfaces/plattar-base.js");
|
|
8811
8863
|
var AsyncJob = /*#__PURE__*/function (_PlattarBase14) {
|
|
8812
8864
|
function AsyncJob() {
|
|
@@ -8828,9 +8880,9 @@ function _typeof(o) { "@babel/helpers - typeof"; return _typeof = "function" ==
|
|
|
8828
8880
|
}(PlattarBase);
|
|
8829
8881
|
module.exports = AsyncJob;
|
|
8830
8882
|
}, {
|
|
8831
|
-
"../interfaces/plattar-base.js":
|
|
8883
|
+
"../interfaces/plattar-base.js": 67
|
|
8832
8884
|
}],
|
|
8833
|
-
|
|
8885
|
+
73: [function (require, module, exports) {
|
|
8834
8886
|
var PlattarBase = require("../interfaces/plattar-base.js");
|
|
8835
8887
|
var ScriptEvent = /*#__PURE__*/function (_PlattarBase15) {
|
|
8836
8888
|
function ScriptEvent() {
|
|
@@ -8847,9 +8899,9 @@ function _typeof(o) { "@babel/helpers - typeof"; return _typeof = "function" ==
|
|
|
8847
8899
|
}(PlattarBase);
|
|
8848
8900
|
module.exports = ScriptEvent;
|
|
8849
8901
|
}, {
|
|
8850
|
-
"../interfaces/plattar-base.js":
|
|
8902
|
+
"../interfaces/plattar-base.js": 67
|
|
8851
8903
|
}],
|
|
8852
|
-
|
|
8904
|
+
74: [function (require, module, exports) {
|
|
8853
8905
|
var PlattarBase = require("../interfaces/plattar-base.js");
|
|
8854
8906
|
var Tag = /*#__PURE__*/function (_PlattarBase16) {
|
|
8855
8907
|
function Tag() {
|
|
@@ -8866,9 +8918,9 @@ function _typeof(o) { "@babel/helpers - typeof"; return _typeof = "function" ==
|
|
|
8866
8918
|
}(PlattarBase);
|
|
8867
8919
|
module.exports = Tag;
|
|
8868
8920
|
}, {
|
|
8869
|
-
"../interfaces/plattar-base.js":
|
|
8921
|
+
"../interfaces/plattar-base.js": 67
|
|
8870
8922
|
}],
|
|
8871
|
-
|
|
8923
|
+
75: [function (require, module, exports) {
|
|
8872
8924
|
var PlattarBase = require("../interfaces/plattar-base.js");
|
|
8873
8925
|
var Server = require("../../server/plattar-server.js");
|
|
8874
8926
|
var CardBase = /*#__PURE__*/function (_PlattarBase17) {
|
|
@@ -8903,20 +8955,20 @@ function _typeof(o) { "@babel/helpers - typeof"; return _typeof = "function" ==
|
|
|
8903
8955
|
module.exports = CardBase;
|
|
8904
8956
|
}, {
|
|
8905
8957
|
"../../server/plattar-server.js": 49,
|
|
8906
|
-
"../interfaces/plattar-base.js":
|
|
8907
|
-
"./card-button.js":
|
|
8908
|
-
"./card-html.js":
|
|
8909
|
-
"./card-iframe.js":
|
|
8910
|
-
"./card-image.js":
|
|
8911
|
-
"./card-map.js":
|
|
8912
|
-
"./card-paragraph.js":
|
|
8913
|
-
"./card-row.js":
|
|
8914
|
-
"./card-slider.js":
|
|
8915
|
-
"./card-title.js":
|
|
8916
|
-
"./card-video.js":
|
|
8917
|
-
"./card-youtube.js":
|
|
8958
|
+
"../interfaces/plattar-base.js": 67,
|
|
8959
|
+
"./card-button.js": 76,
|
|
8960
|
+
"./card-html.js": 77,
|
|
8961
|
+
"./card-iframe.js": 78,
|
|
8962
|
+
"./card-image.js": 79,
|
|
8963
|
+
"./card-map.js": 80,
|
|
8964
|
+
"./card-paragraph.js": 81,
|
|
8965
|
+
"./card-row.js": 82,
|
|
8966
|
+
"./card-slider.js": 83,
|
|
8967
|
+
"./card-title.js": 84,
|
|
8968
|
+
"./card-video.js": 85,
|
|
8969
|
+
"./card-youtube.js": 86
|
|
8918
8970
|
}],
|
|
8919
|
-
|
|
8971
|
+
76: [function (require, module, exports) {
|
|
8920
8972
|
var CardBase = require("./card-base.js");
|
|
8921
8973
|
var CardButton = /*#__PURE__*/function (_CardBase) {
|
|
8922
8974
|
function CardButton() {
|
|
@@ -8933,9 +8985,9 @@ function _typeof(o) { "@babel/helpers - typeof"; return _typeof = "function" ==
|
|
|
8933
8985
|
}(CardBase);
|
|
8934
8986
|
module.exports = CardButton;
|
|
8935
8987
|
}, {
|
|
8936
|
-
"./card-base.js":
|
|
8988
|
+
"./card-base.js": 75
|
|
8937
8989
|
}],
|
|
8938
|
-
|
|
8990
|
+
77: [function (require, module, exports) {
|
|
8939
8991
|
var CardBase = require("./card-base.js");
|
|
8940
8992
|
var CardHTML = /*#__PURE__*/function (_CardBase2) {
|
|
8941
8993
|
function CardHTML() {
|
|
@@ -8952,9 +9004,9 @@ function _typeof(o) { "@babel/helpers - typeof"; return _typeof = "function" ==
|
|
|
8952
9004
|
}(CardBase);
|
|
8953
9005
|
module.exports = CardHTML;
|
|
8954
9006
|
}, {
|
|
8955
|
-
"./card-base.js":
|
|
9007
|
+
"./card-base.js": 75
|
|
8956
9008
|
}],
|
|
8957
|
-
|
|
9009
|
+
78: [function (require, module, exports) {
|
|
8958
9010
|
var CardBase = require("./card-base.js");
|
|
8959
9011
|
var CardIFrame = /*#__PURE__*/function (_CardBase3) {
|
|
8960
9012
|
function CardIFrame() {
|
|
@@ -8971,9 +9023,9 @@ function _typeof(o) { "@babel/helpers - typeof"; return _typeof = "function" ==
|
|
|
8971
9023
|
}(CardBase);
|
|
8972
9024
|
module.exports = CardIFrame;
|
|
8973
9025
|
}, {
|
|
8974
|
-
"./card-base.js":
|
|
9026
|
+
"./card-base.js": 75
|
|
8975
9027
|
}],
|
|
8976
|
-
|
|
9028
|
+
79: [function (require, module, exports) {
|
|
8977
9029
|
var CardBase = require("./card-base.js");
|
|
8978
9030
|
var CardImage = /*#__PURE__*/function (_CardBase4) {
|
|
8979
9031
|
function CardImage() {
|
|
@@ -8990,9 +9042,9 @@ function _typeof(o) { "@babel/helpers - typeof"; return _typeof = "function" ==
|
|
|
8990
9042
|
}(CardBase);
|
|
8991
9043
|
module.exports = CardImage;
|
|
8992
9044
|
}, {
|
|
8993
|
-
"./card-base.js":
|
|
9045
|
+
"./card-base.js": 75
|
|
8994
9046
|
}],
|
|
8995
|
-
|
|
9047
|
+
80: [function (require, module, exports) {
|
|
8996
9048
|
var CardBase = require("./card-base.js");
|
|
8997
9049
|
var CardMap = /*#__PURE__*/function (_CardBase5) {
|
|
8998
9050
|
function CardMap() {
|
|
@@ -9009,9 +9061,9 @@ function _typeof(o) { "@babel/helpers - typeof"; return _typeof = "function" ==
|
|
|
9009
9061
|
}(CardBase);
|
|
9010
9062
|
module.exports = CardMap;
|
|
9011
9063
|
}, {
|
|
9012
|
-
"./card-base.js":
|
|
9064
|
+
"./card-base.js": 75
|
|
9013
9065
|
}],
|
|
9014
|
-
|
|
9066
|
+
81: [function (require, module, exports) {
|
|
9015
9067
|
var CardBase = require("./card-base.js");
|
|
9016
9068
|
var CardParagraph = /*#__PURE__*/function (_CardBase6) {
|
|
9017
9069
|
function CardParagraph() {
|
|
@@ -9028,9 +9080,9 @@ function _typeof(o) { "@babel/helpers - typeof"; return _typeof = "function" ==
|
|
|
9028
9080
|
}(CardBase);
|
|
9029
9081
|
module.exports = CardParagraph;
|
|
9030
9082
|
}, {
|
|
9031
|
-
"./card-base.js":
|
|
9083
|
+
"./card-base.js": 75
|
|
9032
9084
|
}],
|
|
9033
|
-
|
|
9085
|
+
82: [function (require, module, exports) {
|
|
9034
9086
|
var CardBase = require("./card-base.js");
|
|
9035
9087
|
var CardRow = /*#__PURE__*/function (_CardBase7) {
|
|
9036
9088
|
function CardRow() {
|
|
@@ -9047,9 +9099,9 @@ function _typeof(o) { "@babel/helpers - typeof"; return _typeof = "function" ==
|
|
|
9047
9099
|
}(CardBase);
|
|
9048
9100
|
module.exports = CardRow;
|
|
9049
9101
|
}, {
|
|
9050
|
-
"./card-base.js":
|
|
9102
|
+
"./card-base.js": 75
|
|
9051
9103
|
}],
|
|
9052
|
-
|
|
9104
|
+
83: [function (require, module, exports) {
|
|
9053
9105
|
var CardBase = require("./card-base.js");
|
|
9054
9106
|
var CardSlider = /*#__PURE__*/function (_CardBase8) {
|
|
9055
9107
|
function CardSlider() {
|
|
@@ -9066,9 +9118,9 @@ function _typeof(o) { "@babel/helpers - typeof"; return _typeof = "function" ==
|
|
|
9066
9118
|
}(CardBase);
|
|
9067
9119
|
module.exports = CardSlider;
|
|
9068
9120
|
}, {
|
|
9069
|
-
"./card-base.js":
|
|
9121
|
+
"./card-base.js": 75
|
|
9070
9122
|
}],
|
|
9071
|
-
|
|
9123
|
+
84: [function (require, module, exports) {
|
|
9072
9124
|
var CardBase = require("./card-base.js");
|
|
9073
9125
|
var CardTitle = /*#__PURE__*/function (_CardBase9) {
|
|
9074
9126
|
function CardTitle() {
|
|
@@ -9085,9 +9137,9 @@ function _typeof(o) { "@babel/helpers - typeof"; return _typeof = "function" ==
|
|
|
9085
9137
|
}(CardBase);
|
|
9086
9138
|
module.exports = CardTitle;
|
|
9087
9139
|
}, {
|
|
9088
|
-
"./card-base.js":
|
|
9140
|
+
"./card-base.js": 75
|
|
9089
9141
|
}],
|
|
9090
|
-
|
|
9142
|
+
85: [function (require, module, exports) {
|
|
9091
9143
|
var CardBase = require("./card-base.js");
|
|
9092
9144
|
var CardVideo = /*#__PURE__*/function (_CardBase10) {
|
|
9093
9145
|
function CardVideo() {
|
|
@@ -9104,9 +9156,9 @@ function _typeof(o) { "@babel/helpers - typeof"; return _typeof = "function" ==
|
|
|
9104
9156
|
}(CardBase);
|
|
9105
9157
|
module.exports = CardVideo;
|
|
9106
9158
|
}, {
|
|
9107
|
-
"./card-base.js":
|
|
9159
|
+
"./card-base.js": 75
|
|
9108
9160
|
}],
|
|
9109
|
-
|
|
9161
|
+
86: [function (require, module, exports) {
|
|
9110
9162
|
var CardBase = require("./card-base.js");
|
|
9111
9163
|
var CardYoutube = /*#__PURE__*/function (_CardBase11) {
|
|
9112
9164
|
function CardYoutube() {
|
|
@@ -9123,9 +9175,9 @@ function _typeof(o) { "@babel/helpers - typeof"; return _typeof = "function" ==
|
|
|
9123
9175
|
}(CardBase);
|
|
9124
9176
|
module.exports = CardYoutube;
|
|
9125
9177
|
}, {
|
|
9126
|
-
"./card-base.js":
|
|
9178
|
+
"./card-base.js": 75
|
|
9127
9179
|
}],
|
|
9128
|
-
|
|
9180
|
+
87: [function (require, module, exports) {
|
|
9129
9181
|
var PlattarBase = require("../interfaces/plattar-base.js");
|
|
9130
9182
|
var Page = /*#__PURE__*/function (_PlattarBase18) {
|
|
9131
9183
|
function Page() {
|
|
@@ -9142,9 +9194,9 @@ function _typeof(o) { "@babel/helpers - typeof"; return _typeof = "function" ==
|
|
|
9142
9194
|
}(PlattarBase);
|
|
9143
9195
|
module.exports = Page;
|
|
9144
9196
|
}, {
|
|
9145
|
-
"../interfaces/plattar-base.js":
|
|
9197
|
+
"../interfaces/plattar-base.js": 67
|
|
9146
9198
|
}],
|
|
9147
|
-
|
|
9199
|
+
88: [function (require, module, exports) {
|
|
9148
9200
|
var ProductBase = require("./product-base.js");
|
|
9149
9201
|
var ProductAnnotation = /*#__PURE__*/function (_ProductBase) {
|
|
9150
9202
|
function ProductAnnotation() {
|
|
@@ -9161,9 +9213,9 @@ function _typeof(o) { "@babel/helpers - typeof"; return _typeof = "function" ==
|
|
|
9161
9213
|
}(ProductBase);
|
|
9162
9214
|
module.exports = ProductAnnotation;
|
|
9163
9215
|
}, {
|
|
9164
|
-
"./product-base.js":
|
|
9216
|
+
"./product-base.js": 89
|
|
9165
9217
|
}],
|
|
9166
|
-
|
|
9218
|
+
89: [function (require, module, exports) {
|
|
9167
9219
|
var PlattarBase = require("../interfaces/plattar-base.js");
|
|
9168
9220
|
var Server = require("../../server/plattar-server.js");
|
|
9169
9221
|
var ProductBase = /*#__PURE__*/function (_PlattarBase19) {
|
|
@@ -9189,11 +9241,11 @@ function _typeof(o) { "@babel/helpers - typeof"; return _typeof = "function" ==
|
|
|
9189
9241
|
module.exports = ProductBase;
|
|
9190
9242
|
}, {
|
|
9191
9243
|
"../../server/plattar-server.js": 49,
|
|
9192
|
-
"../interfaces/plattar-base.js":
|
|
9193
|
-
"./product-annotation.js":
|
|
9194
|
-
"./product-variation.js":
|
|
9244
|
+
"../interfaces/plattar-base.js": 67,
|
|
9245
|
+
"./product-annotation.js": 88,
|
|
9246
|
+
"./product-variation.js": 90
|
|
9195
9247
|
}],
|
|
9196
|
-
|
|
9248
|
+
90: [function (require, module, exports) {
|
|
9197
9249
|
var ProductBase = require("./product-base.js");
|
|
9198
9250
|
var ProductVariation = /*#__PURE__*/function (_ProductBase2) {
|
|
9199
9251
|
function ProductVariation() {
|
|
@@ -9210,9 +9262,9 @@ function _typeof(o) { "@babel/helpers - typeof"; return _typeof = "function" ==
|
|
|
9210
9262
|
}(ProductBase);
|
|
9211
9263
|
module.exports = ProductVariation;
|
|
9212
9264
|
}, {
|
|
9213
|
-
"./product-base.js":
|
|
9265
|
+
"./product-base.js": 89
|
|
9214
9266
|
}],
|
|
9215
|
-
|
|
9267
|
+
91: [function (require, module, exports) {
|
|
9216
9268
|
var PlattarBase = require("../interfaces/plattar-base.js");
|
|
9217
9269
|
var Product = /*#__PURE__*/function (_PlattarBase20) {
|
|
9218
9270
|
function Product() {
|
|
@@ -9229,9 +9281,9 @@ function _typeof(o) { "@babel/helpers - typeof"; return _typeof = "function" ==
|
|
|
9229
9281
|
}(PlattarBase);
|
|
9230
9282
|
module.exports = Product;
|
|
9231
9283
|
}, {
|
|
9232
|
-
"../interfaces/plattar-base.js":
|
|
9284
|
+
"../interfaces/plattar-base.js": 67
|
|
9233
9285
|
}],
|
|
9234
|
-
|
|
9286
|
+
92: [function (require, module, exports) {
|
|
9235
9287
|
var SceneBase = require("./scene-base.js");
|
|
9236
9288
|
var SceneAnnotation = /*#__PURE__*/function (_SceneBase) {
|
|
9237
9289
|
function SceneAnnotation() {
|
|
@@ -9248,9 +9300,9 @@ function _typeof(o) { "@babel/helpers - typeof"; return _typeof = "function" ==
|
|
|
9248
9300
|
}(SceneBase);
|
|
9249
9301
|
module.exports = SceneAnnotation;
|
|
9250
9302
|
}, {
|
|
9251
|
-
"./scene-base.js":
|
|
9303
|
+
"./scene-base.js": 94
|
|
9252
9304
|
}],
|
|
9253
|
-
|
|
9305
|
+
93: [function (require, module, exports) {
|
|
9254
9306
|
var SceneBase = require("./scene-base.js");
|
|
9255
9307
|
var SceneAudio = /*#__PURE__*/function (_SceneBase2) {
|
|
9256
9308
|
function SceneAudio() {
|
|
@@ -9267,9 +9319,9 @@ function _typeof(o) { "@babel/helpers - typeof"; return _typeof = "function" ==
|
|
|
9267
9319
|
}(SceneBase);
|
|
9268
9320
|
module.exports = SceneAudio;
|
|
9269
9321
|
}, {
|
|
9270
|
-
"./scene-base.js":
|
|
9322
|
+
"./scene-base.js": 94
|
|
9271
9323
|
}],
|
|
9272
|
-
|
|
9324
|
+
94: [function (require, module, exports) {
|
|
9273
9325
|
var PlattarBase = require("../interfaces/plattar-base.js");
|
|
9274
9326
|
var Server = require("../../server/plattar-server.js");
|
|
9275
9327
|
var SceneBase = /*#__PURE__*/function (_PlattarBase21) {
|
|
@@ -9307,23 +9359,23 @@ function _typeof(o) { "@babel/helpers - typeof"; return _typeof = "function" ==
|
|
|
9307
9359
|
module.exports = SceneBase;
|
|
9308
9360
|
}, {
|
|
9309
9361
|
"../../server/plattar-server.js": 49,
|
|
9310
|
-
"../interfaces/plattar-base.js":
|
|
9311
|
-
"./scene-annotation.js":
|
|
9312
|
-
"./scene-audio.js":
|
|
9313
|
-
"./scene-button.js":
|
|
9314
|
-
"./scene-camera.js":
|
|
9315
|
-
"./scene-carousel.js":
|
|
9316
|
-
"./scene-image.js":
|
|
9317
|
-
"./scene-model.js":
|
|
9318
|
-
"./scene-panorama.js":
|
|
9319
|
-
"./scene-poller.js":
|
|
9320
|
-
"./scene-product.js":
|
|
9321
|
-
"./scene-shadow.js":
|
|
9322
|
-
"./scene-video.js":
|
|
9323
|
-
"./scene-volumetric.js":
|
|
9324
|
-
"./scene-youtube.js":
|
|
9362
|
+
"../interfaces/plattar-base.js": 67,
|
|
9363
|
+
"./scene-annotation.js": 92,
|
|
9364
|
+
"./scene-audio.js": 93,
|
|
9365
|
+
"./scene-button.js": 95,
|
|
9366
|
+
"./scene-camera.js": 96,
|
|
9367
|
+
"./scene-carousel.js": 97,
|
|
9368
|
+
"./scene-image.js": 100,
|
|
9369
|
+
"./scene-model.js": 101,
|
|
9370
|
+
"./scene-panorama.js": 102,
|
|
9371
|
+
"./scene-poller.js": 103,
|
|
9372
|
+
"./scene-product.js": 104,
|
|
9373
|
+
"./scene-shadow.js": 106,
|
|
9374
|
+
"./scene-video.js": 107,
|
|
9375
|
+
"./scene-volumetric.js": 108,
|
|
9376
|
+
"./scene-youtube.js": 109
|
|
9325
9377
|
}],
|
|
9326
|
-
|
|
9378
|
+
95: [function (require, module, exports) {
|
|
9327
9379
|
var SceneBase = require("./scene-base.js");
|
|
9328
9380
|
var SceneButton = /*#__PURE__*/function (_SceneBase3) {
|
|
9329
9381
|
function SceneButton() {
|
|
@@ -9340,9 +9392,9 @@ function _typeof(o) { "@babel/helpers - typeof"; return _typeof = "function" ==
|
|
|
9340
9392
|
}(SceneBase);
|
|
9341
9393
|
module.exports = SceneButton;
|
|
9342
9394
|
}, {
|
|
9343
|
-
"./scene-base.js":
|
|
9395
|
+
"./scene-base.js": 94
|
|
9344
9396
|
}],
|
|
9345
|
-
|
|
9397
|
+
96: [function (require, module, exports) {
|
|
9346
9398
|
var SceneBase = require("./scene-base.js");
|
|
9347
9399
|
var SceneCamera = /*#__PURE__*/function (_SceneBase4) {
|
|
9348
9400
|
function SceneCamera() {
|
|
@@ -9359,9 +9411,9 @@ function _typeof(o) { "@babel/helpers - typeof"; return _typeof = "function" ==
|
|
|
9359
9411
|
}(SceneBase);
|
|
9360
9412
|
module.exports = SceneCamera;
|
|
9361
9413
|
}, {
|
|
9362
|
-
"./scene-base.js":
|
|
9414
|
+
"./scene-base.js": 94
|
|
9363
9415
|
}],
|
|
9364
|
-
|
|
9416
|
+
97: [function (require, module, exports) {
|
|
9365
9417
|
var SceneBase = require("./scene-base.js");
|
|
9366
9418
|
var SceneCarousel = /*#__PURE__*/function (_SceneBase5) {
|
|
9367
9419
|
function SceneCarousel() {
|
|
@@ -9378,9 +9430,9 @@ function _typeof(o) { "@babel/helpers - typeof"; return _typeof = "function" ==
|
|
|
9378
9430
|
}(SceneBase);
|
|
9379
9431
|
module.exports = SceneCarousel;
|
|
9380
9432
|
}, {
|
|
9381
|
-
"./scene-base.js":
|
|
9433
|
+
"./scene-base.js": 94
|
|
9382
9434
|
}],
|
|
9383
|
-
|
|
9435
|
+
98: [function (require, module, exports) {
|
|
9384
9436
|
var PlattarBase = require("../interfaces/plattar-base.js");
|
|
9385
9437
|
var SceneGalleryImage = /*#__PURE__*/function (_PlattarBase22) {
|
|
9386
9438
|
function SceneGalleryImage() {
|
|
@@ -9397,9 +9449,9 @@ function _typeof(o) { "@babel/helpers - typeof"; return _typeof = "function" ==
|
|
|
9397
9449
|
}(PlattarBase);
|
|
9398
9450
|
module.exports = SceneGalleryImage;
|
|
9399
9451
|
}, {
|
|
9400
|
-
"../interfaces/plattar-base.js":
|
|
9452
|
+
"../interfaces/plattar-base.js": 67
|
|
9401
9453
|
}],
|
|
9402
|
-
|
|
9454
|
+
99: [function (require, module, exports) {
|
|
9403
9455
|
var PlattarBase = require("../interfaces/plattar-base.js");
|
|
9404
9456
|
var SceneGallery = /*#__PURE__*/function (_PlattarBase23) {
|
|
9405
9457
|
function SceneGallery() {
|
|
@@ -9416,9 +9468,9 @@ function _typeof(o) { "@babel/helpers - typeof"; return _typeof = "function" ==
|
|
|
9416
9468
|
}(PlattarBase);
|
|
9417
9469
|
module.exports = SceneGallery;
|
|
9418
9470
|
}, {
|
|
9419
|
-
"../interfaces/plattar-base.js":
|
|
9471
|
+
"../interfaces/plattar-base.js": 67
|
|
9420
9472
|
}],
|
|
9421
|
-
|
|
9473
|
+
100: [function (require, module, exports) {
|
|
9422
9474
|
var SceneBase = require("./scene-base.js");
|
|
9423
9475
|
var SceneImage = /*#__PURE__*/function (_SceneBase6) {
|
|
9424
9476
|
function SceneImage() {
|
|
@@ -9435,9 +9487,9 @@ function _typeof(o) { "@babel/helpers - typeof"; return _typeof = "function" ==
|
|
|
9435
9487
|
}(SceneBase);
|
|
9436
9488
|
module.exports = SceneImage;
|
|
9437
9489
|
}, {
|
|
9438
|
-
"./scene-base.js":
|
|
9490
|
+
"./scene-base.js": 94
|
|
9439
9491
|
}],
|
|
9440
|
-
|
|
9492
|
+
101: [function (require, module, exports) {
|
|
9441
9493
|
var SceneBase = require("./scene-base.js");
|
|
9442
9494
|
var SceneModel = /*#__PURE__*/function (_SceneBase7) {
|
|
9443
9495
|
function SceneModel() {
|
|
@@ -9454,9 +9506,9 @@ function _typeof(o) { "@babel/helpers - typeof"; return _typeof = "function" ==
|
|
|
9454
9506
|
}(SceneBase);
|
|
9455
9507
|
module.exports = SceneModel;
|
|
9456
9508
|
}, {
|
|
9457
|
-
"./scene-base.js":
|
|
9509
|
+
"./scene-base.js": 94
|
|
9458
9510
|
}],
|
|
9459
|
-
|
|
9511
|
+
102: [function (require, module, exports) {
|
|
9460
9512
|
var SceneBase = require("./scene-base.js");
|
|
9461
9513
|
var ScenePanorama = /*#__PURE__*/function (_SceneBase8) {
|
|
9462
9514
|
function ScenePanorama() {
|
|
@@ -9473,9 +9525,9 @@ function _typeof(o) { "@babel/helpers - typeof"; return _typeof = "function" ==
|
|
|
9473
9525
|
}(SceneBase);
|
|
9474
9526
|
module.exports = ScenePanorama;
|
|
9475
9527
|
}, {
|
|
9476
|
-
"./scene-base.js":
|
|
9528
|
+
"./scene-base.js": 94
|
|
9477
9529
|
}],
|
|
9478
|
-
|
|
9530
|
+
103: [function (require, module, exports) {
|
|
9479
9531
|
var SceneBase = require("./scene-base.js");
|
|
9480
9532
|
var ScenePoller = /*#__PURE__*/function (_SceneBase9) {
|
|
9481
9533
|
function ScenePoller() {
|
|
@@ -9492,9 +9544,9 @@ function _typeof(o) { "@babel/helpers - typeof"; return _typeof = "function" ==
|
|
|
9492
9544
|
}(SceneBase);
|
|
9493
9545
|
module.exports = ScenePoller;
|
|
9494
9546
|
}, {
|
|
9495
|
-
"./scene-base.js":
|
|
9547
|
+
"./scene-base.js": 94
|
|
9496
9548
|
}],
|
|
9497
|
-
|
|
9549
|
+
104: [function (require, module, exports) {
|
|
9498
9550
|
var SceneBase = require("./scene-base.js");
|
|
9499
9551
|
var SceneProduct = /*#__PURE__*/function (_SceneBase10) {
|
|
9500
9552
|
function SceneProduct() {
|
|
@@ -9511,9 +9563,9 @@ function _typeof(o) { "@babel/helpers - typeof"; return _typeof = "function" ==
|
|
|
9511
9563
|
}(SceneBase);
|
|
9512
9564
|
module.exports = SceneProduct;
|
|
9513
9565
|
}, {
|
|
9514
|
-
"./scene-base.js":
|
|
9566
|
+
"./scene-base.js": 94
|
|
9515
9567
|
}],
|
|
9516
|
-
|
|
9568
|
+
105: [function (require, module, exports) {
|
|
9517
9569
|
var SceneBase = require("./scene-base.js");
|
|
9518
9570
|
var SceneScript = /*#__PURE__*/function (_SceneBase11) {
|
|
9519
9571
|
function SceneScript() {
|
|
@@ -9530,9 +9582,9 @@ function _typeof(o) { "@babel/helpers - typeof"; return _typeof = "function" ==
|
|
|
9530
9582
|
}(SceneBase);
|
|
9531
9583
|
module.exports = SceneScript;
|
|
9532
9584
|
}, {
|
|
9533
|
-
"./scene-base.js":
|
|
9585
|
+
"./scene-base.js": 94
|
|
9534
9586
|
}],
|
|
9535
|
-
|
|
9587
|
+
106: [function (require, module, exports) {
|
|
9536
9588
|
var SceneBase = require("./scene-base.js");
|
|
9537
9589
|
var SceneShadow = /*#__PURE__*/function (_SceneBase12) {
|
|
9538
9590
|
function SceneShadow() {
|
|
@@ -9549,9 +9601,9 @@ function _typeof(o) { "@babel/helpers - typeof"; return _typeof = "function" ==
|
|
|
9549
9601
|
}(SceneBase);
|
|
9550
9602
|
module.exports = SceneShadow;
|
|
9551
9603
|
}, {
|
|
9552
|
-
"./scene-base.js":
|
|
9604
|
+
"./scene-base.js": 94
|
|
9553
9605
|
}],
|
|
9554
|
-
|
|
9606
|
+
107: [function (require, module, exports) {
|
|
9555
9607
|
var SceneBase = require("./scene-base.js");
|
|
9556
9608
|
var SceneVideo = /*#__PURE__*/function (_SceneBase13) {
|
|
9557
9609
|
function SceneVideo() {
|
|
@@ -9568,9 +9620,9 @@ function _typeof(o) { "@babel/helpers - typeof"; return _typeof = "function" ==
|
|
|
9568
9620
|
}(SceneBase);
|
|
9569
9621
|
module.exports = SceneVideo;
|
|
9570
9622
|
}, {
|
|
9571
|
-
"./scene-base.js":
|
|
9623
|
+
"./scene-base.js": 94
|
|
9572
9624
|
}],
|
|
9573
|
-
|
|
9625
|
+
108: [function (require, module, exports) {
|
|
9574
9626
|
var SceneBase = require("./scene-base.js");
|
|
9575
9627
|
var SceneVolumetric = /*#__PURE__*/function (_SceneBase14) {
|
|
9576
9628
|
function SceneVolumetric() {
|
|
@@ -9587,9 +9639,9 @@ function _typeof(o) { "@babel/helpers - typeof"; return _typeof = "function" ==
|
|
|
9587
9639
|
}(SceneBase);
|
|
9588
9640
|
module.exports = SceneVolumetric;
|
|
9589
9641
|
}, {
|
|
9590
|
-
"./scene-base.js":
|
|
9642
|
+
"./scene-base.js": 94
|
|
9591
9643
|
}],
|
|
9592
|
-
|
|
9644
|
+
109: [function (require, module, exports) {
|
|
9593
9645
|
var SceneBase = require("./scene-base.js");
|
|
9594
9646
|
var SceneYoutube = /*#__PURE__*/function (_SceneBase15) {
|
|
9595
9647
|
function SceneYoutube() {
|
|
@@ -9606,9 +9658,9 @@ function _typeof(o) { "@babel/helpers - typeof"; return _typeof = "function" ==
|
|
|
9606
9658
|
}(SceneBase);
|
|
9607
9659
|
module.exports = SceneYoutube;
|
|
9608
9660
|
}, {
|
|
9609
|
-
"./scene-base.js":
|
|
9661
|
+
"./scene-base.js": 94
|
|
9610
9662
|
}],
|
|
9611
|
-
|
|
9663
|
+
110: [function (require, module, exports) {
|
|
9612
9664
|
var PlattarBase = require("../interfaces/plattar-base.js");
|
|
9613
9665
|
var Scene = /*#__PURE__*/function (_PlattarBase24) {
|
|
9614
9666
|
function Scene() {
|
|
@@ -9625,9 +9677,9 @@ function _typeof(o) { "@babel/helpers - typeof"; return _typeof = "function" ==
|
|
|
9625
9677
|
}(PlattarBase);
|
|
9626
9678
|
module.exports = Scene;
|
|
9627
9679
|
}, {
|
|
9628
|
-
"../interfaces/plattar-base.js":
|
|
9680
|
+
"../interfaces/plattar-base.js": 67
|
|
9629
9681
|
}],
|
|
9630
|
-
|
|
9682
|
+
111: [function (require, module, exports) {
|
|
9631
9683
|
var PlattarBase = require("../interfaces/plattar-base.js");
|
|
9632
9684
|
var TriggerImage = /*#__PURE__*/function (_PlattarBase25) {
|
|
9633
9685
|
function TriggerImage() {
|
|
@@ -9644,9 +9696,9 @@ function _typeof(o) { "@babel/helpers - typeof"; return _typeof = "function" ==
|
|
|
9644
9696
|
}(PlattarBase);
|
|
9645
9697
|
module.exports = TriggerImage;
|
|
9646
9698
|
}, {
|
|
9647
|
-
"../interfaces/plattar-base.js":
|
|
9699
|
+
"../interfaces/plattar-base.js": 67
|
|
9648
9700
|
}],
|
|
9649
|
-
|
|
9701
|
+
112: [function (require, module, exports) {
|
|
9650
9702
|
var Application = require("../types/application.js");
|
|
9651
9703
|
|
|
9652
9704
|
// import Scene types and its children
|
|
@@ -9694,6 +9746,7 @@ function _typeof(o) { "@babel/helpers - typeof"; return _typeof = "function" ==
|
|
|
9694
9746
|
var FileModel = require("../types/file/file-model.js");
|
|
9695
9747
|
var FileImage = require("../types/file/file-image.js");
|
|
9696
9748
|
var FileScript = require("../types/file/file-script.js");
|
|
9749
|
+
var FileJSON = require("../types/file/file-json.js");
|
|
9697
9750
|
|
|
9698
9751
|
// import Trigger and its types
|
|
9699
9752
|
var TriggerImage = require("../types/trigger/trigger-image.js");
|
|
@@ -9720,7 +9773,7 @@ function _typeof(o) { "@babel/helpers - typeof"; return _typeof = "function" ==
|
|
|
9720
9773
|
});
|
|
9721
9774
|
/**
|
|
9722
9775
|
* Checks if the provided Object is a Plattar Object
|
|
9723
|
-
*
|
|
9776
|
+
*
|
|
9724
9777
|
* @param {*} obj The object instance to check
|
|
9725
9778
|
*/
|
|
9726
9779
|
PlattarUtil.isPlattarObject = function (obj) {
|
|
@@ -9738,9 +9791,9 @@ function _typeof(o) { "@babel/helpers - typeof"; return _typeof = "function" ==
|
|
|
9738
9791
|
* This function will recursively reconstruct an object
|
|
9739
9792
|
* and its required hierarchy from a provided response JSON
|
|
9740
9793
|
* from the PLATTAR Server.
|
|
9741
|
-
*
|
|
9794
|
+
*
|
|
9742
9795
|
* This is an internal use function and should not be used directly
|
|
9743
|
-
*
|
|
9796
|
+
*
|
|
9744
9797
|
* @param {*} parent The parent object of the request
|
|
9745
9798
|
* @param {*} json The parsed JSON data from the PLATTAR Server
|
|
9746
9799
|
* @param {*} options The cache/process options
|
|
@@ -9799,7 +9852,7 @@ function _typeof(o) { "@babel/helpers - typeof"; return _typeof = "function" ==
|
|
|
9799
9852
|
/**
|
|
9800
9853
|
* Used to dynamically match types from the Plattar API into class objects
|
|
9801
9854
|
* Throws an Error if the provided type does not exit.
|
|
9802
|
-
*
|
|
9855
|
+
*
|
|
9803
9856
|
* @param {*} type (string) the type of object to create
|
|
9804
9857
|
* @param {*} id (string) the id of the object
|
|
9805
9858
|
* @param {*} server (optional) the server this object belongs in
|
|
@@ -9815,7 +9868,7 @@ function _typeof(o) { "@babel/helpers - typeof"; return _typeof = "function" ==
|
|
|
9815
9868
|
|
|
9816
9869
|
/**
|
|
9817
9870
|
* Dynamic class matching provided an object type as a string
|
|
9818
|
-
*
|
|
9871
|
+
*
|
|
9819
9872
|
* @param {*} type The type of class to construct
|
|
9820
9873
|
*/
|
|
9821
9874
|
PlattarUtil.match = function (type) {
|
|
@@ -9882,6 +9935,8 @@ function _typeof(o) { "@babel/helpers - typeof"; return _typeof = "function" ==
|
|
|
9882
9935
|
return FileImage;
|
|
9883
9936
|
case FileScript.type():
|
|
9884
9937
|
return FileScript;
|
|
9938
|
+
case FileJSON.type():
|
|
9939
|
+
return FileJSON;
|
|
9885
9940
|
case CardMap.type():
|
|
9886
9941
|
return CardMap;
|
|
9887
9942
|
case CardParagraph.type():
|
|
@@ -9949,54 +10004,55 @@ function _typeof(o) { "@babel/helpers - typeof"; return _typeof = "function" ==
|
|
|
9949
10004
|
"../types/content-pipeline/solution.js": 59,
|
|
9950
10005
|
"../types/file/file-audio.js": 60,
|
|
9951
10006
|
"../types/file/file-image.js": 62,
|
|
9952
|
-
"../types/file/file-
|
|
9953
|
-
"../types/file/file-
|
|
9954
|
-
"../types/file/file-
|
|
9955
|
-
"../types/
|
|
9956
|
-
"../types/
|
|
9957
|
-
"../types/misc/
|
|
9958
|
-
"../types/misc/
|
|
9959
|
-
"../types/misc/
|
|
9960
|
-
"../types/misc/
|
|
9961
|
-
"../types/
|
|
9962
|
-
"../types/page/card-
|
|
9963
|
-
"../types/page/card-
|
|
9964
|
-
"../types/page/card-
|
|
9965
|
-
"../types/page/card-
|
|
9966
|
-
"../types/page/card-
|
|
9967
|
-
"../types/page/card-
|
|
9968
|
-
"../types/page/card-
|
|
9969
|
-
"../types/page/card-
|
|
9970
|
-
"../types/page/card-
|
|
9971
|
-
"../types/page/card-
|
|
9972
|
-
"../types/page/
|
|
9973
|
-
"../types/
|
|
9974
|
-
"../types/product/product-
|
|
9975
|
-
"../types/product/product.js": 90,
|
|
9976
|
-
"../types/
|
|
9977
|
-
"../types/scene/scene-
|
|
9978
|
-
"../types/scene/scene-
|
|
9979
|
-
"../types/scene/scene-
|
|
9980
|
-
"../types/scene/scene-
|
|
9981
|
-
"../types/scene/scene-
|
|
9982
|
-
"../types/scene/scene-gallery.js": 98,
|
|
9983
|
-
"../types/scene/scene-
|
|
9984
|
-
"../types/scene/scene-
|
|
9985
|
-
"../types/scene/scene-
|
|
9986
|
-
"../types/scene/scene-
|
|
9987
|
-
"../types/scene/scene-
|
|
9988
|
-
"../types/scene/scene-
|
|
9989
|
-
"../types/scene/scene-
|
|
9990
|
-
"../types/scene/scene-
|
|
9991
|
-
"../types/scene/scene-
|
|
9992
|
-
"../types/scene/scene-
|
|
9993
|
-
"../types/scene/scene.js": 109,
|
|
9994
|
-
"../types/
|
|
10007
|
+
"../types/file/file-json.js": 63,
|
|
10008
|
+
"../types/file/file-model.js": 64,
|
|
10009
|
+
"../types/file/file-script.js": 65,
|
|
10010
|
+
"../types/file/file-video.js": 66,
|
|
10011
|
+
"../types/interfaces/plattar-object.js": 69,
|
|
10012
|
+
"../types/misc/application-build.js": 70,
|
|
10013
|
+
"../types/misc/asset-library": 71,
|
|
10014
|
+
"../types/misc/async-job.js": 72,
|
|
10015
|
+
"../types/misc/script-event.js": 73,
|
|
10016
|
+
"../types/misc/tag.js": 74,
|
|
10017
|
+
"../types/page/card-button.js": 76,
|
|
10018
|
+
"../types/page/card-html.js": 77,
|
|
10019
|
+
"../types/page/card-iframe.js": 78,
|
|
10020
|
+
"../types/page/card-image.js": 79,
|
|
10021
|
+
"../types/page/card-map.js": 80,
|
|
10022
|
+
"../types/page/card-paragraph.js": 81,
|
|
10023
|
+
"../types/page/card-row.js": 82,
|
|
10024
|
+
"../types/page/card-slider.js": 83,
|
|
10025
|
+
"../types/page/card-title.js": 84,
|
|
10026
|
+
"../types/page/card-video.js": 85,
|
|
10027
|
+
"../types/page/card-youtube.js": 86,
|
|
10028
|
+
"../types/page/page.js": 87,
|
|
10029
|
+
"../types/product/product-annotation.js": 88,
|
|
10030
|
+
"../types/product/product-variation.js": 90,
|
|
10031
|
+
"../types/product/product.js": 91,
|
|
10032
|
+
"../types/scene/scene-annotation.js": 92,
|
|
10033
|
+
"../types/scene/scene-audio.js": 93,
|
|
10034
|
+
"../types/scene/scene-button.js": 95,
|
|
10035
|
+
"../types/scene/scene-camera.js": 96,
|
|
10036
|
+
"../types/scene/scene-carousel.js": 97,
|
|
10037
|
+
"../types/scene/scene-gallery-image.js": 98,
|
|
10038
|
+
"../types/scene/scene-gallery.js": 99,
|
|
10039
|
+
"../types/scene/scene-image.js": 100,
|
|
10040
|
+
"../types/scene/scene-model.js": 101,
|
|
10041
|
+
"../types/scene/scene-panorama.js": 102,
|
|
10042
|
+
"../types/scene/scene-poller.js": 103,
|
|
10043
|
+
"../types/scene/scene-product.js": 104,
|
|
10044
|
+
"../types/scene/scene-script.js": 105,
|
|
10045
|
+
"../types/scene/scene-shadow.js": 106,
|
|
10046
|
+
"../types/scene/scene-video.js": 107,
|
|
10047
|
+
"../types/scene/scene-volumetric.js": 108,
|
|
10048
|
+
"../types/scene/scene-youtube.js": 109,
|
|
10049
|
+
"../types/scene/scene.js": 110,
|
|
10050
|
+
"../types/trigger/trigger-image.js": 111
|
|
9995
10051
|
}],
|
|
9996
|
-
112: [function (require, module, exports) {
|
|
9997
|
-
module.exports = "1.178.1";
|
|
9998
|
-
}, {}],
|
|
9999
10052
|
113: [function (require, module, exports) {
|
|
10053
|
+
module.exports = "1.186.3";
|
|
10054
|
+
}, {}],
|
|
10055
|
+
114: [function (require, module, exports) {
|
|
10000
10056
|
var QRCodeStyling = require("qr-code-styling");
|
|
10001
10057
|
var hash = require("object-hash");
|
|
10002
10058
|
var BaseElement = /*#__PURE__*/function (_HTMLElement2) {
|
|
@@ -10268,10 +10324,10 @@ function _typeof(o) { "@babel/helpers - typeof"; return _typeof = "function" ==
|
|
|
10268
10324
|
}(/*#__PURE__*/_wrapNativeSuper(HTMLElement));
|
|
10269
10325
|
module.exports = BaseElement;
|
|
10270
10326
|
}, {
|
|
10271
|
-
"object-hash":
|
|
10272
|
-
"qr-code-styling":
|
|
10327
|
+
"object-hash": 144,
|
|
10328
|
+
"qr-code-styling": 146
|
|
10273
10329
|
}],
|
|
10274
|
-
|
|
10330
|
+
115: [function (require, module, exports) {
|
|
10275
10331
|
var BaseElement = require("./base/base-element.js");
|
|
10276
10332
|
var QRCodeElement = /*#__PURE__*/function (_BaseElement) {
|
|
10277
10333
|
function QRCodeElement() {
|
|
@@ -10283,9 +10339,9 @@ function _typeof(o) { "@babel/helpers - typeof"; return _typeof = "function" ==
|
|
|
10283
10339
|
}(BaseElement);
|
|
10284
10340
|
module.exports = QRCodeElement;
|
|
10285
10341
|
}, {
|
|
10286
|
-
"./base/base-element.js":
|
|
10342
|
+
"./base/base-element.js": 114
|
|
10287
10343
|
}],
|
|
10288
|
-
|
|
10344
|
+
116: [function (require, module, exports) {
|
|
10289
10345
|
"use strict";
|
|
10290
10346
|
|
|
10291
10347
|
var QRCodeElement = require("./elements/qrcode-element.js");
|
|
@@ -10300,15 +10356,13 @@ function _typeof(o) { "@babel/helpers - typeof"; return _typeof = "function" ==
|
|
|
10300
10356
|
version: Version
|
|
10301
10357
|
};
|
|
10302
10358
|
}, {
|
|
10303
|
-
"./elements/qrcode-element.js":
|
|
10304
|
-
"./version":
|
|
10305
|
-
}],
|
|
10306
|
-
116: [function (require, module, exports) {
|
|
10307
|
-
arguments[4][112][0].apply(exports, arguments);
|
|
10308
|
-
}, {
|
|
10309
|
-
"dup": 112
|
|
10359
|
+
"./elements/qrcode-element.js": 115,
|
|
10360
|
+
"./version": 117
|
|
10310
10361
|
}],
|
|
10311
10362
|
117: [function (require, module, exports) {
|
|
10363
|
+
module.exports = "1.178.1";
|
|
10364
|
+
}, {}],
|
|
10365
|
+
118: [function (require, module, exports) {
|
|
10312
10366
|
"use strict";
|
|
10313
10367
|
|
|
10314
10368
|
var __importDefault = this && this.__importDefault || function (mod) {
|
|
@@ -10494,11 +10548,11 @@ function _typeof(o) { "@babel/helpers - typeof"; return _typeof = "function" ==
|
|
|
10494
10548
|
}();
|
|
10495
10549
|
exports.Configurator = Configurator;
|
|
10496
10550
|
}, {
|
|
10497
|
-
"./remote-request":
|
|
10551
|
+
"./remote-request": 120,
|
|
10498
10552
|
"@plattar/plattar-api": 47,
|
|
10499
|
-
"object-hash":
|
|
10553
|
+
"object-hash": 144
|
|
10500
10554
|
}],
|
|
10501
|
-
|
|
10555
|
+
119: [function (require, module, exports) {
|
|
10502
10556
|
"use strict";
|
|
10503
10557
|
|
|
10504
10558
|
var __importDefault = this && this.__importDefault || function (mod) {
|
|
@@ -10575,11 +10629,11 @@ function _typeof(o) { "@babel/helpers - typeof"; return _typeof = "function" ==
|
|
|
10575
10629
|
}();
|
|
10576
10630
|
exports.ModelConverter = ModelConverter;
|
|
10577
10631
|
}, {
|
|
10578
|
-
"./remote-request":
|
|
10632
|
+
"./remote-request": 120,
|
|
10579
10633
|
"@plattar/plattar-api": 47,
|
|
10580
|
-
"object-hash":
|
|
10634
|
+
"object-hash": 144
|
|
10581
10635
|
}],
|
|
10582
|
-
|
|
10636
|
+
120: [function (require, module, exports) {
|
|
10583
10637
|
"use strict";
|
|
10584
10638
|
|
|
10585
10639
|
var __importDefault = this && this.__importDefault || function (mod) {
|
|
@@ -10656,9 +10710,9 @@ function _typeof(o) { "@babel/helpers - typeof"; return _typeof = "function" ==
|
|
|
10656
10710
|
}();
|
|
10657
10711
|
exports.RemoteRequest = RemoteRequest;
|
|
10658
10712
|
}, {
|
|
10659
|
-
"node-fetch":
|
|
10713
|
+
"node-fetch": 143
|
|
10660
10714
|
}],
|
|
10661
|
-
|
|
10715
|
+
121: [function (require, module, exports) {
|
|
10662
10716
|
"use strict";
|
|
10663
10717
|
|
|
10664
10718
|
var __createBinding = this && this.__createBinding || (Object.create ? function (o, m, k, k2) {
|
|
@@ -10719,11 +10773,11 @@ function _typeof(o) { "@babel/helpers - typeof"; return _typeof = "function" ==
|
|
|
10719
10773
|
var version_1 = __importDefault(require("./version"));
|
|
10720
10774
|
console.log("using @plattar/plattar-services v" + version_1["default"]);
|
|
10721
10775
|
}, {
|
|
10722
|
-
"./core/configurator":
|
|
10723
|
-
"./core/model-converter":
|
|
10724
|
-
"./version":
|
|
10776
|
+
"./core/configurator": 118,
|
|
10777
|
+
"./core/model-converter": 119,
|
|
10778
|
+
"./version": 122
|
|
10725
10779
|
}],
|
|
10726
|
-
|
|
10780
|
+
122: [function (require, module, exports) {
|
|
10727
10781
|
"use strict";
|
|
10728
10782
|
|
|
10729
10783
|
Object.defineProperty(exports, "__esModule", {
|
|
@@ -10731,7 +10785,7 @@ function _typeof(o) { "@babel/helpers - typeof"; return _typeof = "function" ==
|
|
|
10731
10785
|
});
|
|
10732
10786
|
exports["default"] = "1.157.1";
|
|
10733
10787
|
}, {}],
|
|
10734
|
-
|
|
10788
|
+
123: [function (require, module, exports) {
|
|
10735
10789
|
var Util = require("../../util/util");
|
|
10736
10790
|
var ElementController = require("../controllers/element-controller");
|
|
10737
10791
|
var _require = require("@plattar/context-messenger"),
|
|
@@ -10913,11 +10967,11 @@ function _typeof(o) { "@babel/helpers - typeof"; return _typeof = "function" ==
|
|
|
10913
10967
|
}(/*#__PURE__*/_wrapNativeSuper(HTMLElement));
|
|
10914
10968
|
module.exports = BaseElement;
|
|
10915
10969
|
}, {
|
|
10916
|
-
"../../util/util":
|
|
10917
|
-
"../controllers/element-controller":
|
|
10970
|
+
"../../util/util": 138,
|
|
10971
|
+
"../controllers/element-controller": 125,
|
|
10918
10972
|
"@plattar/context-messenger": 24
|
|
10919
10973
|
}],
|
|
10920
|
-
|
|
10974
|
+
124: [function (require, module, exports) {
|
|
10921
10975
|
var BaseElement = require("./base/base-element.js");
|
|
10922
10976
|
var ConfiguratorElement = /*#__PURE__*/function (_BaseElement2) {
|
|
10923
10977
|
function ConfiguratorElement() {
|
|
@@ -10962,9 +11016,9 @@ function _typeof(o) { "@babel/helpers - typeof"; return _typeof = "function" ==
|
|
|
10962
11016
|
}(BaseElement);
|
|
10963
11017
|
module.exports = ConfiguratorElement;
|
|
10964
11018
|
}, {
|
|
10965
|
-
"./base/base-element.js":
|
|
11019
|
+
"./base/base-element.js": 123
|
|
10966
11020
|
}],
|
|
10967
|
-
|
|
11021
|
+
125: [function (require, module, exports) {
|
|
10968
11022
|
var Util = require("../../util/util.js");
|
|
10969
11023
|
var _require2 = require("@plattar/context-messenger"),
|
|
10970
11024
|
messenger = _require2.messenger;
|
|
@@ -11070,11 +11124,11 @@ function _typeof(o) { "@babel/helpers - typeof"; return _typeof = "function" ==
|
|
|
11070
11124
|
}();
|
|
11071
11125
|
module.exports = ElementController;
|
|
11072
11126
|
}, {
|
|
11073
|
-
"../../util/util.js":
|
|
11074
|
-
"./iframe-controller.js":
|
|
11127
|
+
"../../util/util.js": 138,
|
|
11128
|
+
"./iframe-controller.js": 126,
|
|
11075
11129
|
"@plattar/context-messenger": 24
|
|
11076
11130
|
}],
|
|
11077
|
-
|
|
11131
|
+
126: [function (require, module, exports) {
|
|
11078
11132
|
var Util = require("../../util/util.js");
|
|
11079
11133
|
var IFrameController = /*#__PURE__*/function () {
|
|
11080
11134
|
function IFrameController(element, src, id) {
|
|
@@ -11170,9 +11224,9 @@ function _typeof(o) { "@babel/helpers - typeof"; return _typeof = "function" ==
|
|
|
11170
11224
|
}();
|
|
11171
11225
|
module.exports = IFrameController;
|
|
11172
11226
|
}, {
|
|
11173
|
-
"../../util/util.js":
|
|
11227
|
+
"../../util/util.js": 138
|
|
11174
11228
|
}],
|
|
11175
|
-
|
|
11229
|
+
127: [function (require, module, exports) {
|
|
11176
11230
|
var BaseElement = require("./base/base-element.js");
|
|
11177
11231
|
var EditorElement = /*#__PURE__*/function (_BaseElement3) {
|
|
11178
11232
|
function EditorElement() {
|
|
@@ -11194,9 +11248,9 @@ function _typeof(o) { "@babel/helpers - typeof"; return _typeof = "function" ==
|
|
|
11194
11248
|
}(BaseElement);
|
|
11195
11249
|
module.exports = EditorElement;
|
|
11196
11250
|
}, {
|
|
11197
|
-
"./base/base-element.js":
|
|
11251
|
+
"./base/base-element.js": 123
|
|
11198
11252
|
}],
|
|
11199
|
-
|
|
11253
|
+
128: [function (require, module, exports) {
|
|
11200
11254
|
var BaseElement = require("./base/base-element.js");
|
|
11201
11255
|
var EWallElement = /*#__PURE__*/function (_BaseElement4) {
|
|
11202
11256
|
function EWallElement() {
|
|
@@ -11218,9 +11272,9 @@ function _typeof(o) { "@babel/helpers - typeof"; return _typeof = "function" ==
|
|
|
11218
11272
|
}(BaseElement);
|
|
11219
11273
|
module.exports = EWallElement;
|
|
11220
11274
|
}, {
|
|
11221
|
-
"./base/base-element.js":
|
|
11275
|
+
"./base/base-element.js": 123
|
|
11222
11276
|
}],
|
|
11223
|
-
|
|
11277
|
+
129: [function (require, module, exports) {
|
|
11224
11278
|
var BaseElement = require("./base/base-element.js");
|
|
11225
11279
|
var FaceARElement = /*#__PURE__*/function (_BaseElement5) {
|
|
11226
11280
|
function FaceARElement() {
|
|
@@ -11262,9 +11316,9 @@ function _typeof(o) { "@babel/helpers - typeof"; return _typeof = "function" ==
|
|
|
11262
11316
|
}(BaseElement);
|
|
11263
11317
|
module.exports = FaceARElement;
|
|
11264
11318
|
}, {
|
|
11265
|
-
"./base/base-element.js":
|
|
11319
|
+
"./base/base-element.js": 123
|
|
11266
11320
|
}],
|
|
11267
|
-
|
|
11321
|
+
130: [function (require, module, exports) {
|
|
11268
11322
|
var BaseElement = require("./base/base-element.js");
|
|
11269
11323
|
var GalleryElement = /*#__PURE__*/function (_BaseElement6) {
|
|
11270
11324
|
function GalleryElement() {
|
|
@@ -11291,9 +11345,9 @@ function _typeof(o) { "@babel/helpers - typeof"; return _typeof = "function" ==
|
|
|
11291
11345
|
}(BaseElement);
|
|
11292
11346
|
module.exports = GalleryElement;
|
|
11293
11347
|
}, {
|
|
11294
|
-
"./base/base-element.js":
|
|
11348
|
+
"./base/base-element.js": 123
|
|
11295
11349
|
}],
|
|
11296
|
-
|
|
11350
|
+
131: [function (require, module, exports) {
|
|
11297
11351
|
var BaseElement = require("./base/base-element.js");
|
|
11298
11352
|
var LauncherElement = /*#__PURE__*/function (_BaseElement7) {
|
|
11299
11353
|
function LauncherElement() {
|
|
@@ -11350,9 +11404,9 @@ function _typeof(o) { "@babel/helpers - typeof"; return _typeof = "function" ==
|
|
|
11350
11404
|
}(BaseElement);
|
|
11351
11405
|
module.exports = LauncherElement;
|
|
11352
11406
|
}, {
|
|
11353
|
-
"./base/base-element.js":
|
|
11407
|
+
"./base/base-element.js": 123
|
|
11354
11408
|
}],
|
|
11355
|
-
|
|
11409
|
+
132: [function (require, module, exports) {
|
|
11356
11410
|
var BaseElement = require("./base/base-element.js");
|
|
11357
11411
|
var ModelElement = /*#__PURE__*/function (_BaseElement8) {
|
|
11358
11412
|
function ModelElement() {
|
|
@@ -11393,9 +11447,9 @@ function _typeof(o) { "@babel/helpers - typeof"; return _typeof = "function" ==
|
|
|
11393
11447
|
}(BaseElement);
|
|
11394
11448
|
module.exports = ModelElement;
|
|
11395
11449
|
}, {
|
|
11396
|
-
"./base/base-element.js":
|
|
11450
|
+
"./base/base-element.js": 123
|
|
11397
11451
|
}],
|
|
11398
|
-
|
|
11452
|
+
133: [function (require, module, exports) {
|
|
11399
11453
|
var BaseElement = require("./base/base-element.js");
|
|
11400
11454
|
var ProductElement = /*#__PURE__*/function (_BaseElement9) {
|
|
11401
11455
|
function ProductElement() {
|
|
@@ -11439,9 +11493,9 @@ function _typeof(o) { "@babel/helpers - typeof"; return _typeof = "function" ==
|
|
|
11439
11493
|
}(BaseElement);
|
|
11440
11494
|
module.exports = ProductElement;
|
|
11441
11495
|
}, {
|
|
11442
|
-
"./base/base-element.js":
|
|
11496
|
+
"./base/base-element.js": 123
|
|
11443
11497
|
}],
|
|
11444
|
-
|
|
11498
|
+
134: [function (require, module, exports) {
|
|
11445
11499
|
var BaseElement = require("./base/base-element.js");
|
|
11446
11500
|
var StudioElement = /*#__PURE__*/function (_BaseElement10) {
|
|
11447
11501
|
function StudioElement() {
|
|
@@ -11474,9 +11528,9 @@ function _typeof(o) { "@babel/helpers - typeof"; return _typeof = "function" ==
|
|
|
11474
11528
|
}(BaseElement);
|
|
11475
11529
|
module.exports = StudioElement;
|
|
11476
11530
|
}, {
|
|
11477
|
-
"./base/base-element.js":
|
|
11531
|
+
"./base/base-element.js": 123
|
|
11478
11532
|
}],
|
|
11479
|
-
|
|
11533
|
+
135: [function (require, module, exports) {
|
|
11480
11534
|
var BaseElement = require("./base/base-element.js");
|
|
11481
11535
|
var ViewerElement = /*#__PURE__*/function (_BaseElement11) {
|
|
11482
11536
|
function ViewerElement() {
|
|
@@ -11515,9 +11569,9 @@ function _typeof(o) { "@babel/helpers - typeof"; return _typeof = "function" ==
|
|
|
11515
11569
|
}(BaseElement);
|
|
11516
11570
|
module.exports = ViewerElement;
|
|
11517
11571
|
}, {
|
|
11518
|
-
"./base/base-element.js":
|
|
11572
|
+
"./base/base-element.js": 123
|
|
11519
11573
|
}],
|
|
11520
|
-
|
|
11574
|
+
136: [function (require, module, exports) {
|
|
11521
11575
|
var BaseElement = require("./base/base-element.js");
|
|
11522
11576
|
var WebXRElement = /*#__PURE__*/function (_BaseElement12) {
|
|
11523
11577
|
function WebXRElement() {
|
|
@@ -11539,9 +11593,9 @@ function _typeof(o) { "@babel/helpers - typeof"; return _typeof = "function" ==
|
|
|
11539
11593
|
}(BaseElement);
|
|
11540
11594
|
module.exports = WebXRElement;
|
|
11541
11595
|
}, {
|
|
11542
|
-
"./base/base-element.js":
|
|
11596
|
+
"./base/base-element.js": 123
|
|
11543
11597
|
}],
|
|
11544
|
-
|
|
11598
|
+
137: [function (require, module, exports) {
|
|
11545
11599
|
"use strict";
|
|
11546
11600
|
|
|
11547
11601
|
var WebXRElement = require("./elements/webxr-element.js");
|
|
@@ -11594,20 +11648,20 @@ function _typeof(o) { "@babel/helpers - typeof"; return _typeof = "function" ==
|
|
|
11594
11648
|
version: Version
|
|
11595
11649
|
};
|
|
11596
11650
|
}, {
|
|
11597
|
-
"./elements/configurator-element.js":
|
|
11598
|
-
"./elements/editor-element.js":
|
|
11599
|
-
"./elements/ewall-element.js":
|
|
11600
|
-
"./elements/facear-element.js":
|
|
11601
|
-
"./elements/gallery-element.js":
|
|
11602
|
-
"./elements/launcher-element.js":
|
|
11603
|
-
"./elements/model-element.js":
|
|
11604
|
-
"./elements/product-element.js":
|
|
11605
|
-
"./elements/studio-element.js":
|
|
11606
|
-
"./elements/viewer-element.js":
|
|
11607
|
-
"./elements/webxr-element.js":
|
|
11608
|
-
"./version":
|
|
11651
|
+
"./elements/configurator-element.js": 124,
|
|
11652
|
+
"./elements/editor-element.js": 127,
|
|
11653
|
+
"./elements/ewall-element.js": 128,
|
|
11654
|
+
"./elements/facear-element.js": 129,
|
|
11655
|
+
"./elements/gallery-element.js": 130,
|
|
11656
|
+
"./elements/launcher-element.js": 131,
|
|
11657
|
+
"./elements/model-element.js": 132,
|
|
11658
|
+
"./elements/product-element.js": 133,
|
|
11659
|
+
"./elements/studio-element.js": 134,
|
|
11660
|
+
"./elements/viewer-element.js": 135,
|
|
11661
|
+
"./elements/webxr-element.js": 136,
|
|
11662
|
+
"./version": 139
|
|
11609
11663
|
}],
|
|
11610
|
-
|
|
11664
|
+
138: [function (require, module, exports) {
|
|
11611
11665
|
var Util = /*#__PURE__*/function () {
|
|
11612
11666
|
function Util() {
|
|
11613
11667
|
_classCallCheck(this, Util);
|
|
@@ -11678,10 +11732,10 @@ function _typeof(o) { "@babel/helpers - typeof"; return _typeof = "function" ==
|
|
|
11678
11732
|
}();
|
|
11679
11733
|
module.exports = Util;
|
|
11680
11734
|
}, {}],
|
|
11681
|
-
|
|
11735
|
+
139: [function (require, module, exports) {
|
|
11682
11736
|
module.exports = "1.182.2";
|
|
11683
11737
|
}, {}],
|
|
11684
|
-
|
|
11738
|
+
140: [function (require, module, exports) {
|
|
11685
11739
|
'use strict';
|
|
11686
11740
|
|
|
11687
11741
|
exports.byteLength = byteLength;
|
|
@@ -11787,7 +11841,7 @@ function _typeof(o) { "@babel/helpers - typeof"; return _typeof = "function" ==
|
|
|
11787
11841
|
return parts.join('');
|
|
11788
11842
|
}
|
|
11789
11843
|
}, {}],
|
|
11790
|
-
|
|
11844
|
+
141: [function (require, module, exports) {
|
|
11791
11845
|
(function (Buffer) {
|
|
11792
11846
|
(function () {
|
|
11793
11847
|
/*!
|
|
@@ -13285,11 +13339,11 @@ function _typeof(o) { "@babel/helpers - typeof"; return _typeof = "function" ==
|
|
|
13285
13339
|
}).call(this);
|
|
13286
13340
|
}).call(this, require("buffer").Buffer);
|
|
13287
13341
|
}, {
|
|
13288
|
-
"base64-js":
|
|
13289
|
-
"buffer":
|
|
13290
|
-
"ieee754":
|
|
13342
|
+
"base64-js": 140,
|
|
13343
|
+
"buffer": 141,
|
|
13344
|
+
"ieee754": 142
|
|
13291
13345
|
}],
|
|
13292
|
-
|
|
13346
|
+
142: [function (require, module, exports) {
|
|
13293
13347
|
/*! ieee754. BSD-3-Clause License. Feross Aboukhadijeh <https://feross.org/opensource> */
|
|
13294
13348
|
exports.read = function (buffer, offset, isLE, mLen, nBytes) {
|
|
13295
13349
|
var e, m;
|
|
@@ -13365,7 +13419,7 @@ function _typeof(o) { "@babel/helpers - typeof"; return _typeof = "function" ==
|
|
|
13365
13419
|
buffer[offset + i - d] |= s * 128;
|
|
13366
13420
|
};
|
|
13367
13421
|
}, {}],
|
|
13368
|
-
|
|
13422
|
+
143: [function (require, module, exports) {
|
|
13369
13423
|
(function (global) {
|
|
13370
13424
|
(function () {
|
|
13371
13425
|
"use strict";
|
|
@@ -13399,7 +13453,7 @@ function _typeof(o) { "@babel/helpers - typeof"; return _typeof = "function" ==
|
|
|
13399
13453
|
}).call(this);
|
|
13400
13454
|
}).call(this, typeof global !== "undefined" ? global : typeof self !== "undefined" ? self : typeof window !== "undefined" ? window : {});
|
|
13401
13455
|
}, {}],
|
|
13402
|
-
|
|
13456
|
+
144: [function (require, module, exports) {
|
|
13403
13457
|
(function (global) {
|
|
13404
13458
|
(function () {
|
|
13405
13459
|
!function (e) {
|
|
@@ -14399,7 +14453,7 @@ function _typeof(o) { "@babel/helpers - typeof"; return _typeof = "function" ==
|
|
|
14399
14453
|
}).call(this);
|
|
14400
14454
|
}).call(this, typeof global !== "undefined" ? global : typeof self !== "undefined" ? self : typeof window !== "undefined" ? window : {});
|
|
14401
14455
|
}, {}],
|
|
14402
|
-
|
|
14456
|
+
145: [function (require, module, exports) {
|
|
14403
14457
|
// shim for using process in browser
|
|
14404
14458
|
var process = module.exports = {};
|
|
14405
14459
|
|
|
@@ -14576,7 +14630,7 @@ function _typeof(o) { "@babel/helpers - typeof"; return _typeof = "function" ==
|
|
|
14576
14630
|
return 0;
|
|
14577
14631
|
};
|
|
14578
14632
|
}, {}],
|
|
14579
|
-
|
|
14633
|
+
146: [function (require, module, exports) {
|
|
14580
14634
|
(function (Buffer) {
|
|
14581
14635
|
(function () {
|
|
14582
14636
|
!function (t, e) {
|
|
@@ -16205,8 +16259,8 @@ function _typeof(o) { "@babel/helpers - typeof"; return _typeof = "function" ==
|
|
|
16205
16259
|
t = _ref20[0],
|
|
16206
16260
|
r = _ref20[1],
|
|
16207
16261
|
n = _ref20[2];
|
|
16208
|
-
var g, _, m, b, y, x, S, C, A, M, $, O, D,
|
|
16209
|
-
var
|
|
16262
|
+
var g, _, m, b, y, x, S, C, A, M, $, O, D, k;
|
|
16263
|
+
var z = _p + t * o * (i - 7),
|
|
16210
16264
|
B = v + r * o * (i - 7);
|
|
16211
16265
|
var P = _this86._dotsClipPath,
|
|
16212
16266
|
I = _this86._dotsClipPath;
|
|
@@ -16214,7 +16268,7 @@ function _typeof(o) { "@babel/helpers - typeof"; return _typeof = "function" ==
|
|
|
16214
16268
|
options: null === (m = e.cornersSquareOptions) || void 0 === m ? void 0 : m.gradient,
|
|
16215
16269
|
color: null === (b = e.cornersSquareOptions) || void 0 === b ? void 0 : b.color,
|
|
16216
16270
|
additionalRotation: n,
|
|
16217
|
-
x:
|
|
16271
|
+
x: z,
|
|
16218
16272
|
y: B,
|
|
16219
16273
|
height: a,
|
|
16220
16274
|
width: a,
|
|
@@ -16225,7 +16279,7 @@ function _typeof(o) { "@babel/helpers - typeof"; return _typeof = "function" ==
|
|
|
16225
16279
|
type: e.cornersSquareOptions.type,
|
|
16226
16280
|
window: _this86._window
|
|
16227
16281
|
});
|
|
16228
|
-
_t7.draw(
|
|
16282
|
+
_t7.draw(z, B, a, n), _t7._element && P && P.appendChild(_t7._element);
|
|
16229
16283
|
} else {
|
|
16230
16284
|
var _t8 = new s({
|
|
16231
16285
|
svg: _this86._element,
|
|
@@ -16234,7 +16288,7 @@ function _typeof(o) { "@babel/helpers - typeof"; return _typeof = "function" ==
|
|
|
16234
16288
|
});
|
|
16235
16289
|
var _loop6 = function _loop6(_e5) {
|
|
16236
16290
|
var _loop7 = function _loop7(_i5) {
|
|
16237
|
-
(null === (S = f[_e5]) || void 0 === S ? void 0 : S[_i5]) && (_t8.draw(
|
|
16291
|
+
(null === (S = f[_e5]) || void 0 === S ? void 0 : S[_i5]) && (_t8.draw(z + _i5 * o, B + _e5 * o, o, function (t, r) {
|
|
16238
16292
|
var n;
|
|
16239
16293
|
return !!(null === (n = f[_e5 + r]) || void 0 === n ? void 0 : n[_i5 + t]);
|
|
16240
16294
|
}), _t8._element && P && P.appendChild(_t8._element));
|
|
@@ -16251,7 +16305,7 @@ function _typeof(o) { "@babel/helpers - typeof"; return _typeof = "function" ==
|
|
|
16251
16305
|
options: null === (M = e.cornersDotOptions) || void 0 === M ? void 0 : M.gradient,
|
|
16252
16306
|
color: null === ($ = e.cornersDotOptions) || void 0 === $ ? void 0 : $.color,
|
|
16253
16307
|
additionalRotation: n,
|
|
16254
|
-
x:
|
|
16308
|
+
x: z + 2 * o,
|
|
16255
16309
|
y: B + 2 * o,
|
|
16256
16310
|
height: u,
|
|
16257
16311
|
width: u,
|
|
@@ -16262,7 +16316,7 @@ function _typeof(o) { "@babel/helpers - typeof"; return _typeof = "function" ==
|
|
|
16262
16316
|
type: e.cornersDotOptions.type,
|
|
16263
16317
|
window: _this86._window
|
|
16264
16318
|
});
|
|
16265
|
-
_t9.draw(
|
|
16319
|
+
_t9.draw(z + 2 * o, B + 2 * o, u, n), _t9._element && I && I.appendChild(_t9._element);
|
|
16266
16320
|
} else {
|
|
16267
16321
|
var _t10 = new s({
|
|
16268
16322
|
svg: _this86._element,
|
|
@@ -16271,7 +16325,7 @@ function _typeof(o) { "@babel/helpers - typeof"; return _typeof = "function" ==
|
|
|
16271
16325
|
});
|
|
16272
16326
|
var _loop8 = function _loop8(_e6) {
|
|
16273
16327
|
var _loop9 = function _loop9(_i6) {
|
|
16274
|
-
(null === (
|
|
16328
|
+
(null === (k = w[_e6]) || void 0 === k ? void 0 : k[_i6]) && (_t10.draw(z + _i6 * o, B + _e6 * o, o, function (t, r) {
|
|
16275
16329
|
var n;
|
|
16276
16330
|
return !!(null === (n = w[_e6 + r]) || void 0 === n ? void 0 : n[_i6 + t]);
|
|
16277
16331
|
}), _t10._element && I && I.appendChild(_t10._element));
|
|
@@ -16360,7 +16414,7 @@ function _typeof(o) { "@babel/helpers - typeof"; return _typeof = "function" ==
|
|
|
16360
16414
|
case 0:
|
|
16361
16415
|
t = _ref23.width, e = _ref23.height, i = _ref23.count, r = _ref23.dotSize;
|
|
16362
16416
|
n = this._options, o = this._roundSize((n.width - i * r) / 2), s = this._roundSize((n.height - i * r) / 2), a = o + this._roundSize(n.imageOptions.margin + (i * r - t) / 2), h = s + this._roundSize(n.imageOptions.margin + (i * r - e) / 2), d = t - 2 * n.imageOptions.margin, u = e - 2 * n.imageOptions.margin, c = this._window.document.createElementNS("http://www.w3.org/2000/svg", "image");
|
|
16363
|
-
c.setAttribute("href", this._imageUri || ""), c.setAttribute("x", String(a)), c.setAttribute("y", String(h)), c.setAttribute("width", "".concat(d, "px")), c.setAttribute("height", "".concat(u, "px")), this._element.appendChild(c);
|
|
16417
|
+
c.setAttribute("href", this._imageUri || ""), c.setAttribute("xlink:href", this._imageUri || ""), c.setAttribute("x", String(a)), c.setAttribute("y", String(h)), c.setAttribute("width", "".concat(d, "px")), c.setAttribute("height", "".concat(u, "px")), this._element.appendChild(c);
|
|
16364
16418
|
case 3:
|
|
16365
16419
|
case "end":
|
|
16366
16420
|
return _context52.stop();
|
|
@@ -16718,7 +16772,7 @@ function _typeof(o) { "@babel/helpers - typeof"; return _typeof = "function" ==
|
|
|
16718
16772
|
}).call(this);
|
|
16719
16773
|
}).call(this, require("buffer").Buffer);
|
|
16720
16774
|
}, {
|
|
16721
|
-
"buffer":
|
|
16775
|
+
"buffer": 141
|
|
16722
16776
|
}]
|
|
16723
16777
|
}, {}, [16])(16);
|
|
16724
16778
|
});
|