@softpak/components 19.1.0-beta.3 → 19.1.0-beta.5

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 (34) hide show
  1. package/fesm2022/softpak-components-spx-helpers.mjs +9 -1
  2. package/fesm2022/softpak-components-spx-helpers.mjs.map +1 -1
  3. package/fesm2022/softpak-components-spx-translate.mjs +34 -0
  4. package/fesm2022/softpak-components-spx-translate.mjs.map +1 -0
  5. package/fesm2022/softpak-components-spx-update.mjs +336 -111
  6. package/fesm2022/softpak-components-spx-update.mjs.map +1 -1
  7. package/package.json +21 -21
  8. package/spx-helpers/public-api.d.ts +1 -0
  9. package/spx-helpers/unsubscribe-subscriptions.function.d.ts +1 -0
  10. package/{spx-app-update → spx-translate}/index.d.ts +1 -1
  11. package/spx-translate/public-api.d.ts +3 -0
  12. package/spx-translate/spx-translate._const.d.ts +16 -0
  13. package/spx-translate/spx-translate.en.d.ts +2 -0
  14. package/spx-translate/spx-translate.nl.d.ts +2 -0
  15. package/spx-update/public-api.d.ts +12 -2
  16. package/spx-update/spx-upd-page.component.d.ts +16 -0
  17. package/spx-update/spx-upd-pending.component.d.ts +28 -0
  18. package/spx-update/store/upd-pending/upd-pending.effects.d.ts +10 -0
  19. package/spx-update/store/upd-pending/upd-pending.initial.d.ts +2 -0
  20. package/spx-update/store/upd-pending/upd-pending.reducer.d.ts +9 -0
  21. package/spx-update/store/upd-pending/upd-pending.state.d.ts +4 -0
  22. package/tailwind.css +1 -1
  23. package/fesm2022/softpak-components-spx-app-update.mjs +0 -504
  24. package/fesm2022/softpak-components-spx-app-update.mjs.map +0 -1
  25. package/spx-app-update/public-api.d.ts +0 -6
  26. package/spx-app-update/spx-app-update.component.d.ts +0 -49
  27. package/spx-update/src/spx-update-info.component.d.ts +0 -18
  28. package/spx-update/src/spx-update-progress.component.d.ts +0 -14
  29. /package/{spx-app-update → spx-update}/store/upd-check/upd-check.actions.d.ts +0 -0
  30. /package/{spx-app-update → spx-update}/store/upd-check/upd-check.effects.d.ts +0 -0
  31. /package/{spx-app-update → spx-update}/store/upd-check/upd-check.initial.d.ts +0 -0
  32. /package/{spx-app-update → spx-update}/store/upd-check/upd-check.reducer.d.ts +0 -0
  33. /package/{spx-app-update → spx-update}/store/upd-check/upd-check.state.d.ts +0 -0
  34. /package/{spx-app-update → spx-update}/store/upd-pending/upd-pending.actions.d.ts +0 -0
@@ -1,18 +0,0 @@
1
- import { FormBuilder, FormControl, FormGroup } from '@angular/forms';
2
- import * as i0 from "@angular/core";
3
- export declare class SpxUpdateInfoComponent {
4
- private readonly formBuilder;
5
- form: FormGroup;
6
- txtAppStoreVersion: string;
7
- txtChannel: string;
8
- txtNextVersion: string;
9
- txtVersion: string;
10
- get ctrlVersionNumber(): FormControl;
11
- get ctrlNextVersionNumber(): FormControl;
12
- get ctrlConfiguredChannel(): FormControl;
13
- get ctrlAppStoreVersion(): FormControl;
14
- constructor(formBuilder: FormBuilder);
15
- update(appStoreVersion: string, channel: string, nextVersion: string, version: string): void;
16
- static ɵfac: i0.ɵɵFactoryDeclaration<SpxUpdateInfoComponent, never>;
17
- static ɵcmp: i0.ɵɵComponentDeclaration<SpxUpdateInfoComponent, "spx-update-info", never, { "txtAppStoreVersion": { "alias": "txtAppStoreVersion"; "required": false; }; "txtChannel": { "alias": "txtChannel"; "required": false; }; "txtNextVersion": { "alias": "txtNextVersion"; "required": false; }; "txtVersion": { "alias": "txtVersion"; "required": false; }; }, {}, never, never, true, never>;
18
- }
@@ -1,14 +0,0 @@
1
- import { OnDestroy, OnInit } from '@angular/core';
2
- import * as i0 from "@angular/core";
3
- export declare class SpxUpdateProgressComponent implements OnInit, OnDestroy {
4
- title: string;
5
- percentage: number;
6
- delayedPercentage: number;
7
- syncTruckInterval?: any;
8
- ngOnInit(): void;
9
- ngOnDestroy(): void;
10
- private startLoaderSync;
11
- private stopLoaderSync;
12
- static ɵfac: i0.ɵɵFactoryDeclaration<SpxUpdateProgressComponent, never>;
13
- static ɵcmp: i0.ɵɵComponentDeclaration<SpxUpdateProgressComponent, "spx-update-progress", never, { "title": { "alias": "title"; "required": false; }; "percentage": { "alias": "percentage"; "required": false; }; }, {}, never, never, true, never>;
14
- }