@smartsoft001/crud-shell-angular 2.133.0 → 2.134.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/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@smartsoft001/crud-shell-angular",
3
- "version": "2.133.0",
3
+ "version": "2.134.0",
4
4
  "description": "Utils and Angular components",
5
5
  "repository": {
6
6
  "type": "git",
@@ -618,13 +618,13 @@ declare class ItemComponent<T extends IEntity<string>> extends ItemComponent_bas
618
618
  private detailsService;
619
619
  private _mode;
620
620
  pageOptions: WritableSignal<IPageOptions>;
621
- detailsOptions: WritableSignal<IDetailsOptions<T>>;
621
+ detailsOptions: WritableSignal<IDetailsOptions<T> | undefined>;
622
622
  id: string;
623
623
  formValue: T;
624
624
  formValid: boolean;
625
625
  item: T;
626
626
  formPartialValue: Partial<T>;
627
- uniqueProvider: WritableSignal<(values: Record<keyof T, any>) => Promise<boolean>>;
627
+ uniqueProvider: WritableSignal<((values: Record<keyof T, any>) => Promise<boolean>) | undefined>;
628
628
  set mode(val: string);
629
629
  get mode(): string;
630
630
  selected: Signal<T>;