@flarehr/apollo-super-selection 4.34.34409 → 4.35.34649
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.css +1 -1
- package/dist/lib/apollo-super-selection/apollo-super-selection.esm.js +1 -1
- package/dist/lib/apollo-super-selection/p-15f6e7da.system.entry.js +69 -0
- package/dist/lib/apollo-super-selection/p-af2735f2.entry.js +14 -0
- package/dist/lib/apollo-super-selection/p-bdcfc026.system.js +1 -1
- 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_38.cjs.entry.js +52 -46
- package/dist/lib/collection/apollo-super-selection.css +1 -1
- package/dist/lib/collection/components/super-selection-app/header-section/header-section.js +17 -13
- package/dist/lib/collection/components/super-selection-app/prefill-fund/prefill-display-field.js +1 -1
- package/dist/lib/collection/components/super-selection-app/prefill-fund/prefill-error-box.js +15 -25
- package/dist/lib/collection/components/super-selection-app/prefill-fund/prefill-invalid-smsf.js +2 -1
- package/dist/lib/collection/components/super-selection-app/prefill-fund/prefill-my-own-fund.js +1 -1
- package/dist/lib/collection/components/super-selection-app/prefill-fund/prefill-smsf.js +13 -8
- package/dist/lib/collection/components/super-selection-app/prefill-fund/prefill-warning-box.js +5 -14
- package/dist/lib/collection/components/super-selection-app/prefill-fund/prefill.js +8 -0
- package/dist/lib/collection/components/super-selection-app/standard-choice/standard-choice-form.js +9 -2
- package/dist/lib/esm/apollo-super-selection.js +1 -1
- package/dist/lib/esm/loader.js +1 -1
- package/dist/lib/esm/sss-button_38.entry.js +52 -46
- 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_38.entry.js +2 -2
- package/dist/lib/types/components/super-selection-app/prefill-fund/prefill.d.ts +3 -0
- package/dist/lib/types/components/super-selection-app/standard-choice/standard-choice-form.d.ts +2 -0
- package/package.json +1 -1
- package/dist/lib/apollo-super-selection/p-64f29eca.system.entry.js +0 -69
- package/dist/lib/apollo-super-selection/p-95403f2f.entry.js +0 -14
|
@@ -2,10 +2,13 @@ import { RouterHistory } from '@stencil/router';
|
|
|
2
2
|
export declare class Prefill {
|
|
3
3
|
history: RouterHistory;
|
|
4
4
|
private prefill;
|
|
5
|
+
connectedCallback(): void;
|
|
6
|
+
disconnectedCallback(): void;
|
|
5
7
|
componentWillLoad(): Promise<void>;
|
|
6
8
|
render(): Element[] | null;
|
|
7
9
|
private renderMyOwnFund;
|
|
8
10
|
private renderInvalidMyOwnFund;
|
|
9
11
|
private renderSMSF;
|
|
10
12
|
private renderInvalidSMSF;
|
|
13
|
+
private ignorePopState;
|
|
11
14
|
}
|
package/dist/lib/types/components/super-selection-app/standard-choice/standard-choice-form.d.ts
CHANGED
|
@@ -4,9 +4,11 @@ export declare class StandardChoiceFormInputDefaultFund {
|
|
|
4
4
|
private standardChoiceFormSignature;
|
|
5
5
|
private formState;
|
|
6
6
|
private isSubmitDisabled;
|
|
7
|
+
private changeFundUrl;
|
|
7
8
|
private formElement;
|
|
8
9
|
connectedCallback(): void;
|
|
9
10
|
disconnectedCallback(): void;
|
|
11
|
+
componentWillLoad(): Promise<void>;
|
|
10
12
|
render(): Element[];
|
|
11
13
|
private renderLogo;
|
|
12
14
|
private handleSubmitForm;
|