@swimlane/ngx-datatable 22.0.0-alpha.0 → 22.0.0-alpha.1

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/index.d.ts CHANGED
@@ -1,6 +1,6 @@
1
1
  import * as i0 from '@angular/core';
2
2
  import { Provider, PipeTransform, TemplateRef, EventEmitter, OnChanges, OnInit, OnDestroy, DoCheck, SimpleChanges, ChangeDetectorRef, TrackByFunction, AfterViewInit, AfterContentInit, QueryList, KeyValueDiffer, ViewContainerRef, ModuleWithProviders } from '@angular/core';
3
- import { Subscription } from 'rxjs';
3
+ import { Subscription, Observable } from 'rxjs';
4
4
  import { NgStyle } from '@angular/common';
5
5
 
6
6
  /** Interface for messages to override default table texts. */
@@ -1676,5 +1676,20 @@ declare class NgxDatatableModule {
1676
1676
  static ɵinj: i0.ɵɵInjectorDeclaration<NgxDatatableModule>;
1677
1677
  }
1678
1678
 
1679
- export { ColumnMode, ContextmenuType, DataTableColumnCellDirective, DataTableColumnCellTreeToggle, DataTableColumnDirective, DataTableColumnGhostCellDirective, DataTableColumnHeaderDirective, DataTableFooterTemplateDirective, DatatableComponent, DatatableFooterDirective, DatatableGroupHeaderDirective, DatatableGroupHeaderTemplateDirective, DatatableRowDefComponent, DatatableRowDefDirective, DatatableRowDefInternalDirective, DatatableRowDetailDirective, DatatableRowDetailTemplateDirective, DisableRowDirective, NgxDatatableModule, SelectionType, SortDirection, SortType, providedNgxDatatableConfig };
1679
+ /**
1680
+ * service to make DatatableComponent aware of changes to
1681
+ * input bindings of DataTableColumnDirective
1682
+ */
1683
+ declare class ColumnChangesService {
1684
+ private columnInputChanges;
1685
+ get columnInputChanges$(): Observable<void>;
1686
+ onInputChange(): void;
1687
+ static ɵfac: i0.ɵɵFactoryDeclaration<ColumnChangesService, never>;
1688
+ static ɵprov: i0.ɵɵInjectableDeclaration<ColumnChangesService>;
1689
+ }
1690
+
1691
+ declare function toInternalColumn<T extends Row>(columns: TableColumn<T>[] | QueryList<DataTableColumnDirective<T>>, defaultColumnWidth?: number): TableColumnInternal<T>[];
1692
+ declare function isNullOrUndefined<T>(value: T | null | undefined): value is null | undefined;
1693
+
1694
+ 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 };
1680
1695
  export type { ActivateEvent, AllDetailToggleEvent, AllGroupsToggleEvent, CellContext, ColumnResizeEvent, ContextMenuEvenHeader, ContextMenuEvent, ContextMenuEventBody, DetailToggleEvent, DetailToggleEvents, DragEventData, DragEventType, FooterContext, Group, GroupContext, GroupToggleEvent, GroupToggleEvents, HeaderCellContext, NgxDatatableConfig, NgxDatatableCssClasses, NgxDatatableMessages, PageEvent, PagerPageEvent, ReorderEvent, Row, RowDetailContext, RowOrGroup, ScrollEvent, SelectEvent, SortEvent, SortPropDir, TableColumn, TableColumnProp, TreeStatus };
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@swimlane/ngx-datatable",
3
- "version": "22.0.0-alpha.0",
3
+ "version": "22.0.0-alpha.1",
4
4
  "description": "ngx-datatable is an Angular table grid component for presenting large and complex data.",
5
5
  "peerDependencies": {
6
6
  "@angular/common": "18.x || 19.x || 20.x",