@instructure/quiz-core 22.2.2-rc.4 → 22.2.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/building/components/resources/quizEntry/QuizEntryBank/QuizEntryBankEdit/index.js +3 -1
- package/es/building/components/resources/quizEntry/QuizEntryBank/QuizEntryBankEdit/presenter.js +3 -1
- package/es/common/actions/banks.js +10 -1
- package/es/common/components/resources/BankSelection/index.js +0 -2
- package/es/common/components/resources/BankSelection/presenter.js +11 -15
- package/es/common/reducers/banks.js +6 -1
- package/lib/building/components/resources/quizEntry/QuizEntryBank/QuizEntryBankEdit/index.js +3 -1
- package/lib/building/components/resources/quizEntry/QuizEntryBank/QuizEntryBankEdit/presenter.js +3 -1
- package/lib/common/actions/banks.js +10 -1
- package/lib/common/components/resources/BankSelection/index.js +0 -2
- package/lib/common/components/resources/BankSelection/presenter.js +11 -15
- package/lib/common/reducers/banks.js +5 -0
- package/package.json +9 -9
|
@@ -2,6 +2,7 @@ import QuizEntryBankEdit from './presenter';
|
|
|
2
2
|
import { connect } from '../../../../../../common/react-redux';
|
|
3
3
|
import { changeQuizEntryPoints, changeQuizEntryProperties, changeQuizEntryEntry, clearModifications } from '../../../../../../common/actions/modifications';
|
|
4
4
|
import { updateQuizEntry } from '../../../../../api/quizEntries';
|
|
5
|
+
import { addBank } from '../../../../../../common/actions/banks';
|
|
5
6
|
export function mapStateToProps(state, props) {
|
|
6
7
|
var workingQuizEntry = props.quizEntry.getWorkingInstance();
|
|
7
8
|
var properties = workingQuizEntry.properties;
|
|
@@ -20,5 +21,6 @@ export default connect(mapStateToProps, {
|
|
|
20
21
|
changeQuizEntryProperties: changeQuizEntryProperties,
|
|
21
22
|
changeQuizEntryEntry: changeQuizEntryEntry,
|
|
22
23
|
clearModifications: clearModifications,
|
|
23
|
-
updateQuizEntry: updateQuizEntry
|
|
24
|
+
updateQuizEntry: updateQuizEntry,
|
|
25
|
+
addBank: addBank
|
|
24
26
|
})(QuizEntryBankEdit);
|
package/es/building/components/resources/quizEntry/QuizEntryBank/QuizEntryBankEdit/presenter.js
CHANGED
|
@@ -70,6 +70,7 @@ export var QuizEntryBankEdit = (_dec = withStyleOverrides(generateStyle, generat
|
|
|
70
70
|
_this2.props.changeQuizEntryProperties(_this2.props.quizEntry.id, properties);
|
|
71
71
|
});
|
|
72
72
|
_defineProperty(_this2, "onBankSelection", function (event, option) {
|
|
73
|
+
_this2.props.addBank(option.id, option);
|
|
73
74
|
_this2.props.changeQuizEntryEntry(_this2.props.quizEntry.id, option.id);
|
|
74
75
|
});
|
|
75
76
|
_defineProperty(_this2, "handleQuestionChange", function (event, selection) {
|
|
@@ -229,7 +230,8 @@ export var QuizEntryBankEdit = (_dec = withStyleOverrides(generateStyle, generat
|
|
|
229
230
|
updateQuizEntry: PropTypes.func.isRequired,
|
|
230
231
|
workingBank: PropTypes.instanceOf(Bank).isRequired,
|
|
231
232
|
workingQuizEntry: PropTypes.instanceOf(QuizEntry).isRequired,
|
|
232
|
-
styles: PropTypes.object
|
|
233
|
+
styles: PropTypes.object,
|
|
234
|
+
addBank: PropTypes.func.isRequired
|
|
233
235
|
}), _defineProperty(_QuizEntryBankEdit, "defaultProps", {
|
|
234
236
|
sampleNum: void 0
|
|
235
237
|
}), _QuizEntryBankEdit)) || _class);
|
|
@@ -1,4 +1,13 @@
|
|
|
1
|
-
import { ADD_BANKS, SET_BANK_FILTERS, ARCHIVE_BANK, ASSOCIATE_ENTRIES, DISASSOCIATE_ENTRY, REMOVE_BANK } from '@instructure/quiz-common';
|
|
1
|
+
import { ADD_BANK, ADD_BANKS, SET_BANK_FILTERS, ARCHIVE_BANK, ASSOCIATE_ENTRIES, DISASSOCIATE_ENTRY, REMOVE_BANK } from '@instructure/quiz-common';
|
|
2
|
+
export var addBank = function addBank(bankId, selectedBank) {
|
|
3
|
+
return {
|
|
4
|
+
type: ADD_BANK,
|
|
5
|
+
payload: {
|
|
6
|
+
id: bankId,
|
|
7
|
+
bank: selectedBank
|
|
8
|
+
}
|
|
9
|
+
};
|
|
10
|
+
};
|
|
2
11
|
export var addBanks = function addBanks(banks) {
|
|
3
12
|
return {
|
|
4
13
|
type: ADD_BANKS,
|
|
@@ -1,6 +1,5 @@
|
|
|
1
1
|
import { List } from 'immutable';
|
|
2
2
|
import { connect } from '../../../react-redux';
|
|
3
|
-
import { getAllBanks } from '../../../../banks/api/banks';
|
|
4
3
|
import BankSelection from './presenter';
|
|
5
4
|
import Bank from '../../../records/Bank';
|
|
6
5
|
import { set } from '../../../actions/ui';
|
|
@@ -14,6 +13,5 @@ export function mapStateToProps(state, props) {
|
|
|
14
13
|
};
|
|
15
14
|
}
|
|
16
15
|
export default connect(mapStateToProps, {
|
|
17
|
-
getAllBanks: getAllBanks,
|
|
18
16
|
setUi: set
|
|
19
17
|
})(BankSelection);
|
|
@@ -5,6 +5,8 @@ import _possibleConstructorReturn from "@babel/runtime/helpers/esm/possibleConst
|
|
|
5
5
|
import _getPrototypeOf from "@babel/runtime/helpers/esm/getPrototypeOf";
|
|
6
6
|
import _inherits from "@babel/runtime/helpers/esm/inherits";
|
|
7
7
|
import _defineProperty from "@babel/runtime/helpers/esm/defineProperty";
|
|
8
|
+
function ownKeys(object, enumerableOnly) { var keys = Object.keys(object); if (Object.getOwnPropertySymbols) { var symbols = Object.getOwnPropertySymbols(object); if (enumerableOnly) { symbols = symbols.filter(function (sym) { return Object.getOwnPropertyDescriptor(object, sym).enumerable; }); } keys.push.apply(keys, symbols); } return keys; }
|
|
9
|
+
function _objectSpread(target) { for (var i = 1; i < arguments.length; i++) { var source = arguments[i] != null ? arguments[i] : {}; if (i % 2) { ownKeys(Object(source), true).forEach(function (key) { _defineProperty(target, key, source[key]); }); } else if (Object.getOwnPropertyDescriptors) { Object.defineProperties(target, Object.getOwnPropertyDescriptors(source)); } else { ownKeys(Object(source)).forEach(function (key) { Object.defineProperty(target, key, Object.getOwnPropertyDescriptor(source, key)); }); } } return target; }
|
|
8
10
|
function _callSuper(_this, derived, args) {
|
|
9
11
|
function isNativeReflectConstruct() {
|
|
10
12
|
if (typeof Reflect === "undefined" || !Reflect.construct) return false;
|
|
@@ -43,20 +45,16 @@ export var BankSelection = /*#__PURE__*/function (_Component) {
|
|
|
43
45
|
var _ref2 = _slicedToArray(_ref, 1),
|
|
44
46
|
banks = _ref2[0];
|
|
45
47
|
return banks.map(function (b) {
|
|
46
|
-
return {
|
|
47
|
-
|
|
48
|
-
|
|
49
|
-
archived: b.archived
|
|
50
|
-
};
|
|
48
|
+
return _objectSpread(_objectSpread({}, b), {}, {
|
|
49
|
+
text: b.title
|
|
50
|
+
});
|
|
51
51
|
});
|
|
52
52
|
});
|
|
53
53
|
});
|
|
54
54
|
_defineProperty(_this2, "onSelect", function (e, bankOption) {
|
|
55
|
-
return _this2.props.onBankSelection(e, {
|
|
56
|
-
|
|
57
|
-
|
|
58
|
-
archived: bankOption.archived
|
|
59
|
-
});
|
|
55
|
+
return _this2.props.onBankSelection(e, _objectSpread(_objectSpread({}, bankOption), {}, {
|
|
56
|
+
title: bankOption.text
|
|
57
|
+
}));
|
|
60
58
|
});
|
|
61
59
|
_this2.inputRef = null;
|
|
62
60
|
return _this2;
|
|
@@ -88,11 +86,9 @@ export var BankSelection = /*#__PURE__*/function (_Component) {
|
|
|
88
86
|
key: "selectedOption",
|
|
89
87
|
value: function selectedOption() {
|
|
90
88
|
var selectedBank = this.props.selectedBank;
|
|
91
|
-
return selectedBank ? {
|
|
92
|
-
|
|
93
|
-
|
|
94
|
-
archived: selectedBank.archived
|
|
95
|
-
} : null;
|
|
89
|
+
return selectedBank ? _objectSpread(_objectSpread({}, selectedBank), {}, {
|
|
90
|
+
text: selectedBank.title
|
|
91
|
+
}) : null;
|
|
96
92
|
}
|
|
97
93
|
}, {
|
|
98
94
|
key: "render",
|
|
@@ -1,9 +1,12 @@
|
|
|
1
1
|
import keyBy from 'lodash/keyBy';
|
|
2
2
|
import { fromJS, Set } from 'immutable';
|
|
3
|
-
import { ADD_BANKS, SET_BANK_FILTERS, ARCHIVE_BANK, ASSOCIATE_ENTRIES, DISASSOCIATE_ENTRY, REMOVE_BANK } from '@instructure/quiz-common';
|
|
3
|
+
import { ADD_BANK, ADD_BANKS, SET_BANK_FILTERS, ARCHIVE_BANK, ASSOCIATE_ENTRIES, DISASSOCIATE_ENTRY, REMOVE_BANK } from '@instructure/quiz-common';
|
|
4
4
|
var addBanks = function addBanks(state, banks) {
|
|
5
5
|
return state.mergeDeep(fromJS(keyBy(banks, 'id')));
|
|
6
6
|
};
|
|
7
|
+
var addBank = function addBank(state, payload) {
|
|
8
|
+
return state.set(payload.id, payload.bank);
|
|
9
|
+
};
|
|
7
10
|
var setBankFilters = function setBankFilters(state, _ref) {
|
|
8
11
|
var bankId = _ref.bankId,
|
|
9
12
|
filters = _ref.filters;
|
|
@@ -29,6 +32,8 @@ export default (function () {
|
|
|
29
32
|
switch (action.type) {
|
|
30
33
|
case ADD_BANKS:
|
|
31
34
|
return addBanks(state, action.payload);
|
|
35
|
+
case ADD_BANK:
|
|
36
|
+
return addBank(state, action.payload);
|
|
32
37
|
case SET_BANK_FILTERS:
|
|
33
38
|
return setBankFilters(state, action.payload);
|
|
34
39
|
case ASSOCIATE_ENTRIES:
|
package/lib/building/components/resources/quizEntry/QuizEntryBank/QuizEntryBankEdit/index.js
CHANGED
|
@@ -10,6 +10,7 @@ var _presenter = _interopRequireDefault(require("./presenter"));
|
|
|
10
10
|
var _reactRedux = require("../../../../../../common/react-redux");
|
|
11
11
|
var _modifications = require("../../../../../../common/actions/modifications");
|
|
12
12
|
var _quizEntries = require("../../../../../api/quizEntries");
|
|
13
|
+
var _banks = require("../../../../../../common/actions/banks");
|
|
13
14
|
function mapStateToProps(state, props) {
|
|
14
15
|
var workingQuizEntry = props.quizEntry.getWorkingInstance();
|
|
15
16
|
var properties = workingQuizEntry.properties;
|
|
@@ -28,5 +29,6 @@ var _default = exports["default"] = (0, _reactRedux.connect)(mapStateToProps, {
|
|
|
28
29
|
changeQuizEntryProperties: _modifications.changeQuizEntryProperties,
|
|
29
30
|
changeQuizEntryEntry: _modifications.changeQuizEntryEntry,
|
|
30
31
|
clearModifications: _modifications.clearModifications,
|
|
31
|
-
updateQuizEntry: _quizEntries.updateQuizEntry
|
|
32
|
+
updateQuizEntry: _quizEntries.updateQuizEntry,
|
|
33
|
+
addBank: _banks.addBank
|
|
32
34
|
})(_presenter["default"]);
|
package/lib/building/components/resources/quizEntry/QuizEntryBank/QuizEntryBankEdit/presenter.js
CHANGED
|
@@ -77,6 +77,7 @@ var QuizEntryBankEdit = exports.QuizEntryBankEdit = (_dec = (0, _quizCommon.with
|
|
|
77
77
|
_this2.props.changeQuizEntryProperties(_this2.props.quizEntry.id, properties);
|
|
78
78
|
});
|
|
79
79
|
(0, _defineProperty2["default"])(_this2, "onBankSelection", function (event, option) {
|
|
80
|
+
_this2.props.addBank(option.id, option);
|
|
80
81
|
_this2.props.changeQuizEntryEntry(_this2.props.quizEntry.id, option.id);
|
|
81
82
|
});
|
|
82
83
|
(0, _defineProperty2["default"])(_this2, "handleQuestionChange", function (event, selection) {
|
|
@@ -236,7 +237,8 @@ var QuizEntryBankEdit = exports.QuizEntryBankEdit = (_dec = (0, _quizCommon.with
|
|
|
236
237
|
updateQuizEntry: _propTypes["default"].func.isRequired,
|
|
237
238
|
workingBank: _propTypes["default"].instanceOf(_Bank["default"]).isRequired,
|
|
238
239
|
workingQuizEntry: _propTypes["default"].instanceOf(_QuizEntry["default"]).isRequired,
|
|
239
|
-
styles: _propTypes["default"].object
|
|
240
|
+
styles: _propTypes["default"].object,
|
|
241
|
+
addBank: _propTypes["default"].func.isRequired
|
|
240
242
|
}), (0, _defineProperty2["default"])(_QuizEntryBankEdit, "defaultProps", {
|
|
241
243
|
sampleNum: void 0
|
|
242
244
|
}), _QuizEntryBankEdit)) || _class);
|
|
@@ -3,8 +3,17 @@
|
|
|
3
3
|
Object.defineProperty(exports, "__esModule", {
|
|
4
4
|
value: true
|
|
5
5
|
});
|
|
6
|
-
exports.setBankFilters = exports.removeBank = exports.disassociateEntry = exports.associateEntries = exports.archiveBank = exports.addBanks = void 0;
|
|
6
|
+
exports.setBankFilters = exports.removeBank = exports.disassociateEntry = exports.associateEntries = exports.archiveBank = exports.addBanks = exports.addBank = void 0;
|
|
7
7
|
var _quizCommon = require("@instructure/quiz-common");
|
|
8
|
+
var addBank = exports.addBank = function addBank(bankId, selectedBank) {
|
|
9
|
+
return {
|
|
10
|
+
type: _quizCommon.ADD_BANK,
|
|
11
|
+
payload: {
|
|
12
|
+
id: bankId,
|
|
13
|
+
bank: selectedBank
|
|
14
|
+
}
|
|
15
|
+
};
|
|
16
|
+
};
|
|
8
17
|
var addBanks = exports.addBanks = function addBanks(banks) {
|
|
9
18
|
return {
|
|
10
19
|
type: _quizCommon.ADD_BANKS,
|
|
@@ -8,7 +8,6 @@ exports["default"] = void 0;
|
|
|
8
8
|
exports.mapStateToProps = mapStateToProps;
|
|
9
9
|
var _immutable = require("immutable");
|
|
10
10
|
var _reactRedux = require("../../../react-redux");
|
|
11
|
-
var _banks = require("../../../../banks/api/banks");
|
|
12
11
|
var _presenter = _interopRequireDefault(require("./presenter"));
|
|
13
12
|
var _Bank = _interopRequireDefault(require("../../../records/Bank"));
|
|
14
13
|
var _ui = require("../../../actions/ui");
|
|
@@ -22,6 +21,5 @@ function mapStateToProps(state, props) {
|
|
|
22
21
|
};
|
|
23
22
|
}
|
|
24
23
|
var _default = exports["default"] = (0, _reactRedux.connect)(mapStateToProps, {
|
|
25
|
-
getAllBanks: _banks.getAllBanks,
|
|
26
24
|
setUi: _ui.set
|
|
27
25
|
})(_presenter["default"]);
|
|
@@ -21,6 +21,8 @@ var _banks = require("../../../../banks/api/banks");
|
|
|
21
21
|
var _GenericAsyncSearch = require("../../shared/GenericAsyncSearch/GenericAsyncSearch");
|
|
22
22
|
function _getRequireWildcardCache(nodeInterop) { if (typeof WeakMap !== "function") return null; var cacheBabelInterop = new WeakMap(); var cacheNodeInterop = new WeakMap(); return (_getRequireWildcardCache = function _getRequireWildcardCache(nodeInterop) { return nodeInterop ? cacheNodeInterop : cacheBabelInterop; })(nodeInterop); }
|
|
23
23
|
function _interopRequireWildcard(obj, nodeInterop) { if (!nodeInterop && obj && obj.__esModule) { return obj; } if (obj === null || typeof obj !== "object" && typeof obj !== "function") { return { "default": obj }; } var cache = _getRequireWildcardCache(nodeInterop); if (cache && cache.has(obj)) { return cache.get(obj); } var newObj = {}; var hasPropertyDescriptor = Object.defineProperty && Object.getOwnPropertyDescriptor; for (var key in obj) { if (key !== "default" && Object.prototype.hasOwnProperty.call(obj, key)) { var desc = hasPropertyDescriptor ? Object.getOwnPropertyDescriptor(obj, key) : null; if (desc && (desc.get || desc.set)) { Object.defineProperty(newObj, key, desc); } else { newObj[key] = obj[key]; } } } newObj["default"] = obj; if (cache) { cache.set(obj, newObj); } return newObj; }
|
|
24
|
+
function ownKeys(object, enumerableOnly) { var keys = Object.keys(object); if (Object.getOwnPropertySymbols) { var symbols = Object.getOwnPropertySymbols(object); if (enumerableOnly) { symbols = symbols.filter(function (sym) { return Object.getOwnPropertyDescriptor(object, sym).enumerable; }); } keys.push.apply(keys, symbols); } return keys; }
|
|
25
|
+
function _objectSpread(target) { for (var i = 1; i < arguments.length; i++) { var source = arguments[i] != null ? arguments[i] : {}; if (i % 2) { ownKeys(Object(source), true).forEach(function (key) { (0, _defineProperty2["default"])(target, key, source[key]); }); } else if (Object.getOwnPropertyDescriptors) { Object.defineProperties(target, Object.getOwnPropertyDescriptors(source)); } else { ownKeys(Object(source)).forEach(function (key) { Object.defineProperty(target, key, Object.getOwnPropertyDescriptor(source, key)); }); } } return target; }
|
|
24
26
|
function _callSuper(_this, derived, args) {
|
|
25
27
|
function isNativeReflectConstruct() {
|
|
26
28
|
if (typeof Reflect === "undefined" || !Reflect.construct) return false;
|
|
@@ -52,20 +54,16 @@ var BankSelection = exports.BankSelection = /*#__PURE__*/function (_Component) {
|
|
|
52
54
|
var _ref2 = (0, _slicedToArray2["default"])(_ref, 1),
|
|
53
55
|
banks = _ref2[0];
|
|
54
56
|
return banks.map(function (b) {
|
|
55
|
-
return {
|
|
56
|
-
|
|
57
|
-
|
|
58
|
-
archived: b.archived
|
|
59
|
-
};
|
|
57
|
+
return _objectSpread(_objectSpread({}, b), {}, {
|
|
58
|
+
text: b.title
|
|
59
|
+
});
|
|
60
60
|
});
|
|
61
61
|
});
|
|
62
62
|
});
|
|
63
63
|
(0, _defineProperty2["default"])(_this2, "onSelect", function (e, bankOption) {
|
|
64
|
-
return _this2.props.onBankSelection(e, {
|
|
65
|
-
|
|
66
|
-
|
|
67
|
-
archived: bankOption.archived
|
|
68
|
-
});
|
|
64
|
+
return _this2.props.onBankSelection(e, _objectSpread(_objectSpread({}, bankOption), {}, {
|
|
65
|
+
title: bankOption.text
|
|
66
|
+
}));
|
|
69
67
|
});
|
|
70
68
|
_this2.inputRef = null;
|
|
71
69
|
return _this2;
|
|
@@ -97,11 +95,9 @@ var BankSelection = exports.BankSelection = /*#__PURE__*/function (_Component) {
|
|
|
97
95
|
key: "selectedOption",
|
|
98
96
|
value: function selectedOption() {
|
|
99
97
|
var selectedBank = this.props.selectedBank;
|
|
100
|
-
return selectedBank ? {
|
|
101
|
-
|
|
102
|
-
|
|
103
|
-
archived: selectedBank.archived
|
|
104
|
-
} : null;
|
|
98
|
+
return selectedBank ? _objectSpread(_objectSpread({}, selectedBank), {}, {
|
|
99
|
+
text: selectedBank.title
|
|
100
|
+
}) : null;
|
|
105
101
|
}
|
|
106
102
|
}, {
|
|
107
103
|
key: "render",
|
|
@@ -11,6 +11,9 @@ var _quizCommon = require("@instructure/quiz-common");
|
|
|
11
11
|
var addBanks = function addBanks(state, banks) {
|
|
12
12
|
return state.mergeDeep((0, _immutable.fromJS)((0, _keyBy["default"])(banks, 'id')));
|
|
13
13
|
};
|
|
14
|
+
var addBank = function addBank(state, payload) {
|
|
15
|
+
return state.set(payload.id, payload.bank);
|
|
16
|
+
};
|
|
14
17
|
var setBankFilters = function setBankFilters(state, _ref) {
|
|
15
18
|
var bankId = _ref.bankId,
|
|
16
19
|
filters = _ref.filters;
|
|
@@ -36,6 +39,8 @@ var _default = exports["default"] = function _default() {
|
|
|
36
39
|
switch (action.type) {
|
|
37
40
|
case _quizCommon.ADD_BANKS:
|
|
38
41
|
return addBanks(state, action.payload);
|
|
42
|
+
case _quizCommon.ADD_BANK:
|
|
43
|
+
return addBank(state, action.payload);
|
|
39
44
|
case _quizCommon.SET_BANK_FILTERS:
|
|
40
45
|
return setBankFilters(state, action.payload);
|
|
41
46
|
case _quizCommon.ASSOCIATE_ENTRIES:
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@instructure/quiz-core",
|
|
3
|
-
"version": "22.2.2-rc.
|
|
3
|
+
"version": "22.2.2-rc.5+277f004bf",
|
|
4
4
|
"license": "MIT",
|
|
5
5
|
"description": "The Quiz React SDK by Instructure Inc.",
|
|
6
6
|
"author": "Instructure, Inc. Engineering and Product Design",
|
|
@@ -46,11 +46,11 @@
|
|
|
46
46
|
"@instructure/emotion": "10.14.0",
|
|
47
47
|
"@instructure/grading-utils": "^1.0.0",
|
|
48
48
|
"@instructure/outcomes-ui": "3.2.3",
|
|
49
|
-
"@instructure/quiz-common": "22.2.2-rc.
|
|
50
|
-
"@instructure/quiz-i18n": "22.2.2-rc.
|
|
51
|
-
"@instructure/quiz-interactions": "22.2.2-rc.
|
|
52
|
-
"@instructure/quiz-number-input": "22.2.2-rc.
|
|
53
|
-
"@instructure/quiz-rce": "22.2.2-rc.
|
|
49
|
+
"@instructure/quiz-common": "22.2.2-rc.5+277f004bf",
|
|
50
|
+
"@instructure/quiz-i18n": "22.2.2-rc.5+277f004bf",
|
|
51
|
+
"@instructure/quiz-interactions": "22.2.2-rc.5+277f004bf",
|
|
52
|
+
"@instructure/quiz-number-input": "22.2.2-rc.5+277f004bf",
|
|
53
|
+
"@instructure/quiz-rce": "22.2.2-rc.5+277f004bf",
|
|
54
54
|
"@instructure/ui-a11y-content": "10.14.0",
|
|
55
55
|
"@instructure/ui-alerts": "10.14.0",
|
|
56
56
|
"@instructure/ui-avatar": "10.14.0",
|
|
@@ -109,7 +109,7 @@
|
|
|
109
109
|
"file-saver": "~2.0.5",
|
|
110
110
|
"humps": "^2.0.0",
|
|
111
111
|
"immutable": "^3.8.1",
|
|
112
|
-
"instructure-validations": "22.2.2-rc.
|
|
112
|
+
"instructure-validations": "22.2.2-rc.5+277f004bf",
|
|
113
113
|
"ipaddr.js": "^1.5.4",
|
|
114
114
|
"isomorphic-fetch": "^2.2.0",
|
|
115
115
|
"isuuid": "^0.1.0",
|
|
@@ -158,7 +158,7 @@
|
|
|
158
158
|
"jquery": "^2.2.3",
|
|
159
159
|
"karma-junit-reporter": "^2.0.1",
|
|
160
160
|
"most-subject": "^5.3.0",
|
|
161
|
-
"quiz-presets": "22.2.2-rc.
|
|
161
|
+
"quiz-presets": "22.2.2-rc.5+277f004bf",
|
|
162
162
|
"react": "^16.8.6",
|
|
163
163
|
"react-addons-test-utils": "^15.6.2",
|
|
164
164
|
"react-dom": "^16.8.6",
|
|
@@ -174,5 +174,5 @@
|
|
|
174
174
|
"publishConfig": {
|
|
175
175
|
"access": "public"
|
|
176
176
|
},
|
|
177
|
-
"gitHead": "
|
|
177
|
+
"gitHead": "277f004bfc90c617b69fd8e017cabdc5ddfe70e5"
|
|
178
178
|
}
|