@taiga-ui/addon-table 4.52.0-canary.ec0802b → 4.52.0-canary.efbd0d4

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.
Files changed (35) hide show
  1. package/components/reorder/reorder.component.d.ts +6 -9
  2. package/components/table/directives/cell.directive.d.ts +2 -2
  3. package/components/table/directives/head.directive.d.ts +2 -2
  4. package/components/table/directives/resized.directive.d.ts +2 -1
  5. package/components/table/directives/sort-by.directive.d.ts +6 -11
  6. package/components/table/directives/sortable.directive.d.ts +6 -8
  7. package/components/table/directives/table.directive.d.ts +9 -23
  8. package/components/table/index.d.ts +0 -2
  9. package/components/table/pipes/table-sort.pipe.d.ts +6 -5
  10. package/components/table/table-expand/table-expand.component.d.ts +4 -6
  11. package/components/table/table.d.ts +1 -2
  12. package/components/table/table.options.d.ts +0 -16
  13. package/components/table/tbody/tbody.component.d.ts +5 -8
  14. package/components/table/td/td.component.d.ts +3 -2
  15. package/components/table/th/th.component.d.ts +8 -8
  16. package/components/table/th-group/th-group.component.d.ts +4 -7
  17. package/components/table/tr/tr.component.d.ts +3 -7
  18. package/components/table-pagination/table-pagination.component.d.ts +12 -16
  19. package/directives/table-control/checkbox-row.directive.d.ts +2 -2
  20. package/directives/table-filters/abstract-table-filter.d.ts +2 -1
  21. package/directives/table-filters/generic-filter.directive.d.ts +2 -2
  22. package/directives/table-filters/table-filter.directive.d.ts +3 -3
  23. package/fesm2022/taiga-ui-addon-table-components-reorder.mjs +31 -39
  24. package/fesm2022/taiga-ui-addon-table-components-reorder.mjs.map +1 -1
  25. package/fesm2022/taiga-ui-addon-table-components-table-pagination.mjs +32 -55
  26. package/fesm2022/taiga-ui-addon-table-components-table-pagination.mjs.map +1 -1
  27. package/fesm2022/taiga-ui-addon-table-components-table.mjs +206 -384
  28. package/fesm2022/taiga-ui-addon-table-components-table.mjs.map +1 -1
  29. package/fesm2022/taiga-ui-addon-table-directives-table-control.mjs +18 -18
  30. package/fesm2022/taiga-ui-addon-table-directives-table-control.mjs.map +1 -1
  31. package/fesm2022/taiga-ui-addon-table-directives-table-filters.mjs +24 -28
  32. package/fesm2022/taiga-ui-addon-table-directives-table-filters.mjs.map +1 -1
  33. package/package.json +1 -1
  34. package/components/table/directives/direction-order.directive.d.ts +0 -11
  35. package/components/table/providers/table.provider.d.ts +0 -5
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@taiga-ui/addon-table",
3
- "version": "4.52.0-canary.ec0802b",
3
+ "version": "4.52.0-canary.efbd0d4",
4
4
  "description": "A library to display tabled data with filters, search, group actions, etc.",
5
5
  "keywords": [
6
6
  "angular",
@@ -1,11 +0,0 @@
1
- import * as i0 from "@angular/core";
2
- export declare class TuiTableDirectionOrder<T> {
3
- private readonly table;
4
- /**
5
- * @deprecated: use tuiSortChange
6
- */
7
- readonly directionOrderChange: import("rxjs").Observable<"asc" | "desc">;
8
- set directionOrder(order: 'asc' | 'desc');
9
- static ɵfac: i0.ɵɵFactoryDeclaration<TuiTableDirectionOrder<any>, never>;
10
- static ɵdir: i0.ɵɵDirectiveDeclaration<TuiTableDirectionOrder<any>, "table[tuiTable][tuiDirectionOrder]", never, { "directionOrder": { "alias": "directionOrder"; "required": false; }; }, { "directionOrderChange": "directionOrderChange"; }, never, never, true, never>;
11
- }
@@ -1,5 +0,0 @@
1
- import { type Provider } from '@angular/core';
2
- /**
3
- * @deprecated TODO: drop after Angular update and signal inputs
4
- */
5
- export declare const TUI_TABLE_PROVIDER: Provider[];