fansunited-frontend-core 0.0.49 → 0.0.51

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 (46) hide show
  1. package/api/betslipApi.d.ts +26 -0
  2. package/api/betslipApi.d.ts.map +1 -0
  3. package/api/betslipApi.js +42 -0
  4. package/api/betslipApi.js.map +1 -0
  5. package/index.d.ts +42 -41
  6. package/index.d.ts.map +1 -1
  7. package/index.es.js +6447 -5581
  8. package/index.js +40 -0
  9. package/index.js.map +1 -0
  10. package/interfaces/interfaces.d.ts +104 -6
  11. package/interfaces/interfaces.d.ts.map +1 -1
  12. package/interfaces/interfaces.js +2 -0
  13. package/interfaces/interfaces.js.map +1 -0
  14. package/locales/bg.json +828 -0
  15. package/locales/bg.json.d.ts +60 -0
  16. package/locales/de.json +819 -0
  17. package/locales/de.json.d.ts +62 -1
  18. package/locales/el.json +819 -0
  19. package/locales/el.json.d.ts +62 -1
  20. package/locales/en.json +832 -0
  21. package/locales/en.json.d.ts +60 -0
  22. package/locales/es.json +819 -0
  23. package/locales/es.json.d.ts +62 -1
  24. package/locales/fr-be.json +819 -0
  25. package/locales/fr-be.json.d.ts +62 -1
  26. package/locales/fr.json +819 -0
  27. package/locales/fr.json.d.ts +62 -1
  28. package/locales/it.json +819 -0
  29. package/locales/it.json.d.ts +62 -1
  30. package/locales/pl.json +819 -0
  31. package/locales/pl.json.d.ts +62 -1
  32. package/locales/pt-br.json +819 -0
  33. package/locales/pt-br.json.d.ts +62 -1
  34. package/locales/pt.json +819 -0
  35. package/locales/pt.json.d.ts +62 -1
  36. package/locales/ro.json +819 -0
  37. package/locales/ro.json.d.ts +62 -1
  38. package/locales/sk.json +819 -0
  39. package/locales/sk.json.d.ts +62 -1
  40. package/locales/sr.json +819 -0
  41. package/locales/sr.json.d.ts +62 -1
  42. package/package.json +1 -1
  43. package/types/types.d.ts +4 -1
  44. package/types/types.d.ts.map +1 -1
  45. package/types/types.js +2 -0
  46. package/types/types.js.map +1 -0
