File tree Expand file tree Collapse file tree 3 files changed +12
-0
lines changed
projects/swimlane/ngx-datatable/src Expand file tree Collapse file tree 3 files changed +12
-0
lines changed Original file line number Diff line number Diff line change 22
33## HEAD (unreleased)
44
5+ - Enhancement: Exporting isNullOrUndefined function and ColumnChangesService service to be used externally.
6+
57## 22.0.0-alpha.0
68
79- Enhancement: Added support for Angular 20
Original file line number Diff line number Diff line change @@ -44,3 +44,7 @@ export function toInternalColumn<T extends Row>(
4444 } as TableColumnInternal ; // TS cannot cast here
4545 } ) ;
4646}
47+
48+ export function isNullOrUndefined < T > ( value : T | null | undefined ) : value is null | undefined {
49+ return value === null || value === undefined ;
50+ }
Original file line number Diff line number Diff line change @@ -25,6 +25,12 @@ export * from './lib/directives/disable-row.directive';
2525export * from './lib/types/public.types' ;
2626export * from './lib/types/table-column.type' ;
2727
28+ // services
29+ export * from './lib/services/column-changes.service' ;
30+
31+ // utilis
32+ export * from './lib/utils/column-helper' ;
33+
2834export {
2935 providedNgxDatatableConfig ,
3036 NgxDatatableConfig ,
You can’t perform that action at this time.
0 commit comments