@arsedizioni/ars-utils 22.0.10 → 22.0.12

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.
Files changed (31) hide show
  1. package/fesm2022/arsedizioni-ars-utils-clipper.common.mjs +23 -33
  2. package/fesm2022/arsedizioni-ars-utils-clipper.common.mjs.map +1 -1
  3. package/fesm2022/arsedizioni-ars-utils-clipper.ui.mjs +18 -9
  4. package/fesm2022/arsedizioni-ars-utils-clipper.ui.mjs.map +1 -1
  5. package/fesm2022/arsedizioni-ars-utils-core.mjs +1700 -1797
  6. package/fesm2022/arsedizioni-ars-utils-core.mjs.map +1 -1
  7. package/fesm2022/arsedizioni-ars-utils-evolution.common.mjs +15 -26
  8. package/fesm2022/arsedizioni-ars-utils-evolution.common.mjs.map +1 -1
  9. package/fesm2022/arsedizioni-ars-utils-help.mjs +2 -11
  10. package/fesm2022/arsedizioni-ars-utils-help.mjs.map +1 -1
  11. package/fesm2022/arsedizioni-ars-utils-support.common.mjs +3 -12
  12. package/fesm2022/arsedizioni-ars-utils-support.common.mjs.map +1 -1
  13. package/fesm2022/arsedizioni-ars-utils-tinymce.mjs +2 -12
  14. package/fesm2022/arsedizioni-ars-utils-tinymce.mjs.map +1 -1
  15. package/fesm2022/arsedizioni-ars-utils-ui.application.mjs +96 -123
  16. package/fesm2022/arsedizioni-ars-utils-ui.application.mjs.map +1 -1
  17. package/fesm2022/arsedizioni-ars-utils-ui.mjs +4 -44
  18. package/fesm2022/arsedizioni-ars-utils-ui.mjs.map +1 -1
  19. package/fesm2022/arsedizioni-ars-utils-ui.oauth.mjs +2 -11
  20. package/fesm2022/arsedizioni-ars-utils-ui.oauth.mjs.map +1 -1
  21. package/package.json +1 -1
  22. package/types/arsedizioni-ars-utils-clipper.common.d.ts +5 -9
  23. package/types/arsedizioni-ars-utils-clipper.ui.d.ts +1 -1
  24. package/types/arsedizioni-ars-utils-core.d.ts +512 -491
  25. package/types/arsedizioni-ars-utils-evolution.common.d.ts +5 -10
  26. package/types/arsedizioni-ars-utils-help.d.ts +34 -40
  27. package/types/arsedizioni-ars-utils-support.common.d.ts +3 -9
  28. package/types/arsedizioni-ars-utils-tinymce.d.ts +7 -13
  29. package/types/arsedizioni-ars-utils-ui.application.d.ts +46 -56
  30. package/types/arsedizioni-ars-utils-ui.d.ts +4 -35
  31. package/types/arsedizioni-ars-utils-ui.oauth.d.ts +1 -7
@@ -1,12 +1,12 @@
1
- import * as i0 from '@angular/core';
2
- import { Injectable, signal, ChangeDetectionStrategy, Component, output, inject, Service, makeEnvironmentProviders, NgModule, input, computed, viewChildren, forwardRef, InjectionToken, TemplateRef, ViewContainerRef, effect, Directive, ElementRef, Renderer2, PLATFORM_ID, isDevMode } from '@angular/core';
3
- import { SafeHtmlPipe, SystemUtils, ArsCoreModule, PasswordValidatorDirective, EqualsValidatorDirective } from '@arsedizioni/ars-utils/core';
4
1
  import { MatPaginatorIntl } from '@angular/material/paginator';
2
+ import * as i0 from '@angular/core';
3
+ import { Injectable, signal, ChangeDetectionStrategy, Component, output, inject, Service, input, computed, viewChildren, forwardRef, InjectionToken, TemplateRef, ViewContainerRef, effect, Directive, ElementRef, Renderer2, PLATFORM_ID, isDevMode, NgModule } from '@angular/core';
5
4
  import { Overlay } from '@angular/cdk/overlay';
6
5
  import { ComponentPortal } from '@angular/cdk/portal';
7
6
  import { PlatformLocation, isPlatformBrowser } from '@angular/common';
8
7
  import { MatDialogRef, MAT_DIALOG_DATA, MatDialogTitle, MatDialogContent, MatDialogClose, MatDialogActions, MatDialog } from '@angular/material/dialog';
9
8
  import { MAT_SNACK_BAR_DATA, MatSnackBar } from '@angular/material/snack-bar';
9
+ import { SafeHtmlPipe, SystemUtils, PasswordValidatorDirective, EqualsValidatorDirective } from '@arsedizioni/ars-utils/core';
10
10
  import { timer, map, distinctUntilChanged, shareReplay } from 'rxjs';
11
11
  import { tap, first } from 'rxjs/operators';
12
12
  import * as i3 from '@angular/material/progress-spinner';
