@simple-table/angular 4.2.2 → 4.2.4

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/dist/index.d.ts CHANGED
@@ -1,6 +1,6 @@
1
1
  import * as i0 from '@angular/core';
2
- import { Type, OnInit, OnChanges, OnDestroy, EventEmitter, EnvironmentProviders, ApplicationRef, EnvironmentInjector } from '@angular/core';
3
- import { CellValue, CellRenderer, ColumnDef, HeaderRenderer, SimpleTableProps, ColumnEditorConfig, SimpleTableConfig, TableAPI } from 'simple-table-core';
2
+ import { Type, AfterContentInit, OnChanges, OnDestroy, EventEmitter, TemplateRef, EnvironmentProviders, ApplicationRef, EnvironmentInjector, Injector } from '@angular/core';
3
+ import { CellValue, CellRenderer, ColumnDef, HeaderRenderer, SimpleTableProps, ColumnEditorConfig, SimpleTableConfig, TableAPI, CellClickProps, CellChangeProps, SortColumn, TableFilterState, RowSelectionChangeProps, OnRowGroupExpandProps, ColumnVisibilityState, PivotConfig } from 'simple-table-core';
4
4
  export { Accessor, AggregationConfig, AggregationType, AnimationsConfig, AutoSizeMode, BooleanFilterOperator, Cell, CellChangeProps, CellClickProps, CellRenderer, CellRendererProps, CellValue, ChartOptions, ColumnDef, ColumnEditorConfig, ColumnEditorCustomRenderer, ColumnEditorCustomRendererProps, ColumnEditorRowRenderer, ColumnEditorRowRendererComponents, ColumnEditorRowRendererProps, ColumnEditorSearchFunction, ColumnType, ColumnVisibilityState, Comparator, ComparatorProps, CustomTheme, CustomThemeProps, DateFilterOperator, EmptyStateRenderer, EmptyStateRendererProps, EnumFilterOperator, EnumOption, ErrorStateRenderer, ErrorStateRendererProps, ExportToCSVProps, ExportValueGetter, ExportValueProps, FilterCondition, FilterOperator, FooterPosition, FooterRendererProps, GetRowClass, GetRowClassParams, GetRowId, GetRowIdParams, HeaderDropdown, HeaderDropdownProps, HeaderRenderer, HeaderRendererComponents, HeaderRendererProps, IconsConfig, LoadingStateRenderer, LoadingStateRendererProps, NumberFilterOperator, OnRowGroupExpandProps, PIVOT_ACCESSOR_PREFIX, PIVOT_BLANK_LABEL, PIVOT_IS_TOTAL_KEY, Pinned, PinnedSectionsState, PivotConfig, PivotResult, PivotValueConfig, QuickFilterConfig, QuickFilterGetter, QuickFilterGetterProps, QuickFilterMode, Row, RowButtonProps, RowId, RowSelectionChangeProps, RowSelectionMode, RowState, SetHeaderRenameProps, ShowWhen, SimpleTableConfig, SimpleTableProps, SortColumn, StringFilterOperator, TableAPI, TableFilterState, TableRow, Theme, UpdateDataProps, ValueFormatter, ValueFormatterProps, ValueGetter, ValueGetterProps, asRows, buildPivotAccessor, buildPivotRowTotalAccessor, pivotRows } from 'simple-table-core';
5
5
 
6
6
  /**
@@ -83,7 +83,8 @@ interface SimpleTableAngularProps<TData extends AngularDefaultRowData = AngularD
83
83
  loadingStateRenderer?: AngularLoadingStateRenderer;
84
84
  errorStateRenderer?: AngularErrorStateRenderer;
85
85
  emptyStateRenderer?: AngularEmptyStateRenderer;
86
- tableEmptyStateRenderer?: HTMLElement | string | null;
86
+ /** Component class, prebuilt element, string, or null. */
87
+ tableEmptyStateRenderer?: Type<unknown> | HTMLElement | string | null;
87
88
  headerDropdown?: AngularHeaderDropdown;
88
89
  columnEditorConfig?: AngularColumnEditorConfig;
89
90
  icons?: AngularIconsConfig;
@@ -118,8 +119,12 @@ type NestedTableAngularConfig = Omit<SimpleTableAngularProps, "rows" | "columns"
118
119
  * Prefer typed `rows` / `columns` (`AngularColumnDef<MyRow>`). For a typed
119
120
  * imperative handle, use `@ViewChild(SimpleTableComponent) table!: SimpleTableComponent<MyRow>`
