fansunited-frontend-components 0.0.31-RC4 → 0.0.31-RC6
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/ClassicQuizPlay.js +4849 -0
- package/CollectLead.js +1255 -0
- package/EventGamePlay.js +7597 -0
- package/MatchQuizPlay.js +11004 -0
- package/PersonalityQuizPlay.js +39514 -0
- package/PollVote.js +4169 -0
- package/chunks/CollectLeadForm-DtmR2Vuf.js +844 -0
- package/chunks/Error-DhQL89pn.js +120 -0
- package/chunks/NotFoundSkeleton-BYJTzYJR.js +2425 -0
- package/chunks/OverlayLeadAfterCollection-DnqztPJ5.js +899 -0
- package/chunks/OverlayScoreStateSkeleton-C9FUhcnd.js +147 -0
- package/chunks/Portal-BWqqFvVm.js +13823 -0
- package/index.js +14 -0
- package/package.json +37 -4
- package/components.js +0 -86783
package/index.js
ADDED
|
@@ -0,0 +1,14 @@
|
|
|
1
|
+
import { ClassicQuizPlay as e } from "./ClassicQuizPlay.js";
|
|
2
|
+
import { PollVote as l } from "./PollVote.js";
|
|
3
|
+
import { CollectLead as m } from "./CollectLead.js";
|
|
4
|
+
import { PersonalityQuizPlay as p } from "./PersonalityQuizPlay.js";
|
|
5
|
+
import { MatchQuizPlay as P } from "./MatchQuizPlay.js";
|
|
6
|
+
import { EventGamePlay as y } from "./EventGamePlay.js";
|
|
7
|
+
export {
|
|
8
|
+
e as ClassicQuizPlay,
|
|
9
|
+
m as CollectLead,
|
|
10
|
+
y as EventGamePlay,
|
|
11
|
+
P as MatchQuizPlay,
|
|
12
|
+
p as PersonalityQuizPlay,
|
|
13
|
+
l as PollVote
|
|
14
|
+
};
|
package/package.json
CHANGED
|
@@ -1,11 +1,44 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "fansunited-frontend-components",
|
|
3
|
-
"version": "0.0.31-
|
|
3
|
+
"version": "0.0.31-RC6",
|
|
4
4
|
"description": "Various user centric components for Fans United features",
|
|
5
|
-
"
|
|
6
|
-
"
|
|
5
|
+
"type": "module",
|
|
6
|
+
"main": "index.js",
|
|
7
|
+
"module": "index.js",
|
|
8
|
+
"types": "index.d.ts",
|
|
9
|
+
"sideEffects": false,
|
|
7
10
|
"author": "Fans United",
|
|
8
11
|
"homepage": "https://fansunitedmedia.com/",
|
|
12
|
+
"exports": {
|
|
13
|
+
".": {
|
|
14
|
+
"import": "./index.js",
|
|
15
|
+
"types": "./index.d.ts"
|
|
16
|
+
},
|
|
17
|
+
"./ClassicQuizPlay": {
|
|
18
|
+
"import": "./ClassicQuizPlay.js",
|
|
19
|
+
"types": "./ClassicQuizPlay.d.ts"
|
|
20
|
+
},
|
|
21
|
+
"./PollVote": {
|
|
22
|
+
"import": "./PollVote.js",
|
|
23
|
+
"types": "./PollVote.d.ts"
|
|
24
|
+
},
|
|
25
|
+
"./CollectLead": {
|
|
26
|
+
"import": "./CollectLead.js",
|
|
27
|
+
"types": "./CollectLead.d.ts"
|
|
28
|
+
},
|
|
29
|
+
"./PersonalityQuizPlay": {
|
|
30
|
+
"import": "./PersonalityQuizPlay.js",
|
|
31
|
+
"types": "./PersonalityQuizPlay.d.ts"
|
|
32
|
+
},
|
|
33
|
+
"./MatchQuizPlay": {
|
|
34
|
+
"import": "./MatchQuizPlay.js",
|
|
35
|
+
"types": "./MatchQuizPlay.d.ts"
|
|
36
|
+
},
|
|
37
|
+
"./EventGamePlay": {
|
|
38
|
+
"import": "./EventGamePlay.js",
|
|
39
|
+
"types": "./EventGamePlay.d.ts"
|
|
40
|
+
}
|
|
41
|
+
},
|
|
9
42
|
"dependencies": {
|
|
10
43
|
"fansunited-frontend-core": "latest",
|
|
11
44
|
"react": ">=16.8.0",
|
|
@@ -26,4 +59,4 @@
|
|
|
26
59
|
"react": ">=16.8.0",
|
|
27
60
|
"react-dom": ">=16.8.0"
|
|
28
61
|
}
|
|
29
|
-
}
|
|
62
|
+
}
|