@softpak/components 19.1.0-beta.4 → 19.1.0-beta.6
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/softpak-components-spx-helpers.mjs +9 -1
- package/fesm2022/softpak-components-spx-helpers.mjs.map +1 -1
- package/fesm2022/softpak-components-spx-translate.mjs +34 -0
- package/fesm2022/softpak-components-spx-translate.mjs.map +1 -0
- package/fesm2022/softpak-components-spx-update.mjs +340 -111
- package/fesm2022/softpak-components-spx-update.mjs.map +1 -1
- package/package.json +16 -16
- package/spx-helpers/public-api.d.ts +1 -0
- package/spx-helpers/unsubscribe-subscriptions.function.d.ts +1 -0
- package/{spx-app-update → spx-translate}/index.d.ts +1 -1
- package/spx-translate/public-api.d.ts +3 -0
- package/spx-translate/spx-translate._const.d.ts +16 -0
- package/spx-translate/spx-translate.en.d.ts +2 -0
- package/spx-translate/spx-translate.nl.d.ts +2 -0
- package/spx-update/public-api.d.ts +12 -2
- package/spx-update/spx-upd-page.component.d.ts +17 -0
- package/spx-update/spx-upd-pending.component.d.ts +28 -0
- package/{spx-app-update → spx-update}/store/upd-check/upd-check.actions.d.ts +5 -5
- package/tailwind.css +1 -1
- package/fesm2022/softpak-components-spx-app-update.mjs +0 -573
- package/fesm2022/softpak-components-spx-app-update.mjs.map +0 -1
- package/spx-app-update/public-api.d.ts +0 -11
- package/spx-app-update/spx-app-update.component.d.ts +0 -49
- package/spx-update/src/spx-update-info.component.d.ts +0 -18
- package/spx-update/src/spx-update-progress.component.d.ts +0 -14
- /package/{spx-app-update → spx-update}/store/upd-check/upd-check.effects.d.ts +0 -0
- /package/{spx-app-update → spx-update}/store/upd-check/upd-check.initial.d.ts +0 -0
- /package/{spx-app-update → spx-update}/store/upd-check/upd-check.reducer.d.ts +0 -0
- /package/{spx-app-update → spx-update}/store/upd-check/upd-check.state.d.ts +0 -0
- /package/{spx-app-update → spx-update}/store/upd-pending/upd-pending.actions.d.ts +0 -0
- /package/{spx-app-update → spx-update}/store/upd-pending/upd-pending.effects.d.ts +0 -0
- /package/{spx-app-update → spx-update}/store/upd-pending/upd-pending.initial.d.ts +0 -0
- /package/{spx-app-update → spx-update}/store/upd-pending/upd-pending.reducer.d.ts +0 -0
- /package/{spx-app-update → spx-update}/store/upd-pending/upd-pending.state.d.ts +0 -0
|
@@ -1,11 +0,0 @@
|
|
|
1
|
-
export * from './spx-app-update.component';
|
|
2
|
-
export * as updCheckActions from './store/upd-check/upd-check.actions';
|
|
3
|
-
export * as updCheckEffects from './store/upd-check/upd-check.effects';
|
|
4
|
-
export * as updCheckInitial from './store/upd-check/upd-check.initial';
|
|
5
|
-
export * as updCheckReducer from './store/upd-check/upd-check.reducer';
|
|
6
|
-
export * as updCheckState from './store/upd-check/upd-check.state';
|
|
7
|
-
export * as updPendingActions from './store/upd-pending/upd-pending.actions';
|
|
8
|
-
export * as updPendingEffects from './store/upd-pending/upd-pending.effects';
|
|
9
|
-
export * as updPendingInitial from './store/upd-pending/upd-pending.initial';
|
|
10
|
-
export * as updPendingReducer from './store/upd-pending/upd-pending.reducer';
|
|
11
|
-
export * as updPendingState from './store/upd-pending/upd-pending.state';
|
|
@@ -1,49 +0,0 @@
|
|
|
1
|
-
import { ApplicationRef, ChangeDetectorRef } from '@angular/core';
|
|
2
|
-
import { FormBuilder, FormControl, FormGroup } from '@angular/forms';
|
|
3
|
-
import { TranslateService } from '@ngx-translate/core';
|
|
4
|
-
import { Deploy } from 'cordova-plugin-ionic/dist/ngx';
|
|
5
|
-
import { NavController } from '@ionic/angular/standalone';
|
|
6
|
-
import * as i0 from "@angular/core";
|
|
7
|
-
export declare class SpxAppUpdateComponent {
|
|
8
|
-
private readonly deploy;
|
|
9
|
-
private readonly changeDetector;
|
|
10
|
-
private readonly applicationRef;
|
|
11
|
-
private readonly translateService;
|
|
12
|
-
private readonly formBuilder;
|
|
13
|
-
private readonly navController;
|
|
14
|
-
spxHomeUrl: string;
|
|
15
|
-
spxIsSignedIn: boolean;
|
|
16
|
-
textCheckingForUpdates: string;
|
|
17
|
-
textDownloadingUpdate: string;
|
|
18
|
-
textErrorWhileUpdatingApp: string;
|
|
19
|
-
textFinishedUpdating: string;
|
|
20
|
-
textNoUpdatesAvailable: string;
|
|
21
|
-
textUnexpectedError: string;
|
|
22
|
-
txtAppStoreVersion: string;
|
|
23
|
-
txtChannel: string;
|
|
24
|
-
txtNextVersion: string;
|
|
25
|
-
txtUpdate: string;
|
|
26
|
-
txtVersion: string;
|
|
27
|
-
spxAppId: string;
|
|
28
|
-
form: FormGroup;
|
|
29
|
-
delayedPercentage: number;
|
|
30
|
-
percentage: number;
|
|
31
|
-
syncTruckInterval: any | null;
|
|
32
|
-
updateStatus: string;
|
|
33
|
-
constructor(deploy: Deploy, changeDetector: ChangeDetectorRef, applicationRef: ApplicationRef, translateService: TranslateService, formBuilder: FormBuilder, navController: NavController);
|
|
34
|
-
get ctrlVersionNumber(): FormControl;
|
|
35
|
-
get ctrlNextVersionNumber(): FormControl;
|
|
36
|
-
get ctrlConfiguredChannel(): FormControl;
|
|
37
|
-
get ctrlAppStoreVersion(): FormControl;
|
|
38
|
-
init(): void;
|
|
39
|
-
destroy(): void;
|
|
40
|
-
performAutomaticUpdate(): Promise<void>;
|
|
41
|
-
private sync;
|
|
42
|
-
private updateInfo;
|
|
43
|
-
private changeStatus;
|
|
44
|
-
private closeUpdateScreen;
|
|
45
|
-
private startLoaderSync;
|
|
46
|
-
private stopLoaderSync;
|
|
47
|
-
static ɵfac: i0.ɵɵFactoryDeclaration<SpxAppUpdateComponent, never>;
|
|
48
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<SpxAppUpdateComponent, "spx-app-update", never, { "spxHomeUrl": { "alias": "spxHomeUrl"; "required": false; }; "spxIsSignedIn": { "alias": "spxIsSignedIn"; "required": false; }; "textCheckingForUpdates": { "alias": "textCheckingForUpdates"; "required": false; }; "textDownloadingUpdate": { "alias": "textDownloadingUpdate"; "required": false; }; "textErrorWhileUpdatingApp": { "alias": "textErrorWhileUpdatingApp"; "required": false; }; "textFinishedUpdating": { "alias": "textFinishedUpdating"; "required": false; }; "textNoUpdatesAvailable": { "alias": "textNoUpdatesAvailable"; "required": false; }; "textUnexpectedError": { "alias": "textUnexpectedError"; "required": false; }; "txtAppStoreVersion": { "alias": "txtAppStoreVersion"; "required": false; }; "txtChannel": { "alias": "txtChannel"; "required": false; }; "txtNextVersion": { "alias": "txtNextVersion"; "required": false; }; "txtUpdate": { "alias": "txtUpdate"; "required": false; }; "txtVersion": { "alias": "txtVersion"; "required": false; }; "spxAppId": { "alias": "spxAppId"; "required": false; }; }, {}, never, never, true, never>;
|
|
49
|
-
}
|
|
@@ -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
|
-
}
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|