@flarehr/apollo-super-selection 1.3.41192 → 1.3.41287

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.
Files changed (25) hide show
  1. package/dist/lib/apollo-super-selection/apollo-super-selection.esm.js +1 -1
  2. package/dist/lib/apollo-super-selection/p-aa36001c.entry.js +14 -0
  3. package/dist/lib/apollo-super-selection/p-bdcfc026.system.js +1 -1
  4. package/dist/lib/apollo-super-selection/p-ebf43247.system.entry.js +69 -0
  5. package/dist/lib/cjs/apollo-super-selection.cjs.js +1 -1
  6. package/dist/lib/cjs/loader.cjs.js +1 -1
  7. package/dist/lib/cjs/{sss-button_40.cjs.entry.js → sss-button_41.cjs.entry.js} +71 -3
  8. package/dist/lib/collection/collection-manifest.json +2 -0
  9. package/dist/lib/collection/components/super-campaign/super-campaign.js +80 -0
  10. package/dist/lib/collection/components/super-selection-app/services/super-selection.store.js +2 -1
  11. package/dist/lib/collection/components/super-selection-app/super-selection-app.js +6 -1
  12. package/dist/lib/esm/apollo-super-selection.js +1 -1
  13. package/dist/lib/esm/loader.js +1 -1
  14. package/dist/lib/esm/{sss-button_40.entry.js → sss-button_41.entry.js} +51 -4
  15. package/dist/lib/esm-es5/apollo-super-selection.js +1 -1
  16. package/dist/lib/esm-es5/loader.js +1 -1
  17. package/dist/lib/esm-es5/sss-button_41.entry.js +69 -0
  18. package/dist/lib/types/components/super-campaign/super-campaign.d.ts +9 -0
  19. package/dist/lib/types/components/super-selection-app/services/super-selection.store.d.ts +1 -0
  20. package/dist/lib/types/components/super-selection-app/super-selection-app.d.ts +1 -0
  21. package/dist/lib/types/components.d.ts +17 -0
  22. package/package.json +1 -1
  23. package/dist/lib/apollo-super-selection/p-4d929dfd.system.entry.js +0 -69
  24. package/dist/lib/apollo-super-selection/p-51737d9d.entry.js +0 -14
  25. package/dist/lib/esm-es5/sss-button_40.entry.js +0 -69
@@ -0,0 +1,9 @@
1
+ export declare class SuperCampaignHost {
2
+ backendUrl: string;
3
+ accessToken: string;
4
+ private componentLoaded;
5
+ componentWillLoad(): Promise<void>;
6
+ render(): Element[];
7
+ private createApolloSuperCampaignScriptUrl;
8
+ private getEnvironmentTag;
9
+ }
@@ -16,5 +16,6 @@ export declare type AppContextState = {
16
16
  campaignConnectPromise: O.Option<Promise<CampaignConnectDto>>;
17
17
  isDefinedBenefitsEligible: O.Option<boolean>;
18
18
  campaignConnect: O.Option<CampaignConnectDto>;
19
+ superCampaignEnabled: boolean;
19
20
  };
20
21
  export declare const initialState: AppContextState;
@@ -25,5 +25,6 @@ export declare class SuperSelectionApp {
25
25
  private isFundJoinPage;
26
26
  private getFooterTextOverride;
27
27
  private routerBaseUrl;
28
+ private getBaseUrl;
28
29
  private renderAppContent;
29
30
  }
@@ -130,6 +130,10 @@ export namespace Components {
130
130
  }
131
131
  interface SssSuccess {
132
132
  }
