@flarehr/apollo-super-selection 5.13.47888 → 5.14.48686
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/dist/lib/apollo-super-selection/apollo-super-selection.esm.js +1 -1
- package/dist/lib/apollo-super-selection/p-9d066cda.entry.js +14 -0
- package/dist/lib/apollo-super-selection/p-bdcfc026.system.js +1 -1
- package/dist/lib/apollo-super-selection/p-e8140b03.system.entry.js +69 -0
- package/dist/lib/cjs/apollo-super-selection.cjs.js +1 -1
- package/dist/lib/cjs/loader.cjs.js +1 -1
- package/dist/lib/cjs/sss-button_43.cjs.entry.js +55 -39
- package/dist/lib/collection/components/super-selection-app/app-state-pages/success.js +1 -1
- package/dist/lib/collection/components/super-selection-app/consent/consent.js +1 -1
- package/dist/lib/collection/components/super-selection-app/existing-choice/existing-choice.js +2 -2
- package/dist/lib/collection/components/super-selection-app/funds/custom-fund/default-fund/default-fund.js +2 -2
- package/dist/lib/collection/components/super-selection-app/funds/custom-fund/member-name-input.js +18 -1
- package/dist/lib/collection/components/super-selection-app/funds/custom-fund/my-own-fund/my-own-fund-inputs.js +4 -4
- package/dist/lib/collection/components/super-selection-app/funds/custom-fund/my-own-fund/my-own-fund.js +2 -2
- package/dist/lib/collection/components/super-selection-app/funds/custom-fund/self-managed-fund/self-managed-fund-inputs.js +32 -17
- package/dist/lib/collection/components/super-selection-app/funds/custom-fund/self-managed-fund/self-managed-fund.js +2 -2
- package/dist/lib/collection/components/super-selection-app/misc/button.js +18 -1
- package/dist/lib/collection/components/super-selection-app/misc/dropdown-async.js +18 -1
- package/dist/lib/collection/components/super-selection-app/prefill-fund/prefill-invalid-my-own-fund.js +1 -1
- package/dist/lib/collection/components/super-selection-app/prefill-fund/prefill-invalid-smsf.js +1 -1
- package/dist/lib/collection/components/super-selection-app/prefill-fund/prefill-my-own-fund.js +3 -3
- package/dist/lib/collection/components/super-selection-app/prefill-fund/prefill-smsf.js +3 -3
- package/dist/lib/collection/components/super-selection-app/standard-choice/standard-choice-form.js +3 -3
- package/dist/lib/collection/components/super-selection-app/super-choice-page/super-choice-item/super-choice-item-bottom.js +1 -1
- package/dist/lib/collection/components/super-selection-app/super-choice-page/super-choice-page.js +1 -1
- package/dist/lib/esm/apollo-super-selection.js +1 -1
- package/dist/lib/esm/loader.js +1 -1
- package/dist/lib/esm/sss-button_43.entry.js +55 -39
- package/dist/lib/esm-es5/apollo-super-selection.js +1 -1
- package/dist/lib/esm-es5/loader.js +1 -1
- package/dist/lib/esm-es5/sss-button_43.entry.js +4 -4
- package/dist/lib/types/components/super-selection-app/funds/custom-fund/member-name-input.d.ts +1 -0
- package/dist/lib/types/components/super-selection-app/funds/custom-fund/self-managed-fund/self-managed-fund-inputs.d.ts +1 -2
- package/dist/lib/types/components/super-selection-app/misc/button.d.ts +1 -0
- package/dist/lib/types/components/super-selection-app/misc/dropdown-async.d.ts +1 -0
- package/dist/lib/types/components.d.ts +6 -0
- package/package.json +1 -1
- package/dist/lib/apollo-super-selection/p-680a17d2.entry.js +0 -14
- package/dist/lib/apollo-super-selection/p-ff2183ab.system.entry.js +0 -69
|
@@ -7,9 +7,8 @@ export declare class SelfManagedFundInputs {
|
|
|
7
7
|
fundForm: Partial<SelfManagedFundForm>;
|
|
8
8
|
showValidationErrors: boolean;
|
|
9
9
|
formChanged: EventEmitter<Partial<FormChangedEvent>>;
|
|
10
|
-
private
|
|
10
|
+
private abnValidationStatus;
|
|
11
11
|
private isAbnTouched;
|
|
12
|
-
private isAbnUsedForRegulated;
|
|
13
12
|
private currentBank;
|
|
14
13
|
private addressErrorMessage;
|
|
15
14
|
private readonly stateOptions;
|
|
@@ -12,6 +12,7 @@ export declare type Success<T> = {
|
|
|
12
12
|
};
|
|
13
13
|
export declare type SearchResult<T> = Success<T> | TooManyResults;
|
|
14
14
|
export declare class SelectInputAsync {
|
|
15
|
+
testId: string;
|
|
15
16
|
placeholder?: string;
|
|
16
17
|
searchFunction?: (query: string) => Promise<SearchResult<unknown>>;
|
|
17
18
|
value?: SelectInputOption<unknown>;
|
|
@@ -23,6 +23,7 @@ export namespace Components {
|
|
|
23
23
|
"fillWidthOnMobile": boolean;
|
|
24
24
|
"promiseFn"?: () => Promise<unknown>;
|
|
25
25
|
"size": ButtonSize;
|
|
26
|
+
"testid": string;
|
|
26
27
|
"variant": ButtonVariant;
|
|
27
28
|
}
|
|
28
29
|
interface SssConsentPage {
|
|
@@ -45,6 +46,7 @@ export namespace Components {
|
|
|
45
46
|
"requiredValidationMessage"?: string;
|
|
46
47
|
"searchFunction"?: (query: string) => Promise<SearchResult<unknown>>;
|
|
47
48
|
"showValidationErrors": boolean;
|
|
49
|
+
"testId": string;
|
|
48
50
|
"value"?: SelectInputOption<unknown>;
|
|
49
51
|
}
|
|
50
52
|
interface SssExistingChoicePage {
|
|
@@ -81,6 +83,7 @@ export namespace Components {
|
|
|
81
83
|
"name": string;
|
|
82
84
|
"readableName": string;
|
|
83
85
|
"showValidationErrors": boolean;
|
|
86
|
+
"testId": string;
|
|
84
87
|
"value": string;
|
|
85
88
|
}
|
|
86
89
|
interface SssPrefill {
|
|
@@ -454,6 +457,7 @@ declare namespace LocalJSX {
|
|
|
454
457
|
"fillWidthOnMobile"?: boolean;
|
|
455
458
|
"promiseFn"?: () => Promise<unknown>;
|
|
456
459
|
"size"?: ButtonSize;
|
|
460
|
+
"testid"?: string;
|
|
457
461
|
"variant"?: ButtonVariant;
|
|
458
462
|
}
|
|
459
463
|
interface SssConsentPage {
|
|
@@ -477,6 +481,7 @@ declare namespace LocalJSX {
|
|
|
477
481
|
"requiredValidationMessage"?: string;
|
|
478
482
|
"searchFunction"?: (query: string) => Promise<SearchResult<unknown>>;
|
|
479
483
|
"showValidationErrors"?: boolean;
|
|
484
|
+
"testId"?: string;
|
|
480
485
|
"value"?: SelectInputOption<unknown>;
|
|
481
486
|
}
|
|
482
487
|
interface SssExistingChoicePage {
|
|
@@ -515,6 +520,7 @@ declare namespace LocalJSX {
|
|
|
515
520
|
"onMyInputChange"?: (event: CustomEvent<any>) => void;
|
|
516
521
|
"readableName"?: string;
|
|
517
522
|
"showValidationErrors"?: boolean;
|
|
523
|
+
"testId"?: string;
|
|
518
524
|
"value"?: string;
|
|
519
525
|
}
|
|
520
526
|
interface SssPrefill {
|