@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.
- package/dist/lib/apollo-super-selection/apollo-super-selection.esm.js +1 -1
- package/dist/lib/apollo-super-selection/assets/unisuper-default-badge1.svg +25 -0
- package/dist/lib/apollo-super-selection/assets/unisuper-default-badge2.svg +109 -0
- package/dist/lib/apollo-super-selection/assets/unisuper-default-badge3.svg +102 -0
- package/dist/lib/apollo-super-selection/{p-eddc3534.system.entry.js → p-16219562.system.entry.js} +8 -8
- package/dist/lib/apollo-super-selection/p-415e492d.entry.js +14 -0
- package/dist/lib/apollo-super-selection/p-bdcfc026.system.js +1 -1
- 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_41.cjs.entry.js +49 -5
- package/dist/lib/collection/components/super-selection-app/funds/promoted-fund/api/promoted-fund-choice.api.js +9 -0
- package/dist/lib/collection/components/super-selection-app/funds/promoted-fund/funds/unisuper-default-v2.js +8 -1
- package/dist/lib/collection/components/super-selection-app/funds/promoted-fund/services/promoted-fund-join-v2-iframe-builder.js +25 -2
- package/dist/lib/collection/components/super-selection-app/standard-choice/standard-choice-form.js +5 -0
- package/dist/lib/collection/components/super-selection-app/super-choice-page/assets/unisuper-default-badge1.svg +25 -0
- package/dist/lib/collection/components/super-selection-app/super-choice-page/assets/unisuper-default-badge2.svg +109 -0
- package/dist/lib/collection/components/super-selection-app/super-choice-page/assets/unisuper-default-badge3.svg +102 -0
- package/dist/lib/collection/components/super-selection-app/super-choice-page/super-choice-item/super-choice-item-top.js +22 -1
- package/dist/lib/collection/components/super-selection-app/super-choice-page/super-choice-page.js +1 -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_41.entry.js +49 -5
- 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_41.entry.js +4 -4
- package/dist/lib/types/components/super-selection-app/api/super-selection-events.model.d.ts +4 -0
- package/dist/lib/types/components/super-selection-app/funds/promoted-fund/api/promoted-fund-choice.api.d.ts +2 -1
- package/dist/lib/types/components/super-selection-app/funds/promoted-fund/api/promoted-fund-choice.api.dto.d.ts +12 -0
- package/dist/lib/types/components/super-selection-app/funds/promoted-fund/types.d.ts +1 -0
- package/dist/lib/types/components/super-selection-app/standard-choice/standard-choice-form.store.d.ts +6 -0
- package/dist/lib/types/components/super-selection-app/super-choice-page/super-choice-item/super-choice-item-top.d.ts +1 -0
- package/dist/lib/types/components.d.ts +2 -0
- package/package.json +1 -1
- 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
|
+
};
|
|
@@ -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
|
};
|
|
@@ -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;
|