@skyux/list-builder 5.6.1 → 5.6.2
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/skyux-list-builder.umd.js +3 -1
- package/documentation.json +429 -666
- package/esm2015/lib/modules/list/list-data.provider.js +3 -1
- package/esm2015/lib/modules/list/list-data.provider.js.map +1 -1
- package/esm2015/lib/modules/list/list-view.component.js +2 -1
- package/esm2015/lib/modules/list/list-view.component.js.map +1 -1
- package/fesm2015/skyux-list-builder.js +5 -2
- package/fesm2015/skyux-list-builder.js.map +1 -1
- package/lib/modules/list/list-data.provider.d.ts +2 -1
- package/package.json +9 -9
|
@@ -66,6 +66,7 @@
|
|
|
66
66
|
*/
|
|
67
67
|
var ListDataProvider = /** @class */ (function () {
|
|
68
68
|
function ListDataProvider(data) {
|
|
69
|
+
this.data = data;
|
|
69
70
|
}
|
|
70
71
|
return ListDataProvider;
|
|
71
72
|
}());
|
|
@@ -610,8 +611,9 @@
|
|
|
610
611
|
enumerable: false,
|
|
611
612
|
configurable: true
|
|
612
613
|
});
|
|
613
|
-
|
|
614
|
+
// eslint-disable-next-line @typescript-eslint/no-empty-function
|
|
614
615
|
ListViewComponent.prototype.onViewActive = function () { };
|
|
616
|
+
// eslint-disable-next-line @typescript-eslint/no-empty-function
|
|
615
617
|
ListViewComponent.prototype.onViewInactive = function () { };
|
|
616
618
|
return ListViewComponent;
|
|
617
619
|
}());
|