@arsedizioni/ars-utils 22.0.20 → 22.0.21
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/fesm2022/arsedizioni-ars-utils-clipper.common.mjs +3 -1
- package/fesm2022/arsedizioni-ars-utils-clipper.common.mjs.map +1 -1
- package/fesm2022/arsedizioni-ars-utils-core.mjs +35 -2
- package/fesm2022/arsedizioni-ars-utils-core.mjs.map +1 -1
- package/package.json +1 -1
- package/types/arsedizioni-ars-utils-clipper.common.d.ts +1 -0
- package/types/arsedizioni-ars-utils-clipper.ui.d.ts +1 -1
- package/types/arsedizioni-ars-utils-core.d.ts +26 -1
package/package.json
CHANGED
|
@@ -1138,6 +1138,7 @@ declare class ClipperService {
|
|
|
1138
1138
|
private readonly httpClient;
|
|
1139
1139
|
private readonly destroyRef;
|
|
1140
1140
|
private readonly broadcastService;
|
|
1141
|
+
private readonly splashService;
|
|
1141
1142
|
private broadcastInitialized;
|
|
1142
1143
|
private _appUri?;
|
|
1143
1144
|
get appUri(): string | undefined;
|
|
@@ -1053,7 +1053,7 @@ declare class ClipperDocumentMenuComponent {
|
|
|
1053
1053
|
/** Internal counter incremented on each external selection-model change to drive signal re-evaluation. */
|
|
1054
1054
|
private readonly selectionChangeTick;
|
|
1055
1055
|
readonly useSelections: _angular_core.InputSignal<boolean>;
|
|
1056
|
-
readonly selectionSource: _angular_core.InputSignal<"
|
|
1056
|
+
readonly selectionSource: _angular_core.InputSignal<"selection" | "bag" | "none">;
|
|
1057
1057
|
/**
|
|
1058
1058
|
* Computed signal that returns the current effective document selection.
|
|
1059
1059
|
* Re-evaluates when any input signal or the underlying selection model changes.
|
|
@@ -1452,6 +1452,31 @@ declare class ScreenService {
|
|
|
1452
1452
|
static ɵprov: i0.ɵɵInjectableDeclaration<ScreenService>;
|
|
1453
1453
|
}
|
|
1454
1454
|
|
|
1455
|
+
declare class SplashService {
|
|
1456
|
+
private readonly isBrowser;
|
|
1457
|
+
/**
|
|
1458
|
+
* Resolve the global splash API exposed by index.html.
|
|
1459
|
+
* @returns The API object, or `undefined` when the splash has already
|
|
1460
|
+
* been removed or when running in SSR.
|
|
1461
|
+
*/
|
|
1462
|
+
private get api();
|
|
1463
|
+
/**
|
|
1464
|
+
* Update the splash message (e.g. "Accesso in corso...").
|
|
1465
|
+
* No-op when the splash is gone or in SSR.
|
|
1466
|
+
* @param text - The new message to display.
|
|
1467
|
+
*/
|
|
1468
|
+
setMessage(text: string): void;
|
|
1469
|
+
/**
|
|
1470
|
+
* Defuse the watchdog: Angular bootstrap succeeded,
|
|
1471
|
+
* no automatic reload will ever fire.
|
|
1472
|
+
*/
|
|
1473
|
+
bootstrapped(): void;
|
|
1474
|
+
/** Fade out and remove the splash overlay from the DOM. */
|
|
1475
|
+
hide(): void;
|
|
1476
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<SplashService, never>;
|
|
1477
|
+
static ɵprov: i0.ɵɵInjectableDeclaration<SplashService>;
|
|
1478
|
+
}
|
|
1479
|
+
|
|
1455
1480
|
/** The three available theme modes: follow system preference, force light, or force dark. */
|
|
1456
1481
|
type ThemeType = 'auto' | 'light' | 'dark';
|
|
1457
1482
|
/**
|
|
@@ -1532,5 +1557,5 @@ declare class ThemeService implements OnDestroy {
|
|
|
1532
1557
|
static ɵprov: i0.ɵɵInjectableDeclaration<ThemeService>;
|
|
1533
1558
|
}
|
|
1534
1559
|
|
|
1535
|
-
export { AutoFocusDirective, Breakpoints, BroadcastChannelManager, BroadcastService, CopyClipboardDirective, DateFnsAdapter, DateFormat, DateInterval, DateIntervalChangeDirective, DeleteModel, EmailsValidatorDirective, EnvironmentService, EqualsValidatorDirective, FileInfo, FileSizeValidatorDirective, FormatHtmlPipe, FormatMarkdownPipe, FormatPipe, GroupModel, GuidValidatorDirective, IDModel, ImportModel, MAT_DATE_FNS_FORMATS, MaxTermsValidatorDirective, NotEmptyValidatorDirective, NotEqualValidatorDirective, NotFutureValidatorDirective, PasswordValidatorDirective, QueryModel, RelationModel, RemoveFocusDirective, ReplacePipe, SafeHtmlPipe, SafeUrlPipe, ScreenService, SearchCallbackPipe, SearchFilterPipe, SelectableModel, SqlDateValidatorDirective, SystemUtils, ThemeService, TimeValidatorDirective, UpdateRelationsModel, UrlValidatorDirective, UtilsMessages, ValidIfDirective, ValidatorDirective, ValueModel, provideArsCore, provideArsDateFns };
|
|
1560
|
+
export { AutoFocusDirective, Breakpoints, BroadcastChannelManager, BroadcastService, CopyClipboardDirective, DateFnsAdapter, DateFormat, DateInterval, DateIntervalChangeDirective, DeleteModel, EmailsValidatorDirective, EnvironmentService, EqualsValidatorDirective, FileInfo, FileSizeValidatorDirective, FormatHtmlPipe, FormatMarkdownPipe, FormatPipe, GroupModel, GuidValidatorDirective, IDModel, ImportModel, MAT_DATE_FNS_FORMATS, MaxTermsValidatorDirective, NotEmptyValidatorDirective, NotEqualValidatorDirective, NotFutureValidatorDirective, PasswordValidatorDirective, QueryModel, RelationModel, RemoveFocusDirective, ReplacePipe, SafeHtmlPipe, SafeUrlPipe, ScreenService, SearchCallbackPipe, SearchFilterPipe, SelectableModel, SplashService, SqlDateValidatorDirective, SystemUtils, ThemeService, TimeValidatorDirective, UpdateRelationsModel, UrlValidatorDirective, UtilsMessages, ValidIfDirective, ValidatorDirective, ValueModel, provideArsCore, provideArsDateFns };
|
|
1536
1561
|
export type { AddModel, AddResultModel, ApiResponse, ApiResult, BroadcastChannelMessageBag, BroadcastChannelSubscriberInfo, BroadcastMessageInfo, BroadcastMessageToastData, Checkable, DeleteResultModel, DoneResult, EnableDisableModel, ErrorInfo, File, Folder, FolderTree, INode, LoginResult, NameValueItem, PasswordStrength, QueryResultModel, SearchBag, SearchFilterMetadata, Searchable, SendToModel, ThemeType, UpdateModel, UpdateResultModel, Validated };
|