@instructure/quiz-core 17.58.2-rc.4 → 17.58.2-rc.5
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/es/moderating/components/events/Event.js +1 -1
- package/es/moderating/components/resources/AccommodationsModal/index.js +1 -1
- package/es/moderating/components/resources/ModerateTable/presenter.js +2 -2
- package/es/moderating/components/resources/ModerateTableRow/index.js +1 -1
- package/lib/moderating/components/events/Event.js +1 -1
- package/lib/moderating/components/resources/AccommodationsModal/index.js +1 -1
- package/lib/moderating/components/resources/ModerateTable/presenter.js +2 -2
- package/lib/moderating/components/resources/ModerateTableRow/index.js +1 -1
- package/package.json +9 -9
|
@@ -24,7 +24,7 @@ export var Event = /*#__PURE__*/function (_Component) {
|
|
|
24
24
|
|
|
25
25
|
_createClass(Event, [{
|
|
26
26
|
key: "renderResponseEvent",
|
|
27
|
-
//This ugly hack is necessary because the InstUI v7 Table.Body only renders components with name 'Row'.
|
|
27
|
+
// This ugly hack is necessary because the InstUI v7 Table.Body only renders components with name 'Row'.
|
|
28
28
|
value: function renderResponseEvent(event) {
|
|
29
29
|
var item = event.getItem();
|
|
30
30
|
|
|
@@ -135,7 +135,7 @@ AccommodationModal.propTypes = {
|
|
|
135
135
|
onSubmit: PropTypes.func,
|
|
136
136
|
onDismiss: PropTypes.func,
|
|
137
137
|
mountNode: PropTypes.string,
|
|
138
|
-
//this is just to fix chromatic
|
|
138
|
+
// this is just to fix chromatic
|
|
139
139
|
children: PropTypes.oneOfType([PropTypes.node, PropTypes.arrayOf(PropTypes.node)])
|
|
140
140
|
};
|
|
141
141
|
AccommodationModal.defaultProps = {
|
|
@@ -58,10 +58,10 @@ export var ModerateTable = (_dec = themeable(theme, styles), _dec(_class = (_tem
|
|
|
58
58
|
|
|
59
59
|
_this = _super.call.apply(_super, [this].concat(args));
|
|
60
60
|
_this.state = {
|
|
61
|
-
//To support voiceover when the table changes
|
|
61
|
+
// To support voiceover when the table changes
|
|
62
62
|
moderatePanelIterations: 0,
|
|
63
63
|
selectedStudent: null,
|
|
64
|
-
//To display the spinner while manually submitted quiz sessions are being graded
|
|
64
|
+
// To display the spinner while manually submitted quiz sessions are being graded
|
|
65
65
|
isWaiting: false
|
|
66
66
|
};
|
|
67
67
|
|
|
@@ -10,7 +10,7 @@ export function mapStateToProps(state, ownProps) {
|
|
|
10
10
|
quizSessions: quizSessions
|
|
11
11
|
};
|
|
12
12
|
}
|
|
13
|
-
var connectedModerateTableRow = connect(mapStateToProps)(ModerateTableRow); //This ugly hack is necessary because the InstUI v7 Table.Body only renders components with name 'Row'.
|
|
13
|
+
var connectedModerateTableRow = connect(mapStateToProps)(ModerateTableRow); // This ugly hack is necessary because the InstUI v7 Table.Body only renders components with name 'Row'.
|
|
14
14
|
|
|
15
15
|
connectedModerateTableRow.displayName = 'Row';
|
|
16
16
|
export default connectedModerateTableRow;
|
|
@@ -47,7 +47,7 @@ var Event = /*#__PURE__*/function (_Component) {
|
|
|
47
47
|
|
|
48
48
|
(0, _createClass2.default)(Event, [{
|
|
49
49
|
key: "renderResponseEvent",
|
|
50
|
-
//This ugly hack is necessary because the InstUI v7 Table.Body only renders components with name 'Row'.
|
|
50
|
+
// This ugly hack is necessary because the InstUI v7 Table.Body only renders components with name 'Row'.
|
|
51
51
|
value: function renderResponseEvent(event) {
|
|
52
52
|
var item = event.getItem();
|
|
53
53
|
|
|
@@ -161,7 +161,7 @@ AccommodationModal.propTypes = {
|
|
|
161
161
|
onSubmit: _propTypes.default.func,
|
|
162
162
|
onDismiss: _propTypes.default.func,
|
|
163
163
|
mountNode: _propTypes.default.string,
|
|
164
|
-
//this is just to fix chromatic
|
|
164
|
+
// this is just to fix chromatic
|
|
165
165
|
children: _propTypes.default.oneOfType([_propTypes.default.node, _propTypes.default.arrayOf(_propTypes.default.node)])
|
|
166
166
|
};
|
|
167
167
|
AccommodationModal.defaultProps = {
|
|
@@ -94,10 +94,10 @@ var ModerateTable = (_dec = (0, _uiThemeable.themeable)(_theme.default, styles),
|
|
|
94
94
|
|
|
95
95
|
_this = _super.call.apply(_super, [this].concat(args));
|
|
96
96
|
_this.state = {
|
|
97
|
-
//To support voiceover when the table changes
|
|
97
|
+
// To support voiceover when the table changes
|
|
98
98
|
moderatePanelIterations: 0,
|
|
99
99
|
selectedStudent: null,
|
|
100
|
-
//To display the spinner while manually submitted quiz sessions are being graded
|
|
100
|
+
// To display the spinner while manually submitted quiz sessions are being graded
|
|
101
101
|
isWaiting: false
|
|
102
102
|
};
|
|
103
103
|
|
|
@@ -24,7 +24,7 @@ function mapStateToProps(state, ownProps) {
|
|
|
24
24
|
};
|
|
25
25
|
}
|
|
26
26
|
|
|
27
|
-
var connectedModerateTableRow = (0, _reactRedux.connect)(mapStateToProps)(_presenter.default); //This ugly hack is necessary because the InstUI v7 Table.Body only renders components with name 'Row'.
|
|
27
|
+
var connectedModerateTableRow = (0, _reactRedux.connect)(mapStateToProps)(_presenter.default); // This ugly hack is necessary because the InstUI v7 Table.Body only renders components with name 'Row'.
|
|
28
28
|
|
|
29
29
|
connectedModerateTableRow.displayName = 'Row';
|
|
30
30
|
var _default = connectedModerateTableRow;
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@instructure/quiz-core",
|
|
3
|
-
"version": "17.58.2-rc.
|
|
3
|
+
"version": "17.58.2-rc.5+10cc58717",
|
|
4
4
|
"license": "MIT",
|
|
5
5
|
"description": "The Quiz React SDK by Instructure Inc.",
|
|
6
6
|
"author": "Instructure, Inc. Engineering and Product Design",
|
|
@@ -41,11 +41,11 @@
|
|
|
41
41
|
],
|
|
42
42
|
"dependencies": {
|
|
43
43
|
"@instructure/outcomes-ui": "^2.1.8",
|
|
44
|
-
"@instructure/quiz-common": "17.58.2-rc.
|
|
45
|
-
"@instructure/quiz-i18n": "17.58.2-rc.
|
|
46
|
-
"@instructure/quiz-interactions": "17.58.2-rc.
|
|
47
|
-
"@instructure/quiz-number-input": "17.58.2-rc.
|
|
48
|
-
"@instructure/quiz-rce": "17.58.2-rc.
|
|
44
|
+
"@instructure/quiz-common": "17.58.2-rc.5+10cc58717",
|
|
45
|
+
"@instructure/quiz-i18n": "17.58.2-rc.5+10cc58717",
|
|
46
|
+
"@instructure/quiz-interactions": "17.58.2-rc.5+10cc58717",
|
|
47
|
+
"@instructure/quiz-number-input": "17.58.2-rc.5+10cc58717",
|
|
48
|
+
"@instructure/quiz-rce": "17.58.2-rc.5+10cc58717",
|
|
49
49
|
"@instructure/ui-a11y-content": "^7.20.0",
|
|
50
50
|
"@instructure/ui-alerts": "^7.20.0",
|
|
51
51
|
"@instructure/ui-avatar": "^7.20.0",
|
|
@@ -106,7 +106,7 @@
|
|
|
106
106
|
"eventemitter3": "^3.1.0",
|
|
107
107
|
"humps": "^2.0.0",
|
|
108
108
|
"immutable": "^3.8.1",
|
|
109
|
-
"instructure-validations": "17.58.2-rc.
|
|
109
|
+
"instructure-validations": "17.58.2-rc.5+10cc58717",
|
|
110
110
|
"ipaddr.js": "^1.5.4",
|
|
111
111
|
"isomorphic-fetch": "^2.2.0",
|
|
112
112
|
"isuuid": "^0.1.0",
|
|
@@ -156,7 +156,7 @@
|
|
|
156
156
|
"intl": "^1.2.4",
|
|
157
157
|
"jquery": "^2.2.3",
|
|
158
158
|
"most-subject": "^5.3.0",
|
|
159
|
-
"quiz-presets": "17.58.2-rc.
|
|
159
|
+
"quiz-presets": "17.58.2-rc.5+10cc58717",
|
|
160
160
|
"react": "^16.8.6",
|
|
161
161
|
"react-addons-test-utils": "^15.6.2",
|
|
162
162
|
"react-dom": "^16.8.6",
|
|
@@ -172,5 +172,5 @@
|
|
|
172
172
|
"publishConfig": {
|
|
173
173
|
"access": "public"
|
|
174
174
|
},
|
|
175
|
-
"gitHead": "
|
|
175
|
+
"gitHead": "10cc58717a6e261cc9b562e639ee116ec37af136"
|
|
176
176
|
}
|