@flarehr/apollo-super-selection 4.29.30453 → 4.30.31017
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/assets/logo-hesta.svg +5 -0
- package/dist/lib/apollo-super-selection/p-bdcfc026.system.js +1 -1
- package/dist/lib/apollo-super-selection/p-cb5632d9.entry.js +14 -0
- package/dist/lib/apollo-super-selection/p-e32970b5.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_30.cjs.entry.js +227 -111
- package/dist/lib/collection/apollo-super-selection.css +1 -1
- package/dist/lib/collection/components/app-host/super-selection-app-host.js +4 -0
- package/dist/lib/collection/components/super-selection-app/api/super-selection.api.dto.js +46 -0
- package/dist/lib/collection/components/super-selection-app/api/super-selection.api.js +20 -1
- package/dist/lib/collection/components/super-selection-app/existing-choice/existing-choice.js +12 -1
- package/dist/lib/collection/components/super-selection-app/funds/constants.js +3 -1
- package/dist/lib/collection/components/super-selection-app/funds/promoted-fund/funds/hesta-default.js +26 -8
- package/dist/lib/collection/components/super-selection-app/funds/promoted-fund/funds/virgin.js +1 -1
- package/dist/lib/collection/components/super-selection-app/funds/promoted-fund/services/promoted-fund-join-v2-iframe-builder.js +2 -1
- package/dist/lib/collection/components/super-selection-app/funds/promoted-fund/types.js +1 -1
- package/dist/lib/collection/components/super-selection-app/misc/dropdown-async.js +2 -0
- package/dist/lib/collection/components/super-selection-app/super-choice-page/assets/logo-hesta.svg +5 -0
- package/dist/lib/collection/components/super-selection-app/super-choice-page/super-choice-item/super-choice-item-bottom.js +19 -2
- package/dist/lib/collection/components/super-selection-app/super-choice-page/super-choice-item/super-choice-item-top.js +27 -4
- package/dist/lib/collection/components/super-selection-app/super-choice-page/super-choice-page.js +12 -7
- package/dist/lib/esm/apollo-super-selection.js +1 -1
- package/dist/lib/esm/loader.js +1 -1
- package/dist/lib/esm/sss-button_30.entry.js +227 -111
- 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_30.entry.js +9 -9
- package/dist/lib/types/components/super-selection-app/api/super-selection.api.dto.d.ts +2 -0
- package/dist/lib/types/components/super-selection-app/super-choice-page/super-choice-item/super-choice-item-bottom.d.ts +1 -0
- package/dist/lib/types/components/super-selection-app/super-choice-page/super-choice-item/super-choice-item-top.d.ts +1 -0
- package/dist/lib/types/components.d.ts +4 -0
- package/package.json +1 -1
- package/dist/lib/apollo-super-selection/p-16367be3.system.entry.js +0 -69
- package/dist/lib/apollo-super-selection/p-29a35f2a.entry.js +0 -14
|
@@ -74,6 +74,7 @@ declare type PromotedFundChoiceDto = {
|
|
|
74
74
|
memberNumber: string;
|
|
75
75
|
};
|
|
76
76
|
};
|
|
77
|
+
export declare function hydratePromotedFundChoiceDtoKind(dto: PromotedFundChoiceDto): void;
|
|
77
78
|
export declare function getSuperChoiceUsi(dto: SuperChoiceDetailsDto): Option<string>;
|
|
78
79
|
export declare function getSuperChoiceMemberNumber(dto: SuperChoiceDetailsDto): Option<string>;
|
|
79
80
|
declare type OwnFundChoiceDto = {
|
|
@@ -108,6 +109,7 @@ declare type SuperChoiceDetailsDto = {
|
|
|
108
109
|
kind: 'PromotedDefault';
|
|
109
110
|
promotedDefault: PromotedDefaultFundChoiceDto;
|
|
110
111
|
};
|
|
112
|
+
export declare function hydrateSuperChoiceDetailsDtoKind(dto: SuperChoiceDetailsDto): void;
|
|
111
113
|
declare type SuperChoiceDto = {
|
|
112
114
|
dateSubmitted: string;
|
|
113
115
|
choiceDetails: SuperChoiceDetailsDto;
|
|
@@ -98,10 +98,12 @@ export namespace Components {
|
|
|
98
98
|
"abn"?: string;
|
|
99
99
|
"abnInfo"?: string;
|
|
100
100
|
"disclaimer": VNode;
|
|
101
|
+
"isMultiFund": boolean;
|
|
101
102
|
}
|
|
102
103
|
interface SssSuperChoiceItemTop {
|
|
103
104
|
"featureSubText"?: VNode;
|
|
104
105
|
"features": VNode[];
|
|
106
|
+
"isMultiFund": boolean;
|
|
105
107
|
"isPromotedDefault"?: boolean;
|
|
106
108
|
"logo": string;
|
|
107
109
|
"name": string;
|
|
@@ -395,11 +397,13 @@ declare namespace LocalJSX {
|
|
|
395
397
|
"abn"?: string;
|
|
396
398
|
"abnInfo"?: string;
|
|
397
399
|
"disclaimer"?: VNode;
|
|
400
|
+
"isMultiFund"?: boolean;
|
|
398
401
|
"onJoinFundClicked"?: (event: CustomEvent<void>) => void;
|
|
399
402
|
}
|
|
400
403
|
interface SssSuperChoiceItemTop {
|
|
401
404
|
"featureSubText"?: VNode;
|
|
402
405
|
"features"?: VNode[];
|
|
406
|
+
"isMultiFund"?: boolean;
|
|
403
407
|
"isPromotedDefault"?: boolean;
|
|
404
408
|
"logo"?: string;
|
|
405
409
|
"name"?: string;
|