@flarehr/apollo-super-selection 1.2.30870 → 1.2.30963
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/p-58535c0b.system.entry.js +69 -0
- package/dist/lib/apollo-super-selection/p-9d9f73d6.entry.js +14 -0
- package/dist/lib/apollo-super-selection/p-bdcfc026.system.js +1 -1
- package/dist/lib/cjs/sss-button_30.cjs.entry.js +208 -103
- package/dist/lib/collection/components/app-host/super-selection-app-host.js +4 -0
- package/dist/lib/collection/components/super-selection-app/api/super-selection.api.dto.js +46 -0
- package/dist/lib/collection/components/super-selection-app/api/super-selection.api.js +20 -1
- package/dist/lib/collection/components/super-selection-app/existing-choice/existing-choice.js +12 -1
- package/dist/lib/collection/components/super-selection-app/funds/constants.js +3 -1
- package/dist/lib/collection/components/super-selection-app/funds/promoted-fund/services/promoted-fund-join-v2-iframe-builder.js +2 -1
- package/dist/lib/collection/components/super-selection-app/misc/dropdown-async.js +2 -0
- package/dist/lib/esm/sss-button_30.entry.js +208 -103
- package/dist/lib/esm-es5/sss-button_30.entry.js +9 -9
- package/dist/lib/types/components/super-selection-app/api/super-selection.api.dto.d.ts +2 -0
- package/package.json +1 -1
- package/dist/lib/apollo-super-selection/p-2e897d4e.entry.js +0 -14
- package/dist/lib/apollo-super-selection/p-894ac1a0.system.entry.js +0 -69
|
@@ -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;
|