@one-paragon/angular-utilities 2.0.21 → 2.0.22
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,16 +1,16 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@one-paragon/angular-utilities",
|
|
3
|
-
"version": "2.0.
|
|
3
|
+
"version": "2.0.22",
|
|
4
4
|
"peerDependencies": {
|
|
5
|
-
"@angular/common": "19.
|
|
6
|
-
"@angular/core": "19.
|
|
7
|
-
"@angular/material": "19.
|
|
8
|
-
"@ngrx/component-store": "
|
|
9
|
-
"@ngrx/effects": "
|
|
10
|
-
"@ngrx/store": "
|
|
5
|
+
"@angular/common": "19.2.1",
|
|
6
|
+
"@angular/core": "19.2.1",
|
|
7
|
+
"@angular/material": "19.2.1",
|
|
8
|
+
"@ngrx/component-store": "19.0.1",
|
|
9
|
+
"@ngrx/effects": "19.0.1",
|
|
10
|
+
"@ngrx/store": "19.0.1"
|
|
11
11
|
},
|
|
12
12
|
"dependencies": {
|
|
13
|
-
"tslib": "
|
|
13
|
+
"tslib": "2.8.1"
|
|
14
14
|
},
|
|
15
15
|
"module": "fesm2022/one-paragon-angular-utilities.mjs",
|
|
16
16
|
"typings": "index.d.ts",
|
package/rxjs/subjectifier.d.ts
CHANGED
|
@@ -1,8 +1,10 @@
|
|
|
1
1
|
import { Observable, Subject } from 'rxjs';
|
|
2
|
+
type PipeLike<T> = Observable<T>['pipe'];
|
|
2
3
|
export declare class Subjectifier<T> extends Observable<T> {
|
|
3
4
|
private _subj;
|
|
4
5
|
private merged;
|
|
5
6
|
constructor(_source: Observable<T>);
|
|
6
7
|
next: Subject<T>['next'];
|
|
7
|
-
newSubj: (
|
|
8
|
+
newSubj: (...operations: Parameters<PipeLike<T>>) => Subjectifier<unknown>;
|
|
8
9
|
}
|
|
10
|
+
export {};
|
|
@@ -1,6 +1,5 @@
|
|
|
1
1
|
import { ComponentStore } from "@ngrx/component-store";
|
|
2
2
|
import { Signal } from "@angular/core";
|
|
3
|
-
import { Observable } from "rxjs";
|
|
4
3
|
import { Dictionary } from "../interfaces/dictionary";
|
|
5
4
|
import { PersistedTableState } from "../classes/TableState";
|
|
6
5
|
import * as i0 from "@angular/core";
|
|
@@ -17,7 +16,7 @@ export declare class TableBuilderStateStore extends ComponentStore<GlobalStorage
|
|
|
17
16
|
tableState: PersistedTableState;
|
|
18
17
|
stateName?: string;
|
|
19
18
|
asDefault?: boolean;
|
|
20
|
-
} | Observable<{
|
|
19
|
+
} | import("rxjs").Observable<{
|
|
21
20
|
tableId: string;
|
|
22
21
|
tableState: PersistedTableState;
|
|
23
22
|
stateName?: string;
|
|
@@ -28,7 +27,7 @@ export declare class TableBuilderStateStore extends ComponentStore<GlobalStorage
|
|
|
28
27
|
setLocalCurrentState: (observableOrValue: {
|
|
29
28
|
tableId: string;
|
|
30
29
|
currentStateKey: string;
|
|
31
|
-
} | Observable<{
|
|
30
|
+
} | import("rxjs").Observable<{
|
|
32
31
|
tableId: string;
|
|
33
32
|
currentStateKey: string;
|
|
34
33
|
}>) => import("rxjs").Subscription;
|
|
@@ -36,7 +35,7 @@ export declare class TableBuilderStateStore extends ComponentStore<GlobalStorage
|
|
|
36
35
|
setDefaultInLocal: (observableOrValue: {
|
|
37
36
|
key: string;
|
|
38
37
|
default: string;
|
|
39
|
-
} | Observable<{
|
|
38
|
+
} | import("rxjs").Observable<{
|
|
40
39
|
key: string;
|
|
41
40
|
default: string;
|
|
42
41
|
}>) => import("rxjs").Subscription;
|
|
@@ -47,7 +46,7 @@ export declare class TableBuilderStateStore extends ComponentStore<GlobalStorage
|
|
|
47
46
|
deleteLocalProfilesState: (observableOrValue: {
|
|
48
47
|
key: string;
|
|
49
48
|
stateKey: string;
|
|
50
|
-
} | Observable<{
|
|
49
|
+
} | import("rxjs").Observable<{
|
|
51
50
|
key: string;
|
|
52
51
|
stateKey: string;
|
|
53
52
|
}>) => import("rxjs").Subscription;
|