@smartsoft001/crud-shell-angular 2.93.0 → 2.94.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
|
@@ -365,8 +365,8 @@ declare class GroupComponent<T extends IEntity<string>> extends BaseComponent$1
|
|
|
365
365
|
private styleService;
|
|
366
366
|
private elementRef;
|
|
367
367
|
private groupService;
|
|
368
|
-
readonly groups: InputSignal<Array<ICrudListGroup> |
|
|
369
|
-
readonly listOptions: InputSignal<IListOptions<T> |
|
|
368
|
+
readonly groups: InputSignal<Array<ICrudListGroup> | null>;
|
|
369
|
+
readonly listOptions: InputSignal<IListOptions<T> | null>;
|
|
370
370
|
change(val: boolean, item: ICrudListGroup, force?: boolean): void;
|
|
371
371
|
ngOnInit(): void;
|
|
372
372
|
ngOnDestroy(): void;
|
|
@@ -538,7 +538,7 @@ declare abstract class CrudListPageBaseComponent<T extends IEntity<string>> exte
|
|
|
538
538
|
config: CrudFullConfig<T>;
|
|
539
539
|
static smartType: DynamicComponentType;
|
|
540
540
|
contentTpl: i0.Signal<ViewContainerRef | undefined>;
|
|
541
|
-
listOptions: i0.InputSignal<IListOptions<T> | undefined>;
|
|
541
|
+
listOptions: i0.InputSignal<IListOptions<T> | null | undefined>;
|
|
542
542
|
static ɵfac: i0.ɵɵFactoryDeclaration<CrudListPageBaseComponent<any>, never>;
|
|
543
543
|
static ɵdir: i0.ɵɵDirectiveDeclaration<CrudListPageBaseComponent<any>, never, never, { "listOptions": { "alias": "listOptions"; "required": false; "isSignal": true; }; }, {}, never, never, true, never>;
|
|
544
544
|
}
|
|
@@ -557,17 +557,13 @@ declare class ListComponent<T extends IEntity<string>> extends ListComponent_bas
|
|
|
557
557
|
config: CrudFullConfig<T>;
|
|
558
558
|
private searchService;
|
|
559
559
|
private _cleanMultiSelected$;
|
|
560
|
-
pageOptions:
|
|
561
|
-
listOptions: WritableSignal<IListOptions<T
|
|
562
|
-
links:
|
|
563
|
-
next: any;
|
|
564
|
-
prev: any;
|
|
565
|
-
};
|
|
560
|
+
pageOptions: WritableSignal<IPageOptions | null>;
|
|
561
|
+
listOptions: WritableSignal<IListOptions<T> | null>;
|
|
562
|
+
links: Signal<any>;
|
|
566
563
|
filter: Signal<ICrudFilter | undefined>;
|
|
567
564
|
topTpl: Signal<ViewContainerRef | undefined>;
|
|
568
565
|
contentTpl: Signal<TemplateRef<any> | undefined>;
|
|
569
566
|
dynamicContents: Signal<readonly DynamicContentDirective[]>;
|
|
570
|
-
constructor();
|
|
571
567
|
refreshProperties(): void;
|
|
572
568
|
ngOnInit(): Promise<void>;
|
|
573
569
|
private initCloseMenu;
|