@plasmicpkgs/plasmic-cms 0.0.77 → 0.0.78
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/dist/plasmic-cms.cjs.development.js +18 -17
- package/dist/plasmic-cms.cjs.development.js.map +1 -1
- package/dist/plasmic-cms.cjs.production.min.js +1 -1
- package/dist/plasmic-cms.cjs.production.min.js.map +1 -1
- package/dist/plasmic-cms.esm.js +18 -17
- package/dist/plasmic-cms.esm.js.map +1 -1
- package/package.json +3 -3
|
@@ -269,11 +269,9 @@ var runtime_1 = /*#__PURE__*/createCommonjsModule(function (module) {
|
|
|
269
269
|
|
|
270
270
|
|
|
271
271
|
var IteratorPrototype = {};
|
|
272
|
-
|
|
273
|
-
IteratorPrototype[iteratorSymbol] = function () {
|
|
272
|
+
define(IteratorPrototype, iteratorSymbol, function () {
|
|
274
273
|
return this;
|
|
275
|
-
};
|
|
276
|
-
|
|
274
|
+
});
|
|
277
275
|
var getProto = Object.getPrototypeOf;
|
|
278
276
|
var NativeIteratorPrototype = getProto && getProto(getProto(values([])));
|
|
279
277
|
|
|
@@ -284,8 +282,9 @@ var runtime_1 = /*#__PURE__*/createCommonjsModule(function (module) {
|
|
|
284
282
|
}
|
|
285
283
|
|
|
286
284
|
var Gp = GeneratorFunctionPrototype.prototype = Generator.prototype = Object.create(IteratorPrototype);
|
|
287
|
-
GeneratorFunction.prototype =
|
|
288
|
-
|
|
285
|
+
GeneratorFunction.prototype = GeneratorFunctionPrototype;
|
|
286
|
+
define(Gp, "constructor", GeneratorFunctionPrototype);
|
|
287
|
+
define(GeneratorFunctionPrototype, "constructor", GeneratorFunction);
|
|
289
288
|
GeneratorFunction.displayName = define(GeneratorFunctionPrototype, toStringTagSymbol, "GeneratorFunction"); // Helper for defining the .next, .throw, and .return methods of the
|
|
290
289
|
// Iterator interface in terms of a single ._invoke method.
|
|
291
290
|
|
|
@@ -390,11 +389,9 @@ var runtime_1 = /*#__PURE__*/createCommonjsModule(function (module) {
|
|
|
390
389
|
}
|
|
391
390
|
|
|
392
391
|
defineIteratorMethods(AsyncIterator.prototype);
|
|
393
|
-
|
|
394
|
-
AsyncIterator.prototype[asyncIteratorSymbol] = function () {
|
|
392
|
+
define(AsyncIterator.prototype, asyncIteratorSymbol, function () {
|
|
395
393
|
return this;
|
|
396
|
-
};
|
|
397
|
-
|
|
394
|
+
});
|
|
398
395
|
exports.AsyncIterator = AsyncIterator; // Note that simple async functions are implemented on top of
|
|
399
396
|
// AsyncIterator objects; they just return a Promise for the value of
|
|
400
397
|
// the final result produced by the iterator.
|
|
@@ -571,13 +568,12 @@ var runtime_1 = /*#__PURE__*/createCommonjsModule(function (module) {
|
|
|
571
568
|
// object to not be returned from this call. This ensures that doesn't happen.
|
|
572
569
|
// See https://github.com/facebook/regenerator/issues/274 for more details.
|
|
573
570
|
|
|
574
|
-
Gp
|
|
571
|
+
define(Gp, iteratorSymbol, function () {
|
|
575
572
|
return this;
|
|
576
|
-
};
|
|
577
|
-
|
|
578
|
-
Gp.toString = function () {
|
|
573
|
+
});
|
|
574
|
+
define(Gp, "toString", function () {
|
|
579
575
|
return "[object Generator]";
|
|
580
|
-
};
|
|
576
|
+
});
|
|
581
577
|
|
|
582
578
|
function pushTryEntry(locs) {
|
|
583
579
|
var entry = {
|
|
@@ -889,14 +885,19 @@ var runtime_1 = /*#__PURE__*/createCommonjsModule(function (module) {
|
|
|
889
885
|
} catch (accidentalStrictMode) {
|
|
890
886
|
// This module should not be running in strict mode, so the above
|
|
891
887
|
// assignment should always work unless something is misconfigured. Just
|
|
892
|
-
// in case runtime.js accidentally runs in strict mode,
|
|
888
|
+
// in case runtime.js accidentally runs in strict mode, in modern engines
|
|
889
|
+
// we can explicitly access globalThis. In older engines we can escape
|
|
893
890
|
// strict mode using a global Function call. This could conceivably fail
|
|
894
891
|
// if a Content Security Policy forbids using Function, but in that case
|
|
895
892
|
// the proper solution is to fix the accidental strict mode problem. If
|
|
896
893
|
// you've misconfigured your bundler to force strict mode and applied a
|
|
897
894
|
// CSP to forbid Function, and you're not willing to fix either of those
|
|
898
895
|
// problems, please detail your unique predicament in a GitHub issue.
|
|
899
|
-
|
|
896
|
+
if (typeof globalThis === "object") {
|
|
897
|
+
globalThis.regeneratorRuntime = runtime;
|
|
898
|
+
} else {
|
|
899
|
+
Function("r", "regeneratorRuntime = r")(runtime);
|
|
900
|
+
}
|
|
900
901
|
}
|
|
901
902
|
});
|
|
902
903
|
|