@flarehr/apollo-super-selection 5.1.47247 → 5.3.47886

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 (33) hide show
  1. package/dist/lib/apollo-super-selection/apollo-super-selection.esm.js +1 -1
  2. package/dist/lib/apollo-super-selection/p-691ca20d.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-faf9722e.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_41.cjs.entry.js → sss-button_43.cjs.entry.js} +72 -42
  8. package/dist/lib/collection/collection-manifest.json +4 -0
  9. package/dist/lib/collection/components/super-campaign/super-campaign.js +5 -2
  10. package/dist/lib/collection/components/super-selection-app/consent/consent-wrapper.js +32 -0
  11. package/dist/lib/collection/components/super-selection-app/consent/consent.js +2 -0
  12. package/dist/lib/collection/components/super-selection-app/prefill-fund/prefill-common.js +2 -2
  13. package/dist/lib/collection/components/super-selection-app/prefill-fund/prefill-display-field.js +1 -1
  14. package/dist/lib/collection/components/super-selection-app/prefill-fund/prefill-my-own-fund.js +5 -5
  15. package/dist/lib/collection/components/super-selection-app/prefill-fund/prefill-smsf.js +15 -14
  16. package/dist/lib/collection/components/super-selection-app/prefill-fund/prefill-types.js +22 -20
  17. package/dist/lib/collection/components/super-selection-app/services/super-selection-app.routes.js +2 -2
  18. package/dist/lib/collection/components/super-selection-app/super-choice-page/super-choice-page-wrapper.js +32 -0
  19. package/dist/lib/collection/components/super-selection-app/super-choice-page/super-choice-page.js +2 -0
  20. package/dist/lib/esm/apollo-super-selection.js +1 -1
  21. package/dist/lib/esm/loader.js +1 -1
  22. package/dist/lib/esm/{sss-button_41.entry.js → sss-button_43.entry.js} +71 -43
  23. package/dist/lib/esm-es5/apollo-super-selection.js +1 -1
  24. package/dist/lib/esm-es5/loader.js +1 -1
  25. package/dist/lib/esm-es5/{sss-button_41.entry.js → sss-button_43.entry.js} +4 -4
  26. package/dist/lib/types/components/super-selection-app/consent/consent-wrapper.d.ts +5 -0
  27. package/dist/lib/types/components/super-selection-app/prefill-fund/prefill-common.d.ts +1 -1
  28. package/dist/lib/types/components/super-selection-app/prefill-fund/prefill-types.d.ts +4 -2
  29. package/dist/lib/types/components/super-selection-app/super-choice-page/super-choice-page-wrapper.d.ts +5 -0
  30. package/dist/lib/types/components.d.ts +30 -0
  31. package/package.json +1 -1
  32. package/dist/lib/apollo-super-selection/p-3a01a5cf.entry.js +0 -14
  33. package/dist/lib/apollo-super-selection/p-77a13ae8.system.entry.js +0 -69
@@ -0,0 +1,5 @@
1
+ import { RouterHistory } from '@stencil/router';
2
+ export declare class ConsentWrapper {
3
+ history: RouterHistory;
4
+ render(): Element[];
5
+ }
@@ -1,5 +1,5 @@
1
1
  export declare function isNullOrWhitespace(value: string | null): boolean;
2
- export declare const DisabledField: (name: string, value: string) => any;
2
+ export declare const DisabledField: (name: string, testId: string, value: string) => any;
3
3
  export declare const Header: () => any;
