@smartsoft001/crud-shell-angular 2.94.0 → 2.95.0
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/index.d.ts
CHANGED
|
@@ -127,16 +127,16 @@ declare class CrudFullConfig<T> extends CrudConfig<T> {
|
|
|
127
127
|
declare class CrudFacade<T extends IEntity<string>> {
|
|
128
128
|
private readonly store;
|
|
129
129
|
private config;
|
|
130
|
+
readonly loaded: Signal<boolean | undefined>;
|
|
131
|
+
readonly loading: Signal<boolean>;
|
|
132
|
+
readonly selected: Signal<T | undefined>;
|
|
133
|
+
readonly multiSelected: Signal<T[] | undefined>;
|
|
134
|
+
readonly list: Signal<T[] | undefined>;
|
|
135
|
+
readonly filter: Signal<ICrudFilter | undefined>;
|
|
136
|
+
readonly totalCount: Signal<number | undefined>;
|
|
137
|
+
readonly links: Signal<any>;
|
|
138
|
+
readonly error: Signal<any>;
|
|
130
139
|
constructor(store: Store<any>, config: CrudConfig<T>);
|
|
131
|
-
get loaded(): Signal<boolean | undefined>;
|
|
132
|
-
get loading(): Signal<boolean>;
|
|
133
|
-
get selected(): Signal<T | undefined>;
|
|
134
|
-
get multiSelected(): Signal<T[] | undefined>;
|
|
135
|
-
get list(): Signal<T[] | undefined>;
|
|
136
|
-
get filter(): Signal<ICrudFilter | undefined>;
|
|
137
|
-
get totalCount(): Signal<number | undefined>;
|
|
138
|
-
get links(): Signal<any>;
|
|
139
|
-
get error(): Signal<any>;
|
|
140
140
|
create(item: T): void;
|
|
141
141
|
createMany(items: Array<T>, options: ICrudCreateManyOptions): void;
|
|
142
142
|
read(filter?: ICrudFilter): void;
|