@flarehr/apollo-super-selection 1.3.41694 → 1.3.41747

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 (34) hide show
  1. package/dist/lib/apollo-super-selection/apollo-super-selection.esm.js +1 -1
  2. package/dist/lib/apollo-super-selection/assets/unisuper-default-badge1.svg +25 -0
  3. package/dist/lib/apollo-super-selection/assets/unisuper-default-badge2.svg +109 -0
  4. package/dist/lib/apollo-super-selection/assets/unisuper-default-badge3.svg +102 -0
  5. package/dist/lib/apollo-super-selection/{p-eddc3534.system.entry.js → p-16219562.system.entry.js} +8 -8
  6. package/dist/lib/apollo-super-selection/p-415e492d.entry.js +14 -0
  7. package/dist/lib/apollo-super-selection/p-bdcfc026.system.js +1 -1
  8. package/dist/lib/cjs/apollo-super-selection.cjs.js +1 -1
  9. package/dist/lib/cjs/loader.cjs.js +1 -1
  10. package/dist/lib/cjs/sss-button_41.cjs.entry.js +49 -5
  11. package/dist/lib/collection/components/super-selection-app/funds/promoted-fund/api/promoted-fund-choice.api.js +9 -0
  12. package/dist/lib/collection/components/super-selection-app/funds/promoted-fund/funds/unisuper-default-v2.js +8 -1
  13. package/dist/lib/collection/components/super-selection-app/funds/promoted-fund/services/promoted-fund-join-v2-iframe-builder.js +25 -2
  14. package/dist/lib/collection/components/super-selection-app/standard-choice/standard-choice-form.js +5 -0
  15. package/dist/lib/collection/components/super-selection-app/super-choice-page/assets/unisuper-default-badge1.svg +25 -0
  16. package/dist/lib/collection/components/super-selection-app/super-choice-page/assets/unisuper-default-badge2.svg +109 -0
  17. package/dist/lib/collection/components/super-selection-app/super-choice-page/assets/unisuper-default-badge3.svg +102 -0
  18. package/dist/lib/collection/components/super-selection-app/super-choice-page/super-choice-item/super-choice-item-top.js +22 -1
  19. package/dist/lib/collection/components/super-selection-app/super-choice-page/super-choice-page.js +1 -1
  20. package/dist/lib/esm/apollo-super-selection.js +1 -1
  21. package/dist/lib/esm/loader.js +1 -1
  22. package/dist/lib/esm/sss-button_41.entry.js +49 -5
  23. package/dist/lib/esm-es5/apollo-super-selection.js +1 -1
  24. package/dist/lib/esm-es5/loader.js +1 -1
  25. package/dist/lib/esm-es5/sss-button_41.entry.js +4 -4
  26. package/dist/lib/types/components/super-selection-app/api/super-selection-events.model.d.ts +4 -0
  27. package/dist/lib/types/components/super-selection-app/funds/promoted-fund/api/promoted-fund-choice.api.d.ts +2 -1
  28. package/dist/lib/types/components/super-selection-app/funds/promoted-fund/api/promoted-fund-choice.api.dto.d.ts +12 -0
  29. package/dist/lib/types/components/super-selection-app/funds/promoted-fund/types.d.ts +1 -0
  30. package/dist/lib/types/components/super-selection-app/standard-choice/standard-choice-form.store.d.ts +6 -0
  31. package/dist/lib/types/components/super-selection-app/super-choice-page/super-choice-item/super-choice-item-top.d.ts +1 -0
  32. package/dist/lib/types/components.d.ts +2 -0
  33. package/package.json +1 -1
  34. package/dist/lib/apollo-super-selection/p-e452e0d4.entry.js +0 -14
@@ -108,6 +108,10 @@ export declare type SuperFundDetailChangeRequested = {
108
108
  } & ViewedPromotedFundDetail;
