@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.
- package/bundles/esfaenza-es-table.umd.js +21 -1
- package/bundles/esfaenza-es-table.umd.js.map +1 -1
- package/bundles/esfaenza-es-table.umd.min.js +1 -1
- package/bundles/esfaenza-es-table.umd.min.js.map +1 -1
- package/esfaenza-es-table.metadata.json +1 -1
- package/esm2015/lib/directives/es_th_td_provider.directive.js +13 -2
- package/esm2015/lib/es-table.module.js +2 -2
- package/fesm2015/esfaenza-es-table.js +11 -1
- package/fesm2015/esfaenza-es-table.js.map +1 -1
- package/lib/directives/es_th_td_provider.directive.d.ts +2 -0
- package/package.json +1 -1
|
@@ -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,] }],
|