@osovitny/anatoly 3.16.15 → 3.16.16

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 (26) hide show
  1. package/esm2022/lib/core/interceptors/httpInterceptor.mjs +4 -4
  2. package/esm2022/lib/core/localization/localization.service.mjs +15 -8
  3. package/esm2022/lib/core/localization/utils.mjs +2 -2
  4. package/esm2022/lib/core/logging/globalErrorHandler.mjs +3 -3
  5. package/esm2022/lib/core/logging/logging.service.mjs +2 -2
  6. package/esm2022/lib/core/services/dm.service.mjs +3 -3
  7. package/esm2022/lib/core/services/google-analytics.service.mjs +2 -2
  8. package/esm2022/lib/ui/components/base/base.component.mjs +8 -4
  9. package/esm2022/lib/ui/components/billing/buyaccess-button.component.mjs +2 -2
  10. package/esm2022/lib/ui/components/billing/subscribe-plan-button.component.mjs +3 -3
  11. package/esm2022/lib/ui/components/html-editor/base-html-editor.component.mjs +3 -3
  12. package/esm2022/lib/ui/components/spinners/loading/loading.component.mjs +7 -12
  13. package/esm2022/lib/ui/components/spinners/pagespinner/pagespinner.component.mjs +2 -2
  14. package/esm2022/lib/ui/forms/components/urlslug/urlslug.component.mjs +1 -1
  15. package/esm2022/lib/ui/pipes/filesize.pipe.mjs +2 -2
  16. package/esm2022/lib/ui/pipes/replace-text.pipe.mjs +2 -2
  17. package/esm2022/lib/ui/pipes/safeHtml.pipe.mjs +2 -2
  18. package/esm2022/lib/ui/validation/form-validation-summary.component.mjs +3 -3
  19. package/esm2022/lib/ui/validation/item-validation-summary.component.mjs +4 -4
  20. package/esm2022/lib/ui/validation/validation-summary.component.mjs +3 -3
  21. package/fesm2022/osovitny-anatoly.mjs +128 -123
  22. package/fesm2022/osovitny-anatoly.mjs.map +1 -1
  23. package/lib/core/localization/localization.service.d.ts +8 -5
  24. package/lib/ui/components/base/base.component.d.ts +2 -1
  25. package/lib/ui/components/spinners/loading/loading.component.d.ts +3 -4
  26. package/package.json +1 -1
@@ -1,12 +1,15 @@
1
+ import { EventEmitter, OnDestroy } from '@angular/core';
1
2
  import { TranslateService } from '@ngx-translate/core';
2
3
  import * as i0 from "@angular/core";
3
- export declare class LocalizationService {
4
+ export declare class LocalizationService implements OnDestroy {
4
5
  private translate;
5
- dateFnsLocale: any;
6
- supportedLanguages: any;
7
- defaultLanguage: string;
8
- private onLangChange;
6
+ private subs;
7
+ private dateFnsLocale;
8
+ private supportedLanguages;
9
+ private defaultLanguage;
10
+ langchange: EventEmitter<any>;
9
11
  constructor(translate: TranslateService);
12
+ ngOnDestroy(): void;
10
13
  private format;
11
14
  configureSettings(translate: TranslateService): string;
12
15
  setSupportedLanguages(languages: string[]): void;
@@ -6,6 +6,7 @@ export declare abstract class BaseComponent implements OnDestroy {
6
6
  protected dataLoading: boolean;
7
7
  protected dataLoaded: boolean;
8
8
  protected dataFound: boolean;
9
+ classes: string;
9
10
  ngOnDestroy(): void;
10
11
  getEntityId(): string;
11
12
  getValueByNameInQS(name: any): string;
@@ -13,5 +14,5 @@ export declare abstract class BaseComponent implements OnDestroy {
13
14
  dataLoadedAndNothingFound(): void;
14
15
  dataLoadedAndFound(found?: boolean): void;
15
16
  static ɵfac: i0.ɵɵFactoryDeclaration<BaseComponent, never>;
16
- static ɵcmp: i0.ɵɵComponentDeclaration<BaseComponent, "ng-component", never, {}, {}, never, never, false, never>;
17
+ static ɵcmp: i0.ɵɵComponentDeclaration<BaseComponent, "ng-component", never, { "classes": { "alias": "classes"; "required": false; }; }, {}, never, never, false, never>;
17
18
  }
@@ -1,13 +1,12 @@
1
- import { OnDestroy, OnInit } from '@angular/core';
1
+ import { OnInit } from '@angular/core';
2
+ import { BaseComponent } from '../../base/base.component';
2
3
  import { LoadingService } from '../../../../core/services/loading.service';
3
4
  import * as i0 from "@angular/core";
4
- export declare class LoadingComponent implements OnInit, OnDestroy {
5
+ export declare class LoadingComponent extends BaseComponent implements OnInit {
5
6
  private loadingService;
6
- private subs;
7
7
  show: boolean;
8
8
  constructor(loadingService: LoadingService);
9
9
  ngOnInit(): void;
10
- ngOnDestroy(): void;
11
10
  static ɵfac: i0.ɵɵFactoryDeclaration<LoadingComponent, never>;
12
11
  static ɵcmp: i0.ɵɵComponentDeclaration<LoadingComponent, "anatoly-loading", never, {}, {}, never, never, false, never>;
13
12
  }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@osovitny/anatoly",
3
- "version": "3.16.15",
3
+ "version": "3.16.16",
4
4
  "peerDependencies": {
5
5
  "@angular/common": "16.2.7",
6
6
  "@angular/core": "16.2.7"