133
+ interface SssSuperCampaignHost {
134
+ "accessToken": string;
135
+ "backendUrl": string;
136
+ }
133
137
  interface SssSuperChoiceItemBottom {
134
138
  "abn"?: string;
135
139
  "abnInfo"?: string;
@@ -346,6 +350,12 @@ declare global {
346
350
  prototype: HTMLSssSuccessElement;
347
351
  new (): HTMLSssSuccessElement;
348
352
  };
353
+ interface HTMLSssSuperCampaignHostElement extends Components.SssSuperCampaignHost, HTMLStencilElement {
354
+ }
355
+ var HTMLSssSuperCampaignHostElement: {
356
+ prototype: HTMLSssSuperCampaignHostElement;
357
+ new (): HTMLSssSuperCampaignHostElement;
358
+ };
349
359
  interface HTMLSssSuperChoiceItemBottomElement extends Components.SssSuperChoiceItemBottom, HTMLStencilElement {
350
360
  }
351
361
  var HTMLSssSuperChoiceItemBottomElement: {
@@ -408,6 +418,7 @@ declare global {
408
418
  "sss-slate-join-page": HTMLSssSlateJoinPageElement;
409
419
  "sss-standard-choice-form": HTMLSssStandardChoiceFormElement;
410
420
  "sss-success": HTMLSssSuccessElement;
421
+ "sss-super-campaign-host": HTMLSssSuperCampaignHostElement;
411
422
  "sss-super-choice-item-bottom": HTMLSssSuperChoiceItemBottomElement;
412
423
  "sss-super-choice-item-top": HTMLSssSuperChoiceItemTopElement;
413
424
  "sss-super-choice-page": HTMLSssSuperChoicePageElement;
@@ -533,6 +544,10 @@ declare namespace LocalJSX {
533
544
  }
534
545
  interface SssSuccess {
535
546
  }
547
+ interface SssSuperCampaignHost {
548
+ "accessToken"?: string;
549
+ "backendUrl"?: string;
550
+ }
536
551
  interface SssSuperChoiceItemBottom {
537
552
  "abn"?: string;
538
553
  "abnInfo"?: string;
@@ -597,6 +612,7 @@ declare namespace LocalJSX {
597
612
  "sss-slate-join-page": SssSlateJoinPage;
598
613
  "sss-standard-choice-form": SssStandardChoiceForm;
599
614
  "sss-success": SssSuccess;
615
+ "sss-super-campaign-host": SssSuperCampaignHost;
600
616
  "sss-super-choice-item-bottom": SssSuperChoiceItemBottom;
601
617
  "sss-super-choice-item-top": SssSuperChoiceItemTop;
602
618
  "sss-super-choice-page": SssSuperChoicePage;
@@ -639,6 +655,7 @@ declare module "@stencil/core" {
639
655
  "sss-slate-join-page": LocalJSX.SssSlateJoinPage & JSXBase.HTMLAttributes<HTMLSssSlateJoinPageElement>;
640
656
  "sss-standard-choice-form": LocalJSX.SssStandardChoiceForm & JSXBase.HTMLAttributes<HTMLSssStandardChoiceFormElement>;
641
657
  "sss-success": LocalJSX.SssSuccess & JSXBase.HTMLAttributes<HTMLSssSuccessElement>;
658
+ "sss-super-campaign-host": LocalJSX.SssSuperCampaignHost & JSXBase.HTMLAttributes<HTMLSssSuperCampaignHostElement>;
642
659
  "sss-super-choice-item-bottom": LocalJSX.SssSuperChoiceItemBottom & JSXBase.HTMLAttributes<HTMLSssSuperChoiceItemBottomElement>;
643
660
  "sss-super-choice-item-top": LocalJSX.SssSuperChoiceItemTop & JSXBase.HTMLAttributes<HTMLSssSuperChoiceItemTopElement>;
644
661
  "sss-super-choice-page": LocalJSX.SssSuperChoicePage & JSXBase.HTMLAttributes<HTMLSssSuperChoicePageElement>;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@flarehr/apollo-super-selection",
3
- "version": "1.3.41192",
3
+ "version": "1.3.41287",
4
4
  "description": "Apollo Super Selection",
5
5
  "main": "dist/lib/index.cjs.js",
6
6
  "module": "dist/lib/index.js",