@one-paragon/angular-utilities 2.6.7 → 2.7.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/package.json CHANGED
@@ -1,25 +1,25 @@
1
1
  {
2
2
  "name": "@one-paragon/angular-utilities",
3
- "version": "2.6.7",
3
+ "version": "2.7.1",
4
4
  "peerDependencies": {
5
- "@angular/common": "20.0.",
6
- "@angular/core": "20.0.3",
7
- "@angular/material": "20.0.3",
8
- "@ngrx/component-store": "19.2.1",
9
- "@ngrx/effects": "19.2.1",
10
- "@ngrx/store": "19.2.1"
5
+ "@angular/common": "21.0.0",
6
+ "@angular/core": "21.0.0",
7
+ "@angular/material": "21.0.0",
8
+ "@ngrx/component-store": "20.1.0",
9
+ "@ngrx/effects": "20.1.0",
10
+ "@ngrx/store": "20.1.0"
11
11
  },
12
12
  "dependencies": {
13
13
  "tslib": "2.8.1"
14
14
  },
15
15
  "module": "fesm2022/one-paragon-angular-utilities.mjs",
16
- "typings": "index.d.ts",
16
+ "typings": "types/one-paragon-angular-utilities.d.ts",
17
17
  "exports": {
18
18
  "./package.json": {
19
19
  "default": "./package.json"
20
20
  },
21
21
  ".": {
22
- "types": "./index.d.ts",
22
+ "types": "./types/one-paragon-angular-utilities.d.ts",
23
23
  "default": "./fesm2022/one-paragon-angular-utilities.mjs"
24
24
  }
25
25
  },
@@ -385,7 +385,6 @@ interface BaseMeta<T = any> {
385
385
  */
386
386
  groupByHeader?: (groupByVal: any) => string;
387
387
  };
388
- customCell?: boolean;
389
388
  /**
390
389
  * @deprecated Use `map`
391
390
  */
@@ -913,7 +912,7 @@ declare class CustomGroupRowDirective<T = any> implements OnInit {
913
912
  * If not provided (or null), this custom row will apply to all groupings.
914
913
  * Can be a single Path<T> or an array of Path<T> values.
915
914
  */
916
- $customGroupRow: _angular_core.InputSignalWithTransform<Path<T, never, never> | Path<T, never, never>[] | null, "" | Path<T, never, never> | Path<T, never, never>[] | null>;
915
+ $customGroupRow: _angular_core.InputSignalWithTransform<Path<T> | Path<T>[] | null, "" | Path<T> | Path<T>[] | null>;
917
916
  /**
918
917
  * For type safety, this is a reference to the table builder instance.
919
918
  */
@@ -927,7 +926,7 @@ declare class CustomGroupRowDirective<T = any> implements OnInit {
927
926
  /**
928
927
  * Gets the grouping key(s) this directive applies to, or null for all groupings
929
928
  */
930
- $groupingKey: _angular_core.Signal<Path<T, never, never> | Path<T, never, never>[] | null>;
929
+ $groupingKey: _angular_core.Signal<Path<T> | Path<T>[] | null>;
931
930
  /**
932
931
  * Gets the template reference to use
933
932
  */
@@ -1946,7 +1945,6 @@ declare class FilterComponent {
1946
1945
  $enteredFilterType: _angular_core.WritableSignal<FilterType | undefined>;
1947
1946
  $currentFilterType: _angular_core.Signal<FilterType | undefined>;
1948
1947
  $availableFilterTypes: _angular_core.Signal<FilterType[]>;
1949
- $filterBy: _angular_core.Signal<((t: any) => any) | undefined>;
1950
1948
  onEnter(filter: FilterInfo, event: any): void;
1951
1949
  addFilter(filter: FilterInfo): void;
1952
1950
  static ɵfac: _angular_core.ɵɵFactoryDeclaration<FilterComponent, never>;