@flarehr/apollo-super-selection 4.44.37068 → 4.45.37278
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-68d9b3e5.entry.js +14 -0
- package/dist/lib/apollo-super-selection/p-90407255.system.entry.js +69 -0
- package/dist/lib/apollo-super-selection/p-bdcfc026.system.js +1 -1
- 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_38.cjs.entry.js → sss-button_40.cjs.entry.js} +22 -2
- package/dist/lib/collection/apollo-super-selection.css +1 -1
- package/dist/lib/collection/collection-manifest.json +4 -0
- package/dist/lib/collection/components/super-selection-app/loading-component/loading-component.js +29 -0
- package/dist/lib/collection/components/super-selection-app/loading-super-indicator/loading-super-indicator.js +11 -0
- package/dist/lib/collection/components/super-selection-app/super-choice-page/super-choice-page.js +1 -6
- package/dist/lib/esm/apollo-super-selection.js +1 -1
- package/dist/lib/esm/loader.js +1 -1
- package/dist/lib/esm/{sss-button_38.entry.js → sss-button_40.entry.js} +21 -3
- 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_38.entry.js → sss-button_40.entry.js} +2 -2
- package/dist/lib/types/components/super-selection-app/loading-component/loading-component.d.ts +4 -0
- package/dist/lib/types/components/super-selection-app/loading-super-indicator/loading-super-indicator.d.ts +3 -0
- package/dist/lib/types/components.d.ts +28 -0
- package/package.json +1 -1
- package/dist/lib/apollo-super-selection/p-a7bc3016.entry.js +0 -14
- package/dist/lib/apollo-super-selection/p-ef87d5b9.system.entry.js +0 -69
|
@@ -56,12 +56,17 @@ export namespace Components {
|
|
|
56
56
|
interface SssIframeHost {
|
|
57
57
|
"build": (iframe: HTMLIFrameElement) => void;
|
|
58
58
|
}
|
|
59
|
+
interface SssLoadingComponent {
|
|
60
|
+
"header": string;
|
|
61
|
+
}
|
|
59
62
|
interface SssLoadingIndicator {
|
|
60
63
|
"size": number;
|
|
61
64
|
"theme": 'primary' | 'light';
|
|
62
65
|
}
|
|
63
66
|
interface SssLoadingPage {
|
|
64
67
|
}
|
|
68
|
+
interface SssLoadingSuperIndicator {
|
|
69
|
+
}
|
|
65
70
|
interface SssMyOwnFund {
|
|
66
71
|
"history": RouterHistory;
|
|
67
72
|
}
|
|
@@ -209,6 +214,12 @@ declare global {
|
|
|
209
214
|
prototype: HTMLSssIframeHostElement;
|
|
210
215
|
new (): HTMLSssIframeHostElement;
|
|
211
216
|
};
|
|
217
|
+
interface HTMLSssLoadingComponentElement extends Components.SssLoadingComponent, HTMLStencilElement {
|
|
218
|
+
}
|
|
219
|
+
var HTMLSssLoadingComponentElement: {
|
|
220
|
+
prototype: HTMLSssLoadingComponentElement;
|
|
221
|
+
new (): HTMLSssLoadingComponentElement;
|
|
222
|
+
};
|
|
212
223
|
interface HTMLSssLoadingIndicatorElement extends Components.SssLoadingIndicator, HTMLStencilElement {
|
|
213
224
|
}
|
|
214
225
|
var HTMLSssLoadingIndicatorElement: {
|
|
@@ -221,6 +232,12 @@ declare global {
|
|
|
221
232
|
prototype: HTMLSssLoadingPageElement;
|
|
222
233
|
new (): HTMLSssLoadingPageElement;
|
|
223
234
|
};
|
|
235
|
+
interface HTMLSssLoadingSuperIndicatorElement extends Components.SssLoadingSuperIndicator, HTMLStencilElement {
|
|
236
|
+
}
|
|
237
|
+
var HTMLSssLoadingSuperIndicatorElement: {
|
|
238
|
+
prototype: HTMLSssLoadingSuperIndicatorElement;
|
|
239
|
+
new (): HTMLSssLoadingSuperIndicatorElement;
|
|
240
|
+
};
|
|
224
241
|
interface HTMLSssMyOwnFundElement extends Components.SssMyOwnFund, HTMLStencilElement {
|
|
225
242
|
}
|
|
226
243
|
var HTMLSssMyOwnFundElement: {
|
|
@@ -369,8 +386,10 @@ declare global {
|
|
|
369
386
|
"sss-footer-section": HTMLSssFooterSectionElement;
|
|
370
387
|
"sss-header-section": HTMLSssHeaderSectionElement;
|
|
371
388
|
"sss-iframe-host": HTMLSssIframeHostElement;
|
|
389
|
+
"sss-loading-component": HTMLSssLoadingComponentElement;
|
|
372
390
|
"sss-loading-indicator": HTMLSssLoadingIndicatorElement;
|
|
373
391
|
"sss-loading-page": HTMLSssLoadingPageElement;
|
|
392
|
+
"sss-loading-super-indicator": HTMLSssLoadingSuperIndicatorElement;
|
|
374
393
|
"sss-my-own-fund": HTMLSssMyOwnFundElement;
|
|
375
394
|
"sss-my-own-fund-inputs": HTMLSssMyOwnFundInputsElement;
|
|
376
395
|
"sss-name-input": HTMLSssNameInputElement;
|
|
@@ -437,12 +456,17 @@ declare namespace LocalJSX {
|
|
|
437
456
|
interface SssIframeHost {
|
|
438
457
|
"build"?: (iframe: HTMLIFrameElement) => void;
|
|
439
458
|
}
|
|
459
|
+
interface SssLoadingComponent {
|
|
460
|
+
"header"?: string;
|
|
461
|
+
}
|
|
440
462
|
interface SssLoadingIndicator {
|
|
441
463
|
"size"?: number;
|
|
442
464
|
"theme"?: 'primary' | 'light';
|
|
443
465
|
}
|
|
444
466
|
interface SssLoadingPage {
|
|
445
467
|
}
|
|
468
|
+
interface SssLoadingSuperIndicator {
|
|
469
|
+
}
|
|
446
470
|
interface SssMyOwnFund {
|
|
447
471
|
"history"?: RouterHistory;
|
|
448
472
|
}
|
|
@@ -551,8 +575,10 @@ declare namespace LocalJSX {
|
|
|
551
575
|
"sss-footer-section": SssFooterSection;
|
|
552
576
|
"sss-header-section": SssHeaderSection;
|
|
553
577
|
"sss-iframe-host": SssIframeHost;
|
|
578
|
+
"sss-loading-component": SssLoadingComponent;
|
|
554
579
|
"sss-loading-indicator": SssLoadingIndicator;
|
|
555
580
|
"sss-loading-page": SssLoadingPage;
|
|
581
|
+
"sss-loading-super-indicator": SssLoadingSuperIndicator;
|
|
556
582
|
"sss-my-own-fund": SssMyOwnFund;
|
|
557
583
|
"sss-my-own-fund-inputs": SssMyOwnFundInputs;
|
|
558
584
|
"sss-name-input": SssNameInput;
|
|
@@ -591,8 +617,10 @@ declare module "@stencil/core" {
|
|
|
591
617
|
"sss-footer-section": LocalJSX.SssFooterSection & JSXBase.HTMLAttributes<HTMLSssFooterSectionElement>;
|
|
592
618
|
"sss-header-section": LocalJSX.SssHeaderSection & JSXBase.HTMLAttributes<HTMLSssHeaderSectionElement>;
|
|
593
619
|
"sss-iframe-host": LocalJSX.SssIframeHost & JSXBase.HTMLAttributes<HTMLSssIframeHostElement>;
|
|
620
|
+
"sss-loading-component": LocalJSX.SssLoadingComponent & JSXBase.HTMLAttributes<HTMLSssLoadingComponentElement>;
|
|
594
621
|
"sss-loading-indicator": LocalJSX.SssLoadingIndicator & JSXBase.HTMLAttributes<HTMLSssLoadingIndicatorElement>;
|
|
595
622
|
"sss-loading-page": LocalJSX.SssLoadingPage & JSXBase.HTMLAttributes<HTMLSssLoadingPageElement>;
|
|
623
|
+
"sss-loading-super-indicator": LocalJSX.SssLoadingSuperIndicator & JSXBase.HTMLAttributes<HTMLSssLoadingSuperIndicatorElement>;
|
|
596
624
|
"sss-my-own-fund": LocalJSX.SssMyOwnFund & JSXBase.HTMLAttributes<HTMLSssMyOwnFundElement>;
|
|
597
625
|
"sss-my-own-fund-inputs": LocalJSX.SssMyOwnFundInputs & JSXBase.HTMLAttributes<HTMLSssMyOwnFundInputsElement>;
|
|
598
626
|
"sss-name-input": LocalJSX.SssNameInput & JSXBase.HTMLAttributes<HTMLSssNameInputElement>;
|