@flarehr/apollo-super-selection 3.59.63229 → 3.60.63971
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-0f723eb4.system.js +1 -1
- package/dist/lib/apollo-super-selection/p-23565ba5.entry.js +14 -0
- package/dist/lib/apollo-super-selection/p-5ec7c48e.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_28.cjs.entry.js → sss-button_30.cjs.entry.js} +233 -57
- package/dist/lib/collection/apollo-super-selection.css +1 -1
- package/dist/lib/collection/collection-manifest.json +6 -2
- package/dist/lib/collection/components/super-selection-app/api/super-selection.api.dto.js +12 -0
- package/dist/lib/collection/components/super-selection-app/funds/constants.js +26 -8
- package/dist/lib/collection/components/super-selection-app/funds/custom-fund/self-managed-fund/self-managed-fund-inputs.js +2 -2
- package/dist/lib/collection/components/super-selection-app/funds/promoted-fund/promoted-fund-join-v1-page.js +30 -0
- package/dist/lib/collection/components/super-selection-app/funds/promoted-fund/promoted-fund-join-v2-page.js +30 -0
- package/dist/lib/collection/components/super-selection-app/funds/promoted-fund/services/{promoted-fund-join-iframe-builder.js → promoted-fund-join-v1-iframe-builder.js} +2 -2
- package/dist/lib/collection/components/super-selection-app/funds/promoted-fund/services/promoted-fund-join-v2-iframe-builder.js +117 -0
- package/dist/lib/collection/components/super-selection-app/funds/slate-super/slate-join-page.js +2 -6
- package/dist/lib/collection/components/super-selection-app/misc/iframe-host.js +32 -0
- package/dist/lib/collection/components/super-selection-app/services/super-selection-app.routes.js +4 -2
- package/dist/lib/collection/components/super-selection-app/super-choice-page/super-choice-page.js +54 -41
- package/dist/lib/collection/components/super-selection-app/super-selection-app.js +2 -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_28.entry.js → sss-button_30.entry.js} +231 -57
- 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_28.entry.js → sss-button_30.entry.js} +3 -3
- package/dist/lib/types/components/super-selection-app/api/super-selection.api.dto.d.ts +10 -0
- package/dist/lib/types/components/super-selection-app/funds/constants.d.ts +12 -0
- package/dist/lib/types/components/super-selection-app/funds/promoted-fund/{promoted-fund-join-page.d.ts → promoted-fund-join-v1-page.d.ts} +1 -3
- package/dist/lib/types/components/super-selection-app/funds/promoted-fund/promoted-fund-join-v2-page.d.ts +5 -0
- package/dist/lib/types/components/super-selection-app/funds/promoted-fund/services/{promoted-fund-join-iframe-builder.d.ts → promoted-fund-join-v1-iframe-builder.d.ts} +2 -2
- package/dist/lib/types/components/super-selection-app/funds/promoted-fund/services/promoted-fund-join-v2-iframe-builder.d.ts +9 -0
- package/dist/lib/types/components/super-selection-app/funds/slate-super/slate-join-page.d.ts +0 -2
- package/dist/lib/types/components/super-selection-app/misc/iframe-host.d.ts +6 -0
- package/dist/lib/types/components/super-selection-app/services/super-selection-app.routes.d.ts +2 -1
- package/dist/lib/types/components.d.ts +39 -9
- package/package.json +1 -1
- package/dist/lib/apollo-super-selection/p-1c352f8f.system.entry.js +0 -69
- package/dist/lib/apollo-super-selection/p-be78d5fd.entry.js +0 -14
- package/dist/lib/collection/components/super-selection-app/funds/promoted-fund/promoted-fund-join-page.js +0 -34
|
@@ -39,6 +39,16 @@ declare type PromotedFundChoiceDto = {
|
|
|
39
39
|
usi: string;
|
|
40
40
|
memberNumber: string;
|
|
41
41
|
};
|
|
42
|
+
} | {
|
|
43
|
+
australianEthical: {
|
|
44
|
+
usi: string;
|
|
45
|
+
memberNumber: string;
|
|
46
|
+
};
|
|
47
|
+
} | {
|
|
48
|
+
virgin: {
|
|
49
|
+
usi: string;
|
|
50
|
+
memberNumber: string;
|
|
51
|
+
};
|
|
42
52
|
};
|
|
43
53
|
export declare function getSuperChoiceUsi(dto: SuperChoiceDetailsDto): Option<string>;
|
|
44
54
|
export declare function getSuperChoiceMemberNumber(dto: SuperChoiceDetailsDto): Option<string>;
|
|
@@ -23,6 +23,18 @@ export declare const Active: {
|
|
|
23
23
|
PdsUrl: string;
|
|
24
24
|
Abn: string;
|
|
25
25
|
};
|
|
26
|
+
export declare const AustralianEthical: {
|
|
27
|
+
Id: string;
|
|
28
|
+
Name: string;
|
|
29
|
+
PdsUrl: string;
|
|
30
|
+
Abn: string;
|
|
31
|
+
};
|
|
32
|
+
export declare const Virgin: {
|
|
33
|
+
Id: string;
|
|
34
|
+
Name: string;
|
|
35
|
+
PdsUrl: string;
|
|
36
|
+
Abn: string;
|
|
37
|
+
};
|
|
26
38
|
export declare const PromotedFundIdList: {
|
|
27
39
|
dtoPropName: string;
|
|
28
40
|
id: string;
|
|
@@ -1,10 +1,10 @@
|
|
|
1
1
|
import { RouterHistory } from '@stencil/router';
|
|
2
|
-
declare class
|
|
2
|
+
declare class PromotedFundJoinV1IFrameBuilder {
|
|
3
3
|
build(iframe: HTMLIFrameElement, history: RouterHistory): void;
|
|
4
4
|
private getMemberData;
|
|
5
5
|
private hostIsLocalSuperSelection;
|
|
6
6
|
private environmentDiscriminator;
|
|
7
7
|
private promotedFundJoinAppUrl;
|
|
8
8
|
}
|
|
9
|
-
declare const _default:
|
|
9
|
+
declare const _default: PromotedFundJoinV1IFrameBuilder;
|
|
10
10
|
export default _default;
|
|
@@ -0,0 +1,9 @@
|
|
|
1
|
+
import { RouterHistory } from '@stencil/router';
|
|
2
|
+
declare class PromotedFundJoinV2IFrameBuilder {
|
|
3
|
+
build(iframe: HTMLIFrameElement, history: RouterHistory): void;
|
|
4
|
+
private getMemberData;
|
|
5
|
+
private environmentDiscriminator;
|
|
6
|
+
private promotedFundJoinAppUrl;
|
|
7
|
+
}
|
|
8
|
+
declare const _default: PromotedFundJoinV2IFrameBuilder;
|
|
9
|
+
export default _default;
|
package/dist/lib/types/components/super-selection-app/services/super-selection-app.routes.d.ts
CHANGED
|
@@ -3,7 +3,8 @@ export declare enum SuperSelectionAppRoutes {
|
|
|
3
3
|
ExistingChoicePage = "/existing",
|
|
4
4
|
ChoicePage = "/",
|
|
5
5
|
SlateJoin = "/slate/join/",
|
|
6
|
-
|
|
6
|
+
PromotedFundJoinV1 = "/promoted-fund/join/v1",
|
|
7
|
+
PromotedFundJoinV2 = "/promoted-fund/join/v2",
|
|
7
8
|
MyOwnFund = "/super-choice/my-own-fund/",
|
|
8
9
|
SelfManagedFund = "/super-choice/smsf/",
|
|
9
10
|
DefaultFund = "/super-choice/default/",
|
|
@@ -47,6 +47,9 @@ export namespace Components {
|
|
|
47
47
|
interface SssHeaderSection {
|
|
48
48
|
"currentPage": 'choice' | 'own-fund';
|
|
49
49
|
}
|
|
50
|
+
interface SssIframeHost {
|
|
51
|
+
"build": (iframe: HTMLIFrameElement) => void;
|
|
52
|
+
}
|
|
50
53
|
interface SssLoadingIndicator {
|
|
51
54
|
"size": number;
|
|
52
55
|
"theme": 'primary' | 'light';
|
|
@@ -60,7 +63,10 @@ export namespace Components {
|
|
|
60
63
|
"myOwnFundForm": MyOwnFundFormState;
|
|
61
64
|
"showValidationErrors": boolean;
|
|
62
65
|
}
|
|
63
|
-
interface
|
|
66
|
+
interface SssPromotedFundJoinV1Page {
|
|
67
|
+
"history": RouterHistory;
|
|
68
|
+
}
|
|
69
|
+
interface SssPromotedFundJoinV2Page {
|
|
64
70
|
"history": RouterHistory;
|
|
65
71
|
}
|
|
66
72
|
interface SssSelfManagedFund {
|
|
@@ -154,6 +160,12 @@ declare global {
|
|
|
154
160
|
prototype: HTMLSssHeaderSectionElement;
|
|
155
161
|
new (): HTMLSssHeaderSectionElement;
|
|
156
162
|
};
|
|
163
|
+
interface HTMLSssIframeHostElement extends Components.SssIframeHost, HTMLStencilElement {
|
|
164
|
+
}
|
|
165
|
+
var HTMLSssIframeHostElement: {
|
|
166
|
+
prototype: HTMLSssIframeHostElement;
|
|
167
|
+
new (): HTMLSssIframeHostElement;
|
|
168
|
+
};
|
|
157
169
|
interface HTMLSssLoadingIndicatorElement extends Components.SssLoadingIndicator, HTMLStencilElement {
|
|
158
170
|
}
|
|
159
171
|
var HTMLSssLoadingIndicatorElement: {
|
|
@@ -178,11 +190,17 @@ declare global {
|
|
|
178
190
|
prototype: HTMLSssMyOwnFundInputsElement;
|
|
179
191
|
new (): HTMLSssMyOwnFundInputsElement;
|
|
180
192
|
};
|
|
181
|
-
interface
|
|
193
|
+
interface HTMLSssPromotedFundJoinV1PageElement extends Components.SssPromotedFundJoinV1Page, HTMLStencilElement {
|
|
182
194
|
}
|
|
183
|
-
var
|
|
184
|
-
prototype:
|
|
185
|
-
new ():
|
|
195
|
+
var HTMLSssPromotedFundJoinV1PageElement: {
|
|
196
|
+
prototype: HTMLSssPromotedFundJoinV1PageElement;
|
|
197
|
+
new (): HTMLSssPromotedFundJoinV1PageElement;
|
|
198
|
+
};
|
|
199
|
+
interface HTMLSssPromotedFundJoinV2PageElement extends Components.SssPromotedFundJoinV2Page, HTMLStencilElement {
|
|
200
|
+
}
|
|
201
|
+
var HTMLSssPromotedFundJoinV2PageElement: {
|
|
202
|
+
prototype: HTMLSssPromotedFundJoinV2PageElement;
|
|
203
|
+
new (): HTMLSssPromotedFundJoinV2PageElement;
|
|
186
204
|
};
|
|
187
205
|
interface HTMLSssSelfManagedFundElement extends Components.SssSelfManagedFund, HTMLStencilElement {
|
|
188
206
|
}
|
|
@@ -259,11 +277,13 @@ declare global {
|
|
|
259
277
|
"sss-existing-choice-page": HTMLSssExistingChoicePageElement;
|
|
260
278
|
"sss-footer-section": HTMLSssFooterSectionElement;
|
|
261
279
|
"sss-header-section": HTMLSssHeaderSectionElement;
|
|
280
|
+
"sss-iframe-host": HTMLSssIframeHostElement;
|
|
262
281
|
"sss-loading-indicator": HTMLSssLoadingIndicatorElement;
|
|
263
282
|
"sss-loading-page": HTMLSssLoadingPageElement;
|
|
264
283
|
"sss-my-own-fund": HTMLSssMyOwnFundElement;
|
|
265
284
|
"sss-my-own-fund-inputs": HTMLSssMyOwnFundInputsElement;
|
|
266
|
-
"sss-promoted-fund-join-page":
|
|
285
|
+
"sss-promoted-fund-join-v1-page": HTMLSssPromotedFundJoinV1PageElement;
|
|
286
|
+
"sss-promoted-fund-join-v2-page": HTMLSssPromotedFundJoinV2PageElement;
|
|
267
287
|
"sss-self-managed-fund": HTMLSssSelfManagedFundElement;
|
|
268
288
|
"sss-self-managed-fund-inputs": HTMLSssSelfManagedFundInputsElement;
|
|
269
289
|
"sss-slate-join-page": HTMLSssSlateJoinPageElement;
|
|
@@ -313,6 +333,9 @@ declare namespace LocalJSX {
|
|
|
313
333
|
interface SssHeaderSection {
|
|
314
334
|
"currentPage"?: 'choice' | 'own-fund';
|
|
315
335
|
}
|
|
336
|
+
interface SssIframeHost {
|
|
337
|
+
"build"?: (iframe: HTMLIFrameElement) => void;
|
|
338
|
+
}
|
|
316
339
|
interface SssLoadingIndicator {
|
|
317
340
|
"size"?: number;
|
|
318
341
|
"theme"?: 'primary' | 'light';
|
|
@@ -327,7 +350,10 @@ declare namespace LocalJSX {
|
|
|
327
350
|
"onFormChanged"?: (event: CustomEvent<Partial<MyOwnFundFormState>>) => void;
|
|
328
351
|
"showValidationErrors"?: boolean;
|
|
329
352
|
}
|
|
330
|
-
interface
|
|
353
|
+
interface SssPromotedFundJoinV1Page {
|
|
354
|
+
"history"?: RouterHistory;
|
|
355
|
+
}
|
|
356
|
+
interface SssPromotedFundJoinV2Page {
|
|
331
357
|
"history"?: RouterHistory;
|
|
332
358
|
}
|
|
333
359
|
interface SssSelfManagedFund {
|
|
@@ -386,11 +412,13 @@ declare namespace LocalJSX {
|
|
|
386
412
|
"sss-existing-choice-page": SssExistingChoicePage;
|
|
387
413
|
"sss-footer-section": SssFooterSection;
|
|
388
414
|
"sss-header-section": SssHeaderSection;
|
|
415
|
+
"sss-iframe-host": SssIframeHost;
|
|
389
416
|
"sss-loading-indicator": SssLoadingIndicator;
|
|
390
417
|
"sss-loading-page": SssLoadingPage;
|
|
391
418
|
"sss-my-own-fund": SssMyOwnFund;
|
|
392
419
|
"sss-my-own-fund-inputs": SssMyOwnFundInputs;
|
|
393
|
-
"sss-promoted-fund-join-page":
|
|
420
|
+
"sss-promoted-fund-join-v1-page": SssPromotedFundJoinV1Page;
|
|
421
|
+
"sss-promoted-fund-join-v2-page": SssPromotedFundJoinV2Page;
|
|
394
422
|
"sss-self-managed-fund": SssSelfManagedFund;
|
|
395
423
|
"sss-self-managed-fund-inputs": SssSelfManagedFundInputs;
|
|
396
424
|
"sss-slate-join-page": SssSlateJoinPage;
|
|
@@ -416,11 +444,13 @@ declare module "@stencil/core" {
|
|
|
416
444
|
"sss-existing-choice-page": LocalJSX.SssExistingChoicePage & JSXBase.HTMLAttributes<HTMLSssExistingChoicePageElement>;
|
|
417
445
|
"sss-footer-section": LocalJSX.SssFooterSection & JSXBase.HTMLAttributes<HTMLSssFooterSectionElement>;
|
|
418
446
|
"sss-header-section": LocalJSX.SssHeaderSection & JSXBase.HTMLAttributes<HTMLSssHeaderSectionElement>;
|
|
447
|
+
"sss-iframe-host": LocalJSX.SssIframeHost & JSXBase.HTMLAttributes<HTMLSssIframeHostElement>;
|
|
419
448
|
"sss-loading-indicator": LocalJSX.SssLoadingIndicator & JSXBase.HTMLAttributes<HTMLSssLoadingIndicatorElement>;
|
|
420
449
|
"sss-loading-page": LocalJSX.SssLoadingPage & JSXBase.HTMLAttributes<HTMLSssLoadingPageElement>;
|
|
421
450
|
"sss-my-own-fund": LocalJSX.SssMyOwnFund & JSXBase.HTMLAttributes<HTMLSssMyOwnFundElement>;
|
|
422
451
|
"sss-my-own-fund-inputs": LocalJSX.SssMyOwnFundInputs & JSXBase.HTMLAttributes<HTMLSssMyOwnFundInputsElement>;
|
|
423
|
-
"sss-promoted-fund-join-page": LocalJSX.
|
|
452
|
+
"sss-promoted-fund-join-v1-page": LocalJSX.SssPromotedFundJoinV1Page & JSXBase.HTMLAttributes<HTMLSssPromotedFundJoinV1PageElement>;
|
|
453
|
+
"sss-promoted-fund-join-v2-page": LocalJSX.SssPromotedFundJoinV2Page & JSXBase.HTMLAttributes<HTMLSssPromotedFundJoinV2PageElement>;
|
|
424
454
|
"sss-self-managed-fund": LocalJSX.SssSelfManagedFund & JSXBase.HTMLAttributes<HTMLSssSelfManagedFundElement>;
|
|
425
455
|
"sss-self-managed-fund-inputs": LocalJSX.SssSelfManagedFundInputs & JSXBase.HTMLAttributes<HTMLSssSelfManagedFundInputsElement>;
|
|
426
456
|
"sss-slate-join-page": LocalJSX.SssSlateJoinPage & JSXBase.HTMLAttributes<HTMLSssSlateJoinPageElement>;
|