@arsedizioni/ars-utils 22.0.1 → 22.0.3
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 +4 -7
- package/fesm2022/arsedizioni-ars-utils-clipper.common.mjs.map +1 -1
- package/fesm2022/arsedizioni-ars-utils-core.mjs +13 -25
- package/fesm2022/arsedizioni-ars-utils-core.mjs.map +1 -1
- package/fesm2022/arsedizioni-ars-utils-evolution.common.mjs +4 -7
- package/fesm2022/arsedizioni-ars-utils-evolution.common.mjs.map +1 -1
- package/fesm2022/arsedizioni-ars-utils-help.mjs +4 -7
- package/fesm2022/arsedizioni-ars-utils-help.mjs.map +1 -1
- package/fesm2022/arsedizioni-ars-utils-ui.application.mjs +25 -15
- package/fesm2022/arsedizioni-ars-utils-ui.application.mjs.map +1 -1
- package/fesm2022/arsedizioni-ars-utils-ui.mjs +10 -17
- package/fesm2022/arsedizioni-ars-utils-ui.mjs.map +1 -1
- package/package.json +1 -1
- package/types/arsedizioni-ars-utils-clipper.ui.d.ts +1 -1
- package/types/arsedizioni-ars-utils-ui.application.d.ts +4 -0
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
import * as i0 from '@angular/core';
|
|
2
|
-
import { inject, ElementRef, afterNextRender, Directive, input, DestroyRef, HostListener, output, forwardRef, Pipe, EventEmitter, signal, computed,
|
|
2
|
+
import { inject, ElementRef, afterNextRender, Directive, input, DestroyRef, HostListener, output, forwardRef, Pipe, EventEmitter, signal, computed, Service, RendererFactory2, NgModule, Injectable } from '@angular/core';
|
|
3
3
|
import { takeUntilDestroyed } from '@angular/core/rxjs-interop';
|
|
4
4
|
import { Subject, BehaviorSubject } from 'rxjs';
|
|
5
5
|
import { debounceTime } from 'rxjs/operators';
|
|
@@ -2503,14 +2503,11 @@ class BroadcastService {
|
|
|
2503
2503
|
getMessage() {
|
|
2504
2504
|
return this.subject.asObservable();
|
|
2505
2505
|
}
|
|
2506
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "22.0.0", ngImport: i0, type: BroadcastService, deps: [], target: i0.ɵɵFactoryTarget.
|
|
2507
|
-
static { this.ɵprov = i0.ɵɵ
|
|
2506
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "22.0.0", ngImport: i0, type: BroadcastService, deps: [], target: i0.ɵɵFactoryTarget.Service }); }
|
|
2507
|
+
static { this.ɵprov = i0.ɵɵngDeclareService({ minVersion: "22.0.0", version: "22.0.0", ngImport: i0, type: BroadcastService }); }
|
|
2508
2508
|
}
|
|
2509
2509
|
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "22.0.0", ngImport: i0, type: BroadcastService, decorators: [{
|
|
2510
|
-
type:
|
|
2511
|
-
args: [{
|
|
2512
|
-
providedIn: 'root'
|
|
2513
|
-
}]
|
|
2510
|
+
type: Service
|
|
2514
2511
|
}] });
|
|
2515
2512
|
|
|
2516
2513
|
/**
|
|
@@ -2567,14 +2564,11 @@ class EnvironmentService {
|
|
|
2567
2564
|
get appServiceLoginUri() { return this._effectiveServiceLoginUri(); }
|
|
2568
2565
|
/** @param value - The login endpoint URI of the backend service. */
|
|
2569
2566
|
set appServiceLoginUri(value) { this.appServiceLoginUriSignal.set(value); }
|
|
2570
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "22.0.0", ngImport: i0, type: EnvironmentService, deps: [], target: i0.ɵɵFactoryTarget.
|
|
2571
|
-
static { this.ɵprov = i0.ɵɵ
|
|
2567
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "22.0.0", ngImport: i0, type: EnvironmentService, deps: [], target: i0.ɵɵFactoryTarget.Service }); }
|
|
2568
|
+
static { this.ɵprov = i0.ɵɵngDeclareService({ minVersion: "22.0.0", version: "22.0.0", ngImport: i0, type: EnvironmentService }); }
|
|
2572
2569
|
}
|
|
2573
2570
|
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "22.0.0", ngImport: i0, type: EnvironmentService, decorators: [{
|
|
2574
|
-
type:
|
|
2575
|
-
args: [{
|
|
2576
|
-
providedIn: 'root'
|
|
2577
|
-
}]
|
|
2571
|
+
type: Service
|
|
2578
2572
|
}] });
|
|
2579
2573
|
|
|
2580
2574
|
/**
|
|
@@ -2604,14 +2598,11 @@ class ScreenService {
|
|
|
2604
2598
|
get isIEOrEdge() {
|
|
2605
2599
|
return /msie\s|trident\/|edge\//i.test(window.navigator.userAgent);
|
|
2606
2600
|
}
|
|
2607
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "22.0.0", ngImport: i0, type: ScreenService, deps: [], target: i0.ɵɵFactoryTarget.
|
|
2608
|
-
static { this.ɵprov = i0.ɵɵ
|
|
2601
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "22.0.0", ngImport: i0, type: ScreenService, deps: [], target: i0.ɵɵFactoryTarget.Service }); }
|
|
2602
|
+
static { this.ɵprov = i0.ɵɵngDeclareService({ minVersion: "22.0.0", version: "22.0.0", ngImport: i0, type: ScreenService }); }
|
|
2609
2603
|
}
|
|
2610
2604
|
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "22.0.0", ngImport: i0, type: ScreenService, decorators: [{
|
|
2611
|
-
type:
|
|
2612
|
-
args: [{
|
|
2613
|
-
providedIn: 'root'
|
|
2614
|
-
}]
|
|
2605
|
+
type: Service
|
|
2615
2606
|
}] });
|
|
2616
2607
|
|
|
2617
2608
|
/**
|
|
@@ -2729,14 +2720,11 @@ class ThemeService {
|
|
|
2729
2720
|
this.themeChanged.next(this.getTheme());
|
|
2730
2721
|
this.broadcastChannel.sendMessage(this.broadcastMessage, theme);
|
|
2731
2722
|
}
|
|
2732
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "22.0.0", ngImport: i0, type: ThemeService, deps: [], target: i0.ɵɵFactoryTarget.
|
|
2733
|
-
static { this.ɵprov = i0.ɵɵ
|
|
2723
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "22.0.0", ngImport: i0, type: ThemeService, deps: [], target: i0.ɵɵFactoryTarget.Service }); }
|
|
2724
|
+
static { this.ɵprov = i0.ɵɵngDeclareService({ minVersion: "22.0.0", version: "22.0.0", ngImport: i0, type: ThemeService }); }
|
|
2734
2725
|
}
|
|
2735
2726
|
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "22.0.0", ngImport: i0, type: ThemeService, decorators: [{
|
|
2736
|
-
type:
|
|
2737
|
-
args: [{
|
|
2738
|
-
providedIn: "root",
|
|
2739
|
-
}]
|
|
2727
|
+
type: Service
|
|
2740
2728
|
}], ctorParameters: () => [] });
|
|
2741
2729
|
|
|
2742
2730
|
class ArsCoreModule {
|