@flarehr/apollo-super-selection 3.65.64780 → 3.68.65077
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/assets/logo-active.svg +1 -1
- package/dist/lib/apollo-super-selection/p-0f723eb4.system.js +1 -1
- package/dist/lib/apollo-super-selection/p-6c056424.entry.js +14 -0
- package/dist/lib/apollo-super-selection/p-9d82a0ed.system.entry.js +69 -0
- 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_30.cjs.entry.js +65 -65
- package/dist/lib/collection/apollo-super-selection.css +1 -1
- package/dist/lib/collection/components/super-selection-app/app-state-pages/success.js +1 -1
- package/dist/lib/collection/components/super-selection-app/existing-choice/existing-choice.js +31 -23
- package/dist/lib/collection/components/super-selection-app/funds/custom-fund/custom-fund.js +3 -3
- package/dist/lib/collection/components/super-selection-app/funds/custom-fund/default-fund/default-fund.js +3 -3
- package/dist/lib/collection/components/super-selection-app/funds/custom-fund/my-own-fund/my-own-fund-inputs.js +2 -2
- package/dist/lib/collection/components/super-selection-app/funds/custom-fund/my-own-fund/my-own-fund.js +1 -1
- package/dist/lib/collection/components/super-selection-app/funds/custom-fund/self-managed-fund/self-managed-fund-inputs.js +1 -1
- package/dist/lib/collection/components/super-selection-app/funds/custom-fund/self-managed-fund/self-managed-fund.js +1 -1
- package/dist/lib/collection/components/super-selection-app/header-section/header-section.js +3 -13
- package/dist/lib/collection/components/super-selection-app/misc/button.js +32 -1
- package/dist/lib/collection/components/super-selection-app/misc/dropdown-async.js +2 -2
- package/dist/lib/collection/components/super-selection-app/services/feature-flag.service.js +3 -1
- package/dist/lib/collection/components/super-selection-app/standard-choice/standard-choice-form.js +4 -4
- package/dist/lib/collection/components/super-selection-app/super-choice-page/assets/logo-active.svg +1 -1
- package/dist/lib/collection/components/super-selection-app/super-choice-page/super-choice-item/super-choice-item-top.js +26 -20
- package/dist/lib/collection/components/super-selection-app/super-choice-page/super-choice-page.js +27 -33
- package/dist/lib/esm/apollo-super-selection.js +1 -1
- package/dist/lib/esm/loader.js +1 -1
- package/dist/lib/esm/sss-button_30.entry.js +65 -65
- 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_30.entry.js +2 -2
- package/dist/lib/types/components/super-selection-app/misc/button.d.ts +2 -0
- package/dist/lib/types/components/super-selection-app/super-choice-page/super-choice-item/super-choice-item-top.d.ts +3 -2
- package/dist/lib/types/components.d.ts +7 -5
- package/package.json +1 -1
- package/dist/lib/apollo-super-selection/p-8d47d8e3.entry.js +0 -14
- package/dist/lib/apollo-super-selection/p-ac2c3503.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[];
|
|
@@ -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"?:
|
|
97
|
-
"features":
|
|
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"?:
|
|
387
|
-
"features"?:
|
|
388
|
+
"featureSubText"?: VNode;
|
|
389
|
+
"features"?: VNode[];
|
|
388
390
|
"logo"?: string;
|
|
389
391
|
"name"?: string;
|
|
390
392
|
}
|