@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.
- package/dist/lib/apollo-super-selection/apollo-super-selection.css +1 -1
- package/dist/lib/apollo-super-selection/apollo-super-selection.esm.js +1 -1
- package/dist/lib/apollo-super-selection/{p-8fa0ce98.entry.js → p-4957a5ac.entry.js} +2 -2
- package/dist/lib/apollo-super-selection/p-bdcfc026.system.js +1 -1
- package/dist/lib/apollo-super-selection/{p-4dd50caf.system.entry.js → p-e1a8d252.system.entry.js} +2 -2
- package/dist/lib/cjs/apollo-super-selection.cjs.js +1 -1
- package/dist/lib/cjs/loader.cjs.js +1 -1
- package/dist/lib/cjs/sss-button_31.cjs.entry.js +5 -5
- package/dist/lib/collection/apollo-super-selection.css +1 -1
- package/dist/lib/collection/components/super-selection-app/existing-choice/existing-choice.js +2 -3
- package/dist/lib/collection/components/super-selection-app/footer-section/footer-section.js +9 -13
- package/dist/lib/collection/components/super-selection-app/super-selection-app.js +1 -1
- package/dist/lib/esm/apollo-super-selection.js +1 -1
- package/dist/lib/esm/loader.js +1 -1
- package/dist/lib/esm/sss-button_31.entry.js +5 -5
- package/dist/lib/esm-es5/apollo-super-selection.js +1 -1
- package/dist/lib/esm-es5/loader.js +1 -1
- package/dist/lib/esm-es5/sss-button_31.entry.js +2 -2
- package/dist/lib/types/components/super-selection-app/footer-section/footer-section.d.ts +1 -2
- package/dist/lib/types/components.d.ts +2 -3
- package/package.json +1 -1
|
@@ -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"
|
|
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"?:
|
|
354
|
+
"textOverride"?: string;
|
|
356
355
|
}
|
|
357
356
|
interface SssHeaderSection {
|
|
358
357
|
"currentPage"?: 'choice' | 'own-fund';
|