fansunited-frontend-core 0.0.79 → 0.0.80
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/README.md +19 -3
- package/components/LeadCollection/DeckLeadAfterCollection.d.ts +51 -0
- package/components/LeadCollection/DeckLeadAfterCollection.d.ts.map +1 -0
- package/components/Portal/Portal.d.ts +3 -2
- package/components/Portal/Portal.d.ts.map +1 -1
- package/components/Skeletons/Deck/DeckSkeleton.d.ts +32 -0
- package/components/Skeletons/Deck/DeckSkeleton.d.ts.map +1 -0
- package/components/Skeletons/Deck/DeckSkeleton.styles.d.ts +137 -0
- package/components/Skeletons/Deck/DeckSkeleton.styles.d.ts.map +1 -0
- package/enums/enums.d.ts +23 -0
- package/enums/enums.d.ts.map +1 -1
- package/functions/theme.d.ts +3 -2
- package/functions/theme.d.ts.map +1 -1
- package/hooks/useImageVariant.d.ts +2 -2
- package/hooks/useImageVariant.d.ts.map +1 -1
- package/index.d.ts +4 -0
- package/index.d.ts.map +1 -1
- package/index.es.js +8029 -7575
- package/interfaces/interfaces.d.ts +37 -6
- package/interfaces/interfaces.d.ts.map +1 -1
- package/locales/ar.json.d.ts +12 -1
- package/locales/bg.json.d.ts +12 -1
- package/locales/de.json.d.ts +12 -1
- package/locales/el.json.d.ts +12 -1
- package/locales/en.json.d.ts +12 -1
- package/locales/es.json.d.ts +12 -1
- package/locales/fr-be.json.d.ts +12 -1
- package/locales/fr.json.d.ts +12 -1
- package/locales/it.json.d.ts +12 -1
- package/locales/pl.json.d.ts +12 -1
- package/locales/pt-br.json.d.ts +12 -1
- package/locales/pt.json.d.ts +12 -1
- package/locales/ro.json.d.ts +12 -1
- package/locales/sk.json.d.ts +12 -1
- package/locales/sr.json.d.ts +12 -1
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -109,6 +109,7 @@ import {
|
|
|
109
109
|
|
|
110
110
|
// Enums
|
|
111
111
|
WidgetTemplate,
|
|
112
|
+
ClassicQuizTemplate,
|
|
112
113
|
|
|
113
114
|
// Betslip
|
|
114
115
|
BetslipParticipant,
|
|
@@ -526,7 +527,10 @@ This package is designed to work with `fansunited-frontend-components`:
|
|
|
526
527
|
|
|
527
528
|
```tsx
|
|
528
529
|
import { ClassicQuizPlay } from "fansunited-frontend-components";
|
|
529
|
-
import {
|
|
530
|
+
import {
|
|
531
|
+
ClassicQuizTemplate,
|
|
532
|
+
CustomThemeOptions,
|
|
533
|
+
} from "fansunited-frontend-core";
|
|
530
534
|
|
|
531
535
|
const customTheme: CustomThemeOptions = {
|
|
532
536
|
mode: "light",
|
|
@@ -542,7 +546,7 @@ const customTheme: CustomThemeOptions = {
|
|
|
542
546
|
<ClassicQuizPlay
|
|
543
547
|
entityId="quiz-123"
|
|
544
548
|
sdk={sdkInstance}
|
|
545
|
-
template={
|
|
549
|
+
template={ClassicQuizTemplate.STANDARD}
|
|
546
550
|
language="en"
|
|
547
551
|
themeOptions={customTheme}
|
|
548
552
|
imagePosition="left"
|
|
@@ -750,12 +754,24 @@ const usCountry = getDefaultCountryByCode("US");
|
|
|
750
754
|
|
|
751
755
|
## Widget Templates
|
|
752
756
|
|
|
753
|
-
|
|
757
|
+
Most components share `WidgetTemplate`, which has three members:
|
|
754
758
|
|
|
755
759
|
- **`WidgetTemplate.STANDARD`** - Traditional card layout with optional image positioning
|
|
756
760
|
- **`WidgetTemplate.OVERLAY`** - Full-screen overlay presentation
|
|
757
761
|
- **`WidgetTemplate.SPLIT`** - Split-screen layout with content and media sections
|
|
758
762
|
|
|
763
|
+
Components offering a layout the others do not have their own template type.
|
|
764
|
+
`ClassicQuizPlay` uses **`ClassicQuizTemplate`**, which extends `WidgetTemplate` with a
|
|
765
|
+
fourth member:
|
|
766
|
+
|
|
767
|
+
- **`ClassicQuizTemplate.DECK`** - Casino-style table where each question is a face-down
|
|
768
|
+
card the player turns over in any order. Tuned with the `deck` prop — `entrance`, and
|
|
769
|
+
`openIcon` which takes a preset name or the URL of your own mark (SVG, rendered in a
|
|
770
|
+
36 × 36 px box) — and themed through `imageBackgroundGradient.{light,dark}.deck`.
|
|
771
|
+
|
|
772
|
+
`PickThePair` and the chance games use `PickThePairTemplate` and `ChanceGameTemplate`,
|
|
773
|
+
which are separate sets rather than extensions.
|
|
774
|
+
|
|
759
775
|
## TypeScript Support
|
|
760
776
|
|
|
761
777
|
This package is built with TypeScript and provides comprehensive type definitions for all exports. The types ensure type safety when working with widget configurations, theme options, and component props.
|
|
@@ -0,0 +1,51 @@
|
|
|
1
|
+
import { default as React } from 'react';
|
|
2
|
+
import { FansUnitedSDKModel } from 'fansunited-sdk-esm';
|
|
3
|
+
import { ConsentDef, LeadConsent, SkeletonEntity, LeadsOptions, RulesDisplay as RulesDisplayInterface } from '../../interfaces/interfaces';
|
|
4
|
+
|
|
5
|
+
export interface DeckLeadAfterCollectionProps {
|
|
6
|
+
/** The entity (classicQuiz) */
|
|
7
|
+
entity: SkeletonEntity;
|
|
8
|
+
/** The headline to display (e.g., "Quiz") */
|
|
9
|
+
headline: string;
|
|
10
|
+
/** SDK instance */
|
|
11
|
+
sdk: FansUnitedSDKModel;
|
|
12
|
+
/** Leads configuration */
|
|
13
|
+
leads?: LeadsOptions;
|
|
14
|
+
/** Default image placeholder URL */
|
|
15
|
+
defaultImagePlaceholder?: string;
|
|
16
|
+
/** Callback when lead is submitted */
|
|
17
|
+
onLeadSubmitted: () => void;
|
|
18
|
+
/** Whether the participation is being submitted */
|
|
19
|
+
isSubmitting?: boolean;
|
|
20
|
+
/** Main card component from the consumer package */
|
|
21
|
+
MainCard: React.ComponentType<{
|
|
22
|
+
brandingBorderColor: string | null;
|
|
23
|
+
/** DECK stacks its banner over the body, so the card must not go side-by-side. */
|
|
24
|
+
stacked?: boolean;
|
|
25
|
+
children: React.ReactNode;
|
|
26
|
+
}>;
|
|
27
|
+
/** PresentedBy component from the consumer package */
|
|
28
|
+
PresentedBy: React.ComponentType<{
|
|
29
|
+
brandingLogo: string;
|
|
30
|
+
textColor: string;
|
|
31
|
+
label: string | null;
|
|
32
|
+
primaryUrl?: string;
|
|
33
|
+
secondaryUrl?: string;
|
|
34
|
+
isCentered?: boolean;
|
|
35
|
+
}>;
|
|
36
|
+
/** CollectLeadWrapper component from the consumer package. Not needed when `content` is set. */
|
|
37
|
+
CollectLeadWrapper?: React.ComponentType<any>;
|
|
38
|
+
/** Renders in the lead form's place — used by the consent and sign-in steps. */
|
|
39
|
+
content?: React.ReactNode;
|
|
40
|
+
/** Consents rendered inside the lead form. */
|
|
41
|
+
consents?: Array<LeadConsent | ConsentDef>;
|
|
42
|
+
/** Rules display configuration */
|
|
43
|
+
rulesDisplay?: RulesDisplayInterface;
|
|
44
|
+
}
|
|
45
|
+
/**
|
|
46
|
+
* The DECK template's framing for anything that replaces the table: the lead form, the
|
|
47
|
+
* consent step and the deferred sign-in gate. Mirrors SplitLeadAfterCollection.
|
|
48
|
+
*/
|
|
49
|
+
declare const DeckLeadAfterCollection: React.FC<DeckLeadAfterCollectionProps>;
|
|
50
|
+
export default DeckLeadAfterCollection;
|
|
51
|
+
//# sourceMappingURL=DeckLeadAfterCollection.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"DeckLeadAfterCollection.d.ts","sourceRoot":"","sources":["../../../src/components/LeadCollection/DeckLeadAfterCollection.tsx"],"names":[],"mappings":"AAAA,OAAO,KAAK,MAAM,OAAO,CAAC;AAY1B,OAAO,EAAE,kBAAkB,EAAE,MAAM,oBAAoB,CAAC;AACxD,OAAO,EACL,UAAU,EACV,WAAW,EACX,cAAc,EACd,YAAY,EACZ,YAAY,IAAI,qBAAqB,EACtC,MAAM,6BAA6B,CAAC;AAIrC,MAAM,WAAW,4BAA4B;IAC3C,+BAA+B;IAC/B,MAAM,EAAE,cAAc,CAAC;IACvB,6CAA6C;IAC7C,QAAQ,EAAE,MAAM,CAAC;IACjB,mBAAmB;IACnB,GAAG,EAAE,kBAAkB,CAAC;IACxB,0BAA0B;IAC1B,KAAK,CAAC,EAAE,YAAY,CAAC;IACrB,oCAAoC;IACpC,uBAAuB,CAAC,EAAE,MAAM,CAAC;IACjC,sCAAsC;IACtC,eAAe,EAAE,MAAM,IAAI,CAAC;IAC5B,mDAAmD;IACnD,YAAY,CAAC,EAAE,OAAO,CAAC;IACvB,oDAAoD;IACpD,QAAQ,EAAE,KAAK,CAAC,aAAa,CAAC;QAC5B,mBAAmB,EAAE,MAAM,GAAG,IAAI,CAAC;QACnC,kFAAkF;QAClF,OAAO,CAAC,EAAE,OAAO,CAAC;QAClB,QAAQ,EAAE,KAAK,CAAC,SAAS,CAAC;KAC3B,CAAC,CAAC;IACH,sDAAsD;IACtD,WAAW,EAAE,KAAK,CAAC,aAAa,CAAC;QAC/B,YAAY,EAAE,MAAM,CAAC;QACrB,SAAS,EAAE,MAAM,CAAC;QAClB,KAAK,EAAE,MAAM,GAAG,IAAI,CAAC;QACrB,UAAU,CAAC,EAAE,MAAM,CAAC;QACpB,YAAY,CAAC,EAAE,MAAM,CAAC;QACtB,UAAU,CAAC,EAAE,OAAO,CAAC;KACtB,CAAC,CAAC;IACH,gGAAgG;IAChG,kBAAkB,CAAC,EAAE,KAAK,CAAC,aAAa,CAAC,GAAG,CAAC,CAAC;IAC9C,gFAAgF;IAChF,OAAO,CAAC,EAAE,KAAK,CAAC,SAAS,CAAC;IAC1B,8CAA8C;IAC9C,QAAQ,CAAC,EAAE,KAAK,CAAC,WAAW,GAAG,UAAU,CAAC,CAAC;IAC3C,kCAAkC;IAClC,YAAY,CAAC,EAAE,qBAAqB,CAAC;CACtC;AAED;;;GAGG;AACH,QAAA,MAAM,uBAAuB,EAAE,KAAK,CAAC,EAAE,CAAC,4BAA4B,CA2GnE,CAAC;AAEF,eAAe,uBAAuB,CAAC"}
|
|
@@ -1,12 +1,13 @@
|
|
|
1
1
|
import { default as React } from 'react';
|
|
2
2
|
import { MainProps } from '../../interfaces/interfaces';
|
|
3
3
|
import { OptionsLayout, PackageNamesType } from '../../types/types';
|
|
4
|
-
import { WidgetTemplate } from '../../enums/enums';
|
|
4
|
+
import { ClassicQuizTemplate, WidgetTemplate } from '../../enums/enums';
|
|
5
5
|
|
|
6
6
|
interface PortalProps extends Omit<MainProps, "template"> {
|
|
7
7
|
children: React.ReactNode;
|
|
8
8
|
packageName: PackageNamesType;
|
|
9
|
-
|
|
9
|
+
/** Widened for classic-quiz-play, whose templates include DECK. */
|
|
10
|
+
template?: WidgetTemplate | ClassicQuizTemplate;
|
|
10
11
|
/**
|
|
11
12
|
* Only the options-based widgets declare this (classic-quiz-play, poll-vote,
|
|
12
13
|
* event-game-play, personality-quiz-play), so it isn't on MainProps — but they
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"Portal.d.ts","sourceRoot":"","sources":["../../../src/components/Portal/Portal.tsx"],"names":[],"mappings":"AAEA,OAAO,KAAK,MAAM,OAAO,CAAC;AAE1B,OAAO,EAAE,SAAS,EAAE,MAAM,6BAA6B,CAAC;AACxD,OAAO,EAAE,aAAa,EAAE,gBAAgB,EAAE,MAAM,mBAAmB,CAAC;AAUpE,OAAO,EAAE,cAAc,EAAE,MAAM,mBAAmB,CAAC;
|
|
1
|
+
{"version":3,"file":"Portal.d.ts","sourceRoot":"","sources":["../../../src/components/Portal/Portal.tsx"],"names":[],"mappings":"AAEA,OAAO,KAAK,MAAM,OAAO,CAAC;AAE1B,OAAO,EAAE,SAAS,EAAE,MAAM,6BAA6B,CAAC;AACxD,OAAO,EAAE,aAAa,EAAE,gBAAgB,EAAE,MAAM,mBAAmB,CAAC;AAUpE,OAAO,EAAE,mBAAmB,EAAE,cAAc,EAAE,MAAM,mBAAmB,CAAC;AAKxE,UAAU,WAAY,SAAQ,IAAI,CAAC,SAAS,EAAE,UAAU,CAAC;IACvD,QAAQ,EAAE,KAAK,CAAC,SAAS,CAAC;IAC1B,WAAW,EAAE,gBAAgB,CAAC;IAC9B,mEAAmE;IACnE,QAAQ,CAAC,EAAE,cAAc,GAAG,mBAAmB,CAAC;IAChD;;;;;OAKG;IACH,aAAa,CAAC,EAAE,aAAa,CAAC;CAC/B;AAED,QAAA,MAAM,MAAM,EAAE,KAAK,CAAC,EAAE,CAAC,WAAW,CA+GjC,CAAC;AAEF,eAAe,MAAM,CAAC"}
|
|
@@ -0,0 +1,32 @@
|
|
|
1
|
+
import { default as React, ReactNode } from 'react';
|
|
2
|
+
import { SkeletonEntity, RulesDisplay as RulesDisplayInterface } from '../../../interfaces/interfaces';
|
|
3
|
+
|
|
4
|
+
export interface DeckSkeletonProps {
|
|
5
|
+
/** Entity object containing title, description, images, and branding */
|
|
6
|
+
entity: SkeletonEntity;
|
|
7
|
+
/** Headline text (e.g., "Quiz") - from translation */
|
|
8
|
+
headline: string;
|
|
9
|
+
/** Final image URL to display (already processed by useImageVariant) */
|
|
10
|
+
finalImage: string | null;
|
|
11
|
+
/** Body content — the table, or a gate screen's panel */
|
|
12
|
+
children: ReactNode;
|
|
13
|
+
/** Sponsor lockup, rendered start-aligned under the body. */
|
|
14
|
+
brandingContent?: ReactNode;
|
|
15
|
+
/** Drops the body padding, for screens that own their own (the tabbed score state). */
|
|
16
|
+
flushBody?: boolean;
|
|
17
|
+
/** Rules display configuration */
|
|
18
|
+
rulesDisplay?: RulesDisplayInterface;
|
|
19
|
+
}
|
|
20
|
+
/**
|
|
21
|
+
* DeckSkeleton Component
|
|
22
|
+
*
|
|
23
|
+
* The DECK template's frame: a banner band across the top (cover image, gradient,
|
|
24
|
+
* headline and sponsor) with a single-column body beneath it.
|
|
25
|
+
*
|
|
26
|
+
* Unlike Split — whose 50/50 layout has to be re-expressed per screen — the deck's
|
|
27
|
+
* frame is identical for gameplay, score, sign-in, error, consent and lead screens,
|
|
28
|
+
* so one skeleton with a body slot serves all of them.
|
|
29
|
+
*/
|
|
30
|
+
declare const DeckSkeleton: React.FC<DeckSkeletonProps>;
|
|
31
|
+
export default DeckSkeleton;
|
|
32
|
+
//# sourceMappingURL=DeckSkeleton.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"DeckSkeleton.d.ts","sourceRoot":"","sources":["../../../../src/components/Skeletons/Deck/DeckSkeleton.tsx"],"names":[],"mappings":"AAAA,OAAO,KAAK,EAAE,EAAE,SAAS,EAAE,MAAM,OAAO,CAAC;AAczC,OAAO,EACL,cAAc,EACd,YAAY,IAAI,qBAAqB,EACtC,MAAM,gCAAgC,CAAC;AAGxC,MAAM,WAAW,iBAAiB;IAChC,wEAAwE;IACxE,MAAM,EAAE,cAAc,CAAC;IACvB,sDAAsD;IACtD,QAAQ,EAAE,MAAM,CAAC;IACjB,wEAAwE;IACxE,UAAU,EAAE,MAAM,GAAG,IAAI,CAAC;IAC1B,yDAAyD;IACzD,QAAQ,EAAE,SAAS,CAAC;IACpB,6DAA6D;IAC7D,eAAe,CAAC,EAAE,SAAS,CAAC;IAC5B,uFAAuF;IACvF,SAAS,CAAC,EAAE,OAAO,CAAC;IACpB,kCAAkC;IAClC,YAAY,CAAC,EAAE,qBAAqB,CAAC;CACtC;AAED;;;;;;;;;GASG;AACH,QAAA,MAAM,YAAY,EAAE,KAAK,CAAC,EAAE,CAAC,iBAAiB,CAqH7C,CAAC;AAEF,eAAe,YAAY,CAAC"}
|
|
@@ -0,0 +1,137 @@
|
|
|
1
|
+
import { CustomSpacingScale } from '../../../interfaces/interfaces';
|
|
2
|
+
import { BrandingColorsModel } from 'fansunited-sdk-esm';
|
|
3
|
+
|
|
4
|
+
interface StyleProps {
|
|
5
|
+
finalImage: string | null;
|
|
6
|
+
spacingScale: CustomSpacingScale;
|
|
7
|
+
fontFamilyPrimary: string;
|
|
8
|
+
fontFamilySecondary: string;
|
|
9
|
+
textColor: string;
|
|
10
|
+
brandingColors: BrandingColorsModel | null;
|
|
11
|
+
darkTextColor: string;
|
|
12
|
+
imageBackgroundGradient: string;
|
|
13
|
+
isMobile: boolean;
|
|
14
|
+
}
|
|
15
|
+
export declare const createStyles: (props: StyleProps) => {
|
|
16
|
+
banner: {
|
|
17
|
+
"&::before": {
|
|
18
|
+
content: string;
|
|
19
|
+
position: string;
|
|
20
|
+
top: number;
|
|
21
|
+
left: number;
|
|
22
|
+
right: number;
|
|
23
|
+
bottom: number;
|
|
24
|
+
background: string;
|
|
25
|
+
zIndex: number;
|
|
26
|
+
} | {
|
|
27
|
+
content?: undefined;
|
|
28
|
+
position?: undefined;
|
|
29
|
+
top?: undefined;
|
|
30
|
+
left?: undefined;
|
|
31
|
+
right?: undefined;
|
|
32
|
+
bottom?: undefined;
|
|
33
|
+
background?: undefined;
|
|
34
|
+
zIndex?: undefined;
|
|
35
|
+
};
|
|
36
|
+
backgroundColor?: string | undefined;
|
|
37
|
+
position: string;
|
|
38
|
+
display: string;
|
|
39
|
+
overflow: string;
|
|
40
|
+
minHeight: string;
|
|
41
|
+
backgroundImage: string;
|
|
42
|
+
backgroundSize: string;
|
|
43
|
+
backgroundPosition: string;
|
|
44
|
+
};
|
|
45
|
+
bannerContent: {
|
|
46
|
+
position: string;
|
|
47
|
+
zIndex: number;
|
|
48
|
+
flex: number;
|
|
49
|
+
display: string;
|
|
50
|
+
justifyContent: string;
|
|
51
|
+
alignItems: string;
|
|
52
|
+
flexWrap: string;
|
|
53
|
+
gap: string;
|
|
54
|
+
p: string;
|
|
55
|
+
boxSizing: string;
|
|
56
|
+
};
|
|
57
|
+
bannerCopy: {
|
|
58
|
+
display: string;
|
|
59
|
+
flexDirection: string;
|
|
60
|
+
gap: string;
|
|
61
|
+
maxWidth: string;
|
|
62
|
+
flex: string;
|
|
63
|
+
};
|
|
64
|
+
headlineRow: {
|
|
65
|
+
display: string;
|
|
66
|
+
alignItems: string;
|
|
67
|
+
gap: string;
|
|
68
|
+
};
|
|
69
|
+
headlineText: {
|
|
70
|
+
fontWeight: number;
|
|
71
|
+
lineHeight: string;
|
|
72
|
+
letterSpacing: string;
|
|
73
|
+
fontSize: string;
|
|
74
|
+
color: string;
|
|
75
|
+
opacity: string;
|
|
76
|
+
textTransform: string;
|
|
77
|
+
fontFamily: string;
|
|
78
|
+
textAlign: string;
|
|
79
|
+
};
|
|
80
|
+
contentContainer: {
|
|
81
|
+
display: string;
|
|
82
|
+
flexDirection: string;
|
|
83
|
+
gap: string;
|
|
84
|
+
};
|
|
85
|
+
titleText: {
|
|
86
|
+
unicodeBidi: "plaintext";
|
|
87
|
+
fontWeight: number;
|
|
88
|
+
lineHeight: string;
|
|
89
|
+
fontSize: string;
|
|
90
|
+
letterSpacing: string;
|
|
91
|
+
color: string;
|
|
92
|
+
fontFamily: string;
|
|
93
|
+
textAlign: string;
|
|
94
|
+
};
|
|
95
|
+
descriptionText: {
|
|
96
|
+
unicodeBidi: "plaintext";
|
|
97
|
+
fontWeight: number;
|
|
98
|
+
lineHeight: string;
|
|
99
|
+
fontSize: string;
|
|
100
|
+
letterSpacing: string;
|
|
101
|
+
color: string;
|
|
102
|
+
opacity: string;
|
|
103
|
+
fontFamily: string;
|
|
104
|
+
textAlign: string;
|
|
105
|
+
};
|
|
106
|
+
body: {
|
|
107
|
+
flex: number;
|
|
108
|
+
display: string;
|
|
109
|
+
flexDirection: string;
|
|
110
|
+
gap: string;
|
|
111
|
+
p: string;
|
|
112
|
+
fontSize: string;
|
|
113
|
+
};
|
|
114
|
+
bodyFlush: {
|
|
115
|
+
flex: number;
|
|
116
|
+
display: string;
|
|
117
|
+
flexDirection: string;
|
|
118
|
+
gap: string;
|
|
119
|
+
p: number;
|
|
120
|
+
fontSize: string;
|
|
121
|
+
};
|
|
122
|
+
/**
|
|
123
|
+
* Sponsor lockup under the body. Deliberately not in the banner: the design keeps the
|
|
124
|
+
* artwork clear, and on the table the card fronts already carry the logo.
|
|
125
|
+
*
|
|
126
|
+
* `flex-start` rather than `left` — it resolves against the writing mode, so it sits at
|
|
127
|
+
* the start edge in both directions with nothing for the RTL plugin to flip.
|
|
128
|
+
*/
|
|
129
|
+
bodyBranding: {
|
|
130
|
+
display: string;
|
|
131
|
+
justifyContent: string;
|
|
132
|
+
pb: string;
|
|
133
|
+
px: string;
|
|
134
|
+
};
|
|
135
|
+
};
|
|
136
|
+
export {};
|
|
137
|
+
//# sourceMappingURL=DeckSkeleton.styles.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"DeckSkeleton.styles.d.ts","sourceRoot":"","sources":["../../../../src/components/Skeletons/Deck/DeckSkeleton.styles.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,kBAAkB,EAAE,MAAM,gCAAgC,CAAC;AACpE,OAAO,EAAE,mBAAmB,EAAE,MAAM,oBAAoB,CAAC;AAEzD,UAAU,UAAU;IAClB,UAAU,EAAE,MAAM,GAAG,IAAI,CAAC;IAC1B,YAAY,EAAE,kBAAkB,CAAC;IACjC,iBAAiB,EAAE,MAAM,CAAC;IAC1B,mBAAmB,EAAE,MAAM,CAAC;IAC5B,SAAS,EAAE,MAAM,CAAC;IAClB,cAAc,EAAE,mBAAmB,GAAG,IAAI,CAAC;IAC3C,aAAa,EAAE,MAAM,CAAC;IACtB,uBAAuB,EAAE,MAAM,CAAC;IAChC,QAAQ,EAAE,OAAO,CAAC;CACnB;AAED,eAAO,MAAM,YAAY,UAAW,UAAU;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;IAkI5C;;;;;;OAMG;;;;;;;CAOH,CAAC"}
|
package/enums/enums.d.ts
CHANGED
|
@@ -3,6 +3,29 @@ export declare enum WidgetTemplate {
|
|
|
3
3
|
OVERLAY = "overlay",
|
|
4
4
|
SPLIT = "split"
|
|
5
5
|
}
|
|
6
|
+
/**
|
|
7
|
+
* Classic quiz carries a fourth template the other widgets do not have.
|
|
8
|
+
*
|
|
9
|
+
* A const object rather than an enum, deliberately: it *reuses* WidgetTemplate's members
|
|
10
|
+
* instead of redeclaring them, so `WidgetTemplate.STANDARD` is assignable to
|
|
11
|
+
* ClassicQuizTemplate and shared call sites (the List widget's modal, for one) need no
|
|
12
|
+
* per-widget restatement. Two separate enums would be nominally distinct even with equal
|
|
13
|
+
* values, which is what forces that restatement.
|
|
14
|
+
*
|
|
15
|
+
* Widening WidgetTemplate itself is the other tempting option, and the wrong one — "deck"
|
|
16
|
+
* would then type-check on poll-vote, match-quiz, personality-quiz, either-or and
|
|
17
|
+
* collect-lead, and silently fall through to their Split branch.
|
|
18
|
+
*
|
|
19
|
+
* Use `WidgetTemplate.STANDARD` (not `ClassicQuizTemplate.STANDARD`) in type positions;
|
|
20
|
+
* a const object's members are values, not types.
|
|
21
|
+
*/
|
|
22
|
+
export declare const ClassicQuizTemplate: {
|
|
23
|
+
readonly STANDARD: WidgetTemplate.STANDARD;
|
|
24
|
+
readonly OVERLAY: WidgetTemplate.OVERLAY;
|
|
25
|
+
readonly SPLIT: WidgetTemplate.SPLIT;
|
|
26
|
+
readonly DECK: "deck";
|
|
27
|
+
};
|
|
28
|
+
export type ClassicQuizTemplate = (typeof ClassicQuizTemplate)[keyof typeof ClassicQuizTemplate];
|
|
6
29
|
export declare enum PickThePairTemplate {
|
|
7
30
|
STANDARD = "standard",
|
|
8
31
|
LANDING_PAGE = "landing_page",
|
package/enums/enums.d.ts.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"enums.d.ts","sourceRoot":"","sources":["../../src/enums/enums.ts"],"names":[],"mappings":"AAAA,oBAAY,cAAc;IACxB,QAAQ,aAAa;IACrB,OAAO,YAAY;IACnB,KAAK,UAAU;CAChB;AAED,oBAAY,mBAAmB;IAC7B,QAAQ,aAAa;IACrB,YAAY,iBAAiB;IAC7B,OAAO,YAAY;CACpB;AAED,oBAAY,kBAAkB;IAC5B,KAAK,UAAU;IACf,QAAQ,aAAa;IACrB,OAAO,YAAY;CACpB;AAED,oBAAY,iBAAiB;IAC3B,WAAW,gBAAgB;IAC3B,gBAAgB,qBAAqB;IACrC,aAAa,kBAAkB;CAChC"}
|
|
1
|
+
{"version":3,"file":"enums.d.ts","sourceRoot":"","sources":["../../src/enums/enums.ts"],"names":[],"mappings":"AAAA,oBAAY,cAAc;IACxB,QAAQ,aAAa;IACrB,OAAO,YAAY;IACnB,KAAK,UAAU;CAChB;AAED;;;;;;;;;;;;;;;GAeG;AACH,eAAO,MAAM,mBAAmB;;;;;CAKtB,CAAC;AAEX,MAAM,MAAM,mBAAmB,GAC7B,CAAC,OAAO,mBAAmB,CAAC,CAAC,MAAM,OAAO,mBAAmB,CAAC,CAAC;AAEjE,oBAAY,mBAAmB;IAC7B,QAAQ,aAAa;IACrB,YAAY,iBAAiB;IAC7B,OAAO,YAAY;CACpB;AAED,oBAAY,kBAAkB;IAC5B,KAAK,UAAU;IACf,QAAQ,aAAa;IACrB,OAAO,YAAY;CACpB;AAED,oBAAY,iBAAiB;IAC3B,WAAW,gBAAgB;IAC3B,gBAAgB,qBAAqB;IACrC,aAAa,kBAAkB;CAChC"}
|
package/functions/theme.d.ts
CHANGED
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
import { CustomSpacingScale, ImageBackgroundGradient, InternalCustomThemeOptions, ThemeMode } from '../interfaces/interfaces';
|
|
2
|
-
import { WidgetTemplate } from '../enums/enums';
|
|
2
|
+
import { ClassicQuizTemplate, WidgetTemplate } from '../enums/enums';
|
|
3
3
|
|
|
4
4
|
export declare const defaultBreakpoints: {
|
|
5
5
|
values: {
|
|
@@ -167,7 +167,8 @@ export declare const useBorderSize: () => {
|
|
|
167
167
|
} | {
|
|
168
168
|
size: string;
|
|
169
169
|
};
|
|
170
|
-
|
|
170
|
+
/** Accepts either template enum — both are string enums over the same gradient keys. */
|
|
171
|
+
export declare const useImageBackgroundGradient: (variant: WidgetTemplate | ClassicQuizTemplate) => string;
|
|
171
172
|
/**
|
|
172
173
|
* Simple hook to get the current theme mode (light or dark)
|
|
173
174
|
* @returns The current theme mode as "light" | "dark"
|
package/functions/theme.d.ts.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"theme.d.ts","sourceRoot":"","sources":["../../src/functions/theme.ts"],"names":[],"mappings":"AACA,OAAO,EACL,kBAAkB,EAGlB,uBAAuB,EACvB,0BAA0B,EAC1B,SAAS,EACV,MAAM,0BAA0B,CAAC;AAGlC,OAAO,EAAE,cAAc,EAAE,MAAM,gBAAgB,CAAC;
|
|
1
|
+
{"version":3,"file":"theme.d.ts","sourceRoot":"","sources":["../../src/functions/theme.ts"],"names":[],"mappings":"AACA,OAAO,EACL,kBAAkB,EAGlB,uBAAuB,EACvB,0BAA0B,EAC1B,SAAS,EACV,MAAM,0BAA0B,CAAC;AAGlC,OAAO,EAAE,mBAAmB,EAAE,cAAc,EAAE,MAAM,gBAAgB,CAAC;AAGrE,eAAO,MAAM,kBAAkB;;;;;;;;;CAS9B,CAAC;AAEF,eAAO,MAAM,cAAc,EAAE,kBAU5B,CAAC;AAEF,eAAO,MAAM,kBAAkB;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;CAyE9B,CAAC;AAEF,eAAO,MAAM,uBAAuB;;;;;;;;;CASnC,CAAC;AAEF;;;;;GAKG;AACH,eAAO,MAAM,oBAAoB,qBAAqB,CAAC;AAEvD,eAAO,MAAM,kBAAkB,UAAW,MAAM,KAAG,MAgBlD,CAAC;AAEF,eAAO,MAAM,mBAAmB;;;;;;;;;;;;;;;;;;;;;;;CAuB/B,CAAC;AAEF,eAAO,MAAM,aAAa;;;;;;;CAOzB,CAAC;AAEF,eAAO,MAAM,qBAAqB,EAAE,uBAiBnC,CAAC;AAEF;;;GAGG;AACH,eAAO,MAAM,eAAe,QAEG,kBAC9B,CAAC;AAEF;;GAEG;AACH,eAAO,MAAM,UAAU,SAAU,MAAM,kBAAkB,KAAG,MAK3D,CAAC;AAGF,eAAO,MAAM,YAAY,eAiBxB,CAAC;AAGF,eAAO,MAAM,QAAQ,eAiBpB,CAAC;AAGF,eAAO,MAAM,OAAO,eAiBnB,CAAC;AAEF,eAAO,MAAM,QAAQ,eAuBpB,CAAC;AAEF,eAAO,MAAM,SAAS,eAiBrB,CAAC;AAGF,eAAO,MAAM,gBAAgB,kCAI5B,CAAC;AAGF,eAAO,MAAM,gBAAgB;;;CAQ5B,CAAC;AAEF,eAAO,MAAM,aAAa;;;CAOzB,CAAC;AAEF,eAAO,MAAM,eAAe,uCAG3B,CAAC;AAEF,eAAO,MAAM,SAAS,yCAGrB,CAAC;AAEF,eAAO,MAAM,aAAa;;;;CAGzB,CAAC;AAEF,wFAAwF;AACxF,eAAO,MAAM,0BAA0B,YAC5B,cAAc,GAAG,mBAAmB,WAe9C,CAAC;AAEF;;;GAGG;AACH,eAAO,MAAM,mBAAmB,QAAO,SAItC,CAAC"}
|
|
@@ -1,10 +1,10 @@
|
|
|
1
1
|
import { ImagesModel } from 'fansunited-sdk-esm';
|
|
2
|
-
import { WidgetTemplate } from '../enums/enums';
|
|
2
|
+
import { ClassicQuizTemplate, WidgetTemplate } from '../enums/enums';
|
|
3
3
|
|
|
4
4
|
type ImageEntity = {
|
|
5
5
|
images: ImagesModel | null;
|
|
6
6
|
imagePlaceholder: string;
|
|
7
7
|
};
|
|
8
|
-
export declare const useImageVariant: (entity: ImageEntity, variant: WidgetTemplate) => string;
|
|
8
|
+
export declare const useImageVariant: (entity: ImageEntity, variant: WidgetTemplate | ClassicQuizTemplate) => string;
|
|
9
9
|
export {};
|
|
10
10
|
//# sourceMappingURL=useImageVariant.d.ts.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"useImageVariant.d.ts","sourceRoot":"","sources":["../../src/hooks/useImageVariant.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,WAAW,EAAE,MAAM,oBAAoB,CAAC;AACjD,OAAO,EAAE,cAAc,EAAE,MAAM,gBAAgB,CAAC;
|
|
1
|
+
{"version":3,"file":"useImageVariant.d.ts","sourceRoot":"","sources":["../../src/hooks/useImageVariant.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,WAAW,EAAE,MAAM,oBAAoB,CAAC;AACjD,OAAO,EAAE,mBAAmB,EAAE,cAAc,EAAE,MAAM,gBAAgB,CAAC;AAGrE,KAAK,WAAW,GAAG;IACjB,MAAM,EAAE,WAAW,GAAG,IAAI,CAAC;IAC3B,gBAAgB,EAAE,MAAM,CAAC;CAC1B,CAAC;AAEF,eAAO,MAAM,eAAe,WAClB,WAAW,WACV,cAAc,GAAG,mBAAmB,WAkB9C,CAAC"}
|
package/index.d.ts
CHANGED
|
@@ -26,6 +26,8 @@ export type { SignInGatePanelProps } from './components/SignInGatePanel';
|
|
|
26
26
|
export { default as StandardSkeleton } from './components/Skeletons/Standard/StandardSkeleton';
|
|
27
27
|
export { default as SplitSkeleton } from './components/Skeletons/Split/SplitSkeleton';
|
|
28
28
|
export { default as OverlaySkeleton } from './components/Skeletons/Overlay/OverlaySkeleton';
|
|
29
|
+
export { default as DeckSkeleton } from './components/Skeletons/Deck/DeckSkeleton';
|
|
30
|
+
export type { DeckSkeletonProps } from './components/Skeletons/Deck/DeckSkeleton';
|
|
29
31
|
export { default as StandardScoreStateSkeleton } from './components/Skeletons/Standard/ScoreState/StandardScoreStateSkeleton';
|
|
30
32
|
export { default as StandardContentSkeleton } from './components/Skeletons/Standard/ScoreState/StandardContentSkeleton';
|
|
31
33
|
export { default as StandardSignInSkeleton } from './components/Skeletons/Standard/SignIn/StandardSignInSkeleton';
|
|
@@ -44,6 +46,8 @@ export { default as SplitLeadAfterCollection } from './components/LeadCollection
|
|
|
44
46
|
export type { SplitLeadAfterCollectionProps } from './components/LeadCollection/SplitLeadAfterCollection';
|
|
45
47
|
export { default as OverlayLeadAfterCollection } from './components/LeadCollection/OverlayLeadAfterCollection';
|
|
46
48
|
export type { OverlayLeadAfterCollectionProps } from './components/LeadCollection/OverlayLeadAfterCollection';
|
|
49
|
+
export { default as DeckLeadAfterCollection } from './components/LeadCollection/DeckLeadAfterCollection';
|
|
50
|
+
export type { DeckLeadAfterCollectionProps } from './components/LeadCollection/DeckLeadAfterCollection';
|
|
47
51
|
export { default as InfoPageCollectLeadWrapper } from './components/Leads/InfoPageCollectLeadWrapper';
|
|
48
52
|
export type { InfoPageCollectLeadWrapperProps } from './components/Leads/InfoPageCollectLeadWrapper';
|
|
49
53
|
export { default as Portal } from './components/Portal/Portal';
|
package/index.d.ts.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../src/index.ts"],"names":[],"mappings":"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"}
|
|
1
|
+
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../src/index.ts"],"names":[],"mappings":"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"}
|