fansunited-frontend-core 0.0.28 → 0.0.30
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/components/LeadCollection/OverlayLeadAfterCollection.d.ts +38 -0
- package/components/LeadCollection/OverlayLeadAfterCollection.d.ts.map +1 -0
- package/components/LeadCollection/SplitLeadAfterCollection.d.ts +43 -0
- package/components/LeadCollection/SplitLeadAfterCollection.d.ts.map +1 -0
- package/components/LeadCollection/StandardLeadAfterCollection.d.ts +42 -0
- package/components/LeadCollection/StandardLeadAfterCollection.d.ts.map +1 -0
- package/components/Leads/CollectLeadForm.d.ts.map +1 -1
- package/components/Leads/LeadForm.d.ts +1 -0
- package/components/Leads/LeadForm.d.ts.map +1 -1
- package/components/Rules.d.ts +11 -0
- package/components/Rules.d.ts.map +1 -0
- package/components/Skeletons/Overlay/ApiError/OverlayApiErrorSkeleton.d.ts +2 -1
- package/components/Skeletons/Overlay/ApiError/OverlayApiErrorSkeleton.d.ts.map +1 -1
- package/components/Skeletons/Overlay/OverlaySkeleton.d.ts +3 -1
- package/components/Skeletons/Overlay/OverlaySkeleton.d.ts.map +1 -1
- package/components/Skeletons/Overlay/ScoreState/OverlayScoreStateSkeleton.d.ts +3 -1
- package/components/Skeletons/Overlay/ScoreState/OverlayScoreStateSkeleton.d.ts.map +1 -1
- package/components/Skeletons/Overlay/SignIn/OverlaySignInSkeleton.d.ts +3 -1
- package/components/Skeletons/Overlay/SignIn/OverlaySignInSkeleton.d.ts.map +1 -1
- package/components/Skeletons/Overlay/SignIn/OverlaySignInSkeleton.styles.d.ts +5 -0
- package/components/Skeletons/Overlay/SignIn/OverlaySignInSkeleton.styles.d.ts.map +1 -1
- package/components/Skeletons/Split/ApiError/SplitApiErrorSkeleton.d.ts +2 -1
- package/components/Skeletons/Split/ApiError/SplitApiErrorSkeleton.d.ts.map +1 -1
- package/components/Skeletons/Split/ScoreState/SplitScoreStateSkeleton.d.ts +3 -1
- package/components/Skeletons/Split/ScoreState/SplitScoreStateSkeleton.d.ts.map +1 -1
- package/components/Skeletons/Split/SignIn/SplitSignInSkeleton.d.ts +3 -1
- package/components/Skeletons/Split/SignIn/SplitSignInSkeleton.d.ts.map +1 -1
- package/components/Skeletons/Split/SplitSkeleton.d.ts +3 -1
- package/components/Skeletons/Split/SplitSkeleton.d.ts.map +1 -1
- package/components/Skeletons/Standard/ApiError/StandardApiErrorSkeleton.d.ts +2 -1
- package/components/Skeletons/Standard/ApiError/StandardApiErrorSkeleton.d.ts.map +1 -1
- package/components/Skeletons/Standard/SignIn/StandardSignInSkeleton.d.ts +3 -1
- package/components/Skeletons/Standard/SignIn/StandardSignInSkeleton.d.ts.map +1 -1
- package/components/Skeletons/Standard/StandardSkeleton.d.ts +3 -1
- package/components/Skeletons/Standard/StandardSkeleton.d.ts.map +1 -1
- package/index.d.ts +7 -0
- package/index.d.ts.map +1 -1
- package/index.es.js +10805 -8028
- package/interfaces/interfaces.d.ts +16 -1
- package/interfaces/interfaces.d.ts.map +1 -1
- package/locales/bg.json.d.ts +11 -2
- package/locales/de.json.d.ts +11 -2
- package/locales/el.json.d.ts +10 -2
- package/locales/en.json.d.ts +15 -3
- package/locales/es.json.d.ts +11 -2
- package/locales/fr-be.json.d.ts +11 -2
- package/locales/fr.json.d.ts +11 -2
- package/locales/it.json.d.ts +11 -2
- package/locales/pl.json.d.ts +11 -2
- package/locales/pt-br.json.d.ts +11 -2
- package/locales/pt.json.d.ts +11 -2
- package/locales/ro.json.d.ts +11 -2
- package/locales/sk.json.d.ts +11 -2
- package/locales/sr.json.d.ts +11 -2
- package/package.json +1 -1
- package/hooks/useImageVariant.js +0 -18
- package/hooks/useImageVariant.js.map +0 -1
|
@@ -0,0 +1,38 @@
|
|
|
1
|
+
import { default as React } from 'react';
|
|
2
|
+
import { LeadsOptions, SkeletonEntity } from '../../index';
|
|
3
|
+
import { FansUnitedSDKModel } from 'fansunited-sdk-esm';
|
|
4
|
+
import { RulesDisplay as RulesDisplayInterface } from '../../interfaces/interfaces';
|
|
5
|
+
|
|
6
|
+
export interface OverlayLeadAfterCollectionProps {
|
|
7
|
+
/** Entity (ClassicQuiz, MatchQuiz, Poll, PersonalityQuiz, EventGame) */
|
|
8
|
+
entity: SkeletonEntity;
|
|
9
|
+
/** Headline text (e.g., "Quiz", "Match Quiz", "Poll") */
|
|
10
|
+
headline: string;
|
|
11
|
+
/** FansUnited SDK instance */
|
|
12
|
+
sdk: FansUnitedSDKModel;
|
|
13
|
+
/** Leads configuration */
|
|
14
|
+
leads?: LeadsOptions;
|
|
15
|
+
/** Default image placeholder URL */
|
|
16
|
+
defaultImagePlaceholder?: string;
|
|
17
|
+
/** Mobile image placeholder URL */
|
|
18
|
+
mobileImagePlaceholder?: string;
|
|
19
|
+
/** Callback when lead is submitted */
|
|
20
|
+
onLeadSubmitted: () => void;
|
|
21
|
+
/** Whether participation is being submitted */
|
|
22
|
+
isSubmitting?: boolean;
|
|
23
|
+
/** PresentedBy component from consumer package */
|
|
24
|
+
PresentedBy: React.ComponentType<{
|
|
25
|
+
brandingLogo: string;
|
|
26
|
+
textColor: string;
|
|
27
|
+
label: string | null;
|
|
28
|
+
primaryUrl?: string;
|
|
29
|
+
secondaryUrl?: string;
|
|
30
|
+
}>;
|
|
31
|
+
/** CollectLeadWrapper component from consumer package */
|
|
32
|
+
CollectLeadWrapper: React.ComponentType<any>;
|
|
33
|
+
/** Rules display configuration */
|
|
34
|
+
rulesDisplay?: RulesDisplayInterface;
|
|
35
|
+
}
|
|
36
|
+
declare const OverlayLeadAfterCollection: React.FC<OverlayLeadAfterCollectionProps>;
|
|
37
|
+
export default OverlayLeadAfterCollection;
|
|
38
|
+
//# sourceMappingURL=OverlayLeadAfterCollection.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"OverlayLeadAfterCollection.d.ts","sourceRoot":"","sources":["../../../src/components/LeadCollection/OverlayLeadAfterCollection.tsx"],"names":[],"mappings":"AAAA,OAAO,KAAK,MAAM,OAAO,CAAC;AAE1B,OAAO,EAQL,YAAY,EACZ,cAAc,EACf,MAAM,aAAa,CAAC;AACrB,OAAO,EAAE,kBAAkB,EAAE,MAAM,oBAAoB,CAAC;AACxD,OAAO,EAAE,YAAY,IAAI,qBAAqB,EAAE,MAAM,6BAA6B,CAAC;AAEpF,MAAM,WAAW,+BAA+B;IAC9C,wEAAwE;IACxE,MAAM,EAAE,cAAc,CAAC;IACvB,yDAAyD;IACzD,QAAQ,EAAE,MAAM,CAAC;IACjB,8BAA8B;IAC9B,GAAG,EAAE,kBAAkB,CAAC;IACxB,0BAA0B;IAC1B,KAAK,CAAC,EAAE,YAAY,CAAC;IACrB,oCAAoC;IACpC,uBAAuB,CAAC,EAAE,MAAM,CAAC;IACjC,mCAAmC;IACnC,sBAAsB,CAAC,EAAE,MAAM,CAAC;IAChC,sCAAsC;IACtC,eAAe,EAAE,MAAM,IAAI,CAAC;IAC5B,+CAA+C;IAC/C,YAAY,CAAC,EAAE,OAAO,CAAC;IACvB,kDAAkD;IAClD,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;KACvB,CAAC,CAAC;IACH,yDAAyD;IACzD,kBAAkB,EAAE,KAAK,CAAC,aAAa,CAAC,GAAG,CAAC,CAAC;IAC7C,kCAAkC;IAClC,YAAY,CAAC,EAAE,qBAAqB,CAAC;CACtC;AAED,QAAA,MAAM,0BAA0B,EAAE,KAAK,CAAC,EAAE,CAAC,+BAA+B,CAqHzE,CAAC;AAEF,eAAe,0BAA0B,CAAC"}
|
|
@@ -0,0 +1,43 @@
|
|
|
1
|
+
import { default as React } from 'react';
|
|
2
|
+
import { FansUnitedSDKModel } from 'fansunited-sdk-esm';
|
|
3
|
+
import { SkeletonEntity, LeadsOptions, RulesDisplay as RulesDisplayInterface } from '../../interfaces/interfaces';
|
|
4
|
+
|
|
5
|
+
export interface SplitLeadAfterCollectionProps {
|
|
6
|
+
/** The entity (classicQuiz, matchQuiz, poll, personalityQuiz, eventGame) */
|
|
7
|
+
entity: SkeletonEntity;
|
|
8
|
+
/** The headline to display (e.g., "Quiz", "Match Quiz", "Poll") */
|
|
9
|
+
headline: string;
|
|
10
|
+
/** SDK instance */
|
|
11
|
+
sdk: FansUnitedSDKModel;
|
|
12
|
+
/** Leads configuration */
|
|
13
|
+
leads?: LeadsOptions;
|
|
14
|
+
/** Default image placeholder URL */
|
|
15
|
+
defaultImagePlaceholder?: string;
|
|
16
|
+
/** Mobile image placeholder URL */
|
|
17
|
+
mobileImagePlaceholder?: string;
|
|
18
|
+
/** Callback when lead is submitted */
|
|
19
|
+
onLeadSubmitted: () => void;
|
|
20
|
+
/** Whether the participation/prediction is being submitted */
|
|
21
|
+
isSubmitting?: boolean;
|
|
22
|
+
/** Main card component from the consumer package */
|
|
23
|
+
MainCard: React.ComponentType<{
|
|
24
|
+
brandingBorderColor: string | null;
|
|
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 */
|
|
37
|
+
CollectLeadWrapper: React.ComponentType<any>;
|
|
38
|
+
/** Rules display configuration */
|
|
39
|
+
rulesDisplay?: RulesDisplayInterface;
|
|
40
|
+
}
|
|
41
|
+
declare const SplitLeadAfterCollection: React.FC<SplitLeadAfterCollectionProps>;
|
|
42
|
+
export default SplitLeadAfterCollection;
|
|
43
|
+
//# sourceMappingURL=SplitLeadAfterCollection.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"SplitLeadAfterCollection.d.ts","sourceRoot":"","sources":["../../../src/components/LeadCollection/SplitLeadAfterCollection.tsx"],"names":[],"mappings":"AAAA,OAAO,KAAK,MAAM,OAAO,CAAC;AAa1B,OAAO,EAAE,kBAAkB,EAAE,MAAM,oBAAoB,CAAC;AACxD,OAAO,EAAE,cAAc,EAAE,YAAY,EAAE,YAAY,IAAI,qBAAqB,EAAE,MAAM,6BAA6B,CAAC;AAElH,MAAM,WAAW,6BAA6B;IAC5C,4EAA4E;IAC5E,MAAM,EAAE,cAAc,CAAC;IACvB,mEAAmE;IACnE,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,mCAAmC;IACnC,sBAAsB,CAAC,EAAE,MAAM,CAAC;IAChC,sCAAsC;IACtC,eAAe,EAAE,MAAM,IAAI,CAAC;IAC5B,8DAA8D;IAC9D,YAAY,CAAC,EAAE,OAAO,CAAC;IACvB,oDAAoD;IACpD,QAAQ,EAAE,KAAK,CAAC,aAAa,CAAC;QAC5B,mBAAmB,EAAE,MAAM,GAAG,IAAI,CAAC;QACnC,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,6DAA6D;IAC7D,kBAAkB,EAAE,KAAK,CAAC,aAAa,CAAC,GAAG,CAAC,CAAC;IAC7C,kCAAkC;IAClC,YAAY,CAAC,EAAE,qBAAqB,CAAC;CACtC;AAED,QAAA,MAAM,wBAAwB,EAAE,KAAK,CAAC,EAAE,CAAC,6BAA6B,CA2HrE,CAAC;AAEF,eAAe,wBAAwB,CAAC"}
|
|
@@ -0,0 +1,42 @@
|
|
|
1
|
+
import { default as React } from 'react';
|
|
2
|
+
import { FansUnitedSDKModel } from 'fansunited-sdk-esm';
|
|
3
|
+
import { SkeletonEntity, LeadsOptions, RulesDisplay as RulesDisplayInterface } from '../../interfaces/interfaces';
|
|
4
|
+
|
|
5
|
+
export interface StandardLeadAfterCollectionProps {
|
|
6
|
+
/** The entity (classicQuiz, matchQuiz, poll, personalityQuiz, eventGame) */
|
|
7
|
+
entity: SkeletonEntity;
|
|
8
|
+
/** The headline to display (e.g., "Quiz", "Match Quiz", "Poll") */
|
|
9
|
+
headline: string;
|
|
10
|
+
/** SDK instance */
|
|
11
|
+
sdk: FansUnitedSDKModel;
|
|
12
|
+
/** Leads configuration */
|
|
13
|
+
leads?: LeadsOptions;
|
|
14
|
+
/** Default image placeholder URL */
|
|
15
|
+
defaultImagePlaceholderUrl?: string;
|
|
16
|
+
/** Image position (left or right) */
|
|
17
|
+
imagePosition?: "left" | "right";
|
|
18
|
+
/** Callback when lead is submitted */
|
|
19
|
+
onLeadSubmitted: () => void;
|
|
20
|
+
/** Whether the participation/prediction is being submitted */
|
|
21
|
+
isSubmitting?: boolean;
|
|
22
|
+
/** Main card component from the consumer package */
|
|
23
|
+
MainCard: React.ComponentType<{
|
|
24
|
+
brandingBorderColor: string | null;
|
|
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
|
+
}>;
|
|
35
|
+
/** CollectLeadWrapper component from the consumer package */
|
|
36
|
+
CollectLeadWrapper: React.ComponentType<any>;
|
|
37
|
+
/** Rules display configuration */
|
|
38
|
+
rulesDisplay?: RulesDisplayInterface;
|
|
39
|
+
}
|
|
40
|
+
declare const StandardLeadAfterCollection: React.FC<StandardLeadAfterCollectionProps>;
|
|
41
|
+
export default StandardLeadAfterCollection;
|
|
42
|
+
//# sourceMappingURL=StandardLeadAfterCollection.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"StandardLeadAfterCollection.d.ts","sourceRoot":"","sources":["../../../src/components/LeadCollection/StandardLeadAfterCollection.tsx"],"names":[],"mappings":"AAAA,OAAO,KAAK,MAAM,OAAO,CAAC;AAY1B,OAAO,EAAE,kBAAkB,EAAE,MAAM,oBAAoB,CAAC;AACxD,OAAO,EAAE,cAAc,EAAE,YAAY,EAAE,YAAY,IAAI,qBAAqB,EAAE,MAAM,6BAA6B,CAAC;AAElH,MAAM,WAAW,gCAAgC;IAC/C,4EAA4E;IAC5E,MAAM,EAAE,cAAc,CAAC;IACvB,mEAAmE;IACnE,QAAQ,EAAE,MAAM,CAAC;IACjB,mBAAmB;IACnB,GAAG,EAAE,kBAAkB,CAAC;IACxB,0BAA0B;IAC1B,KAAK,CAAC,EAAE,YAAY,CAAC;IACrB,oCAAoC;IACpC,0BAA0B,CAAC,EAAE,MAAM,CAAC;IACpC,qCAAqC;IACrC,aAAa,CAAC,EAAE,MAAM,GAAG,OAAO,CAAC;IACjC,sCAAsC;IACtC,eAAe,EAAE,MAAM,IAAI,CAAC;IAC5B,8DAA8D;IAC9D,YAAY,CAAC,EAAE,OAAO,CAAC;IACvB,oDAAoD;IACpD,QAAQ,EAAE,KAAK,CAAC,aAAa,CAAC;QAAE,mBAAmB,EAAE,MAAM,GAAG,IAAI,CAAC;QAAC,QAAQ,EAAE,KAAK,CAAC,SAAS,CAAA;KAAE,CAAC,CAAC;IACjG,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;KACvB,CAAC,CAAC;IACH,6DAA6D;IAC7D,kBAAkB,EAAE,KAAK,CAAC,aAAa,CAAC,GAAG,CAAC,CAAC;IAC7C,kCAAkC;IAClC,YAAY,CAAC,EAAE,qBAAqB,CAAC;CACtC;AAED,QAAA,MAAM,2BAA2B,EAAE,KAAK,CAAC,EAAE,CAAC,gCAAgC,CA2G3E,CAAC;AAEF,eAAe,2BAA2B,CAAC"}
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"CollectLeadForm.d.ts","sourceRoot":"","sources":["../../../src/components/Leads/CollectLeadForm.tsx"],"names":[],"mappings":"AAGA,OAAO,EAAE,oBAAoB,EAAE,MAAM,6BAA6B,CAAC;AAGnE,QAAA,MAAM,eAAe,EAAE,KAAK,CAAC,EAAE,CAAC,oBAAoB,
|
|
1
|
+
{"version":3,"file":"CollectLeadForm.d.ts","sourceRoot":"","sources":["../../../src/components/Leads/CollectLeadForm.tsx"],"names":[],"mappings":"AAGA,OAAO,EAAE,oBAAoB,EAAE,MAAM,6BAA6B,CAAC;AAGnE,QAAA,MAAM,eAAe,EAAE,KAAK,CAAC,EAAE,CAAC,oBAAoB,CA6EnD,CAAC;AAEF,eAAe,eAAe,CAAC"}
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"LeadForm.d.ts","sourceRoot":"","sources":["../../../src/components/Leads/LeadForm.tsx"],"names":[],"mappings":"AAAA,OAAO,KAAmB,MAAM,OAAO,CAAC;AA4BxC,OAAO,KAAK,EAAE,SAAS,EAAE,MAAM,mBAAmB,CAAC;AACnD,OAAO,EAAsB,kBAAkB,EAAE,MAAM,oBAAoB,CAAC;AAE5E,OAAO,EACL,cAAc,EACd,YAAY,EACZ,cAAc,EACd,WAAW,EACX,eAAe,EACf,mBAAmB,EACpB,MAAM,6BAA6B,CAAC;AAuBrC,UAAU,aAAa;IACrB,GAAG,EAAE,kBAAkB,CAAC;IACxB,cAAc,CAAC,EAAE,cAAc,CAAC;IAChC,YAAY,CAAC,EAAE,YAAY,CAAC;IAC5B,MAAM,CAAC,EAAE,SAAS,EAAE,CAAC;IACrB,UAAU,CAAC,EAAE,MAAM,CAAC;IACpB,YAAY,CAAC,EAAE,MAAM,CAAC;IACtB,WAAW,CAAC,EAAE,MAAM,CAAC;IACrB,SAAS,CAAC,EAAE,MAAM,CAAC;IACnB,WAAW,CAAC,EAAE,MAAM,CAAC;IACrB,gBAAgB,CAAC,EAAE,eAAe,EAAE,CAAC;IACrC,QAAQ,CAAC,EAAE,WAAW,EAAE,CAAC;IACzB,YAAY,CAAC,EAAE,mBAAmB,CAAC;IACnC,MAAM,CAAC,EAAE,cAAc,CAAC;IACxB,eAAe,CAAC,EAAE,OAAO,CAAC;
|
|
1
|
+
{"version":3,"file":"LeadForm.d.ts","sourceRoot":"","sources":["../../../src/components/Leads/LeadForm.tsx"],"names":[],"mappings":"AAAA,OAAO,KAAmB,MAAM,OAAO,CAAC;AA4BxC,OAAO,KAAK,EAAE,SAAS,EAAE,MAAM,mBAAmB,CAAC;AACnD,OAAO,EAAsB,kBAAkB,EAAE,MAAM,oBAAoB,CAAC;AAE5E,OAAO,EACL,cAAc,EACd,YAAY,EACZ,cAAc,EACd,WAAW,EACX,eAAe,EACf,mBAAmB,EACpB,MAAM,6BAA6B,CAAC;AAuBrC,UAAU,aAAa;IACrB,GAAG,EAAE,kBAAkB,CAAC;IACxB,cAAc,CAAC,EAAE,cAAc,CAAC;IAChC,YAAY,CAAC,EAAE,YAAY,CAAC;IAC5B,MAAM,CAAC,EAAE,SAAS,EAAE,CAAC;IACrB,UAAU,CAAC,EAAE,MAAM,CAAC;IACpB,YAAY,CAAC,EAAE,MAAM,CAAC;IACtB,WAAW,CAAC,EAAE,MAAM,CAAC;IACrB,SAAS,CAAC,EAAE,MAAM,CAAC;IACnB,WAAW,CAAC,EAAE,MAAM,CAAC;IACrB,gBAAgB,CAAC,EAAE,eAAe,EAAE,CAAC;IACrC,QAAQ,CAAC,EAAE,WAAW,EAAE,CAAC;IACzB,YAAY,CAAC,EAAE,mBAAmB,CAAC;IACnC,MAAM,CAAC,EAAE,cAAc,CAAC;IACxB,eAAe,CAAC,EAAE,OAAO,CAAC;IAC1B,yBAAyB,CAAC,EAAE,OAAO,CAAC;CACrC;AAED,QAAA,MAAM,QAAQ,EAAE,KAAK,CAAC,EAAE,CAAC,aAAa,CA6jBrC,CAAC;AAEF,eAAe,QAAQ,CAAC"}
|
|
@@ -0,0 +1,11 @@
|
|
|
1
|
+
import { default as React } from 'react';
|
|
2
|
+
import { RulesDisplay } from '../interfaces/interfaces';
|
|
3
|
+
|
|
4
|
+
type RulesDisplayProps = {
|
|
5
|
+
rules: string;
|
|
6
|
+
rulesDisplay?: RulesDisplay;
|
|
7
|
+
isOverlayVariant?: boolean;
|
|
8
|
+
};
|
|
9
|
+
declare const Rules: React.FC<RulesDisplayProps>;
|
|
10
|
+
export default Rules;
|
|
11
|
+
//# sourceMappingURL=Rules.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"Rules.d.ts","sourceRoot":"","sources":["../../src/components/Rules.tsx"],"names":[],"mappings":"AAAA,OAAO,KAAmB,MAAM,OAAO,CAAC;AAcxC,OAAO,EAAE,YAAY,EAAE,MAAM,0BAA0B,CAAC;AAWxD,KAAK,iBAAiB,GAAG;IACvB,KAAK,EAAE,MAAM,CAAC;IACd,YAAY,CAAC,EAAE,YAAY,CAAC;IAC5B,gBAAgB,CAAC,EAAE,OAAO,CAAC;CAC5B,CAAC;AAEF,QAAA,MAAM,KAAK,EAAE,KAAK,CAAC,EAAE,CAAC,iBAAiB,CAmStC,CAAC;AAEF,eAAe,KAAK,CAAC"}
|
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
import { default as React } from 'react';
|
|
2
|
-
import { SkeletonEntity } from '../../../../interfaces/interfaces';
|
|
2
|
+
import { SkeletonEntity, RulesDisplay as RulesDisplayInterface } from '../../../../interfaces/interfaces';
|
|
3
3
|
|
|
4
4
|
export interface OverlayApiErrorSkeletonProps {
|
|
5
5
|
entity: SkeletonEntity;
|
|
@@ -10,6 +10,7 @@ export interface OverlayApiErrorSkeletonProps {
|
|
|
10
10
|
toggleTryAgain: () => void;
|
|
11
11
|
apiErrorMessage?: string;
|
|
12
12
|
renderPresentedBy: (textColor: string) => React.ReactNode;
|
|
13
|
+
rulesDisplay?: RulesDisplayInterface;
|
|
13
14
|
}
|
|
14
15
|
declare const OverlayApiErrorSkeleton: React.FC<OverlayApiErrorSkeletonProps>;
|
|
15
16
|
export default OverlayApiErrorSkeleton;
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"OverlayApiErrorSkeleton.d.ts","sourceRoot":"","sources":["../../../../../src/components/Skeletons/Overlay/ApiError/OverlayApiErrorSkeleton.tsx"],"names":[],"mappings":"AAAA,OAAO,KAAK,MAAM,OAAO,CAAC;AAiB1B,OAAO,EAAE,cAAc,EAAE,MAAM,mCAAmC,CAAC;
|
|
1
|
+
{"version":3,"file":"OverlayApiErrorSkeleton.d.ts","sourceRoot":"","sources":["../../../../../src/components/Skeletons/Overlay/ApiError/OverlayApiErrorSkeleton.tsx"],"names":[],"mappings":"AAAA,OAAO,KAAK,MAAM,OAAO,CAAC;AAiB1B,OAAO,EAAE,cAAc,EAAE,YAAY,IAAI,qBAAqB,EAAE,MAAM,mCAAmC,CAAC;AAG1G,MAAM,WAAW,4BAA4B;IAC3C,MAAM,EAAE,cAAc,CAAC;IACvB,QAAQ,EAAE,MAAM,CAAC;IACjB,kBAAkB,EAAE,MAAM,CAAC;IAC3B,0BAA0B,CAAC,EAAE,MAAM,CAAC;IACpC,UAAU,EAAE,OAAO,CAAC;IACpB,cAAc,EAAE,MAAM,IAAI,CAAC;IAC3B,eAAe,CAAC,EAAE,MAAM,CAAC;IACzB,iBAAiB,EAAE,CAAC,SAAS,EAAE,MAAM,KAAK,KAAK,CAAC,SAAS,CAAC;IAC1D,YAAY,CAAC,EAAE,qBAAqB,CAAC;CACtC;AAED,QAAA,MAAM,uBAAuB,EAAE,KAAK,CAAC,EAAE,CAAC,4BAA4B,CAqInE,CAAC;AAEF,eAAe,uBAAuB,CAAC"}
|
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
import { default as React, ReactNode } from 'react';
|
|
2
|
-
import { SkeletonEntity } from '../../../interfaces/interfaces';
|
|
2
|
+
import { SkeletonEntity, RulesDisplay as RulesDisplayInterface } from '../../../interfaces/interfaces';
|
|
3
3
|
|
|
4
4
|
/**
|
|
5
5
|
* Props for the OverlaySkeleton component
|
|
@@ -13,6 +13,8 @@ export interface OverlaySkeletonProps {
|
|
|
13
13
|
finalImage: string;
|
|
14
14
|
/** Children content to render in the main content area */
|
|
15
15
|
children: ReactNode;
|
|
16
|
+
/** Rules display configuration */
|
|
17
|
+
rulesDisplay?: RulesDisplayInterface;
|
|
16
18
|
}
|
|
17
19
|
/**
|
|
18
20
|
* OverlaySkeleton Component
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"OverlaySkeleton.d.ts","sourceRoot":"","sources":["../../../../src/components/Skeletons/Overlay/OverlaySkeleton.tsx"],"names":[],"mappings":"AAAA,OAAO,KAAK,EAAE,EAAE,SAAS,EAAE,MAAM,OAAO,CAAC;AAWzC,OAAO,
|
|
1
|
+
{"version":3,"file":"OverlaySkeleton.d.ts","sourceRoot":"","sources":["../../../../src/components/Skeletons/Overlay/OverlaySkeleton.tsx"],"names":[],"mappings":"AAAA,OAAO,KAAK,EAAE,EAAE,SAAS,EAAE,MAAM,OAAO,CAAC;AAWzC,OAAO,EACL,cAAc,EACd,YAAY,IAAI,qBAAqB,EACtC,MAAM,gCAAgC,CAAC;AAGxC;;GAEG;AACH,MAAM,WAAW,oBAAoB;IACnC,wEAAwE;IACxE,MAAM,EAAE,cAAc,CAAC;IACvB,4EAA4E;IAC5E,QAAQ,EAAE,MAAM,CAAC;IACjB,wEAAwE;IACxE,UAAU,EAAE,MAAM,CAAC;IACnB,0DAA0D;IAC1D,QAAQ,EAAE,SAAS,CAAC;IACpB,kCAAkC;IAClC,YAAY,CAAC,EAAE,qBAAqB,CAAC;CACtC;AAED;;;;;;;;;;;;;;;;;;;;;;;;;GAyBG;AACH,QAAA,MAAM,eAAe,EAAE,KAAK,CAAC,EAAE,CAAC,oBAAoB,CAoFnD,CAAC;AAEF,eAAe,eAAe,CAAC"}
|
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
import { default as React, ReactNode } from 'react';
|
|
2
|
-
import { SkeletonEntity } from '../../../../interfaces/interfaces';
|
|
2
|
+
import { SkeletonEntity, RulesDisplay as RulesDisplayInterface } from '../../../../interfaces/interfaces';
|
|
3
3
|
|
|
4
4
|
/**
|
|
5
5
|
* Props for the OverlayScoreStateSkeleton component
|
|
@@ -15,6 +15,8 @@ export interface OverlayScoreStateSkeletonProps {
|
|
|
15
15
|
imageBackgroundGradient: string;
|
|
16
16
|
/** Children content to render in the main content area */
|
|
17
17
|
children: ReactNode;
|
|
18
|
+
/** Rules display configuration */
|
|
19
|
+
rulesDisplay?: RulesDisplayInterface;
|
|
18
20
|
}
|
|
19
21
|
/**
|
|
20
22
|
* OverlayScoreStateSkeleton Component
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"OverlayScoreStateSkeleton.d.ts","sourceRoot":"","sources":["../../../../../src/components/Skeletons/Overlay/ScoreState/OverlayScoreStateSkeleton.tsx"],"names":[],"mappings":"AAAA,OAAO,KAAK,EAAE,EAAE,SAAS,EAAE,MAAM,OAAO,CAAC;AAQzC,OAAO,
|
|
1
|
+
{"version":3,"file":"OverlayScoreStateSkeleton.d.ts","sourceRoot":"","sources":["../../../../../src/components/Skeletons/Overlay/ScoreState/OverlayScoreStateSkeleton.tsx"],"names":[],"mappings":"AAAA,OAAO,KAAK,EAAE,EAAE,SAAS,EAAE,MAAM,OAAO,CAAC;AAQzC,OAAO,EACL,cAAc,EACd,YAAY,IAAI,qBAAqB,EACtC,MAAM,mCAAmC,CAAC;AAI3C;;GAEG;AACH,MAAM,WAAW,8BAA8B;IAC7C,wEAAwE;IACxE,MAAM,EAAE,cAAc,CAAC;IACvB,4EAA4E;IAC5E,QAAQ,EAAE,MAAM,CAAC;IACjB,2BAA2B;IAC3B,eAAe,EAAE,MAAM,CAAC;IACxB,kCAAkC;IAClC,uBAAuB,EAAE,MAAM,CAAC;IAChC,0DAA0D;IAC1D,QAAQ,EAAE,SAAS,CAAC;IACpB,kCAAkC;IAClC,YAAY,CAAC,EAAE,qBAAqB,CAAC;CACtC;AAED;;;;;;;;;;;;;;;;;;;;;;;;;;;;GA4BG;AACH,QAAA,MAAM,yBAAyB,EAAE,KAAK,CAAC,EAAE,CAAC,8BAA8B,CAgFvE,CAAC;AAEF,eAAe,yBAAyB,CAAC"}
|
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
import { default as React, ReactNode } from 'react';
|
|
2
|
-
import { SkeletonEntity } from '../../../../interfaces/interfaces';
|
|
2
|
+
import { SkeletonEntity, RulesDisplay as RulesDisplayInterface } from '../../../../interfaces/interfaces';
|
|
3
3
|
|
|
4
4
|
export interface OverlaySignInSkeletonProps {
|
|
5
5
|
/** Entity data (poll, quiz, etc.) */
|
|
@@ -14,6 +14,8 @@ export interface OverlaySignInSkeletonProps {
|
|
|
14
14
|
signInContent: ReactNode;
|
|
15
15
|
/** Branding/PresentedBy content */
|
|
16
16
|
brandingContent: ReactNode;
|
|
17
|
+
/** Rules display configuration */
|
|
18
|
+
rulesDisplay?: RulesDisplayInterface;
|
|
17
19
|
}
|
|
18
20
|
declare const OverlaySignInSkeleton: React.FC<OverlaySignInSkeletonProps>;
|
|
19
21
|
export default OverlaySignInSkeleton;
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"OverlaySignInSkeleton.d.ts","sourceRoot":"","sources":["../../../../../src/components/Skeletons/Overlay/SignIn/OverlaySignInSkeleton.tsx"],"names":[],"mappings":"AAAA,OAAO,KAAK,EAAE,EAAE,SAAS,EAAE,MAAM,OAAO,CAAC;AAQzC,OAAO,EAAE,cAAc,EAAE,MAAM,mCAAmC,CAAC;
|
|
1
|
+
{"version":3,"file":"OverlaySignInSkeleton.d.ts","sourceRoot":"","sources":["../../../../../src/components/Skeletons/Overlay/SignIn/OverlaySignInSkeleton.tsx"],"names":[],"mappings":"AAAA,OAAO,KAAK,EAAE,EAAE,SAAS,EAAE,MAAM,OAAO,CAAC;AAQzC,OAAO,EAAE,cAAc,EAAE,YAAY,IAAI,qBAAqB,EAAE,MAAM,mCAAmC,CAAC;AAI1G,MAAM,WAAW,0BAA0B;IACzC,qCAAqC;IACrC,MAAM,EAAE,cAAc,CAAC;IACvB,2CAA2C;IAC3C,QAAQ,EAAE,MAAM,CAAC;IACjB,2BAA2B;IAC3B,eAAe,EAAE,MAAM,CAAC;IACxB,kCAAkC;IAClC,uBAAuB,EAAE,MAAM,CAAC;IAChC,iCAAiC;IACjC,aAAa,EAAE,SAAS,CAAC;IACzB,mCAAmC;IACnC,eAAe,EAAE,SAAS,CAAC;IAC3B,kCAAkC;IAClC,YAAY,CAAC,EAAE,qBAAqB,CAAC;CACtC;AAED,QAAA,MAAM,qBAAqB,EAAE,KAAK,CAAC,EAAE,CAAC,0BAA0B,CA0E/D,CAAC;AAEF,eAAe,qBAAqB,CAAC"}
|
|
@@ -100,6 +100,11 @@ export declare const createStyles: (props: StyleProps) => {
|
|
|
100
100
|
flexDirection: string;
|
|
101
101
|
gap: string;
|
|
102
102
|
};
|
|
103
|
+
signInWrapper: {
|
|
104
|
+
display: string;
|
|
105
|
+
justifyContent: string;
|
|
106
|
+
flex: number;
|
|
107
|
+
};
|
|
103
108
|
};
|
|
104
109
|
export {};
|
|
105
110
|
//# sourceMappingURL=OverlaySignInSkeleton.styles.d.ts.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"OverlaySignInSkeleton.styles.d.ts","sourceRoot":"","sources":["../../../../../src/components/Skeletons/Overlay/SignIn/OverlaySignInSkeleton.styles.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,kBAAkB,EAAE,MAAM,mCAAmC,CAAC;AACvE,OAAO,EAAE,mBAAmB,EAAE,MAAM,oBAAoB,CAAC;AAEzD,UAAU,UAAU;IAClB,YAAY,EAAE,kBAAkB,CAAC;IACjC,cAAc,EAAE,mBAAmB,GAAG,IAAI,CAAC;IAC3C,cAAc,EAAE,MAAM,CAAC;IACvB,iBAAiB,EAAE,MAAM,CAAC;IAC1B,mBAAmB,EAAE,MAAM,CAAC;IAC5B,cAAc,EAAE,MAAM,CAAC;IACvB,UAAU,EAAE,MAAM,CAAC;IACnB,aAAa,EAAE,MAAM,CAAC;IACtB,eAAe,EAAE,MAAM,CAAC;IACxB,uBAAuB,EAAE,MAAM,CAAC;IAChC,QAAQ,EAAE,OAAO,CAAC;CACnB;AAED,eAAO,MAAM,YAAY,UAAW,UAAU
|
|
1
|
+
{"version":3,"file":"OverlaySignInSkeleton.styles.d.ts","sourceRoot":"","sources":["../../../../../src/components/Skeletons/Overlay/SignIn/OverlaySignInSkeleton.styles.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,kBAAkB,EAAE,MAAM,mCAAmC,CAAC;AACvE,OAAO,EAAE,mBAAmB,EAAE,MAAM,oBAAoB,CAAC;AAEzD,UAAU,UAAU;IAClB,YAAY,EAAE,kBAAkB,CAAC;IACjC,cAAc,EAAE,mBAAmB,GAAG,IAAI,CAAC;IAC3C,cAAc,EAAE,MAAM,CAAC;IACvB,iBAAiB,EAAE,MAAM,CAAC;IAC1B,mBAAmB,EAAE,MAAM,CAAC;IAC5B,cAAc,EAAE,MAAM,CAAC;IACvB,UAAU,EAAE,MAAM,CAAC;IACnB,aAAa,EAAE,MAAM,CAAC;IACtB,eAAe,EAAE,MAAM,CAAC;IACxB,uBAAuB,EAAE,MAAM,CAAC;IAChC,QAAQ,EAAE,OAAO,CAAC;CACnB;AAED,eAAO,MAAM,YAAY,UAAW,UAAU;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;CA6G5C,CAAC"}
|
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
import { default as React } from 'react';
|
|
2
|
-
import { SkeletonEntity } from '../../../../interfaces/interfaces';
|
|
2
|
+
import { SkeletonEntity, RulesDisplay as RulesDisplayInterface } from '../../../../interfaces/interfaces';
|
|
3
3
|
|
|
4
4
|
export interface SplitApiErrorSkeletonProps {
|
|
5
5
|
entity: SkeletonEntity;
|
|
@@ -10,6 +10,7 @@ export interface SplitApiErrorSkeletonProps {
|
|
|
10
10
|
toggleTryAgain: () => void;
|
|
11
11
|
apiErrorMessage?: string;
|
|
12
12
|
renderPresentedBy: (textColor: string) => React.ReactNode;
|
|
13
|
+
rulesDisplay?: RulesDisplayInterface;
|
|
13
14
|
}
|
|
14
15
|
declare const SplitApiErrorSkeleton: React.FC<SplitApiErrorSkeletonProps>;
|
|
15
16
|
export default SplitApiErrorSkeleton;
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"SplitApiErrorSkeleton.d.ts","sourceRoot":"","sources":["../../../../../src/components/Skeletons/Split/ApiError/SplitApiErrorSkeleton.tsx"],"names":[],"mappings":"AAAA,OAAO,KAAK,MAAM,OAAO,CAAC;AAmB1B,OAAO,EAAE,cAAc,EAAE,MAAM,mCAAmC,CAAC;
|
|
1
|
+
{"version":3,"file":"SplitApiErrorSkeleton.d.ts","sourceRoot":"","sources":["../../../../../src/components/Skeletons/Split/ApiError/SplitApiErrorSkeleton.tsx"],"names":[],"mappings":"AAAA,OAAO,KAAK,MAAM,OAAO,CAAC;AAmB1B,OAAO,EAAE,cAAc,EAAE,YAAY,IAAI,qBAAqB,EAAE,MAAM,mCAAmC,CAAC;AAG1G,MAAM,WAAW,0BAA0B;IACzC,MAAM,EAAE,cAAc,CAAC;IACvB,QAAQ,EAAE,MAAM,CAAC;IACjB,kBAAkB,EAAE,MAAM,CAAC;IAC3B,0BAA0B,CAAC,EAAE,MAAM,CAAC;IACpC,UAAU,EAAE,OAAO,CAAC;IACpB,cAAc,EAAE,MAAM,IAAI,CAAC;IAC3B,eAAe,CAAC,EAAE,MAAM,CAAC;IACzB,iBAAiB,EAAE,CAAC,SAAS,EAAE,MAAM,KAAK,KAAK,CAAC,SAAS,CAAC;IAC1D,YAAY,CAAC,EAAE,qBAAqB,CAAC;CACtC;AAED,QAAA,MAAM,qBAAqB,EAAE,KAAK,CAAC,EAAE,CAAC,0BAA0B,CA4I/D,CAAC;AAEF,eAAe,qBAAqB,CAAC"}
|
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
import { default as React, ReactNode } from 'react';
|
|
2
|
-
import { SkeletonEntity } from '../../../../interfaces/interfaces';
|
|
2
|
+
import { SkeletonEntity, RulesDisplay as RulesDisplayInterface } from '../../../../interfaces/interfaces';
|
|
3
3
|
|
|
4
4
|
/**
|
|
5
5
|
* Props for the SplitScoreStateSkeleton component
|
|
@@ -19,6 +19,8 @@ export interface SplitScoreStateSkeletonProps {
|
|
|
19
19
|
isTabulated?: boolean;
|
|
20
20
|
/** Whether to always show the image section (even on mobile/tablet < 900px) */
|
|
21
21
|
alwaysShowImage?: boolean;
|
|
22
|
+
/** Rules display configuration */
|
|
23
|
+
rulesDisplay?: RulesDisplayInterface;
|
|
22
24
|
}
|
|
23
25
|
/**
|
|
24
26
|
* SplitScoreStateSkeleton Component
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"SplitScoreStateSkeleton.d.ts","sourceRoot":"","sources":["../../../../../src/components/Skeletons/Split/ScoreState/SplitScoreStateSkeleton.tsx"],"names":[],"mappings":"AAAA,OAAO,KAAK,EAAE,EAAE,SAAS,EAAE,MAAM,OAAO,CAAC;AAEzC,OAAO,
|
|
1
|
+
{"version":3,"file":"SplitScoreStateSkeleton.d.ts","sourceRoot":"","sources":["../../../../../src/components/Skeletons/Split/ScoreState/SplitScoreStateSkeleton.tsx"],"names":[],"mappings":"AAAA,OAAO,KAAK,EAAE,EAAE,SAAS,EAAE,MAAM,OAAO,CAAC;AAEzC,OAAO,EACL,cAAc,EACd,YAAY,IAAI,qBAAqB,EACtC,MAAM,mCAAmC,CAAC;AAe3C;;GAEG;AACH,MAAM,WAAW,4BAA4B;IAC3C,wEAAwE;IACxE,MAAM,EAAE,cAAc,CAAC;IACvB,4EAA4E;IAC5E,QAAQ,EAAE,MAAM,CAAC;IACjB,wEAAwE;IACxE,UAAU,EAAE,MAAM,GAAG,IAAI,CAAC;IAC1B,sCAAsC;IACtC,eAAe,EAAE,SAAS,CAAC;IAC3B,0DAA0D;IAC1D,QAAQ,EAAE,SAAS,CAAC;IACpB,kFAAkF;IAClF,WAAW,CAAC,EAAE,OAAO,CAAC;IACtB,+EAA+E;IAC/E,eAAe,CAAC,EAAE,OAAO,CAAC;IAC1B,kCAAkC;IAClC,YAAY,CAAC,EAAE,qBAAqB,CAAC;CACtC;AAED;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;GAkCG;AACH,QAAA,MAAM,uBAAuB,EAAE,KAAK,CAAC,EAAE,CAAC,4BAA4B,CA2EnE,CAAC;AAEF,eAAe,uBAAuB,CAAC"}
|
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
import { default as React, ReactNode } from 'react';
|
|
2
|
-
import { SkeletonEntity } from '../../../../interfaces/interfaces';
|
|
2
|
+
import { SkeletonEntity, RulesDisplay as RulesDisplayInterface } from '../../../../interfaces/interfaces';
|
|
3
3
|
|
|
4
4
|
/**
|
|
5
5
|
* Props for the SplitSignInSkeleton component
|
|
@@ -15,6 +15,8 @@ export interface SplitSignInSkeletonProps {
|
|
|
15
15
|
signInContent: ReactNode;
|
|
16
16
|
/** Branding logo content to render */
|
|
17
17
|
brandingContent: ReactNode;
|
|
18
|
+
/** Rules display configuration */
|
|
19
|
+
rulesDisplay?: RulesDisplayInterface;
|
|
18
20
|
}
|
|
19
21
|
/**
|
|
20
22
|
* SplitSignInSkeleton Component
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"SplitSignInSkeleton.d.ts","sourceRoot":"","sources":["../../../../../src/components/Skeletons/Split/SignIn/SplitSignInSkeleton.tsx"],"names":[],"mappings":"AAAA,OAAO,KAAK,EAAE,EAAE,SAAS,EAAE,MAAM,OAAO,CAAC;AAEzC,OAAO,EAAE,cAAc,EAAE,MAAM,mCAAmC,CAAC;
|
|
1
|
+
{"version":3,"file":"SplitSignInSkeleton.d.ts","sourceRoot":"","sources":["../../../../../src/components/Skeletons/Split/SignIn/SplitSignInSkeleton.tsx"],"names":[],"mappings":"AAAA,OAAO,KAAK,EAAE,EAAE,SAAS,EAAE,MAAM,OAAO,CAAC;AAEzC,OAAO,EAAE,cAAc,EAAE,YAAY,IAAI,qBAAqB,EAAE,MAAM,mCAAmC,CAAC;AAY1G;;GAEG;AACH,MAAM,WAAW,wBAAwB;IACvC,wEAAwE;IACxE,MAAM,EAAE,cAAc,CAAC;IACvB,4EAA4E;IAC5E,QAAQ,EAAE,MAAM,CAAC;IACjB,wEAAwE;IACxE,UAAU,EAAE,MAAM,GAAG,IAAI,CAAC;IAC1B,2CAA2C;IAC3C,aAAa,EAAE,SAAS,CAAC;IACzB,sCAAsC;IACtC,eAAe,EAAE,SAAS,CAAC;IAC3B,kCAAkC;IAClC,YAAY,CAAC,EAAE,qBAAqB,CAAC;CACtC;AAED;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;GA+BG;AACH,QAAA,MAAM,mBAAmB,EAAE,KAAK,CAAC,EAAE,CAAC,wBAAwB,CAqE3D,CAAC;AAEF,eAAe,mBAAmB,CAAC"}
|
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
import { default as React, ReactNode } from 'react';
|
|
2
|
-
import { SkeletonEntity } from '../../../interfaces/interfaces';
|
|
2
|
+
import { SkeletonEntity, RulesDisplay as RulesDisplayInterface } from '../../../interfaces/interfaces';
|
|
3
3
|
|
|
4
4
|
/**
|
|
5
5
|
* Props for the SplitSkeleton component
|
|
@@ -21,6 +21,8 @@ export interface SplitSkeletonProps {
|
|
|
21
21
|
brandingLogo?: string;
|
|
22
22
|
/** Render function for PresentedBy component */
|
|
23
23
|
renderPresentedBy?: (textColor: string) => ReactNode;
|
|
24
|
+
/** Rules display configuration */
|
|
25
|
+
rulesDisplay?: RulesDisplayInterface;
|
|
24
26
|
}
|
|
25
27
|
/**
|
|
26
28
|
* SplitSkeleton Component
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"SplitSkeleton.d.ts","sourceRoot":"","sources":["../../../../src/components/Skeletons/Split/SplitSkeleton.tsx"],"names":[],"mappings":"AAAA,OAAO,KAAK,EAAE,EAAE,SAAS,EAAE,MAAM,OAAO,CAAC;AAiBzC,OAAO,
|
|
1
|
+
{"version":3,"file":"SplitSkeleton.d.ts","sourceRoot":"","sources":["../../../../src/components/Skeletons/Split/SplitSkeleton.tsx"],"names":[],"mappings":"AAAA,OAAO,KAAK,EAAE,EAAE,SAAS,EAAE,MAAM,OAAO,CAAC;AAiBzC,OAAO,EACL,cAAc,EACd,YAAY,IAAI,qBAAqB,EACtC,MAAM,gCAAgC,CAAC;AAGxC;;GAEG;AACH,MAAM,WAAW,kBAAkB;IACjC,wEAAwE;IACxE,MAAM,EAAE,cAAc,CAAC;IACvB,4EAA4E;IAC5E,QAAQ,EAAE,MAAM,CAAC;IACjB,wEAAwE;IACxE,UAAU,EAAE,MAAM,GAAG,IAAI,CAAC;IAC1B,0DAA0D;IAC1D,QAAQ,EAAE,SAAS,CAAC;IACpB,8EAA8E;IAC9E,qBAAqB,CAAC,EAAE,KAAK,CAAC,SAAS,CAAC,cAAc,GAAG,IAAI,CAAC,CAAC;IAC/D,uEAAuE;IACvE,YAAY,CAAC,EAAE,OAAO,CAAC;IACvB,0CAA0C;IAC1C,YAAY,CAAC,EAAE,MAAM,CAAC;IACtB,gDAAgD;IAChD,iBAAiB,CAAC,EAAE,CAAC,SAAS,EAAE,MAAM,KAAK,SAAS,CAAC;IACrD,kCAAkC;IAClC,YAAY,CAAC,EAAE,qBAAqB,CAAC;CACtC;AAED;;;;;;;;;;;;;;;;;;;;;;;;;;;;GA4BG;AACH,QAAA,MAAM,aAAa,EAAE,KAAK,CAAC,EAAE,CAAC,kBAAkB,CAkP/C,CAAC;AAEF,eAAe,aAAa,CAAC"}
|
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
import { default as React } from 'react';
|
|
2
|
-
import { SkeletonEntity } from '../../../../interfaces/interfaces';
|
|
2
|
+
import { SkeletonEntity, RulesDisplay as RulesDisplayInterface } from '../../../../interfaces/interfaces';
|
|
3
3
|
|
|
4
4
|
export interface StandardApiErrorSkeletonProps {
|
|
5
5
|
entity: SkeletonEntity;
|
|
@@ -11,6 +11,7 @@ export interface StandardApiErrorSkeletonProps {
|
|
|
11
11
|
toggleTryAgain: () => void;
|
|
12
12
|
apiErrorMessage?: string;
|
|
13
13
|
renderPresentedBy: (textColor: string) => React.ReactNode;
|
|
14
|
+
rulesDisplay?: RulesDisplayInterface;
|
|
14
15
|
}
|
|
15
16
|
declare const StandardApiErrorSkeleton: React.FC<StandardApiErrorSkeletonProps>;
|
|
16
17
|
export default StandardApiErrorSkeleton;
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"StandardApiErrorSkeleton.d.ts","sourceRoot":"","sources":["../../../../../src/components/Skeletons/Standard/ApiError/StandardApiErrorSkeleton.tsx"],"names":[],"mappings":"AAeA,OAAO,KAAK,MAAM,OAAO,CAAC;AAI1B,OAAO,EAAE,cAAc,EAAE,MAAM,mCAAmC,CAAC;
|
|
1
|
+
{"version":3,"file":"StandardApiErrorSkeleton.d.ts","sourceRoot":"","sources":["../../../../../src/components/Skeletons/Standard/ApiError/StandardApiErrorSkeleton.tsx"],"names":[],"mappings":"AAeA,OAAO,KAAK,MAAM,OAAO,CAAC;AAI1B,OAAO,EAAE,cAAc,EAAE,YAAY,IAAI,qBAAqB,EAAE,MAAM,mCAAmC,CAAC;AAG1G,MAAM,WAAW,6BAA6B;IAC5C,MAAM,EAAE,cAAc,CAAC;IACvB,QAAQ,EAAE,MAAM,CAAC;IACjB,kBAAkB,EAAE,MAAM,CAAC;IAC3B,0BAA0B,CAAC,EAAE,MAAM,CAAC;IACpC,aAAa,CAAC,EAAE,MAAM,GAAG,OAAO,CAAC;IACjC,UAAU,EAAE,OAAO,CAAC;IACpB,cAAc,EAAE,MAAM,IAAI,CAAC;IAC3B,eAAe,CAAC,EAAE,MAAM,CAAC;IACzB,iBAAiB,EAAE,CAAC,SAAS,EAAE,MAAM,KAAK,KAAK,CAAC,SAAS,CAAC;IAC1D,YAAY,CAAC,EAAE,qBAAqB,CAAC;CACtC;AAED,QAAA,MAAM,wBAAwB,EAAE,KAAK,CAAC,EAAE,CAAC,6BAA6B,CAoOrE,CAAC;AAEF,eAAe,wBAAwB,CAAC"}
|
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
import { default as React, ReactNode } from 'react';
|
|
2
|
-
import { SkeletonEntity } from '../../../../interfaces/interfaces';
|
|
2
|
+
import { SkeletonEntity, RulesDisplay as RulesDisplayInterface } from '../../../../interfaces/interfaces';
|
|
3
3
|
|
|
4
4
|
/**
|
|
5
5
|
* Props for the StandardSignInSkeleton component
|
|
@@ -17,6 +17,8 @@ export interface StandardSignInSkeletonProps {
|
|
|
17
17
|
signInContent: ReactNode;
|
|
18
18
|
/** Branding logo content to render within the headline area */
|
|
19
19
|
brandingContent: ReactNode;
|
|
20
|
+
/** Rules display configuration */
|
|
21
|
+
rulesDisplay?: RulesDisplayInterface;
|
|
20
22
|
}
|
|
21
23
|
/**
|
|
22
24
|
* StandardSignInSkeleton Component
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"StandardSignInSkeleton.d.ts","sourceRoot":"","sources":["../../../../../src/components/Skeletons/Standard/SignIn/StandardSignInSkeleton.tsx"],"names":[],"mappings":"AAAA,OAAO,KAAK,EAAE,EAAE,SAAS,EAAE,MAAM,OAAO,CAAC;AAEzC,OAAO,EAAE,cAAc,EAAE,MAAM,mCAAmC,CAAC;
|
|
1
|
+
{"version":3,"file":"StandardSignInSkeleton.d.ts","sourceRoot":"","sources":["../../../../../src/components/Skeletons/Standard/SignIn/StandardSignInSkeleton.tsx"],"names":[],"mappings":"AAAA,OAAO,KAAK,EAAE,EAAE,SAAS,EAAE,MAAM,OAAO,CAAC;AAEzC,OAAO,EAAE,cAAc,EAAE,YAAY,IAAI,qBAAqB,EAAE,MAAM,mCAAmC,CAAC;AAmB1G;;GAEG;AACH,MAAM,WAAW,2BAA2B;IAC1C,wEAAwE;IACxE,MAAM,EAAE,cAAc,CAAC;IACvB,4EAA4E;IAC5E,QAAQ,EAAE,MAAM,CAAC;IACjB,wEAAwE;IACxE,UAAU,EAAE,MAAM,GAAG,IAAI,CAAC;IAC1B,0CAA0C;IAC1C,aAAa,CAAC,EAAE,MAAM,GAAG,OAAO,CAAC;IACjC,oEAAoE;IACpE,aAAa,EAAE,SAAS,CAAC;IACzB,+DAA+D;IAC/D,eAAe,EAAE,SAAS,CAAC;IAC3B,kCAAkC;IAClC,YAAY,CAAC,EAAE,qBAAqB,CAAC;CACtC;AAED;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;GAiCG;AACH,QAAA,MAAM,sBAAsB,EAAE,KAAK,CAAC,EAAE,CAAC,2BAA2B,CAiNjE,CAAC;AAEF,eAAe,sBAAsB,CAAC"}
|
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
import { default as React, ReactNode } from 'react';
|
|
2
|
-
import { SkeletonEntity } from '../../../interfaces/interfaces';
|
|
2
|
+
import { SkeletonEntity, RulesDisplay as RulesDisplayInterface } from '../../../interfaces/interfaces';
|
|
3
3
|
|
|
4
4
|
/**
|
|
5
5
|
* Props for the StandardSkeleton component
|
|
@@ -21,6 +21,8 @@ export interface StandardSkeletonProps {
|
|
|
21
21
|
hasEmbedCode?: boolean;
|
|
22
22
|
/** Optional filter screen content to render inside headlines (for classic-quiz-play and poll-vote) */
|
|
23
23
|
filterScreenContent?: ReactNode;
|
|
24
|
+
/** Optional rules display configuration */
|
|
25
|
+
rulesDisplay?: RulesDisplayInterface;
|
|
24
26
|
}
|
|
25
27
|
/**
|
|
26
28
|
* StandardSkeleton Component
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"StandardSkeleton.d.ts","sourceRoot":"","sources":["../../../../src/components/Skeletons/Standard/StandardSkeleton.tsx"],"names":[],"mappings":"AAAA,OAAO,KAAK,EAAE,EAAE,SAAS,EAAE,MAAM,OAAO,CAAC;AAgBzC,OAAO,
|
|
1
|
+
{"version":3,"file":"StandardSkeleton.d.ts","sourceRoot":"","sources":["../../../../src/components/Skeletons/Standard/StandardSkeleton.tsx"],"names":[],"mappings":"AAAA,OAAO,KAAK,EAAE,EAAE,SAAS,EAAE,MAAM,OAAO,CAAC;AAgBzC,OAAO,EACL,cAAc,EACd,YAAY,IAAI,qBAAqB,EACtC,MAAM,gCAAgC,CAAC;AAGxC;;GAEG;AACH,MAAM,WAAW,qBAAqB;IACpC,wEAAwE;IACxE,MAAM,EAAE,cAAc,CAAC;IACvB,4EAA4E;IAC5E,QAAQ,EAAE,MAAM,CAAC;IACjB,wEAAwE;IACxE,UAAU,EAAE,MAAM,GAAG,IAAI,CAAC;IAC1B,0CAA0C;IAC1C,aAAa,CAAC,EAAE,MAAM,GAAG,OAAO,CAAC;IACjC,0DAA0D;IAC1D,QAAQ,EAAE,SAAS,CAAC;IACpB,8EAA8E;IAC9E,qBAAqB,CAAC,EAAE,KAAK,CAAC,SAAS,CAAC,cAAc,CAAC,CAAC;IACxD,uEAAuE;IACvE,YAAY,CAAC,EAAE,OAAO,CAAC;IACvB,sGAAsG;IACtG,mBAAmB,CAAC,EAAE,SAAS,CAAC;IAChC,2CAA2C;IAC3C,YAAY,CAAC,EAAE,qBAAqB,CAAC;CACtC;AAED;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;GA+BG;AACH,QAAA,MAAM,gBAAgB,EAAE,KAAK,CAAC,EAAE,CAAC,qBAAqB,CA8SrD,CAAC;AAEF,eAAe,gBAAgB,CAAC"}
|
package/index.d.ts
CHANGED
|
@@ -5,6 +5,7 @@ export * from './types/types';
|
|
|
5
5
|
export * from './enums/enums';
|
|
6
6
|
export * from './components/Spinner';
|
|
7
7
|
export { default as AdditionalCTA } from './components/AdditionalCTA';
|
|
8
|
+
export { default as Rules } from './components/Rules';
|
|
8
9
|
export { default as CollectLeadForm } from './components/Leads/CollectLeadForm';
|
|
9
10
|
export { default as StandardSkeleton } from './components/Skeletons/Standard/StandardSkeleton';
|
|
10
11
|
export { default as SplitSkeleton } from './components/Skeletons/Split/SplitSkeleton';
|
|
@@ -21,6 +22,12 @@ export { default as StandardApiErrorSkeleton } from './components/Skeletons/Stan
|
|
|
21
22
|
export { default as SplitApiErrorSkeleton } from './components/Skeletons/Split/ApiError/SplitApiErrorSkeleton';
|
|
22
23
|
export { default as OverlayApiErrorSkeleton } from './components/Skeletons/Overlay/ApiError/OverlayApiErrorSkeleton';
|
|
23
24
|
export { default as NotFoundSkeleton } from './components/Skeletons/NotFoundSkeleton';
|
|
25
|
+
export { default as StandardLeadAfterCollection } from './components/LeadCollection/StandardLeadAfterCollection';
|
|
26
|
+
export type { StandardLeadAfterCollectionProps } from './components/LeadCollection/StandardLeadAfterCollection';
|
|
27
|
+
export { default as SplitLeadAfterCollection } from './components/LeadCollection/SplitLeadAfterCollection';
|
|
28
|
+
export type { SplitLeadAfterCollectionProps } from './components/LeadCollection/SplitLeadAfterCollection';
|
|
29
|
+
export { default as OverlayLeadAfterCollection } from './components/LeadCollection/OverlayLeadAfterCollection';
|
|
30
|
+
export type { OverlayLeadAfterCollectionProps } from './components/LeadCollection/OverlayLeadAfterCollection';
|
|
24
31
|
export * from './hooks/hooks';
|
|
25
32
|
export * from './providers/providers';
|
|
26
33
|
//# 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":"AAAA,cAAc,uBAAuB,CAAC;AACtC,cAAc,uBAAuB,CAAC;AACtC,cAAc,yBAAyB,CAAC;AACxC,cAAc,eAAe,CAAC;AAC9B,cAAc,eAAe,CAAC;AAC9B,cAAc,sBAAsB,CAAC;AACrC,OAAO,EAAE,OAAO,IAAI,aAAa,EAAE,MAAM,4BAA4B,CAAC;AACtE,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,cAAc,eAAe,CAAC;AAC9B,cAAc,uBAAuB,CAAC"}
|
|
1
|
+
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../src/index.ts"],"names":[],"mappings":"AAAA,cAAc,uBAAuB,CAAC;AACtC,cAAc,uBAAuB,CAAC;AACtC,cAAc,yBAAyB,CAAC;AACxC,cAAc,eAAe,CAAC;AAC9B,cAAc,eAAe,CAAC;AAC9B,cAAc,sBAAsB,CAAC;AACrC,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,cAAc,eAAe,CAAC;AAC9B,cAAc,uBAAuB,CAAC"}
|