babylonjs-gui 6.2.0 → 6.3.0

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/babylon.gui.js CHANGED
@@ -31,6 +31,7 @@ __webpack_require__.r(__webpack_exports__);
31
31
  /* harmony export */ "__classPrivateFieldSet": () => (/* binding */ __classPrivateFieldSet),
32
32
  /* harmony export */ "__createBinding": () => (/* binding */ __createBinding),
33
33
  /* harmony export */ "__decorate": () => (/* binding */ __decorate),
34
+ /* harmony export */ "__esDecorate": () => (/* binding */ __esDecorate),
34
35
  /* harmony export */ "__exportStar": () => (/* binding */ __exportStar),
35
36
  /* harmony export */ "__extends": () => (/* binding */ __extends),
36
37
  /* harmony export */ "__generator": () => (/* binding */ __generator),
@@ -39,8 +40,11 @@ __webpack_require__.r(__webpack_exports__);
39
40
  /* harmony export */ "__makeTemplateObject": () => (/* binding */ __makeTemplateObject),
40
41
  /* harmony export */ "__metadata": () => (/* binding */ __metadata),
41
42
  /* harmony export */ "__param": () => (/* binding */ __param),
43
+ /* harmony export */ "__propKey": () => (/* binding */ __propKey),
42
44
  /* harmony export */ "__read": () => (/* binding */ __read),
43
45
  /* harmony export */ "__rest": () => (/* binding */ __rest),
46
+ /* harmony export */ "__runInitializers": () => (/* binding */ __runInitializers),
47
+ /* harmony export */ "__setFunctionName": () => (/* binding */ __setFunctionName),
44
48
  /* harmony export */ "__spread": () => (/* binding */ __spread),
45
49
  /* harmony export */ "__spreadArray": () => (/* binding */ __spreadArray),
46
50
  /* harmony export */ "__spreadArrays": () => (/* binding */ __spreadArrays),
@@ -111,6 +115,51 @@ function __param(paramIndex, decorator) {
111
115
  return function (target, key) { decorator(target, key, paramIndex); }
112
116
  }
113
117
 
118
+ function __esDecorate(ctor, descriptorIn, decorators, contextIn, initializers, extraInitializers) {
119
+ function accept(f) { if (f !== void 0 && typeof f !== "function") throw new TypeError("Function expected"); return f; }
120
+ var kind = contextIn.kind, key = kind === "getter" ? "get" : kind === "setter" ? "set" : "value";
121
+ var target = !descriptorIn && ctor ? contextIn["static"] ? ctor : ctor.prototype : null;
122
+ var descriptor = descriptorIn || (target ? Object.getOwnPropertyDescriptor(target, contextIn.name) : {});
123
+ var _, done = false;
124
+ for (var i = decorators.length - 1; i >= 0; i--) {
125
+ var context = {};
126
+ for (var p in contextIn) context[p] = p === "access" ? {} : contextIn[p];
127
+ for (var p in contextIn.access) context.access[p] = contextIn.access[p];
128
+ context.addInitializer = function (f) { if (done) throw new TypeError("Cannot add initializers after decoration has completed"); extraInitializers.push(accept(f || null)); };
129
+ var result = (0, decorators[i])(kind === "accessor" ? { get: descriptor.get, set: descriptor.set } : descriptor[key], context);
130
+ if (kind === "accessor") {
131
+ if (result === void 0) continue;
132
+ if (result === null || typeof result !== "object") throw new TypeError("Object expected");
133
+ if (_ = accept(result.get)) descriptor.get = _;
134
+ if (_ = accept(result.set)) descriptor.set = _;
135
+ if (_ = accept(result.init)) initializers.push(_);
136
+ }
137
+ else if (_ = accept(result)) {
138
+ if (kind === "field") initializers.push(_);
139
+ else descriptor[key] = _;
140
+ }
141
+ }
142
+ if (target) Object.defineProperty(target, contextIn.name, descriptor);
143
+ done = true;
144
+ };
145
+
146
+ function __runInitializers(thisArg, initializers, value) {
147
+ var useValue = arguments.length > 2;
148
+ for (var i = 0; i < initializers.length; i++) {
149
+ value = useValue ? initializers[i].call(thisArg, value) : initializers[i].call(thisArg);
150
+ }
151
+ return useValue ? value : void 0;
152
+ };
153
+
154
+ function __propKey(x) {
155
+ return typeof x === "symbol" ? x : "".concat(x);
156
+ };
157
+
158
+ function __setFunctionName(f, name, prefix) {
159
+ if (typeof name === "symbol") name = name.description ? "[".concat(name.description, "]") : "";
160
+ return Object.defineProperty(f, "name", { configurable: true, value: prefix ? "".concat(prefix, " ", name) : name });
161
+ };
162
+
114
163
  function __metadata(metadataKey, metadataValue) {
115
164
  if (typeof Reflect === "object" && typeof Reflect.metadata === "function") return Reflect.metadata(metadataKey, metadataValue);
116
165
  }
@@ -243,7 +292,7 @@ function __asyncGenerator(thisArg, _arguments, generator) {
243
292
  function __asyncDelegator(o) {
244
293
  var i, p;
245
294
  return i = {}, verb("next"), verb("throw", function (e) { throw e; }), verb("return"), i[Symbol.iterator] = function () { return this; }, i;
246
- function verb(n, f) { i[n] = o[n] ? function (v) { return (p = !p) ? { value: __await(o[n](v)), done: n === "return" } : f ? f(v) : v; } : f; }
295
+ function verb(n, f) { i[n] = o[n] ? function (v) { return (p = !p) ? { value: __await(o[n](v)), done: false } : f ? f(v) : v; } : f; }
247
296
  }
248
297
 
249
298
  function __asyncValues(o) {