@flarehr/apollo-super-selection 3.22.53760 → 3.26.54319
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/assets/logo-art.svg +7 -0
- package/dist/lib/apollo-super-selection/p-1cf94785.entry.js +14 -0
- package/dist/lib/apollo-super-selection/p-7fae7603.system.entry.js +69 -0
- package/dist/lib/apollo-super-selection/p-d82b00ed.system.js +1 -1
- package/dist/lib/cjs/apollo-super-selection.cjs.js +1 -1
- package/dist/lib/cjs/fl-button_46.cjs.entry.js +57 -45
- package/dist/lib/cjs/loader.cjs.js +1 -1
- package/dist/lib/collection/components/super-selection-app/footer-section/footer-section.js +4 -7
- package/dist/lib/collection/components/super-selection-app/funds/constants.js +9 -6
- package/dist/lib/collection/components/super-selection-app/funds/promoted-fund/services/promoted-fund-join-iframe-builder.js +1 -0
- package/dist/lib/collection/components/super-selection-app/funds/qsuper/qsuper-confirm-header.js +1 -2
- package/dist/lib/collection/components/super-selection-app/funds/qsuper/qsuper-confirm-selection/qsuper-confirm-selection.js +0 -1
- package/dist/lib/collection/components/super-selection-app/funds/qsuper/qsuper-consent/qsuper-consent.js +0 -1
- package/dist/lib/collection/components/super-selection-app/funds/qsuper/qsuper-insurance-opt-in.js +1 -2
- package/dist/lib/collection/components/super-selection-app/super-choice-page/assets/logo-art.svg +7 -0
- package/dist/lib/collection/components/super-selection-app/super-choice-page/super-choice-item.js +36 -29
- package/dist/lib/collection/components/super-selection-app/super-choice-page/super-choice-page.css +12 -2
- package/dist/lib/collection/components/super-selection-app/super-choice-page/super-choice-page.js +86 -37
- package/dist/lib/esm/apollo-super-selection.js +1 -1
- package/dist/lib/esm/fl-button_46.entry.js +57 -45
- package/dist/lib/esm/loader.js +1 -1
- package/dist/lib/esm-es5/apollo-super-selection.js +1 -1
- package/dist/lib/esm-es5/fl-button_46.entry.js +2 -2
- package/dist/lib/esm-es5/loader.js +1 -1
- package/dist/lib/types/components/super-selection-app/api/super-selection-events.model.d.ts +0 -6
- package/dist/lib/types/components/super-selection-app/funds/constants.d.ts +9 -6
- package/dist/lib/types/components/super-selection-app/super-choice-page/super-choice-item.d.ts +3 -2
- package/dist/lib/types/components/super-selection-app/super-choice-page/super-choice-page.d.ts +1 -0
- package/dist/lib/types/components.d.ts +5 -4
- package/package.json +1 -1
- package/dist/lib/apollo-super-selection/p-54a2d842.entry.js +0 -14
- package/dist/lib/apollo-super-selection/p-a493ed28.system.entry.js +0 -69
package/dist/lib/collection/components/super-selection-app/super-choice-page/super-choice-item.js
CHANGED
|
@@ -6,19 +6,24 @@ export class SuperChoiceItem {
|
|
|
6
6
|
}
|
|
7
7
|
render() {
|
|
8
8
|
return (h(Host, { class: {
|
|
9
|
-
'd-flex p-3': true,
|
|
9
|
+
'd-flex p-3 fund-item': true,
|
|
10
10
|
'ss-picked-fund': this.isSelected
|
|
11
11
|
} },
|
|
12
|
-
h("div", { class: "card-body
|
|
12
|
+
h("div", { class: "card-body py-0 px-0 px-xl-3" },
|
|
13
13
|
this.isSelected && (h("div", { class: "px-3 py-2 text-white picked-block position-absolute" }, "You picked")),
|
|
14
14
|
h("div", { class: "d-flex flex-fill flex-column align-items-center" },
|
|
15
|
-
h("
|
|
16
|
-
|
|
15
|
+
h("div", { class: "d-flex justify-content-end w-100" },
|
|
16
|
+
h("div", { class: "text-muted small border rounded-sm px-1 mt-n2 mr-n2 mb-1" }, "Advertised")),
|
|
17
|
+
h("img", { class: "ss-choice-logo", alt: this.name, src: getAssetPath(`assets/${this.logo}`) }),
|
|
18
|
+
h("p", { class: "font-weight-bold text-center mt-3 mb-0" }, this.name),
|
|
17
19
|
h("div", { class: "mt-3" }, JSON.parse(this.features).map((feature) => (h("p", { class: "text-center" }, feature.value)))))),
|
|
18
|
-
h("div", { class: "text-center" },
|
|
20
|
+
h("div", { class: "text-center bottom-half-fund-tile" },
|
|
19
21
|
h("div", { class: "p-3" },
|
|
20
|
-
h("fl-button", { class: "uuid-button-continue", isBlockElement: true, onClick: () => this.handleFundClick() }, this
|
|
21
|
-
h("
|
|
22
|
+
h("fl-button", { class: "uuid-button-continue", isBlockElement: true, onClick: () => this.handleFundClick() }, "Choose this fund")),
|
|
23
|
+
h("div", { class: "mb-2" },
|
|
24
|
+
h("a", { target: "_blank", href: this.pdsLink, onClick: () => this.pdsViewedAsync() }, "View the PDS")),
|
|
25
|
+
this.disclaimer,
|
|
26
|
+
h("div", { class: "small text-muted" }, this.abnInfo))));
|
|
22
27
|
}
|
|
23
28
|
handleFundClick() {
|
|
24
29
|
return this.joinFundClicked.emit();
|
|
@@ -27,7 +32,6 @@ export class SuperChoiceItem {
|
|
|
27
32
|
return this.eventTrackingService.TrackSuperFundPdsViewedAsync({
|
|
28
33
|
fundUsi: this.usi,
|
|
29
34
|
fundName: this.name,
|
|
30
|
-
fundNameAlt: this.heading,
|
|
31
35
|
pageName: 'Panel Fund Page'
|
|
32
36
|
});
|
|
33
37
|
}
|
|
@@ -40,23 +44,6 @@ export class SuperChoiceItem {
|
|
|
40
44
|
}; }
|
|
41
45
|
static get assetsDirs() { return ["assets"]; }
|
|
42
46
|
static get properties() { return {
|
|
43
|
-
"heading": {
|
|
44
|
-
"type": "string",
|
|
45
|
-
"mutable": false,
|
|
46
|
-
"complexType": {
|
|
47
|
-
"original": "string",
|
|
48
|
-
"resolved": "string",
|
|
49
|
-
"references": {}
|
|
50
|
-
},
|
|
51
|
-
"required": false,
|
|
52
|
-
"optional": false,
|
|
53
|
-
"docs": {
|
|
54
|
-
"tags": [],
|
|
55
|
-
"text": ""
|
|
56
|
-
},
|
|
57
|
-
"attribute": "heading",
|
|
58
|
-
"reflect": false
|
|
59
|
-
},
|
|
60
47
|
"isSelected": {
|
|
61
48
|
"type": "boolean",
|
|
62
49
|
"mutable": false,
|
|
@@ -142,7 +129,7 @@ export class SuperChoiceItem {
|
|
|
142
129
|
"attribute": "pds-link",
|
|
143
130
|
"reflect": false
|
|
144
131
|
},
|
|
145
|
-
"
|
|
132
|
+
"features": {
|
|
146
133
|
"type": "string",
|
|
147
134
|
"mutable": false,
|
|
148
135
|
"complexType": {
|
|
@@ -156,10 +143,30 @@ export class SuperChoiceItem {
|
|
|
156
143
|
"tags": [],
|
|
157
144
|
"text": ""
|
|
158
145
|
},
|
|
159
|
-
"attribute": "
|
|
146
|
+
"attribute": "features",
|
|
160
147
|
"reflect": false
|
|
161
148
|
},
|
|
162
|
-
"
|
|
149
|
+
"disclaimer": {
|
|
150
|
+
"type": "unknown",
|
|
151
|
+
"mutable": false,
|
|
152
|
+
"complexType": {
|
|
153
|
+
"original": "VNode",
|
|
154
|
+
"resolved": "VNode",
|
|
155
|
+
"references": {
|
|
156
|
+
"VNode": {
|
|
157
|
+
"location": "import",
|
|
158
|
+
"path": "@stencil/core"
|
|
159
|
+
}
|
|
160
|
+
}
|
|
161
|
+
},
|
|
162
|
+
"required": false,
|
|
163
|
+
"optional": false,
|
|
164
|
+
"docs": {
|
|
165
|
+
"tags": [],
|
|
166
|
+
"text": ""
|
|
167
|
+
}
|
|
168
|
+
},
|
|
169
|
+
"abnInfo": {
|
|
163
170
|
"type": "string",
|
|
164
171
|
"mutable": false,
|
|
165
172
|
"complexType": {
|
|
@@ -173,7 +180,7 @@ export class SuperChoiceItem {
|
|
|
173
180
|
"tags": [],
|
|
174
181
|
"text": ""
|
|
175
182
|
},
|
|
176
|
-
"attribute": "
|
|
183
|
+
"attribute": "abn-info",
|
|
177
184
|
"reflect": false
|
|
178
185
|
},
|
|
179
186
|
"history": {
|
package/dist/lib/collection/components/super-selection-app/super-choice-page/super-choice-page.css
CHANGED
|
@@ -33,8 +33,8 @@ img.fluid-fit {
|
|
|
33
33
|
}
|
|
34
34
|
|
|
35
35
|
.ss-choice-logo {
|
|
36
|
-
|
|
37
|
-
|
|
36
|
+
width: auto;
|
|
37
|
+
max-height: 70px;
|
|
38
38
|
object-fit: contain;
|
|
39
39
|
}
|
|
40
40
|
|
|
@@ -50,4 +50,14 @@ img {
|
|
|
50
50
|
|
|
51
51
|
.flexible {
|
|
52
52
|
flex-grow: 1;
|
|
53
|
+
}
|
|
54
|
+
|
|
55
|
+
.fund-item {
|
|
56
|
+
margin-top: 1rem;
|
|
57
|
+
}
|
|
58
|
+
|
|
59
|
+
@media (min-width: 992px) {
|
|
60
|
+
.bottom-half-fund-tile {
|
|
61
|
+
height: 220px;
|
|
62
|
+
}
|
|
53
63
|
}
|
package/dist/lib/collection/components/super-selection-app/super-choice-page/super-choice-page.js
CHANGED
|
@@ -32,22 +32,24 @@ export class SuperChoicePage {
|
|
|
32
32
|
this.chosenFund = await chosenFundService.GetChosenFundAsync();
|
|
33
33
|
}
|
|
34
34
|
render() {
|
|
35
|
-
const superChoiceParagraphOne = `
|
|
36
|
-
const superChoiceParagraphTwo = `The content on this page and on the following pages relating to
|
|
37
|
-
const superChoiceParagraphThree = `
|
|
35
|
+
const superChoiceParagraphOne = `The choice of superannuation fund is an important personal financial decision. It is open to you to continue with your existing fund, or alternatively, you can select from one of the funds below or choose another fund. Flare HR is not licensed to advise you in relation to this decision and you may wish to return to this page at a later stage.`;
|
|
36
|
+
const superChoiceParagraphTwo = `The content on this page and on the following pages relating to each super fund is provided by the trustee or promoter of the super fund. The super funds presented have not been selected by your employer and neither your employer or Flare HR are making any recommendation or opinion.`;
|
|
37
|
+
const superChoiceParagraphThree = `There are many super funds out there and you should consider the relevant product disclosure statement and choose one that is right for you. If you are unsure, obtain your own advice. You can choose your super fund later, if you need time to obtain advice.`;
|
|
38
|
+
const superChoiceParagraphFour = `You should be aware that, if you do choose one of these advertised funds, Flare HR and its associated entities will normally receive a fee for you doing so.`;
|
|
39
|
+
const atoLink = 'https://my.gov.au';
|
|
40
|
+
const atoLinkDisplay = 'my.gov.au';
|
|
41
|
+
const superfundsLink = 'https://www.apra.gov.au/register-of-superannuation-institutions';
|
|
42
|
+
const superfundsLinkDisplay = 'www.apra.gov.au/register-of-superannuation-institutions';
|
|
38
43
|
return (h(Host, null,
|
|
39
44
|
h("div", { class: "container mt-0 mb-0" },
|
|
40
45
|
h("div", { class: "row justify-content-center" },
|
|
41
46
|
h("div", { class: "col" },
|
|
42
|
-
h("
|
|
43
|
-
h("h5", { class: "font-weight-bold text-center mb-4" },
|
|
44
|
-
h("span", { class: "text-dark mr-1" }, "Simple Financial"),
|
|
45
|
-
h("span", { class: "simple-choices-text" }, "Choices")))),
|
|
47
|
+
h("h3", { class: "mt-3 font-weight-bold text-center mb-4" }, "Choose your Super"))),
|
|
46
48
|
h("div", { class: "row justify-content-center" },
|
|
47
49
|
h("div", { class: "col" },
|
|
48
|
-
h("p", { class: "text-center" }, superChoiceParagraphOne),
|
|
49
|
-
h("p", { class: "text-center
|
|
50
|
-
h("p", { class: "text-center
|
|
50
|
+
h("p", { class: "text-center font-weight-bold" }, superChoiceParagraphOne),
|
|
51
|
+
h("p", { class: "text-center" }, superChoiceParagraphTwo),
|
|
52
|
+
h("p", { class: "text-center" }, superChoiceParagraphThree))),
|
|
51
53
|
h("div", { class: "row" },
|
|
52
54
|
h("div", { class: "col" },
|
|
53
55
|
h("sss-notifications-section", null))),
|
|
@@ -56,12 +58,32 @@ export class SuperChoicePage {
|
|
|
56
58
|
h("div", { class: "row" },
|
|
57
59
|
h("div", { class: "col" },
|
|
58
60
|
h("div", { class: "d-flex flex-fill" }, isSome(this.chosenFund) && !this.chosenFund.value.isPromoted && (h("sss-selected-super-choice-section", { fundType: this.chosenFund.value.type, fundName: this.chosenFund.value.name, class: "flex-fill position-relative" }))))),
|
|
59
|
-
h("div", { class: "row mt-3" }, this.
|
|
60
|
-
h("sss-super-choice-item", { class: "card mb-3 mb-lg-0 mx-0 flex-grow-1", logo: fund.logo, isSelected: this.isPromotedFundSelected(fund.fundId), usi: fund.usi, name: fund.name,
|
|
61
|
-
h("div", { class: "row mt-3" },
|
|
62
|
-
h("div", { class: "col" },
|
|
63
|
-
h("
|
|
64
|
-
h("
|
|
61
|
+
h("div", { class: "row mt-3" }, this.getPromotedFunds().map((fund) => (h("div", { class: "col-12 col-lg-6 d-flex" },
|
|
62
|
+
h("sss-super-choice-item", { class: "card mb-3 mb-lg-0 mx-0 flex-grow-1", logo: fund.logo, isSelected: this.isPromotedFundSelected(fund.fundId), usi: fund.usi, name: fund.name, pdsLink: navigationService.toExternalUrl(fund.pdsLink), features: JSON.stringify(fund.features), disclaimer: fund.disclaimer, abnInfo: fund.abnInfo, onJoinFundClicked: async () => this.handleJoinSuperClickAsync(fund) }))))),
|
|
63
|
+
h("div", { class: "row mt-3 px-3" },
|
|
64
|
+
h("div", { class: "col p-4 border rounded bg-light" },
|
|
65
|
+
h("div", { class: "row" },
|
|
66
|
+
h("div", { class: "col" },
|
|
67
|
+
h("h5", { class: "font-weight-bold" }, "Choose another super fund"),
|
|
68
|
+
h("p", { class: "mb-1" }, "Select this option if you'd like to use your current account with another super fund."),
|
|
69
|
+
h("ul", { class: "ml-n3" },
|
|
70
|
+
h("li", null,
|
|
71
|
+
"If you are unsure of your current super fund details, you can find out at",
|
|
72
|
+
' ',
|
|
73
|
+
h("a", { target: "_blank", href: navigationService.toExternalUrl(atoLink) }, atoLinkDisplay)),
|
|
74
|
+
h("li", { class: "mt-1" },
|
|
75
|
+
"A full list of super funds can be viewed at",
|
|
76
|
+
' ',
|
|
77
|
+
h("a", { target: "_blank", href: navigationService.toExternalUrl(superfundsLink) }, superfundsLinkDisplay))))),
|
|
78
|
+
h("div", { class: "row" },
|
|
79
|
+
h("div", { class: "col" },
|
|
80
|
+
h("stencil-route-link", { url: SuperSelectionAppRoutes.MyOwnFund },
|
|
81
|
+
h("fl-button", { isBlockElement: true, variant: "primary", class: "d-lg-none" }, "Choose another fund"),
|
|
82
|
+
h("div", { class: "mt-n3 d-none d-lg-flex justify-content-end align-items-end" },
|
|
83
|
+
h("fl-button", { variant: "primary" }, "Choose another fund"))))))))),
|
|
84
|
+
h("div", { class: "row justify-content-center mt-5" },
|
|
85
|
+
h("div", { class: "col" },
|
|
86
|
+
h("p", { class: "text-center" }, superChoiceParagraphFour))))));
|
|
65
87
|
}
|
|
66
88
|
allFunds() {
|
|
67
89
|
return [
|
|
@@ -69,42 +91,65 @@ export class SuperChoicePage {
|
|
|
69
91
|
fundId: constants.SlateFundId,
|
|
70
92
|
usi: constants.SlateFundUsi,
|
|
71
93
|
name: constants.SlateFundName,
|
|
72
|
-
heading: constants.SlateAltFundName,
|
|
73
94
|
logo: 'logo-slate.png',
|
|
74
95
|
route: SuperSelectionAppRoutes.SlateJoin,
|
|
75
|
-
|
|
76
|
-
pdsLink: 'https://slatesuper.com.au/pds/?utm_source=flare&utm_medium=superselection',
|
|
96
|
+
pdsLink: constants.SlatePdsUrl,
|
|
77
97
|
features: [
|
|
78
|
-
{ order: 1, value: '
|
|
98
|
+
{ order: 1, value: 'A lifestage investment strategy that evolves with you' },
|
|
79
99
|
{ order: 2, value: 'Advanced mobile app with retirement forecast and smart features' },
|
|
80
|
-
{ order: 3, value: '
|
|
81
|
-
]
|
|
100
|
+
{ order: 3, value: 'Member advocates at Slate to assist with your account' }
|
|
101
|
+
],
|
|
102
|
+
disclaimer: (h("p", { class: "small text-muted" },
|
|
103
|
+
"You should consider the",
|
|
104
|
+
' ',
|
|
105
|
+
h("a", { target: "_blank", href: navigationService.toExternalUrl(constants.SlatePdsUrl), onClick: () => this.pdsViewedAsync(constants.SlateFundUsi, constants.SlateFundName) }, "Product Disclosure Statement"),
|
|
106
|
+
' ',
|
|
107
|
+
"and",
|
|
108
|
+
' ',
|
|
109
|
+
h("a", { target: "_blank", href: navigationService.toExternalUrl('https://slate.co/forms-and-documents/target-market-determination/') }, "Target Market Determination"),
|
|
110
|
+
' ',
|
|
111
|
+
"before deciding to invest in or apply to become a member of the fund.")),
|
|
112
|
+
abnInfo: `Diversa Trustees Limited ABN: ${constants.SlateFundDiversaAbn}`
|
|
82
113
|
},
|
|
83
114
|
{
|
|
84
115
|
fundId: constants.QSuperFundId,
|
|
85
116
|
usi: constants.QSuperFundUsi,
|
|
86
117
|
name: constants.QSuperFundName,
|
|
87
|
-
heading: constants.QSuperAltFundName,
|
|
88
118
|
logo: 'logo-qsuper-square.png',
|
|
89
119
|
route: SuperSelectionAppRoutes.QSuperOptIn,
|
|
90
|
-
|
|
91
|
-
pdsLink: 'https://qsuper.qld.gov.au/calculators-and-forms/publications/product-disclosure-statements',
|
|
120
|
+
pdsLink: constants.QSuperPdsUrl,
|
|
92
121
|
features: [
|
|
93
122
|
{ order: 1, value: '100 years strong' },
|
|
94
123
|
{ order: 2, value: `One of Australia's largest funds` },
|
|
95
124
|
{ order: 3, value: 'Awarded SuperRatings highest performance rating' }
|
|
96
|
-
]
|
|
125
|
+
],
|
|
126
|
+
disclaimer: (h("p", { class: "small text-muted" },
|
|
127
|
+
"You should consider the",
|
|
128
|
+
' ',
|
|
129
|
+
h("a", { target: "_blank", href: navigationService.toExternalUrl(constants.QSuperPdsUrl), onClick: () => this.pdsViewedAsync(constants.QSuperFundUsi, constants.QSuperFundName) }, "Product Disclosure Statement"),
|
|
130
|
+
' ',
|
|
131
|
+
"before deciding to invest in or apply to become a member of this fund.")),
|
|
132
|
+
abnInfo: `QSuper Board ABN: ${constants.QSuperFundAbn}`
|
|
97
133
|
},
|
|
98
134
|
{
|
|
99
135
|
fundId: constants.AustralianRetirementTrustFundId,
|
|
100
136
|
usi: constants.AustralianRetirementTrustFundUsi,
|
|
101
137
|
name: constants.AustralianRetirementTrustFundName,
|
|
102
|
-
|
|
103
|
-
logo: 'logo-qsuper-square.png',
|
|
138
|
+
logo: 'logo-art.svg',
|
|
104
139
|
route: SuperSelectionAppRoutes.PromotedFundJoin,
|
|
105
|
-
|
|
106
|
-
|
|
107
|
-
|
|
140
|
+
pdsLink: constants.AustralianRetirementTrustPdsUrl,
|
|
141
|
+
features: [
|
|
142
|
+
{ order: 1, value: '$200 billion in retirement savings' },
|
|
143
|
+
{ order: 2, value: '2+ million members' },
|
|
144
|
+
{ order: 3, value: 'A focus on delivering strong, long‑term returns' }
|
|
145
|
+
],
|
|
146
|
+
disclaimer: (h("p", { class: "small text-muted" },
|
|
147
|
+
"You should consider the",
|
|
148
|
+
' ',
|
|
149
|
+
h("a", { target: "_blank", href: navigationService.toExternalUrl(constants.AustralianRetirementTrustPdsUrl), onClick: () => this.pdsViewedAsync(constants.AustralianRetirementTrustFundUsi, constants.AustralianRetirementTrustFundName) }, "Product Disclosure Statement"),
|
|
150
|
+
' ',
|
|
151
|
+
"before deciding to invest in or apply to become a member of this fund.")),
|
|
152
|
+
abnInfo: `ABN: ${constants.AustralianRetirementTrustFundAbn}`
|
|
108
153
|
}
|
|
109
154
|
];
|
|
110
155
|
}
|
|
@@ -122,27 +167,31 @@ export class SuperChoicePage {
|
|
|
122
167
|
if (fund.fundId === constants.SlateFundId) {
|
|
123
168
|
await this.eventTrackingService.TrackPromotedSuperFundDetailViewedAsync({
|
|
124
169
|
fundUsi: constants.SlateFundUsi,
|
|
125
|
-
fundName: constants.SlateFundName
|
|
126
|
-
fundNameAlt: constants.SlateAltFundName
|
|
170
|
+
fundName: constants.SlateFundName
|
|
127
171
|
});
|
|
128
172
|
}
|
|
129
173
|
else if (fund.fundId === constants.QSuperFundId) {
|
|
130
174
|
await this.eventTrackingService.TrackPromotedSuperFundDetailViewedAsync({
|
|
131
175
|
fundUsi: constants.QSuperFundUsi,
|
|
132
|
-
fundName: constants.QSuperFundName
|
|
133
|
-
fundNameAlt: constants.QSuperAltFundName
|
|
176
|
+
fundName: constants.QSuperFundName
|
|
134
177
|
});
|
|
135
178
|
}
|
|
136
179
|
else if (fund.fundId === constants.AustralianRetirementTrustFundId) {
|
|
137
180
|
await this.eventTrackingService.TrackPromotedSuperFundDetailViewedAsync({
|
|
138
181
|
fundUsi: constants.AustralianRetirementTrustFundUsi,
|
|
139
|
-
fundName: constants.AustralianRetirementTrustFundName
|
|
140
|
-
fundNameAlt: constants.AustralianRetirementTrustAltFundName
|
|
182
|
+
fundName: constants.AustralianRetirementTrustFundName
|
|
141
183
|
});
|
|
142
184
|
promotedFundState.fundId = fund.fundId;
|
|
143
185
|
}
|
|
144
186
|
return navigationService.navigateInternally(this.history, fund.route);
|
|
145
187
|
}
|
|
188
|
+
pdsViewedAsync(usi, name) {
|
|
189
|
+
return this.eventTrackingService.TrackSuperFundPdsViewedAsync({
|
|
190
|
+
fundUsi: usi,
|
|
191
|
+
fundName: name,
|
|
192
|
+
pageName: 'Panel Fund Page'
|
|
193
|
+
});
|
|
194
|
+
}
|
|
146
195
|
static get is() { return "sss-super-choice-page"; }
|
|
147
196
|
static get originalStyleUrls() { return {
|
|
148
197
|
"$": ["super-choice-page.scss"]
|
|
@@ -17,5 +17,5 @@ const patchBrowser = () => {
|
|
|
17
17
|
|
|
18
18
|
patchBrowser().then(options => {
|
|
19
19
|
globalScripts();
|
|
20
|
-
return bootstrapLazy([["fl-style-guide",[[1,"fl-style-guide",{"themeCssUrl":[1,"theme-css-url"]}]]],["context-consumer",[[0,"context-consumer",{"context":[16],"renderer":[16],"subscribe":[16],"unsubscribe":[32]}]]],["stencil-async-content",[[0,"stencil-async-content",{"documentLocation":[1,"document-location"],"content":[32]}]]],["stencil-route-title",[[0,"stencil-route-title",{"titleSuffix":[1,"title-suffix"],"pageTitle":[1,"page-title"]}]]],["stencil-router-prompt",[[0,"stencil-router-prompt",{"when":[4],"message":[1],"history":[16],"unblock":[32]}]]],["stencil-router-redirect",[[0,"stencil-router-redirect",{"history":[16],"root":[1],"url":[1]}]]],["fl-button_46",[[0,"sss-my-own-fund",{"history":[16],"formState":[32],"isNotAllInformationProvidedMessageVisible":[32]}],[0,"sss-self-managed-fund",{"history":[16],"formState":[32],"showSmsfNotSupported":[32]}],[0,"sss-qsuper-question-1"],[0,"sss-qsuper-question-2"],[0,"sss-qsuper-question-3"],[0,"sss-qsuper-question-4"],[0,"sss-qsuper-question-5"],[0,"sss-qsuper-question-6"],[0,"sss-qsuper-question-7"],[0,"sss-qsuper-question-8"],[0,"sss-default-fund",{"history":[16],"formState":[32],"defaultFundProductName":[32]}],[0,"sss-qsuper-insurance-opt-in",{"insuranceChosen":[32]}],[0,"sss-qsuper-join"],[0,"sss-slate-standard-choice-page",{"history":[16],"formState":[32]}],[1,"super-selection-app-host",{"sessionState":[32],"jwt":[32],"appConfiguration":[32],"areStylesLoaded":[32]}],[0,"sss-qsuper-consent"],[0,"sss-super-choice-page",{"history":[16],"promotedFunds":[32],"chosenFund":[32]}],[0,"sss-promoted-fund-standard-choice-page",{"history":[16],"formState":[32]}],[0,"sss-success"],[0,"sss-promoted-fund-join-page",{"history":[16]}],[0,"sss-slate-join-page",{"history":[16]}],[0,"super-selection-app",{"accessToken":[1,"access-token"],"backendUrl":[1,"backend-url"],"appBaseUrl":[1,"app-base-url"],"history":[16],"location":[16],"isAppInitialised":[32]}],[0,"sss-my-own-fund-inputs",{"myOwnFundForm":[16],"selectedOption":[32]}],[0,"sss-self-managed-fund-inputs",{"fundForm":[16],"currentBank":[32]}],[0,"sss-loading-page"],[0,"sss-smsf-not-supported-dialog"],[0,"sss-super-choice-item",{"
|
|
20
|
+
return bootstrapLazy([["fl-style-guide",[[1,"fl-style-guide",{"themeCssUrl":[1,"theme-css-url"]}]]],["context-consumer",[[0,"context-consumer",{"context":[16],"renderer":[16],"subscribe":[16],"unsubscribe":[32]}]]],["stencil-async-content",[[0,"stencil-async-content",{"documentLocation":[1,"document-location"],"content":[32]}]]],["stencil-route-title",[[0,"stencil-route-title",{"titleSuffix":[1,"title-suffix"],"pageTitle":[1,"page-title"]}]]],["stencil-router-prompt",[[0,"stencil-router-prompt",{"when":[4],"message":[1],"history":[16],"unblock":[32]}]]],["stencil-router-redirect",[[0,"stencil-router-redirect",{"history":[16],"root":[1],"url":[1]}]]],["fl-button_46",[[0,"sss-my-own-fund",{"history":[16],"formState":[32],"isNotAllInformationProvidedMessageVisible":[32]}],[0,"sss-self-managed-fund",{"history":[16],"formState":[32],"showSmsfNotSupported":[32]}],[0,"sss-qsuper-question-1"],[0,"sss-qsuper-question-2"],[0,"sss-qsuper-question-3"],[0,"sss-qsuper-question-4"],[0,"sss-qsuper-question-5"],[0,"sss-qsuper-question-6"],[0,"sss-qsuper-question-7"],[0,"sss-qsuper-question-8"],[0,"sss-default-fund",{"history":[16],"formState":[32],"defaultFundProductName":[32]}],[0,"sss-qsuper-insurance-opt-in",{"insuranceChosen":[32]}],[0,"sss-qsuper-join"],[0,"sss-slate-standard-choice-page",{"history":[16],"formState":[32]}],[1,"super-selection-app-host",{"sessionState":[32],"jwt":[32],"appConfiguration":[32],"areStylesLoaded":[32]}],[0,"sss-qsuper-consent"],[0,"sss-super-choice-page",{"history":[16],"promotedFunds":[32],"chosenFund":[32]}],[0,"sss-promoted-fund-standard-choice-page",{"history":[16],"formState":[32]}],[0,"sss-success"],[0,"sss-promoted-fund-join-page",{"history":[16]}],[0,"sss-slate-join-page",{"history":[16]}],[0,"super-selection-app",{"accessToken":[1,"access-token"],"backendUrl":[1,"backend-url"],"appBaseUrl":[1,"app-base-url"],"history":[16],"location":[16],"isAppInitialised":[32]}],[0,"sss-my-own-fund-inputs",{"myOwnFundForm":[16],"selectedOption":[32]}],[0,"sss-self-managed-fund-inputs",{"fundForm":[16],"currentBank":[32]}],[0,"sss-loading-page"],[0,"sss-smsf-not-supported-dialog"],[0,"sss-super-choice-item",{"isSelected":[4,"is-selected"],"usi":[1],"name":[1],"logo":[1],"pdsLink":[1,"pds-link"],"features":[1],"disclaimer":[16],"abnInfo":[1,"abn-info"],"history":[16]}],[0,"sss-selected-super-choice-section",{"fundType":[1,"fund-type"],"fundName":[1,"fund-name"]}],[0,"sss-slatesuper-header"],[0,"sss-footer-section"],[4,"stencil-route-link",{"url":[1],"urlMatch":[1,"url-match"],"activeClass":[1,"active-class"],"exact":[4],"strict":[4],"custom":[1],"anchorClass":[1,"anchor-class"],"anchorRole":[1,"anchor-role"],"anchorTitle":[1,"anchor-title"],"anchorTabIndex":[1,"anchor-tab-index"],"anchorId":[1,"anchor-id"],"history":[16],"location":[16],"root":[1],"ariaHaspopup":[1,"aria-haspopup"],"ariaPosinset":[1,"aria-posinset"],"ariaSetsize":[2,"aria-setsize"],"ariaLabel":[1,"aria-label"],"match":[32]}],[4,"stencil-route-switch",{"group":[513],"scrollTopOffset":[2,"scroll-top-offset"],"location":[16],"routeViewsUpdated":[16]}],[4,"stencil-router",{"root":[1],"historyType":[1,"history-type"],"titleSuffix":[1,"title-suffix"],"scrollTopOffset":[2,"scroll-top-offset"],"location":[32],"history":[32]}],[4,"sss-custom-fund",{"history":[16],"currentCustomFund":[32],"fundOptionsList":[32]}],[0,"fl-dropdown-async",{"placeholder":[1],"searchFunction":[16],"value":[16],"required":[4],"requiredValidationMessage":[1,"required-validation-message"],"disabled":[4],"minSearchStringLength":[2,"min-search-string-length"],"searchState":[32],"inputValue":[32],"isDropdownVisible":[32],"filteredOptions":[32],"highlightedOptionIndex":[32],"selectedOption":[32]},[[2,"focus","handleFocus"],[2,"blur","handleBlur"],[2,"keydown","handleKeyDown"]]],[0,"fl-dropdown",{"placeholder":[1],"options":[16],"value":[16],"required":[4],"requiredValidationMessage":[1,"required-validation-message"],"disabled":[4],"inputValue":[32],"isDropdownVisible":[32],"filteredOptions":[32],"highlightedOptionIndex":[32],"selectedOption":[32]},[[2,"focus","handleFocus"],[2,"blur","handleBlur"],[2,"keydown","handleKeyDown"]]],[0,"sss-standard-choice-form",{"standardChoiceFormSignature":[32]}],[4,"sss-qsuper-insurance-questions"],[0,"sss-qsuper-question-yes-no-buttons",{"history":[16]}],[0,"sss-qsuper-confirm-header"],[4,"sss-qsuper-layout",{"history":[16]}],[0,"sss-notifications-section"],[4,"fl-promise-button",{"isBlockElement":[4,"is-block-element"],"isRounded":[4,"is-rounded"],"disabled":[4],"variant":[1],"promiseFn":[16],"state":[32]}],[4,"fl-button",{"isBlockElement":[4,"is-block-element"],"disabled":[4],"variant":[1]}],[0,"fl-loading-indicator",{"theme":[1]}],[0,"stencil-route",{"group":[513],"componentUpdated":[16],"match":[1040],"url":[1],"component":[1],"componentProps":[16],"exact":[4],"routeRender":[16],"scrollTopOffset":[2,"scroll-top-offset"],"routeViewsUpdated":[16],"location":[16],"history":[16],"historyType":[1,"history-type"]}]]]], options);
|
|
21
21
|
});
|