@flarehr/apollo-super-selection 3.96.14021 → 4.1.15857
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-first.svg +15 -0
- package/dist/lib/apollo-super-selection/p-06c2b2a6.system.entry.js +69 -0
- package/dist/lib/apollo-super-selection/p-bdcfc026.system.js +1 -1
- package/dist/lib/apollo-super-selection/p-e9ee10ec.entry.js +14 -0
- package/dist/lib/cjs/sss-button_29.cjs.entry.js +34 -3
- package/dist/lib/collection/apollo-super-selection.css +1 -1
- package/dist/lib/collection/components/super-selection-app/api/super-selection.api.dto.js +6 -0
- package/dist/lib/collection/components/super-selection-app/funds/constants.js +14 -1
- package/dist/lib/collection/components/super-selection-app/funds/custom-fund/default-fund/default-fund.js +11 -3
- package/dist/lib/collection/components/super-selection-app/super-choice-page/assets/logo-first.svg +15 -0
- package/dist/lib/collection/components/super-selection-app/super-choice-page/super-choice-page.js +24 -0
- package/dist/lib/esm/sss-button_29.entry.js +34 -3
- package/dist/lib/esm-es5/sss-button_29.entry.js +1 -1
- package/dist/lib/types/components/super-selection-app/api/super-selection.api.dto.d.ts +5 -0
- package/dist/lib/types/components/super-selection-app/funds/constants.d.ts +7 -0
- package/package.json +1 -3
- package/dist/lib/apollo-super-selection/p-253a24c3.entry.js +0 -14
- package/dist/lib/apollo-super-selection/p-9e145635.system.entry.js +0 -69
|
@@ -54,6 +54,11 @@ declare type PromotedFundChoiceDto = {
|
|
|
54
54
|
usi: string;
|
|
55
55
|
memberNumber: string;
|
|
56
56
|
};
|
|
57
|
+
} | {
|
|
58
|
+
firstSuper: {
|
|
59
|
+
usi: string;
|
|
60
|
+
memberNumber: string;
|
|
61
|
+
};
|
|
57
62
|
};
|
|
58
63
|
export declare function getSuperChoiceUsi(dto: SuperChoiceDetailsDto): Option<string>;
|
|
59
64
|
export declare function getSuperChoiceMemberNumber(dto: SuperChoiceDetailsDto): Option<string>;
|
|
@@ -48,6 +48,13 @@ export declare const Spirit: {
|
|
|
48
48
|
PdsUrl: string;
|
|
49
49
|
Abn: string;
|
|
50
50
|
};
|
|
51
|
+
export declare const First: {
|
|
52
|
+
Id: string;
|
|
53
|
+
Name: string;
|
|
54
|
+
Logo: string;
|
|
55
|
+
PdsUrl: string;
|
|
56
|
+
Abn: string;
|
|
57
|
+
};
|
|
51
58
|
export declare const PromotedFundIdList: {
|
|
52
59
|
dtoPropName: string;
|
|
53
60
|
id: string;
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@flarehr/apollo-super-selection",
|
|
3
|
-
"version": "
|
|
3
|
+
"version": "4.1.15857",
|
|
4
4
|
"description": "Apollo Super Selection",
|
|
5
5
|
"main": "dist/lib/index.cjs.js",
|
|
6
6
|
"module": "dist/lib/index.js",
|
|
@@ -37,7 +37,6 @@
|
|
|
37
37
|
"@tailwindcss/forms": "^0.5.1",
|
|
38
38
|
"@types/jest": "^26.0.20",
|
|
39
39
|
"@types/node": "^14.14.21",
|
|
40
|
-
"@types/puppeteer": "^5.4.2",
|
|
41
40
|
"@types/resize-observer-browser": "^0.1.5",
|
|
42
41
|
"@typescript-eslint/eslint-plugin": "^4.14.0",
|
|
43
42
|
"@typescript-eslint/parser": "^4.14.0",
|
|
@@ -55,7 +54,6 @@
|
|
|
55
54
|
"jest-cli": "^26.6.3",
|
|
56
55
|
"lint-staged": "^10.5.3",
|
|
57
56
|
"prettier": "^2.2.1",
|
|
58
|
-
"puppeteer": "^5.5.0",
|
|
59
57
|
"rollup-plugin-ignore": "^1.0.6",
|
|
60
58
|
"tailwindcss": "^3.1.4"
|
|
61
59
|
},
|