@flarehr/apollo-super-selection 4.29.30453 → 4.30.31017

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.
Files changed (37) hide show
  1. package/dist/lib/apollo-super-selection/apollo-super-selection.css +1 -1
  2. package/dist/lib/apollo-super-selection/apollo-super-selection.esm.js +1 -1
  3. package/dist/lib/apollo-super-selection/assets/logo-hesta.svg +5 -0
  4. package/dist/lib/apollo-super-selection/p-bdcfc026.system.js +1 -1
  5. package/dist/lib/apollo-super-selection/p-cb5632d9.entry.js +14 -0
  6. package/dist/lib/apollo-super-selection/p-e32970b5.system.entry.js +69 -0
  7. package/dist/lib/cjs/apollo-super-selection.cjs.js +1 -1
  8. package/dist/lib/cjs/loader.cjs.js +1 -1
  9. package/dist/lib/cjs/sss-button_30.cjs.entry.js +227 -111
  10. package/dist/lib/collection/apollo-super-selection.css +1 -1
  11. package/dist/lib/collection/components/app-host/super-selection-app-host.js +4 -0
  12. package/dist/lib/collection/components/super-selection-app/api/super-selection.api.dto.js +46 -0
  13. package/dist/lib/collection/components/super-selection-app/api/super-selection.api.js +20 -1
  14. package/dist/lib/collection/components/super-selection-app/existing-choice/existing-choice.js +12 -1
  15. package/dist/lib/collection/components/super-selection-app/funds/constants.js +3 -1
  16. package/dist/lib/collection/components/super-selection-app/funds/promoted-fund/funds/hesta-default.js +26 -8
  17. package/dist/lib/collection/components/super-selection-app/funds/promoted-fund/funds/virgin.js +1 -1
  18. package/dist/lib/collection/components/super-selection-app/funds/promoted-fund/services/promoted-fund-join-v2-iframe-builder.js +2 -1
  19. package/dist/lib/collection/components/super-selection-app/funds/promoted-fund/types.js +1 -1
  20. package/dist/lib/collection/components/super-selection-app/misc/dropdown-async.js +2 -0
  21. package/dist/lib/collection/components/super-selection-app/super-choice-page/assets/logo-hesta.svg +5 -0
  22. package/dist/lib/collection/components/super-selection-app/super-choice-page/super-choice-item/super-choice-item-bottom.js +19 -2
  23. package/dist/lib/collection/components/super-selection-app/super-choice-page/super-choice-item/super-choice-item-top.js +27 -4
  24. package/dist/lib/collection/components/super-selection-app/super-choice-page/super-choice-page.js +12 -7
  25. package/dist/lib/esm/apollo-super-selection.js +1 -1
  26. package/dist/lib/esm/loader.js +1 -1
  27. package/dist/lib/esm/sss-button_30.entry.js +227 -111
  28. package/dist/lib/esm-es5/apollo-super-selection.js +1 -1
  29. package/dist/lib/esm-es5/loader.js +1 -1
  30. package/dist/lib/esm-es5/sss-button_30.entry.js +9 -9
  31. package/dist/lib/types/components/super-selection-app/api/super-selection.api.dto.d.ts +2 -0
  32. package/dist/lib/types/components/super-selection-app/super-choice-page/super-choice-item/super-choice-item-bottom.d.ts +1 -0
  33. package/dist/lib/types/components/super-selection-app/super-choice-page/super-choice-item/super-choice-item-top.d.ts +1 -0
  34. package/dist/lib/types/components.d.ts +4 -0
  35. package/package.json +1 -1
  36. package/dist/lib/apollo-super-selection/p-16367be3.system.entry.js +0 -69
  37. package/dist/lib/apollo-super-selection/p-29a35f2a.entry.js +0 -14
@@ -74,6 +74,7 @@ declare type PromotedFundChoiceDto = {
74
74
  memberNumber: string;
75
75
  };
76
76
  };
77
+ export declare function hydratePromotedFundChoiceDtoKind(dto: PromotedFundChoiceDto): void;
77
78
  export declare function getSuperChoiceUsi(dto: SuperChoiceDetailsDto): Option<string>;
78
79
  export declare function getSuperChoiceMemberNumber(dto: SuperChoiceDetailsDto): Option<string>;
79
80
  declare type OwnFundChoiceDto = {
@@ -108,6 +109,7 @@ declare type SuperChoiceDetailsDto = {
108
109
  kind: 'PromotedDefault';
109
110
  promotedDefault: PromotedDefaultFundChoiceDto;
110
111
  };
112
+ export declare function hydrateSuperChoiceDetailsDtoKind(dto: SuperChoiceDetailsDto): void;
111
113
  declare type SuperChoiceDto = {
112
114
  dateSubmitted: string;
113
115
  choiceDetails: SuperChoiceDetailsDto;
@@ -3,6 +3,7 @@ export declare class SuperChoiceItemBottom {
3
3
  disclaimer: VNode;
4
4
  abnInfo?: string;
5
5
  abn?: string;
6
+ isMultiFund: boolean;
6
7
  private joinFundClicked;
7
8
  render(): Element[];
8
9
  private handleFundClick;
@@ -4,6 +4,7 @@ export declare class SuperChoiceItemTop {
4
4
  logo: string;
5
5
  features: VNode[];
6
6
  featureSubText?: VNode;
7
+ isMultiFund: boolean;
7
8
  isPromotedDefault?: boolean;
8
9
  render(): Element[];
9
10
  }
@@ -98,10 +98,12 @@ export namespace Components {
98
98
  "abn"?: string;
99
99
  "abnInfo"?: string;
100
100
  "disclaimer": VNode;
101
+ "isMultiFund": boolean;
101
102
  }
102
103
  interface SssSuperChoiceItemTop {
103
104
  "featureSubText"?: VNode;
104
105
  "features": VNode[];
106
+ "isMultiFund": boolean;
105
107
  "isPromotedDefault"?: boolean;
106
108
  "logo": string;
107
109
  "name": string;
@@ -395,11 +397,13 @@ declare namespace LocalJSX {
395
397
  "abn"?: string;
396
398
  "abnInfo"?: string;
397
399
  "disclaimer"?: VNode;
400
+ "isMultiFund"?: boolean;
398
401
  "onJoinFundClicked"?: (event: CustomEvent<void>) => void;
399
402
  }
400
403
  interface SssSuperChoiceItemTop {
401
404
  "featureSubText"?: VNode;
402
405
  "features"?: VNode[];
406
+ "isMultiFund"?: boolean;
403
407
  "isPromotedDefault"?: boolean;
404
408
  "logo"?: string;
405
409
  "name"?: string;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@flarehr/apollo-super-selection",
3
- "version": "4.29.30453",
3
+ "version": "4.30.31017",
4
4
  "description": "Apollo Super Selection",
5
5
  "main": "dist/lib/index.cjs.js",
6
6
  "module": "dist/lib/index.js",