@instructure/quiz-core 18.9.2 → 19.0.0
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/CHANGELOG.md +8 -0
- package/es/banks/components/BanksList/presenter.js +1 -1
- package/es/common/components/resources/stimulus/StimulusShowInfo/index.js +1 -1
- package/es/common/components/shared/TagDisplay/index.js +1 -1
- package/es/reporting/components/resources/NewQuizAndItemAnalysis/AnalysisMetric/presenter.js +1 -1
- package/es/reporting/components/resources/NewQuizAndItemAnalysis/AnalysisPopoverMetric/presenter.js +1 -1
- package/es/reporting/components/resources/NewQuizAndItemAnalysis/AnswerFrequencySummary/LegacyChoiceType/ChoiceTypeTableRow/presenter.js +4 -4
- package/es/reporting/components/resources/NewQuizAndItemAnalysis/AnswerFrequencySummary/MatchingType/MatchingTypeTable/presenter.js +4 -4
- package/es/reporting/components/resources/NewQuizAndItemAnalysis/AnswerFrequencySummary/shared/AggregationTable/presenter.js +3 -3
- package/es/reporting/components/resources/NewQuizAndItemAnalysis/ExportButton/index.js +1 -1
- package/es/reporting/components/resources/NewQuizAndItemAnalysis/MetricPopover/presenter.js +2 -2
- package/es/reporting/components/resources/NewQuizAndItemAnalysis/charts/ScoreDistribution/presenter.js +1 -1
- package/es/reporting/components/resources/NewQuizAndItemAnalysis/presenter.js +3 -3
- package/lib/banks/components/BanksList/presenter.js +1 -1
- package/lib/common/components/resources/stimulus/StimulusShowInfo/index.js +1 -1
- package/lib/common/components/shared/TagDisplay/index.js +1 -1
- package/lib/reporting/components/resources/NewQuizAndItemAnalysis/AnalysisMetric/presenter.js +1 -1
- package/lib/reporting/components/resources/NewQuizAndItemAnalysis/AnalysisPopoverMetric/presenter.js +1 -1
- package/lib/reporting/components/resources/NewQuizAndItemAnalysis/AnswerFrequencySummary/LegacyChoiceType/ChoiceTypeTableRow/presenter.js +4 -4
- package/lib/reporting/components/resources/NewQuizAndItemAnalysis/AnswerFrequencySummary/MatchingType/MatchingTypeTable/presenter.js +4 -4
- package/lib/reporting/components/resources/NewQuizAndItemAnalysis/AnswerFrequencySummary/shared/AggregationTable/presenter.js +3 -3
- package/lib/reporting/components/resources/NewQuizAndItemAnalysis/ExportButton/index.js +1 -1
- package/lib/reporting/components/resources/NewQuizAndItemAnalysis/MetricPopover/presenter.js +2 -2
- package/lib/reporting/components/resources/NewQuizAndItemAnalysis/charts/ScoreDistribution/presenter.js +1 -1
- package/lib/reporting/components/resources/NewQuizAndItemAnalysis/presenter.js +3 -3
- package/package.json +58 -57
package/CHANGELOG.md
CHANGED
|
@@ -3,6 +3,14 @@
|
|
|
3
3
|
All notable changes to this project will be documented in this file.
|
|
4
4
|
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
|
|
5
5
|
|
|
6
|
+
# [19.0.0](https://gerrit.instructure.com/quizzes-ui/compare/v18.9.2...v19.0.0) (2023-12-08)
|
|
7
|
+
|
|
8
|
+
**Note:** Version bump only for package @instructure/quiz-core
|
|
9
|
+
|
|
10
|
+
|
|
11
|
+
|
|
12
|
+
|
|
13
|
+
|
|
6
14
|
## [18.9.2](https://gerrit.instructure.com/quizzes-ui/compare/v18.9.1...v18.9.2) (2023-12-07)
|
|
7
15
|
|
|
8
16
|
|
|
@@ -266,7 +266,7 @@ export var BanksList = (_dec = themeable(theme, styles), _dec(_class = (_temp =
|
|
|
266
266
|
className: styles.bankTitle
|
|
267
267
|
}, /*#__PURE__*/React.createElement(Link, {
|
|
268
268
|
onClick: navigateToBank(bank.id),
|
|
269
|
-
|
|
269
|
+
themeOverride: {
|
|
270
270
|
color: _this.theme.bankTitleLinkColor,
|
|
271
271
|
hoverColor: _this.theme.bankTitleLinkHoverColor
|
|
272
272
|
},
|
|
@@ -51,7 +51,7 @@ var StimulusShowInfo = /*#__PURE__*/function (_Component) {
|
|
|
51
51
|
as: "h2",
|
|
52
52
|
color: "primary",
|
|
53
53
|
margin: "0 0 small",
|
|
54
|
-
|
|
54
|
+
themeOverride: {
|
|
55
55
|
h2FontWeight: '700'
|
|
56
56
|
}
|
|
57
57
|
}, this.props.stimulus.title), instructions, /*#__PURE__*/React.createElement("div", {
|
|
@@ -54,7 +54,7 @@ export var TagDisplay = (_dec = themeable(theme, styles), _dec(_class = (_temp =
|
|
|
54
54
|
className: styles.tags,
|
|
55
55
|
"aria-label": t('question tags')
|
|
56
56
|
}, visible, extra > 0 && /*#__PURE__*/React.createElement(Tag, {
|
|
57
|
-
|
|
57
|
+
themeOverride: {
|
|
58
58
|
defaultBackground: '#FFFFFF'
|
|
59
59
|
},
|
|
60
60
|
text: /*#__PURE__*/React.createElement(AccessibleContent, {
|
package/es/reporting/components/resources/NewQuizAndItemAnalysis/AnalysisMetric/presenter.js
CHANGED
|
@@ -43,7 +43,7 @@ export var AnalysisMetric = (_dec = themeable(theme, styles), _dec(_class = (_te
|
|
|
43
43
|
"data-automation": dataAutomation,
|
|
44
44
|
className: styles.metricWrapper
|
|
45
45
|
}, /*#__PURE__*/React.createElement(Metric, {
|
|
46
|
-
|
|
46
|
+
themeOverride: {
|
|
47
47
|
valueFontWeight: 500,
|
|
48
48
|
padding: '0'
|
|
49
49
|
},
|
package/es/reporting/components/resources/NewQuizAndItemAnalysis/AnalysisPopoverMetric/presenter.js
CHANGED
|
@@ -51,7 +51,7 @@ export var AnalysisPopoverMetric = (_dec = themeable(theme, styles), _dec(_class
|
|
|
51
51
|
popoverDescription = _this$props.popoverDescription,
|
|
52
52
|
value = _this$props.value;
|
|
53
53
|
return /*#__PURE__*/React.createElement(Metric, {
|
|
54
|
-
|
|
54
|
+
themeOverride: {
|
|
55
55
|
valueFontWeight: 500,
|
|
56
56
|
padding: '0'
|
|
57
57
|
},
|
|
@@ -86,19 +86,19 @@ export var ChoiceTypeTableRow = (_dec = themeable(theme, styles), _dec(_class =
|
|
|
86
86
|
return /*#__PURE__*/React.createElement(Table.Row, {
|
|
87
87
|
key: _this.props.choiceIndex
|
|
88
88
|
}, /*#__PURE__*/React.createElement(Table.Cell, {
|
|
89
|
-
|
|
89
|
+
themeOverride: {
|
|
90
90
|
padding: '0px'
|
|
91
91
|
}
|
|
92
92
|
}, /*#__PURE__*/React.createElement(ScreenReaderContent, null, _this.answerLabel(correct)), _this.renderIcon(correct)), /*#__PURE__*/React.createElement(Table.RowHeader, {
|
|
93
|
-
|
|
93
|
+
themeOverride: {
|
|
94
94
|
padding: cellPadding
|
|
95
95
|
}
|
|
96
96
|
}, _this.renderMiddleCell(correct, _this.extractChoiceText(choiceBody, correct))), /*#__PURE__*/React.createElement(Table.Cell, {
|
|
97
|
-
|
|
97
|
+
themeOverride: {
|
|
98
98
|
padding: cellPadding
|
|
99
99
|
}
|
|
100
100
|
}, _this.renderMiddleCell(correct, _this.props.choice.count)), /*#__PURE__*/React.createElement(Table.Cell, {
|
|
101
|
-
|
|
101
|
+
themeOverride: {
|
|
102
102
|
padding: cellPadding
|
|
103
103
|
},
|
|
104
104
|
textAlign: "center"
|
|
@@ -73,7 +73,7 @@ export var MatchingTypeTable = (_dec = themeable(theme, styles), _dec(_class = (
|
|
|
73
73
|
return /*#__PURE__*/React.createElement(Table.ColHeader, {
|
|
74
74
|
id: answerNumberHeaderId,
|
|
75
75
|
key: answerNumberHeaderId,
|
|
76
|
-
|
|
76
|
+
themeOverride: {
|
|
77
77
|
padding: '0 0 15px 0'
|
|
78
78
|
},
|
|
79
79
|
textAlign: "center"
|
|
@@ -102,7 +102,7 @@ export var MatchingTypeTable = (_dec = themeable(theme, styles), _dec(_class = (
|
|
|
102
102
|
return /*#__PURE__*/React.createElement(Table.Cell, {
|
|
103
103
|
id: answerNumberCellId,
|
|
104
104
|
key: answerNumberCellId,
|
|
105
|
-
|
|
105
|
+
themeOverride: {
|
|
106
106
|
padding: '0 0 0 0'
|
|
107
107
|
}
|
|
108
108
|
}, /*#__PURE__*/React.createElement("div", {
|
|
@@ -133,7 +133,7 @@ export var MatchingTypeTable = (_dec = themeable(theme, styles), _dec(_class = (
|
|
|
133
133
|
}, /*#__PURE__*/React.createElement(Table.ColHeader, {
|
|
134
134
|
id: categoryHeaderId,
|
|
135
135
|
key: categoryHeaderId,
|
|
136
|
-
|
|
136
|
+
themeOverride: {
|
|
137
137
|
padding: '0 0 15px 0'
|
|
138
138
|
},
|
|
139
139
|
textAlign: "start",
|
|
@@ -160,7 +160,7 @@ export var MatchingTypeTable = (_dec = themeable(theme, styles), _dec(_class = (
|
|
|
160
160
|
}, /*#__PURE__*/React.createElement(Table.RowHeader, {
|
|
161
161
|
id: questionRowHeaderId,
|
|
162
162
|
key: questionRowHeaderId,
|
|
163
|
-
|
|
163
|
+
themeOverride: {
|
|
164
164
|
padding: '12px 0 12px 0'
|
|
165
165
|
}
|
|
166
166
|
}, questionBody), answerCells);
|
|
@@ -88,7 +88,7 @@ export var AggregationTable = (_dec = themeable(theme, styles), _dec(_class = (_
|
|
|
88
88
|
return /*#__PURE__*/React.createElement(Table.Row, {
|
|
89
89
|
key: key
|
|
90
90
|
}, /*#__PURE__*/React.createElement(Table.RowHeader, {
|
|
91
|
-
|
|
91
|
+
themeOverride: {
|
|
92
92
|
padding: '0px'
|
|
93
93
|
}
|
|
94
94
|
}, /*#__PURE__*/React.createElement(ScreenReaderContent, null, label), /*#__PURE__*/React.createElement(Flex, {
|
|
@@ -105,12 +105,12 @@ export var AggregationTable = (_dec = themeable(theme, styles), _dec(_class = (_
|
|
|
105
105
|
}, /*#__PURE__*/React.createElement("div", {
|
|
106
106
|
className: classNames(styles.labelWrapper)
|
|
107
107
|
}, /*#__PURE__*/React.createElement(Text, null, label))))), /*#__PURE__*/React.createElement(Table.Cell, {
|
|
108
|
-
|
|
108
|
+
themeOverride: {
|
|
109
109
|
padding: '0px'
|
|
110
110
|
},
|
|
111
111
|
textAlign: "center"
|
|
112
112
|
}, /*#__PURE__*/React.createElement(Text, null, count)), /*#__PURE__*/React.createElement(Table.Cell, {
|
|
113
|
-
|
|
113
|
+
themeOverride: {
|
|
114
114
|
padding: '0px'
|
|
115
115
|
},
|
|
116
116
|
textAlign: "center"
|
|
@@ -86,7 +86,7 @@ export var MetricPopover = (_dec = themeable(theme, styles), _dec(_class = (_tem
|
|
|
86
86
|
className: styles.popoverTitle,
|
|
87
87
|
level: "h3"
|
|
88
88
|
}, _this.props.title)), /*#__PURE__*/React.createElement("div", null, _this.props.subtitle && /*#__PURE__*/React.createElement(Heading, {
|
|
89
|
-
|
|
89
|
+
themeOverride: {
|
|
90
90
|
h5FontWeight: 700
|
|
91
91
|
},
|
|
92
92
|
level: "h5"
|
|
@@ -103,7 +103,7 @@ export var MetricPopover = (_dec = themeable(theme, styles), _dec(_class = (_tem
|
|
|
103
103
|
value: function renderPopoverTrigger() {
|
|
104
104
|
return /*#__PURE__*/React.createElement(IconButton, {
|
|
105
105
|
size: "small",
|
|
106
|
-
|
|
106
|
+
themeOverride: {
|
|
107
107
|
smallHeight: '18px',
|
|
108
108
|
transform: 'translateY(-1px)'
|
|
109
109
|
},
|
|
@@ -69,7 +69,7 @@ export var ScoreDistribution = (_dec = themeable(theme, styles), _dec(_class = (
|
|
|
69
69
|
className: styles.headingContainer
|
|
70
70
|
}, /*#__PURE__*/React.createElement(Heading, {
|
|
71
71
|
level: "h3",
|
|
72
|
-
|
|
72
|
+
themeOverride: {
|
|
73
73
|
h3FontWeight: 700
|
|
74
74
|
}
|
|
75
75
|
}, t('Score Distribution'))), /*#__PURE__*/React.createElement(QuintileDistribution, {
|
|
@@ -61,7 +61,7 @@ export var NewQuizAndItemAnalysisPresenter = (_dec = themeable(theme, styles), _
|
|
|
61
61
|
var itemAnalyses = _this.props.itemAnalyses || [];
|
|
62
62
|
return /*#__PURE__*/React.createElement(React.Fragment, null, /*#__PURE__*/React.createElement(Heading, {
|
|
63
63
|
level: "h2",
|
|
64
|
-
|
|
64
|
+
themeOverride: {
|
|
65
65
|
h2FontWeight: 700
|
|
66
66
|
},
|
|
67
67
|
color: "primary"
|
|
@@ -115,7 +115,7 @@ export var NewQuizAndItemAnalysisPresenter = (_dec = themeable(theme, styles), _
|
|
|
115
115
|
overflowY: "hidden"
|
|
116
116
|
}, /*#__PURE__*/React.createElement(Heading, {
|
|
117
117
|
level: "h2",
|
|
118
|
-
|
|
118
|
+
themeOverride: {
|
|
119
119
|
h2FontWeight: 700
|
|
120
120
|
},
|
|
121
121
|
margin: "0 x-large 0 0",
|
|
@@ -235,7 +235,7 @@ export var NewQuizAndItemAnalysisPresenter = (_dec = themeable(theme, styles), _
|
|
|
235
235
|
color: "secondary",
|
|
236
236
|
margin: "auto",
|
|
237
237
|
onClick: _this.handleGeneration,
|
|
238
|
-
|
|
238
|
+
themeOverride: {
|
|
239
239
|
lineHeight: '24px'
|
|
240
240
|
}
|
|
241
241
|
}, /*#__PURE__*/React.createElement(Text, {
|
|
@@ -303,7 +303,7 @@ var BanksList = (_dec = (0, _uiThemeable.themeable)(_theme.default, styles), _de
|
|
|
303
303
|
className: styles.bankTitle
|
|
304
304
|
}, /*#__PURE__*/_react.default.createElement(_uiLink.Link, {
|
|
305
305
|
onClick: navigateToBank(bank.id),
|
|
306
|
-
|
|
306
|
+
themeOverride: {
|
|
307
307
|
color: _this.theme.bankTitleLinkColor,
|
|
308
308
|
hoverColor: _this.theme.bankTitleLinkHoverColor
|
|
309
309
|
},
|
|
@@ -72,7 +72,7 @@ var StimulusShowInfo = /*#__PURE__*/function (_Component) {
|
|
|
72
72
|
as: "h2",
|
|
73
73
|
color: "primary",
|
|
74
74
|
margin: "0 0 small",
|
|
75
|
-
|
|
75
|
+
themeOverride: {
|
|
76
76
|
h2FontWeight: '700'
|
|
77
77
|
}
|
|
78
78
|
}, this.props.stimulus.title), instructions, /*#__PURE__*/_react.default.createElement("div", {
|
|
@@ -76,7 +76,7 @@ var TagDisplay = (_dec = (0, _uiThemeable.themeable)(_theme.default, styles), _d
|
|
|
76
76
|
className: styles.tags,
|
|
77
77
|
"aria-label": (0, _formatMessage.default)('question tags')
|
|
78
78
|
}, visible, extra > 0 && /*#__PURE__*/_react.default.createElement(_uiTag.Tag, {
|
|
79
|
-
|
|
79
|
+
themeOverride: {
|
|
80
80
|
defaultBackground: '#FFFFFF'
|
|
81
81
|
},
|
|
82
82
|
text: /*#__PURE__*/_react.default.createElement(_uiA11yContent.AccessibleContent, {
|
package/lib/reporting/components/resources/NewQuizAndItemAnalysis/AnalysisMetric/presenter.js
CHANGED
|
@@ -62,7 +62,7 @@ var AnalysisMetric = (_dec = (0, _uiThemeable.themeable)(_theme.default, styles)
|
|
|
62
62
|
"data-automation": dataAutomation,
|
|
63
63
|
className: styles.metricWrapper
|
|
64
64
|
}, /*#__PURE__*/_react.default.createElement(_uiMetric.Metric, {
|
|
65
|
-
|
|
65
|
+
themeOverride: {
|
|
66
66
|
valueFontWeight: 500,
|
|
67
67
|
padding: '0'
|
|
68
68
|
},
|
package/lib/reporting/components/resources/NewQuizAndItemAnalysis/AnalysisPopoverMetric/presenter.js
CHANGED
|
@@ -71,7 +71,7 @@ var AnalysisPopoverMetric = (_dec = (0, _uiThemeable.themeable)(_theme.default,
|
|
|
71
71
|
popoverDescription = _this$props.popoverDescription,
|
|
72
72
|
value = _this$props.value;
|
|
73
73
|
return /*#__PURE__*/_react.default.createElement(_uiMetric.Metric, {
|
|
74
|
-
|
|
74
|
+
themeOverride: {
|
|
75
75
|
valueFontWeight: 500,
|
|
76
76
|
padding: '0'
|
|
77
77
|
},
|
|
@@ -110,19 +110,19 @@ var ChoiceTypeTableRow = (_dec = (0, _uiThemeable.themeable)(_theme.default, sty
|
|
|
110
110
|
return /*#__PURE__*/_react.default.createElement(_uiTable.Table.Row, {
|
|
111
111
|
key: _this.props.choiceIndex
|
|
112
112
|
}, /*#__PURE__*/_react.default.createElement(_uiTable.Table.Cell, {
|
|
113
|
-
|
|
113
|
+
themeOverride: {
|
|
114
114
|
padding: '0px'
|
|
115
115
|
}
|
|
116
116
|
}, /*#__PURE__*/_react.default.createElement(_uiA11yContent.ScreenReaderContent, null, _this.answerLabel(correct)), _this.renderIcon(correct)), /*#__PURE__*/_react.default.createElement(_uiTable.Table.RowHeader, {
|
|
117
|
-
|
|
117
|
+
themeOverride: {
|
|
118
118
|
padding: cellPadding
|
|
119
119
|
}
|
|
120
120
|
}, _this.renderMiddleCell(correct, _this.extractChoiceText(choiceBody, correct))), /*#__PURE__*/_react.default.createElement(_uiTable.Table.Cell, {
|
|
121
|
-
|
|
121
|
+
themeOverride: {
|
|
122
122
|
padding: cellPadding
|
|
123
123
|
}
|
|
124
124
|
}, _this.renderMiddleCell(correct, _this.props.choice.count)), /*#__PURE__*/_react.default.createElement(_uiTable.Table.Cell, {
|
|
125
|
-
|
|
125
|
+
themeOverride: {
|
|
126
126
|
padding: cellPadding
|
|
127
127
|
},
|
|
128
128
|
textAlign: "center"
|
|
@@ -99,7 +99,7 @@ var MatchingTypeTable = (_dec = (0, _uiThemeable.themeable)(_theme.default, styl
|
|
|
99
99
|
return /*#__PURE__*/_react.default.createElement(_uiTable.Table.ColHeader, {
|
|
100
100
|
id: answerNumberHeaderId,
|
|
101
101
|
key: answerNumberHeaderId,
|
|
102
|
-
|
|
102
|
+
themeOverride: {
|
|
103
103
|
padding: '0 0 15px 0'
|
|
104
104
|
},
|
|
105
105
|
textAlign: "center"
|
|
@@ -128,7 +128,7 @@ var MatchingTypeTable = (_dec = (0, _uiThemeable.themeable)(_theme.default, styl
|
|
|
128
128
|
return /*#__PURE__*/_react.default.createElement(_uiTable.Table.Cell, {
|
|
129
129
|
id: answerNumberCellId,
|
|
130
130
|
key: answerNumberCellId,
|
|
131
|
-
|
|
131
|
+
themeOverride: {
|
|
132
132
|
padding: '0 0 0 0'
|
|
133
133
|
}
|
|
134
134
|
}, /*#__PURE__*/_react.default.createElement("div", {
|
|
@@ -159,7 +159,7 @@ var MatchingTypeTable = (_dec = (0, _uiThemeable.themeable)(_theme.default, styl
|
|
|
159
159
|
}, /*#__PURE__*/_react.default.createElement(_uiTable.Table.ColHeader, {
|
|
160
160
|
id: categoryHeaderId,
|
|
161
161
|
key: categoryHeaderId,
|
|
162
|
-
|
|
162
|
+
themeOverride: {
|
|
163
163
|
padding: '0 0 15px 0'
|
|
164
164
|
},
|
|
165
165
|
textAlign: "start",
|
|
@@ -186,7 +186,7 @@ var MatchingTypeTable = (_dec = (0, _uiThemeable.themeable)(_theme.default, styl
|
|
|
186
186
|
}, /*#__PURE__*/_react.default.createElement(_uiTable.Table.RowHeader, {
|
|
187
187
|
id: questionRowHeaderId,
|
|
188
188
|
key: questionRowHeaderId,
|
|
189
|
-
|
|
189
|
+
themeOverride: {
|
|
190
190
|
padding: '12px 0 12px 0'
|
|
191
191
|
}
|
|
192
192
|
}, questionBody), answerCells);
|
|
@@ -113,7 +113,7 @@ var AggregationTable = (_dec = (0, _uiThemeable.themeable)(_theme.default, style
|
|
|
113
113
|
return /*#__PURE__*/_react.default.createElement(_uiTable.Table.Row, {
|
|
114
114
|
key: key
|
|
115
115
|
}, /*#__PURE__*/_react.default.createElement(_uiTable.Table.RowHeader, {
|
|
116
|
-
|
|
116
|
+
themeOverride: {
|
|
117
117
|
padding: '0px'
|
|
118
118
|
}
|
|
119
119
|
}, /*#__PURE__*/_react.default.createElement(_uiA11yContent.ScreenReaderContent, null, label), /*#__PURE__*/_react.default.createElement(_uiFlex.Flex, {
|
|
@@ -130,12 +130,12 @@ var AggregationTable = (_dec = (0, _uiThemeable.themeable)(_theme.default, style
|
|
|
130
130
|
}, /*#__PURE__*/_react.default.createElement("div", {
|
|
131
131
|
className: (0, _classnames.default)(styles.labelWrapper)
|
|
132
132
|
}, /*#__PURE__*/_react.default.createElement(_uiText.Text, null, label))))), /*#__PURE__*/_react.default.createElement(_uiTable.Table.Cell, {
|
|
133
|
-
|
|
133
|
+
themeOverride: {
|
|
134
134
|
padding: '0px'
|
|
135
135
|
},
|
|
136
136
|
textAlign: "center"
|
|
137
137
|
}, /*#__PURE__*/_react.default.createElement(_uiText.Text, null, count)), /*#__PURE__*/_react.default.createElement(_uiTable.Table.Cell, {
|
|
138
|
-
|
|
138
|
+
themeOverride: {
|
|
139
139
|
padding: '0px'
|
|
140
140
|
},
|
|
141
141
|
textAlign: "center"
|
package/lib/reporting/components/resources/NewQuizAndItemAnalysis/MetricPopover/presenter.js
CHANGED
|
@@ -111,7 +111,7 @@ var MetricPopover = (_dec = (0, _uiThemeable.themeable)(_theme.default, styles),
|
|
|
111
111
|
className: styles.popoverTitle,
|
|
112
112
|
level: "h3"
|
|
113
113
|
}, _this.props.title)), /*#__PURE__*/_react.default.createElement("div", null, _this.props.subtitle && /*#__PURE__*/_react.default.createElement(_uiHeading.Heading, {
|
|
114
|
-
|
|
114
|
+
themeOverride: {
|
|
115
115
|
h5FontWeight: 700
|
|
116
116
|
},
|
|
117
117
|
level: "h5"
|
|
@@ -128,7 +128,7 @@ var MetricPopover = (_dec = (0, _uiThemeable.themeable)(_theme.default, styles),
|
|
|
128
128
|
value: function renderPopoverTrigger() {
|
|
129
129
|
return /*#__PURE__*/_react.default.createElement(_uiButtons.IconButton, {
|
|
130
130
|
size: "small",
|
|
131
|
-
|
|
131
|
+
themeOverride: {
|
|
132
132
|
smallHeight: '18px',
|
|
133
133
|
transform: 'translateY(-1px)'
|
|
134
134
|
},
|
|
@@ -91,7 +91,7 @@ var ScoreDistribution = (_dec = (0, _uiThemeable.themeable)(_theme.default, styl
|
|
|
91
91
|
className: styles.headingContainer
|
|
92
92
|
}, /*#__PURE__*/_react.default.createElement(_uiHeading.Heading, {
|
|
93
93
|
level: "h3",
|
|
94
|
-
|
|
94
|
+
themeOverride: {
|
|
95
95
|
h3FontWeight: 700
|
|
96
96
|
}
|
|
97
97
|
}, (0, _formatMessage.default)('Score Distribution'))), /*#__PURE__*/_react.default.createElement(_index.default, {
|
|
@@ -96,7 +96,7 @@ var NewQuizAndItemAnalysisPresenter = (_dec = (0, _uiThemeable.themeable)(_theme
|
|
|
96
96
|
var itemAnalyses = _this.props.itemAnalyses || [];
|
|
97
97
|
return /*#__PURE__*/_react.default.createElement(_react.default.Fragment, null, /*#__PURE__*/_react.default.createElement(_uiHeading.Heading, {
|
|
98
98
|
level: "h2",
|
|
99
|
-
|
|
99
|
+
themeOverride: {
|
|
100
100
|
h2FontWeight: 700
|
|
101
101
|
},
|
|
102
102
|
color: "primary"
|
|
@@ -150,7 +150,7 @@ var NewQuizAndItemAnalysisPresenter = (_dec = (0, _uiThemeable.themeable)(_theme
|
|
|
150
150
|
overflowY: "hidden"
|
|
151
151
|
}, /*#__PURE__*/_react.default.createElement(_uiHeading.Heading, {
|
|
152
152
|
level: "h2",
|
|
153
|
-
|
|
153
|
+
themeOverride: {
|
|
154
154
|
h2FontWeight: 700
|
|
155
155
|
},
|
|
156
156
|
margin: "0 x-large 0 0",
|
|
@@ -270,7 +270,7 @@ var NewQuizAndItemAnalysisPresenter = (_dec = (0, _uiThemeable.themeable)(_theme
|
|
|
270
270
|
color: "secondary",
|
|
271
271
|
margin: "auto",
|
|
272
272
|
onClick: _this.handleGeneration,
|
|
273
|
-
|
|
273
|
+
themeOverride: {
|
|
274
274
|
lineHeight: '24px'
|
|
275
275
|
}
|
|
276
276
|
}, /*#__PURE__*/_react.default.createElement(_uiText.Text, {
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@instructure/quiz-core",
|
|
3
|
-
"version": "
|
|
3
|
+
"version": "19.0.0",
|
|
4
4
|
"license": "MIT",
|
|
5
5
|
"description": "The Quiz React SDK by Instructure Inc.",
|
|
6
6
|
"author": "Instructure, Inc. Engineering and Product Design",
|
|
@@ -41,61 +41,62 @@
|
|
|
41
41
|
"lib"
|
|
42
42
|
],
|
|
43
43
|
"dependencies": {
|
|
44
|
+
"@instructure/emotion": "^8.48.3",
|
|
44
45
|
"@instructure/grading-utils": "^1.0.0",
|
|
45
46
|
"@instructure/outcomes-ui": "^2.1.9",
|
|
46
|
-
"@instructure/quiz-common": "^
|
|
47
|
-
"@instructure/quiz-i18n": "^
|
|
48
|
-
"@instructure/quiz-interactions": "^
|
|
49
|
-
"@instructure/quiz-number-input": "^
|
|
50
|
-
"@instructure/quiz-rce": "^
|
|
51
|
-
"@instructure/ui-a11y-content": "^
|
|
52
|
-
"@instructure/ui-alerts": "^
|
|
53
|
-
"@instructure/ui-avatar": "^
|
|
54
|
-
"@instructure/ui-billboard": "^
|
|
55
|
-
"@instructure/ui-breadcrumb": "^
|
|
56
|
-
"@instructure/ui-buttons": "^
|
|
57
|
-
"@instructure/ui-checkbox": "^
|
|
58
|
-
"@instructure/ui-color-utils": "^
|
|
59
|
-
"@instructure/ui-dialog": "^
|
|
60
|
-
"@instructure/ui-flex": "^
|
|
61
|
-
"@instructure/ui-focusable": "^
|
|
62
|
-
"@instructure/ui-form-field": "^
|
|
63
|
-
"@instructure/ui-grid": "^
|
|
64
|
-
"@instructure/ui-heading": "^
|
|
47
|
+
"@instructure/quiz-common": "^19.0.0",
|
|
48
|
+
"@instructure/quiz-i18n": "^19.0.0",
|
|
49
|
+
"@instructure/quiz-interactions": "^19.0.0",
|
|
50
|
+
"@instructure/quiz-number-input": "^19.0.0",
|
|
51
|
+
"@instructure/quiz-rce": "^19.0.0",
|
|
52
|
+
"@instructure/ui-a11y-content": "^8.48.3",
|
|
53
|
+
"@instructure/ui-alerts": "^8.48.3",
|
|
54
|
+
"@instructure/ui-avatar": "^8.48.3",
|
|
55
|
+
"@instructure/ui-billboard": "^8.48.3",
|
|
56
|
+
"@instructure/ui-breadcrumb": "^8.48.3",
|
|
57
|
+
"@instructure/ui-buttons": "^8.48.3",
|
|
58
|
+
"@instructure/ui-checkbox": "^8.48.3",
|
|
59
|
+
"@instructure/ui-color-utils": "^8.48.3",
|
|
60
|
+
"@instructure/ui-dialog": "^8.48.3",
|
|
61
|
+
"@instructure/ui-flex": "^8.48.3",
|
|
62
|
+
"@instructure/ui-focusable": "^8.48.3",
|
|
63
|
+
"@instructure/ui-form-field": "^8.48.3",
|
|
64
|
+
"@instructure/ui-grid": "^8.48.3",
|
|
65
|
+
"@instructure/ui-heading": "^8.48.3",
|
|
65
66
|
"@instructure/ui-i18n": "^7.22.1",
|
|
66
|
-
"@instructure/ui-icons": "^
|
|
67
|
-
"@instructure/ui-img": "^
|
|
68
|
-
"@instructure/ui-link": "^
|
|
69
|
-
"@instructure/ui-list": "^
|
|
70
|
-
"@instructure/ui-menu": "^
|
|
71
|
-
"@instructure/ui-metric": "^
|
|
72
|
-
"@instructure/ui-modal": "^
|
|
73
|
-
"@instructure/ui-motion": "^
|
|
74
|
-
"@instructure/ui-number-input": "^
|
|
75
|
-
"@instructure/ui-overlays": "^
|
|
76
|
-
"@instructure/ui-pagination": "^
|
|
77
|
-
"@instructure/ui-popover": "^
|
|
78
|
-
"@instructure/ui-portal": "^
|
|
79
|
-
"@instructure/ui-progress": "^
|
|
80
|
-
"@instructure/ui-prop-types": "^
|
|
81
|
-
"@instructure/ui-radio-input": "^
|
|
82
|
-
"@instructure/ui-react-utils": "^
|
|
83
|
-
"@instructure/ui-select": "^
|
|
84
|
-
"@instructure/ui-simple-select": "^
|
|
85
|
-
"@instructure/ui-spinner": "^
|
|
86
|
-
"@instructure/ui-table": "^
|
|
87
|
-
"@instructure/ui-tabs": "^
|
|
88
|
-
"@instructure/ui-tag": "^
|
|
89
|
-
"@instructure/ui-text": "^
|
|
90
|
-
"@instructure/ui-text-input": "^
|
|
67
|
+
"@instructure/ui-icons": "^8.48.3",
|
|
68
|
+
"@instructure/ui-img": "^8.48.3",
|
|
69
|
+
"@instructure/ui-link": "^8.48.3",
|
|
70
|
+
"@instructure/ui-list": "^8.48.3",
|
|
71
|
+
"@instructure/ui-menu": "^8.48.3",
|
|
72
|
+
"@instructure/ui-metric": "^8.48.3",
|
|
73
|
+
"@instructure/ui-modal": "^8.48.3",
|
|
74
|
+
"@instructure/ui-motion": "^8.48.3",
|
|
75
|
+
"@instructure/ui-number-input": "^8.48.3",
|
|
76
|
+
"@instructure/ui-overlays": "^8.48.3",
|
|
77
|
+
"@instructure/ui-pagination": "^8.48.3",
|
|
78
|
+
"@instructure/ui-popover": "^8.48.3",
|
|
79
|
+
"@instructure/ui-portal": "^8.48.3",
|
|
80
|
+
"@instructure/ui-progress": "^8.48.3",
|
|
81
|
+
"@instructure/ui-prop-types": "^8.48.3",
|
|
82
|
+
"@instructure/ui-radio-input": "^8.48.3",
|
|
83
|
+
"@instructure/ui-react-utils": "^8.48.3",
|
|
84
|
+
"@instructure/ui-select": "^8.48.3",
|
|
85
|
+
"@instructure/ui-simple-select": "^8.48.3",
|
|
86
|
+
"@instructure/ui-spinner": "^8.48.3",
|
|
87
|
+
"@instructure/ui-table": "^8.48.3",
|
|
88
|
+
"@instructure/ui-tabs": "^8.48.3",
|
|
89
|
+
"@instructure/ui-tag": "^8.48.3",
|
|
90
|
+
"@instructure/ui-text": "^8.48.3",
|
|
91
|
+
"@instructure/ui-text-input": "^8.48.3",
|
|
91
92
|
"@instructure/ui-themeable": "^7.22.1",
|
|
92
|
-
"@instructure/ui-themes": "^
|
|
93
|
-
"@instructure/ui-toggle-details": "^
|
|
94
|
-
"@instructure/ui-tooltip": "^
|
|
95
|
-
"@instructure/ui-tray": "^
|
|
96
|
-
"@instructure/ui-truncate-text": "^
|
|
97
|
-
"@instructure/ui-utils": "^
|
|
98
|
-
"@instructure/ui-view": "^
|
|
93
|
+
"@instructure/ui-themes": "^8.48.3",
|
|
94
|
+
"@instructure/ui-toggle-details": "^8.48.3",
|
|
95
|
+
"@instructure/ui-tooltip": "^8.48.3",
|
|
96
|
+
"@instructure/ui-tray": "^8.48.3",
|
|
97
|
+
"@instructure/ui-truncate-text": "^8.48.3",
|
|
98
|
+
"@instructure/ui-utils": "^8.48.3",
|
|
99
|
+
"@instructure/ui-view": "^8.48.3",
|
|
99
100
|
"aws-sdk": "^2.3.2",
|
|
100
101
|
"classnames": "^2.2.5",
|
|
101
102
|
"content-disposition": "^0.5.2",
|
|
@@ -109,7 +110,7 @@
|
|
|
109
110
|
"file-saver": "~2.0.5",
|
|
110
111
|
"humps": "^2.0.0",
|
|
111
112
|
"immutable": "^3.8.1",
|
|
112
|
-
"instructure-validations": "^
|
|
113
|
+
"instructure-validations": "^19.0.0",
|
|
113
114
|
"ipaddr.js": "^1.5.4",
|
|
114
115
|
"isomorphic-fetch": "^2.2.0",
|
|
115
116
|
"isuuid": "^0.1.0",
|
|
@@ -141,8 +142,8 @@
|
|
|
141
142
|
"uuid": "^3.2.1"
|
|
142
143
|
},
|
|
143
144
|
"devDependencies": {
|
|
144
|
-
"@instructure/quiz-scripts": "^
|
|
145
|
-
"@instructure/ui-axe-check": "^
|
|
145
|
+
"@instructure/quiz-scripts": "^19.0.0",
|
|
146
|
+
"@instructure/ui-axe-check": "^8.48.3",
|
|
146
147
|
"@instructure/ui-babel-preset": "^7.22.1",
|
|
147
148
|
"@instructure/ui-karma-config": "^7.22.1",
|
|
148
149
|
"@instructure/ui-postcss-config": "^7.22.1",
|
|
@@ -160,7 +161,7 @@
|
|
|
160
161
|
"intl": "^1.2.4",
|
|
161
162
|
"jquery": "^2.2.3",
|
|
162
163
|
"most-subject": "^5.3.0",
|
|
163
|
-
"quiz-presets": "^
|
|
164
|
+
"quiz-presets": "^19.0.0",
|
|
164
165
|
"react": "^16.8.6",
|
|
165
166
|
"react-addons-test-utils": "^15.6.2",
|
|
166
167
|
"react-dom": "^16.8.6",
|
|
@@ -176,5 +177,5 @@
|
|
|
176
177
|
"publishConfig": {
|
|
177
178
|
"access": "public"
|
|
178
179
|
},
|
|
179
|
-
"gitHead": "
|
|
180
|
+
"gitHead": "080cbf2be218e316025a6be3e28db729dd215126"
|
|
180
181
|
}
|