@openeventkit/event-site 1.0.19 → 1.0.21
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": "1.0.
|
|
4
|
+
"version": "1.0.21",
|
|
5
5
|
"author": "Tipit LLC",
|
|
6
6
|
"dependencies": {
|
|
7
7
|
"@mui/base": "^5.0.0-alpha.114",
|
|
@@ -41,7 +41,7 @@
|
|
|
41
41
|
"font-awesome": "^4.7.0",
|
|
42
42
|
"formik": "^2.2.9",
|
|
43
43
|
"fs-extra": "^9.0.1",
|
|
44
|
-
"full-schedule-widget": "2.0.
|
|
44
|
+
"full-schedule-widget": "^2.0.28",
|
|
45
45
|
"gatsby": "^5.8.1",
|
|
46
46
|
"gatsby-alias-imports": "^1.0.6",
|
|
47
47
|
"gatsby-plugin-image": "^3.8.0",
|
|
@@ -115,6 +115,7 @@ const RegistrationLiteComponent = ({
|
|
|
115
115
|
const orderComplete1stParagraph = getSettingByKey(MARKETING_SETTINGS_KEYS.regLiteOrderComplete1stParagraph)
|
|
116
116
|
const orderComplete2ndParagraph = getSettingByKey(MARKETING_SETTINGS_KEYS.regLiteOrderComplete2ndParagraph)
|
|
117
117
|
const orderCompleteButton = getSettingByKey(MARKETING_SETTINGS_KEYS.regLiteOrderCompleteButton)
|
|
118
|
+
const noAllowedTicketsMessage = getSettingByKey(MARKETING_SETTINGS_KEYS.regLiteNoAllowedTicketsMessage);
|
|
118
119
|
|
|
119
120
|
const widgetProps = {
|
|
120
121
|
apiBaseUrl: getEnvVariable(SUMMIT_API_BASE_URL),
|
|
@@ -182,6 +183,7 @@ const RegistrationLiteComponent = ({
|
|
|
182
183
|
orderComplete1stParagraph: orderComplete1stParagraph,
|
|
183
184
|
orderComplete2ndParagraph: orderComplete2ndParagraph,
|
|
184
185
|
orderCompleteButton: orderCompleteButton,
|
|
186
|
+
noAllowedTicketsMessage: noAllowedTicketsMessage
|
|
185
187
|
};
|
|
186
188
|
|
|
187
189
|
const { registerButton } = marketingPageSettings.hero.buttons;
|
|
@@ -18,6 +18,7 @@ export const MARKETING_SETTINGS_KEYS = {
|
|
|
18
18
|
regLiteOrderComplete1stParagraph: "REG_LITE_ORDER_COMPLETE_STEP_1ST_PARAGRAPH",
|
|
19
19
|
regLiteOrderComplete2ndParagraph: "REG_LITE_ORDER_COMPLETE_STEP_2ND_PARAGRAPH",
|
|
20
20
|
regLiteOrderCompleteButton: "REG_LITE_ORDER_COMPLETE_BTN_LABEL",
|
|
21
|
+
regLiteNoAllowedTicketsMessage: "REG_LITE_NO_ALLOWED_TICKETS_MESSAGE",
|
|
21
22
|
}
|
|
22
23
|
|
|
23
24
|
const marketingSettingsQuery = graphql`
|