@esfaenza/es-table 11.2.153 → 11.2.154

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.
@@ -766,10 +766,30 @@
766
766
  _this.LoadedSignal.complete();
767
767
  });
768
768
  };
769
+ ThTdProvider.prototype.asyncLoad = function () {
770
+ return __awaiter(this, void 0, void 0, function () {
771
+ return __generator(this, function (_a) {
772
+ return [2 /*return*/];
773
+ });
774
+ });
775
+ };
776
+ ThTdProvider.prototype.ngOnInit = function () {
777
+ return __awaiter(this, void 0, void 0, function () {
778
+ return __generator(this, function (_a) {
779
+ switch (_a.label) {
780
+ case 0: return [4 /*yield*/, this.asyncLoad()];
781
+ case 1:
782
+ _a.sent();
783
+ this.setLoaded();
784
+ return [2 /*return*/];
785
+ }
786
+ });
787
+ });
788
+ };
769
789
  return ThTdProvider;
770
790
  }());
771
791
  ThTdProvider.decorators = [
772
- { type: i0.Directive, args: [{ selector: '[td_th_provider]' },] }
792
+ { type: i0.Directive, args: [{ selector: '[td_th_provider]', exportAs: "tdThProvider" },] }
773
793
  ];
774
794
  ThTdProvider.propDecorators = {
775
795
  EsTdsDirective: [{ type: i0.ContentChildren, args: [EsTdDirective,] }],