@openeventkit/event-site 2.1.55 → 2.1.56
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.1.
|
|
4
|
+
"version": "2.1.56",
|
|
5
5
|
"author": "Tipit LLC",
|
|
6
6
|
"dependencies": {
|
|
7
7
|
"@emotion/server": "^11.11.0",
|
|
@@ -87,7 +87,7 @@
|
|
|
87
87
|
"markdown-it": "^12.0.0",
|
|
88
88
|
"moment": "^2.27.0",
|
|
89
89
|
"moment-timezone": "^0.5.31",
|
|
90
|
-
"my-orders-tickets-widget": "1.0.
|
|
90
|
+
"my-orders-tickets-widget": "1.0.12",
|
|
91
91
|
"object.assign": "^4.1.5",
|
|
92
92
|
"openstack-uicore-foundation": "4.2.30",
|
|
93
93
|
"path-browserify": "^1.0.1",
|
|
@@ -136,7 +136,7 @@
|
|
|
136
136
|
"stream-browserify": "^3.0.0",
|
|
137
137
|
"stream-chat": "^2.7.2",
|
|
138
138
|
"stream-chat-react": "3.1.7",
|
|
139
|
-
"summit-registration-lite": "7.0.
|
|
139
|
+
"summit-registration-lite": "7.0.4",
|
|
140
140
|
"superagent": "8.0.9",
|
|
141
141
|
"sweetalert2": "^11.11.1",
|
|
142
142
|
"upcoming-events-widget": "3.0.7",
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"favicon":{"asset":"icon.png"},"widgets":{"chat":{"enabled":true,"showQA":false,"showHelp":false,"defaultScope":"page"},"schedule":{"allowClick":true}},"identityProviderButtons":[{"buttonColor":"#082238","providerLabel":"Continue with FNid","providerLogo":"logo_fn.svg","providerLogoSize":27},{"buttonColor":"#0A66C2","providerLabel":"Sign in with LinkedIn","providerParam":"linkedin","providerLogo":"logo_linkedin.svg","providerLogoSize":18},{"buttonColor":"#000000","providerLabel":"Sign in with Apple","providerParam":"apple","providerLogoSize":17,"providerLogo":"logo_apple.svg"},{"buttonColor":"#1877F2","providerLabel":"Login with Facebook","providerParam":"facebook","providerLogo":"logo_facebook.svg","providerLogoSize":20}],"maintenanceMode":{"enabled":false,"title":"Site under maintenance","subtitle":"Please reload page shortly"},"registration":{"registrationMode":"STANDALONE"},"staticJsonFilesBuildTime":[{"file":"src/data/summit.json","build_time":
|
|
1
|
+
{"favicon":{"asset":"icon.png"},"widgets":{"chat":{"enabled":true,"showQA":false,"showHelp":false,"defaultScope":"page"},"schedule":{"allowClick":true}},"identityProviderButtons":[{"buttonColor":"#082238","providerLabel":"Continue with FNid","providerLogo":"logo_fn.svg","providerLogoSize":27},{"buttonColor":"#0A66C2","providerLabel":"Sign in with LinkedIn","providerParam":"linkedin","providerLogo":"logo_linkedin.svg","providerLogoSize":18},{"buttonColor":"#000000","providerLabel":"Sign in with Apple","providerParam":"apple","providerLogoSize":17,"providerLogo":"logo_apple.svg"},{"buttonColor":"#1877F2","providerLabel":"Login with Facebook","providerParam":"facebook","providerLogo":"logo_facebook.svg","providerLogoSize":20}],"maintenanceMode":{"enabled":false,"title":"Site under maintenance","subtitle":"Please reload page shortly"},"registration":{"registrationMode":"STANDALONE"},"staticJsonFilesBuildTime":[{"file":"src/data/summit.json","build_time":1780429514492},{"file":"src/data/events.json","build_time":1780429530003},{"file":"src/data/events.idx.json","build_time":1780429530208},{"file":"src/data/speakers.json","build_time":1780429538323},{"file":"src/data/speakers.idx.json","build_time":1780429538334},{"file":"src/content/sponsors.json","build_time":1780429543560},{"file":"src/data/voteable-presentations.json","build_time":1780429543909}],"lastBuild":1780429543910}
|
|
@@ -26,7 +26,6 @@ export const MARKETING_SETTINGS_KEYS = {
|
|
|
26
26
|
regLiteOrderComplete2ndParagraph: "REG_LITE_ORDER_COMPLETE_STEP_2ND_PARAGRAPH",
|
|
27
27
|
regLiteOrderCompleteButton: "REG_LITE_ORDER_COMPLETE_BTN_LABEL",
|
|
28
28
|
regLiteNoAllowedTicketsMessage: "REG_LITE_NO_ALLOWED_TICKETS_MESSAGE",
|
|
29
|
-
regLiteNoTicketsAvailableMessage: "REG_LITE_NO_TICKETS_AVAILABLE_MESSAGE",
|
|
30
29
|
// Color settings (from scssUtils/defaults)
|
|
31
30
|
colorAccent: "color_accent",
|
|
32
31
|
colorAlerts: "color_alerts",
|
|
@@ -125,7 +125,6 @@ const useRegistrationWidgetProps = ({
|
|
|
125
125
|
const orderComplete2ndParagraph = getSettingByKey(MARKETING_SETTINGS_KEYS.regLiteOrderComplete2ndParagraph);
|
|
126
126
|
const orderCompleteButton = getSettingByKey(MARKETING_SETTINGS_KEYS.regLiteOrderCompleteButton);
|
|
127
127
|
const noAllowedTicketsMessage = getSettingByKey(MARKETING_SETTINGS_KEYS.regLiteNoAllowedTicketsMessage);
|
|
128
|
-
const noTicketsAvailableMessage = getSettingByKey(MARKETING_SETTINGS_KEYS.regLiteNoTicketsAvailableMessage);
|
|
129
128
|
|
|
130
129
|
const siteSettings = useSiteSettings();
|
|
131
130
|
const paymentSettings = usePaymentSettings();
|
|
@@ -191,7 +190,6 @@ const useRegistrationWidgetProps = ({
|
|
|
191
190
|
orderComplete2ndParagraph,
|
|
192
191
|
orderCompleteButton,
|
|
193
192
|
noAllowedTicketsMessage,
|
|
194
|
-
noTicketsAvailableMessage,
|
|
195
193
|
showCompanyInput,
|
|
196
194
|
showCompanyInputDefaultOptions,
|
|
197
195
|
idpLogoLight: siteSettings?.idpLogo?.idpLogoLight?.publicURL,
|