@openeventkit/event-site 2.0.9 → 2.0.11
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.11",
|
|
5
5
|
"author": "Tipit LLC",
|
|
6
6
|
"dependencies": {
|
|
7
7
|
"@mui/base": "^5.0.0-alpha.114",
|
|
@@ -65,8 +65,8 @@
|
|
|
65
65
|
"immutability-helper": "2.9.1",
|
|
66
66
|
"immutable": "^3.7.6",
|
|
67
67
|
"jsdom": "^16.2.2",
|
|
68
|
-
"lite-schedule-widget": "
|
|
69
|
-
"live-event-widget": "
|
|
68
|
+
"lite-schedule-widget": "3.0.1",
|
|
69
|
+
"live-event-widget": "4.0.0",
|
|
70
70
|
"lodash": "^4.17.19",
|
|
71
71
|
"lz-string": "^1.4.4",
|
|
72
72
|
"markdown-it": "^12.0.0",
|
|
@@ -21,6 +21,7 @@ import { DefaultScrollBehaviour as ScrollBehaviour } from '@utils/scroll';
|
|
|
21
21
|
|
|
22
22
|
import './ticket-popup-edit-details-form.scss';
|
|
23
23
|
import { useTicketAssignedContext } from '../../../context/TicketAssignedContext';
|
|
24
|
+
import styles from "../../../../../styles/extra-questions.module.scss";
|
|
24
25
|
|
|
25
26
|
const noOpFn = () => {};
|
|
26
27
|
|
|
@@ -343,7 +344,7 @@ export const TicketPopupEditDetailsForm = ({
|
|
|
343
344
|
allowExtraQuestionsEdit={canEditTicketData}
|
|
344
345
|
questionContainerClassName={`columns is-multiline extra-question pt-3`}
|
|
345
346
|
questionLabelContainerClassName={'column is-full pb-0'}
|
|
346
|
-
questionControlContainerClassName={
|
|
347
|
+
questionControlContainerClassName={`column is-full pt-0 ${styles.controlWrapper}`}
|
|
347
348
|
shouldScroll2FirstError={false}
|
|
348
349
|
onError={handleExtraQuestionError}
|
|
349
350
|
/>
|
|
@@ -68,4 +68,10 @@
|
|
|
68
68
|
color: red;
|
|
69
69
|
font-size: 1em;
|
|
70
70
|
font-weight: 700;
|
|
71
|
+
}
|
|
72
|
+
|
|
73
|
+
.controlWrapper > div > div[class$="container"] > div[class$="control"] {
|
|
74
|
+
background-color: var(--color_input_background_color) !important;;
|
|
75
|
+
color: var(--color_input_text_color) !important;
|
|
76
|
+
border-color: var(--color_input_border_color) !important;
|
|
71
77
|
}
|
|
@@ -226,7 +226,7 @@ export const ExtraQuestionsPageTemplate = ({ user, summit, extraQuestions, saveA
|
|
|
226
226
|
allowExtraQuestionsEdit={summit.allow_update_attendee_extra_questions}
|
|
227
227
|
questionContainerClassName={`columns is-multiline ${styles.extraQuestion} pt-3`}
|
|
228
228
|
questionLabelContainerClassName={'column is-full pb-0'}
|
|
229
|
-
questionControlContainerClassName={
|
|
229
|
+
questionControlContainerClassName={`column is-full pt-0 ${styles.controlWrapper}`}
|
|
230
230
|
shouldScroll2FirstError={false}
|
|
231
231
|
onError={handleExtraQuestionError}
|
|
232
232
|
/>
|