120
121
  * or listen to `(tableReady)`.
122
+ *
123
+ * Page templates (`stCell`, `stEmpty`, …) and `(sortChange)`-style outputs are
124
+ * the native Angular API. Import `SimpleTableImports` on the page. `class` on
125
+ * this host styles the wrapper; `[className]` styles the inner grid root.
121
126
  */
122
- declare class SimpleTableComponent<TData extends AngularDefaultRowData = AngularDefaultRowData> implements OnInit, OnChanges, OnDestroy {
127
+ declare class SimpleTableComponent<TData extends AngularDefaultRowData = AngularDefaultRowData> implements AfterContentInit, OnChanges, OnDestroy {
123
128
  rows: SimpleTableAngularProps<TData>["rows"];
124
129
  columns?: SimpleTableAngularProps<TData>["columns"];
125
130
  footerRenderer?: SimpleTableAngularProps<TData>["footerRenderer"];
@@ -139,16 +144,23 @@ declare class SimpleTableComponent<TData extends AngularDefaultRowData = Angular
139
144
  onColumnVisibilityChange?: SimpleTableAngularProps<TData>["onColumnVisibilityChange"];
140
145
  onColumnWidthChange?: SimpleTableAngularProps<TData>["onColumnWidthChange"];
141
146
  onPageChange?: SimpleTableAngularProps<TData>["onPageChange"];
147
+ onNextPage?: SimpleTableAngularProps<TData>["onNextPage"];
142
148
  onLoadMore?: SimpleTableAngularProps<TData>["onLoadMore"];
143
149
  onTableReady?: SimpleTableAngularProps<TData>["onTableReady"];
144
150
  rowGrouping?: SimpleTableAngularProps<TData>["rowGrouping"];
151
+ canExpandRowGroup?: SimpleTableAngularProps<TData>["canExpandRowGroup"];
152
+ enableStickyParents?: SimpleTableAngularProps<TData>["enableStickyParents"];
145
153
  pivot?: SimpleTableAngularProps<TData>["pivot"];
146
154
  onPivotChange?: SimpleTableAngularProps<TData>["onPivotChange"];
147
155
  enableRowSelection?: SimpleTableAngularProps<TData>["enableRowSelection"];
156
+ rowSelectionMode?: SimpleTableAngularProps<TData>["rowSelectionMode"];
157
+ selectRowOnClick?: SimpleTableAngularProps<TData>["selectRowOnClick"];
158
+ showRowSelectionColumn?: SimpleTableAngularProps<TData>["showRowSelectionColumn"];
148
159
  theme?: SimpleTableAngularProps<TData>["theme"];
149
160
  quickFilter?: SimpleTableAngularProps<TData>["quickFilter"];
150
161
  isLoading?: SimpleTableAngularProps<TData>["isLoading"];
151
162
  getRowId?: SimpleTableAngularProps<TData>["getRowId"];
163
+ getRowClass?: SimpleTableAngularProps<TData>["getRowClass"];
152
164
  enablePagination?: SimpleTableAngularProps<TData>["enablePagination"];
153
165
  rowsPerPage?: SimpleTableAngularProps<TData>["rowsPerPage"];
154
166
  serverSidePagination?: SimpleTableAngularProps<TData>["serverSidePagination"];
@@ -166,6 +178,7 @@ declare class SimpleTableComponent<TData extends AngularDefaultRowData = Angular
166
178
  selectableColumns?: SimpleTableAngularProps<TData>["selectableColumns"];
167
179
  enableHeaderEditing?: SimpleTableAngularProps<TData>["enableHeaderEditing"];
168
180
  onHeaderEdit?: SimpleTableAngularProps<TData>["onHeaderEdit"];
181
+ onColumnSelect?: SimpleTableAngularProps<TData>["onColumnSelect"];
169
182
  customTheme?: SimpleTableAngularProps<TData>["customTheme"];
170
183
  icons?: SimpleTableAngularProps<TData>["icons"];
171
184
  externalFilterHandling?: SimpleTableAngularProps<TData>["externalFilterHandling"];
@@ -173,58 +186,164 @@ declare class SimpleTableComponent<TData extends AngularDefaultRowData = Angular
173
186
  columnBorders?: SimpleTableAngularProps<TData>["columnBorders"];
174
187
  rowButtons?: SimpleTableAngularProps<TData>["rowButtons"];
175
188
  hideFooter?: SimpleTableAngularProps<TData>["hideFooter"];
189
+ hideHeader?: SimpleTableAngularProps<TData>["hideHeader"];
190
+ footerRenderKey?: SimpleTableAngularProps<TData>["footerRenderKey"];
176
191
  footerPosition?: SimpleTableAngularProps<TData>["footerPosition"];
192
+ className?: SimpleTableAngularProps<TData>["className"];
193
+ copyHeadersToClipboard?: SimpleTableAngularProps<TData>["copyHeadersToClipboard"];
194
+ includeHeadersInCSVExport?: SimpleTableAngularProps<TData>["includeHeadersInCSVExport"];
177
195
  initialSortColumn?: SimpleTableAngularProps<TData>["initialSortColumn"];
178
196
  initialSortDirection?: SimpleTableAngularProps<TData>["initialSortDirection"];
179
197
  expandAll?: SimpleTableAngularProps<TData>["expandAll"];
180
198
  autoExpandColumns?: SimpleTableAngularProps<TData>["autoExpandColumns"];
181
199
  animations?: SimpleTableAngularProps<TData>["animations"];
200
+ cellUpdateFlash?: SimpleTableAngularProps<TData>["cellUpdateFlash"];
182
201
  enableVirtualization?: SimpleTableAngularProps<TData>["enableVirtualization"];
183
202
  hoverRowBackground?: SimpleTableAngularProps<TData>["hoverRowBackground"];
184
203
  oddColumnBackground?: SimpleTableAngularProps<TData>["oddColumnBackground"];
185
204
  oddEvenRowBackground?: SimpleTableAngularProps<TData>["oddEvenRowBackground"];
186
205
  /** Emits the TableAPI once the table has mounted. */
187
206
  tableReady: EventEmitter<TableAPI<TData>>;
207
+ cellClick: EventEmitter<CellClickProps<TData>>;
208
+ cellEdit: EventEmitter<CellChangeProps<TData>>;
209
+ sortChange: EventEmitter<SortColumn | null>;
210
+ filterChange: EventEmitter<TableFilterState<TData>>;
211
+ rowSelectionChange: EventEmitter<RowSelectionChangeProps<TData>>;
212
+ rowGroupExpand: EventEmitter<OnRowGroupExpandProps<TData>>;
213
+ columnOrderChange: EventEmitter<AngularColumnDef<TData, any>[]>;
214
+ columnVisibilityChange: EventEmitter<ColumnVisibilityState>;
215
+ columnWidthChange: EventEmitter<AngularColumnDef<TData, any>[]>;
216
+ pageChange: EventEmitter<number>;
217
+ loadMore: EventEmitter<void>;
218
+ headerEdit: EventEmitter<{
219
+ header: AngularColumnDef<TData, any>;
220
+ newLabel: string;
221
+ }>;
222
+ columnSelect: EventEmitter<AngularColumnDef<TData, any>>;
223
+ pivotChange: EventEmitter<PivotConfig<TData> | null>;
224
+ private cellSlots;
225
+ private headerSlots;
226
+ private emptySlots;
227
+ private footerSlots;
228
+ private loadingSlots;
229
+ private errorSlots;
188
230
  private instance;
189
231
  private registry;
190
232
  private syncedDefaultHeaders;
191
233
  private syncedRows;
234
+ private syncedSlotsKey;
192
235
  private wasLoading;
193
236
  private didInitialAutoSize;
237
+ private slotUnsub;
194
238
  private hostEl;
195
239
  private appRef;
196
240
  private envInjector;
241
+ private elementInjector;
242
+ private ngZone;
243
+ private inZone;
197
244
  private maybeRefitAutoSizeColumns;
198
- ngOnInit(): void;
245
+ private collectSlots;
246
+ private slotsFingerprint;
247
+ private buildConfig;
248
+ private mountTable;
249
+ private applyConfig;
250
+ ngAfterContentInit(): void;
199
251
  ngOnChanges(): void;
200
252
  ngOnDestroy(): void;
201
253
  /** Returns the full imperative TableAPI. Use via @ViewChild or (tableReady) output. */
202
254
  getAPI(): TableAPI<TData> | null;
203
255
  private getProps;
204
256
  static ɵfac: i0.ɵɵFactoryDeclaration<SimpleTableComponent<any>, never>;
205
- static ɵcmp: i0.ɵɵComponentDeclaration<SimpleTableComponent<any>, "simple-table", never, { "rows": { "alias": "rows"; "required": true; }; "columns": { "alias": "columns"; "required": false; }; "footerRenderer": { "alias": "footerRenderer"; "required": false; }; "loadingStateRenderer": { "alias": "loadingStateRenderer"; "required": false; }; "errorStateRenderer": { "alias": "errorStateRenderer"; "required": false; }; "emptyStateRenderer": { "alias": "emptyStateRenderer"; "required": false; }; "tableEmptyStateRenderer": { "alias": "tableEmptyStateRenderer"; "required": false; }; "headerDropdown": { "alias": "headerDropdown"; "required": false; }; "columnEditorConfig": { "alias": "columnEditorConfig"; "required": false; }; "onCellClick": { "alias": "onCellClick"; "required": false; }; "onCellEdit": { "alias": "onCellEdit"; "required": false; }; "onSortChange": { "alias": "onSortChange"; "required": false; }; "onFilterChange": { "alias": "onFilterChange"; "required": false; }; "onRowSelectionChange": { "alias": "onRowSelectionChange"; "required": false; }; "onRowGroupExpand": { "alias": "onRowGroupExpand"; "required": false; }; "onColumnOrderChange": { "alias": "onColumnOrderChange"; "required": false; }; "onColumnVisibilityChange": { "alias": "onColumnVisibilityChange"; "required": false; }; "onColumnWidthChange": { "alias": "onColumnWidthChange"; "required": false; }; "onPageChange": { "alias": "onPageChange"; "required": false; }; "onLoadMore": { "alias": "onLoadMore"; "required": false; }; "onTableReady": { "alias": "onTableReady"; "required": false; }; "rowGrouping": { "alias": "rowGrouping"; "required": false; }; "pivot": { "alias": "pivot"; "required": false; }; "onPivotChange": { "alias": "onPivotChange"; "required": false; }; "enableRowSelection": { "alias": "enableRowSelection"; "required": false; }; "theme": { "alias": "theme"; "required": false; }; "quickFilter": { "alias": "quickFilter"; "required": false; }; "isLoading": { "alias": "isLoading"; "required": false; }; "getRowId": { "alias": "getRowId"; "required": false; }; "enablePagination": { "alias": "enablePagination"; "required": false; }; "rowsPerPage": { "alias": "rowsPerPage"; "required": false; }; "serverSidePagination": { "alias": "serverSidePagination"; "required": false; }; "totalRowCount": { "alias": "totalRowCount"; "required": false; }; "height": { "alias": "height"; "required": false; }; "maxHeight": { "alias": "maxHeight"; "required": false; }; "scrollParent": { "alias": "scrollParent"; "required": false; }; "infiniteScrollThreshold": { "alias": "infiniteScrollThreshold"; "required": false; }; "columnResizing": { "alias": "columnResizing"; "required": false; }; "columnReordering": { "alias": "columnReordering"; "required": false; }; "enableColumnEditor": { "alias": "enableColumnEditor"; "required": false; }; "enableColumnEditorInitOpen": { "alias": "enableColumnEditorInitOpen"; "required": false; }; "enablePivotPanel": { "alias": "enablePivotPanel"; "required": false; }; "selectableCells": { "alias": "selectableCells"; "required": false; }; "selectableColumns": { "alias": "selectableColumns"; "required": false; }; "enableHeaderEditing": { "alias": "enableHeaderEditing"; "required": false; }; "onHeaderEdit": { "alias": "onHeaderEdit"; "required": false; }; "customTheme": { "alias": "customTheme"; "required": false; }; "icons": { "alias": "icons"; "required": false; }; "externalFilterHandling": { "alias": "externalFilterHandling"; "required": false; }; "externalSortHandling": { "alias": "externalSortHandling"; "required": false; }; "columnBorders": { "alias": "columnBorders"; "required": false; }; "rowButtons": { "alias": "rowButtons"; "required": false; }; "hideFooter": { "alias": "hideFooter"; "required": false; }; "footerPosition": { "alias": "footerPosition"; "required": false; }; "initialSortColumn": { "alias": "initialSortColumn"; "required": false; }; "initialSortDirection": { "alias": "initialSortDirection"; "required": false; }; "expandAll": { "alias": "expandAll"; "required": false; }; "autoExpandColumns": { "alias": "autoExpandColumns"; "required": false; }; "animations": { "alias": "animations"; "required": false; }; "enableVirtualization": { "alias": "enableVirtualization"; "required": false; }; "hoverRowBackground": { "alias": "hoverRowBackground"; "required": false; }; "oddColumnBackground": { "alias": "oddColumnBackground"; "required": false; }; "oddEvenRowBackground": { "alias": "oddEvenRowBackground"; "required": false; }; }, { "tableReady": "tableReady"; }, never, never, true, never>;
257
+ static ɵcmp: i0.ɵɵComponentDeclaration<SimpleTableComponent<any>, "simple-table", never, { "rows": { "alias": "rows"; "required": true; }; "columns": { "alias": "columns"; "required": false; }; "footerRenderer": { "alias": "footerRenderer"; "required": false; }; "loadingStateRenderer": { "alias": "loadingStateRenderer"; "required": false; }; "errorStateRenderer": { "alias": "errorStateRenderer"; "required": false; }; "emptyStateRenderer": { "alias": "emptyStateRenderer"; "required": false; }; "tableEmptyStateRenderer": { "alias": "tableEmptyStateRenderer"; "required": false; }; "headerDropdown": { "alias": "headerDropdown"; "required": false; }; "columnEditorConfig": { "alias": "columnEditorConfig"; "required": false; }; "onCellClick": { "alias": "onCellClick"; "required": false; }; "onCellEdit": { "alias": "onCellEdit"; "required": false; }; "onSortChange": { "alias": "onSortChange"; "required": false; }; "onFilterChange": { "alias": "onFilterChange"; "required": false; }; "onRowSelectionChange": { "alias": "onRowSelectionChange"; "required": false; }; "onRowGroupExpand": { "alias": "onRowGroupExpand"; "required": false; }; "onColumnOrderChange": { "alias": "onColumnOrderChange"; "required": false; }; "onColumnVisibilityChange": { "alias": "onColumnVisibilityChange"; "required": false; }; "onColumnWidthChange": { "alias": "onColumnWidthChange"; "required": false; }; "onPageChange": { "alias": "onPageChange"; "required": false; }; "onNextPage": { "alias": "onNextPage"; "required": false; }; "onLoadMore": { "alias": "onLoadMore"; "required": false; }; "onTableReady": { "alias": "onTableReady"; "required": false; }; "rowGrouping": { "alias": "rowGrouping"; "required": false; }; "canExpandRowGroup": { "alias": "canExpandRowGroup"; "required": false; }; "enableStickyParents": { "alias": "enableStickyParents"; "required": false; }; "pivot": { "alias": "pivot"; "required": false; }; "onPivotChange": { "alias": "onPivotChange"; "required": false; }; "enableRowSelection": { "alias": "enableRowSelection"; "required": false; }; "rowSelectionMode": { "alias": "rowSelectionMode"; "required": false; }; "selectRowOnClick": { "alias": "selectRowOnClick"; "required": false; }; "showRowSelectionColumn": { "alias": "showRowSelectionColumn"; "required": false; }; "theme": { "alias": "theme"; "required": false; }; "quickFilter": { "alias": "quickFilter"; "required": false; }; "isLoading": { "alias": "isLoading"; "required": false; }; "getRowId": { "alias": "getRowId"; "required": false; }; "getRowClass": { "alias": "getRowClass"; "required": false; }; "enablePagination": { "alias": "enablePagination"; "required": false; }; "rowsPerPage": { "alias": "rowsPerPage"; "required": false; }; "serverSidePagination": { "alias": "serverSidePagination"; "required": false; }; "totalRowCount": { "alias": "totalRowCount"; "required": false; }; "height": { "alias": "height"; "required": false; }; "maxHeight": { "alias": "maxHeight"; "required": false; }; "scrollParent": { "alias": "scrollParent"; "required": false; }; "infiniteScrollThreshold": { "alias": "infiniteScrollThreshold"; "required": false; }; "columnResizing": { "alias": "columnResizing"; "required": false; }; "columnReordering": { "alias": "columnReordering"; "required": false; }; "enableColumnEditor": { "alias": "enableColumnEditor"; "required": false; }; "enableColumnEditorInitOpen": { "alias": "enableColumnEditorInitOpen"; "required": false; }; "enablePivotPanel": { "alias": "enablePivotPanel"; "required": false; }; "selectableCells": { "alias": "selectableCells"; "required": false; }; "selectableColumns": { "alias": "selectableColumns"; "required": false; }; "enableHeaderEditing": { "alias": "enableHeaderEditing"; "required": false; }; "onHeaderEdit": { "alias": "onHeaderEdit"; "required": false; }; "onColumnSelect": { "alias": "onColumnSelect"; "required": false; }; "customTheme": { "alias": "customTheme"; "required": false; }; "icons": { "alias": "icons"; "required": false; }; "externalFilterHandling": { "alias": "externalFilterHandling"; "required": false; }; "externalSortHandling": { "alias": "externalSortHandling"; "required": false; }; "columnBorders": { "alias": "columnBorders"; "required": false; }; "rowButtons": { "alias": "rowButtons"; "required": false; }; "hideFooter": { "alias": "hideFooter"; "required": false; }; "hideHeader": { "alias": "hideHeader"; "required": false; }; "footerRenderKey": { "alias": "footerRenderKey"; "required": false; }; "footerPosition": { "alias": "footerPosition"; "required": false; }; "className": { "alias": "className"; "required": false; }; "copyHeadersToClipboard": { "alias": "copyHeadersToClipboard"; "required": false; }; "includeHeadersInCSVExport": { "alias": "includeHeadersInCSVExport"; "required": false; }; "initialSortColumn": { "alias": "initialSortColumn"; "required": false; }; "initialSortDirection": { "alias": "initialSortDirection"; "required": false; }; "expandAll": { "alias": "expandAll"; "required": false; }; "autoExpandColumns": { "alias": "autoExpandColumns"; "required": false; }; "animations": { "alias": "animations"; "required": false; }; "cellUpdateFlash": { "alias": "cellUpdateFlash"; "required": false; }; "enableVirtualization": { "alias": "enableVirtualization"; "required": false; }; "hoverRowBackground": { "alias": "hoverRowBackground"; "required": false; }; "oddColumnBackground": { "alias": "oddColumnBackground"; "required": false; }; "oddEvenRowBackground": { "alias": "oddEvenRowBackground"; "required": false; }; }, { "tableReady": "tableReady"; "cellClick": "cellClick"; "cellEdit": "cellEdit"; "sortChange": "sortChange"; "filterChange": "filterChange"; "rowSelectionChange": "rowSelectionChange"; "rowGroupExpand": "rowGroupExpand"; "columnOrderChange": "columnOrderChange"; "columnVisibilityChange": "columnVisibilityChange"; "columnWidthChange": "columnWidthChange"; "pageChange": "pageChange"; "loadMore": "loadMore"; "headerEdit": "headerEdit"; "columnSelect": "columnSelect"; "pivotChange": "pivotChange"; }, ["cellSlots", "headerSlots", "emptySlots", "footerSlots", "loadingSlots", "errorSlots"], ["*"], true, never>;
206
258
  }
207
259
 
208
260
  /**
209
- * Call this in your application's `providers` array (or `bootstrapApplication`
210
- * providers) to register the dependencies that simple-table-angular's renderer
211
- * bridge needs — specifically `ApplicationRef` and `EnvironmentInjector`.
261
+ * Page-template cell for a column, matched by `accessor`.
262
+ * Context: `$implicit` is `row`; also `value`, `formattedValue`, and the rest of
263
+ * the core cell renderer props.
264
+ */
265
+ declare class StCellDirective {
266
+ stCell: string;
267
+ readonly templateRef: TemplateRef<any>;
268
+ static ɵfac: i0.ɵɵFactoryDeclaration<StCellDirective, never>;
269
+ static ɵdir: i0.ɵɵDirectiveDeclaration<StCellDirective, "ng-template[stCell]", never, { "stCell": { "alias": "stCell"; "required": true; }; }, {}, never, never, true, never>;
270
+ }
271
+ /**
272
+ * Page-template header for a column, matched by `accessor`.
273
+ * Context: `$implicit` is `header`; also `components` (sort/filter icons).
274
+ */
275
+ declare class StHeaderDirective {
276
+ stHeader: string;
277
+ readonly templateRef: TemplateRef<any>;
278
+ static ɵfac: i0.ɵɵFactoryDeclaration<StHeaderDirective, never>;
279
+ static ɵdir: i0.ɵɵDirectiveDeclaration<StHeaderDirective, "ng-template[stHeader]", never, { "stHeader": { "alias": "stHeader"; "required": true; }; }, {}, never, never, true, never>;
280
+ }
281
+ /** Whole-table empty UI. Shown when there are no rows. */
282
+ declare class StEmptyDirective {
283
+ readonly templateRef: TemplateRef<any>;
284
+ static ɵfac: i0.ɵɵFactoryDeclaration<StEmptyDirective, never>;
285
+ static ɵdir: i0.ɵɵDirectiveDeclaration<StEmptyDirective, "ng-template[stEmpty]", never, {}, {}, never, never, true, never>;
286
+ }
287
+ /** Pagination / custom footer. Context matches core footer renderer props. */
288
+ declare class StFooterDirective {
289
+ readonly templateRef: TemplateRef<any>;
290
+ static ɵfac: i0.ɵɵFactoryDeclaration<StFooterDirective, never>;
291
+ static ɵdir: i0.ɵɵDirectiveDeclaration<StFooterDirective, "ng-template[stFooter]", never, {}, {}, never, never, true, never>;
292
+ }
293
+ /** Nested-group loading row (not the table-level skeleton `isLoading` flag). */
294
+ declare class StLoadingDirective {
295
+ readonly templateRef: TemplateRef<any>;
296
+ static ɵfac: i0.ɵɵFactoryDeclaration<StLoadingDirective, never>;
297
+ static ɵdir: i0.ɵɵDirectiveDeclaration<StLoadingDirective, "ng-template[stLoading]", never, {}, {}, never, never, true, never>;
298
+ }
299
+ /** Nested-group error row. */
300
+ declare class StErrorDirective {
301
+ readonly templateRef: TemplateRef<any>;
302
+ static ɵfac: i0.ɵɵFactoryDeclaration<StErrorDirective, never>;
303
+ static ɵdir: i0.ɵɵDirectiveDeclaration<StErrorDirective, "ng-template[stError]", never, {}, {}, never, never, true, never>;
304
+ }
305
+ /**
306
+ * Opt-in: put a core-built DOM node (sort icon, filter icon, …) into the host.
307
+ * Clones the node so the table can still own the original.
308
+ */
309
+ declare class StDomSlotDirective implements OnChanges, OnDestroy {
310
+ stDomSlot: string | Node | null | undefined;
311
+ private readonly host;
312
+ ngOnChanges(): void;
313
+ ngOnDestroy(): void;
314
+ private sync;
315
+ static ɵfac: i0.ɵɵFactoryDeclaration<StDomSlotDirective, never>;
316
+ static ɵdir: i0.ɵɵDirectiveDeclaration<StDomSlotDirective, "[stDomSlot]", never, { "stDomSlot": { "alias": "stDomSlot"; "required": false; }; }, {}, never, never, true, never>;
317
+ }
318
+
319
+ /**
320
+ * One import for a page that uses `<simple-table>` plus `stCell` / `stEmpty` /
321
+ * `(sortChange)` and the other template directives.
322
+ *
323
+ * ```ts
324
+ * @Component({
325
+ * standalone: true,
326
+ * imports: [SimpleTableImports],
327
+ * })
328
+ * ```
329
+ */
330
+ declare class SimpleTableImports {
331
+ static ɵfac: i0.ɵɵFactoryDeclaration<SimpleTableImports, never>;
332
+ static ɵmod: i0.ɵɵNgModuleDeclaration<SimpleTableImports, never, [typeof SimpleTableComponent, typeof StCellDirective, typeof StHeaderDirective, typeof StEmptyDirective, typeof StFooterDirective, typeof StLoadingDirective, typeof StErrorDirective, typeof StDomSlotDirective], [typeof SimpleTableComponent, typeof StCellDirective, typeof StHeaderDirective, typeof StEmptyDirective, typeof StFooterDirective, typeof StLoadingDirective, typeof StErrorDirective, typeof StDomSlotDirective]>;
333
+ static ɵinj: i0.ɵɵInjectorDeclaration<SimpleTableImports>;
334
+ }
335
+
336
+ /**
337
+ * Optional. Angular already provides `ApplicationRef` and `EnvironmentInjector`.
338
+ * The table does not require this in `bootstrapApplication` / `providers`.
212
339
  *
213
- * These are already provided by Angular's platform by default, so in practice
214
- * this function is a no-op placeholder that serves as a clear signal to
215
- * consumers that the adapter has been correctly wired up. If future versions
216
- * need custom providers they will be added here without breaking the call site.
340
+ * Kept so existing apps that call it keep compiling. Future versions may add
341
+ * real providers here without changing the call site.
217
342
  *
218
343
  * @example
219
- * // main.ts
220
344
  * bootstrapApplication(AppComponent, {
221
345
  * providers: [provideSimpleTable()],
222
346
  * });
223
- *
224
- * @example
225
- * // app.module.ts
226
- * @NgModule({ providers: [provideSimpleTable()] })
227
- * export class AppModule {}
228
347
  */
229
348
  declare function provideSimpleTable(): EnvironmentProviders;
230
349
 
@@ -237,6 +356,13 @@ declare class MountRegistry {
237
356
  private nextId;
238
357
  readonly cellRendererCache: Map<string, CachedRendererSlot<unknown>>;
239
358
  readonly headerRendererCache: Map<string, CachedRendererSlot<unknown>>;
359
+ readonly cellTemplateCache: Map<string, CachedRendererSlot<unknown>>;
360
+ readonly headerTemplateCache: Map<string, CachedRendererSlot<unknown>>;
361
+ /** One-shot `tableEmptyStateRenderer` component mount, reused across config rebuilds. */
362
+ tableEmptyStateMount: {
363
+ component: unknown;
364
+ host: HTMLElement;
365
+ } | null;
240
366
  register(container: HTMLElement, dispose: () => void): void;
241
367
  /** True when `container` is a live registered mount host (not yet disposed). */
242
368
  isRegistered(container: HTMLElement): boolean;
@@ -259,13 +385,13 @@ declare class MountRegistry {
259
385
  * Pass an optional {@link MountRegistry} so core's `onRendererHostDiscard` can
260
386
  * destroy the ComponentRef (including any CDK Overlay / floating UI) when the
261
387
  * host is discarded. The table adapter always supplies a registry; the public
262
- * helper used for one-shot static slots (e.g. `tableEmptyStateRenderer`) may omit it.
263
- *
264
- * These are injected automatically when the consumer uses
265
- * `provideSimpleTable()` in their application providers.
388
+ * helper used for one-shot static slots may omit it. Pass `elementInjector` so
389
+ * dynamically created components see providers on ancestors of `<simple-table>`.
390
+ * `ApplicationRef` and `EnvironmentInjector` come from Angular's injector;
391
+ * `provideSimpleTable()` is optional.
266
392
  */
267
- declare function wrapAngularRenderer<P extends object>(component: Type<P>, appRef: ApplicationRef, injector: EnvironmentInjector, registry?: MountRegistry): (props: Partial<P>) => HTMLElement;
393
+ declare function wrapAngularRenderer<P extends object>(component: Type<P>, appRef: ApplicationRef, injector: EnvironmentInjector, registry?: MountRegistry, elementInjector?: Injector): (props: Partial<P>) => HTMLElement;
268
394
 
269
- export { SimpleTableComponent, provideSimpleTable, wrapAngularRenderer };
395
+ export { SimpleTableComponent, SimpleTableImports, StCellDirective, StDomSlotDirective, StEmptyDirective, StErrorDirective, StFooterDirective, StHeaderDirective, StLoadingDirective, provideSimpleTable, wrapAngularRenderer };
270
396
  export type { AngularCellRenderer, AngularColumnDef, AngularColumnEditorConfig, AngularColumnEditorCustomRenderer, AngularColumnEditorRowRenderer, AngularDefaultRowData, AngularEmptyStateRenderer, AngularErrorStateRenderer, AngularFooterRenderer, AngularHeaderDropdown, AngularHeaderRenderer, AngularIconSlot, AngularIconsConfig, AngularLoadingStateRenderer, AngularRowButton, NestedAngularColumnDef, NestedTableAngularConfig, SimpleTableAngularProps, TableInstance };
271
397
  //# sourceMappingURL=index.d.ts.map
@@ -1 +1 @@
1
- {"version":3,"file":"index.d.ts","sources":["../src/types.ts","../src/lib/SimpleTableComponent.ts","../src/lib/provideSimpleTable.ts","../src/MountRegistry.ts","../src/utils/wrapAngularRenderer.ts"],"mappings":"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","names":[]}
1
+ {"version":3,"file":"index.d.ts","sources":["../src/types.ts","../src/lib/SimpleTableComponent.ts","../src/lib/stDirectives.ts","../src/lib/simpleTableImports.ts","../src/lib/provideSimpleTable.ts","../src/MountRegistry.ts","../src/utils/wrapAngularRenderer.ts"],"mappings":"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","names":["i1.SimpleTableComponent","i2.StCellDirective","i2.StHeaderDirective","i2.StEmptyDirective","i2.StFooterDirective","i2.StLoadingDirective","i2.StErrorDirective","i2.StDomSlotDirective"]}
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@simple-table/angular",
3
- "version": "4.2.2",
3
+ "version": "4.2.4",
4
4
  "type": "module",
5
5
  "main": "./dist/fesm2022/simple-table-angular.mjs",
6
6
  "module": "./dist/fesm2022/simple-table-angular.mjs",
@@ -39,7 +39,7 @@
39
39
  },
40
40
  "dependencies": {
41
41
  "tslib": "^2.8.1",
42
- "simple-table-core": "4.2.2"
42
+ "simple-table-core": "4.2.4"
43
43
  },
44
44
  "devDependencies": {
45
45
  "@angular/common": "^20.3.27",