ng-tailwind 3.30.369 → 4.0.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.
@@ -923,6 +923,64 @@
923
923
  function __param(paramIndex, decorator) {
924
924
  return function (target, key) { decorator(target, key, paramIndex); };
925
925
  }
926
+ function __esDecorate(ctor, descriptorIn, decorators, contextIn, initializers, extraInitializers) {
927
+ function accept(f) { if (f !== void 0 && typeof f !== "function")
928
+ throw new TypeError("Function expected"); return f; }
929
+ var kind = contextIn.kind, key = kind === "getter" ? "get" : kind === "setter" ? "set" : "value";
930
+ var target = !descriptorIn && ctor ? contextIn["static"] ? ctor : ctor.prototype : null;
931
+ var descriptor = descriptorIn || (target ? Object.getOwnPropertyDescriptor(target, contextIn.name) : {});
932
+ var _, done = false;
933
+ for (var i = decorators.length - 1; i >= 0; i--) {
934
+ var context = {};
935
+ for (var p in contextIn)
936
+ context[p] = p === "access" ? {} : contextIn[p];
937
+ for (var p in contextIn.access)
938
+ context.access[p] = contextIn.access[p];
939
+ context.addInitializer = function (f) { if (done)
940
+ throw new TypeError("Cannot add initializers after decoration has completed"); extraInitializers.push(accept(f || null)); };
941
+ var result = (0, decorators[i])(kind === "accessor" ? { get: descriptor.get, set: descriptor.set } : descriptor[key], context);
942
+ if (kind === "accessor") {
943
+ if (result === void 0)
944
+ continue;
945
+ if (result === null || typeof result !== "object")
946
+ throw new TypeError("Object expected");
947
+ if (_ = accept(result.get))
948
+ descriptor.get = _;
949
+ if (_ = accept(result.set))
950
+ descriptor.set = _;
951
+ if (_ = accept(result.init))
952
+ initializers.push(_);
953
+ }
954
+ else if (_ = accept(result)) {
955
+ if (kind === "field")
956
+ initializers.push(_);
957
+ else
958
+ descriptor[key] = _;
959
+ }
960
+ }
961
+ if (target)
962
+ Object.defineProperty(target, contextIn.name, descriptor);
963
+ done = true;
964
+ }
965
+ ;
966
+ function __runInitializers(thisArg, initializers, value) {
967
+ var useValue = arguments.length > 2;
968
+ for (var i = 0; i < initializers.length; i++) {
969
+ value = useValue ? initializers[i].call(thisArg, value) : initializers[i].call(thisArg);
970
+ }
971
+ return useValue ? value : void 0;
972
+ }
973
+ ;
974
+ function __propKey(x) {
975
+ return typeof x === "symbol" ? x : "".concat(x);
976
+ }
977
+ ;
978
+ function __setFunctionName(f, name, prefix) {
979
+ if (typeof name === "symbol")
980
+ name = name.description ? "[".concat(name.description, "]") : "";
981
+ return Object.defineProperty(f, "name", { configurable: true, value: prefix ? "".concat(prefix, " ", name) : name });
982
+ }
983
+ ;
926
984
  function __metadata(metadataKey, metadataValue) {
927
985
  if (typeof Reflect === "object" && typeof Reflect.metadata === "function")
928
986
  return Reflect.metadata(metadataKey, metadataValue);
@@ -1122,7 +1180,7 @@
1122
1180
  function __asyncDelegator(o) {
1123
1181
  var i, p;
1124
1182
  return i = {}, verb("next"), verb("throw", function (e) { throw e; }), verb("return"), i[Symbol.iterator] = function () { return this; }, i;
1125
- 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; }
1183
+ 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; }
1126
1184
  }
1127
1185
  function __asyncValues(o) {
1128
1186
  if (!Symbol.asyncIterator)