@aquera/ngx-smart-table 0.0.7-alpha → 0.0.8-alpha

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.
@@ -133,6 +133,7 @@ export declare class StWorkbookComponent implements OnInit, OnChanges, OnDestroy
133
133
  ngOnChanges(changes: SimpleChanges): void;
134
134
  /**
135
135
  * Initialize component state
136
+ * @param isFirstInit Whether this is the first initialization (true) or a config update (false)
136
137
  */
137
138
  private initializeComponent;
138
139
  /**
@@ -151,6 +152,10 @@ export declare class StWorkbookComponent implements OnInit, OnChanges, OnDestroy
151
152
  * Add new sheet
152
153
  */
153
154
  onAddSheet(): void;
155
+ /**
156
+ * TrackBy function to force component recreation when key changes
157
+ */
158
+ trackByKey(index: number, key: string): string;
154
159
  /**
155
160
  * Check if can add more sheets
156
161
  */
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@aquera/ngx-smart-table",
3
- "version": "0.0.7-alpha",
3
+ "version": "0.0.8-alpha",
4
4
  "license": "MIT",
5
5
  "peerDependencies": {
6
6
  "@angular/common": ">=13.0.0 <16.0.0",