@flarehr/apollo-super-selection 3.64.64582 → 3.67.64967

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 (42) hide show
  1. package/dist/lib/apollo-super-selection/apollo-super-selection.css +1 -1
  2. package/dist/lib/apollo-super-selection/apollo-super-selection.esm.js +1 -1
  3. package/dist/lib/apollo-super-selection/assets/logo-active.svg +1 -1
  4. package/dist/lib/apollo-super-selection/assets/logo-virgin.svg +8 -0
  5. package/dist/lib/apollo-super-selection/p-0f723eb4.system.js +1 -1
  6. package/dist/lib/apollo-super-selection/p-50566fcd.entry.js +14 -0
  7. package/dist/lib/apollo-super-selection/p-c6c1fd99.system.entry.js +69 -0
  8. package/dist/lib/cjs/apollo-super-selection.cjs.js +1 -1
  9. package/dist/lib/cjs/loader.cjs.js +1 -1
  10. package/dist/lib/cjs/sss-button_30.cjs.entry.js +70 -63
  11. package/dist/lib/collection/apollo-super-selection.css +1 -1
  12. package/dist/lib/collection/components/super-selection-app/app-state-pages/success.js +1 -1
  13. package/dist/lib/collection/components/super-selection-app/existing-choice/existing-choice.js +31 -23
  14. package/dist/lib/collection/components/super-selection-app/footer-section/footer-section.js +1 -1
  15. package/dist/lib/collection/components/super-selection-app/funds/constants.js +2 -2
  16. package/dist/lib/collection/components/super-selection-app/funds/custom-fund/custom-fund.js +3 -3
  17. package/dist/lib/collection/components/super-selection-app/funds/custom-fund/default-fund/default-fund.js +3 -3
  18. package/dist/lib/collection/components/super-selection-app/funds/custom-fund/my-own-fund/my-own-fund-inputs.js +2 -2
  19. package/dist/lib/collection/components/super-selection-app/funds/custom-fund/my-own-fund/my-own-fund.js +1 -1
  20. package/dist/lib/collection/components/super-selection-app/funds/custom-fund/self-managed-fund/self-managed-fund-inputs.js +1 -1
  21. package/dist/lib/collection/components/super-selection-app/funds/custom-fund/self-managed-fund/self-managed-fund.js +1 -1
  22. package/dist/lib/collection/components/super-selection-app/header-section/header-section.js +3 -13
  23. package/dist/lib/collection/components/super-selection-app/misc/button.js +32 -1
  24. package/dist/lib/collection/components/super-selection-app/misc/dropdown-async.js +2 -2
  25. package/dist/lib/collection/components/super-selection-app/services/feature-flag.service.js +3 -1
  26. package/dist/lib/collection/components/super-selection-app/standard-choice/standard-choice-form.js +4 -4
  27. package/dist/lib/collection/components/super-selection-app/super-choice-page/assets/logo-active.svg +1 -1
  28. package/dist/lib/collection/components/super-selection-app/super-choice-page/assets/logo-virgin.svg +8 -0
  29. package/dist/lib/collection/components/super-selection-app/super-choice-page/super-choice-item/super-choice-item-top.js +26 -20
  30. package/dist/lib/collection/components/super-selection-app/super-choice-page/super-choice-page.js +31 -30
  31. package/dist/lib/esm/apollo-super-selection.js +1 -1
  32. package/dist/lib/esm/loader.js +1 -1
  33. package/dist/lib/esm/sss-button_30.entry.js +70 -63
  34. package/dist/lib/esm-es5/apollo-super-selection.js +1 -1
  35. package/dist/lib/esm-es5/loader.js +1 -1
  36. package/dist/lib/esm-es5/sss-button_30.entry.js +2 -2
  37. package/dist/lib/types/components/super-selection-app/misc/button.d.ts +2 -0
  38. package/dist/lib/types/components/super-selection-app/super-choice-page/super-choice-item/super-choice-item-top.d.ts +3 -2
  39. package/dist/lib/types/components.d.ts +7 -5
  40. package/package.json +1 -1
  41. package/dist/lib/apollo-super-selection/p-1c2481c7.entry.js +0 -14
  42. package/dist/lib/apollo-super-selection/p-5139d22d.system.entry.js +0 -69
