@flarehr/apollo-super-selection 5.44.6793 → 5.45.6971

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.
Files changed (31) hide show
  1. package/dist/lib/apollo-super-selection/apollo-super-selection.esm.js +1 -1
  2. package/dist/lib/apollo-super-selection/p-44edd355.system.entry.js +69 -0
  3. package/dist/lib/apollo-super-selection/p-46cf321a.entry.js +14 -0
  4. package/dist/lib/apollo-super-selection/p-bdcfc026.system.js +1 -1
  5. package/dist/lib/cjs/apollo-super-selection.cjs.js +1 -1
  6. package/dist/lib/cjs/loader.cjs.js +1 -1
  7. package/dist/lib/cjs/{sss-button_33.cjs.entry.js → sss-button_34.cjs.entry.js} +205 -103
  8. package/dist/lib/collection/collection-manifest.json +5 -3
  9. package/dist/lib/collection/components/super-selection-app/funds/custom-fund/self-managed-fund/self-managed-fund-inputs.js +253 -0
  10. package/dist/lib/collection/components/super-selection-app/funds/custom-fund/self-managed-fund/self-managed-fund.js +121 -0
  11. package/dist/lib/collection/components/super-selection-app/services/super-selection-app.routes.js +1 -1
  12. package/dist/lib/esm/apollo-super-selection.js +1 -1
  13. package/dist/lib/esm/loader.js +1 -1
  14. package/dist/lib/esm/{sss-button_33.entry.js → sss-button_34.entry.js} +204 -103
  15. package/dist/lib/esm-es5/apollo-super-selection.js +1 -1
  16. package/dist/lib/esm-es5/loader.js +1 -1
  17. package/dist/lib/esm-es5/sss-button_34.entry.js +69 -0
  18. package/dist/lib/types/components/super-selection-app/funds/custom-fund/custom-fund.store.d.ts +1 -1
  19. package/dist/lib/types/components/super-selection-app/funds/custom-fund/self-managed-fund/self-managed-fund-inputs.d.ts +29 -0
  20. package/dist/lib/types/components/super-selection-app/funds/custom-fund/self-managed-fund/self-managed-fund.d.ts +14 -0
  21. package/dist/lib/types/components.d.ts +35 -15
  22. package/package.json +1 -1
  23. package/dist/lib/apollo-super-selection/p-36a6d49c.system.entry.js +0 -69
  24. package/dist/lib/apollo-super-selection/p-4f85f43b.entry.js +0 -14
  25. package/dist/lib/collection/components/super-smsf/super-smsf-types.js +0 -1
  26. package/dist/lib/collection/components/super-smsf/super-smsf.js +0 -136
  27. package/dist/lib/esm-es5/sss-button_33.entry.js +0 -69
  28. package/dist/lib/types/components/super-smsf/super-smsf-types.d.ts +0 -34
  29. package/dist/lib/types/components/super-smsf/super-smsf.d.ts +0 -18
  30. /package/dist/lib/collection/components/{super-smsf/super-smsf.form.js → super-selection-app/funds/custom-fund/self-managed-fund/self-managed-fund.form.js} +0 -0
  31. /package/dist/lib/types/components/{super-smsf/super-smsf.form.d.ts → super-selection-app/funds/custom-fund/self-managed-fund/self-managed-fund.form.d.ts} +0 -0
@@ -1,34 +0,0 @@
1
- export declare type Sender = 'super-smsf';
2
- export declare type SmsfCommonEventPayload = {
3
- sender: Sender;
4
- };
5
- export declare type SmsfCancelledEvent = SmsfCommonEventPayload & {
6
- type: 'smsf-cancelled';
7
- };
8
- export declare type SmsfCompletedEvent = SmsfCommonEventPayload & {
9
- type: 'smsf-completed';
10
- fundName: string;
11
- fundAbn: string;
12
- fundEsa: string;
13
- fundAddressLine1: string;
14
- fundAddressLine2: string;
15
- fundState: string;
16
- fundPostcode: string;
17
- fundCity: string;
18
- bankAccountName: string;
19
- bankBsb: string;
20
- bankAccountNumber: string;
21
- memberFirstName: string;
22
- memberLastName: string;
23
- };
24
- export declare type SmsfLoadedEvent = SmsfCommonEventPayload & {
25
- type: 'smsf-loaded';
26
- };
27
- export declare type EventPayload = SmsfCancelledEvent | SmsfCompletedEvent | SmsfLoadedEvent;
28
- export declare type EventType = EventPayload['type'];
29
- export declare type EventHandlers = {
30
- [k in EventType]: (event: CustomEvent<Extract<EventPayload, {
31
- type: k;
32
- }>>) => Promise<void>;
33
- };
34
- export declare const LoadWaitingTimeout = 30000;
@@ -1,18 +0,0 @@
1
- import { RouterHistory } from '@stencil/router';
2
- export declare class SuperSmsfHost {
3
- history: RouterHistory;
4
- private backendUrl;
5
- private accessToken;
6
- private smsfEventHandlers;
7
- private loadingTimeoutRef;
8
- constructor();
9
- componentWillLoad(): Promise<void>;
10
- disconnectedCallback(): void;
11
- render(): Element[];
12
- private subscribeToSuperSmsfEvents;
13
- private unSubscribeFromSuperSmsfEvents;
14
- private smsfLoaded;
15
- private smsfCompleted;
16
- private smsfCancelled;
17
- private smsfLoadingTimeoutTriggered;
18
- }