@@ -781,46 +781,6 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "22.0.0", ngImpor
781
781
  type: Service
782
782
  }], ctorParameters: () => [] });
783
783
 
784
- /**
785
- * Standalone providers for the ars-utils "ui" layer.
786
- *
787
- * Currently this entry point has NO environment-level providers to register:
788
- * - Services use `@Service()` (root-provided) and are loaded on demand when injected.
789
- * - The core pipes (format, safeHtml, replace, ...) are standalone and template-only,
790
- * so consuming components import them via `imports: []` — they never need to be
791
- * listed here. Listing them would force all of them into the eager bundle and
792
- * defeat tree-shaking.
793
- *
794
- * The function is kept for API symmetry / future configuration and so standalone apps
795
- * have a stable extension point.
796
- *
797
- * @example
798
- * bootstrapApplication(AppComponent, {
799
- * providers: [provideArsUI()]
800
- * });
801
- */
802
- function provideArsUI() {
803
- return makeEnvironmentProviders([]);
804
- }
805
- /**
806
- * @deprecated Prefer the standalone {@link provideArsUI} provider together with
807
- * direct imports of the standalone components/directives. This module is kept as a thin,
808
- * backward-compatible shim so existing NgModule-based applications keep working unchanged.
809
- */
810
- class ArsUIModule {
811
- static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "22.0.0", ngImport: i0, type: ArsUIModule, deps: [], target: i0.ɵɵFactoryTarget.NgModule }); }
812
- static { this.ɵmod = i0.ɵɵngDeclareNgModule({ minVersion: "14.0.0", version: "22.0.0", ngImport: i0, type: ArsUIModule, imports: [ArsCoreModule] }); }
813
- static { this.ɵinj = i0.ɵɵngDeclareInjector({ minVersion: "12.0.0", version: "22.0.0", ngImport: i0, type: ArsUIModule, imports: [ArsCoreModule] }); }
814
- }
815
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "22.0.0", ngImport: i0, type: ArsUIModule, decorators: [{
816
- type: NgModule,
817
- args: [{
818
- imports: [
819
- ArsCoreModule,
820
- ],
821
- }]
822
- }] });
823
-
824
784
  const DEFAULT_STRENGTH = { score: 0, label: '', color: '', suggestions: [], isValid: false };
825
785
  /**
826
786
  * Displays a password-strength indicator for the provided password string.
@@ -3096,5 +3056,5 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "22.0.0", ngImpor
3096
3056
  * Generated bundle index. Do not edit.
3097
3057
  */
3098
3058
 
3099
- export { ALIAS_FAMILIES, ALIAS_INDEX, ArsUIFlexModule, ArsUIModule, BS5_BREAKPOINTS, BusyDialogComponent, BusyTimer, CANONICAL_ALIASES, ConfirmDialogComponent, CredentialsDialogComponent, DeleteDialogComponent, DeleteDialogConfirmMode, DialogService, FxClassDirective, FxFlexAlignDirective, FxFlexDirective, FxFlexFillDirective, FxFlexOffsetDirective, FxFlexOrderDirective, FxGridAreaDirective, FxGridColumnDirective, FxGridDirective, FxLayoutAlignDirective, FxLayoutDirective, FxLayoutGapDirective, FxLayoutWrapDirective, FxShowHideDirective, FxStyleDirective, IfBpDirective, InfoDialogComponent, LAYOUT_BREAKPOINTS, MediaObserver, NON_CANONICAL_PRIORITY, OtpInputComponent, PaginatorIntl, PasswordStrengthComponent, RecoverPasswordDialogComponent, ResetPasswordDialogComponent, ResponsiveBaseDirective, ToastComponent, UIService, provideArsUI, resolve, resolveAll, resolveNonCanonical };
3059
+ export { ALIAS_FAMILIES, ALIAS_INDEX, ArsUIFlexModule, BS5_BREAKPOINTS, BusyDialogComponent, BusyTimer, CANONICAL_ALIASES, ConfirmDialogComponent, CredentialsDialogComponent, DeleteDialogComponent, DeleteDialogConfirmMode, DialogService, FxClassDirective, FxFlexAlignDirective, FxFlexDirective, FxFlexFillDirective, FxFlexOffsetDirective, FxFlexOrderDirective, FxGridAreaDirective, FxGridColumnDirective, FxGridDirective, FxLayoutAlignDirective, FxLayoutDirective, FxLayoutGapDirective, FxLayoutWrapDirective, FxShowHideDirective, FxStyleDirective, IfBpDirective, InfoDialogComponent, LAYOUT_BREAKPOINTS, MediaObserver, NON_CANONICAL_PRIORITY, OtpInputComponent, PaginatorIntl, PasswordStrengthComponent, RecoverPasswordDialogComponent, ResetPasswordDialogComponent, ResponsiveBaseDirective, ToastComponent, UIService, resolve, resolveAll, resolveNonCanonical };
3100
3060
  //# sourceMappingURL=arsedizioni-ars-utils-ui.mjs.map