4
4
  export declare class Style {
5
5
  static Input(isValidated: boolean): {
@@ -1,9 +1,10 @@
1
1
  export declare const NAME_PATTERN = "[A-Za-z][A-Za-z']+(( |-)[A-Za-z][A-Za-z']+)*\\s*$";
2
2
  export declare abstract class FormField {
3
3
  readonly name: string;
4
+ readonly testId: string;
4
5
  private _value;
5
6
  private _errorMessage;
6
- protected constructor(name: string, value: string | null);
7
+ protected constructor(name: string, testId: string, value: string | null);
7
8
  get value(): string;
8
9
  set value(newValue: string);
9
10
  get isValid(): boolean;
@@ -13,9 +14,10 @@ export declare abstract class FormField {
13
14
  }
14
15
  export declare class StaticFormField {
15
16
  readonly name: string;
17
+ readonly testId: string;
16
18
  private readonly _value;
17
19
  private readonly _isValid;
18
- constructor(name: string, value: string | null, isValid: boolean);
20
+ constructor(name: string, testId: string, value: string | null, isValid: boolean);
19
21
  get value(): string;
20
22
  get isValid(): boolean;
21
23
  get isEmpty(): boolean;
@@ -0,0 +1,5 @@
1
+ import { RouterHistory } from '@stencil/router';
2
+ export declare class SuperChoicePageWrapper {
3
+ history: RouterHistory;
4
+ render(): Element[];
5
+ }
@@ -28,6 +28,9 @@ export namespace Components {
28
28
  interface SssConsentPage {
29
29
  "history": RouterHistory;
30
30
  }
31
+ interface SssConsentPageWrapper {
32
+ "history": RouterHistory;
33
+ }
31
34
  interface SssCustomFund {
32
35
  "history": RouterHistory;
33
36
  }
@@ -152,6 +155,9 @@ export namespace Components {
152
155
  interface SssSuperChoicePage {
153
156
  "history": RouterHistory;
154
157
  }
158
+ interface SssSuperChoicePageWrapper {
159
+ "history": RouterHistory;
160
+ }
155
161
  interface SuperSelectionApp {
156
162
  "accessToken": string;
157
163
  "appBaseUrl"?: string;
@@ -177,6 +183,12 @@ declare global {
177
183
  prototype: HTMLSssConsentPageElement;
178
184
  new (): HTMLSssConsentPageElement;
179
185
  };
186
+ interface HTMLSssConsentPageWrapperElement extends Components.SssConsentPageWrapper, HTMLStencilElement {
187
+ }
188
+ var HTMLSssConsentPageWrapperElement: {
189
+ prototype: HTMLSssConsentPageWrapperElement;
190
+ new (): HTMLSssConsentPageWrapperElement;
191
+ };
180
192
  interface HTMLSssCustomFundElement extends Components.SssCustomFund, HTMLStencilElement {
181
193
  }
182
194
  var HTMLSssCustomFundElement: {
@@ -375,6 +387,12 @@ declare global {
375
387
  prototype: HTMLSssSuperChoicePageElement;
376
388
  new (): HTMLSssSuperChoicePageElement;
377
389
  };
390
+ interface HTMLSssSuperChoicePageWrapperElement extends Components.SssSuperChoicePageWrapper, HTMLStencilElement {
391
+ }
392
+ var HTMLSssSuperChoicePageWrapperElement: {
393
+ prototype: HTMLSssSuperChoicePageWrapperElement;
394
+ new (): HTMLSssSuperChoicePageWrapperElement;
395
+ };
378
396
  interface HTMLSuperSelectionAppElement extends Components.SuperSelectionApp, HTMLStencilElement {
379
397
  }
380
398
  var HTMLSuperSelectionAppElement: {
@@ -390,6 +408,7 @@ declare global {
390
408
  interface HTMLElementTagNameMap {
391
409
  "sss-button": HTMLSssButtonElement;
392
410
  "sss-consent-page": HTMLSssConsentPageElement;
411
+ "sss-consent-page-wrapper": HTMLSssConsentPageWrapperElement;
393
412
  "sss-custom-fund": HTMLSssCustomFundElement;
394
413
  "sss-default-fund": HTMLSssDefaultFundElement;
395
414
  "sss-dropdown-async": HTMLSssDropdownAsyncElement;
@@ -423,6 +442,7 @@ declare global {
423
442
  "sss-super-choice-item-bottom": HTMLSssSuperChoiceItemBottomElement;
424
443
  "sss-super-choice-item-top": HTMLSssSuperChoiceItemTopElement;
425
444
  "sss-super-choice-page": HTMLSssSuperChoicePageElement;
445
+ "sss-super-choice-page-wrapper": HTMLSssSuperChoicePageWrapperElement;
426
446
  "super-selection-app": HTMLSuperSelectionAppElement;
427
447
  "super-selection-app-host": HTMLSuperSelectionAppHostElement;
428
448
  }
@@ -439,6 +459,9 @@ declare namespace LocalJSX {
439
459
  interface SssConsentPage {
440
460
  "history"?: RouterHistory;
441
461
  }
462
+ interface SssConsentPageWrapper {
463
+ "history"?: RouterHistory;
464
+ }
442
465
  interface SssCustomFund {
443
466
  "history"?: RouterHistory;
444
467
  }
@@ -568,6 +591,9 @@ declare namespace LocalJSX {
568
591
  interface SssSuperChoicePage {
569
592
  "history"?: RouterHistory;
570
593
  }
594
+ interface SssSuperChoicePageWrapper {
595
+ "history"?: RouterHistory;
596
+ }
571
597
  interface SuperSelectionApp {
572
598
  "accessToken"?: string;
573
599
  "appBaseUrl"?: string;
@@ -585,6 +611,7 @@ declare namespace LocalJSX {
585
611
  interface IntrinsicElements {
586
612
  "sss-button": SssButton;
587
613
  "sss-consent-page": SssConsentPage;
614
+ "sss-consent-page-wrapper": SssConsentPageWrapper;
588
615
  "sss-custom-fund": SssCustomFund;
589
616
  "sss-default-fund": SssDefaultFund;
590
617
  "sss-dropdown-async": SssDropdownAsync;
@@ -618,6 +645,7 @@ declare namespace LocalJSX {
618
645
  "sss-super-choice-item-bottom": SssSuperChoiceItemBottom;
619
646
  "sss-super-choice-item-top": SssSuperChoiceItemTop;
620
647
  "sss-super-choice-page": SssSuperChoicePage;
648
+ "sss-super-choice-page-wrapper": SssSuperChoicePageWrapper;
621
649
  "super-selection-app": SuperSelectionApp;
622
650
  "super-selection-app-host": SuperSelectionAppHost;
623
651
  }
@@ -628,6 +656,7 @@ declare module "@stencil/core" {
628
656
  interface IntrinsicElements {
629
657
  "sss-button": LocalJSX.SssButton & JSXBase.HTMLAttributes<HTMLSssButtonElement>;
630
658
  "sss-consent-page": LocalJSX.SssConsentPage & JSXBase.HTMLAttributes<HTMLSssConsentPageElement>;
659
+ "sss-consent-page-wrapper": LocalJSX.SssConsentPageWrapper & JSXBase.HTMLAttributes<HTMLSssConsentPageWrapperElement>;
631
660
  "sss-custom-fund": LocalJSX.SssCustomFund & JSXBase.HTMLAttributes<HTMLSssCustomFundElement>;
632
661
  "sss-default-fund": LocalJSX.SssDefaultFund & JSXBase.HTMLAttributes<HTMLSssDefaultFundElement>;
633
662
  "sss-dropdown-async": LocalJSX.SssDropdownAsync & JSXBase.HTMLAttributes<HTMLSssDropdownAsyncElement>;
@@ -661,6 +690,7 @@ declare module "@stencil/core" {
661
690
  "sss-super-choice-item-bottom": LocalJSX.SssSuperChoiceItemBottom & JSXBase.HTMLAttributes<HTMLSssSuperChoiceItemBottomElement>;
662
691
  "sss-super-choice-item-top": LocalJSX.SssSuperChoiceItemTop & JSXBase.HTMLAttributes<HTMLSssSuperChoiceItemTopElement>;
663
692
  "sss-super-choice-page": LocalJSX.SssSuperChoicePage & JSXBase.HTMLAttributes<HTMLSssSuperChoicePageElement>;
693
+ "sss-super-choice-page-wrapper": LocalJSX.SssSuperChoicePageWrapper & JSXBase.HTMLAttributes<HTMLSssSuperChoicePageWrapperElement>;
664
694
  "super-selection-app": LocalJSX.SuperSelectionApp & JSXBase.HTMLAttributes<HTMLSuperSelectionAppElement>;
665
695
  "super-selection-app-host": LocalJSX.SuperSelectionAppHost & JSXBase.HTMLAttributes<HTMLSuperSelectionAppHostElement>;
666
696
  }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@flarehr/apollo-super-selection",
3
- "version": "5.1.47247",
3
+ "version": "5.3.47886",
4
4
  "description": "Apollo Super Selection",
5
5
  "main": "dist/lib/index.cjs.js",
6
6
  "module": "dist/lib/index.js",