@flarehr/apollo-super-selection 3.59.63229 → 3.60.63971
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-0f723eb4.system.js +1 -1
- package/dist/lib/apollo-super-selection/p-23565ba5.entry.js +14 -0
- package/dist/lib/apollo-super-selection/p-5ec7c48e.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_28.cjs.entry.js → sss-button_30.cjs.entry.js} +233 -57
- package/dist/lib/collection/apollo-super-selection.css +1 -1
- package/dist/lib/collection/collection-manifest.json +6 -2
- package/dist/lib/collection/components/super-selection-app/api/super-selection.api.dto.js +12 -0
- package/dist/lib/collection/components/super-selection-app/funds/constants.js +26 -8
- package/dist/lib/collection/components/super-selection-app/funds/custom-fund/self-managed-fund/self-managed-fund-inputs.js +2 -2
- package/dist/lib/collection/components/super-selection-app/funds/promoted-fund/promoted-fund-join-v1-page.js +30 -0
- package/dist/lib/collection/components/super-selection-app/funds/promoted-fund/promoted-fund-join-v2-page.js +30 -0
- package/dist/lib/collection/components/super-selection-app/funds/promoted-fund/services/{promoted-fund-join-iframe-builder.js → promoted-fund-join-v1-iframe-builder.js} +2 -2
- package/dist/lib/collection/components/super-selection-app/funds/promoted-fund/services/promoted-fund-join-v2-iframe-builder.js +117 -0
- package/dist/lib/collection/components/super-selection-app/funds/slate-super/slate-join-page.js +2 -6
- package/dist/lib/collection/components/super-selection-app/misc/iframe-host.js +32 -0
- package/dist/lib/collection/components/super-selection-app/services/super-selection-app.routes.js +4 -2
- package/dist/lib/collection/components/super-selection-app/super-choice-page/super-choice-page.js +54 -41
- package/dist/lib/collection/components/super-selection-app/super-selection-app.js +2 -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_28.entry.js → sss-button_30.entry.js} +231 -57
- 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_28.entry.js → sss-button_30.entry.js} +3 -3
- package/dist/lib/types/components/super-selection-app/api/super-selection.api.dto.d.ts +10 -0
- package/dist/lib/types/components/super-selection-app/funds/constants.d.ts +12 -0
- package/dist/lib/types/components/super-selection-app/funds/promoted-fund/{promoted-fund-join-page.d.ts → promoted-fund-join-v1-page.d.ts} +1 -3
- package/dist/lib/types/components/super-selection-app/funds/promoted-fund/promoted-fund-join-v2-page.d.ts +5 -0
- package/dist/lib/types/components/super-selection-app/funds/promoted-fund/services/{promoted-fund-join-iframe-builder.d.ts → promoted-fund-join-v1-iframe-builder.d.ts} +2 -2
- package/dist/lib/types/components/super-selection-app/funds/promoted-fund/services/promoted-fund-join-v2-iframe-builder.d.ts +9 -0
- package/dist/lib/types/components/super-selection-app/funds/slate-super/slate-join-page.d.ts +0 -2
- package/dist/lib/types/components/super-selection-app/misc/iframe-host.d.ts +6 -0
- package/dist/lib/types/components/super-selection-app/services/super-selection-app.routes.d.ts +2 -1
- package/dist/lib/types/components.d.ts +39 -9
- package/package.json +1 -1
- package/dist/lib/apollo-super-selection/p-1c352f8f.system.entry.js +0 -69
- package/dist/lib/apollo-super-selection/p-be78d5fd.entry.js +0 -14
- package/dist/lib/collection/components/super-selection-app/funds/promoted-fund/promoted-fund-join-page.js +0 -34
|
@@ -1,34 +0,0 @@
|
|
|
1
|
-
import { Component, h, Host, Prop } from '@stencil/core';
|
|
2
|
-
import PromotedFundJoinIFrameBuilder from './services/promoted-fund-join-iframe-builder';
|
|
3
|
-
export class PromotedFundJoinPage {
|
|
4
|
-
componentDidLoad() {
|
|
5
|
-
PromotedFundJoinIFrameBuilder.build(this.iframeElement, this.history);
|
|
6
|
-
}
|
|
7
|
-
render() {
|
|
8
|
-
return (h(Host, { class: "w-screen" },
|
|
9
|
-
h("iframe", { width: "100%", height: window.innerHeight, style: { border: 'none' }, ref: (el) => (this.iframeElement = el) })));
|
|
10
|
-
}
|
|
11
|
-
static get is() { return "sss-promoted-fund-join-page"; }
|
|
12
|
-
static get properties() { return {
|
|
13
|
-
"history": {
|
|
14
|
-
"type": "unknown",
|
|
15
|
-
"mutable": false,
|
|
16
|
-
"complexType": {
|
|
17
|
-
"original": "RouterHistory",
|
|
18
|
-
"resolved": "RouterHistory",
|
|
19
|
-
"references": {
|
|
20
|
-
"RouterHistory": {
|
|
21
|
-
"location": "import",
|
|
22
|
-
"path": "@stencil/router"
|
|
23
|
-
}
|
|
24
|
-
}
|
|
25
|
-
},
|
|
26
|
-
"required": false,
|
|
27
|
-
"optional": false,
|
|
28
|
-
"docs": {
|
|
29
|
-
"tags": [],
|
|
30
|
-
"text": ""
|
|
31
|
-
}
|
|
32
|
-
}
|
|
33
|
-
}; }
|
|
34
|
-
}
|