@flarehr/apollo-super-selection 4.21.28044 → 4.23.28756
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-700e63e9.entry.js +14 -0
- package/dist/lib/apollo-super-selection/p-b2e70c5f.system.entry.js +69 -0
- package/dist/lib/apollo-super-selection/p-bdcfc026.system.js +1 -1
- package/dist/lib/cjs/sss-button_30.cjs.entry.js +293 -228
- package/dist/lib/collection/apollo-super-selection.css +1 -1
- package/dist/lib/collection/components/super-selection-app/funds/constants.js +25 -99
- package/dist/lib/collection/components/super-selection-app/funds/custom-fund/my-own-fund/my-own-fund-inputs.js +6 -0
- package/dist/lib/collection/components/super-selection-app/funds/promoted-fund/funds/active.js +26 -0
- package/dist/lib/collection/components/super-selection-app/funds/promoted-fund/funds/australian-ethical.js +43 -0
- package/dist/lib/collection/components/super-selection-app/funds/promoted-fund/funds/australian-retirement-trust.js +32 -0
- package/dist/lib/collection/components/super-selection-app/funds/promoted-fund/funds/aware.js +27 -0
- package/dist/lib/collection/components/super-selection-app/funds/promoted-fund/funds/first.js +27 -0
- package/dist/lib/collection/components/super-selection-app/funds/promoted-fund/funds/mercermychoice.js +32 -0
- package/dist/lib/collection/components/super-selection-app/funds/promoted-fund/funds/slate.js +32 -0
- package/dist/lib/collection/components/super-selection-app/funds/promoted-fund/funds/spirit.js +43 -0
- package/dist/lib/collection/components/super-selection-app/funds/promoted-fund/funds/virgin.js +36 -0
- package/dist/lib/collection/components/super-selection-app/funds/promoted-fund/types.js +14 -0
- package/dist/lib/collection/components/super-selection-app/funds/slate-super/services/slate-iframe-builder.js +3 -3
- package/dist/lib/collection/components/super-selection-app/misc/dropdown-async.js +1 -0
- package/dist/lib/collection/components/super-selection-app/services/existing-super-choice-info.service.js +2 -2
- package/dist/lib/collection/components/super-selection-app/super-choice-page/super-choice-page.js +1 -241
- package/dist/lib/esm/sss-button_30.entry.js +293 -228
- package/dist/lib/esm-es5/sss-button_30.entry.js +3 -3
- package/dist/lib/types/components/super-selection-app/funds/constants.d.ts +3 -87
- package/dist/lib/types/components/super-selection-app/funds/custom-fund/my-own-fund/my-own-fund-inputs.d.ts +1 -0
- package/dist/lib/types/components/super-selection-app/funds/promoted-fund/funds/active.d.ts +3 -0
- package/dist/lib/types/components/super-selection-app/funds/promoted-fund/funds/australian-ethical.d.ts +3 -0
- package/dist/lib/types/components/super-selection-app/funds/promoted-fund/funds/australian-retirement-trust.d.ts +3 -0
- package/dist/lib/types/components/super-selection-app/funds/promoted-fund/funds/aware.d.ts +3 -0
- package/dist/lib/types/components/super-selection-app/funds/promoted-fund/funds/first.d.ts +3 -0
- package/dist/lib/types/components/super-selection-app/funds/promoted-fund/funds/mercermychoice.d.ts +3 -0
- package/dist/lib/types/components/super-selection-app/funds/promoted-fund/funds/slate.d.ts +4 -0
- package/dist/lib/types/components/super-selection-app/funds/promoted-fund/funds/spirit.d.ts +3 -0
- package/dist/lib/types/components/super-selection-app/funds/promoted-fund/funds/virgin.d.ts +3 -0
- package/dist/lib/types/components/super-selection-app/funds/promoted-fund/types.d.ts +23 -0
- package/dist/lib/types/components/super-selection-app/super-choice-page/super-choice-page.d.ts +0 -2
- package/package.json +1 -2
- package/dist/lib/apollo-super-selection/p-35538e87.system.entry.js +0 -69
- package/dist/lib/apollo-super-selection/p-a08ef800.entry.js +0 -14
|
@@ -1,91 +1,7 @@
|
|
|
1
1
|
import { Option } from 'fp-ts/Option';
|
|
2
|
-
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
Logo: string;
|
|
6
|
-
PdsUrl: string;
|
|
7
|
-
Usi: string;
|
|
8
|
-
DiversaAbn: string;
|
|
9
|
-
FooterTextOverride: Option<never>;
|
|
10
|
-
DtoPropName: string;
|
|
11
|
-
};
|
|
12
|
-
export declare const AustralianRetirementTrust: {
|
|
13
|
-
Id: string;
|
|
14
|
-
Name: string;
|
|
15
|
-
Logo: string;
|
|
16
|
-
PdsUrl: string;
|
|
17
|
-
Abn: string;
|
|
18
|
-
FooterTextOverride: Option<never>;
|
|
19
|
-
DtoPropName: string;
|
|
20
|
-
};
|
|
21
|
-
export declare const Aware: {
|
|
22
|
-
Id: string;
|
|
23
|
-
Name: string;
|
|
24
|
-
Logo: string;
|
|
25
|
-
PdsUrl: string;
|
|
26
|
-
Abn: string;
|
|
27
|
-
FooterTextOverride: Option<never>;
|
|
28
|
-
DtoPropName: string;
|
|
29
|
-
};
|
|
30
|
-
export declare const Active: {
|
|
31
|
-
Id: string;
|
|
32
|
-
Name: string;
|
|
33
|
-
Logo: string;
|
|
34
|
-
PdsUrl: string;
|
|
35
|
-
Abn: string;
|
|
36
|
-
FooterTextOverride: Option<string>;
|
|
37
|
-
DtoPropName: string;
|
|
38
|
-
};
|
|
39
|
-
export declare const AustralianEthical: {
|
|
40
|
-
Id: string;
|
|
41
|
-
Name: string;
|
|
42
|
-
Logo: string;
|
|
43
|
-
PdsUrl: string;
|
|
44
|
-
Abn: string;
|
|
45
|
-
FooterTextOverride: Option<never>;
|
|
46
|
-
DtoPropName: string;
|
|
47
|
-
};
|
|
48
|
-
export declare const Virgin: {
|
|
49
|
-
Id: string;
|
|
50
|
-
Name: string;
|
|
51
|
-
Logo: string;
|
|
52
|
-
PdsUrl: string;
|
|
53
|
-
Abn: string;
|
|
54
|
-
FooterTextOverride: Option<string>;
|
|
55
|
-
DtoPropName: string;
|
|
56
|
-
};
|
|
57
|
-
export declare const Spirit: {
|
|
58
|
-
Id: string;
|
|
59
|
-
Name: string;
|
|
60
|
-
Logo: string;
|
|
61
|
-
PdsUrl: string;
|
|
62
|
-
Abn: string;
|
|
63
|
-
FooterTextOverride: Option<never>;
|
|
64
|
-
DtoPropName: string;
|
|
65
|
-
};
|
|
66
|
-
export declare const First: {
|
|
67
|
-
Id: string;
|
|
68
|
-
Name: string;
|
|
69
|
-
Logo: string;
|
|
70
|
-
PdsUrl: string;
|
|
71
|
-
Abn: string;
|
|
72
|
-
FooterTextOverride: Option<never>;
|
|
73
|
-
DtoPropName: string;
|
|
74
|
-
};
|
|
75
|
-
export declare const MercerMyChoice: {
|
|
76
|
-
Id: string;
|
|
77
|
-
Name: string;
|
|
78
|
-
Logo: string;
|
|
79
|
-
PdsUrl: string;
|
|
80
|
-
TmdUrl: string;
|
|
81
|
-
Abn: string;
|
|
82
|
-
FooterTextOverride: Option<string>;
|
|
83
|
-
DtoPropName: string;
|
|
84
|
-
};
|
|
85
|
-
export declare const getFundByDtoPropName: (dtoPropName: string) => Option<{
|
|
86
|
-
Id: string;
|
|
87
|
-
Name: string;
|
|
88
|
-
}>;
|
|
2
|
+
import { PromotedFund } from './promoted-fund/types';
|
|
3
|
+
export declare const allPromotedFunds: PromotedFund[];
|
|
4
|
+
export declare const getFundByDtoPropName: (dtoPropName: string) => Option<PromotedFund>;
|
|
89
5
|
export declare const getFundNameByFundId: (fundId: string) => Option<string>;
|
|
90
6
|
export declare const getFooterTextOverrideByFundId: (fundId: string) => Option<string>;
|
|
91
7
|
export declare const getFundUsiByFundId: (fundId: string) => Option<string>;
|
|
@@ -0,0 +1,23 @@
|
|
|
1
|
+
import { VNode } from '../../../../stencil-public-runtime';
|
|
2
|
+
import { FunctionalComponent } from '../../../../stencil-public-runtime';
|
|
3
|
+
import { Option } from 'fp-ts/Option';
|
|
4
|
+
export declare type PromotedFund = {
|
|
5
|
+
fundId: string;
|
|
6
|
+
name: string;
|
|
7
|
+
logo: string;
|
|
8
|
+
route: string;
|
|
9
|
+
features: VNode[];
|
|
10
|
+
featureSubText?: VNode;
|
|
11
|
+
disclaimer: VNode;
|
|
12
|
+
abnInfo?: string;
|
|
13
|
+
abn?: string;
|
|
14
|
+
footnoteTextOverride: Option<string>;
|
|
15
|
+
dtoPropName: string;
|
|
16
|
+
};
|
|
17
|
+
export declare const Link: (props: {
|
|
18
|
+
href: string;
|
|
19
|
+
className?: string;
|
|
20
|
+
onClick?: () => void;
|
|
21
|
+
}, children: VNode[]) => FunctionalComponent;
|
|
22
|
+
export declare const PoweredByFlareFS = "Powered by Flare FS";
|
|
23
|
+
export declare function pdsViewedAsync(name: string, usi?: string): Promise<void>;
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@flarehr/apollo-super-selection",
|
|
3
|
-
"version": "4.
|
|
3
|
+
"version": "4.23.28756",
|
|
4
4
|
"description": "Apollo Super Selection",
|
|
5
5
|
"main": "dist/lib/index.cjs.js",
|
|
6
6
|
"module": "dist/lib/index.js",
|
|
@@ -62,7 +62,6 @@
|
|
|
62
62
|
"@juggle/resize-observer": "^3.3.0",
|
|
63
63
|
"@microsoft/applicationinsights-web": "^2.5.10",
|
|
64
64
|
"@stencil/router": "1.0.1",
|
|
65
|
-
"caniuse-lite": "^1.0.30001504",
|
|
66
65
|
"date-fns": "^2.16.1",
|
|
67
66
|
"fp-ts": "^2.9.3",
|
|
68
67
|
"jwt-decode": "^3.1.2",
|