@citolab/qti-components 3.0.41 → 3.0.43
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/index.cjs +60 -48
- package/index.css +14 -0
- package/index.d.ts +2 -1
- package/index.js +60 -48
- package/lab/qti-context/qti-context.d.ts +7 -0
- package/lab/qti-item/qti-item.d.ts +4 -14
- package/lab/qti-manual-scoring/qti-manual-scoring.d.ts +8 -0
- package/lab/qti-test/index.d.ts +2 -0
- package/lab/qti-test/qti-test.d.ts +5 -0
- package/lab/qti-transform/qti-transform.d.ts +1 -0
- package/lib/qti-base/qti-companion-materials-info/qti-companion-materials-info.d.ts +1 -1
- package/lib/qti-base/qti-interaction/qti-extended-text-interaction/qti-extended-text-interaction.d.ts +5 -27
- package/lib/qti-base/qti-item-body/qti-item-body.d.ts +1 -0
- package/lib/qti-base/qti-preview/qti-media-interaction/qti-media-interaction.d.ts +1 -1
- package/lib/qti-base/qti-rubric-block/qti-content-body.d.ts +2 -0
- package/lib/qti-base/qti-rubric-block/qti-rubric-block.d.ts +13 -0
- package/package.json +3 -2
package/index.css
CHANGED
|
@@ -2170,6 +2170,12 @@ qti-prompt {
|
|
|
2170
2170
|
.qti-input-control-hidden qti-choice:before, .qti-input-control-hidden qti-choice:after {
|
|
2171
2171
|
content: unset !important;
|
|
2172
2172
|
}
|
|
2173
|
+
qti-rubric-block {
|
|
2174
|
+
display: block;
|
|
2175
|
+
}
|
|
2176
|
+
qti-content-body {
|
|
2177
|
+
display: block;
|
|
2178
|
+
}
|
|
2173
2179
|
qti-modal-feedback[showstatus=on] {
|
|
2174
2180
|
position: absolute;
|
|
2175
2181
|
margin-left: auto;
|
|
@@ -5095,6 +5101,7 @@ qti-modal-feedback[showstatus=on] {
|
|
|
5095
5101
|
/* Choice as checkbox */
|
|
5096
5102
|
qti-hottext {
|
|
5097
5103
|
vertical-align: bottom;
|
|
5104
|
+
position: relative;
|
|
5098
5105
|
}
|
|
5099
5106
|
|
|
5100
5107
|
/* with qti-input-control-hidden */
|
|
@@ -7061,6 +7068,10 @@ qti-choice-interaction[orientation=horizontal] {
|
|
|
7061
7068
|
}
|
|
7062
7069
|
|
|
7063
7070
|
/* Choice as checkbox */
|
|
7071
|
+
qti-simple-choice {
|
|
7072
|
+
position: relative;
|
|
7073
|
+
}
|
|
7074
|
+
|
|
7064
7075
|
/* with qti-input-control-hidden */
|
|
7065
7076
|
.qti-input-control-hidden qti-simple-choice:before, .qti-input-control-hidden qti-simple-choice:after {
|
|
7066
7077
|
content: unset !important;
|
|
@@ -13980,6 +13991,9 @@ qti-match-interaction.qti-match-tabular qti-simple-match-set:last-of-type qti-si
|
|
|
13980
13991
|
qti-match-interaction.qti-match-tabular qti-simple-match-set:last-of-type qti-simple-associable-choice > * {
|
|
13981
13992
|
display: block !important;
|
|
13982
13993
|
}
|
|
13994
|
+
qti-slider-interaction {
|
|
13995
|
+
border: 2px solid orange;
|
|
13996
|
+
}
|
|
13983
13997
|
|
|
13984
13998
|
.qti-theme-raised {
|
|
13985
13999
|
/* < usabled classes to extend in qti-components > */
|
package/index.d.ts
CHANGED
|
@@ -45,7 +45,8 @@ export * from './lab/qti-custom/qti-custom-operator/qti-custom-operator-numeric'
|
|
|
45
45
|
export * from './lab/qti-custom/qti-custom-operator/qti-custom-operator-numeric-parse-nl';
|
|
46
46
|
export * from './lab/qti-custom/qti-custom-operator/qti-custom-operator-remove-spaces';
|
|
47
47
|
export * from './lab/qti-custom/qti-custom-operator/qti-custom-operator-trim';
|
|
48
|
-
export * from './lab/qti-test
|
|
48
|
+
export * from './lab/qti-test';
|
|
49
49
|
export * from './lab/qti-item/qti-item';
|
|
50
50
|
export * from './lib/utilities/choice/choices';
|
|
51
51
|
export * from './lab/qti-transform/qti-transform';
|
|
52
|
+
export * from './lab/qti-manual-scoring/qti-manual-scoring';
|