@kuzntsv/uikit 0.21.26 → 0.21.28

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": "@kuzntsv/uikit",
3
- "version": "0.21.26",
3
+ "version": "0.21.28",
4
4
  "peerDependencies": {
5
5
  "@angular/common": "^21.1.0",
6
6
  "@angular/core": "^21.1.0"
@@ -174,8 +174,8 @@ type ObjectKeys<T extends string | number | symbol = string, K = any> = {
174
174
  type fnType<T> = ((data: T, extraData?: any) => void) | undefined;
175
175
  type fnCbType<T> = ((callback: () => void, data: T, extraData?: any) => void) | undefined;
176
176
  type SortDirection = 'asc' | 'desc' | '';
177
- type fnGetDataType<T> = (...args: any[]) => Observable<T[]>;
178
- type fnGetCountType<T> = (...args: any[]) => Observable<number>;
177
+ type fnGetDataType<T> = () => Observable<T[]>;
178
+ type fnGetCountType<T> = () => Observable<number>;
179
179
  type fnMapEntityType<T> = () => ((item: T) => T);
180
180
 
181
181
  interface ISortState {