@swimlane/ngx-datatable 22.0.0-alpha.0 → 22.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.
package/CHANGELOG.md
CHANGED
|
@@ -2,6 +2,16 @@
|
|
|
2
2
|
|
|
3
3
|
## HEAD (unreleased)
|
|
4
4
|
|
|
5
|
+
## 22.0.0
|
|
6
|
+
|
|
7
|
+
- Enhancement: Added support for Angular 20
|
|
8
|
+
- Enhancement: Exporting isNullOrUndefined function and ColumnChangesService service to be used externally.
|
|
9
|
+
- Breaking: Removed support for Angular 17 and earlier versions
|
|
10
|
+
|
|
11
|
+
## 22.0.0-alpha.1
|
|
12
|
+
|
|
13
|
+
- Enhancement: Exporting isNullOrUndefined function and ColumnChangesService service to be used externally.
|
|
14
|
+
|
|
5
15
|
## 22.0.0-alpha.0
|
|
6
16
|
|
|
7
17
|
- Enhancement: Added support for Angular 20
|
|
@@ -5065,6 +5065,9 @@ function toInternalColumn(columns, defaultColumnWidth = 150) {
|
|
|
5065
5065
|
}; // TS cannot cast here
|
|
5066
5066
|
});
|
|
5067
5067
|
}
|
|
5068
|
+
function isNullOrUndefined(value) {
|
|
5069
|
+
return value === null || value === undefined;
|
|
5070
|
+
}
|
|
5068
5071
|
|
|
5069
5072
|
const NGX_DATATABLE_CONFIG = new InjectionToken('ngx-datatable.config');
|
|
5070
5073
|
/**
|
|
@@ -6328,5 +6331,5 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.0.5", ngImpor
|
|
|
6328
6331
|
* Generated bundle index. Do not edit.
|
|
6329
6332
|
*/
|
|
6330
6333
|
|
|
6331
|
-
export { ColumnMode, ContextmenuType, DataTableColumnCellDirective, DataTableColumnCellTreeToggle, DataTableColumnDirective, DataTableColumnGhostCellDirective, DataTableColumnHeaderDirective, DataTableFooterTemplateDirective, DatatableComponent, DatatableFooterDirective, DatatableGroupHeaderDirective, DatatableGroupHeaderTemplateDirective, DatatableRowDefComponent, DatatableRowDefDirective, DatatableRowDefInternalDirective, DatatableRowDetailDirective, DatatableRowDetailTemplateDirective, DisableRowDirective, NgxDatatableModule, SelectionType, SortDirection, SortType, providedNgxDatatableConfig };
|
|
6334
|
+
export { ColumnChangesService, ColumnMode, ContextmenuType, DataTableColumnCellDirective, DataTableColumnCellTreeToggle, DataTableColumnDirective, DataTableColumnGhostCellDirective, DataTableColumnHeaderDirective, DataTableFooterTemplateDirective, DatatableComponent, DatatableFooterDirective, DatatableGroupHeaderDirective, DatatableGroupHeaderTemplateDirective, DatatableRowDefComponent, DatatableRowDefDirective, DatatableRowDefInternalDirective, DatatableRowDetailDirective, DatatableRowDetailTemplateDirective, DisableRowDirective, NgxDatatableModule, SelectionType, SortDirection, SortType, isNullOrUndefined, providedNgxDatatableConfig, toInternalColumn };
|
|
6332
6335
|
//# sourceMappingURL=swimlane-ngx-datatable.mjs.map
|