@instructure/quiz-core 20.30.1-snapshot.1 → 20.30.1-snapshot.3
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/banks/components/Banks/presenter.js +1 -1
- package/es/banks/components/NavWrapper/presenter.js +1 -1
- package/es/banks/components/SharingModal/ShareList/ShareList.examples.js +10 -10
- package/es/building/components/resources/quizEntry/QuizEntryEdit/Footer/styles.js +1 -2
- package/es/building/components/resources/quizEntry/QuizEntryEdit/styles.js +1 -2
- package/es/common/components/ImportModal/index.js +3 -3
- package/es/common/components/PrintFontSizeModal/presenter.js +1 -1
- package/es/common/components/RceConfigProvider/presenter.js +1 -0
- package/es/common/components/RceConfigProvider/rceConfigFetcher.js +1 -1
- package/es/common/components/layout/sidebar/Sidebar/Sidebar.examples.js +2 -2
- package/es/common/components/shared/overlay/index.js +1 -1
- package/es/common/kinesis/client.js +2 -2
- package/es/common/records/QuizSession.js +1 -0
- package/es/common/util/componentForItem.js +1 -1
- package/es/common/util/interactionTypeRecordForItem.js +1 -1
- package/es/index.js +6 -6
- package/es/moderating/components/resources/AccommodationsModal/index.js +21 -2
- package/es/moderating/components/resources/OutstandingQuizzesModal/OutstandingQuizzesModal.examples.js +40 -40
- package/es/moderating/components/sidebar/ModerateTray/presenter.js +95 -22
- package/es/reporting/api/getAnalysesExport.js +1 -1
- package/es/reporting/components/itemAnalysis/AnswerFrequencySummary/styles.js +2 -2
- package/es/reporting/components/quizAnalysis/QuizAnalysisOverview.js +1 -1
- package/es/reporting/components/resources/NewQuizAndItemAnalysis/AnswerFrequencySummary/LegacyChoiceType/ChoiceTypeTableRow/styles.js +1 -1
- package/es/reporting/components/resources/NewQuizAndItemAnalysis/AnswerFrequencySummary/MatchingType/MatchingTypeTable/styles.js +1 -1
- package/es/reporting/components/resources/NewQuizAndItemAnalysis/AnswerFrequencySummary/shared/AggregationTable/styles.js +3 -3
- package/es/reporting/components/resources/NewQuizAndItemAnalysis/AnswerFrequencySummary/shared/ChoiceTypeTable/styles.js +2 -2
- package/es/reporting/components/resources/NewQuizAndItemAnalysis/NewQuizAnalysis/popoverContent.js +3 -3
- package/es/reporting/components/resources/NewQuizAndItemAnalysis/NewQuizAnalysis/presenter.js +1 -1
- package/es/reporting/components/resources/QuizAndItemAnalysis/presenter.js +1 -1
- package/lib/banks/components/Banks/presenter.js +1 -1
- package/lib/banks/components/NavWrapper/presenter.js +1 -1
- package/lib/banks/components/SharingModal/ShareList/ShareList.examples.js +10 -10
- package/lib/building/components/resources/quizEntry/QuizEntryEdit/Footer/styles.js +1 -2
- package/lib/building/components/resources/quizEntry/QuizEntryEdit/styles.js +1 -2
- package/lib/common/components/ImportModal/index.js +3 -3
- package/lib/common/components/PrintFontSizeModal/presenter.js +1 -1
- package/lib/common/components/RceConfigProvider/presenter.js +1 -0
- package/lib/common/components/RceConfigProvider/rceConfigFetcher.js +1 -1
- package/lib/common/components/layout/sidebar/Sidebar/Sidebar.examples.js +2 -2
- package/lib/common/components/shared/overlay/index.js +1 -1
- package/lib/common/kinesis/client.js +2 -2
- package/lib/common/records/QuizSession.js +1 -0
- package/lib/common/util/componentForItem.js +1 -1
- package/lib/common/util/interactionTypeRecordForItem.js +1 -1
- package/lib/moderating/components/resources/AccommodationsModal/index.js +21 -2
- package/lib/moderating/components/resources/OutstandingQuizzesModal/OutstandingQuizzesModal.examples.js +40 -40
- package/lib/moderating/components/sidebar/ModerateTray/presenter.js +95 -22
- package/lib/reporting/api/getAnalysesExport.js +1 -1
- package/lib/reporting/components/itemAnalysis/AnswerFrequencySummary/styles.js +2 -2
- package/lib/reporting/components/quizAnalysis/QuizAnalysisOverview.js +1 -1
- package/lib/reporting/components/resources/NewQuizAndItemAnalysis/AnswerFrequencySummary/LegacyChoiceType/ChoiceTypeTableRow/styles.js +1 -1
- package/lib/reporting/components/resources/NewQuizAndItemAnalysis/AnswerFrequencySummary/MatchingType/MatchingTypeTable/styles.js +1 -1
- package/lib/reporting/components/resources/NewQuizAndItemAnalysis/AnswerFrequencySummary/shared/AggregationTable/styles.js +3 -3
- package/lib/reporting/components/resources/NewQuizAndItemAnalysis/AnswerFrequencySummary/shared/ChoiceTypeTable/styles.js +2 -2
- package/lib/reporting/components/resources/NewQuizAndItemAnalysis/NewQuizAnalysis/popoverContent.js +3 -3
- package/lib/reporting/components/resources/NewQuizAndItemAnalysis/NewQuizAnalysis/presenter.js +1 -1
- package/lib/reporting/components/resources/QuizAndItemAnalysis/presenter.js +1 -1
- package/package.json +9 -9
|
@@ -13,13 +13,13 @@ var generateStyle = function generateStyle(componentTheme) {
|
|
|
13
13
|
width: '46px',
|
|
14
14
|
justifyContent: 'center',
|
|
15
15
|
alignItems: 'center',
|
|
16
|
-
|
|
16
|
+
svg: {
|
|
17
17
|
fill: 'white'
|
|
18
18
|
}
|
|
19
19
|
},
|
|
20
20
|
collapsingTable: {
|
|
21
21
|
minWidth: '500px',
|
|
22
|
-
|
|
22
|
+
table: {
|
|
23
23
|
borderCollapse: 'separate',
|
|
24
24
|
borderSpacing: '0 12px'
|
|
25
25
|
},
|
|
@@ -132,7 +132,7 @@ var generateStyle = function generateStyle(componentTheme) {
|
|
|
132
132
|
paddingLeft: '45px'
|
|
133
133
|
},
|
|
134
134
|
iconWhite: {
|
|
135
|
-
|
|
135
|
+
svg: {
|
|
136
136
|
fill: 'white'
|
|
137
137
|
}
|
|
138
138
|
},
|
|
@@ -20,7 +20,7 @@ var generateStyle = function generateStyle(componentTheme, props) {
|
|
|
20
20
|
},
|
|
21
21
|
tableWidthMax: {},
|
|
22
22
|
tableContainer: (0, _objectSpread2.default)((0, _objectSpread2.default)({}, tableContainerStyles), {}, {
|
|
23
|
-
|
|
23
|
+
table: {
|
|
24
24
|
borderCollapse: 'separate',
|
|
25
25
|
borderSpacing: '0 1px'
|
|
26
26
|
},
|
|
@@ -50,7 +50,7 @@ var generateStyle = function generateStyle(componentTheme, props) {
|
|
|
50
50
|
},
|
|
51
51
|
iconCorrect: {
|
|
52
52
|
backgroundColor: componentTheme.colorGreen,
|
|
53
|
-
|
|
53
|
+
svg: {
|
|
54
54
|
fill: 'white'
|
|
55
55
|
}
|
|
56
56
|
},
|
package/lib/reporting/components/resources/NewQuizAndItemAnalysis/NewQuizAnalysis/popoverContent.js
CHANGED
|
@@ -13,8 +13,8 @@ var standardDeviation = {
|
|
|
13
13
|
};
|
|
14
14
|
exports.standardDeviation = standardDeviation;
|
|
15
15
|
var cronbachsAlpha = {
|
|
16
|
-
title: (0, _formatMessage.default)(
|
|
17
|
-
body: (0, _formatMessage.default)(
|
|
18
|
-
screenReaderLabel: (0, _formatMessage.default)(
|
|
16
|
+
title: (0, _formatMessage.default)("Cronbach's Alpha"),
|
|
17
|
+
body: (0, _formatMessage.default)("Cronbach's alpha is an internal consistency measure that estimates the reliability of a quiz. Values range from 0 to 1, with higher values indicating greater reliability."),
|
|
18
|
+
screenReaderLabel: (0, _formatMessage.default)("Cronbach's alpha tooltip")
|
|
19
19
|
};
|
|
20
20
|
exports.cronbachsAlpha = cronbachsAlpha;
|
package/lib/reporting/components/resources/NewQuizAndItemAnalysis/NewQuizAnalysis/presenter.js
CHANGED
|
@@ -59,7 +59,7 @@ var NewQuizAnalysis = (_dec = (0, _emotion.withStyle)(_styles.default, _theme.de
|
|
|
59
59
|
}), (0, _emotion.jsx)(_index3.default, {
|
|
60
60
|
metricKey: "cronbachs_alpha",
|
|
61
61
|
value: scores === null || scores === void 0 ? void 0 : scores.cronbachs_alpha,
|
|
62
|
-
label: (0, _formatMessage.default)(
|
|
62
|
+
label: (0, _formatMessage.default)("Cronbach's Alpha"),
|
|
63
63
|
popoverDescription: _popoverContent.cronbachsAlpha
|
|
64
64
|
})));
|
|
65
65
|
};
|
|
@@ -169,7 +169,7 @@ var QuizAndItemAnalysis = (_dec = (0, _emotion.withStyle)(_styles.default, _them
|
|
|
169
169
|
case 'cronbachsAlpha':
|
|
170
170
|
metrics.push((0, _emotion.jsx)(_index4.default, {
|
|
171
171
|
key: "cronbachsAlpha",
|
|
172
|
-
renderLabel: (0, _formatMessage.default)(
|
|
172
|
+
renderLabel: (0, _formatMessage.default)("Cronbach's Alpha"),
|
|
173
173
|
renderValue: quizAnalysis.cronbachsAlpha(),
|
|
174
174
|
customStyles: _this2.props.styles.metric,
|
|
175
175
|
isGroupChild: true
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@instructure/quiz-core",
|
|
3
|
-
"version": "20.30.1-snapshot.
|
|
3
|
+
"version": "20.30.1-snapshot.3+24f83b00c",
|
|
4
4
|
"license": "MIT",
|
|
5
5
|
"description": "The Quiz React SDK by Instructure Inc.",
|
|
6
6
|
"author": "Instructure, Inc. Engineering and Product Design",
|
|
@@ -45,11 +45,11 @@
|
|
|
45
45
|
"@instructure/emotion": "^8.51.0",
|
|
46
46
|
"@instructure/grading-utils": "^1.0.0",
|
|
47
47
|
"@instructure/outcomes-ui": "^3.2.2",
|
|
48
|
-
"@instructure/quiz-common": "20.30.1-snapshot.
|
|
49
|
-
"@instructure/quiz-i18n": "20.30.1-snapshot.
|
|
50
|
-
"@instructure/quiz-interactions": "20.30.1-snapshot.
|
|
51
|
-
"@instructure/quiz-number-input": "20.30.1-snapshot.
|
|
52
|
-
"@instructure/quiz-rce": "20.30.1-snapshot.
|
|
48
|
+
"@instructure/quiz-common": "20.30.1-snapshot.3+24f83b00c",
|
|
49
|
+
"@instructure/quiz-i18n": "20.30.1-snapshot.3+24f83b00c",
|
|
50
|
+
"@instructure/quiz-interactions": "20.30.1-snapshot.3+24f83b00c",
|
|
51
|
+
"@instructure/quiz-number-input": "20.30.1-snapshot.3+24f83b00c",
|
|
52
|
+
"@instructure/quiz-rce": "20.30.1-snapshot.3+24f83b00c",
|
|
53
53
|
"@instructure/ui-a11y-content": "^8.51.0",
|
|
54
54
|
"@instructure/ui-alerts": "^8.51.0",
|
|
55
55
|
"@instructure/ui-avatar": "^8.51.0",
|
|
@@ -113,7 +113,7 @@
|
|
|
113
113
|
"file-saver": "~2.0.5",
|
|
114
114
|
"humps": "^2.0.0",
|
|
115
115
|
"immutable": "^3.8.1",
|
|
116
|
-
"instructure-validations": "20.30.1-snapshot.
|
|
116
|
+
"instructure-validations": "20.30.1-snapshot.3+24f83b00c",
|
|
117
117
|
"ipaddr.js": "^1.5.4",
|
|
118
118
|
"isomorphic-fetch": "^2.2.0",
|
|
119
119
|
"isuuid": "^0.1.0",
|
|
@@ -162,7 +162,7 @@
|
|
|
162
162
|
"jquery": "^2.2.3",
|
|
163
163
|
"karma-junit-reporter": "^2.0.1",
|
|
164
164
|
"most-subject": "^5.3.0",
|
|
165
|
-
"quiz-presets": "20.30.1-snapshot.
|
|
165
|
+
"quiz-presets": "20.30.1-snapshot.3+24f83b00c",
|
|
166
166
|
"react": "^16.8.6",
|
|
167
167
|
"react-addons-test-utils": "^15.6.2",
|
|
168
168
|
"react-dom": "^16.8.6",
|
|
@@ -178,5 +178,5 @@
|
|
|
178
178
|
"publishConfig": {
|
|
179
179
|
"access": "public"
|
|
180
180
|
},
|
|
181
|
-
"gitHead": "
|
|
181
|
+
"gitHead": "24f83b00c3dd8d67458181bc77faed421ea5de91"
|
|
182
182
|
}
|