@softpak/components 19.26.0-beta.3 → 19.26.1

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/package.json CHANGED
@@ -1,12 +1,13 @@
1
1
  {
2
2
  "name": "@softpak/components",
3
- "version": "19.26.0-beta.3",
3
+ "version": "19.26.1",
4
4
  "private": false,
5
5
  "peerDependencies": {
6
6
  "@angular/common": "19.x.x",
7
7
  "@angular/core": "19.x.x",
8
8
  "@capacitor/app": "6.x.x || 7.x.x",
9
9
  "@capacitor/device": "6.x.x || 7.x.x",
10
+ "@capacitor/live-updates": "0.3.x || 0.4.x",
10
11
  "@fortawesome/free-solid-svg-icons": "6.x.x",
11
12
  "@ionic/angular": "8.x.x",
12
13
  "@ngrx/effects": "19.x.x",
@@ -14,10 +15,6 @@
14
15
  "@ngx-translate/core": "16.x.x",
15
16
  "@sentry/angular": "9.x.x"
16
17
  },
17
- "optionalDependencies": {
18
- "@capacitor/live-updates": "0.3.x || 0.4.x",
19
- "@capawesome/capacitor-live-update": "7.2.x"
20
- },
21
18
  "dependencies": {
22
19
  "tslib": "^2.3.0"
23
20
  },
@@ -40,30 +37,30 @@
40
37
  "types": "./spx-alert/index.d.ts",
41
38
  "default": "./fesm2022/softpak-components-spx-alert.mjs"
42
39
  },
