@flarehr/apollo-super-selection 5.22.53041 → 5.24.54264
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/p-203c74a8.entry.js +14 -0
- package/dist/lib/apollo-super-selection/p-b0120851.system.entry.js +69 -0
- package/dist/lib/apollo-super-selection/p-bdcfc026.system.js +1 -1
- package/dist/lib/cjs/sss-button_43.cjs.entry.js +53 -6
- package/dist/lib/collection/apollo-super-selection.css +1 -1
- package/dist/lib/collection/components/super-campaign/super-campaign.js +2 -0
- package/dist/lib/collection/components/super-selection-app/api/super-selection.api.dto.js +27 -0
- package/dist/lib/collection/components/super-selection-app/footer-section/footer-section.js +6 -2
- package/dist/lib/collection/components/super-selection-app/services/existing-super-choice-info.service.js +14 -5
- package/dist/lib/collection/components/super-selection-app/services/super-selection-app.service.js +6 -0
- package/dist/lib/collection/components/super-selection-app/services/super-selection.store.js +2 -1
- package/dist/lib/esm/sss-button_43.entry.js +53 -6
- package/dist/lib/esm-es5/sss-button_43.entry.js +9 -9
- package/dist/lib/types/components/super-selection-app/api/super-selection.api.dto.d.ts +1 -0
- package/dist/lib/types/components/super-selection-app/services/super-selection-app.service.d.ts +2 -0
- package/dist/lib/types/components/super-selection-app/services/super-selection.store.d.ts +1 -0
- package/package.json +1 -1
- package/dist/lib/apollo-super-selection/p-75c84aa2.system.entry.js +0 -69
- package/dist/lib/apollo-super-selection/p-fa8f9454.entry.js +0 -14
|
@@ -81,6 +81,7 @@ declare type PromotedFundChoiceDto = {
|
|
|
81
81
|
};
|
|
82
82
|
};
|
|
83
83
|
export declare function hydratePromotedFundChoiceDtoKind(dto: PromotedFundChoiceDto): void;
|
|
84
|
+
export declare function getPromotedFundId(dto: PromotedFundChoiceDto): string;
|
|
84
85
|
export declare function getSuperChoiceUsi(dto: SuperChoiceDetailsDto): Option<string>;
|
|
85
86
|
export declare function getSuperChoiceMemberNumber(dto: SuperChoiceDetailsDto): Option<string>;
|
|
86
87
|
declare type OwnFundChoiceDto = {
|
package/dist/lib/types/components/super-selection-app/services/super-selection-app.service.d.ts
CHANGED
|
@@ -34,6 +34,8 @@ export declare class SuperSelectionAppService {
|
|
|
34
34
|
set superCampaignComponentStatus(value: SuperCampaignComponentStatus);
|
|
35
35
|
get isUsingSuperCampaign(): boolean;
|
|
36
36
|
get isSuperCampaignFallbackActivated(): boolean;
|
|
37
|
+
get superCampaignIsInView(): boolean;
|
|
38
|
+
set superCampaignIsInView(value: boolean);
|
|
37
39
|
}
|
|
38
40
|
declare const _default: SuperSelectionAppService;
|
|
39
41
|
export default _default;
|
|
@@ -24,6 +24,7 @@ export declare type AppContextState = {
|
|
|
24
24
|
superCampaignEnabled: boolean;
|
|
25
25
|
superCampaignState: SuperCampaignState | undefined;
|
|
26
26
|
superCampaignComponentStatus: SuperCampaignComponentStatus;
|
|
27
|
+
superCampaignIsInView: boolean;
|
|
27
28
|
};
|
|
28
29
|
export declare class SuperCampaignState {
|
|
29
30
|
private _promotedFundsShown;
|