@@ -0,0 +1,26 @@
1
+ interface BetslipApi {
2
+ /** Upsert a selection. If the same eventId + market already exists, the outcome is replaced. */
3
+ setSelection(id: string): void;
4
+ /** Remove a selection by its exact id ("eventId:market:outcome"). No-op if not present. */
5
+ removeSelection(id: string): void;
6
+ }
7
+ type Handler = BetslipApi;
8
+ /**
9
+ * Singleton command bus. BetslipShell registers its internal state handlers on mount
10
+ * (_mount) and clears them on unmount (_unmount). Calls made before mount are queued
11
+ * and replayed once the shell registers — this handles consumers that call setSelection
12
+ * before the package has finished mounting.
13
+ */
14
+ declare class BetslipBus implements BetslipApi {
15
+ private handler;
16
+ private queue;
17
+ /** Called by BetslipShell on mount. Replays any queued pre-mount calls. */
18
+ _mount(h: Handler): void;
19
+ /** Called by BetslipShell on unmount. */
20
+ _unmount(): void;
21
+ setSelection(id: string): void;
22
+ removeSelection(id: string): void;
23
+ }
24
+ export declare const betslipApi: BetslipBus;
25
+ export {};
26
+ //# sourceMappingURL=betslipApi.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"betslipApi.d.ts","sourceRoot":"","sources":["../../src/api/betslipApi.ts"],"names":[],"mappings":"AAAA,UAAU,UAAU;IAClB,gGAAgG;IAChG,YAAY,CAAC,EAAE,EAAE,MAAM,GAAG,IAAI,CAAC;IAC/B,2FAA2F;IAC3F,eAAe,CAAC,EAAE,EAAE,MAAM,GAAG,IAAI,CAAC;CACnC;AAED,KAAK,OAAO,GAAG,UAAU,CAAC;AAE1B;;;;;GAKG;AACH,cAAM,UAAW,YAAW,UAAU;IACpC,OAAO,CAAC,OAAO,CAAwB;IACvC,OAAO,CAAC,KAAK,CAAyB;IAEtC,2EAA2E;IAC3E,MAAM,CAAC,CAAC,EAAE,OAAO;IAMjB,yCAAyC;IACzC,QAAQ;IAIR,YAAY,CAAC,EAAE,EAAE,MAAM;IAMvB,eAAe,CAAC,EAAE,EAAE,MAAM;CAG3B;AAED,eAAO,MAAM,UAAU,YAAmB,CAAC"}
@@ -0,0 +1,42 @@
1
+ /**
2
+ * Singleton command bus. BetslipShell registers its internal state handlers on mount
3
+ * (_mount) and clears them on unmount (_unmount). Calls made before mount are queued
4
+ * and replayed once the shell registers — this handles consumers that call setSelection
5
+ * before the package has finished mounting.
6
+ */
7
+ class BetslipBus {
8
+ constructor() {
9
+ Object.defineProperty(this, "handler", {
10
+ enumerable: true,
11
+ configurable: true,
12
+ writable: true,
13
+ value: null
14
+ });
15
+ Object.defineProperty(this, "queue", {
16
+ enumerable: true,
17
+ configurable: true,
18
+ writable: true,
19
+ value: []
20
+ });
21
+ }
22
+ /** Called by BetslipShell on mount. Replays any queued pre-mount calls. */
23
+ _mount(h) {
24
+ this.handler = h;
25
+ this.queue.forEach((fn) => fn());
26
+ this.queue = [];
27
+ }
28
+ /** Called by BetslipShell on unmount. */
29
+ _unmount() {
30
+ this.handler = null;
31
+ }
32
+ setSelection(id) {
33
+ this.handler
34
+ ? this.handler.setSelection(id)
35
+ : this.queue.push(() => this.setSelection(id));
36
+ }
37
+ removeSelection(id) {
38
+ this.handler?.removeSelection(id);
39
+ }
40
+ }
41
+ export const betslipApi = new BetslipBus();
42
+ //# sourceMappingURL=betslipApi.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"betslipApi.js","sourceRoot":"","sources":["../../src/api/betslipApi.ts"],"names":[],"mappings":"AASA;;;;;GAKG;AACH,MAAM,UAAU;IAAhB;QACU;;;;mBAA0B,IAAI;WAAC;QAC/B;;;;mBAA2B,EAAE;WAAC;IAuBxC,CAAC;IArBC,2EAA2E;IAC3E,MAAM,CAAC,CAAU;QACf,IAAI,CAAC,OAAO,GAAG,CAAC,CAAC;QACjB,IAAI,CAAC,KAAK,CAAC,OAAO,CAAC,CAAC,EAAE,EAAE,EAAE,CAAC,EAAE,EAAE,CAAC,CAAC;QACjC,IAAI,CAAC,KAAK,GAAG,EAAE,CAAC;IAClB,CAAC;IAED,yCAAyC;IACzC,QAAQ;QACN,IAAI,CAAC,OAAO,GAAG,IAAI,CAAC;IACtB,CAAC;IAED,YAAY,CAAC,EAAU;QACrB,IAAI,CAAC,OAAO;YACV,CAAC,CAAC,IAAI,CAAC,OAAO,CAAC,YAAY,CAAC,EAAE,CAAC;YAC/B,CAAC,CAAC,IAAI,CAAC,KAAK,CAAC,IAAI,CAAC,GAAG,EAAE,CAAC,IAAI,CAAC,YAAY,CAAC,EAAE,CAAC,CAAC,CAAC;IACnD,CAAC;IAED,eAAe,CAAC,EAAU;QACxB,IAAI,CAAC,OAAO,EAAE,eAAe,CAAC,EAAE,CAAC,CAAC;IACpC,CAAC;CACF;AAED,MAAM,CAAC,MAAM,UAAU,GAAG,IAAI,UAAU,EAAE,CAAC"}
package/index.d.ts CHANGED
@@ -1,43 +1,44 @@
1
1
  export declare const version: string;
