@citolab/qti-components 6.9.1-beta.73 → 6.9.1-beta.74
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.
|
@@ -670,51 +670,6 @@
|
|
|
670
670
|
}
|
|
671
671
|
]
|
|
672
672
|
},
|
|
673
|
-
{
|
|
674
|
-
"kind": "javascript-module",
|
|
675
|
-
"path": "src/lib/qti-components/qti-assessment-item/item-print-variables.ts",
|
|
676
|
-
"declarations": [
|
|
677
|
-
{
|
|
678
|
-
"kind": "class",
|
|
679
|
-
"description": "",
|
|
680
|
-
"name": "ItemPrintVariables",
|
|
681
|
-
"members": [
|
|
682
|
-
{
|
|
683
|
-
"kind": "field",
|
|
684
|
-
"name": "itemContext",
|
|
685
|
-
"type": {
|
|
686
|
-
"text": "ItemContext | undefined"
|
|
687
|
-
},
|
|
688
|
-
"privacy": "public"
|
|
689
|
-
}
|
|
690
|
-
],
|
|
691
|
-
"superclass": {
|
|
692
|
-
"name": "LitElement",
|
|
693
|
-
"package": "lit"
|
|
694
|
-
},
|
|
695
|
-
"tagName": "item-print-variables",
|
|
696
|
-
"customElement": true
|
|
697
|
-
}
|
|
698
|
-
],
|
|
699
|
-
"exports": [
|
|
700
|
-
{
|
|
701
|
-
"kind": "js",
|
|
702
|
-
"name": "ItemPrintVariables",
|
|
703
|
-
"declaration": {
|
|
704
|
-
"name": "ItemPrintVariables",
|
|
705
|
-
"module": "src/lib/qti-components/qti-assessment-item/item-print-variables.ts"
|
|
706
|
-
}
|
|
707
|
-
},
|
|
708
|
-
{
|
|
709
|
-
"kind": "custom-element-definition",
|
|
710
|
-
"name": "item-print-variables",
|
|
711
|
-
"declaration": {
|
|
712
|
-
"name": "ItemPrintVariables",
|
|
713
|
-
"module": "src/lib/qti-components/qti-assessment-item/item-print-variables.ts"
|
|
714
|
-
}
|
|
715
|
-
}
|
|
716
|
-
]
|
|
717
|
-
},
|
|
718
673
|
{
|
|
719
674
|
"kind": "javascript-module",
|
|
720
675
|
"path": "src/lib/qti-components/qti-assessment-item/qti-assessment-item.context.ts",
|
package/dist/item.css
CHANGED
|
@@ -1929,22 +1929,6 @@ qti-response-declaration {
|
|
|
1929
1929
|
box-sizing: inherit;
|
|
1930
1930
|
}
|
|
1931
1931
|
|
|
1932
|
-
[popover] {
|
|
1933
|
-
position: fixed;
|
|
1934
|
-
inset: 0;
|
|
1935
|
-
margin: auto;
|
|
1936
|
-
border: solid;
|
|
1937
|
-
padding: 0.25em;
|
|
1938
|
-
overflow: auto;
|
|
1939
|
-
color: CanvasText;
|
|
1940
|
-
background-color: Canvas;
|
|
1941
|
-
}
|
|
1942
|
-
|
|
1943
|
-
[popovertarget] {
|
|
1944
|
-
all: unset;
|
|
1945
|
-
cursor: pointer;
|
|
1946
|
-
}
|
|
1947
|
-
|
|
1948
1932
|
/* components */
|
|
1949
1933
|
|
|
1950
1934
|
@layer qti-components {
|
|
@@ -3226,4 +3210,3 @@ qti-response-declaration {
|
|
|
3226
3210
|
width: 100%;
|
|
3227
3211
|
}
|
|
3228
3212
|
}
|
|
3229
|
-
|
|
@@ -67,11 +67,6 @@ export type QtiAssessmentStimulusRefProps = {
|
|
|
67
67
|
href?: string;
|
|
68
68
|
};
|
|
69
69
|
|
|
70
|
-
export type ItemPrintVariablesProps = {
|
|
71
|
-
/** */
|
|
72
|
-
itemContext?: ItemContext | undefined;
|
|
73
|
-
};
|
|
74
|
-
|
|
75
70
|
export type QtiAssessmentItemProps = {
|
|
76
71
|
/** */
|
|
77
72
|
title?: string;
|
|
@@ -1114,13 +1109,6 @@ export type CustomElements = {
|
|
|
1114
1109
|
*/
|
|
1115
1110
|
"qti-assessment-stimulus-ref": Partial<QtiAssessmentStimulusRefProps & BaseProps & BaseEvents>;
|
|
1116
1111
|
|
|
1117
|
-
/**
|
|
1118
|
-
*
|
|
1119
|
-
* ---
|
|
1120
|
-
*
|
|
1121
|
-
*/
|
|
1122
|
-
"item-print-variables": Partial<ItemPrintVariablesProps & BaseProps & BaseEvents>;
|
|
1123
|
-
|
|
1124
1112
|
/**
|
|
1125
1113
|
* The qti-assessment-item element contains all the other QTI 3 item structures.
|
|
1126
1114
|
* ---
|
|
@@ -19,12 +19,6 @@
|
|
|
19
19
|
],
|
|
20
20
|
"references": []
|
|
21
21
|
},
|
|
22
|
-
{
|
|
23
|
-
"name": "item-print-variables",
|
|
24
|
-
"description": "\n---\n",
|
|
25
|
-
"attributes": [],
|
|
26
|
-
"references": []
|
|
27
|
-
},
|
|
28
22
|
{
|
|
29
23
|
"name": "qti-assessment-item",
|
|
30
24
|
"description": "The qti-assessment-item element contains all the other QTI 3 item structures.\n---\n\n\n### **Events:**\n - **name**\n- **qti-interaction-changed** - Emitted when an interaction is changed.\n- **qti-outcome-changed** - Emitted when an outcome has changed.\n- **qti-response-processing** - Emitted when response-processing is called.\n\n### **Slots:**\n - _default_ - The default slot where all the other QTI 3 item structures go.",
|