@flarehr/apollo-super-selection 1.3.54403 → 1.3.54526

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.
@@ -1,6 +1,5 @@
1
- import { Option } from 'fp-ts/lib/Option';
2
1
  export declare class FooterSection {
3
- textOverride: Option<string>;
2
+ textOverride?: string;
4
3
  render(): Element[];
5
4
  private footerText;
6
5
  }
@@ -8,7 +8,6 @@ import { HTMLStencilElement, JSXBase } from "./stencil-public-runtime";
8
8
  import { ButtonSize, ButtonVariant } from "./components/super-selection-app/misc/button";
9
9
  import { LocationSegments, RouterHistory } from "@stencil/router";
10
10
  import { SearchResult, SelectInputOption } from "./components/super-selection-app/misc/dropdown-async";
11
- import { Option } from "fp-ts/lib/Option";
12
11
  import { MyOwnFundFormState } from "./components/super-selection-app/funds/custom-fund/custom-fund.store";
13
12
  import { FormField, StaticFormField } from "./components/super-selection-app/prefill-fund/prefill-types";
14
13
  import { PrefillOwnFundChoiceDto, PrefillSMSFChoiceDto } from "./components/super-selection-app/api/super-selection.api.dto";
@@ -46,7 +45,7 @@ export namespace Components {
46
45
  "history": RouterHistory;
47
46
  }
48
47
  interface SssFooterSection {
49
- "textOverride": Option<string>;
48
+ "textOverride"?: string;
50
49
  }
51
50
  interface SssHeaderSection {
52
51
  "currentPage": 'choice' | 'own-fund';
@@ -352,7 +351,7 @@ declare namespace LocalJSX {
352
351
  "history"?: RouterHistory;
353
352
  }
354
353
  interface SssFooterSection {
355
- "textOverride"?: Option<string>;
354
+ "textOverride"?: string;
356
355
  }
357
356
  interface SssHeaderSection {
358
357
  "currentPage"?: 'choice' | 'own-fund';
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@flarehr/apollo-super-selection",
3
- "version": "1.3.54403",
3
+ "version": "1.3.54526",
4
4
  "description": "Apollo Super Selection",
5
5
  "main": "dist/lib/index.cjs.js",
6
6
  "module": "dist/lib/index.js",