@instructure/quiz-core 17.62.1-rc.1 → 17.62.1-rc.2

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.
@@ -77,6 +77,21 @@ export var getBank = function getBank(bankId) {
77
77
  });
78
78
  };
79
79
  };
80
+ export var getSpecificBanks = function getSpecificBanks() {
81
+ var bankIds = arguments.length > 0 && arguments[0] !== void 0 ? arguments[0] : [];
82
+ return function (dispatch, getState) {
83
+ var fetcher = new Fetcher({
84
+ onError: handleError(dispatch, t('Failed to fetch banks.'))
85
+ });
86
+ var param = {
87
+ ids: bankIds
88
+ };
89
+ return fetcher.get("".concat(banksApiEndpoint, "/batch_show"), param).then(function (response) {
90
+ dispatch(handleBanksResponse(response));
91
+ return response;
92
+ });
93
+ };
94
+ };
80
95
  export var createBank = function createBank(newBank, shareWithCourseUuid) {
81
96
  return function (dispatch, getState) {
82
97
  var newBankData = JSON.stringify({
@@ -0,0 +1,99 @@
1
+ import _regeneratorRuntime from "@babel/runtime/regenerator";
2
+ import _asyncToGenerator from "@babel/runtime/helpers/esm/asyncToGenerator";
3
+ import t from '@instructure/quiz-i18n/es/format-message';
4
+ import { addError, addSuccess } from "../../common/actions/alerts.js";
5
+ import { getSpecificBanks } from "./banks.js";
6
+ var pollingBanks = [];
7
+ var currentlyPolling = false;
8
+ export var addToPolling = function addToPolling(bankId, bankTitle) {
9
+ var getSpecificBanksFn = arguments.length > 2 && arguments[2] !== void 0 ? arguments[2] : getSpecificBanks;
10
+ return function (dispatch) {
11
+ pollingBanks.push({
12
+ id: bankId,
13
+ title: bankTitle
14
+ });
15
+
16
+ if (!currentlyPolling) {
17
+ currentlyPolling = true;
18
+ handlePollingBanks(dispatch, getSpecificBanksFn);
19
+ }
20
+ };
21
+ };
22
+
23
+ var handlePollingBanks = /*#__PURE__*/function () {
24
+ var _ref = _asyncToGenerator( /*#__PURE__*/_regeneratorRuntime.mark(function _callee(dispatch) {
25
+ var getSpecificBanksFn,
26
+ updatedPollingBanks,
27
+ updatedPollingBankIds,
28
+ finishedCopying,
29
+ finishedCopyingIds,
30
+ _args = arguments;
31
+ return _regeneratorRuntime.wrap(function _callee$(_context) {
32
+ while (1) {
33
+ switch (_context.prev = _context.next) {
34
+ case 0:
35
+ getSpecificBanksFn = _args.length > 1 && _args[1] !== void 0 ? _args[1] : getSpecificBanks;
36
+ _context.next = 3;
37
+ return getSpecificBanksFn(pollingBanks.map(function (bank) {
38
+ return bank.id;
39
+ }))(dispatch);
40
+
41
+ case 3:
42
+ updatedPollingBanks = _context.sent;
43
+ updatedPollingBankIds = updatedPollingBanks.map(function (updatedBank) {
44
+ return updatedBank.id;
45
+ }); // banks that now have status 'waiting' have finished successfully
46
+ // banks that are no longer in the updated list but were in the previous list have
47
+ // failed to copy and therefore were archived
48
+
49
+ finishedCopying = updatedPollingBanks.filter(function (bank) {
50
+ return bank.status === 'waiting';
51
+ }).concat(pollingBanks.filter(function (prevBank) {
52
+ return !updatedPollingBankIds.includes(prevBank.id);
53
+ }));
54
+ finishedCopying.forEach(function (bank) {
55
+ var bankInfo = updatedPollingBanks.find(function (info) {
56
+ return info.id == bank.id;
57
+ });
58
+
59
+ if ((bankInfo === null || bankInfo === void 0 ? void 0 : bankInfo.status) === 'waiting') {
60
+ dispatch(addSuccess(t('Created "{name}" successfully! Duplicate can be seen in \'All Banks\' filter.', {
61
+ name: bank.title
62
+ })));
63
+ } else if (!bankInfo) {
64
+ dispatch(addError(t('Failed to create "{name}". Please try again.', {
65
+ name: bank.title
66
+ })));
67
+ }
68
+ });
69
+ finishedCopyingIds = finishedCopying.map(function (bank) {
70
+ return bank.id;
71
+ });
72
+ removeFinishedCopies(finishedCopyingIds);
73
+
74
+ if (pollingBanks.length > 0) {
75
+ setTimeout(function () {
76
+ handlePollingBanks(dispatch);
77
+ }, 3000);
78
+ } else {
79
+ currentlyPolling = false;
80
+ }
81
+
82
+ case 10:
83
+ case "end":
84
+ return _context.stop();
85
+ }
86
+ }
87
+ }, _callee);
88
+ }));
89
+
90
+ return function handlePollingBanks(_x) {
91
+ return _ref.apply(this, arguments);
92
+ };
93
+ }();
94
+
95
+ var removeFinishedCopies = function removeFinishedCopies(finishedCopyingIds) {
96
+ pollingBanks = pollingBanks.filter(function (bank) {
97
+ return !finishedCopyingIds.includes(bank.id);
98
+ });
99
+ };
@@ -174,8 +174,7 @@ export var Banks = (_dec = themeable(theme, styles), _dec(_class = (_temp = _cla
174
174
  minChars: _this.props.minChars,
175
175
  navigateToBank: _this.props.navigateToBank,
176
176
  onShare: _this.props.onShare,
177
- recordIds: recordIds,
178
- redirectAllBanks: _this.handleBankCreated
177
+ recordIds: recordIds
179
178
  });
180
179
  };
181
180
 
@@ -6,6 +6,7 @@ import { openModal, withConfirm } from "../../../common/actions/modal.js";
6
6
  import { deleteBank, createBankCloneJob } from "../../api/banks.js";
7
7
  import { featureOn } from "../../../common/util/featureCheck.js";
8
8
  import { addInfo } from "../../../common/actions/alerts.js";
9
+ import { addToPolling } from "../../api/copyingBanksPoller.js";
9
10
  export function mapStateToProps(state, props) {
10
11
  return {
11
12
  appContainer: state.getIn(['ui', 'appContainer']),
@@ -20,5 +21,6 @@ export default connect(mapStateToProps, {
20
21
  deleteBank: deleteBank,
21
22
  withConfirm: withConfirm,
22
23
  createBankCloneJob: createBankCloneJob,
23
- addInfo: addInfo
24
+ addInfo: addInfo,
25
+ addToPolling: addToPolling
24
26
  })(BanksList);
@@ -44,7 +44,7 @@ var styles = {
44
44
  };
45
45
  import theme from "./theme.js";
46
46
 
47
- var _ref3 = /*#__PURE__*/React.createElement(Spinner, {
47
+ var _ref4 = /*#__PURE__*/React.createElement(Spinner, {
48
48
  renderTitle: "Loading",
49
49
  size: "x-small"
50
50
  });
@@ -144,18 +144,41 @@ export var BanksList = (_dec = themeable(theme, styles), _dec(_class = (_temp =
144
144
 
145
145
  _this.openDuplicateBankModal = function (bank) {
146
146
  return function () {
147
- _this.createCloneJob = function () {
148
- _this.props.createBankCloneJob(bank.id, _this.props.currentUser.uuid);
147
+ var createCloneJob = /*#__PURE__*/function () {
148
+ var _ref3 = _asyncToGenerator( /*#__PURE__*/_regeneratorRuntime.mark(function _callee2() {
149
+ var cloneJob;
150
+ return _regeneratorRuntime.wrap(function _callee2$(_context2) {
151
+ while (1) {
152
+ switch (_context2.prev = _context2.next) {
153
+ case 0:
154
+ _context2.next = 2;
155
+ return _this.props.createBankCloneJob(bank.id, _this.props.currentUser.uuid);
156
+
157
+ case 2:
158
+ cloneJob = _context2.sent;
159
+
160
+ _this.props.addToPolling(cloneJob.cloned_bank_id, t('{name} Copy', {
161
+ name: bank.title
162
+ }));
163
+
164
+ _this.props.addInfo(t('Creating "{name} Copy". Duplicate will appear in \'All Banks\' filter.', {
165
+ name: bank.title
166
+ }));
167
+
168
+ case 5:
169
+ case "end":
170
+ return _context2.stop();
171
+ }
172
+ }
173
+ }, _callee2);
174
+ }));
149
175
 
150
- _this.props.addInfo( /*#__PURE__*/React.createElement(React.Fragment, null, t('Creating "{name} Copy". Duplicate will appear in ', {
151
- name: bank.title
152
- }), /*#__PURE__*/React.createElement(Link, {
153
- key: bank.id,
154
- onClick: _this.props.redirectAllBanks
155
- }, t('\'All Banks\'')), t(' filter.')));
156
- };
176
+ return function createCloneJob() {
177
+ return _ref3.apply(this, arguments);
178
+ };
179
+ }();
157
180
 
158
- _this.props.withConfirm(partial(_this.createCloneJob), {
181
+ _this.props.withConfirm(partial(createCloneJob), {
159
182
  text: t('Are you sure you want to duplicate this item bank?'),
160
183
  title: t('Duplicate Bank'),
161
184
  continueText: t('Duplicate'),
@@ -293,7 +316,7 @@ export var BanksList = (_dec = themeable(theme, styles), _dec(_class = (_temp =
293
316
  if (bank.status == 'copying') {
294
317
  return /*#__PURE__*/React.createElement("div", {
295
318
  className: styles.bankOptions
296
- }, _ref3);
319
+ }, _ref4);
297
320
  } else {
298
321
  return /*#__PURE__*/React.createElement("div", {
299
322
  className: styles.bankOptions
@@ -392,6 +415,7 @@ export var BanksList = (_dec = themeable(theme, styles), _dec(_class = (_temp =
392
415
  return BanksList;
393
416
  }(withI18nSupport(Component)), _class2.propTypes = {
394
417
  addInfo: PropTypes.func.isRequired,
418
+ addToPolling: PropTypes.func.isRequired,
395
419
  appContainer: CustomPropTypes.selectors.isRequired,
396
420
  banks: ImmutablePropTypes.list.isRequired,
397
421
  createBankCloneJob: PropTypes.func.isRequired,
@@ -414,7 +438,6 @@ export var BanksList = (_dec = themeable(theme, styles), _dec(_class = (_temp =
414
438
  navigateToBank: PropTypes.func.isRequired,
415
439
  onShare: PropTypes.func,
416
440
  openModal: PropTypes.func.isRequired,
417
- redirectAllBanks: PropTypes.func.isRequired,
418
441
  withConfirm: PropTypes.func.isRequired,
419
442
  locale: PropTypes.string,
420
443
  timezone: PropTypes.string
@@ -6,7 +6,7 @@ Object.defineProperty(exports, "__esModule", {
6
6
  value: true
7
7
  });
8
8
  exports.getExistingBankAndEntries = getExistingBankAndEntries;
9
- exports.createBankCloneJob = exports.updateSharedBankPermission = exports.getSharedBanks = exports.getSharedBank = exports.shareBank = exports.deleteBank = exports.updateBank = exports.createBank = exports.getBank = exports.getAllBanks = exports.getBanks = void 0;
9
+ exports.createBankCloneJob = exports.updateSharedBankPermission = exports.getSharedBanks = exports.getSharedBank = exports.shareBank = exports.deleteBank = exports.updateBank = exports.createBank = exports.getSpecificBanks = exports.getBank = exports.getAllBanks = exports.getBanks = void 0;
10
10
 
11
11
  var _objectSpread2 = _interopRequireDefault(require("@babel/runtime/helpers/objectSpread2"));
12
12
 
@@ -111,6 +111,24 @@ var getBank = function getBank(bankId) {
111
111
 
112
112
  exports.getBank = getBank;
113
113
 
114
+ var getSpecificBanks = function getSpecificBanks() {
115
+ var bankIds = arguments.length > 0 && arguments[0] !== void 0 ? arguments[0] : [];
116
+ return function (dispatch, getState) {
117
+ var fetcher = new _Fetcher.default({
118
+ onError: (0, _helpers.handleError)(dispatch, (0, _formatMessage.default)('Failed to fetch banks.'))
119
+ });
120
+ var param = {
121
+ ids: bankIds
122
+ };
123
+ return fetcher.get("".concat(banksApiEndpoint, "/batch_show"), param).then(function (response) {
124
+ dispatch((0, _callHandlers.handleBanksResponse)(response));
125
+ return response;
126
+ });
127
+ };
128
+ };
129
+
130
+ exports.getSpecificBanks = getSpecificBanks;
131
+
114
132
  var createBank = function createBank(newBank, shareWithCourseUuid) {
115
133
  return function (dispatch, getState) {
116
134
  var newBankData = JSON.stringify({
@@ -0,0 +1,116 @@
1
+ "use strict";
2
+
3
+ var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault");
4
+
5
+ Object.defineProperty(exports, "__esModule", {
6
+ value: true
7
+ });
8
+ exports.addToPolling = void 0;
9
+
10
+ var _regenerator = _interopRequireDefault(require("@babel/runtime/regenerator"));
11
+
12
+ var _asyncToGenerator2 = _interopRequireDefault(require("@babel/runtime/helpers/asyncToGenerator"));
13
+
14
+ var _formatMessage = _interopRequireDefault(require("@instructure/quiz-i18n/es/format-message"));
15
+
16
+ var _alerts = require("../../common/actions/alerts.js");
17
+
18
+ var _banks = require("./banks.js");
19
+
20
+ var pollingBanks = [];
21
+ var currentlyPolling = false;
22
+
23
+ var addToPolling = function addToPolling(bankId, bankTitle) {
24
+ var getSpecificBanksFn = arguments.length > 2 && arguments[2] !== void 0 ? arguments[2] : _banks.getSpecificBanks;
25
+ return function (dispatch) {
26
+ pollingBanks.push({
27
+ id: bankId,
28
+ title: bankTitle
29
+ });
30
+
31
+ if (!currentlyPolling) {
32
+ currentlyPolling = true;
33
+ handlePollingBanks(dispatch, getSpecificBanksFn);
34
+ }
35
+ };
36
+ };
37
+
38
+ exports.addToPolling = addToPolling;
39
+
40
+ var handlePollingBanks = /*#__PURE__*/function () {
41
+ var _ref = (0, _asyncToGenerator2.default)( /*#__PURE__*/_regenerator.default.mark(function _callee(dispatch) {
42
+ var getSpecificBanksFn,
43
+ updatedPollingBanks,
44
+ updatedPollingBankIds,
45
+ finishedCopying,
46
+ finishedCopyingIds,
47
+ _args = arguments;
48
+ return _regenerator.default.wrap(function _callee$(_context) {
49
+ while (1) {
50
+ switch (_context.prev = _context.next) {
51
+ case 0:
52
+ getSpecificBanksFn = _args.length > 1 && _args[1] !== void 0 ? _args[1] : _banks.getSpecificBanks;
53
+ _context.next = 3;
54
+ return getSpecificBanksFn(pollingBanks.map(function (bank) {
55
+ return bank.id;
56
+ }))(dispatch);
57
+
58
+ case 3:
59
+ updatedPollingBanks = _context.sent;
60
+ updatedPollingBankIds = updatedPollingBanks.map(function (updatedBank) {
61
+ return updatedBank.id;
62
+ }); // banks that now have status 'waiting' have finished successfully
63
+ // banks that are no longer in the updated list but were in the previous list have
64
+ // failed to copy and therefore were archived
65
+
66
+ finishedCopying = updatedPollingBanks.filter(function (bank) {
67
+ return bank.status === 'waiting';
68
+ }).concat(pollingBanks.filter(function (prevBank) {
69
+ return !updatedPollingBankIds.includes(prevBank.id);
70
+ }));
71
+ finishedCopying.forEach(function (bank) {
72
+ var bankInfo = updatedPollingBanks.find(function (info) {
73
+ return info.id == bank.id;
74
+ });
75
+
76
+ if ((bankInfo === null || bankInfo === void 0 ? void 0 : bankInfo.status) === 'waiting') {
77
+ dispatch((0, _alerts.addSuccess)((0, _formatMessage.default)('Created "{name}" successfully! Duplicate can be seen in \'All Banks\' filter.', {
78
+ name: bank.title
79
+ })));
80
+ } else if (!bankInfo) {
81
+ dispatch((0, _alerts.addError)((0, _formatMessage.default)('Failed to create "{name}". Please try again.', {
82
+ name: bank.title
83
+ })));
84
+ }
85
+ });
86
+ finishedCopyingIds = finishedCopying.map(function (bank) {
87
+ return bank.id;
88
+ });
89
+ removeFinishedCopies(finishedCopyingIds);
90
+
91
+ if (pollingBanks.length > 0) {
92
+ setTimeout(function () {
93
+ handlePollingBanks(dispatch);
94
+ }, 3000);
95
+ } else {
96
+ currentlyPolling = false;
97
+ }
98
+
99
+ case 10:
100
+ case "end":
101
+ return _context.stop();
102
+ }
103
+ }
104
+ }, _callee);
105
+ }));
106
+
107
+ return function handlePollingBanks(_x) {
108
+ return _ref.apply(this, arguments);
109
+ };
110
+ }();
111
+
112
+ var removeFinishedCopies = function removeFinishedCopies(finishedCopyingIds) {
113
+ pollingBanks = pollingBanks.filter(function (bank) {
114
+ return !finishedCopyingIds.includes(bank.id);
115
+ });
116
+ };
@@ -211,8 +211,7 @@ var Banks = (_dec = (0, _uiThemeable.themeable)(_theme.default, styles), _dec(_c
211
211
  minChars: _this.props.minChars,
212
212
  navigateToBank: _this.props.navigateToBank,
213
213
  onShare: _this.props.onShare,
214
- recordIds: recordIds,
215
- redirectAllBanks: _this.handleBankCreated
214
+ recordIds: recordIds
216
215
  });
217
216
  };
218
217
 
@@ -24,6 +24,8 @@ var _featureCheck = require("../../../common/util/featureCheck.js");
24
24
 
25
25
  var _alerts = require("../../../common/actions/alerts.js");
26
26
 
27
+ var _copyingBanksPoller = require("../../api/copyingBanksPoller.js");
28
+
27
29
  function mapStateToProps(state, props) {
28
30
  return {
29
31
  appContainer: state.getIn(['ui', 'appContainer']),
@@ -39,7 +41,8 @@ var _default = (0, _reactRedux.connect)(mapStateToProps, {
39
41
  deleteBank: _banks.deleteBank,
40
42
  withConfirm: _modal.withConfirm,
41
43
  createBankCloneJob: _banks.createBankCloneJob,
42
- addInfo: _alerts.addInfo
44
+ addInfo: _alerts.addInfo,
45
+ addToPolling: _copyingBanksPoller.addToPolling
43
46
  })(_presenter.default);
44
47
 
45
48
  exports.default = _default;
@@ -80,7 +80,7 @@ var styles = {
80
80
  'deletePreface': 'dgJJi_eTBd'
81
81
  };
82
82
 
83
- var _ref3 = /*#__PURE__*/_react.default.createElement(_uiSpinner.Spinner, {
83
+ var _ref4 = /*#__PURE__*/_react.default.createElement(_uiSpinner.Spinner, {
84
84
  renderTitle: "Loading",
85
85
  size: "x-small"
86
86
  });
@@ -180,18 +180,41 @@ var BanksList = (_dec = (0, _uiThemeable.themeable)(_theme.default, styles), _de
180
180
 
181
181
  _this.openDuplicateBankModal = function (bank) {
182
182
  return function () {
183
- _this.createCloneJob = function () {
184
- _this.props.createBankCloneJob(bank.id, _this.props.currentUser.uuid);
183
+ var createCloneJob = /*#__PURE__*/function () {
184
+ var _ref3 = (0, _asyncToGenerator2.default)( /*#__PURE__*/_regenerator.default.mark(function _callee2() {
185
+ var cloneJob;
186
+ return _regenerator.default.wrap(function _callee2$(_context2) {
187
+ while (1) {
188
+ switch (_context2.prev = _context2.next) {
189
+ case 0:
190
+ _context2.next = 2;
191
+ return _this.props.createBankCloneJob(bank.id, _this.props.currentUser.uuid);
192
+
193
+ case 2:
194
+ cloneJob = _context2.sent;
195
+
196
+ _this.props.addToPolling(cloneJob.cloned_bank_id, (0, _formatMessage.default)('{name} Copy', {
197
+ name: bank.title
198
+ }));
199
+
200
+ _this.props.addInfo((0, _formatMessage.default)('Creating "{name} Copy". Duplicate will appear in \'All Banks\' filter.', {
201
+ name: bank.title
202
+ }));
203
+
204
+ case 5:
205
+ case "end":
206
+ return _context2.stop();
207
+ }
208
+ }
209
+ }, _callee2);
210
+ }));
185
211
 
186
- _this.props.addInfo( /*#__PURE__*/_react.default.createElement(_react.default.Fragment, null, (0, _formatMessage.default)('Creating "{name} Copy". Duplicate will appear in ', {
187
- name: bank.title
188
- }), /*#__PURE__*/_react.default.createElement(_uiLink.Link, {
189
- key: bank.id,
190
- onClick: _this.props.redirectAllBanks
191
- }, (0, _formatMessage.default)('\'All Banks\'')), (0, _formatMessage.default)(' filter.')));
192
- };
212
+ return function createCloneJob() {
213
+ return _ref3.apply(this, arguments);
214
+ };
215
+ }();
193
216
 
194
- _this.props.withConfirm((0, _partial.default)(_this.createCloneJob), {
217
+ _this.props.withConfirm((0, _partial.default)(createCloneJob), {
195
218
  text: (0, _formatMessage.default)('Are you sure you want to duplicate this item bank?'),
196
219
  title: (0, _formatMessage.default)('Duplicate Bank'),
197
220
  continueText: (0, _formatMessage.default)('Duplicate'),
@@ -330,7 +353,7 @@ var BanksList = (_dec = (0, _uiThemeable.themeable)(_theme.default, styles), _de
330
353
  if (bank.status == 'copying') {
331
354
  return /*#__PURE__*/_react.default.createElement("div", {
332
355
  className: styles.bankOptions
333
- }, _ref3);
356
+ }, _ref4);
334
357
  } else {
335
358
  return /*#__PURE__*/_react.default.createElement("div", {
336
359
  className: styles.bankOptions
@@ -430,6 +453,7 @@ var BanksList = (_dec = (0, _uiThemeable.themeable)(_theme.default, styles), _de
430
453
  return BanksList;
431
454
  }((0, _quizCommon.withI18nSupport)(_react.Component)), _class2.propTypes = {
432
455
  addInfo: _propTypes.default.func.isRequired,
456
+ addToPolling: _propTypes.default.func.isRequired,
433
457
  appContainer: _CustomPropTypes.default.selectors.isRequired,
434
458
  banks: _reactImmutableProptypes.default.list.isRequired,
435
459
  createBankCloneJob: _propTypes.default.func.isRequired,
@@ -452,7 +476,6 @@ var BanksList = (_dec = (0, _uiThemeable.themeable)(_theme.default, styles), _de
452
476
  navigateToBank: _propTypes.default.func.isRequired,
453
477
  onShare: _propTypes.default.func,
454
478
  openModal: _propTypes.default.func.isRequired,
455
- redirectAllBanks: _propTypes.default.func.isRequired,
456
479
  withConfirm: _propTypes.default.func.isRequired,
457
480
  locale: _propTypes.default.string,
458
481
  timezone: _propTypes.default.string
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@instructure/quiz-core",
3
- "version": "17.62.1-rc.1+35dd3a71d",
3
+ "version": "17.62.1-rc.2+89844c065",
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.9",
44
- "@instructure/quiz-common": "17.62.1-rc.1+35dd3a71d",
45
- "@instructure/quiz-i18n": "17.62.1-rc.1+35dd3a71d",
46
- "@instructure/quiz-interactions": "17.62.1-rc.1+35dd3a71d",
47
- "@instructure/quiz-number-input": "17.62.1-rc.1+35dd3a71d",
48
- "@instructure/quiz-rce": "17.62.1-rc.1+35dd3a71d",
44
+ "@instructure/quiz-common": "17.62.1-rc.2+89844c065",
45
+ "@instructure/quiz-i18n": "17.62.1-rc.2+89844c065",
46
+ "@instructure/quiz-interactions": "17.62.1-rc.2+89844c065",
47
+ "@instructure/quiz-number-input": "17.62.1-rc.2+89844c065",
48
+ "@instructure/quiz-rce": "17.62.1-rc.2+89844c065",
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.62.1-rc.1+35dd3a71d",
109
+ "instructure-validations": "17.62.1-rc.2+89844c065",
110
110
  "ipaddr.js": "^1.5.4",
111
111
  "isomorphic-fetch": "^2.2.0",
112
112
  "isuuid": "^0.1.0",
@@ -157,7 +157,7 @@
157
157
  "intl": "^1.2.4",
158
158
  "jquery": "^2.2.3",
159
159
  "most-subject": "^5.3.0",
160
- "quiz-presets": "17.62.1-rc.1+35dd3a71d",
160
+ "quiz-presets": "17.62.1-rc.2+89844c065",
161
161
  "react": "^16.8.6",
162
162
  "react-addons-test-utils": "^15.6.2",
163
163
  "react-dom": "^16.8.6",
@@ -173,5 +173,5 @@
173
173
  "publishConfig": {
174
174
  "access": "public"
175
175
  },
176
- "gitHead": "35dd3a71d48f248d35d44909b90c5ada4bb0ae37"
176
+ "gitHead": "89844c065c8a4ad7e639856f6a4c52239c6b8386"
177
177
  }