@flarehr/apollo-super-selection 1.3.55531 → 1.3.55659
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-9a33fe57.system.entry.js → p-2887ba2d.system.entry.js} +1 -1
- package/dist/lib/apollo-super-selection/p-bdcfc026.system.js +1 -1
- package/dist/lib/apollo-super-selection/{p-1fbc9eb4.entry.js → p-ec41b6d2.entry.js} +4 -4
- package/dist/lib/cjs/sss-button_32.cjs.entry.js +3 -3
- package/dist/lib/collection/components/super-selection-app/funds/custom-fund/my-own-fund/my-own-fund-engagement-step.js +2 -2
- package/dist/lib/collection/components/super-selection-app/services/super-selection-app.routes.js +1 -1
- package/dist/lib/esm/sss-button_32.entry.js +3 -3
- package/dist/lib/esm-es5/sss-button_32.entry.js +1 -1
- package/dist/lib/types/components/super-selection-app/services/super-selection-app.routes.d.ts +1 -1
- package/package.json +1 -1
|
@@ -284,7 +284,7 @@ class TapSubscriber extends datoramaAkita.Subscriber {
|
|
|
284
284
|
}
|
|
285
285
|
}
|
|
286
286
|
|
|
287
|
-
const AppVersion = '1.3.
|
|
287
|
+
const AppVersion = '1.3.55659';
|
|
288
288
|
|
|
289
289
|
// -------------------------------------------------------------------------------------
|
|
290
290
|
// guards
|
|
@@ -1208,7 +1208,7 @@ var SuperSelectionAppRoutes;
|
|
|
1208
1208
|
SuperSelectionAppRoutes["SuperCampaign"] = "/super-campaign";
|
|
1209
1209
|
SuperSelectionAppRoutes["ChoicePage"] = "/";
|
|
1210
1210
|
SuperSelectionAppRoutes["MyOwnFund"] = "/super-choice/my-own-fund/";
|
|
1211
|
-
SuperSelectionAppRoutes["MyOwnFundEngagementStep"] = "/super-choice/my-own-fund/
|
|
1211
|
+
SuperSelectionAppRoutes["MyOwnFundEngagementStep"] = "/super-choice/my-own-fund-engagement/";
|
|
1212
1212
|
SuperSelectionAppRoutes["Prefill"] = "/super-choice/prefill/";
|
|
1213
1213
|
SuperSelectionAppRoutes["PrefillInvalidMyOwnFundPage"] = "/super-choice/sss-prefill-invalid-my-own-fund/";
|
|
1214
1214
|
SuperSelectionAppRoutes["PrefillMyOwnFundPage"] = "/super-choice/prefill-my-own-fund/";
|
|
@@ -4736,7 +4736,7 @@ const MyOwnFundEngagementStep = class {
|
|
|
4736
4736
|
superSelectionAppService.hideFooterSection = false;
|
|
4737
4737
|
}
|
|
4738
4738
|
render() {
|
|
4739
|
-
return (index.h(
|
|
4739
|
+
return (index.h(index.Host, null, index.h("apollo-super-byof-engagement", { "backend-url": this.backendUrl, "access-token": this.accessToken, "fund-usi": this.fundUsi })));
|
|
4740
4740
|
}
|
|
4741
4741
|
navigateToStandardChoice() {
|
|
4742
4742
|
navigationService.navigateInternallyToStandardChoice({
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import { Component, h, Prop, State } from '@stencil/core';
|
|
1
|
+
import { Component, h, Host, Prop, State } from '@stencil/core';
|
|
2
2
|
import { injectHistory } from '@stencil/router';
|
|
3
3
|
import { isSome } from 'fp-ts/lib/Option';
|
|
4
4
|
import { EventTrackingService } from '../../../services/event-tracking.service';
|
|
@@ -60,7 +60,7 @@ export class MyOwnFundEngagementStep {
|
|
|
60
60
|
superSelectionAppService.hideFooterSection = false;
|
|
61
61
|
}
|
|
62
62
|
render() {
|
|
63
|
-
return (h(
|
|
63
|
+
return (h(Host, null,
|
|
64
64
|
h("apollo-super-byof-engagement", { "backend-url": this.backendUrl, "access-token": this.accessToken, "fund-usi": this.fundUsi })));
|
|
65
65
|
}
|
|
66
66
|
navigateToStandardChoice() {
|
package/dist/lib/collection/components/super-selection-app/services/super-selection-app.routes.js
CHANGED
|
@@ -5,7 +5,7 @@ export var SuperSelectionAppRoutes;
|
|
|
5
5
|
SuperSelectionAppRoutes["SuperCampaign"] = "/super-campaign";
|
|
6
6
|
SuperSelectionAppRoutes["ChoicePage"] = "/";
|
|
7
7
|
SuperSelectionAppRoutes["MyOwnFund"] = "/super-choice/my-own-fund/";
|
|
8
|
-
SuperSelectionAppRoutes["MyOwnFundEngagementStep"] = "/super-choice/my-own-fund/
|
|
8
|
+
SuperSelectionAppRoutes["MyOwnFundEngagementStep"] = "/super-choice/my-own-fund-engagement/";
|
|
9
9
|
SuperSelectionAppRoutes["Prefill"] = "/super-choice/prefill/";
|
|
10
10
|
SuperSelectionAppRoutes["PrefillInvalidMyOwnFundPage"] = "/super-choice/sss-prefill-invalid-my-own-fund/";
|
|
11
11
|
SuperSelectionAppRoutes["PrefillMyOwnFundPage"] = "/super-choice/prefill-my-own-fund/";
|
|
@@ -260,7 +260,7 @@ class TapSubscriber extends Subscriber {
|
|
|
260
260
|
}
|
|
261
261
|
}
|
|
262
262
|
|
|
263
|
-
const AppVersion = '1.3.
|
|
263
|
+
const AppVersion = '1.3.55659';
|
|
264
264
|
|
|
265
265
|
// -------------------------------------------------------------------------------------
|
|
266
266
|
// guards
|
|
@@ -1184,7 +1184,7 @@ var SuperSelectionAppRoutes;
|
|
|
1184
1184
|
SuperSelectionAppRoutes["SuperCampaign"] = "/super-campaign";
|
|
1185
1185
|
SuperSelectionAppRoutes["ChoicePage"] = "/";
|
|
1186
1186
|
SuperSelectionAppRoutes["MyOwnFund"] = "/super-choice/my-own-fund/";
|
|
1187
|
-
SuperSelectionAppRoutes["MyOwnFundEngagementStep"] = "/super-choice/my-own-fund/
|
|
1187
|
+
SuperSelectionAppRoutes["MyOwnFundEngagementStep"] = "/super-choice/my-own-fund-engagement/";
|
|
1188
1188
|
SuperSelectionAppRoutes["Prefill"] = "/super-choice/prefill/";
|
|
1189
1189
|
SuperSelectionAppRoutes["PrefillInvalidMyOwnFundPage"] = "/super-choice/sss-prefill-invalid-my-own-fund/";
|
|
1190
1190
|
SuperSelectionAppRoutes["PrefillMyOwnFundPage"] = "/super-choice/prefill-my-own-fund/";
|
|
@@ -4712,7 +4712,7 @@ const MyOwnFundEngagementStep = class {
|
|
|
4712
4712
|
superSelectionAppService.hideFooterSection = false;
|
|
4713
4713
|
}
|
|
4714
4714
|
render() {
|
|
4715
|
-
return (h(
|
|
4715
|
+
return (h(Host, null, h("apollo-super-byof-engagement", { "backend-url": this.backendUrl, "access-token": this.accessToken, "fund-usi": this.fundUsi })));
|
|
4716
4716
|
}
|
|
4717
4717
|
navigateToStandardChoice() {
|
|
4718
4718
|
navigationService.navigateInternallyToStandardChoice({
|