109
109
  } | {
110
110
  PromotedDefaultFund: ViewedPromotedDefaultFundDetail;
111
+ } | {
112
+ PromotedDefaultFundWithJoin: {
113
+ memberNumber: string;
114
+ } & ViewedPromotedDefaultFundDetail;
111
115
  } | {
112
116
  MyOwnFund: {
113
117
  fundName: string;
@@ -1,7 +1,8 @@
1
- import { PromotedDefaultFundChoiceRequestDto, PromotedFundChoiceRequestDto } from './promoted-fund-choice.api.dto';
1
+ import { PromotedDefaultFundChoiceRequestDto, PromotedDefaultFundWithJoinChoiceRequestDto, PromotedFundChoiceRequestDto } from './promoted-fund-choice.api.dto';
2
2
  export declare class PromotedFundChoiceApi {
3
3
  submitChoiceAsync(dto: PromotedFundChoiceRequestDto): Promise<void>;
4
4
  submitDefaultChoiceAsync(dto: PromotedDefaultFundChoiceRequestDto): Promise<void>;
5
+ submitDefaultChoiceWithJoinAsync(dto: PromotedDefaultFundWithJoinChoiceRequestDto): Promise<void>;
5
6
  }
6
7
  declare const _default: PromotedFundChoiceApi;
7
8
  export default _default;
@@ -20,3 +20,15 @@ export declare type PromotedDefaultFundChoiceRequestDto = {
20
20
  promotedDefaultFundPosition?: number;
21
21
  promotedFundsConfigSource: PromotedFundsConfigSourceDto;
22
22
  };
23
+ export declare type PromotedDefaultFundWithJoinChoiceRequestDto = {
24
+ fundId: string;
25
+ usi: string;
26
+ memberNumber: string;
27
+ memberFirstName: string;
28
+ memberFamilyName: string;
29
+ standardChoiceFormSignature: string;
30
+ shownFunds: string[];
31
+ defaultFundUsiSet?: string;
32
+ promotedDefaultFundPosition?: number;
33
+ promotedFundsConfigSource: PromotedFundsConfigSourceDto;
34
+ };
@@ -8,6 +8,7 @@ export declare type PromotedFund = {
8
8
  route: string;
9
9
  features: VNode[];
10
10
  featureSubText?: VNode;
11
+ customContent?: VNode;
11
12
  disclaimer: VNode;
12
13
  abnInfo?: string;
13
14
  abn?: string;
@@ -22,6 +22,12 @@ export declare type FundDetails = {
22
22
  fundName: string;
23
23
  fundUsi: string;
24
24
  promotedFundId: string;
25
+ } | {
26
+ type: 'promotedDefaultWithJoin';
27
+ fundName: string;
28
+ fundUsi: string;
29
+ memberNumber: string;
30
+ promotedFundId: string;
25
31
  } | {
26
32
  type: 'null';
27
33
  };
@@ -4,6 +4,7 @@ export declare class SuperChoiceItemTop {
4
4
  logo: string;
5
5
  features: VNode[];
6
6
  featureSubText?: VNode;
7
+ customContent?: VNode;
7
8
  isMultiFund: boolean;
8
9
  isPromotedDefault?: boolean;
9
10
  render(): Element[];
@@ -141,6 +141,7 @@ export namespace Components {
141
141
  "isMultiFund": boolean;
142
142
  }
143
143
  interface SssSuperChoiceItemTop {
144
+ "customContent"?: VNode;
144
145
  "featureSubText"?: VNode;
145
146
  "features": VNode[];
146
147
  "isMultiFund": boolean;
@@ -556,6 +557,7 @@ declare namespace LocalJSX {
556
557
  "onJoinFundClicked"?: (event: CustomEvent<void>) => void;
557
558
  }
558
559
  interface SssSuperChoiceItemTop {
560
+ "customContent"?: VNode;
559
561
  "featureSubText"?: VNode;
560
562
  "features"?: VNode[];
561
563
  "isMultiFund"?: boolean;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@flarehr/apollo-super-selection",
3
- "version": "1.3.41694",
3
+ "version": "1.3.41747",
4
4
  "description": "Apollo Super Selection",
5
5
  "main": "dist/lib/index.cjs.js",
6
6
  "module": "dist/lib/index.js",