@flarehr/apollo-super-selection 1.3.34141 → 1.3.34213
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-bdcfc026.system.js +1 -1
- package/dist/lib/apollo-super-selection/p-f09d70cb.system.entry.js +69 -0
- package/dist/lib/apollo-super-selection/p-f1c28adf.entry.js +14 -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 → sss-button_38.cjs.entry.js} +880 -3
- package/dist/lib/collection/apollo-super-selection.css +1 -1
- package/dist/lib/collection/collection-manifest.json +16 -0
- package/dist/lib/collection/components/app-host/super-selection-app-host.css +2 -2
- package/dist/lib/collection/components/super-selection-app/misc/button.js +2 -1
- package/dist/lib/collection/components/super-selection-app/prefill-fund/prefill-common.js +22 -0
- package/dist/lib/collection/components/super-selection-app/prefill-fund/prefill-display-field.js +42 -0
- package/dist/lib/collection/components/super-selection-app/prefill-fund/prefill-error-box.js +76 -0
- package/dist/lib/collection/components/super-selection-app/prefill-fund/prefill-invalid-my-own-fund.js +121 -0
- package/dist/lib/collection/components/super-selection-app/prefill-fund/prefill-invalid-smsf.js +144 -0
- package/dist/lib/collection/components/super-selection-app/prefill-fund/prefill-my-own-fund.js +217 -0
- package/dist/lib/collection/components/super-selection-app/prefill-fund/prefill-smsf.js +355 -0
- package/dist/lib/collection/components/super-selection-app/prefill-fund/prefill-types.js +281 -0
- package/dist/lib/collection/components/super-selection-app/prefill-fund/prefill-warning-box.js +46 -0
- package/dist/lib/collection/components/super-selection-app/prefill-fund/prefill.js +73 -0
- package/dist/lib/collection/components/super-selection-app/services/event-tracking.service.js +10 -0
- package/dist/lib/collection/components/super-selection-app/services/super-selection-app.routes.js +10 -0
- package/dist/lib/collection/components/super-selection-app/services/super-selection-app.service.js +1 -0
- package/dist/lib/collection/components/super-selection-app/services/super-selection.store.js +1 -0
- package/dist/lib/collection/components/super-selection-app/super-selection-app.js +4 -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_30.entry.js → sss-button_38.entry.js} +873 -4
- 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 +69 -0
- package/dist/lib/types/components/super-selection-app/api/super-selection-events.model.d.ts +20 -0
- package/dist/lib/types/components/super-selection-app/api/super-selection.api.dto.d.ts +39 -0
- package/dist/lib/types/components/super-selection-app/funds/custom-fund/api/custom-fund-choice.api.dto.d.ts +1 -1
- package/dist/lib/types/components/super-selection-app/misc/button.d.ts +1 -1
- package/dist/lib/types/components/super-selection-app/prefill-fund/prefill-common.d.ts +9 -0
- package/dist/lib/types/components/super-selection-app/prefill-fund/prefill-display-field.d.ts +5 -0
- package/dist/lib/types/components/super-selection-app/prefill-fund/prefill-error-box.d.ts +5 -0
- package/dist/lib/types/components/super-selection-app/prefill-fund/prefill-invalid-my-own-fund.d.ts +18 -0
- package/dist/lib/types/components/super-selection-app/prefill-fund/prefill-invalid-smsf.d.ts +28 -0
- package/dist/lib/types/components/super-selection-app/prefill-fund/prefill-my-own-fund.d.ts +30 -0
- package/dist/lib/types/components/super-selection-app/prefill-fund/prefill-smsf.d.ts +48 -0
- package/dist/lib/types/components/super-selection-app/prefill-fund/prefill-types.d.ts +90 -0
- package/dist/lib/types/components/super-selection-app/prefill-fund/prefill-warning-box.d.ts +4 -0
- package/dist/lib/types/components/super-selection-app/prefill-fund/prefill.d.ts +11 -0
- package/dist/lib/types/components/super-selection-app/services/event-tracking.service.d.ts +2 -0
- package/dist/lib/types/components/super-selection-app/services/super-selection-app.routes.d.ts +5 -0
- package/dist/lib/types/components/super-selection-app/services/super-selection.store.d.ts +2 -1
- package/dist/lib/types/components.d.ts +132 -0
- package/package.json +2 -2
- package/dist/lib/apollo-super-selection/p-22f38d18.system.entry.js +0 -69
- package/dist/lib/apollo-super-selection/p-a8f0c61f.entry.js +0 -14
- package/dist/lib/esm-es5/sss-button_30.entry.js +0 -69
|
@@ -0,0 +1,281 @@
|
|
|
1
|
+
import { isNullOrWhitespace } from './prefill-common';
|
|
2
|
+
export const NAME_PATTERN = "[A-Za-z][A-Za-z']+(( |-)[A-Za-z][A-Za-z']+)*\\s*$";
|
|
3
|
+
export class FormField {
|
|
4
|
+
constructor(name, value) {
|
|
5
|
+
this.name = name;
|
|
6
|
+
this._value = value !== null && value !== void 0 ? value : '';
|
|
7
|
+
this._errorMessage = this.validateAndReturnErrorMessage(this._value);
|
|
8
|
+
}
|
|
9
|
+
get value() {
|
|
10
|
+
return this._value;
|
|
11
|
+
}
|
|
12
|
+
set value(newValue) {
|
|
13
|
+
this._errorMessage = this.validateAndReturnErrorMessage(newValue);
|
|
14
|
+
this._value = newValue;
|
|
15
|
+
}
|
|
16
|
+
get isValid() {
|
|
17
|
+
return this._errorMessage === null;
|
|
18
|
+
}
|
|
19
|
+
get isEmpty() {
|
|
20
|
+
return isNullOrWhitespace(this._value);
|
|
21
|
+
}
|
|
22
|
+
get errorMessage() {
|
|
23
|
+
return this._errorMessage;
|
|
24
|
+
}
|
|
25
|
+
}
|
|
26
|
+
export class StaticFormField {
|
|
27
|
+
constructor(name, value, isValid) {
|
|
28
|
+
this.name = name;
|
|
29
|
+
this._value = value !== null && value !== void 0 ? value : '';
|
|
30
|
+
this._isValid = isValid;
|
|
31
|
+
}
|
|
32
|
+
get value() {
|
|
33
|
+
return this._value;
|
|
34
|
+
}
|
|
35
|
+
get isValid() {
|
|
36
|
+
return this._isValid;
|
|
37
|
+
}
|
|
38
|
+
get isEmpty() {
|
|
39
|
+
return isNullOrWhitespace(this._value);
|
|
40
|
+
}
|
|
41
|
+
}
|
|
42
|
+
export class FundUsi extends StaticFormField {
|
|
43
|
+
constructor(value, isValid) {
|
|
44
|
+
super('Fund USI', value, isValid);
|
|
45
|
+
}
|
|
46
|
+
}
|
|
47
|
+
export class FundName extends StaticFormField {
|
|
48
|
+
constructor(value, isValid) {
|
|
49
|
+
super('Fund name', value, isValid);
|
|
50
|
+
}
|
|
51
|
+
}
|
|
52
|
+
export class SmsfFundName extends FormField {
|
|
53
|
+
constructor(value) {
|
|
54
|
+
super('Fund name', value);
|
|
55
|
+
}
|
|
56
|
+
validateAndReturnErrorMessage(newValue) {
|
|
57
|
+
if (isNullOrWhitespace(newValue)) {
|
|
58
|
+
return 'Fund name is required.';
|
|
59
|
+
}
|
|
60
|
+
else if (newValue.length < 2) {
|
|
61
|
+
return 'Enter a valid Fund name.';
|
|
62
|
+
}
|
|
63
|
+
else {
|
|
64
|
+
return null;
|
|
65
|
+
}
|
|
66
|
+
}
|
|
67
|
+
}
|
|
68
|
+
export class MemberNumber extends FormField {
|
|
69
|
+
constructor(value) {
|
|
70
|
+
super('Member number', value);
|
|
71
|
+
}
|
|
72
|
+
validateAndReturnErrorMessage(newValue) {
|
|
73
|
+
const regex = /^[A-Za-z0-9]{4,16}$/;
|
|
74
|
+
if (isNullOrWhitespace(newValue)) {
|
|
75
|
+
return 'Member number is required.';
|
|
76
|
+
}
|
|
77
|
+
else if (!regex.test(newValue)) {
|
|
78
|
+
return 'Enter a valid member number (only numbers and / or letters)';
|
|
79
|
+
}
|
|
80
|
+
else {
|
|
81
|
+
return null;
|
|
82
|
+
}
|
|
83
|
+
}
|
|
84
|
+
}
|
|
85
|
+
export class MemberLastName extends FormField {
|
|
86
|
+
constructor(value) {
|
|
87
|
+
super('Member last name', value);
|
|
88
|
+
}
|
|
89
|
+
validateAndReturnErrorMessage(newValue) {
|
|
90
|
+
const regex = new RegExp(NAME_PATTERN);
|
|
91
|
+
if (isNullOrWhitespace(newValue)) {
|
|
92
|
+
return 'Member last name is required.';
|
|
93
|
+
}
|
|
94
|
+
else if (!regex.test(newValue)) {
|
|
95
|
+
return 'Member last name contains unsupported characters.';
|
|
96
|
+
}
|
|
97
|
+
else {
|
|
98
|
+
return null;
|
|
99
|
+
}
|
|
100
|
+
}
|
|
101
|
+
}
|
|
102
|
+
export class MemberGivenNames extends FormField {
|
|
103
|
+
constructor(value) {
|
|
104
|
+
super('Member given name(s)', value);
|
|
105
|
+
}
|
|
106
|
+
validateAndReturnErrorMessage(newValue) {
|
|
107
|
+
const regex = new RegExp(NAME_PATTERN);
|
|
108
|
+
if (isNullOrWhitespace(newValue)) {
|
|
109
|
+
return 'Member given name(s) is required.';
|
|
110
|
+
}
|
|
111
|
+
else if (!regex.test(newValue)) {
|
|
112
|
+
return 'Member given name(s) contains unsupported characters.';
|
|
113
|
+
}
|
|
114
|
+
else {
|
|
115
|
+
return null;
|
|
116
|
+
}
|
|
117
|
+
}
|
|
118
|
+
}
|
|
119
|
+
export class FundAbn extends StaticFormField {
|
|
120
|
+
constructor(value, isValid) {
|
|
121
|
+
super('Fund ABN', value, isValid);
|
|
122
|
+
}
|
|
123
|
+
}
|
|
124
|
+
export class FundEsa extends FormField {
|
|
125
|
+
constructor(value) {
|
|
126
|
+
super('Fund ESA', value);
|
|
127
|
+
}
|
|
128
|
+
validateAndReturnErrorMessage(newValue) {
|
|
129
|
+
if (isNullOrWhitespace(newValue)) {
|
|
130
|
+
return 'Fund ESA is required.';
|
|
131
|
+
}
|
|
132
|
+
else if (newValue.length < 2) {
|
|
133
|
+
return 'Enter a valid Fund ESA.';
|
|
134
|
+
}
|
|
135
|
+
else {
|
|
136
|
+
return null;
|
|
137
|
+
}
|
|
138
|
+
}
|
|
139
|
+
}
|
|
140
|
+
export class FundAddressLine1 extends FormField {
|
|
141
|
+
constructor(value) {
|
|
142
|
+
super('Address line 1', value);
|
|
143
|
+
}
|
|
144
|
+
validateAndReturnErrorMessage(newValue) {
|
|
145
|
+
if (isNullOrWhitespace(newValue)) {
|
|
146
|
+
return 'Address line 1 is required.';
|
|
147
|
+
}
|
|
148
|
+
else if (newValue.length < 2) {
|
|
149
|
+
return 'Enter a valid Address line 1.';
|
|
150
|
+
}
|
|
151
|
+
else {
|
|
152
|
+
return null;
|
|
153
|
+
}
|
|
154
|
+
}
|
|
155
|
+
}
|
|
156
|
+
export class FundAddressLine2 extends FormField {
|
|
157
|
+
constructor(value) {
|
|
158
|
+
super('Address line 2', value);
|
|
159
|
+
}
|
|
160
|
+
validateAndReturnErrorMessage(_newValue) {
|
|
161
|
+
return null;
|
|
162
|
+
}
|
|
163
|
+
}
|
|
164
|
+
export class FundAddressCity extends FormField {
|
|
165
|
+
constructor(value) {
|
|
166
|
+
super('City/suburb', value);
|
|
167
|
+
}
|
|
168
|
+
validateAndReturnErrorMessage(newValue) {
|
|
169
|
+
if (isNullOrWhitespace(newValue)) {
|
|
170
|
+
return 'City/suburb is required.';
|
|
171
|
+
}
|
|
172
|
+
else {
|
|
173
|
+
return null;
|
|
174
|
+
}
|
|
175
|
+
}
|
|
176
|
+
}
|
|
177
|
+
export class FundAddressPostcode extends FormField {
|
|
178
|
+
constructor(value) {
|
|
179
|
+
super('Postcode', value);
|
|
180
|
+
}
|
|
181
|
+
validateAndReturnErrorMessage(newValue) {
|
|
182
|
+
const regex = /^[0-9]{4}$/;
|
|
183
|
+
if (isNullOrWhitespace(newValue)) {
|
|
184
|
+
return 'Postcode is required.';
|
|
185
|
+
}
|
|
186
|
+
else if (!regex.test(newValue)) {
|
|
187
|
+
return 'Enter a valid postcode.';
|
|
188
|
+
}
|
|
189
|
+
else {
|
|
190
|
+
return null;
|
|
191
|
+
}
|
|
192
|
+
}
|
|
193
|
+
}
|
|
194
|
+
export class FundAddressState extends FormField {
|
|
195
|
+
constructor(value) {
|
|
196
|
+
super('State', value);
|
|
197
|
+
}
|
|
198
|
+
get options() {
|
|
199
|
+
return [
|
|
200
|
+
{ value: 'NSW', label: 'NSW' },
|
|
201
|
+
{ value: 'QLD', label: 'QLD' },
|
|
202
|
+
{ value: 'ACT', label: 'ACT' },
|
|
203
|
+
{ value: 'VIC', label: 'VIC' },
|
|
204
|
+
{ value: 'TAS', label: 'TAS' },
|
|
205
|
+
{ value: 'WA', label: 'WA' },
|
|
206
|
+
{ value: 'SA', label: 'SA' },
|
|
207
|
+
{ value: 'NT', label: 'NT' }
|
|
208
|
+
];
|
|
209
|
+
}
|
|
210
|
+
validateAndReturnErrorMessage(newValue) {
|
|
211
|
+
if (isNullOrWhitespace(newValue)) {
|
|
212
|
+
return 'State is required.';
|
|
213
|
+
}
|
|
214
|
+
else if (this.options.find((option) => (option.value = newValue)) === undefined) {
|
|
215
|
+
return 'Enter a valid state.';
|
|
216
|
+
}
|
|
217
|
+
else {
|
|
218
|
+
return null;
|
|
219
|
+
}
|
|
220
|
+
}
|
|
221
|
+
}
|
|
222
|
+
export class FundAddress extends StaticFormField {
|
|
223
|
+
constructor(addrLine1, addrLine2, city, state, postcode) {
|
|
224
|
+
const value = [addrLine1, addrLine2, city, state, postcode]
|
|
225
|
+
.map((x) => x.value)
|
|
226
|
+
.filter((v) => v)
|
|
227
|
+
.join(', ');
|
|
228
|
+
const isValid = addrLine1.isValid && addrLine2.isValid && city.isValid && state.isValid && postcode.isValid;
|
|
229
|
+
super('Fund address', value, isValid);
|
|
230
|
+
}
|
|
231
|
+
}
|
|
232
|
+
export class BankAccountName extends FormField {
|
|
233
|
+
constructor(value) {
|
|
234
|
+
super('Account name', value);
|
|
235
|
+
}
|
|
236
|
+
validateAndReturnErrorMessage(newValue) {
|
|
237
|
+
if (isNullOrWhitespace(newValue)) {
|
|
238
|
+
return 'Account name is required.';
|
|
239
|
+
}
|
|
240
|
+
else if (newValue.length < 2) {
|
|
241
|
+
return 'Enter a valid Account name.';
|
|
242
|
+
}
|
|
243
|
+
else {
|
|
244
|
+
return null;
|
|
245
|
+
}
|
|
246
|
+
}
|
|
247
|
+
}
|
|
248
|
+
export class BankAccountBsb extends FormField {
|
|
249
|
+
constructor(value) {
|
|
250
|
+
super('BSB', value);
|
|
251
|
+
}
|
|
252
|
+
validateAndReturnErrorMessage(newValue) {
|
|
253
|
+
const regex = /^[0-9]{6,7}$/;
|
|
254
|
+
if (isNullOrWhitespace(newValue)) {
|
|
255
|
+
return 'BSB is required.';
|
|
256
|
+
}
|
|
257
|
+
else if (!regex.test(newValue)) {
|
|
258
|
+
return 'Enter a valid BSB.';
|
|
259
|
+
}
|
|
260
|
+
else {
|
|
261
|
+
return null;
|
|
262
|
+
}
|
|
263
|
+
}
|
|
264
|
+
}
|
|
265
|
+
export class BankAccountNumber extends FormField {
|
|
266
|
+
constructor(value) {
|
|
267
|
+
super('Account number', value);
|
|
268
|
+
}
|
|
269
|
+
validateAndReturnErrorMessage(newValue) {
|
|
270
|
+
const regex = /^[0-9]{2,11}$/;
|
|
271
|
+
if (isNullOrWhitespace(newValue)) {
|
|
272
|
+
return 'Account number is required.';
|
|
273
|
+
}
|
|
274
|
+
else if (!regex.test(newValue)) {
|
|
275
|
+
return 'Enter a valid Account number.';
|
|
276
|
+
}
|
|
277
|
+
else {
|
|
278
|
+
return null;
|
|
279
|
+
}
|
|
280
|
+
}
|
|
281
|
+
}
|
package/dist/lib/collection/components/super-selection-app/prefill-fund/prefill-warning-box.js
ADDED
|
@@ -0,0 +1,46 @@
|
|
|
1
|
+
import { Component, h, Prop } from '@stencil/core';
|
|
2
|
+
export class PrefillWarningBox {
|
|
3
|
+
render() {
|
|
4
|
+
const bgColour = 'bg-yellow-50';
|
|
5
|
+
const accentColour = 'bg-yellow-400';
|
|
6
|
+
const textColour = 'text-yellow-700';
|
|
7
|
+
const bulletColour = '#B45309';
|
|
8
|
+
const BulletIcon = () => {
|
|
9
|
+
return (h("div", { class: "flex justify-center items-center pt-2" },
|
|
10
|
+
h("div", { class: "w-1.5 h-1.5 fill-yellow-700" },
|
|
11
|
+
h("svg", { width: "6", height: "6", viewBox: "0 0 6 6", fill: "none", xmlns: "http://www.w3.org/2000/svg" },
|
|
12
|
+
h("circle", { id: "Bullet", cx: "3", cy: "3", r: "3", fill: bulletColour })))));
|
|
13
|
+
};
|
|
14
|
+
const WarningIcon = () => {
|
|
15
|
+
return (h("div", { class: "w-5 h-5" },
|
|
16
|
+
h("svg", { xmlns: "http://www.w3.org/2000/svg", width: "20", height: "20", viewBox: "0 0 20 20", fill: "none" },
|
|
17
|
+
h("path", { "fill-rule": "evenodd", "clip-rule": "evenodd", d: "M8.25706 3.09882C9.02167 1.73952 10.9788 1.73952 11.7434 3.09882L17.3237 13.0194C18.0736 14.3526 17.1102 15.9999 15.5805 15.9999H4.4199C2.89025 15.9999 1.92682 14.3526 2.67675 13.0194L8.25706 3.09882ZM11.0001 13C11.0001 13.5523 10.5524 14 10.0001 14C9.44784 14 9.00012 13.5523 9.00012 13C9.00012 12.4477 9.44784 12 10.0001 12C10.5524 12 11.0001 12.4477 11.0001 13ZM10.0001 5C9.44784 5 9.00012 5.44772 9.00012 6V9C9.00012 9.55228 9.44784 10 10.0001 10C10.5524 10 11.0001 9.55228 11.0001 9V6C11.0001 5.44772 10.5524 5 10.0001 5Z", fill: "#FBBF24" }))));
|
|
18
|
+
};
|
|
19
|
+
return (h("div", { class: 'flex items-start self-stretch rounded-md ' + bgColour },
|
|
20
|
+
h("div", { class: 'w-1 self-stretch ' + accentColour }),
|
|
21
|
+
h("div", { class: "flex items-start gap-3 flex-[1_0_0] p-4" },
|
|
22
|
+
h(WarningIcon, null),
|
|
23
|
+
h("div", { class: "flex flex-col items-start gap-2 flex-[1_0_0]" },
|
|
24
|
+
h("div", { class: "flex flex-col items-start gap-1 self-stretch" }, this.notificationList.map((text) => (h("div", { class: "flex items-start gap-[7px] self-stretch pl-0" },
|
|
25
|
+
h(BulletIcon, null),
|
|
26
|
+
h("div", { class: 'flex-[1_0_0] text-sm not-italic font-normal leading-5 ' + textColour }, text)))))))));
|
|
27
|
+
}
|
|
28
|
+
static get is() { return "sss-prefill-warning-box"; }
|
|
29
|
+
static get properties() { return {
|
|
30
|
+
"notificationList": {
|
|
31
|
+
"type": "unknown",
|
|
32
|
+
"mutable": false,
|
|
33
|
+
"complexType": {
|
|
34
|
+
"original": "string[]",
|
|
35
|
+
"resolved": "string[]",
|
|
36
|
+
"references": {}
|
|
37
|
+
},
|
|
38
|
+
"required": false,
|
|
39
|
+
"optional": false,
|
|
40
|
+
"docs": {
|
|
41
|
+
"tags": [],
|
|
42
|
+
"text": ""
|
|
43
|
+
}
|
|
44
|
+
}
|
|
45
|
+
}; }
|
|
46
|
+
}
|
|
@@ -0,0 +1,73 @@
|
|
|
1
|
+
import { Component, h, Prop, State } from '@stencil/core';
|
|
2
|
+
import { isSome } from 'fp-ts/Option';
|
|
3
|
+
import navigationService from '../services/navigation.service';
|
|
4
|
+
import { SuperSelectionAppRoutes } from '../services/super-selection-app.routes';
|
|
5
|
+
import superSelectionAppService from '../services/super-selection-app.service';
|
|
6
|
+
export class Prefill {
|
|
7
|
+
constructor() {
|
|
8
|
+
this.prefill = undefined;
|
|
9
|
+
}
|
|
10
|
+
async componentWillLoad() {
|
|
11
|
+
this.prefill = isSome(superSelectionAppService.state.superChoicePrefill)
|
|
12
|
+
? superSelectionAppService.state.superChoicePrefill.value
|
|
13
|
+
: undefined;
|
|
14
|
+
}
|
|
15
|
+
render() {
|
|
16
|
+
if (this.prefill && this.prefill.type === 'myOwnFund') {
|
|
17
|
+
if (this.prefill.data.fundDetail.type === 'Valid') {
|
|
18
|
+
return this.renderMyOwnFund(this.prefill.data);
|
|
19
|
+
}
|
|
20
|
+
else {
|
|
21
|
+
return this.renderInvalidMyOwnFund(this.prefill.data);
|
|
22
|
+
}
|
|
23
|
+
}
|
|
24
|
+
if (this.prefill && this.prefill.type === 'smsf') {
|
|
25
|
+
if (this.prefill.data.fundAbn.valid) {
|
|
26
|
+
return this.renderSMSF(this.prefill.data);
|
|
27
|
+
}
|
|
28
|
+
else {
|
|
29
|
+
return this.renderInvalidSMSF(this.prefill.data);
|
|
30
|
+
}
|
|
31
|
+
}
|
|
32
|
+
navigationService.navigateInternally(this.history, SuperSelectionAppRoutes.ConsentPage);
|
|
33
|
+
return null;
|
|
34
|
+
}
|
|
35
|
+
renderMyOwnFund(data) {
|
|
36
|
+
return h("sss-prefill-my-own-fund", { history: this.history, prefill: data });
|
|
37
|
+
}
|
|
38
|
+
renderInvalidMyOwnFund(data) {
|
|
39
|
+
return h("sss-prefill-invalid-my-own-fund", { history: this.history, prefill: data });
|
|
40
|
+
}
|
|
41
|
+
renderSMSF(data) {
|
|
42
|
+
return h("sss-prefill-smsf", { history: this.history, prefill: data });
|
|
43
|
+
}
|
|
44
|
+
renderInvalidSMSF(data) {
|
|
45
|
+
return h("sss-prefill-invalid-smsf", { history: this.history, prefill: data });
|
|
46
|
+
}
|
|
47
|
+
static get is() { return "sss-prefill"; }
|
|
48
|
+
static get properties() { return {
|
|
49
|
+
"history": {
|
|
50
|
+
"type": "unknown",
|
|
51
|
+
"mutable": false,
|
|
52
|
+
"complexType": {
|
|
53
|
+
"original": "RouterHistory",
|
|
54
|
+
"resolved": "RouterHistory",
|
|
55
|
+
"references": {
|
|
56
|
+
"RouterHistory": {
|
|
57
|
+
"location": "import",
|
|
58
|
+
"path": "@stencil/router"
|
|
59
|
+
}
|
|
60
|
+
}
|
|
61
|
+
},
|
|
62
|
+
"required": false,
|
|
63
|
+
"optional": false,
|
|
64
|
+
"docs": {
|
|
65
|
+
"tags": [],
|
|
66
|
+
"text": ""
|
|
67
|
+
}
|
|
68
|
+
}
|
|
69
|
+
}; }
|
|
70
|
+
static get states() { return {
|
|
71
|
+
"prefill": {}
|
|
72
|
+
}; }
|
|
73
|
+
}
|
package/dist/lib/collection/components/super-selection-app/services/event-tracking.service.js
CHANGED
|
@@ -91,6 +91,16 @@ export class EventTrackingService {
|
|
|
91
91
|
SuperFundDisclaimerAccepted: detail
|
|
92
92
|
});
|
|
93
93
|
}
|
|
94
|
+
async TrackSuperFundPrefillViewedAsync(detail) {
|
|
95
|
+
return this.trackEventAsync({
|
|
96
|
+
SuperFundPrefillViewed: detail
|
|
97
|
+
});
|
|
98
|
+
}
|
|
99
|
+
async TrackSuperFundPrefillDeclinedAsync(detail) {
|
|
100
|
+
return this.trackEventAsync({
|
|
101
|
+
SuperFundPrefillDeclined: detail
|
|
102
|
+
});
|
|
103
|
+
}
|
|
94
104
|
async trackEventAsync(event) {
|
|
95
105
|
try {
|
|
96
106
|
await this.eventTrackingApi.PostAnalyticsEventAsync({ event });
|
package/dist/lib/collection/components/super-selection-app/services/super-selection-app.routes.js
CHANGED
|
@@ -8,6 +8,11 @@ export var SuperSelectionAppRoutes;
|
|
|
8
8
|
SuperSelectionAppRoutes["PromotedFundJoinV1"] = "/promoted-fund/join/v1";
|
|
9
9
|
SuperSelectionAppRoutes["PromotedFundJoinV2"] = "/promoted-fund/join/v2";
|
|
10
10
|
SuperSelectionAppRoutes["MyOwnFund"] = "/super-choice/my-own-fund/";
|
|
11
|
+
SuperSelectionAppRoutes["Prefill"] = "/super-choice/prefill/";
|
|
12
|
+
SuperSelectionAppRoutes["PrefillInvalidMyOwnFundPage"] = "/super-choice/sss-prefill-invalid-my-own-fund/";
|
|
13
|
+
SuperSelectionAppRoutes["PrefillMyOwnFundPage"] = "/super-choice/prefill-my-own-fund/";
|
|
14
|
+
SuperSelectionAppRoutes["PrefillSMSFPage"] = "/super-choice/prefill-smsf/";
|
|
15
|
+
SuperSelectionAppRoutes["PrefillInvalidSMSFPage"] = "/super-choice/prefill-invalid-smsf/";
|
|
11
16
|
SuperSelectionAppRoutes["SelfManagedFund"] = "/super-choice/smsf/";
|
|
12
17
|
SuperSelectionAppRoutes["DefaultFund"] = "/super-choice/default/";
|
|
13
18
|
SuperSelectionAppRoutes["StandardChoice"] = "/standard-choice/";
|
|
@@ -21,6 +26,11 @@ export const superSelectionAppStencilRoutes = [
|
|
|
21
26
|
h("stencil-route", { url: SuperSelectionAppRoutes.PromotedFundJoinV1, component: "sss-promoted-fund-join-v1-page" }),
|
|
22
27
|
h("stencil-route", { url: SuperSelectionAppRoutes.PromotedFundJoinV2, component: "sss-promoted-fund-join-v2-page" }),
|
|
23
28
|
h("stencil-route", { url: SuperSelectionAppRoutes.MyOwnFund, component: "sss-my-own-fund" }),
|
|
29
|
+
h("stencil-route", { url: SuperSelectionAppRoutes.PrefillInvalidMyOwnFundPage, component: "sss-prefill-invalid-my-own-fund" }),
|
|
30
|
+
h("stencil-route", { url: SuperSelectionAppRoutes.Prefill, component: "sss-prefill" }),
|
|
31
|
+
h("stencil-route", { url: SuperSelectionAppRoutes.PrefillMyOwnFundPage, component: "sss-prefill-my-own-fund" }),
|
|
32
|
+
h("stencil-route", { url: SuperSelectionAppRoutes.PrefillSMSFPage, component: "sss-prefill-smsf" }),
|
|
33
|
+
h("stencil-route", { url: SuperSelectionAppRoutes.PrefillInvalidSMSFPage, component: "sss-prefill-invalid-smsf" }),
|
|
24
34
|
h("stencil-route", { url: SuperSelectionAppRoutes.SelfManagedFund, component: "sss-self-managed-fund" }),
|
|
25
35
|
h("stencil-route", { url: SuperSelectionAppRoutes.DefaultFund, component: "sss-default-fund" }),
|
|
26
36
|
h("stencil-route", { url: SuperSelectionAppRoutes.StandardChoice, component: "sss-standard-choice-form" }),
|
package/dist/lib/collection/components/super-selection-app/services/super-selection-app.service.js
CHANGED
|
@@ -99,6 +99,7 @@ export class SuperSelectionAppService {
|
|
|
99
99
|
this._state.superBuyer = O.fromNullable(appStateResponse.superBuyer);
|
|
100
100
|
this._state.promotedFunds = O.fromNullable(appStateResponse.promotedFunds);
|
|
101
101
|
this._state.campaignConnectEnabled = appStateResponse.campaignConnectEnabled;
|
|
102
|
+
this._state.superChoicePrefill = O.fromNullable(appStateResponse.prefill);
|
|
102
103
|
if (this._state.campaignConnectEnabled) {
|
|
103
104
|
this._state.campaignConnectPromise = O.fromNullable(superSelectionApi.getCampaignConnectAsync());
|
|
104
105
|
}
|
|
@@ -53,7 +53,10 @@ export class SuperSelectionApp {
|
|
|
53
53
|
iframe.appReady();
|
|
54
54
|
const ignoreExistingSelectionOption = O.fromNullable(this.ignoreExistingSelection);
|
|
55
55
|
const shouldIgnoreExistingChoice = isSome(ignoreExistingSelectionOption) && ignoreExistingSelectionOption.value;
|
|
56
|
-
if (isSome(
|
|
56
|
+
if (isSome(superSelectionAppService.state.superChoicePrefill)) {
|
|
57
|
+
navigationService.navigateInternally(this.history, SuperSelectionAppRoutes.Prefill);
|
|
58
|
+
}
|
|
59
|
+
else if (isSome(chosenFundOption) &&
|
|
57
60
|
chosenFundOption.value.valid !== 'Inactive' &&
|
|
58
61
|
!shouldIgnoreExistingChoice) {
|
|
59
62
|
navigationService.navigateInternally(this.history, SuperSelectionAppRoutes.ExistingChoicePage);
|
|
@@ -16,5 +16,5 @@ const patchBrowser = () => {
|
|
|
16
16
|
|
|
17
17
|
patchBrowser().then(options => {
|
|
18
18
|
globalScripts();
|
|
19
|
-
return bootstrapLazy([["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]}]]],["sss-
|
|
19
|
+
return bootstrapLazy([["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]}]]],["sss-button_38",[[0,"sss-prefill",{"history":[16],"prefill":[32]}],[0,"sss-my-own-fund",{"history":[16],"formState":[32],"isNotAllInformationProvidedMessageVisible":[32],"isSubmitDisabled":[32]}],[0,"sss-self-managed-fund",{"history":[16],"formState":[32],"isSubmitDisabled":[32]}],[0,"sss-super-choice-page",{"history":[16],"promotedFunds":[32],"campaignConnectRequestInProgress":[32]}],[1,"super-selection-app-host",{"sessionState":[32],"jwt":[32],"appConfiguration":[32],"ignoreExistingSelection":[32]}],[0,"sss-default-fund",{"history":[16],"defaultFundProductName":[32]}],[0,"sss-standard-choice-form",{"history":[16],"standardChoiceFormSignature":[32],"formState":[32],"isSubmitDisabled":[32]}],[0,"sss-consent-page",{"history":[16]}],[0,"sss-existing-choice-page",{"history":[16],"existingFund":[32]}],[0,"sss-promoted-fund-join-v1-page",{"history":[16]}],[0,"sss-promoted-fund-join-v2-page",{"history":[16]}],[0,"sss-slate-join-page",{"history":[16]}],[0,"sss-success"],[0,"sss-prefill-my-own-fund",{"history":[16],"prefill":[16],"mode":[32],"formState":[32],"isSubmitDisabled":[32],"fundUsi":[32],"fundName":[32],"memberNumber":[32],"memberGivenNames":[32],"memberLastName":[32]}],[0,"sss-prefill-smsf",{"history":[16],"prefill":[16],"mode":[32],"formState":[32],"isSubmitDisabled":[32],"fundName":[32],"fundAbn":[32],"fundEsa":[32],"fundAddressLine1":[32],"fundAddressLine2":[32],"fundAddressCity":[32],"fundAddressPostcode":[32],"fundAddressState":[32],"fundAddress":[32],"memberGivenNames":[32],"memberLastName":[32],"bankAccountName":[32],"bankAccountBsb":[32],"bankAccountNumber":[32]}],[0,"sss-prefill-invalid-my-own-fund",{"history":[16],"prefill":[16],"fundUsi":[32],"fundName":[32],"memberNumber":[32],"memberGivenNames":[32],"memberLastName":[32]}],[0,"sss-prefill-invalid-smsf",{"history":[16],"prefill":[16],"fundName":[32],"fundAbn":[32],"fundEsa":[32],"fundAddressLine1":[32],"fundAddressLine2":[32],"fundAddressCity":[32],"fundAddressPostcode":[32],"fundAddressState":[32],"fundAddress":[32],"memberGivenNames":[32],"memberLastName":[32],"bankAccountName":[32],"bankAccountBsb":[32],"bankAccountNumber":[32]}],[1,"super-selection-app",{"ignoreExistingSelection":[4,"ignore-existing-selection"],"accessToken":[1,"access-token"],"backendUrl":[1,"backend-url"],"appBaseUrl":[1,"app-base-url"],"history":[16],"location":[16],"isSelfHosted":[4,"is-self-hosted"],"isAppInitialised":[32]}],[0,"sss-my-own-fund-inputs",{"myOwnFundForm":[16],"showValidationErrors":[4,"show-validation-errors"],"selectedOption":[32]}],[0,"sss-self-managed-fund-inputs",{"fundForm":[16],"showValidationErrors":[4,"show-validation-errors"],"isAbnValid":[32],"isAbnTouched":[32],"isAbnUsedForRegulated":[32],"currentBank":[32],"addressErrorMessage":[32]}],[0,"sss-super-choice-item-bottom",{"disclaimer":[16],"abnInfo":[1,"abn-info"],"abn":[1],"isMultiFund":[4,"is-multi-fund"]}],[0,"sss-loading-page"],[0,"sss-super-choice-item-top",{"name":[1],"logo":[1],"features":[16],"featureSubText":[16],"isMultiFund":[4,"is-multi-fund"],"isPromotedDefault":[4,"is-promoted-default"]}],[0,"sss-dropdown-async",{"placeholder":[1],"searchFunction":[16],"value":[16],"required":[4],"requiredValidationMessage":[1,"required-validation-message"],"disabled":[4],"minSearchStringLength":[2,"min-search-string-length"],"showValidationErrors":[4,"show-validation-errors"],"searchState":[32],"inputValue":[32],"isDropdownVisible":[32],"filteredOptions":[32],"highlightedOptionIndex":[32],"selectedOption":[32]},[[2,"focus","handleFocus"],[2,"blur","handleBlur"],[2,"keydown","handleKeyDown"]]],[0,"sss-footer-section",{"textOverride":[16]}],[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],"showFundOptionsSelection":[32]}],[0,"sss-iframe-host",{"build":[16]}],[0,"sss-prefill-warning-box",{"notificationList":[16]}],[0,"sss-header-section",{"currentPage":[1,"current-page"]}],[0,"sss-name-input",{"value":[1],"name":[1],"readableName":[1,"readable-name"],"showValidationErrors":[4,"show-validation-errors"],"errorMessage":[32]}],[0,"sss-prefill-display-field",{"field":[16]}],[0,"sss-prefill-error-box",{"withHeader":[4,"with-header"],"notificationList":[16]}],[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,"sss-button",{"fillWidth":[4,"fill-width"],"fillWidthOnMobile":[4,"fill-width-on-mobile"],"disabled":[4],"variant":[1],"size":[1],"promiseFn":[16],"state":[32]}],[0,"sss-loading-indicator",{"theme":[1],"size":[2]}],[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);
|
|
20
20
|
});
|
package/dist/lib/esm/loader.js
CHANGED
|
@@ -13,7 +13,7 @@ const defineCustomElements = (win, options) => {
|
|
|
13
13
|
if (typeof window === 'undefined') return Promise.resolve();
|
|
14
14
|
return patchEsm().then(() => {
|
|
15
15
|
globalScripts();
|
|
16
|
-
return bootstrapLazy([["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]}]]],["sss-
|
|
16
|
+
return bootstrapLazy([["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]}]]],["sss-button_38",[[0,"sss-prefill",{"history":[16],"prefill":[32]}],[0,"sss-my-own-fund",{"history":[16],"formState":[32],"isNotAllInformationProvidedMessageVisible":[32],"isSubmitDisabled":[32]}],[0,"sss-self-managed-fund",{"history":[16],"formState":[32],"isSubmitDisabled":[32]}],[0,"sss-super-choice-page",{"history":[16],"promotedFunds":[32],"campaignConnectRequestInProgress":[32]}],[1,"super-selection-app-host",{"sessionState":[32],"jwt":[32],"appConfiguration":[32],"ignoreExistingSelection":[32]}],[0,"sss-default-fund",{"history":[16],"defaultFundProductName":[32]}],[0,"sss-standard-choice-form",{"history":[16],"standardChoiceFormSignature":[32],"formState":[32],"isSubmitDisabled":[32]}],[0,"sss-consent-page",{"history":[16]}],[0,"sss-existing-choice-page",{"history":[16],"existingFund":[32]}],[0,"sss-promoted-fund-join-v1-page",{"history":[16]}],[0,"sss-promoted-fund-join-v2-page",{"history":[16]}],[0,"sss-slate-join-page",{"history":[16]}],[0,"sss-success"],[0,"sss-prefill-my-own-fund",{"history":[16],"prefill":[16],"mode":[32],"formState":[32],"isSubmitDisabled":[32],"fundUsi":[32],"fundName":[32],"memberNumber":[32],"memberGivenNames":[32],"memberLastName":[32]}],[0,"sss-prefill-smsf",{"history":[16],"prefill":[16],"mode":[32],"formState":[32],"isSubmitDisabled":[32],"fundName":[32],"fundAbn":[32],"fundEsa":[32],"fundAddressLine1":[32],"fundAddressLine2":[32],"fundAddressCity":[32],"fundAddressPostcode":[32],"fundAddressState":[32],"fundAddress":[32],"memberGivenNames":[32],"memberLastName":[32],"bankAccountName":[32],"bankAccountBsb":[32],"bankAccountNumber":[32]}],[0,"sss-prefill-invalid-my-own-fund",{"history":[16],"prefill":[16],"fundUsi":[32],"fundName":[32],"memberNumber":[32],"memberGivenNames":[32],"memberLastName":[32]}],[0,"sss-prefill-invalid-smsf",{"history":[16],"prefill":[16],"fundName":[32],"fundAbn":[32],"fundEsa":[32],"fundAddressLine1":[32],"fundAddressLine2":[32],"fundAddressCity":[32],"fundAddressPostcode":[32],"fundAddressState":[32],"fundAddress":[32],"memberGivenNames":[32],"memberLastName":[32],"bankAccountName":[32],"bankAccountBsb":[32],"bankAccountNumber":[32]}],[1,"super-selection-app",{"ignoreExistingSelection":[4,"ignore-existing-selection"],"accessToken":[1,"access-token"],"backendUrl":[1,"backend-url"],"appBaseUrl":[1,"app-base-url"],"history":[16],"location":[16],"isSelfHosted":[4,"is-self-hosted"],"isAppInitialised":[32]}],[0,"sss-my-own-fund-inputs",{"myOwnFundForm":[16],"showValidationErrors":[4,"show-validation-errors"],"selectedOption":[32]}],[0,"sss-self-managed-fund-inputs",{"fundForm":[16],"showValidationErrors":[4,"show-validation-errors"],"isAbnValid":[32],"isAbnTouched":[32],"isAbnUsedForRegulated":[32],"currentBank":[32],"addressErrorMessage":[32]}],[0,"sss-super-choice-item-bottom",{"disclaimer":[16],"abnInfo":[1,"abn-info"],"abn":[1],"isMultiFund":[4,"is-multi-fund"]}],[0,"sss-loading-page"],[0,"sss-super-choice-item-top",{"name":[1],"logo":[1],"features":[16],"featureSubText":[16],"isMultiFund":[4,"is-multi-fund"],"isPromotedDefault":[4,"is-promoted-default"]}],[0,"sss-dropdown-async",{"placeholder":[1],"searchFunction":[16],"value":[16],"required":[4],"requiredValidationMessage":[1,"required-validation-message"],"disabled":[4],"minSearchStringLength":[2,"min-search-string-length"],"showValidationErrors":[4,"show-validation-errors"],"searchState":[32],"inputValue":[32],"isDropdownVisible":[32],"filteredOptions":[32],"highlightedOptionIndex":[32],"selectedOption":[32]},[[2,"focus","handleFocus"],[2,"blur","handleBlur"],[2,"keydown","handleKeyDown"]]],[0,"sss-footer-section",{"textOverride":[16]}],[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],"showFundOptionsSelection":[32]}],[0,"sss-iframe-host",{"build":[16]}],[0,"sss-prefill-warning-box",{"notificationList":[16]}],[0,"sss-header-section",{"currentPage":[1,"current-page"]}],[0,"sss-name-input",{"value":[1],"name":[1],"readableName":[1,"readable-name"],"showValidationErrors":[4,"show-validation-errors"],"errorMessage":[32]}],[0,"sss-prefill-display-field",{"field":[16]}],[0,"sss-prefill-error-box",{"withHeader":[4,"with-header"],"notificationList":[16]}],[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,"sss-button",{"fillWidth":[4,"fill-width"],"fillWidthOnMobile":[4,"fill-width-on-mobile"],"disabled":[4],"variant":[1],"size":[1],"promiseFn":[16],"state":[32]}],[0,"sss-loading-indicator",{"theme":[1],"size":[2]}],[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);
|
|
17
17
|
});
|
|
18
18
|
};
|
|
19
19
|
|