2
- export * from './constants/constants';
3
- export * from './functions/functions';
4
- export * from './interfaces/interfaces';
5
- export * from './types/types';
6
- export * from './enums/enums';
7
- export { default as Spinner } from './components/Spinner';
8
- export { default as ThemeProvider } from './providers/ThemeProvider';
9
- export { default as AdditionalCTA } from './components/AdditionalCTA';
10
- export { default as Rules } from './components/Rules';
11
- export { default as CollectLeadForm } from './components/Leads/CollectLeadForm';
12
- export { default as StandardSkeleton } from './components/Skeletons/Standard/StandardSkeleton';
13
- export { default as SplitSkeleton } from './components/Skeletons/Split/SplitSkeleton';
14
- export { default as OverlaySkeleton } from './components/Skeletons/Overlay/OverlaySkeleton';
15
- export { default as StandardScoreStateSkeleton } from './components/Skeletons/Standard/ScoreState/StandardScoreStateSkeleton';
16
- export { default as StandardContentSkeleton } from './components/Skeletons/Standard/ScoreState/StandardContentSkeleton';
17
- export { default as StandardSignInSkeleton } from './components/Skeletons/Standard/SignIn/StandardSignInSkeleton';
18
- export { default as SplitScoreStateSkeleton } from './components/Skeletons/Split/ScoreState/SplitScoreStateSkeleton';
19
- export { default as SplitSignInSkeleton } from './components/Skeletons/Split/SignIn/SplitSignInSkeleton';
20
- export { default as OverlaySignInSkeleton } from './components/Skeletons/Overlay/SignIn/OverlaySignInSkeleton';
21
- export { default as OverlayScoreStateSkeleton } from './components/Skeletons/Overlay/ScoreState/OverlayScoreStateSkeleton';
22
- export { default as OverlayScoreStateWrapperSkeleton } from './components/Skeletons/Overlay/ScoreState/OverlayScoreStateWrapperSkeleton';
23
- export { default as StandardApiErrorSkeleton } from './components/Skeletons/Standard/ApiError/StandardApiErrorSkeleton';
24
- export { default as SplitApiErrorSkeleton } from './components/Skeletons/Split/ApiError/SplitApiErrorSkeleton';
25
- export { default as OverlayApiErrorSkeleton } from './components/Skeletons/Overlay/ApiError/OverlayApiErrorSkeleton';
26
- export { default as NotFoundSkeleton } from './components/Skeletons/NotFoundSkeleton';
27
- export { default as StandardLeadAfterCollection } from './components/LeadCollection/StandardLeadAfterCollection';
28
- export type { StandardLeadAfterCollectionProps } from './components/LeadCollection/StandardLeadAfterCollection';
29
- export { default as SplitLeadAfterCollection } from './components/LeadCollection/SplitLeadAfterCollection';
30
- export type { SplitLeadAfterCollectionProps } from './components/LeadCollection/SplitLeadAfterCollection';
31
- export { default as OverlayLeadAfterCollection } from './components/LeadCollection/OverlayLeadAfterCollection';
32
- export type { OverlayLeadAfterCollectionProps } from './components/LeadCollection/OverlayLeadAfterCollection';
33
- export { default as InfoPageCollectLeadWrapper } from './components/Leads/InfoPageCollectLeadWrapper';
34
- export type { InfoPageCollectLeadWrapperProps } from './components/Leads/InfoPageCollectLeadWrapper';
35
- export { default as Portal } from './components/Portal/Portal';
36
- export { default as ChanceGameEmbed } from './components/ChanceGameEmbed';
37
- export { default as Notification } from './components/Notification';
38
- export { default as PrizeCard } from './components/PrizeCard/PrizeCard';
39
- export * from './hooks/hooks';
40
- export * from './providers/providers';
41
- export { default as defaultBg } from './assets/default-quiz-bg.png';
42
- export { default as defaultBgVertical } from './assets/default-quiz-bg-vertical.jpg';
2
+ export * from "./constants/constants";
3
+ export { betslipApi } from "./api/betslipApi";
4
+ export * from "./functions/functions";
5
+ export * from "./interfaces/interfaces";
6
+ export * from "./types/types";
7
+ export * from "./enums/enums";
8
+ export { default as Spinner } from "./components/Spinner";
9
+ export { default as ThemeProvider } from "./providers/ThemeProvider";
10
+ export { default as AdditionalCTA } from "./components/AdditionalCTA";
11
+ export { default as Rules } from "./components/Rules";
12
+ export { default as CollectLeadForm } from "./components/Leads/CollectLeadForm";
13
+ export { default as StandardSkeleton } from "./components/Skeletons/Standard/StandardSkeleton";
14
+ export { default as SplitSkeleton } from "./components/Skeletons/Split/SplitSkeleton";
15
+ export { default as OverlaySkeleton } from "./components/Skeletons/Overlay/OverlaySkeleton";
16
+ export { default as StandardScoreStateSkeleton } from "./components/Skeletons/Standard/ScoreState/StandardScoreStateSkeleton";
17
+ export { default as StandardContentSkeleton } from "./components/Skeletons/Standard/ScoreState/StandardContentSkeleton";
18
+ export { default as StandardSignInSkeleton } from "./components/Skeletons/Standard/SignIn/StandardSignInSkeleton";
19
+ export { default as SplitScoreStateSkeleton } from "./components/Skeletons/Split/ScoreState/SplitScoreStateSkeleton";
20
+ export { default as SplitSignInSkeleton } from "./components/Skeletons/Split/SignIn/SplitSignInSkeleton";
21
+ export { default as OverlaySignInSkeleton } from "./components/Skeletons/Overlay/SignIn/OverlaySignInSkeleton";
22
+ export { default as OverlayScoreStateSkeleton } from "./components/Skeletons/Overlay/ScoreState/OverlayScoreStateSkeleton";
23
+ export { default as OverlayScoreStateWrapperSkeleton } from "./components/Skeletons/Overlay/ScoreState/OverlayScoreStateWrapperSkeleton";
24
+ export { default as StandardApiErrorSkeleton } from "./components/Skeletons/Standard/ApiError/StandardApiErrorSkeleton";
25
+ export { default as SplitApiErrorSkeleton } from "./components/Skeletons/Split/ApiError/SplitApiErrorSkeleton";
26
+ export { default as OverlayApiErrorSkeleton } from "./components/Skeletons/Overlay/ApiError/OverlayApiErrorSkeleton";
27
+ export { default as NotFoundSkeleton } from "./components/Skeletons/NotFoundSkeleton";
28
+ export { default as StandardLeadAfterCollection } from "./components/LeadCollection/StandardLeadAfterCollection";
29
+ export type { StandardLeadAfterCollectionProps } from "./components/LeadCollection/StandardLeadAfterCollection";
30
+ export { default as SplitLeadAfterCollection } from "./components/LeadCollection/SplitLeadAfterCollection";
31
+ export type { SplitLeadAfterCollectionProps } from "./components/LeadCollection/SplitLeadAfterCollection";
32
+ export { default as OverlayLeadAfterCollection } from "./components/LeadCollection/OverlayLeadAfterCollection";
33
+ export type { OverlayLeadAfterCollectionProps } from "./components/LeadCollection/OverlayLeadAfterCollection";
34
+ export { default as InfoPageCollectLeadWrapper } from "./components/Leads/InfoPageCollectLeadWrapper";
35
+ export type { InfoPageCollectLeadWrapperProps } from "./components/Leads/InfoPageCollectLeadWrapper";
36
+ export { default as Portal } from "./components/Portal/Portal";
37
+ export { default as ChanceGameEmbed } from "./components/ChanceGameEmbed";
38
+ export { default as Notification } from "./components/Notification";
39
+ export { default as PrizeCard } from "./components/PrizeCard/PrizeCard";
40
+ export * from "./hooks/hooks";
41
+ export * from "./providers/providers";
42
+ export { default as defaultBg } from "./assets/default-quiz-bg.png";
43
+ export { default as defaultBgVertical } from "./assets/default-quiz-bg-vertical.jpg";
43
44
  //# sourceMappingURL=index.d.ts.map
