@flarehr/apollo-super-selection 1.3.43558 → 1.3.43723
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-16d44c74.entry.js → p-a9e66861.entry.js} +2 -2
- package/dist/lib/apollo-super-selection/p-bdcfc026.system.js +1 -1
- package/dist/lib/apollo-super-selection/{p-e03d1d3a.system.entry.js → p-f62b2e88.system.entry.js} +2 -2
- package/dist/lib/cjs/sss-button_41.cjs.entry.js +4 -6
- package/dist/lib/collection/components/super-selection-app/funds/promoted-fund/services/promoted-fund-join-v2-iframe-builder.js +3 -5
- package/dist/lib/esm/sss-button_41.entry.js +4 -6
- package/dist/lib/esm-es5/sss-button_41.entry.js +2 -2
- package/dist/lib/types/components/super-selection-app/funds/promoted-fund/services/promoted-fund-join-v2-types.d.ts +1 -0
- 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.43723';
|
|
288
288
|
|
|
289
289
|
// -------------------------------------------------------------------------------------
|
|
290
290
|
// guards
|
|
@@ -16102,7 +16102,7 @@ class PromotedFundJoinV2IFrameBuilder {
|
|
|
16102
16102
|
build(iframe$1, history) {
|
|
16103
16103
|
if (!(iframe$1 === null || iframe$1 === void 0 ? void 0 : iframe$1.contentDocument))
|
|
16104
16104
|
return;
|
|
16105
|
-
const postData = Object.assign(Object.assign({}, this.getMemberData()), { partnerId: superSelectionAppService.partnerIdOrDefault, accountId: superSelectionAppService.accountIdOrDefault, fundId: state.fund.id, authToken: superSelectionAppService.jwt, employerDefault: state.fund.type === 'PromotedDefault' });
|
|
16105
|
+
const postData = Object.assign(Object.assign({}, this.getMemberData()), { partnerId: superSelectionAppService.partnerIdOrDefault, accountId: superSelectionAppService.accountIdOrDefault, fundId: state.fund.id, authToken: superSelectionAppService.jwt, employerDefault: state.fund.type === 'PromotedDefault', definedBenefitsEligibility: Option.toUndefined(superSelectionAppService.isDefinedBenefitsEligible) });
|
|
16106
16106
|
const handleMessage = async (event) => {
|
|
16107
16107
|
const { data } = event;
|
|
16108
16108
|
if (!data) {
|
|
@@ -16290,13 +16290,11 @@ class PromotedFundJoinV2IFrameBuilder {
|
|
|
16290
16290
|
if (value !== undefined) {
|
|
16291
16291
|
const input = document.createElement('input');
|
|
16292
16292
|
input.name = prop;
|
|
16293
|
+
input.type = 'hidden';
|
|
16293
16294
|
if (typeof value === 'boolean') {
|
|
16294
|
-
input.
|
|
16295
|
-
input.checked = value;
|
|
16296
|
-
input.style.visibility = 'hidden';
|
|
16295
|
+
input.value = value ? 'true' : 'false';
|
|
16297
16296
|
}
|
|
16298
16297
|
else {
|
|
16299
|
-
input.type = 'hidden';
|
|
16300
16298
|
input.value = value;
|
|
16301
16299
|
}
|
|
16302
16300
|
form.append(input);
|
|
@@ -41,7 +41,7 @@ class PromotedFundJoinV2IFrameBuilder {
|
|
|
41
41
|
build(iframe, history) {
|
|
42
42
|
if (!(iframe === null || iframe === void 0 ? void 0 : iframe.contentDocument))
|
|
43
43
|
return;
|
|
44
|
-
const postData = Object.assign(Object.assign({}, this.getMemberData()), { partnerId: superSelectionAppService.partnerIdOrDefault, accountId: superSelectionAppService.accountIdOrDefault, fundId: promotedFundState.fund.id, authToken: superSelectionAppService.jwt, employerDefault: promotedFundState.fund.type === 'PromotedDefault' });
|
|
44
|
+
const postData = Object.assign(Object.assign({}, this.getMemberData()), { partnerId: superSelectionAppService.partnerIdOrDefault, accountId: superSelectionAppService.accountIdOrDefault, fundId: promotedFundState.fund.id, authToken: superSelectionAppService.jwt, employerDefault: promotedFundState.fund.type === 'PromotedDefault', definedBenefitsEligibility: O.toUndefined(superSelectionAppService.isDefinedBenefitsEligible) });
|
|
45
45
|
const handleMessage = async (event) => {
|
|
46
46
|
const { data } = event;
|
|
47
47
|
if (!data) {
|
|
@@ -233,13 +233,11 @@ class PromotedFundJoinV2IFrameBuilder {
|
|
|
233
233
|
if (value !== undefined) {
|
|
234
234
|
const input = document.createElement('input');
|
|
235
235
|
input.name = prop;
|
|
236
|
+
input.type = 'hidden';
|
|
236
237
|
if (typeof value === 'boolean') {
|
|
237
|
-
input.
|
|
238
|
-
input.checked = value;
|
|
239
|
-
input.style.visibility = 'hidden';
|
|
238
|
+
input.value = value ? 'true' : 'false';
|
|
240
239
|
}
|
|
241
240
|
else {
|
|
242
|
-
input.type = 'hidden';
|
|
243
241
|
input.value = value;
|
|
244
242
|
}
|
|
245
243
|
form.append(input);
|
|
@@ -260,7 +260,7 @@ class TapSubscriber extends Subscriber {
|
|
|
260
260
|
}
|
|
261
261
|
}
|
|
262
262
|
|
|
263
|
-
const AppVersion = '1.3.
|
|
263
|
+
const AppVersion = '1.3.43723';
|
|
264
264
|
|
|
265
265
|
// -------------------------------------------------------------------------------------
|
|
266
266
|
// guards
|
|
@@ -16078,7 +16078,7 @@ class PromotedFundJoinV2IFrameBuilder {
|
|
|
16078
16078
|
build(iframe$1, history) {
|
|
16079
16079
|
if (!(iframe$1 === null || iframe$1 === void 0 ? void 0 : iframe$1.contentDocument))
|
|
16080
16080
|
return;
|
|
16081
|
-
const postData = Object.assign(Object.assign({}, this.getMemberData()), { partnerId: superSelectionAppService.partnerIdOrDefault, accountId: superSelectionAppService.accountIdOrDefault, fundId: state.fund.id, authToken: superSelectionAppService.jwt, employerDefault: state.fund.type === 'PromotedDefault' });
|
|
16081
|
+
const postData = Object.assign(Object.assign({}, this.getMemberData()), { partnerId: superSelectionAppService.partnerIdOrDefault, accountId: superSelectionAppService.accountIdOrDefault, fundId: state.fund.id, authToken: superSelectionAppService.jwt, employerDefault: state.fund.type === 'PromotedDefault', definedBenefitsEligibility: Option.toUndefined(superSelectionAppService.isDefinedBenefitsEligible) });
|
|
16082
16082
|
const handleMessage = async (event) => {
|
|
16083
16083
|
const { data } = event;
|
|
16084
16084
|
if (!data) {
|
|
@@ -16266,13 +16266,11 @@ class PromotedFundJoinV2IFrameBuilder {
|
|
|
16266
16266
|
if (value !== undefined) {
|
|
16267
16267
|
const input = document.createElement('input');
|
|
16268
16268
|
input.name = prop;
|
|
16269
|
+
input.type = 'hidden';
|
|
16269
16270
|
if (typeof value === 'boolean') {
|
|
16270
|
-
input.
|
|
16271
|
-
input.checked = value;
|
|
16272
|
-
input.style.visibility = 'hidden';
|
|
16271
|
+
input.value = value ? 'true' : 'false';
|
|
16273
16272
|
}
|
|
16274
16273
|
else {
|
|
16275
|
-
input.type = 'hidden';
|
|
16276
16274
|
input.value = value;
|
|
16277
16275
|
}
|
|
16278
16276
|
form.append(input);
|