43
- "./spx-button": {
44
- "types": "./spx-button/index.d.ts",
45
- "default": "./fesm2022/softpak-components-spx-button.mjs"
46
- },
47
- "./spx-app-configuration": {
48
- "types": "./spx-app-configuration/index.d.ts",
49
- "default": "./fesm2022/softpak-components-spx-app-configuration.mjs"
40
+ "./spx-app-expiry": {
41
+ "types": "./spx-app-expiry/index.d.ts",
42
+ "default": "./fesm2022/softpak-components-spx-app-expiry.mjs"
50
43
  },
51
44
  "./spx-capitalize": {
52
45
  "types": "./spx-capitalize/index.d.ts",
53
46
  "default": "./fesm2022/softpak-components-spx-capitalize.mjs"
54
47
  },
55
- "./spx-app-expiry": {
56
- "types": "./spx-app-expiry/index.d.ts",
57
- "default": "./fesm2022/softpak-components-spx-app-expiry.mjs"
48
+ "./spx-app-configuration": {
49
+ "types": "./spx-app-configuration/index.d.ts",
50
+ "default": "./fesm2022/softpak-components-spx-app-configuration.mjs"
58
51
  },
59
- "./spx-card": {
60
- "types": "./spx-card/index.d.ts",
61
- "default": "./fesm2022/softpak-components-spx-card.mjs"
52
+ "./spx-button": {
53
+ "types": "./spx-button/index.d.ts",
54
+ "default": "./fesm2022/softpak-components-spx-button.mjs"
62
55
  },
63
56
  "./spx-change-details": {
64
57
  "types": "./spx-change-details/index.d.ts",
65
58
  "default": "./fesm2022/softpak-components-spx-change-details.mjs"
66
59
  },
60
+ "./spx-card": {
61
+ "types": "./spx-card/index.d.ts",
62
+ "default": "./fesm2022/softpak-components-spx-card.mjs"
63
+ },
67
64
  "./spx-channel-selection": {
68
65
  "types": "./spx-channel-selection/index.d.ts",
69
66
  "default": "./fesm2022/softpak-components-spx-channel-selection.mjs"
@@ -7,10 +7,11 @@ export declare class SpxInputFloatComponent implements OnInit {
7
7
  first: number | null;
8
8
  second: number | null;
9
9
  }>;
10
+ mappedReadonly: import("@angular/core").Signal<boolean>;
10
11
  readonly spxName: import("@angular/core").InputSignal<string | undefined>;
11
12
  readonly spxAutofocus: import("@angular/core").InputSignal<boolean>;
12
13
  readonly spxElementId: import("@angular/core").InputSignal<number | undefined>;
13
- readonly spxReadonly: import("@angular/core").InputSignal<boolean>;
14
+ readonly spxReadonly: import("@angular/core").InputSignal<true | undefined>;
14
15
  readonly spxValidators: import("@angular/core").InputSignal<any[] | undefined>;
15
16
  readonly spxStep: import("@angular/core").InputSignal<number | undefined>;
16
17
  readonly value: import("@angular/core").ModelSignal<SpxValuePair<any>>;
@@ -3,10 +3,11 @@ import { SpxValuePair } from '../spx-value-interface';
3
3
  import { SelectedInputService } from '../input.service';
4
4
  import * as i0 from "@angular/core";
5
5
  export declare class SpxInputNumberComponent {
6
+ mappedReadonly: import("@angular/core").Signal<boolean>;
6
7
  readonly spxName: import("@angular/core").InputSignal<string | undefined>;
7
8
  readonly spxAutofocus: import("@angular/core").InputSignal<boolean>;
8
9
  readonly spxInputMode: import("@angular/core").InputSignal<string | undefined>;
9
- readonly spxReadonly: import("@angular/core").InputSignal<boolean>;
10
+ readonly spxReadonly: import("@angular/core").InputSignal<true | undefined>;
10
11
  readonly spxValidators: import("@angular/core").InputSignal<any[] | undefined>;
11
12
  readonly spxFocused: import("@angular/core").InputSignal<boolean>;
12
13
  readonly spxStep: import("@angular/core").InputSignal<number | undefined>;
@@ -8,7 +8,7 @@ export declare class SpxInputRadioComponent {
8
8
  readonly spxName: import("@angular/core").InputSignal<string | undefined>;
9
9
  readonly spxValidators: import("@angular/core").InputSignal<any[] | undefined>;
10
10
  readonly spxShowLabel: import("@angular/core").InputSignal<boolean>;
11
- readonly spxReadonly: import("@angular/core").InputSignal<boolean>;
11
+ readonly spxReadonly: import("@angular/core").InputSignal<true | undefined>;
12
12
  readonly spxSuggestions: import("@angular/core").InputSignal<SpxValuePair<any>[]>;
13
13
  readonly value: import("@angular/core").ModelSignal<SpxValuePair<any> | undefined>;
14
14
  readonly selectedInputService: SelectedInputService;
@@ -5,13 +5,14 @@ import { SelectedInputService } from '../input.service';
5
5
  import * as i0 from "@angular/core";
6
6
  export declare class SpxInputTextComponent {
7
7
  private changeDetectorRef;
8
+ mappedReadonly: import("@angular/core").Signal<boolean>;
8
9
  readonly spxName: import("@angular/core").InputSignal<string | undefined>;
9
10
  readonly spxAutofocus: import("@angular/core").InputSignal<boolean>;
10
11
  readonly spxAutocomplete: import("@angular/core").InputSignal<string | undefined>;
11
12
  readonly spxInputMode: import("@angular/core").InputSignal<string | undefined>;
12
13
  readonly spxPattern: import("@angular/core").InputSignal<string | undefined>;
13
14
  readonly spxSuggestions: import("@angular/core").InputSignal<SpxValuePair<string | number | boolean>[]>;
14
- readonly spxReadonly: import("@angular/core").InputSignal<boolean>;
15
+ readonly spxReadonly: import("@angular/core").InputSignal<true | undefined>;
15
16
  readonly spxValidators: import("@angular/core").InputSignal<any[] | undefined>;
16
17
  readonly spxCapitalize: import("@angular/core").InputSignal<boolean>;
17
18
  readonly spxType: import("@angular/core").InputSignal<SpxInputTypeEnum>;
@@ -10,7 +10,7 @@ export declare class SpxInputTimeComponent {
10
10
  readonly spxInputMode: import("@angular/core").InputSignal<string | undefined>;
11
11
  readonly spxPattern: import("@angular/core").InputSignal<string | undefined>;
12
12
  readonly spxSuggestions: import("@angular/core").InputSignal<SpxValuePair<string | number | boolean>[]>;
13
- readonly spxReadonly: import("@angular/core").InputSignal<boolean>;
13
+ readonly spxReadonly: import("@angular/core").InputSignal<true | undefined>;
14
14
  readonly spxValidators: import("@angular/core").InputSignal<any[] | undefined>;
15
15
  readonly spxCapitalize: import("@angular/core").InputSignal<boolean>;
16
16
  readonly value: import("@angular/core").ModelSignal<SpxValuePair<any>>;
@@ -10,6 +10,7 @@ import { SelectedInputService } from './input.service';
10
10
  import { SpxInputAlertI } from '@softpak/components/spx-helpers';
11
11
  import * as i0 from "@angular/core";
12
12
  export declare class SpxInputComponent {
13
+ protected mappedReadonly: import("@angular/core").Signal<true | undefined>;
13
14
  readonly spxLabel: import("@angular/core").InputSignal<string>;
14
15
  readonly spxMax: import("@angular/core").InputSignal<string | undefined>;
15
16
  readonly spxMin: import("@angular/core").InputSignal<string | undefined>;
@@ -1,17 +1,11 @@
1
1
  export * from './spx-update-page.component';
2
2
  export * from './spx-update-pending.component';
3
- export * from './spx-update-page-v2.component';
4
3
  export * from './spx-update-url';
5
4
  export * as spxUpdateCheckActions from './store/spx-update-check/spx-update-check.actions';
6
5
  export * as spxUpdateCheckEffects from './store/spx-update-check/spx-update-check.effects';
7
6
  export * as spxUpdateCheckInitial from './store/spx-update-check/spx-update-check.initial';
8
7
  export * as spxUpdateCheckReducer from './store/spx-update-check/spx-update-check.reducer';
9
- export * as spxUpdateCheckState from './store/spx-update-check-v2/spx-update-check.state';
10
- export * as spxUpdateCheckV2Actions from './store/spx-update-check-v2/spx-update-check.actions';
11
- export * as spxUpdateCheckV2Effects from './store/spx-update-check-v2/spx-update-check.effects';
12
- export * as spxUpdateCheckV2Initial from './store/spx-update-check-v2/spx-update-check.initial';
13
- export * as spxUpdateCheckV2Reducer from './store/spx-update-check-v2/spx-update-check.reducer';
14
- export * as spxUpdateCheckV2State from './store/spx-update-check/spx-update-check.state';
8
+ export * as spxUpdateCheckState from './store/spx-update-check/spx-update-check.state';
15
9
  export * as spxUpdatePendingActions from './store/spx-update-pending/spx-update-pending.actions';
16
10
  export * as spxUpdatePendingEffects from './store/spx-update-pending/spx-update-pending.effects';
17
11
  export * as spxUpdatePendingInitial from './store/spx-update-pending/spx-update-pending.initial';
@@ -1,17 +0,0 @@
1
- import { NavController } from '@ionic/angular/standalone';
2
- import { Store } from '@ngrx/store';
3
- import { ActivatedRoute } from '@angular/router';
4
- import * as i0 from "@angular/core";
5
- export declare class SpxUpdatePageV2Component {
6
- private readonly appStore;
7
- private readonly activatedRoute;
8
- private readonly navController;
9
- spxTextCheckingForUpdates: string;
10
- spxTextOneMomentPlease: string;
11
- private subscriptions;
12
- ngOnInit(): void;
13
- ngOnDestroy(): void;
14
- constructor(appStore: Store, activatedRoute: ActivatedRoute, navController: NavController);
15
- static ɵfac: i0.ɵɵFactoryDeclaration<SpxUpdatePageV2Component, never>;
16
- static ɵcmp: i0.ɵɵComponentDeclaration<SpxUpdatePageV2Component, "spx-update-page", never, {}, {}, never, never, true, never>;
17
- }
@@ -1,28 +0,0 @@
1
- export declare const anUpdateIsReady: import("@ngrx/store").ActionCreator<"[SPX / Update Check V2] An update is ready", (props: Record<string, unknown>) => Record<string, unknown> & import("@ngrx/store").Action<"[SPX / Update Check V2] An update is ready">>;
2
- export declare const clearError: import("@ngrx/store").ActionCreator<"[SPX / Update Check V2] Clear error", (props: Record<string, unknown>) => Record<string, unknown> & import("@ngrx/store").Action<"[SPX / Update Check V2] Clear error">>;
3
- export declare const checkFailed: import("@ngrx/store").ActionCreator<"[SPX / Update Check V2] Error happened", (props: {
4
- startUpdateAgainAfterTimeout?: boolean;
5
- }) => {
6
- startUpdateAgainAfterTimeout?: boolean;
7
- } & import("@ngrx/store").Action<"[SPX / Update Check V2] Error happened">>;
8
- export declare const initialize: import("@ngrx/store").ActionCreator<"[SPX / Update Check V2] Initialize", (props: Record<string, unknown>) => Record<string, unknown> & import("@ngrx/store").Action<"[SPX / Update Check V2] Initialize">>;
9
- export declare const noUpdateWasFound: import("@ngrx/store").ActionCreator<"[SPX / Update Check V2] No update was found", (props: {
10
- startUpdateAgainAfterTimeout?: boolean;
11
- }) => {
12
- startUpdateAgainAfterTimeout?: boolean;
13
- } & import("@ngrx/store").Action<"[SPX / Update Check V2] No update was found">>;
14
- export declare const notAvailableOnWeb: import("@ngrx/store").ActionCreator<"[SPX / Update Check V2] Not available on web", (props: Record<string, unknown>) => Record<string, unknown> & import("@ngrx/store").Action<"[SPX / Update Check V2] Not available on web">>;
15
- export declare const runCheck: import("@ngrx/store").ActionCreator<"[SPX / Update Check V2] Run", (props: {
16
- forceWaitForUpdate?: boolean;
17
- }) => {
18
- forceWaitForUpdate?: boolean;
19
- } & import("@ngrx/store").Action<"[SPX / Update Check V2] Run">>;
20
- declare const all: ({
21
- forceWaitForUpdate?: boolean;
22
- } & import("@ngrx/store").Action<"[SPX / Update Check V2] Run">) | (Record<string, unknown> & import("@ngrx/store").Action<"[SPX / Update Check V2] An update is ready">) | (Record<string, unknown> & import("@ngrx/store").Action<"[SPX / Update Check V2] Clear error">) | ({
23
- startUpdateAgainAfterTimeout?: boolean;
24
- } & import("@ngrx/store").Action<"[SPX / Update Check V2] Error happened">) | ({
25
- startUpdateAgainAfterTimeout?: boolean;
26
- } & import("@ngrx/store").Action<"[SPX / Update Check V2] No update was found">) | (Record<string, unknown> & import("@ngrx/store").Action<"[SPX / Update Check V2] Not available on web">) | (Record<string, unknown> & import("@ngrx/store").Action<"[SPX / Update Check V2] Initialize">);
27
- export type Actions = typeof all;
28
- export {};
@@ -1,14 +0,0 @@
1
- import { Actions } from '@ngrx/effects';
2
- import { Observable } from 'rxjs';
3
- import * as i0 from "@angular/core";
4
- export declare class Effects {
5
- private readonly actions$;
6
- afterInitialize$: Observable<any>;
7
- onRun$: Observable<any>;
8
- constructor(actions$: Actions);
9
- whenAndUpdateIsReady$: Observable<any>;
10
- whenCheckHasFailed$: Observable<any>;
11
- whenNoUpdateWasFound$: Observable<any>;
12
- static ɵfac: i0.ɵɵFactoryDeclaration<Effects, never>;
13
- static ɵprov: i0.ɵɵInjectableDeclaration<Effects>;
14
- }
@@ -1,2 +0,0 @@
1
- import { StateI } from "./spx-update-check.state";
2
- export declare const initialState: StateI;
@@ -1,10 +0,0 @@
1
- import { StateI } from './spx-update-check.state';
2
- declare const _default: {
3
- name: "spxUpdateCheck";
4
- reducer: import("@ngrx/store").ActionReducer<StateI, import("@ngrx/store").Action<string>>;
5
- selectSpxUpdateCheckState: import("@ngrx/store").MemoizedSelector<Record<string, any>, StateI, (featureState: StateI) => StateI>;
6
- selectForceWaitForUpdate: import("@ngrx/store").MemoizedSelector<Record<string, any>, boolean, (featureState: StateI) => boolean>;
7
- selectLastCheck: import("@ngrx/store").MemoizedSelector<Record<string, any>, string | null, (featureState: StateI) => string | null>;
8
- selectShowError: import("@ngrx/store").MemoizedSelector<Record<string, any>, boolean, (featureState: StateI) => boolean>;
9
- };
10
- export default _default;
@@ -1,5 +0,0 @@
1
- export interface StateI {
2
- forceWaitForUpdate: boolean;
3
- lastCheck: string | null;
4
- showError: boolean;
5
- }