@openeventkit/event-site 2.0.101 → 2.0.103
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/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@openeventkit/event-site",
|
|
3
3
|
"description": "Event Site",
|
|
4
|
-
"version": "2.0.
|
|
4
|
+
"version": "2.0.103",
|
|
5
5
|
"author": "Tipit LLC",
|
|
6
6
|
"dependencies": {
|
|
7
7
|
"@mui/base": "^5.0.0-alpha.114",
|
|
@@ -43,7 +43,7 @@
|
|
|
43
43
|
"final-form": "4.20.7",
|
|
44
44
|
"font-awesome": "^4.7.0",
|
|
45
45
|
"formik": "^2.2.9",
|
|
46
|
-
"full-schedule-widget": "3.0.
|
|
46
|
+
"full-schedule-widget": "3.0.5",
|
|
47
47
|
"gatsby": "^5.8.1",
|
|
48
48
|
"gatsby-alias-imports": "^1.0.6",
|
|
49
49
|
"gatsby-plugin-image": "^3.8.0",
|
package/src/components/Link.js
CHANGED
|
@@ -24,8 +24,9 @@ const Link = ({ children, to, activeClassName, partiallyActive, ...other }) => {
|
|
|
24
24
|
);
|
|
25
25
|
}
|
|
26
26
|
if (email) {
|
|
27
|
+
const href = /^mailto:/.test(to) ? to : `mailto:${to}`;
|
|
27
28
|
return (
|
|
28
|
-
<a href={
|
|
29
|
+
<a href={href} {...other}>
|
|
29
30
|
{children}
|
|
30
31
|
</a>
|
|
31
32
|
);
|
|
@@ -37,4 +38,4 @@ const Link = ({ children, to, activeClassName, partiallyActive, ...other }) => {
|
|
|
37
38
|
);
|
|
38
39
|
};
|
|
39
40
|
|
|
40
|
-
export default Link;
|
|
41
|
+
export default Link;
|
|
@@ -1 +1,45 @@
|
|
|
1
|
-
{
|
|
1
|
+
{
|
|
2
|
+
"widgets": {
|
|
3
|
+
"chat": {
|
|
4
|
+
"enabled": true,
|
|
5
|
+
"showQA": false,
|
|
6
|
+
"showHelp": false,
|
|
7
|
+
"defaultScope": "page"
|
|
8
|
+
},
|
|
9
|
+
"schedule": {
|
|
10
|
+
"allowClick": true
|
|
11
|
+
}
|
|
12
|
+
},
|
|
13
|
+
"favicon": {
|
|
14
|
+
"asset": "icon.png"
|
|
15
|
+
},
|
|
16
|
+
"identityProviderButtons": [
|
|
17
|
+
{
|
|
18
|
+
"buttonColor": "#082238",
|
|
19
|
+
"providerLabel": "Continue with FNid",
|
|
20
|
+
"providerLogo": "logo_fn.svg",
|
|
21
|
+
"providerLogoSize": 27
|
|
22
|
+
},
|
|
23
|
+
{
|
|
24
|
+
"buttonColor": "#0A66C2",
|
|
25
|
+
"providerLabel": "Sign in with LinkedIn",
|
|
26
|
+
"providerParam": "linkedin",
|
|
27
|
+
"providerLogo": "logo_linkedin.svg",
|
|
28
|
+
"providerLogoSize": 18
|
|
29
|
+
},
|
|
30
|
+
{
|
|
31
|
+
"buttonColor": "#000000",
|
|
32
|
+
"providerLabel": "Sign in with Apple",
|
|
33
|
+
"providerParam": "apple",
|
|
34
|
+
"providerLogoSize": 17,
|
|
35
|
+
"providerLogo": "logo_apple.svg"
|
|
36
|
+
},
|
|
37
|
+
{
|
|
38
|
+
"buttonColor": "#1877F2",
|
|
39
|
+
"providerLabel": "Login with Facebook",
|
|
40
|
+
"providerParam": "facebook",
|
|
41
|
+
"providerLogo": "logo_facebook.svg",
|
|
42
|
+
"providerLogoSize": 20
|
|
43
|
+
}
|
|
44
|
+
]
|
|
45
|
+
}
|