package/index.d.ts.map CHANGED
@@ -1 +1 @@
1
- {"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../src/index.ts"],"names":[],"mappings":"AACA,eAAO,MAAM,OAAO,EAAE,MAAyB,CAAC;AAEhD,cAAc,uBAAuB,CAAC;AACtC,cAAc,uBAAuB,CAAC;AACtC,cAAc,yBAAyB,CAAC;AACxC,cAAc,eAAe,CAAC;AAC9B,cAAc,eAAe,CAAC;AAC9B,OAAO,EAAE,OAAO,IAAI,OAAO,EAAE,MAAM,sBAAsB,CAAC;AAC1D,OAAO,EAAE,OAAO,IAAI,aAAa,EAAE,MAAM,2BAA2B,CAAC;AACrE,OAAO,EAAE,OAAO,IAAI,aAAa,EAAE,MAAM,4BAA4B,CAAC;AACtE,OAAO,EAAE,OAAO,IAAI,KAAK,EAAE,MAAM,oBAAoB,CAAC;AACtD,OAAO,EAAE,OAAO,IAAI,eAAe,EAAE,MAAM,oCAAoC,CAAC;AAChF,OAAO,EAAE,OAAO,IAAI,gBAAgB,EAAE,MAAM,kDAAkD,CAAC;AAC/F,OAAO,EAAE,OAAO,IAAI,aAAa,EAAE,MAAM,4CAA4C,CAAC;AACtF,OAAO,EAAE,OAAO,IAAI,eAAe,EAAE,MAAM,gDAAgD,CAAC;AAC5F,OAAO,EAAE,OAAO,IAAI,0BAA0B,EAAE,MAAM,uEAAuE,CAAC;AAC9H,OAAO,EAAE,OAAO,IAAI,uBAAuB,EAAE,MAAM,oEAAoE,CAAC;AACxH,OAAO,EAAE,OAAO,IAAI,sBAAsB,EAAE,MAAM,+DAA+D,CAAC;AAClH,OAAO,EAAE,OAAO,IAAI,uBAAuB,EAAE,MAAM,iEAAiE,CAAC;AACrH,OAAO,EAAE,OAAO,IAAI,mBAAmB,EAAE,MAAM,yDAAyD,CAAC;AACzG,OAAO,EAAE,OAAO,IAAI,qBAAqB,EAAE,MAAM,6DAA6D,CAAC;AAC/G,OAAO,EAAE,OAAO,IAAI,yBAAyB,EAAE,MAAM,qEAAqE,CAAC;AAC3H,OAAO,EAAE,OAAO,IAAI,gCAAgC,EAAE,MAAM,4EAA4E,CAAC;AACzI,OAAO,EAAE,OAAO,IAAI,wBAAwB,EAAE,MAAM,mEAAmE,CAAC;AACxH,OAAO,EAAE,OAAO,IAAI,qBAAqB,EAAE,MAAM,6DAA6D,CAAC;AAC/G,OAAO,EAAE,OAAO,IAAI,uBAAuB,EAAE,MAAM,iEAAiE,CAAC;AACrH,OAAO,EAAE,OAAO,IAAI,gBAAgB,EAAE,MAAM,yCAAyC,CAAC;AACtF,OAAO,EAAE,OAAO,IAAI,2BAA2B,EAAE,MAAM,yDAAyD,CAAC;AACjH,YAAY,EAAE,gCAAgC,EAAE,MAAM,yDAAyD,CAAC;AAChH,OAAO,EAAE,OAAO,IAAI,wBAAwB,EAAE,MAAM,sDAAsD,CAAC;AAC3G,YAAY,EAAE,6BAA6B,EAAE,MAAM,sDAAsD,CAAC;AAC1G,OAAO,EAAE,OAAO,IAAI,0BAA0B,EAAE,MAAM,wDAAwD,CAAC;AAC/G,YAAY,EAAE,+BAA+B,EAAE,MAAM,wDAAwD,CAAC;AAC9G,OAAO,EAAE,OAAO,IAAI,0BAA0B,EAAE,MAAM,+CAA+C,CAAC;AACtG,YAAY,EAAE,+BAA+B,EAAE,MAAM,+CAA+C,CAAC;AACrG,OAAO,EAAE,OAAO,IAAI,MAAM,EAAE,MAAM,4BAA4B,CAAC;AAC/D,OAAO,EAAE,OAAO,IAAI,eAAe,EAAE,MAAM,8BAA8B,CAAC;AAC1E,OAAO,EAAE,OAAO,IAAI,YAAY,EAAE,MAAM,2BAA2B,CAAC;AACpE,OAAO,EAAE,OAAO,IAAI,SAAS,EAAE,MAAM,kCAAkC,CAAC;AACxE,cAAc,eAAe,CAAC;AAC9B,cAAc,uBAAuB,CAAC;AACtC,OAAO,EAAE,OAAO,IAAI,SAAS,EAAE,MAAM,8BAA8B,CAAC;AACpE,OAAO,EAAE,OAAO,IAAI,iBAAiB,EAAE,MAAM,uCAAuC,CAAC"}
1
+ {"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../src/index.ts"],"names":[],"mappings":"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"}