@instructure/quiz-core 17.49.1-rc.7 → 17.49.1-rc.8
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/index.js +1 -1
- package/lib/index.js +7 -0
- package/package.json +9 -9
package/es/index.js
CHANGED
|
@@ -109,7 +109,7 @@ export { takingApiActions }; // Actions
|
|
|
109
109
|
|
|
110
110
|
export { addSuccess, addInfo, addError, screenreaderNotification, removeAlert } from "./common/actions/alerts.js";
|
|
111
111
|
export { openModal, closeModal } from "./common/actions/modal.js";
|
|
112
|
-
export { setGradeByQuestionEnabled } from "./common/actions/grading.js";
|
|
112
|
+
export { setGradeByQuestionEnabled, setActiveItem } from "./common/actions/grading.js";
|
|
113
113
|
export { setRegradingPayload, setScoreReconciliation, toggleRegradingEditMode } from "./common/actions/regrading.js";
|
|
114
114
|
export { showError, hideError, clearErrorsShowing } from "./common/actions/errorsShowing.js";
|
|
115
115
|
export { changeItemState, changeQuizEntryPoints, changeQuizEntryProperties, clearModifications, moveTemporaryQuizEntry, changeQuizOutcomeAlignmentSetGuid, changeFudgePoints, sessionItemResultsModification } from "./common/actions/modifications.js";
|
package/lib/index.js
CHANGED
|
@@ -149,6 +149,7 @@ var _exportNames = {
|
|
|
149
149
|
closeModal: true,
|
|
150
150
|
modalActions: true,
|
|
151
151
|
setGradeByQuestionEnabled: true,
|
|
152
|
+
setActiveItem: true,
|
|
152
153
|
setRegradingPayload: true,
|
|
153
154
|
setScoreReconciliation: true,
|
|
154
155
|
toggleRegradingEditMode: true,
|
|
@@ -1045,6 +1046,12 @@ Object.defineProperty(exports, "setGradeByQuestionEnabled", {
|
|
|
1045
1046
|
return _grading.setGradeByQuestionEnabled;
|
|
1046
1047
|
}
|
|
1047
1048
|
});
|
|
1049
|
+
Object.defineProperty(exports, "setActiveItem", {
|
|
1050
|
+
enumerable: true,
|
|
1051
|
+
get: function get() {
|
|
1052
|
+
return _grading.setActiveItem;
|
|
1053
|
+
}
|
|
1054
|
+
});
|
|
1048
1055
|
Object.defineProperty(exports, "setRegradingPayload", {
|
|
1049
1056
|
enumerable: true,
|
|
1050
1057
|
get: function get() {
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@instructure/quiz-core",
|
|
3
|
-
"version": "17.49.1-rc.
|
|
3
|
+
"version": "17.49.1-rc.8+209011c05",
|
|
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.2",
|
|
44
|
-
"@instructure/quiz-common": "17.49.1-rc.
|
|
45
|
-
"@instructure/quiz-i18n": "17.49.1-rc.
|
|
46
|
-
"@instructure/quiz-interactions": "17.49.1-rc.
|
|
47
|
-
"@instructure/quiz-number-input": "17.49.1-rc.
|
|
48
|
-
"@instructure/quiz-rce": "17.49.1-rc.
|
|
44
|
+
"@instructure/quiz-common": "17.49.1-rc.8+209011c05",
|
|
45
|
+
"@instructure/quiz-i18n": "17.49.1-rc.8+209011c05",
|
|
46
|
+
"@instructure/quiz-interactions": "17.49.1-rc.8+209011c05",
|
|
47
|
+
"@instructure/quiz-number-input": "17.49.1-rc.8+209011c05",
|
|
48
|
+
"@instructure/quiz-rce": "17.49.1-rc.8+209011c05",
|
|
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.49.1-rc.
|
|
109
|
+
"instructure-validations": "17.49.1-rc.8+209011c05",
|
|
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.49.1-rc.
|
|
159
|
+
"quiz-presets": "17.49.1-rc.8+209011c05",
|
|
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": "209011c05b8c437e7e1809c61d268c8021930d4b"
|
|
176
176
|
}
|