@flarehr/apollo-super-selection 4.55.43666 → 4.56.44913

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-1a253321.entry.js +14 -0
  3. package/dist/lib/apollo-super-selection/p-47600481.system.entry.js +69 -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_41.cjs.entry.js +166 -72
  8. package/dist/lib/collection/components/super-campaign/super-campaign.js +133 -6
  9. package/dist/lib/collection/components/super-selection-app/api/super-selection-events.model.js +16 -1
  10. package/dist/lib/collection/components/super-selection-app/consent/consent.js +5 -10
  11. package/dist/lib/collection/components/super-selection-app/funds/promoted-fund/types.js +2 -1
  12. package/dist/lib/collection/components/super-selection-app/services/super-selection-app.service.js +6 -0
  13. package/dist/lib/collection/components/super-selection-app/services/super-selection.store.js +4 -1
  14. package/dist/lib/collection/components/super-selection-app/super-choice-page/super-choice-page.js +6 -3
  15. package/dist/lib/esm/apollo-super-selection.js +1 -1
  16. package/dist/lib/esm/loader.js +1 -1
  17. package/dist/lib/esm/sss-button_41.entry.js +166 -72
  18. package/dist/lib/esm-es5/apollo-super-selection.js +1 -1
  19. package/dist/lib/esm-es5/loader.js +1 -1
  20. package/dist/lib/esm-es5/sss-button_41.entry.js +4 -4
  21. package/dist/lib/types/components/super-campaign/super-campaign-types.d.ts +17 -5
  22. package/dist/lib/types/components/super-campaign/super-campaign.d.ts +10 -0
  23. package/dist/lib/types/components/super-selection-app/api/super-selection-events.model.d.ts +15 -4
  24. package/dist/lib/types/components/super-selection-app/services/super-selection-app.service.d.ts +3 -1
  25. package/dist/lib/types/components/super-selection-app/services/super-selection.store.d.ts +4 -0
  26. package/dist/lib/types/components.d.ts +2 -0
  27. package/package.json +1 -1
  28. package/dist/lib/apollo-super-selection/p-06c394ee.system.entry.js +0 -69
  29. package/dist/lib/apollo-super-selection/p-90e363b7.entry.js +0 -14
  30. package/dist/lib/collection/components/super-campaign/super-campaign-event-handlers.js +0 -26
  31. package/dist/lib/types/components/super-campaign/super-campaign-event-handlers.d.ts +0 -2
@@ -1,26 +0,0 @@
1
- const chooseAnotherFundRequestedEventHandler = (event) => {
2
- if (event.sender != 'super-campaign') {
3
- // eslint-disable-next-line no-console
4
- console.error(`$handling super-campaign panel event: ${event === null || event === void 0 ? void 0 : event.type}`);
5
- }
6
- return Promise.resolve();
7
- };
8
- const fundPanelShownEventHandler = (event) => {
9
- if (event.sender != 'super-campaign') {
10
- // eslint-disable-next-line no-console
11
- console.error(`$handling super-campaign panel event: ${event === null || event === void 0 ? void 0 : event.type}`);
12
- }
13
- return Promise.resolve();
14
- };
15
- const fundTileClicked = (event) => {
16
- if (event.sender != 'super-campaign') {
17
- // eslint-disable-next-line no-console
18
- console.error(`$handling super-campaign panel event: ${event === null || event === void 0 ? void 0 : event.type}`);
19
- }
20
- return Promise.resolve();
21
- };
22
- export const eventHandlers = {
23
- 'choose-another-fund-requested': chooseAnotherFundRequestedEventHandler,
24
- 'fund-panel-shown': fundPanelShownEventHandler,
25
- 'fund-tile-clicked': fundTileClicked
26
- };
@@ -1,2 +0,0 @@
1
- import { EventHandlers } from './super-campaign-types';
2
- export declare const eventHandlers: EventHandlers;