@arsedizioni/ars-utils 20.4.16 → 20.4.18

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.
@@ -1,7 +1,7 @@
1
1
  import * as _angular_core from '@angular/core';
2
2
  import { Signal, OnDestroy } from '@angular/core';
3
- import { SendToDialogResult } from '@arsedizioni/ars-utils/ui.application';
4
3
  import { NameValueItem, LoginResult, Folder, ApiResult, FolderTree } from '@arsedizioni/ars-utils/core';
4
+ import { SendToDialogResult } from '@arsedizioni/ars-utils/ui.application';
5
5
  import { LoginOAuthType } from '@arsedizioni/ars-utils/ui.oauth';
6
6
  import { HttpInterceptor, HttpRequest, HttpHandler, HttpEvent } from '@angular/common/http';
7
7
  import * as rxjs from 'rxjs';
@@ -1033,7 +1033,7 @@ declare class ClipperDocumentMenuComponent implements OnInit, OnDestroy {
1033
1033
  private changeDetector;
1034
1034
  private clipperService;
1035
1035
  readonly useSelections: _angular_core.InputSignal<boolean>;
1036
- readonly selectionSource: _angular_core.InputSignal<"selection" | "bag" | "none">;
1036
+ readonly selectionSource: _angular_core.InputSignal<"selection" | "none" | "bag">;
1037
1037
  protected selection: () => ClipperDocumentInfo[];
1038
1038
  readonly parent: _angular_core.InputSignal<ClipperSearchResultManager>;
1039
1039
  readonly item: _angular_core.InputSignal<ClipperDocumentInfo>;
package/core/index.d.ts CHANGED
@@ -967,7 +967,7 @@ declare class DateFnsAdapter extends DateAdapter<Date, Locale> {
967
967
  clone(date: Date): Date;
968
968
  createDate(year: number, month: number, date: number): Date;
969
969
  today(): Date;
970
- parse(value: any, parseFormat: string | string[]): Date | undefined;
970
+ parse(value: any, parseFormat: string | string[]): Date | null | undefined;
971
971
  format(date: Date, displayFormat: string): string;
972
972
  addCalendarYears(date: Date, years: number): Date;
973
973
  addCalendarMonths(date: Date, months: number): Date;
@@ -978,7 +978,7 @@ declare class DateFnsAdapter extends DateAdapter<Date, Locale> {
978
978
  * (https://www.ietf.org/rfc/rfc3339.txt) into valid Dates and empty string into undefined. Returns an
979
979
  * invalid date for all other values.
980
980
  */
981
- deserialize(value: any): Date | undefined;
981
+ deserialize(value: any): Date | null | undefined;
982
982
  isDateInstance(obj: any): boolean;
983
983
  isValid(date: Date): boolean;
984
984
  invalid(): Date;