codexly-ui 0.10.21 → 0.10.23

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/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "codexly-ui",
3
- "version": "0.10.21",
3
+ "version": "0.10.23",
4
4
  "description": "Standalone, signal-based Angular UI component library for Codexly, styled with Tailwind CSS.",
5
5
  "keywords": [
6
6
  "angular",
@@ -2709,6 +2709,11 @@ declare class ClxTableComponent<T = any> {
2709
2709
  protected _getColumnDef(key: string): ClxColumnDefDirective<T> | undefined;
2710
2710
  protected readonly _filteredData: _angular_core.Signal<T[]>;
2711
2711
  protected readonly _paginatedData: _angular_core.Signal<T[]>;
2712
+ /** The `index` passed into a cell template must refer to the row's position in the original
2713
+ * `data()` array the consumer owns (e.g. to splice/edit it directly) — never the position
2714
+ * within the current page, which silently gave every page's first row index 0 and broke
2715
+ * edit/remove handlers built around `data()[index]` as soon as a second page existed. */
2716
+ protected _absoluteIndex(item: T): number;
2712
2717
  protected readonly _totalItems: _angular_core.Signal<number>;
2713
2718
  protected readonly _emptyTitle: _angular_core.Signal<string>;
2714
2719
  protected readonly _emptyDescription: _angular_core.Signal<string>;