@skyux/list-builder 5.6.0 → 5.7.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.
- package/bundles/skyux-list-builder.umd.js +5 -4
- 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/esm2015/lib/modules/list-toolbar/list-multiselect-toolbar.component.js +1 -2
- package/esm2015/lib/modules/list-toolbar/list-multiselect-toolbar.component.js.map +1 -1
- package/esm2015/lib/modules/shared/sky-list-builder-resources.module.js +1 -1
- package/esm2015/lib/modules/shared/sky-list-builder-resources.module.js.map +1 -1
- package/fesm2015/skyux-list-builder.js +7 -5
- package/fesm2015/skyux-list-builder.js.map +1 -1
- package/lib/modules/list/list-data.provider.d.ts +2 -1
- package/lib/modules/shared/sky-list-builder-resources.module.d.ts +1 -1
- package/package.json +16 -18
|
@@ -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
|
}());
|
|
@@ -2213,7 +2215,7 @@
|
|
|
2213
2215
|
/**
|
|
2214
2216
|
* NOTICE: DO NOT MODIFY THIS FILE!
|
|
2215
2217
|
* The contents of this file were automatically generated by
|
|
2216
|
-
* the 'ng generate @skyux/i18n:lib-resources-module modules/shared/sky-list-builder' schematic.
|
|
2218
|
+
* the 'ng generate @skyux/i18n:lib-resources-module lib/modules/shared/sky-list-builder' schematic.
|
|
2217
2219
|
* To update this file, simply rerun the command.
|
|
2218
2220
|
*/
|
|
2219
2221
|
var RESOURCES = {
|
|
@@ -2547,12 +2549,11 @@
|
|
|
2547
2549
|
};
|
|
2548
2550
|
SkyListMultiselectToolbarComponent.prototype.reapplyFilter = function (isSelected) {
|
|
2549
2551
|
var _this = this;
|
|
2550
|
-
var self = this;
|
|
2551
2552
|
this.state
|
|
2552
2553
|
.pipe(operators.map(function (state) { return state.filters; }), operators.take(1))
|
|
2553
2554
|
.subscribe(function (filters) {
|
|
2554
2555
|
filters = filters.filter(function (filter) { return filter.name !== 'show-selected'; });
|
|
2555
|
-
filters.push(
|
|
2556
|
+
filters.push(_this.getShowSelectedFilter(isSelected));
|
|
2556
2557
|
_this.dispatcher.filtersUpdate(filters);
|
|
2557
2558
|
});
|
|
2558
2559
|
// If "show selected" is checked and paging is enabled, go to page one.
|