@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.
- package/clipper.common/index.d.ts +1 -1
- package/clipper.ui/index.d.ts +1 -1
- package/core/index.d.ts +2 -2
- package/fesm2022/arsedizioni-ars-utils-clipper.common.mjs +169 -565
- package/fesm2022/arsedizioni-ars-utils-clipper.common.mjs.map +1 -1
- package/fesm2022/arsedizioni-ars-utils-clipper.ui.mjs +39 -39
- package/fesm2022/arsedizioni-ars-utils-core.mjs +109 -109
- package/fesm2022/arsedizioni-ars-utils-core.mjs.map +1 -1
- package/fesm2022/arsedizioni-ars-utils-evolution.common.mjs +10 -10
- package/fesm2022/arsedizioni-ars-utils-help.mjs +13 -13
- package/fesm2022/arsedizioni-ars-utils-support.common.mjs +7 -7
- package/fesm2022/arsedizioni-ars-utils-support.ui.mjs +6 -6
- package/fesm2022/arsedizioni-ars-utils-tinymce.mjs +7 -7
- package/fesm2022/arsedizioni-ars-utils-ui.application.mjs +61 -61
- package/fesm2022/arsedizioni-ars-utils-ui.mjs +40 -40
- package/fesm2022/arsedizioni-ars-utils-ui.oauth.mjs +7 -7
- package/package.json +9 -9
- package/ui.application/index.d.ts +1 -1
|
@@ -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';
|
package/clipper.ui/index.d.ts
CHANGED
|
@@ -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" | "
|
|
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;
|