@@ -1,9 +1,11 @@
1
1
  export declare type ButtonVariant = 'primary' | 'secondary';
2
+ export declare type ButtonSize = 'xs' | 'base' | 'xl';
2
3
  export declare class Button {
3
4
  fillWidth: boolean;
4
5
  fillWidthOnMobile: boolean;
5
6
  disabled: boolean;
6
7
  variant: ButtonVariant;
8
+ size: ButtonSize;
7
9
  promiseFn?: () => Promise<unknown>;
8
10
  private state;
9
11
  render(): Element[];
@@ -1,7 +1,8 @@
1
+ import { VNode } from '../../../../stencil-public-runtime';
1
2
  export declare class SuperChoiceItemTop {
2
3
  name: string;
3
4
  logo: string;
4
- features: string;
5
- featureSubText?: string;
5
+ features: VNode[];
6
+ featureSubText?: VNode;
6
7
  render(): Element[];
7
8
  }
@@ -5,7 +5,7 @@
5
5
  * It contains typing information for all components that exist in this project.
6
6
  */
7
7
  import { HTMLStencilElement, JSXBase } from "./stencil-public-runtime";
8
- import { ButtonVariant } from "./components/super-selection-app/misc/button";
8
+ import { ButtonSize, ButtonVariant } from "./components/super-selection-app/misc/button";
9
9
  import { LocationSegments, RouterHistory } from "@stencil/router";
10
10
  import { SelectInputOption } from "./components/super-selection-app/misc/dropdown-async";
11
11
  import { MyOwnFundFormState } from "./components/super-selection-app/funds/custom-fund/custom-fund.store";
@@ -19,6 +19,7 @@ export namespace Components {
19
19
  "fillWidth": boolean;
20
20
  "fillWidthOnMobile": boolean;
21
21
  "promiseFn"?: () => Promise<unknown>;
22
+ "size": ButtonSize;
22
23
  "variant": ButtonVariant;
23
24
  }
24
25
  interface SssConsentPage {
@@ -93,8 +94,8 @@ export namespace Components {
93
94
  "disclaimer": VNode;
94
95
  }
95
96
  interface SssSuperChoiceItemTop {
96
- "featureSubText"?: string;
97
- "features": string;
97
+ "featureSubText"?: VNode;
98
+ "features": VNode[];
98
99
  "logo": string;
99
100
  "name": string;
100
101
  }
@@ -304,6 +305,7 @@ declare namespace LocalJSX {
304
305
  "fillWidth"?: boolean;
305
306
  "fillWidthOnMobile"?: boolean;
306
307
  "promiseFn"?: () => Promise<unknown>;
308
+ "size"?: ButtonSize;
307
309
  "variant"?: ButtonVariant;
308
310
  }
309
311
  interface SssConsentPage {
@@ -383,8 +385,8 @@ declare namespace LocalJSX {
383
385
  "onJoinFundClicked"?: (event: CustomEvent<void>) => void;
384
386
  }
385
387
  interface SssSuperChoiceItemTop {
386
- "featureSubText"?: string;
387
- "features"?: string;
388
+ "featureSubText"?: VNode;
389
+ "features"?: VNode[];
388
390
  "logo"?: string;
389
391
  "name"?: string;
390
392
  }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@flarehr/apollo-super-selection",
3
- "version": "3.64.64582",
3
+ "version": "3.67.64967",
4
4
  "description": "Apollo Super Selection",
5
5
  "main": "dist/lib/index.cjs.js",
6
6
  "module": "dist/lib/index.js",