@citolab/qti-components 7.27.1 → 7.27.2
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/LICENSE.md +674 -0
- package/dist/qti-components-jsx.d.ts +560 -560
- package/package.json +15 -16
|
@@ -64,6 +64,8 @@ import type {
|
|
|
64
64
|
} from "packages/qti-test/src/components/qti-test-variables/qti-test-variables.ts";
|
|
65
65
|
import type { QtiSimpleAssociableChoice } from "packages/interactions/core/src/elements/qti-simple-associable-choice/qti-simple-associable-choice.ts";
|
|
66
66
|
import type { QtiAssociateInteraction } from "packages/interactions/associate-interaction/src/qti-associate-interaction.ts";
|
|
67
|
+
import type { QtiSimpleChoice } from "packages/interactions/core/src/elements/qti-simple-choice/qti-simple-choice.ts";
|
|
68
|
+
import type { QtiChoiceInteraction } from "packages/interactions/choice-interaction/src/qti-choice-interaction.ts";
|
|
67
69
|
import type { QtiAssociableHotspot } from "packages/interactions/core/src/elements/qti-associable-hotspot/qti-associable-hotspot.ts";
|
|
68
70
|
import type { QtiGap } from "packages/interactions/core/src/elements/qti-gap/qti-gap.ts";
|
|
69
71
|
import type { QtiGapImg } from "packages/interactions/core/src/elements/qti-gap-img/qti-gap-img.ts";
|
|
@@ -72,16 +74,14 @@ import type { QtiHotspotChoice } from "packages/interactions/core/src/elements/q
|
|
|
72
74
|
import type { QtiHottext } from "packages/interactions/core/src/elements/qti-hottext/qti-hottext.ts";
|
|
73
75
|
import type { QtiInlineChoice } from "packages/interactions/core/src/elements/qti-inline-choice/qti-inline-choice.ts";
|
|
74
76
|
import type { QtiPrompt } from "packages/interactions/core/src/elements/qti-prompt/qti-prompt.ts";
|
|
75
|
-
import type { QtiSimpleChoice } from "packages/interactions/core/src/elements/qti-simple-choice/qti-simple-choice.ts";
|
|
76
|
-
import type { QtiChoiceInteraction } from "packages/interactions/choice-interaction/src/qti-choice-interaction.ts";
|
|
77
77
|
import type { QtiCustomInteraction } from "packages/interactions/custom-interaction/src/qti-custom-interaction.ts";
|
|
78
78
|
import type { QtiEndAttemptInteraction } from "packages/interactions/end-attempt-interaction/src/qti-end-attempt-interaction.ts";
|
|
79
79
|
import type { QtiExtendedTextInteraction } from "packages/interactions/extended-text-interaction/src/qti-extended-text-interaction.ts";
|
|
80
80
|
import type { QtiGapMatchInteraction } from "packages/interactions/gap-match-interaction/src/qti-gap-match-interaction.ts";
|
|
81
81
|
import type { QtiGraphicAssociateInteraction } from "packages/interactions/graphic-associate-interaction/src/qti-graphic-associate-interaction.ts";
|
|
82
82
|
import type { QtiGraphicGapMatchInteraction } from "packages/interactions/graphic-gap-match-interaction/src/qti-graphic-gap-match-interaction.ts";
|
|
83
|
-
import type { QtiHotspotInteraction } from "packages/interactions/hotspot-interaction/src/qti-hotspot-interaction.ts";
|
|
84
83
|
import type { QtiGraphicOrderInteraction } from "packages/interactions/graphic-order-interaction/src/qti-graphic-order-interaction.ts";
|
|
84
|
+
import type { QtiHotspotInteraction } from "packages/interactions/hotspot-interaction/src/qti-hotspot-interaction.ts";
|
|
85
85
|
import type { QtiHottextInteraction } from "packages/interactions/hottext-interaction/src/qti-hottext-interaction.ts";
|
|
86
86
|
import type { QtiInlineChoiceInteraction } from "packages/interactions/inline-choice-interaction/src/qti-inline-choice-interaction.ts";
|
|
87
87
|
import type { QtiMatchInteraction } from "packages/interactions/match-interaction/src/qti-match-interaction.ts";
|
|
@@ -144,8 +144,8 @@ import type { QtiDelete } from "packages/qti-processing/src/components/qti-delet
|
|
|
144
144
|
import type { QtiIndex } from "packages/qti-processing/src/components/qti-index/qti-index.ts";
|
|
145
145
|
import type { QtiRule } from "packages/qti-processing/src/components/qti-rule/qti-rule.ts";
|
|
146
146
|
import type { QtiLookupOutcomeValue } from "packages/qti-processing/src/components/qti-lookup-outcome-value/qti-lookup-outcome-value.ts";
|
|
147
|
-
import type { QtiResponseElse } from "packages/qti-processing/src/components/qti-response-else/qti-response-else.ts";
|
|
148
147
|
import type { QtiResponseCondition } from "packages/qti-processing/src/components/qti-response-condition/qti-response-condition.ts";
|
|
148
|
+
import type { QtiResponseElse } from "packages/qti-processing/src/components/qti-response-else/qti-response-else.ts";
|
|
149
149
|
import type { QtiResponseIf } from "packages/qti-processing/src/components/qti-response-if/qti-response-if.ts";
|
|
150
150
|
import type { QtiResponseElseIf } from "packages/qti-processing/src/components/qti-response-else-if/qti-response-else-if.ts";
|
|
151
151
|
import type {
|
|
@@ -1620,6 +1620,203 @@ export type QtiAssociateInteractionSolidJsProps = {
|
|
|
1620
1620
|
textContent?: string | number;
|
|
1621
1621
|
};
|
|
1622
1622
|
|
|
1623
|
+
export type QtiSimpleChoiceProps = {
|
|
1624
|
+
/** */
|
|
1625
|
+
"template-identifier"?: QtiSimpleChoice["templateIdentifier"];
|
|
1626
|
+
/** */
|
|
1627
|
+
templateIdentifier?: QtiSimpleChoice["templateIdentifier"];
|
|
1628
|
+
/** */
|
|
1629
|
+
"show-hide"?: QtiSimpleChoice["showHide"];
|
|
1630
|
+
/** */
|
|
1631
|
+
showHide?: QtiSimpleChoice["showHide"];
|
|
1632
|
+
/** */
|
|
1633
|
+
fixed?: QtiSimpleChoice["fixed"];
|
|
1634
|
+
/** */
|
|
1635
|
+
identifier?: QtiSimpleChoice["identifier"];
|
|
1636
|
+
/** */
|
|
1637
|
+
tabindex?: QtiSimpleChoice["tabIndex"];
|
|
1638
|
+
/** */
|
|
1639
|
+
tabIndex?: QtiSimpleChoice["tabIndex"];
|
|
1640
|
+
/** */
|
|
1641
|
+
"aria-disabled"?: QtiSimpleChoice["disabled"];
|
|
1642
|
+
/** */
|
|
1643
|
+
disabled?: QtiSimpleChoice["disabled"];
|
|
1644
|
+
/** */
|
|
1645
|
+
"aria-readonly"?: QtiSimpleChoice["readonly"];
|
|
1646
|
+
/** */
|
|
1647
|
+
readonly?: QtiSimpleChoice["readonly"];
|
|
1648
|
+
/** */
|
|
1649
|
+
marker?: QtiSimpleChoice["marker"];
|
|
1650
|
+
/** */
|
|
1651
|
+
internals?: QtiSimpleChoice["internals"];
|
|
1652
|
+
};
|
|
1653
|
+
|
|
1654
|
+
export type QtiSimpleChoiceSolidJsProps = {
|
|
1655
|
+
/** */
|
|
1656
|
+
"attr:template-identifier"?: QtiSimpleChoice["templateIdentifier"];
|
|
1657
|
+
/** */
|
|
1658
|
+
"prop:templateIdentifier"?: QtiSimpleChoice["templateIdentifier"];
|
|
1659
|
+
/** */
|
|
1660
|
+
"attr:show-hide"?: QtiSimpleChoice["showHide"];
|
|
1661
|
+
/** */
|
|
1662
|
+
"prop:showHide"?: QtiSimpleChoice["showHide"];
|
|
1663
|
+
/** */
|
|
1664
|
+
"prop:fixed"?: QtiSimpleChoice["fixed"];
|
|
1665
|
+
/** */
|
|
1666
|
+
"prop:identifier"?: QtiSimpleChoice["identifier"];
|
|
1667
|
+
/** */
|
|
1668
|
+
"attr:tabindex"?: QtiSimpleChoice["tabIndex"];
|
|
1669
|
+
/** */
|
|
1670
|
+
"prop:tabIndex"?: QtiSimpleChoice["tabIndex"];
|
|
1671
|
+
/** */
|
|
1672
|
+
"bool:aria-disabled"?: QtiSimpleChoice["disabled"];
|
|
1673
|
+
/** */
|
|
1674
|
+
"prop:disabled"?: QtiSimpleChoice["disabled"];
|
|
1675
|
+
/** */
|
|
1676
|
+
"bool:aria-readonly"?: QtiSimpleChoice["readonly"];
|
|
1677
|
+
/** */
|
|
1678
|
+
"prop:readonly"?: QtiSimpleChoice["readonly"];
|
|
1679
|
+
/** */
|
|
1680
|
+
"prop:marker"?: QtiSimpleChoice["marker"];
|
|
1681
|
+
/** */
|
|
1682
|
+
"prop:internals"?: QtiSimpleChoice["internals"];
|
|
1683
|
+
|
|
1684
|
+
/** Set the innerHTML of the element */
|
|
1685
|
+
innerHTML?: string;
|
|
1686
|
+
/** Set the textContent of the element */
|
|
1687
|
+
textContent?: string | number;
|
|
1688
|
+
};
|
|
1689
|
+
|
|
1690
|
+
export type QtiChoiceInteractionProps = {
|
|
1691
|
+
/** @deprecated , use 'qti-orientation-horizontal' or 'qti-orientation-vertical' instead */
|
|
1692
|
+
orientation?: QtiChoiceInteraction["orientation"];
|
|
1693
|
+
/** */
|
|
1694
|
+
class?: QtiChoiceInteraction["class"];
|
|
1695
|
+
/** */
|
|
1696
|
+
"min-choices"?: QtiChoiceInteraction["minChoices"];
|
|
1697
|
+
/** */
|
|
1698
|
+
minChoices?: QtiChoiceInteraction["minChoices"];
|
|
1699
|
+
/** */
|
|
1700
|
+
"max-choices"?: QtiChoiceInteraction["maxChoices"];
|
|
1701
|
+
/** */
|
|
1702
|
+
maxChoices?: QtiChoiceInteraction["maxChoices"];
|
|
1703
|
+
/** */
|
|
1704
|
+
"response-identifier"?: QtiChoiceInteraction["responseIdentifier"];
|
|
1705
|
+
/** */
|
|
1706
|
+
responseIdentifier?: QtiChoiceInteraction["responseIdentifier"];
|
|
1707
|
+
/** */
|
|
1708
|
+
disabled?: QtiChoiceInteraction["disabled"];
|
|
1709
|
+
/** */
|
|
1710
|
+
readonly?: QtiChoiceInteraction["readonly"];
|
|
1711
|
+
/** */
|
|
1712
|
+
name?: QtiChoiceInteraction["name"];
|
|
1713
|
+
/** The correct response for this interaction. Can be set as a comma-separated
|
|
1714
|
+
string via attribute or as string/string[] via property. */
|
|
1715
|
+
"correct-response"?: QtiChoiceInteraction["correctResponseAttr"];
|
|
1716
|
+
/** The correct response for this interaction. Can be set as a comma-separated
|
|
1717
|
+
string via attribute or as string/string[] via property. */
|
|
1718
|
+
correctResponseAttr?: QtiChoiceInteraction["correctResponseAttr"];
|
|
1719
|
+
/** Shows which choices are correct with inline indicators.
|
|
1720
|
+
Adds `correct-response` / `incorrect-response` states to choices. */
|
|
1721
|
+
"show-correct-response"?: QtiChoiceInteraction["showCorrectResponse"];
|
|
1722
|
+
/** Shows which choices are correct with inline indicators.
|
|
1723
|
+
Adds `correct-response` / `incorrect-response` states to choices. */
|
|
1724
|
+
showCorrectResponse?: QtiChoiceInteraction["showCorrectResponse"];
|
|
1725
|
+
/** Shows a cloned interaction with the correct answers filled in.
|
|
1726
|
+
Creates a disabled copy positioned after this interaction. */
|
|
1727
|
+
"show-full-correct-response"?: QtiChoiceInteraction["showFullCorrectResponse"];
|
|
1728
|
+
/** Shows a cloned interaction with the correct answers filled in.
|
|
1729
|
+
Creates a disabled copy positioned after this interaction. */
|
|
1730
|
+
showFullCorrectResponse?: QtiChoiceInteraction["showFullCorrectResponse"];
|
|
1731
|
+
/** Shows feedback on candidate's selections compared to correct response.
|
|
1732
|
+
Adds `candidate-correct` / `candidate-incorrect` states to choices. */
|
|
1733
|
+
"show-candidate-correction"?: QtiChoiceInteraction["showCandidateCorrection"];
|
|
1734
|
+
/** Shows feedback on candidate's selections compared to correct response.
|
|
1735
|
+
Adds `candidate-correct` / `candidate-incorrect` states to choices. */
|
|
1736
|
+
showCandidateCorrection?: QtiChoiceInteraction["showCandidateCorrection"];
|
|
1737
|
+
/** */
|
|
1738
|
+
response?: QtiChoiceInteraction["response"];
|
|
1739
|
+
/** */
|
|
1740
|
+
value?: QtiChoiceInteraction["value"];
|
|
1741
|
+
/** */
|
|
1742
|
+
isFullCorrectResponse?: QtiChoiceInteraction["isFullCorrectResponse"];
|
|
1743
|
+
/** Get/set correct response programmatically.
|
|
1744
|
+
This property syncs with the `correct-response` attribute. */
|
|
1745
|
+
correctResponse?: QtiChoiceInteraction["correctResponse"];
|
|
1746
|
+
|
|
1747
|
+
/** */
|
|
1748
|
+
"onqti-register-interaction"?: (e: CustomEvent) => void;
|
|
1749
|
+
/** */
|
|
1750
|
+
"onqti-interaction-response"?: (e: CustomEvent) => void;
|
|
1751
|
+
};
|
|
1752
|
+
|
|
1753
|
+
export type QtiChoiceInteractionSolidJsProps = {
|
|
1754
|
+
/** @deprecated , use 'qti-orientation-horizontal' or 'qti-orientation-vertical' instead */
|
|
1755
|
+
"prop:orientation"?: QtiChoiceInteraction["orientation"];
|
|
1756
|
+
/** */
|
|
1757
|
+
"prop:class"?: QtiChoiceInteraction["class"];
|
|
1758
|
+
/** */
|
|
1759
|
+
"attr:min-choices"?: QtiChoiceInteraction["minChoices"];
|
|
1760
|
+
/** */
|
|
1761
|
+
"prop:minChoices"?: QtiChoiceInteraction["minChoices"];
|
|
1762
|
+
/** */
|
|
1763
|
+
"attr:max-choices"?: QtiChoiceInteraction["maxChoices"];
|
|
1764
|
+
/** */
|
|
1765
|
+
"prop:maxChoices"?: QtiChoiceInteraction["maxChoices"];
|
|
1766
|
+
/** */
|
|
1767
|
+
"attr:response-identifier"?: QtiChoiceInteraction["responseIdentifier"];
|
|
1768
|
+
/** */
|
|
1769
|
+
"prop:responseIdentifier"?: QtiChoiceInteraction["responseIdentifier"];
|
|
1770
|
+
/** */
|
|
1771
|
+
"prop:disabled"?: QtiChoiceInteraction["disabled"];
|
|
1772
|
+
/** */
|
|
1773
|
+
"prop:readonly"?: QtiChoiceInteraction["readonly"];
|
|
1774
|
+
/** */
|
|
1775
|
+
"prop:name"?: QtiChoiceInteraction["name"];
|
|
1776
|
+
/** The correct response for this interaction. Can be set as a comma-separated
|
|
1777
|
+
string via attribute or as string/string[] via property. */
|
|
1778
|
+
"attr:correct-response"?: QtiChoiceInteraction["correctResponseAttr"];
|
|
1779
|
+
/** The correct response for this interaction. Can be set as a comma-separated
|
|
1780
|
+
string via attribute or as string/string[] via property. */
|
|
1781
|
+
"prop:correctResponseAttr"?: QtiChoiceInteraction["correctResponseAttr"];
|
|
1782
|
+
/** Shows which choices are correct with inline indicators.
|
|
1783
|
+
Adds `correct-response` / `incorrect-response` states to choices. */
|
|
1784
|
+
"bool:show-correct-response"?: QtiChoiceInteraction["showCorrectResponse"];
|
|
1785
|
+
/** Shows which choices are correct with inline indicators.
|
|
1786
|
+
Adds `correct-response` / `incorrect-response` states to choices. */
|
|
1787
|
+
"prop:showCorrectResponse"?: QtiChoiceInteraction["showCorrectResponse"];
|
|
1788
|
+
/** Shows a cloned interaction with the correct answers filled in.
|
|
1789
|
+
Creates a disabled copy positioned after this interaction. */
|
|
1790
|
+
"bool:show-full-correct-response"?: QtiChoiceInteraction["showFullCorrectResponse"];
|
|
1791
|
+
/** Shows a cloned interaction with the correct answers filled in.
|
|
1792
|
+
Creates a disabled copy positioned after this interaction. */
|
|
1793
|
+
"prop:showFullCorrectResponse"?: QtiChoiceInteraction["showFullCorrectResponse"];
|
|
1794
|
+
/** Shows feedback on candidate's selections compared to correct response.
|
|
1795
|
+
Adds `candidate-correct` / `candidate-incorrect` states to choices. */
|
|
1796
|
+
"bool:show-candidate-correction"?: QtiChoiceInteraction["showCandidateCorrection"];
|
|
1797
|
+
/** Shows feedback on candidate's selections compared to correct response.
|
|
1798
|
+
Adds `candidate-correct` / `candidate-incorrect` states to choices. */
|
|
1799
|
+
"prop:showCandidateCorrection"?: QtiChoiceInteraction["showCandidateCorrection"];
|
|
1800
|
+
/** */
|
|
1801
|
+
"prop:response"?: QtiChoiceInteraction["response"];
|
|
1802
|
+
/** */
|
|
1803
|
+
"prop:value"?: QtiChoiceInteraction["value"];
|
|
1804
|
+
/** */
|
|
1805
|
+
"prop:isFullCorrectResponse"?: QtiChoiceInteraction["isFullCorrectResponse"];
|
|
1806
|
+
/** Get/set correct response programmatically.
|
|
1807
|
+
This property syncs with the `correct-response` attribute. */
|
|
1808
|
+
"prop:correctResponse"?: QtiChoiceInteraction["correctResponse"];
|
|
1809
|
+
/** */
|
|
1810
|
+
"on:qti-register-interaction"?: (e: CustomEvent) => void;
|
|
1811
|
+
/** */
|
|
1812
|
+
"on:qti-interaction-response"?: (e: CustomEvent) => void;
|
|
1813
|
+
|
|
1814
|
+
/** Set the innerHTML of the element */
|
|
1815
|
+
innerHTML?: string;
|
|
1816
|
+
/** Set the textContent of the element */
|
|
1817
|
+
textContent?: string | number;
|
|
1818
|
+
};
|
|
1819
|
+
|
|
1623
1820
|
export type QtiAssociableHotspotProps = {
|
|
1624
1821
|
/** */
|
|
1625
1822
|
"onqti-register-hotspot"?: (e: CustomEvent) => void;
|
|
@@ -1871,252 +2068,55 @@ export type QtiPromptSolidJsProps = {
|
|
|
1871
2068
|
textContent?: string | number;
|
|
1872
2069
|
};
|
|
1873
2070
|
|
|
1874
|
-
export type
|
|
2071
|
+
export type QtiCustomInteractionProps = {
|
|
1875
2072
|
/** */
|
|
1876
|
-
|
|
2073
|
+
data?: QtiCustomInteraction["data"];
|
|
1877
2074
|
/** */
|
|
1878
|
-
|
|
2075
|
+
"data-base-item"?: QtiCustomInteraction["baseItemUrl"];
|
|
1879
2076
|
/** */
|
|
1880
|
-
|
|
2077
|
+
baseItemUrl?: QtiCustomInteraction["baseItemUrl"];
|
|
1881
2078
|
/** */
|
|
1882
|
-
|
|
2079
|
+
"data-base-ref"?: QtiCustomInteraction["baseRefUrl"];
|
|
1883
2080
|
/** */
|
|
1884
|
-
|
|
2081
|
+
baseRefUrl?: QtiCustomInteraction["baseRefUrl"];
|
|
1885
2082
|
/** */
|
|
1886
|
-
|
|
2083
|
+
id?: QtiCustomInteraction["id"];
|
|
1887
2084
|
/** */
|
|
1888
|
-
|
|
2085
|
+
"response-identifier"?: QtiCustomInteraction["responseIdentifier"];
|
|
1889
2086
|
/** */
|
|
1890
|
-
|
|
2087
|
+
responseIdentifier?: QtiCustomInteraction["responseIdentifier"];
|
|
1891
2088
|
/** */
|
|
1892
|
-
|
|
2089
|
+
disabled?: QtiCustomInteraction["disabled"];
|
|
1893
2090
|
/** */
|
|
1894
|
-
|
|
2091
|
+
readonly?: QtiCustomInteraction["readonly"];
|
|
1895
2092
|
/** */
|
|
1896
|
-
|
|
2093
|
+
name?: QtiCustomInteraction["name"];
|
|
2094
|
+
/** The correct response for this interaction. Can be set as a comma-separated
|
|
2095
|
+
string via attribute or as string/string[] via property. */
|
|
2096
|
+
"correct-response"?: QtiCustomInteraction["correctResponseAttr"];
|
|
2097
|
+
/** The correct response for this interaction. Can be set as a comma-separated
|
|
2098
|
+
string via attribute or as string/string[] via property. */
|
|
2099
|
+
correctResponseAttr?: QtiCustomInteraction["correctResponseAttr"];
|
|
2100
|
+
/** Shows which choices are correct with inline indicators.
|
|
2101
|
+
Adds `correct-response` / `incorrect-response` states to choices. */
|
|
2102
|
+
"show-correct-response"?: QtiCustomInteraction["showCorrectResponse"];
|
|
2103
|
+
/** Shows which choices are correct with inline indicators.
|
|
2104
|
+
Adds `correct-response` / `incorrect-response` states to choices. */
|
|
2105
|
+
showCorrectResponse?: QtiCustomInteraction["showCorrectResponse"];
|
|
2106
|
+
/** Shows a cloned interaction with the correct answers filled in.
|
|
2107
|
+
Creates a disabled copy positioned after this interaction. */
|
|
2108
|
+
"show-full-correct-response"?: QtiCustomInteraction["showFullCorrectResponse"];
|
|
2109
|
+
/** Shows a cloned interaction with the correct answers filled in.
|
|
2110
|
+
Creates a disabled copy positioned after this interaction. */
|
|
2111
|
+
showFullCorrectResponse?: QtiCustomInteraction["showFullCorrectResponse"];
|
|
2112
|
+
/** Shows feedback on candidate's selections compared to correct response.
|
|
2113
|
+
Adds `candidate-correct` / `candidate-incorrect` states to choices. */
|
|
2114
|
+
"show-candidate-correction"?: QtiCustomInteraction["showCandidateCorrection"];
|
|
2115
|
+
/** Shows feedback on candidate's selections compared to correct response.
|
|
2116
|
+
Adds `candidate-correct` / `candidate-incorrect` states to choices. */
|
|
2117
|
+
showCandidateCorrection?: QtiCustomInteraction["showCandidateCorrection"];
|
|
1897
2118
|
/** */
|
|
1898
|
-
|
|
1899
|
-
/** */
|
|
1900
|
-
marker?: QtiSimpleChoice["marker"];
|
|
1901
|
-
/** */
|
|
1902
|
-
internals?: QtiSimpleChoice["internals"];
|
|
1903
|
-
};
|
|
1904
|
-
|
|
1905
|
-
export type QtiSimpleChoiceSolidJsProps = {
|
|
1906
|
-
/** */
|
|
1907
|
-
"attr:template-identifier"?: QtiSimpleChoice["templateIdentifier"];
|
|
1908
|
-
/** */
|
|
1909
|
-
"prop:templateIdentifier"?: QtiSimpleChoice["templateIdentifier"];
|
|
1910
|
-
/** */
|
|
1911
|
-
"attr:show-hide"?: QtiSimpleChoice["showHide"];
|
|
1912
|
-
/** */
|
|
1913
|
-
"prop:showHide"?: QtiSimpleChoice["showHide"];
|
|
1914
|
-
/** */
|
|
1915
|
-
"prop:fixed"?: QtiSimpleChoice["fixed"];
|
|
1916
|
-
/** */
|
|
1917
|
-
"prop:identifier"?: QtiSimpleChoice["identifier"];
|
|
1918
|
-
/** */
|
|
1919
|
-
"attr:tabindex"?: QtiSimpleChoice["tabIndex"];
|
|
1920
|
-
/** */
|
|
1921
|
-
"prop:tabIndex"?: QtiSimpleChoice["tabIndex"];
|
|
1922
|
-
/** */
|
|
1923
|
-
"bool:aria-disabled"?: QtiSimpleChoice["disabled"];
|
|
1924
|
-
/** */
|
|
1925
|
-
"prop:disabled"?: QtiSimpleChoice["disabled"];
|
|
1926
|
-
/** */
|
|
1927
|
-
"bool:aria-readonly"?: QtiSimpleChoice["readonly"];
|
|
1928
|
-
/** */
|
|
1929
|
-
"prop:readonly"?: QtiSimpleChoice["readonly"];
|
|
1930
|
-
/** */
|
|
1931
|
-
"prop:marker"?: QtiSimpleChoice["marker"];
|
|
1932
|
-
/** */
|
|
1933
|
-
"prop:internals"?: QtiSimpleChoice["internals"];
|
|
1934
|
-
|
|
1935
|
-
/** Set the innerHTML of the element */
|
|
1936
|
-
innerHTML?: string;
|
|
1937
|
-
/** Set the textContent of the element */
|
|
1938
|
-
textContent?: string | number;
|
|
1939
|
-
};
|
|
1940
|
-
|
|
1941
|
-
export type QtiChoiceInteractionProps = {
|
|
1942
|
-
/** @deprecated , use 'qti-orientation-horizontal' or 'qti-orientation-vertical' instead */
|
|
1943
|
-
orientation?: QtiChoiceInteraction["orientation"];
|
|
1944
|
-
/** */
|
|
1945
|
-
class?: QtiChoiceInteraction["class"];
|
|
1946
|
-
/** */
|
|
1947
|
-
"min-choices"?: QtiChoiceInteraction["minChoices"];
|
|
1948
|
-
/** */
|
|
1949
|
-
minChoices?: QtiChoiceInteraction["minChoices"];
|
|
1950
|
-
/** */
|
|
1951
|
-
"max-choices"?: QtiChoiceInteraction["maxChoices"];
|
|
1952
|
-
/** */
|
|
1953
|
-
maxChoices?: QtiChoiceInteraction["maxChoices"];
|
|
1954
|
-
/** */
|
|
1955
|
-
"response-identifier"?: QtiChoiceInteraction["responseIdentifier"];
|
|
1956
|
-
/** */
|
|
1957
|
-
responseIdentifier?: QtiChoiceInteraction["responseIdentifier"];
|
|
1958
|
-
/** */
|
|
1959
|
-
disabled?: QtiChoiceInteraction["disabled"];
|
|
1960
|
-
/** */
|
|
1961
|
-
readonly?: QtiChoiceInteraction["readonly"];
|
|
1962
|
-
/** */
|
|
1963
|
-
name?: QtiChoiceInteraction["name"];
|
|
1964
|
-
/** The correct response for this interaction. Can be set as a comma-separated
|
|
1965
|
-
string via attribute or as string/string[] via property. */
|
|
1966
|
-
"correct-response"?: QtiChoiceInteraction["correctResponseAttr"];
|
|
1967
|
-
/** The correct response for this interaction. Can be set as a comma-separated
|
|
1968
|
-
string via attribute or as string/string[] via property. */
|
|
1969
|
-
correctResponseAttr?: QtiChoiceInteraction["correctResponseAttr"];
|
|
1970
|
-
/** Shows which choices are correct with inline indicators.
|
|
1971
|
-
Adds `correct-response` / `incorrect-response` states to choices. */
|
|
1972
|
-
"show-correct-response"?: QtiChoiceInteraction["showCorrectResponse"];
|
|
1973
|
-
/** Shows which choices are correct with inline indicators.
|
|
1974
|
-
Adds `correct-response` / `incorrect-response` states to choices. */
|
|
1975
|
-
showCorrectResponse?: QtiChoiceInteraction["showCorrectResponse"];
|
|
1976
|
-
/** Shows a cloned interaction with the correct answers filled in.
|
|
1977
|
-
Creates a disabled copy positioned after this interaction. */
|
|
1978
|
-
"show-full-correct-response"?: QtiChoiceInteraction["showFullCorrectResponse"];
|
|
1979
|
-
/** Shows a cloned interaction with the correct answers filled in.
|
|
1980
|
-
Creates a disabled copy positioned after this interaction. */
|
|
1981
|
-
showFullCorrectResponse?: QtiChoiceInteraction["showFullCorrectResponse"];
|
|
1982
|
-
/** Shows feedback on candidate's selections compared to correct response.
|
|
1983
|
-
Adds `candidate-correct` / `candidate-incorrect` states to choices. */
|
|
1984
|
-
"show-candidate-correction"?: QtiChoiceInteraction["showCandidateCorrection"];
|
|
1985
|
-
/** Shows feedback on candidate's selections compared to correct response.
|
|
1986
|
-
Adds `candidate-correct` / `candidate-incorrect` states to choices. */
|
|
1987
|
-
showCandidateCorrection?: QtiChoiceInteraction["showCandidateCorrection"];
|
|
1988
|
-
/** */
|
|
1989
|
-
response?: QtiChoiceInteraction["response"];
|
|
1990
|
-
/** */
|
|
1991
|
-
value?: QtiChoiceInteraction["value"];
|
|
1992
|
-
/** */
|
|
1993
|
-
isFullCorrectResponse?: QtiChoiceInteraction["isFullCorrectResponse"];
|
|
1994
|
-
/** Get/set correct response programmatically.
|
|
1995
|
-
This property syncs with the `correct-response` attribute. */
|
|
1996
|
-
correctResponse?: QtiChoiceInteraction["correctResponse"];
|
|
1997
|
-
|
|
1998
|
-
/** */
|
|
1999
|
-
"onqti-register-interaction"?: (e: CustomEvent) => void;
|
|
2000
|
-
/** */
|
|
2001
|
-
"onqti-interaction-response"?: (e: CustomEvent) => void;
|
|
2002
|
-
};
|
|
2003
|
-
|
|
2004
|
-
export type QtiChoiceInteractionSolidJsProps = {
|
|
2005
|
-
/** @deprecated , use 'qti-orientation-horizontal' or 'qti-orientation-vertical' instead */
|
|
2006
|
-
"prop:orientation"?: QtiChoiceInteraction["orientation"];
|
|
2007
|
-
/** */
|
|
2008
|
-
"prop:class"?: QtiChoiceInteraction["class"];
|
|
2009
|
-
/** */
|
|
2010
|
-
"attr:min-choices"?: QtiChoiceInteraction["minChoices"];
|
|
2011
|
-
/** */
|
|
2012
|
-
"prop:minChoices"?: QtiChoiceInteraction["minChoices"];
|
|
2013
|
-
/** */
|
|
2014
|
-
"attr:max-choices"?: QtiChoiceInteraction["maxChoices"];
|
|
2015
|
-
/** */
|
|
2016
|
-
"prop:maxChoices"?: QtiChoiceInteraction["maxChoices"];
|
|
2017
|
-
/** */
|
|
2018
|
-
"attr:response-identifier"?: QtiChoiceInteraction["responseIdentifier"];
|
|
2019
|
-
/** */
|
|
2020
|
-
"prop:responseIdentifier"?: QtiChoiceInteraction["responseIdentifier"];
|
|
2021
|
-
/** */
|
|
2022
|
-
"prop:disabled"?: QtiChoiceInteraction["disabled"];
|
|
2023
|
-
/** */
|
|
2024
|
-
"prop:readonly"?: QtiChoiceInteraction["readonly"];
|
|
2025
|
-
/** */
|
|
2026
|
-
"prop:name"?: QtiChoiceInteraction["name"];
|
|
2027
|
-
/** The correct response for this interaction. Can be set as a comma-separated
|
|
2028
|
-
string via attribute or as string/string[] via property. */
|
|
2029
|
-
"attr:correct-response"?: QtiChoiceInteraction["correctResponseAttr"];
|
|
2030
|
-
/** The correct response for this interaction. Can be set as a comma-separated
|
|
2031
|
-
string via attribute or as string/string[] via property. */
|
|
2032
|
-
"prop:correctResponseAttr"?: QtiChoiceInteraction["correctResponseAttr"];
|
|
2033
|
-
/** Shows which choices are correct with inline indicators.
|
|
2034
|
-
Adds `correct-response` / `incorrect-response` states to choices. */
|
|
2035
|
-
"bool:show-correct-response"?: QtiChoiceInteraction["showCorrectResponse"];
|
|
2036
|
-
/** Shows which choices are correct with inline indicators.
|
|
2037
|
-
Adds `correct-response` / `incorrect-response` states to choices. */
|
|
2038
|
-
"prop:showCorrectResponse"?: QtiChoiceInteraction["showCorrectResponse"];
|
|
2039
|
-
/** Shows a cloned interaction with the correct answers filled in.
|
|
2040
|
-
Creates a disabled copy positioned after this interaction. */
|
|
2041
|
-
"bool:show-full-correct-response"?: QtiChoiceInteraction["showFullCorrectResponse"];
|
|
2042
|
-
/** Shows a cloned interaction with the correct answers filled in.
|
|
2043
|
-
Creates a disabled copy positioned after this interaction. */
|
|
2044
|
-
"prop:showFullCorrectResponse"?: QtiChoiceInteraction["showFullCorrectResponse"];
|
|
2045
|
-
/** Shows feedback on candidate's selections compared to correct response.
|
|
2046
|
-
Adds `candidate-correct` / `candidate-incorrect` states to choices. */
|
|
2047
|
-
"bool:show-candidate-correction"?: QtiChoiceInteraction["showCandidateCorrection"];
|
|
2048
|
-
/** Shows feedback on candidate's selections compared to correct response.
|
|
2049
|
-
Adds `candidate-correct` / `candidate-incorrect` states to choices. */
|
|
2050
|
-
"prop:showCandidateCorrection"?: QtiChoiceInteraction["showCandidateCorrection"];
|
|
2051
|
-
/** */
|
|
2052
|
-
"prop:response"?: QtiChoiceInteraction["response"];
|
|
2053
|
-
/** */
|
|
2054
|
-
"prop:value"?: QtiChoiceInteraction["value"];
|
|
2055
|
-
/** */
|
|
2056
|
-
"prop:isFullCorrectResponse"?: QtiChoiceInteraction["isFullCorrectResponse"];
|
|
2057
|
-
/** Get/set correct response programmatically.
|
|
2058
|
-
This property syncs with the `correct-response` attribute. */
|
|
2059
|
-
"prop:correctResponse"?: QtiChoiceInteraction["correctResponse"];
|
|
2060
|
-
/** */
|
|
2061
|
-
"on:qti-register-interaction"?: (e: CustomEvent) => void;
|
|
2062
|
-
/** */
|
|
2063
|
-
"on:qti-interaction-response"?: (e: CustomEvent) => void;
|
|
2064
|
-
|
|
2065
|
-
/** Set the innerHTML of the element */
|
|
2066
|
-
innerHTML?: string;
|
|
2067
|
-
/** Set the textContent of the element */
|
|
2068
|
-
textContent?: string | number;
|
|
2069
|
-
};
|
|
2070
|
-
|
|
2071
|
-
export type QtiCustomInteractionProps = {
|
|
2072
|
-
/** */
|
|
2073
|
-
data?: QtiCustomInteraction["data"];
|
|
2074
|
-
/** */
|
|
2075
|
-
"data-base-item"?: QtiCustomInteraction["baseItemUrl"];
|
|
2076
|
-
/** */
|
|
2077
|
-
baseItemUrl?: QtiCustomInteraction["baseItemUrl"];
|
|
2078
|
-
/** */
|
|
2079
|
-
"data-base-ref"?: QtiCustomInteraction["baseRefUrl"];
|
|
2080
|
-
/** */
|
|
2081
|
-
baseRefUrl?: QtiCustomInteraction["baseRefUrl"];
|
|
2082
|
-
/** */
|
|
2083
|
-
id?: QtiCustomInteraction["id"];
|
|
2084
|
-
/** */
|
|
2085
|
-
"response-identifier"?: QtiCustomInteraction["responseIdentifier"];
|
|
2086
|
-
/** */
|
|
2087
|
-
responseIdentifier?: QtiCustomInteraction["responseIdentifier"];
|
|
2088
|
-
/** */
|
|
2089
|
-
disabled?: QtiCustomInteraction["disabled"];
|
|
2090
|
-
/** */
|
|
2091
|
-
readonly?: QtiCustomInteraction["readonly"];
|
|
2092
|
-
/** */
|
|
2093
|
-
name?: QtiCustomInteraction["name"];
|
|
2094
|
-
/** The correct response for this interaction. Can be set as a comma-separated
|
|
2095
|
-
string via attribute or as string/string[] via property. */
|
|
2096
|
-
"correct-response"?: QtiCustomInteraction["correctResponseAttr"];
|
|
2097
|
-
/** The correct response for this interaction. Can be set as a comma-separated
|
|
2098
|
-
string via attribute or as string/string[] via property. */
|
|
2099
|
-
correctResponseAttr?: QtiCustomInteraction["correctResponseAttr"];
|
|
2100
|
-
/** Shows which choices are correct with inline indicators.
|
|
2101
|
-
Adds `correct-response` / `incorrect-response` states to choices. */
|
|
2102
|
-
"show-correct-response"?: QtiCustomInteraction["showCorrectResponse"];
|
|
2103
|
-
/** Shows which choices are correct with inline indicators.
|
|
2104
|
-
Adds `correct-response` / `incorrect-response` states to choices. */
|
|
2105
|
-
showCorrectResponse?: QtiCustomInteraction["showCorrectResponse"];
|
|
2106
|
-
/** Shows a cloned interaction with the correct answers filled in.
|
|
2107
|
-
Creates a disabled copy positioned after this interaction. */
|
|
2108
|
-
"show-full-correct-response"?: QtiCustomInteraction["showFullCorrectResponse"];
|
|
2109
|
-
/** Shows a cloned interaction with the correct answers filled in.
|
|
2110
|
-
Creates a disabled copy positioned after this interaction. */
|
|
2111
|
-
showFullCorrectResponse?: QtiCustomInteraction["showFullCorrectResponse"];
|
|
2112
|
-
/** Shows feedback on candidate's selections compared to correct response.
|
|
2113
|
-
Adds `candidate-correct` / `candidate-incorrect` states to choices. */
|
|
2114
|
-
"show-candidate-correction"?: QtiCustomInteraction["showCandidateCorrection"];
|
|
2115
|
-
/** Shows feedback on candidate's selections compared to correct response.
|
|
2116
|
-
Adds `candidate-correct` / `candidate-incorrect` states to choices. */
|
|
2117
|
-
showCandidateCorrection?: QtiCustomInteraction["showCandidateCorrection"];
|
|
2118
|
-
/** */
|
|
2119
|
-
manifest?: QtiCustomInteraction["manifest"];
|
|
2119
|
+
manifest?: QtiCustomInteraction["manifest"];
|
|
2120
2120
|
/** */
|
|
2121
2121
|
response?: QtiCustomInteraction["response"];
|
|
2122
2122
|
/** */
|
|
@@ -2544,58 +2544,58 @@ export type QtiGraphicGapMatchInteractionSolidJsProps = {
|
|
|
2544
2544
|
textContent?: string | number;
|
|
2545
2545
|
};
|
|
2546
2546
|
|
|
2547
|
-
export type
|
|
2547
|
+
export type QtiGraphicOrderInteractionProps = {
|
|
2548
2548
|
/** */
|
|
2549
|
-
"min-choices"?:
|
|
2549
|
+
"min-choices"?: QtiGraphicOrderInteraction["minChoices"];
|
|
2550
2550
|
/** */
|
|
2551
|
-
minChoices?:
|
|
2551
|
+
minChoices?: QtiGraphicOrderInteraction["minChoices"];
|
|
2552
2552
|
/** */
|
|
2553
|
-
"max-choices"?:
|
|
2553
|
+
"max-choices"?: QtiGraphicOrderInteraction["maxChoices"];
|
|
2554
2554
|
/** */
|
|
2555
|
-
maxChoices?:
|
|
2555
|
+
maxChoices?: QtiGraphicOrderInteraction["maxChoices"];
|
|
2556
2556
|
/** */
|
|
2557
|
-
"response-identifier"?:
|
|
2557
|
+
"response-identifier"?: QtiGraphicOrderInteraction["responseIdentifier"];
|
|
2558
2558
|
/** */
|
|
2559
|
-
responseIdentifier?:
|
|
2559
|
+
responseIdentifier?: QtiGraphicOrderInteraction["responseIdentifier"];
|
|
2560
2560
|
/** */
|
|
2561
|
-
disabled?:
|
|
2561
|
+
disabled?: QtiGraphicOrderInteraction["disabled"];
|
|
2562
2562
|
/** */
|
|
2563
|
-
readonly?:
|
|
2563
|
+
readonly?: QtiGraphicOrderInteraction["readonly"];
|
|
2564
2564
|
/** */
|
|
2565
|
-
name?:
|
|
2565
|
+
name?: QtiGraphicOrderInteraction["name"];
|
|
2566
2566
|
/** The correct response for this interaction. Can be set as a comma-separated
|
|
2567
2567
|
string via attribute or as string/string[] via property. */
|
|
2568
|
-
"correct-response"?:
|
|
2568
|
+
"correct-response"?: QtiGraphicOrderInteraction["correctResponseAttr"];
|
|
2569
2569
|
/** The correct response for this interaction. Can be set as a comma-separated
|
|
2570
2570
|
string via attribute or as string/string[] via property. */
|
|
2571
|
-
correctResponseAttr?:
|
|
2571
|
+
correctResponseAttr?: QtiGraphicOrderInteraction["correctResponseAttr"];
|
|
2572
2572
|
/** Shows which choices are correct with inline indicators.
|
|
2573
2573
|
Adds `correct-response` / `incorrect-response` states to choices. */
|
|
2574
|
-
"show-correct-response"?:
|
|
2574
|
+
"show-correct-response"?: QtiGraphicOrderInteraction["showCorrectResponse"];
|
|
2575
2575
|
/** Shows which choices are correct with inline indicators.
|
|
2576
2576
|
Adds `correct-response` / `incorrect-response` states to choices. */
|
|
2577
|
-
showCorrectResponse?:
|
|
2577
|
+
showCorrectResponse?: QtiGraphicOrderInteraction["showCorrectResponse"];
|
|
2578
2578
|
/** Shows a cloned interaction with the correct answers filled in.
|
|
2579
2579
|
Creates a disabled copy positioned after this interaction. */
|
|
2580
|
-
"show-full-correct-response"?:
|
|
2580
|
+
"show-full-correct-response"?: QtiGraphicOrderInteraction["showFullCorrectResponse"];
|
|
2581
2581
|
/** Shows a cloned interaction with the correct answers filled in.
|
|
2582
2582
|
Creates a disabled copy positioned after this interaction. */
|
|
2583
|
-
showFullCorrectResponse?:
|
|
2583
|
+
showFullCorrectResponse?: QtiGraphicOrderInteraction["showFullCorrectResponse"];
|
|
2584
2584
|
/** Shows feedback on candidate's selections compared to correct response.
|
|
2585
2585
|
Adds `candidate-correct` / `candidate-incorrect` states to choices. */
|
|
2586
|
-
"show-candidate-correction"?:
|
|
2586
|
+
"show-candidate-correction"?: QtiGraphicOrderInteraction["showCandidateCorrection"];
|
|
2587
2587
|
/** Shows feedback on candidate's selections compared to correct response.
|
|
2588
2588
|
Adds `candidate-correct` / `candidate-incorrect` states to choices. */
|
|
2589
|
-
showCandidateCorrection?:
|
|
2589
|
+
showCandidateCorrection?: QtiGraphicOrderInteraction["showCandidateCorrection"];
|
|
2590
2590
|
/** */
|
|
2591
|
-
response?:
|
|
2591
|
+
response?: QtiGraphicOrderInteraction["response"];
|
|
2592
2592
|
/** */
|
|
2593
|
-
value?:
|
|
2593
|
+
value?: QtiGraphicOrderInteraction["value"];
|
|
2594
2594
|
/** */
|
|
2595
|
-
isFullCorrectResponse?:
|
|
2595
|
+
isFullCorrectResponse?: QtiGraphicOrderInteraction["isFullCorrectResponse"];
|
|
2596
2596
|
/** Get/set correct response programmatically.
|
|
2597
2597
|
This property syncs with the `correct-response` attribute. */
|
|
2598
|
-
correctResponse?:
|
|
2598
|
+
correctResponse?: QtiGraphicOrderInteraction["correctResponse"];
|
|
2599
2599
|
|
|
2600
2600
|
/** */
|
|
2601
2601
|
"onqti-register-interaction"?: (e: CustomEvent) => void;
|
|
@@ -2603,58 +2603,58 @@ This property syncs with the `correct-response` attribute. */
|
|
|
2603
2603
|
"onqti-interaction-response"?: (e: CustomEvent) => void;
|
|
2604
2604
|
};
|
|
2605
2605
|
|
|
2606
|
-
export type
|
|
2606
|
+
export type QtiGraphicOrderInteractionSolidJsProps = {
|
|
2607
2607
|
/** */
|
|
2608
|
-
"attr:min-choices"?:
|
|
2608
|
+
"attr:min-choices"?: QtiGraphicOrderInteraction["minChoices"];
|
|
2609
2609
|
/** */
|
|
2610
|
-
"prop:minChoices"?:
|
|
2610
|
+
"prop:minChoices"?: QtiGraphicOrderInteraction["minChoices"];
|
|
2611
2611
|
/** */
|
|
2612
|
-
"attr:max-choices"?:
|
|
2612
|
+
"attr:max-choices"?: QtiGraphicOrderInteraction["maxChoices"];
|
|
2613
2613
|
/** */
|
|
2614
|
-
"prop:maxChoices"?:
|
|
2614
|
+
"prop:maxChoices"?: QtiGraphicOrderInteraction["maxChoices"];
|
|
2615
2615
|
/** */
|
|
2616
|
-
"attr:response-identifier"?:
|
|
2616
|
+
"attr:response-identifier"?: QtiGraphicOrderInteraction["responseIdentifier"];
|
|
2617
2617
|
/** */
|
|
2618
|
-
"prop:responseIdentifier"?:
|
|
2618
|
+
"prop:responseIdentifier"?: QtiGraphicOrderInteraction["responseIdentifier"];
|
|
2619
2619
|
/** */
|
|
2620
|
-
"prop:disabled"?:
|
|
2620
|
+
"prop:disabled"?: QtiGraphicOrderInteraction["disabled"];
|
|
2621
2621
|
/** */
|
|
2622
|
-
"prop:readonly"?:
|
|
2622
|
+
"prop:readonly"?: QtiGraphicOrderInteraction["readonly"];
|
|
2623
2623
|
/** */
|
|
2624
|
-
"prop:name"?:
|
|
2624
|
+
"prop:name"?: QtiGraphicOrderInteraction["name"];
|
|
2625
2625
|
/** The correct response for this interaction. Can be set as a comma-separated
|
|
2626
2626
|
string via attribute or as string/string[] via property. */
|
|
2627
|
-
"attr:correct-response"?:
|
|
2627
|
+
"attr:correct-response"?: QtiGraphicOrderInteraction["correctResponseAttr"];
|
|
2628
2628
|
/** The correct response for this interaction. Can be set as a comma-separated
|
|
2629
2629
|
string via attribute or as string/string[] via property. */
|
|
2630
|
-
"prop:correctResponseAttr"?:
|
|
2630
|
+
"prop:correctResponseAttr"?: QtiGraphicOrderInteraction["correctResponseAttr"];
|
|
2631
2631
|
/** Shows which choices are correct with inline indicators.
|
|
2632
2632
|
Adds `correct-response` / `incorrect-response` states to choices. */
|
|
2633
|
-
"bool:show-correct-response"?:
|
|
2633
|
+
"bool:show-correct-response"?: QtiGraphicOrderInteraction["showCorrectResponse"];
|
|
2634
2634
|
/** Shows which choices are correct with inline indicators.
|
|
2635
2635
|
Adds `correct-response` / `incorrect-response` states to choices. */
|
|
2636
|
-
"prop:showCorrectResponse"?:
|
|
2636
|
+
"prop:showCorrectResponse"?: QtiGraphicOrderInteraction["showCorrectResponse"];
|
|
2637
2637
|
/** Shows a cloned interaction with the correct answers filled in.
|
|
2638
2638
|
Creates a disabled copy positioned after this interaction. */
|
|
2639
|
-
"bool:show-full-correct-response"?:
|
|
2639
|
+
"bool:show-full-correct-response"?: QtiGraphicOrderInteraction["showFullCorrectResponse"];
|
|
2640
2640
|
/** Shows a cloned interaction with the correct answers filled in.
|
|
2641
2641
|
Creates a disabled copy positioned after this interaction. */
|
|
2642
|
-
"prop:showFullCorrectResponse"?:
|
|
2642
|
+
"prop:showFullCorrectResponse"?: QtiGraphicOrderInteraction["showFullCorrectResponse"];
|
|
2643
2643
|
/** Shows feedback on candidate's selections compared to correct response.
|
|
2644
2644
|
Adds `candidate-correct` / `candidate-incorrect` states to choices. */
|
|
2645
|
-
"bool:show-candidate-correction"?:
|
|
2645
|
+
"bool:show-candidate-correction"?: QtiGraphicOrderInteraction["showCandidateCorrection"];
|
|
2646
2646
|
/** Shows feedback on candidate's selections compared to correct response.
|
|
2647
2647
|
Adds `candidate-correct` / `candidate-incorrect` states to choices. */
|
|
2648
|
-
"prop:showCandidateCorrection"?:
|
|
2648
|
+
"prop:showCandidateCorrection"?: QtiGraphicOrderInteraction["showCandidateCorrection"];
|
|
2649
2649
|
/** */
|
|
2650
|
-
"prop:response"?:
|
|
2650
|
+
"prop:response"?: QtiGraphicOrderInteraction["response"];
|
|
2651
2651
|
/** */
|
|
2652
|
-
"prop:value"?:
|
|
2652
|
+
"prop:value"?: QtiGraphicOrderInteraction["value"];
|
|
2653
2653
|
/** */
|
|
2654
|
-
"prop:isFullCorrectResponse"?:
|
|
2654
|
+
"prop:isFullCorrectResponse"?: QtiGraphicOrderInteraction["isFullCorrectResponse"];
|
|
2655
2655
|
/** Get/set correct response programmatically.
|
|
2656
2656
|
This property syncs with the `correct-response` attribute. */
|
|
2657
|
-
"prop:correctResponse"?:
|
|
2657
|
+
"prop:correctResponse"?: QtiGraphicOrderInteraction["correctResponse"];
|
|
2658
2658
|
/** */
|
|
2659
2659
|
"on:qti-register-interaction"?: (e: CustomEvent) => void;
|
|
2660
2660
|
/** */
|
|
@@ -2666,58 +2666,58 @@ This property syncs with the `correct-response` attribute. */
|
|
|
2666
2666
|
textContent?: string | number;
|
|
2667
2667
|
};
|
|
2668
2668
|
|
|
2669
|
-
export type
|
|
2669
|
+
export type QtiHotspotInteractionProps = {
|
|
2670
2670
|
/** */
|
|
2671
|
-
"min-choices"?:
|
|
2671
|
+
"min-choices"?: QtiHotspotInteraction["minChoices"];
|
|
2672
2672
|
/** */
|
|
2673
|
-
minChoices?:
|
|
2673
|
+
minChoices?: QtiHotspotInteraction["minChoices"];
|
|
2674
2674
|
/** */
|
|
2675
|
-
"max-choices"?:
|
|
2675
|
+
"max-choices"?: QtiHotspotInteraction["maxChoices"];
|
|
2676
2676
|
/** */
|
|
2677
|
-
maxChoices?:
|
|
2677
|
+
maxChoices?: QtiHotspotInteraction["maxChoices"];
|
|
2678
2678
|
/** */
|
|
2679
|
-
"response-identifier"?:
|
|
2679
|
+
"response-identifier"?: QtiHotspotInteraction["responseIdentifier"];
|
|
2680
2680
|
/** */
|
|
2681
|
-
responseIdentifier?:
|
|
2681
|
+
responseIdentifier?: QtiHotspotInteraction["responseIdentifier"];
|
|
2682
2682
|
/** */
|
|
2683
|
-
disabled?:
|
|
2683
|
+
disabled?: QtiHotspotInteraction["disabled"];
|
|
2684
2684
|
/** */
|
|
2685
|
-
readonly?:
|
|
2685
|
+
readonly?: QtiHotspotInteraction["readonly"];
|
|
2686
2686
|
/** */
|
|
2687
|
-
name?:
|
|
2687
|
+
name?: QtiHotspotInteraction["name"];
|
|
2688
2688
|
/** The correct response for this interaction. Can be set as a comma-separated
|
|
2689
2689
|
string via attribute or as string/string[] via property. */
|
|
2690
|
-
"correct-response"?:
|
|
2690
|
+
"correct-response"?: QtiHotspotInteraction["correctResponseAttr"];
|
|
2691
2691
|
/** The correct response for this interaction. Can be set as a comma-separated
|
|
2692
2692
|
string via attribute or as string/string[] via property. */
|
|
2693
|
-
correctResponseAttr?:
|
|
2693
|
+
correctResponseAttr?: QtiHotspotInteraction["correctResponseAttr"];
|
|
2694
2694
|
/** Shows which choices are correct with inline indicators.
|
|
2695
2695
|
Adds `correct-response` / `incorrect-response` states to choices. */
|
|
2696
|
-
"show-correct-response"?:
|
|
2696
|
+
"show-correct-response"?: QtiHotspotInteraction["showCorrectResponse"];
|
|
2697
2697
|
/** Shows which choices are correct with inline indicators.
|
|
2698
2698
|
Adds `correct-response` / `incorrect-response` states to choices. */
|
|
2699
|
-
showCorrectResponse?:
|
|
2699
|
+
showCorrectResponse?: QtiHotspotInteraction["showCorrectResponse"];
|
|
2700
2700
|
/** Shows a cloned interaction with the correct answers filled in.
|
|
2701
2701
|
Creates a disabled copy positioned after this interaction. */
|
|
2702
|
-
"show-full-correct-response"?:
|
|
2702
|
+
"show-full-correct-response"?: QtiHotspotInteraction["showFullCorrectResponse"];
|
|
2703
2703
|
/** Shows a cloned interaction with the correct answers filled in.
|
|
2704
2704
|
Creates a disabled copy positioned after this interaction. */
|
|
2705
|
-
showFullCorrectResponse?:
|
|
2705
|
+
showFullCorrectResponse?: QtiHotspotInteraction["showFullCorrectResponse"];
|
|
2706
2706
|
/** Shows feedback on candidate's selections compared to correct response.
|
|
2707
2707
|
Adds `candidate-correct` / `candidate-incorrect` states to choices. */
|
|
2708
|
-
"show-candidate-correction"?:
|
|
2708
|
+
"show-candidate-correction"?: QtiHotspotInteraction["showCandidateCorrection"];
|
|
2709
2709
|
/** Shows feedback on candidate's selections compared to correct response.
|
|
2710
2710
|
Adds `candidate-correct` / `candidate-incorrect` states to choices. */
|
|
2711
|
-
showCandidateCorrection?:
|
|
2711
|
+
showCandidateCorrection?: QtiHotspotInteraction["showCandidateCorrection"];
|
|
2712
2712
|
/** */
|
|
2713
|
-
response?:
|
|
2713
|
+
response?: QtiHotspotInteraction["response"];
|
|
2714
2714
|
/** */
|
|
2715
|
-
value?:
|
|
2715
|
+
value?: QtiHotspotInteraction["value"];
|
|
2716
2716
|
/** */
|
|
2717
|
-
isFullCorrectResponse?:
|
|
2717
|
+
isFullCorrectResponse?: QtiHotspotInteraction["isFullCorrectResponse"];
|
|
2718
2718
|
/** Get/set correct response programmatically.
|
|
2719
2719
|
This property syncs with the `correct-response` attribute. */
|
|
2720
|
-
correctResponse?:
|
|
2720
|
+
correctResponse?: QtiHotspotInteraction["correctResponse"];
|
|
2721
2721
|
|
|
2722
2722
|
/** */
|
|
2723
2723
|
"onqti-register-interaction"?: (e: CustomEvent) => void;
|
|
@@ -2725,58 +2725,58 @@ This property syncs with the `correct-response` attribute. */
|
|
|
2725
2725
|
"onqti-interaction-response"?: (e: CustomEvent) => void;
|
|
2726
2726
|
};
|
|
2727
2727
|
|
|
2728
|
-
export type
|
|
2728
|
+
export type QtiHotspotInteractionSolidJsProps = {
|
|
2729
2729
|
/** */
|
|
2730
|
-
"attr:min-choices"?:
|
|
2730
|
+
"attr:min-choices"?: QtiHotspotInteraction["minChoices"];
|
|
2731
2731
|
/** */
|
|
2732
|
-
"prop:minChoices"?:
|
|
2732
|
+
"prop:minChoices"?: QtiHotspotInteraction["minChoices"];
|
|
2733
2733
|
/** */
|
|
2734
|
-
"attr:max-choices"?:
|
|
2734
|
+
"attr:max-choices"?: QtiHotspotInteraction["maxChoices"];
|
|
2735
2735
|
/** */
|
|
2736
|
-
"prop:maxChoices"?:
|
|
2736
|
+
"prop:maxChoices"?: QtiHotspotInteraction["maxChoices"];
|
|
2737
2737
|
/** */
|
|
2738
|
-
"attr:response-identifier"?:
|
|
2738
|
+
"attr:response-identifier"?: QtiHotspotInteraction["responseIdentifier"];
|
|
2739
2739
|
/** */
|
|
2740
|
-
"prop:responseIdentifier"?:
|
|
2740
|
+
"prop:responseIdentifier"?: QtiHotspotInteraction["responseIdentifier"];
|
|
2741
2741
|
/** */
|
|
2742
|
-
"prop:disabled"?:
|
|
2742
|
+
"prop:disabled"?: QtiHotspotInteraction["disabled"];
|
|
2743
2743
|
/** */
|
|
2744
|
-
"prop:readonly"?:
|
|
2744
|
+
"prop:readonly"?: QtiHotspotInteraction["readonly"];
|
|
2745
2745
|
/** */
|
|
2746
|
-
"prop:name"?:
|
|
2746
|
+
"prop:name"?: QtiHotspotInteraction["name"];
|
|
2747
2747
|
/** The correct response for this interaction. Can be set as a comma-separated
|
|
2748
2748
|
string via attribute or as string/string[] via property. */
|
|
2749
|
-
"attr:correct-response"?:
|
|
2749
|
+
"attr:correct-response"?: QtiHotspotInteraction["correctResponseAttr"];
|
|
2750
2750
|
/** The correct response for this interaction. Can be set as a comma-separated
|
|
2751
2751
|
string via attribute or as string/string[] via property. */
|
|
2752
|
-
"prop:correctResponseAttr"?:
|
|
2752
|
+
"prop:correctResponseAttr"?: QtiHotspotInteraction["correctResponseAttr"];
|
|
2753
2753
|
/** Shows which choices are correct with inline indicators.
|
|
2754
2754
|
Adds `correct-response` / `incorrect-response` states to choices. */
|
|
2755
|
-
"bool:show-correct-response"?:
|
|
2755
|
+
"bool:show-correct-response"?: QtiHotspotInteraction["showCorrectResponse"];
|
|
2756
2756
|
/** Shows which choices are correct with inline indicators.
|
|
2757
2757
|
Adds `correct-response` / `incorrect-response` states to choices. */
|
|
2758
|
-
"prop:showCorrectResponse"?:
|
|
2758
|
+
"prop:showCorrectResponse"?: QtiHotspotInteraction["showCorrectResponse"];
|
|
2759
2759
|
/** Shows a cloned interaction with the correct answers filled in.
|
|
2760
2760
|
Creates a disabled copy positioned after this interaction. */
|
|
2761
|
-
"bool:show-full-correct-response"?:
|
|
2761
|
+
"bool:show-full-correct-response"?: QtiHotspotInteraction["showFullCorrectResponse"];
|
|
2762
2762
|
/** Shows a cloned interaction with the correct answers filled in.
|
|
2763
2763
|
Creates a disabled copy positioned after this interaction. */
|
|
2764
|
-
"prop:showFullCorrectResponse"?:
|
|
2764
|
+
"prop:showFullCorrectResponse"?: QtiHotspotInteraction["showFullCorrectResponse"];
|
|
2765
2765
|
/** Shows feedback on candidate's selections compared to correct response.
|
|
2766
2766
|
Adds `candidate-correct` / `candidate-incorrect` states to choices. */
|
|
2767
|
-
"bool:show-candidate-correction"?:
|
|
2767
|
+
"bool:show-candidate-correction"?: QtiHotspotInteraction["showCandidateCorrection"];
|
|
2768
2768
|
/** Shows feedback on candidate's selections compared to correct response.
|
|
2769
2769
|
Adds `candidate-correct` / `candidate-incorrect` states to choices. */
|
|
2770
|
-
"prop:showCandidateCorrection"?:
|
|
2770
|
+
"prop:showCandidateCorrection"?: QtiHotspotInteraction["showCandidateCorrection"];
|
|
2771
2771
|
/** */
|
|
2772
|
-
"prop:response"?:
|
|
2772
|
+
"prop:response"?: QtiHotspotInteraction["response"];
|
|
2773
2773
|
/** */
|
|
2774
|
-
"prop:value"?:
|
|
2774
|
+
"prop:value"?: QtiHotspotInteraction["value"];
|
|
2775
2775
|
/** */
|
|
2776
|
-
"prop:isFullCorrectResponse"?:
|
|
2776
|
+
"prop:isFullCorrectResponse"?: QtiHotspotInteraction["isFullCorrectResponse"];
|
|
2777
2777
|
/** Get/set correct response programmatically.
|
|
2778
2778
|
This property syncs with the `correct-response` attribute. */
|
|
2779
|
-
"prop:correctResponse"?:
|
|
2779
|
+
"prop:correctResponse"?: QtiHotspotInteraction["correctResponse"];
|
|
2780
2780
|
/** */
|
|
2781
2781
|
"on:qti-register-interaction"?: (e: CustomEvent) => void;
|
|
2782
2782
|
/** */
|
|
@@ -4719,18 +4719,18 @@ export type QtiLookupOutcomeValueSolidJsProps = {
|
|
|
4719
4719
|
textContent?: string | number;
|
|
4720
4720
|
};
|
|
4721
4721
|
|
|
4722
|
-
export type
|
|
4722
|
+
export type QtiResponseConditionProps = {};
|
|
4723
4723
|
|
|
4724
|
-
export type
|
|
4724
|
+
export type QtiResponseConditionSolidJsProps = {
|
|
4725
4725
|
/** Set the innerHTML of the element */
|
|
4726
4726
|
innerHTML?: string;
|
|
4727
4727
|
/** Set the textContent of the element */
|
|
4728
4728
|
textContent?: string | number;
|
|
4729
4729
|
};
|
|
4730
4730
|
|
|
4731
|
-
export type
|
|
4731
|
+
export type QtiResponseElseProps = {};
|
|
4732
4732
|
|
|
4733
|
-
export type
|
|
4733
|
+
export type QtiResponseElseSolidJsProps = {
|
|
4734
4734
|
/** Set the innerHTML of the element */
|
|
4735
4735
|
innerHTML?: string;
|
|
4736
4736
|
/** Set the textContent of the element */
|
|
@@ -5896,6 +5896,100 @@ export type CustomElements = {
|
|
|
5896
5896
|
BaseEvents
|
|
5897
5897
|
>;
|
|
5898
5898
|
|
|
5899
|
+
/**
|
|
5900
|
+
* qti-order-interaction
|
|
5901
|
+
* qti-choice-interaction
|
|
5902
|
+
*
|
|
5903
|
+
* ## Attributes & Properties
|
|
5904
|
+
*
|
|
5905
|
+
* Component attributes and properties that can be applied to the element or by using JavaScript.
|
|
5906
|
+
*
|
|
5907
|
+
* - `template-identifier`/`templateIdentifier`: undefined
|
|
5908
|
+
* - `show-hide`/`showHide`: undefined
|
|
5909
|
+
* - `fixed`: undefined
|
|
5910
|
+
* - `identifier`: undefined
|
|
5911
|
+
* - `tabindex`/`tabIndex`: undefined
|
|
5912
|
+
* - `aria-disabled`/`disabled`: undefined
|
|
5913
|
+
* - `aria-readonly`/`readonly`: undefined
|
|
5914
|
+
* - `marker`: undefined (property only)
|
|
5915
|
+
* - `checked`: undefined (property only) (readonly)
|
|
5916
|
+
* - `internals`: undefined (property only)
|
|
5917
|
+
*
|
|
5918
|
+
* ## Events
|
|
5919
|
+
*
|
|
5920
|
+
* Events that will be emitted by the component.
|
|
5921
|
+
*
|
|
5922
|
+
* - `undefined`: undefined
|
|
5923
|
+
*
|
|
5924
|
+
* ## Methods
|
|
5925
|
+
*
|
|
5926
|
+
* Methods that can be called to access component functionality.
|
|
5927
|
+
*
|
|
5928
|
+
* - `handleDisabledChange(_oldValue: boolean, disabled: boolean) => void`: undefined
|
|
5929
|
+
*/
|
|
5930
|
+
"qti-simple-choice": Partial<
|
|
5931
|
+
QtiSimpleChoiceProps & BaseProps<QtiSimpleChoice> & BaseEvents
|
|
5932
|
+
>;
|
|
5933
|
+
|
|
5934
|
+
/**
|
|
5935
|
+
*
|
|
5936
|
+
*
|
|
5937
|
+
* ## Attributes & Properties
|
|
5938
|
+
*
|
|
5939
|
+
* Component attributes and properties that can be applied to the element or by using JavaScript.
|
|
5940
|
+
*
|
|
5941
|
+
* - `orientation`: undefined
|
|
5942
|
+
* - `class`: undefined
|
|
5943
|
+
* - `min-choices`/`minChoices`: undefined
|
|
5944
|
+
* - `max-choices`/`maxChoices`: undefined
|
|
5945
|
+
* - `response-identifier`/`responseIdentifier`: undefined
|
|
5946
|
+
* - `disabled`: undefined
|
|
5947
|
+
* - `readonly`: undefined
|
|
5948
|
+
* - `name`: undefined
|
|
5949
|
+
* - `correct-response`/`correctResponseAttr`: The correct response for this interaction. Can be set as a comma-separated
|
|
5950
|
+
* string via attribute or as string/string[] via property.
|
|
5951
|
+
* - `show-correct-response`/`showCorrectResponse`: Shows which choices are correct with inline indicators.
|
|
5952
|
+
* Adds `correct-response` / `incorrect-response` states to choices.
|
|
5953
|
+
* - `show-full-correct-response`/`showFullCorrectResponse`: Shows a cloned interaction with the correct answers filled in.
|
|
5954
|
+
* Creates a disabled copy positioned after this interaction.
|
|
5955
|
+
* - `show-candidate-correction`/`showCandidateCorrection`: Shows feedback on candidate's selections compared to correct response.
|
|
5956
|
+
* Adds `candidate-correct` / `candidate-incorrect` states to choices.
|
|
5957
|
+
* - `response`: undefined (property only)
|
|
5958
|
+
* - `value`: undefined (property only)
|
|
5959
|
+
* - `internals`: undefined (property only) (readonly)
|
|
5960
|
+
* - `isFullCorrectResponse`: undefined (property only)
|
|
5961
|
+
* - `correctResponse`: Get/set correct response programmatically.
|
|
5962
|
+
* This property syncs with the `correct-response` attribute. (property only)
|
|
5963
|
+
* - `correctness`: Returns the correctness of the current response compared to correct response.
|
|
5964
|
+
* Works in both standalone mode (using `correct-response` attribute) and
|
|
5965
|
+
* item context mode (using responseVariable). (property only) (readonly)
|
|
5966
|
+
* - `isInline`: undefined (property only) (readonly)
|
|
5967
|
+
* - `responseVariable`: undefined (property only) (readonly)
|
|
5968
|
+
*
|
|
5969
|
+
* ## Events
|
|
5970
|
+
*
|
|
5971
|
+
* Events that will be emitted by the component.
|
|
5972
|
+
*
|
|
5973
|
+
* - `qti-register-interaction`: undefined
|
|
5974
|
+
* - `qti-interaction-response`: undefined
|
|
5975
|
+
*
|
|
5976
|
+
* ## Methods
|
|
5977
|
+
*
|
|
5978
|
+
* Methods that can be called to access component functionality.
|
|
5979
|
+
*
|
|
5980
|
+
* - `toggleCandidateCorrection(show: boolean) => void`: undefined
|
|
5981
|
+
* - `validate() => boolean`: undefined
|
|
5982
|
+
* - `reportValidity() => boolean`: undefined
|
|
5983
|
+
* - `toggleCorrectResponse(show: boolean) => void`: undefined
|
|
5984
|
+
* - `reset() => void`: undefined
|
|
5985
|
+
* - `formResetCallback() => void`: Called by the browser when the associated form is reset.
|
|
5986
|
+
* Part of the Form-Associated Custom Elements API.
|
|
5987
|
+
* - `saveResponse(value: string | string[], state?: string | null) => void`: undefined
|
|
5988
|
+
*/
|
|
5989
|
+
"qti-choice-interaction": Partial<
|
|
5990
|
+
QtiChoiceInteractionProps & BaseProps<QtiChoiceInteraction> & BaseEvents
|
|
5991
|
+
>;
|
|
5992
|
+
|
|
5899
5993
|
/**
|
|
5900
5994
|
*
|
|
5901
5995
|
*
|
|
@@ -6053,100 +6147,6 @@ export type CustomElements = {
|
|
|
6053
6147
|
*/
|
|
6054
6148
|
"qti-prompt": Partial<QtiPromptProps & BaseProps<QtiPrompt> & BaseEvents>;
|
|
6055
6149
|
|
|
6056
|
-
/**
|
|
6057
|
-
* qti-order-interaction
|
|
6058
|
-
* qti-choice-interaction
|
|
6059
|
-
*
|
|
6060
|
-
* ## Attributes & Properties
|
|
6061
|
-
*
|
|
6062
|
-
* Component attributes and properties that can be applied to the element or by using JavaScript.
|
|
6063
|
-
*
|
|
6064
|
-
* - `template-identifier`/`templateIdentifier`: undefined
|
|
6065
|
-
* - `show-hide`/`showHide`: undefined
|
|
6066
|
-
* - `fixed`: undefined
|
|
6067
|
-
* - `identifier`: undefined
|
|
6068
|
-
* - `tabindex`/`tabIndex`: undefined
|
|
6069
|
-
* - `aria-disabled`/`disabled`: undefined
|
|
6070
|
-
* - `aria-readonly`/`readonly`: undefined
|
|
6071
|
-
* - `marker`: undefined (property only)
|
|
6072
|
-
* - `checked`: undefined (property only) (readonly)
|
|
6073
|
-
* - `internals`: undefined (property only)
|
|
6074
|
-
*
|
|
6075
|
-
* ## Events
|
|
6076
|
-
*
|
|
6077
|
-
* Events that will be emitted by the component.
|
|
6078
|
-
*
|
|
6079
|
-
* - `undefined`: undefined
|
|
6080
|
-
*
|
|
6081
|
-
* ## Methods
|
|
6082
|
-
*
|
|
6083
|
-
* Methods that can be called to access component functionality.
|
|
6084
|
-
*
|
|
6085
|
-
* - `handleDisabledChange(_oldValue: boolean, disabled: boolean) => void`: undefined
|
|
6086
|
-
*/
|
|
6087
|
-
"qti-simple-choice": Partial<
|
|
6088
|
-
QtiSimpleChoiceProps & BaseProps<QtiSimpleChoice> & BaseEvents
|
|
6089
|
-
>;
|
|
6090
|
-
|
|
6091
|
-
/**
|
|
6092
|
-
*
|
|
6093
|
-
*
|
|
6094
|
-
* ## Attributes & Properties
|
|
6095
|
-
*
|
|
6096
|
-
* Component attributes and properties that can be applied to the element or by using JavaScript.
|
|
6097
|
-
*
|
|
6098
|
-
* - `orientation`: undefined
|
|
6099
|
-
* - `class`: undefined
|
|
6100
|
-
* - `min-choices`/`minChoices`: undefined
|
|
6101
|
-
* - `max-choices`/`maxChoices`: undefined
|
|
6102
|
-
* - `response-identifier`/`responseIdentifier`: undefined
|
|
6103
|
-
* - `disabled`: undefined
|
|
6104
|
-
* - `readonly`: undefined
|
|
6105
|
-
* - `name`: undefined
|
|
6106
|
-
* - `correct-response`/`correctResponseAttr`: The correct response for this interaction. Can be set as a comma-separated
|
|
6107
|
-
* string via attribute or as string/string[] via property.
|
|
6108
|
-
* - `show-correct-response`/`showCorrectResponse`: Shows which choices are correct with inline indicators.
|
|
6109
|
-
* Adds `correct-response` / `incorrect-response` states to choices.
|
|
6110
|
-
* - `show-full-correct-response`/`showFullCorrectResponse`: Shows a cloned interaction with the correct answers filled in.
|
|
6111
|
-
* Creates a disabled copy positioned after this interaction.
|
|
6112
|
-
* - `show-candidate-correction`/`showCandidateCorrection`: Shows feedback on candidate's selections compared to correct response.
|
|
6113
|
-
* Adds `candidate-correct` / `candidate-incorrect` states to choices.
|
|
6114
|
-
* - `response`: undefined (property only)
|
|
6115
|
-
* - `value`: undefined (property only)
|
|
6116
|
-
* - `internals`: undefined (property only) (readonly)
|
|
6117
|
-
* - `isFullCorrectResponse`: undefined (property only)
|
|
6118
|
-
* - `correctResponse`: Get/set correct response programmatically.
|
|
6119
|
-
* This property syncs with the `correct-response` attribute. (property only)
|
|
6120
|
-
* - `correctness`: Returns the correctness of the current response compared to correct response.
|
|
6121
|
-
* Works in both standalone mode (using `correct-response` attribute) and
|
|
6122
|
-
* item context mode (using responseVariable). (property only) (readonly)
|
|
6123
|
-
* - `isInline`: undefined (property only) (readonly)
|
|
6124
|
-
* - `responseVariable`: undefined (property only) (readonly)
|
|
6125
|
-
*
|
|
6126
|
-
* ## Events
|
|
6127
|
-
*
|
|
6128
|
-
* Events that will be emitted by the component.
|
|
6129
|
-
*
|
|
6130
|
-
* - `qti-register-interaction`: undefined
|
|
6131
|
-
* - `qti-interaction-response`: undefined
|
|
6132
|
-
*
|
|
6133
|
-
* ## Methods
|
|
6134
|
-
*
|
|
6135
|
-
* Methods that can be called to access component functionality.
|
|
6136
|
-
*
|
|
6137
|
-
* - `toggleCandidateCorrection(show: boolean) => void`: undefined
|
|
6138
|
-
* - `validate() => boolean`: undefined
|
|
6139
|
-
* - `reportValidity() => boolean`: undefined
|
|
6140
|
-
* - `toggleCorrectResponse(show: boolean) => void`: undefined
|
|
6141
|
-
* - `reset() => void`: undefined
|
|
6142
|
-
* - `formResetCallback() => void`: Called by the browser when the associated form is reset.
|
|
6143
|
-
* Part of the Form-Associated Custom Elements API.
|
|
6144
|
-
* - `saveResponse(value: string | string[], state?: string | null) => void`: undefined
|
|
6145
|
-
*/
|
|
6146
|
-
"qti-choice-interaction": Partial<
|
|
6147
|
-
QtiChoiceInteractionProps & BaseProps<QtiChoiceInteraction> & BaseEvents
|
|
6148
|
-
>;
|
|
6149
|
-
|
|
6150
6150
|
/**
|
|
6151
6151
|
* QTI Custom Interaction component for legacy CES-based interactions.
|
|
6152
6152
|
*
|
|
@@ -6472,17 +6472,19 @@ export type CustomElements = {
|
|
|
6472
6472
|
*
|
|
6473
6473
|
* Methods that can be called to access component functionality.
|
|
6474
6474
|
*
|
|
6475
|
+
* - `toggleCorrectResponse(show: boolean) => void`: undefined
|
|
6475
6476
|
* - `toggleCandidateCorrection(show: boolean) => void`: undefined
|
|
6476
6477
|
* - `validate() => boolean`: undefined
|
|
6477
6478
|
* - `reportValidity() => boolean`: undefined
|
|
6478
|
-
* - `toggleCorrectResponse(show: boolean) => void`: undefined
|
|
6479
6479
|
* - `reset() => void`: undefined
|
|
6480
6480
|
* - `formResetCallback() => void`: Called by the browser when the associated form is reset.
|
|
6481
6481
|
* Part of the Form-Associated Custom Elements API.
|
|
6482
6482
|
* - `saveResponse(value: string | string[], state?: string | null) => void`: undefined
|
|
6483
6483
|
*/
|
|
6484
|
-
"qti-
|
|
6485
|
-
|
|
6484
|
+
"qti-graphic-order-interaction": Partial<
|
|
6485
|
+
QtiGraphicOrderInteractionProps &
|
|
6486
|
+
BaseProps<QtiGraphicOrderInteraction> &
|
|
6487
|
+
BaseEvents
|
|
6486
6488
|
>;
|
|
6487
6489
|
|
|
6488
6490
|
/**
|
|
@@ -6529,19 +6531,17 @@ export type CustomElements = {
|
|
|
6529
6531
|
*
|
|
6530
6532
|
* Methods that can be called to access component functionality.
|
|
6531
6533
|
*
|
|
6532
|
-
* - `toggleCorrectResponse(show: boolean) => void`: undefined
|
|
6533
6534
|
* - `toggleCandidateCorrection(show: boolean) => void`: undefined
|
|
6534
6535
|
* - `validate() => boolean`: undefined
|
|
6535
6536
|
* - `reportValidity() => boolean`: undefined
|
|
6537
|
+
* - `toggleCorrectResponse(show: boolean) => void`: undefined
|
|
6536
6538
|
* - `reset() => void`: undefined
|
|
6537
6539
|
* - `formResetCallback() => void`: Called by the browser when the associated form is reset.
|
|
6538
6540
|
* Part of the Form-Associated Custom Elements API.
|
|
6539
|
-
* - `saveResponse(value: string | string[], state?: string | null) => void`: undefined
|
|
6540
|
-
*/
|
|
6541
|
-
"qti-
|
|
6542
|
-
|
|
6543
|
-
BaseProps<QtiGraphicOrderInteraction> &
|
|
6544
|
-
BaseEvents
|
|
6541
|
+
* - `saveResponse(value: string | string[], state?: string | null) => void`: undefined
|
|
6542
|
+
*/
|
|
6543
|
+
"qti-hotspot-interaction": Partial<
|
|
6544
|
+
QtiHotspotInteractionProps & BaseProps<QtiHotspotInteraction> & BaseEvents
|
|
6545
6545
|
>;
|
|
6546
6546
|
|
|
6547
6547
|
/**
|
|
@@ -7923,12 +7923,10 @@ export type CustomElements = {
|
|
|
7923
7923
|
*
|
|
7924
7924
|
* Methods that can be called to access component functionality.
|
|
7925
7925
|
*
|
|
7926
|
-
* - `calculate() => void`: undefined
|
|
7927
|
-
* - `getSubRules() => QtiRule[]`: undefined
|
|
7928
7926
|
* - `process() => void`: undefined
|
|
7929
7927
|
*/
|
|
7930
|
-
"qti-response-
|
|
7931
|
-
|
|
7928
|
+
"qti-response-condition": Partial<
|
|
7929
|
+
QtiResponseConditionProps & BaseProps<QtiResponseCondition> & BaseEvents
|
|
7932
7930
|
>;
|
|
7933
7931
|
|
|
7934
7932
|
/**
|
|
@@ -7938,10 +7936,12 @@ export type CustomElements = {
|
|
|
7938
7936
|
*
|
|
7939
7937
|
* Methods that can be called to access component functionality.
|
|
7940
7938
|
*
|
|
7939
|
+
* - `calculate() => void`: undefined
|
|
7940
|
+
* - `getSubRules() => QtiRule[]`: undefined
|
|
7941
7941
|
* - `process() => void`: undefined
|
|
7942
7942
|
*/
|
|
7943
|
-
"qti-response-
|
|
7944
|
-
|
|
7943
|
+
"qti-response-else": Partial<
|
|
7944
|
+
QtiResponseElseProps & BaseProps<QtiResponseElse> & BaseEvents
|
|
7945
7945
|
>;
|
|
7946
7946
|
|
|
7947
7947
|
/**
|
|
@@ -9252,6 +9252,106 @@ export type CustomElementsSolidJs = {
|
|
|
9252
9252
|
BaseEvents
|
|
9253
9253
|
>;
|
|
9254
9254
|
|
|
9255
|
+
/**
|
|
9256
|
+
* qti-order-interaction
|
|
9257
|
+
* qti-choice-interaction
|
|
9258
|
+
*
|
|
9259
|
+
* ## Attributes & Properties
|
|
9260
|
+
*
|
|
9261
|
+
* Component attributes and properties that can be applied to the element or by using JavaScript.
|
|
9262
|
+
*
|
|
9263
|
+
* - `template-identifier`/`templateIdentifier`: undefined
|
|
9264
|
+
* - `show-hide`/`showHide`: undefined
|
|
9265
|
+
* - `fixed`: undefined
|
|
9266
|
+
* - `identifier`: undefined
|
|
9267
|
+
* - `tabindex`/`tabIndex`: undefined
|
|
9268
|
+
* - `aria-disabled`/`disabled`: undefined
|
|
9269
|
+
* - `aria-readonly`/`readonly`: undefined
|
|
9270
|
+
* - `marker`: undefined (property only)
|
|
9271
|
+
* - `checked`: undefined (property only) (readonly)
|
|
9272
|
+
* - `internals`: undefined (property only)
|
|
9273
|
+
*
|
|
9274
|
+
* ## Events
|
|
9275
|
+
*
|
|
9276
|
+
* Events that will be emitted by the component.
|
|
9277
|
+
*
|
|
9278
|
+
* - `undefined`: undefined
|
|
9279
|
+
*
|
|
9280
|
+
* ## Methods
|
|
9281
|
+
*
|
|
9282
|
+
* Methods that can be called to access component functionality.
|
|
9283
|
+
*
|
|
9284
|
+
* - `handleDisabledChange(_oldValue: boolean, disabled: boolean) => void`: undefined
|
|
9285
|
+
*/
|
|
9286
|
+
"qti-simple-choice": Partial<
|
|
9287
|
+
QtiSimpleChoiceProps &
|
|
9288
|
+
QtiSimpleChoiceSolidJsProps &
|
|
9289
|
+
BaseProps<QtiSimpleChoice> &
|
|
9290
|
+
BaseEvents
|
|
9291
|
+
>;
|
|
9292
|
+
|
|
9293
|
+
/**
|
|
9294
|
+
*
|
|
9295
|
+
*
|
|
9296
|
+
* ## Attributes & Properties
|
|
9297
|
+
*
|
|
9298
|
+
* Component attributes and properties that can be applied to the element or by using JavaScript.
|
|
9299
|
+
*
|
|
9300
|
+
* - `orientation`: undefined
|
|
9301
|
+
* - `class`: undefined
|
|
9302
|
+
* - `min-choices`/`minChoices`: undefined
|
|
9303
|
+
* - `max-choices`/`maxChoices`: undefined
|
|
9304
|
+
* - `response-identifier`/`responseIdentifier`: undefined
|
|
9305
|
+
* - `disabled`: undefined
|
|
9306
|
+
* - `readonly`: undefined
|
|
9307
|
+
* - `name`: undefined
|
|
9308
|
+
* - `correct-response`/`correctResponseAttr`: The correct response for this interaction. Can be set as a comma-separated
|
|
9309
|
+
* string via attribute or as string/string[] via property.
|
|
9310
|
+
* - `show-correct-response`/`showCorrectResponse`: Shows which choices are correct with inline indicators.
|
|
9311
|
+
* Adds `correct-response` / `incorrect-response` states to choices.
|
|
9312
|
+
* - `show-full-correct-response`/`showFullCorrectResponse`: Shows a cloned interaction with the correct answers filled in.
|
|
9313
|
+
* Creates a disabled copy positioned after this interaction.
|
|
9314
|
+
* - `show-candidate-correction`/`showCandidateCorrection`: Shows feedback on candidate's selections compared to correct response.
|
|
9315
|
+
* Adds `candidate-correct` / `candidate-incorrect` states to choices.
|
|
9316
|
+
* - `response`: undefined (property only)
|
|
9317
|
+
* - `value`: undefined (property only)
|
|
9318
|
+
* - `internals`: undefined (property only) (readonly)
|
|
9319
|
+
* - `isFullCorrectResponse`: undefined (property only)
|
|
9320
|
+
* - `correctResponse`: Get/set correct response programmatically.
|
|
9321
|
+
* This property syncs with the `correct-response` attribute. (property only)
|
|
9322
|
+
* - `correctness`: Returns the correctness of the current response compared to correct response.
|
|
9323
|
+
* Works in both standalone mode (using `correct-response` attribute) and
|
|
9324
|
+
* item context mode (using responseVariable). (property only) (readonly)
|
|
9325
|
+
* - `isInline`: undefined (property only) (readonly)
|
|
9326
|
+
* - `responseVariable`: undefined (property only) (readonly)
|
|
9327
|
+
*
|
|
9328
|
+
* ## Events
|
|
9329
|
+
*
|
|
9330
|
+
* Events that will be emitted by the component.
|
|
9331
|
+
*
|
|
9332
|
+
* - `qti-register-interaction`: undefined
|
|
9333
|
+
* - `qti-interaction-response`: undefined
|
|
9334
|
+
*
|
|
9335
|
+
* ## Methods
|
|
9336
|
+
*
|
|
9337
|
+
* Methods that can be called to access component functionality.
|
|
9338
|
+
*
|
|
9339
|
+
* - `toggleCandidateCorrection(show: boolean) => void`: undefined
|
|
9340
|
+
* - `validate() => boolean`: undefined
|
|
9341
|
+
* - `reportValidity() => boolean`: undefined
|
|
9342
|
+
* - `toggleCorrectResponse(show: boolean) => void`: undefined
|
|
9343
|
+
* - `reset() => void`: undefined
|
|
9344
|
+
* - `formResetCallback() => void`: Called by the browser when the associated form is reset.
|
|
9345
|
+
* Part of the Form-Associated Custom Elements API.
|
|
9346
|
+
* - `saveResponse(value: string | string[], state?: string | null) => void`: undefined
|
|
9347
|
+
*/
|
|
9348
|
+
"qti-choice-interaction": Partial<
|
|
9349
|
+
QtiChoiceInteractionProps &
|
|
9350
|
+
QtiChoiceInteractionSolidJsProps &
|
|
9351
|
+
BaseProps<QtiChoiceInteraction> &
|
|
9352
|
+
BaseEvents
|
|
9353
|
+
>;
|
|
9354
|
+
|
|
9255
9355
|
/**
|
|
9256
9356
|
*
|
|
9257
9357
|
*
|
|
@@ -9434,106 +9534,6 @@ export type CustomElementsSolidJs = {
|
|
|
9434
9534
|
QtiPromptProps & QtiPromptSolidJsProps & BaseProps<QtiPrompt> & BaseEvents
|
|
9435
9535
|
>;
|
|
9436
9536
|
|
|
9437
|
-
/**
|
|
9438
|
-
* qti-order-interaction
|
|
9439
|
-
* qti-choice-interaction
|
|
9440
|
-
*
|
|
9441
|
-
* ## Attributes & Properties
|
|
9442
|
-
*
|
|
9443
|
-
* Component attributes and properties that can be applied to the element or by using JavaScript.
|
|
9444
|
-
*
|
|
9445
|
-
* - `template-identifier`/`templateIdentifier`: undefined
|
|
9446
|
-
* - `show-hide`/`showHide`: undefined
|
|
9447
|
-
* - `fixed`: undefined
|
|
9448
|
-
* - `identifier`: undefined
|
|
9449
|
-
* - `tabindex`/`tabIndex`: undefined
|
|
9450
|
-
* - `aria-disabled`/`disabled`: undefined
|
|
9451
|
-
* - `aria-readonly`/`readonly`: undefined
|
|
9452
|
-
* - `marker`: undefined (property only)
|
|
9453
|
-
* - `checked`: undefined (property only) (readonly)
|
|
9454
|
-
* - `internals`: undefined (property only)
|
|
9455
|
-
*
|
|
9456
|
-
* ## Events
|
|
9457
|
-
*
|
|
9458
|
-
* Events that will be emitted by the component.
|
|
9459
|
-
*
|
|
9460
|
-
* - `undefined`: undefined
|
|
9461
|
-
*
|
|
9462
|
-
* ## Methods
|
|
9463
|
-
*
|
|
9464
|
-
* Methods that can be called to access component functionality.
|
|
9465
|
-
*
|
|
9466
|
-
* - `handleDisabledChange(_oldValue: boolean, disabled: boolean) => void`: undefined
|
|
9467
|
-
*/
|
|
9468
|
-
"qti-simple-choice": Partial<
|
|
9469
|
-
QtiSimpleChoiceProps &
|
|
9470
|
-
QtiSimpleChoiceSolidJsProps &
|
|
9471
|
-
BaseProps<QtiSimpleChoice> &
|
|
9472
|
-
BaseEvents
|
|
9473
|
-
>;
|
|
9474
|
-
|
|
9475
|
-
/**
|
|
9476
|
-
*
|
|
9477
|
-
*
|
|
9478
|
-
* ## Attributes & Properties
|
|
9479
|
-
*
|
|
9480
|
-
* Component attributes and properties that can be applied to the element or by using JavaScript.
|
|
9481
|
-
*
|
|
9482
|
-
* - `orientation`: undefined
|
|
9483
|
-
* - `class`: undefined
|
|
9484
|
-
* - `min-choices`/`minChoices`: undefined
|
|
9485
|
-
* - `max-choices`/`maxChoices`: undefined
|
|
9486
|
-
* - `response-identifier`/`responseIdentifier`: undefined
|
|
9487
|
-
* - `disabled`: undefined
|
|
9488
|
-
* - `readonly`: undefined
|
|
9489
|
-
* - `name`: undefined
|
|
9490
|
-
* - `correct-response`/`correctResponseAttr`: The correct response for this interaction. Can be set as a comma-separated
|
|
9491
|
-
* string via attribute or as string/string[] via property.
|
|
9492
|
-
* - `show-correct-response`/`showCorrectResponse`: Shows which choices are correct with inline indicators.
|
|
9493
|
-
* Adds `correct-response` / `incorrect-response` states to choices.
|
|
9494
|
-
* - `show-full-correct-response`/`showFullCorrectResponse`: Shows a cloned interaction with the correct answers filled in.
|
|
9495
|
-
* Creates a disabled copy positioned after this interaction.
|
|
9496
|
-
* - `show-candidate-correction`/`showCandidateCorrection`: Shows feedback on candidate's selections compared to correct response.
|
|
9497
|
-
* Adds `candidate-correct` / `candidate-incorrect` states to choices.
|
|
9498
|
-
* - `response`: undefined (property only)
|
|
9499
|
-
* - `value`: undefined (property only)
|
|
9500
|
-
* - `internals`: undefined (property only) (readonly)
|
|
9501
|
-
* - `isFullCorrectResponse`: undefined (property only)
|
|
9502
|
-
* - `correctResponse`: Get/set correct response programmatically.
|
|
9503
|
-
* This property syncs with the `correct-response` attribute. (property only)
|
|
9504
|
-
* - `correctness`: Returns the correctness of the current response compared to correct response.
|
|
9505
|
-
* Works in both standalone mode (using `correct-response` attribute) and
|
|
9506
|
-
* item context mode (using responseVariable). (property only) (readonly)
|
|
9507
|
-
* - `isInline`: undefined (property only) (readonly)
|
|
9508
|
-
* - `responseVariable`: undefined (property only) (readonly)
|
|
9509
|
-
*
|
|
9510
|
-
* ## Events
|
|
9511
|
-
*
|
|
9512
|
-
* Events that will be emitted by the component.
|
|
9513
|
-
*
|
|
9514
|
-
* - `qti-register-interaction`: undefined
|
|
9515
|
-
* - `qti-interaction-response`: undefined
|
|
9516
|
-
*
|
|
9517
|
-
* ## Methods
|
|
9518
|
-
*
|
|
9519
|
-
* Methods that can be called to access component functionality.
|
|
9520
|
-
*
|
|
9521
|
-
* - `toggleCandidateCorrection(show: boolean) => void`: undefined
|
|
9522
|
-
* - `validate() => boolean`: undefined
|
|
9523
|
-
* - `reportValidity() => boolean`: undefined
|
|
9524
|
-
* - `toggleCorrectResponse(show: boolean) => void`: undefined
|
|
9525
|
-
* - `reset() => void`: undefined
|
|
9526
|
-
* - `formResetCallback() => void`: Called by the browser when the associated form is reset.
|
|
9527
|
-
* Part of the Form-Associated Custom Elements API.
|
|
9528
|
-
* - `saveResponse(value: string | string[], state?: string | null) => void`: undefined
|
|
9529
|
-
*/
|
|
9530
|
-
"qti-choice-interaction": Partial<
|
|
9531
|
-
QtiChoiceInteractionProps &
|
|
9532
|
-
QtiChoiceInteractionSolidJsProps &
|
|
9533
|
-
BaseProps<QtiChoiceInteraction> &
|
|
9534
|
-
BaseEvents
|
|
9535
|
-
>;
|
|
9536
|
-
|
|
9537
9537
|
/**
|
|
9538
9538
|
* QTI Custom Interaction component for legacy CES-based interactions.
|
|
9539
9539
|
*
|
|
@@ -9869,19 +9869,19 @@ export type CustomElementsSolidJs = {
|
|
|
9869
9869
|
*
|
|
9870
9870
|
* Methods that can be called to access component functionality.
|
|
9871
9871
|
*
|
|
9872
|
+
* - `toggleCorrectResponse(show: boolean) => void`: undefined
|
|
9872
9873
|
* - `toggleCandidateCorrection(show: boolean) => void`: undefined
|
|
9873
9874
|
* - `validate() => boolean`: undefined
|
|
9874
9875
|
* - `reportValidity() => boolean`: undefined
|
|
9875
|
-
* - `toggleCorrectResponse(show: boolean) => void`: undefined
|
|
9876
9876
|
* - `reset() => void`: undefined
|
|
9877
9877
|
* - `formResetCallback() => void`: Called by the browser when the associated form is reset.
|
|
9878
9878
|
* Part of the Form-Associated Custom Elements API.
|
|
9879
9879
|
* - `saveResponse(value: string | string[], state?: string | null) => void`: undefined
|
|
9880
9880
|
*/
|
|
9881
|
-
"qti-
|
|
9882
|
-
|
|
9883
|
-
|
|
9884
|
-
BaseProps<
|
|
9881
|
+
"qti-graphic-order-interaction": Partial<
|
|
9882
|
+
QtiGraphicOrderInteractionProps &
|
|
9883
|
+
QtiGraphicOrderInteractionSolidJsProps &
|
|
9884
|
+
BaseProps<QtiGraphicOrderInteraction> &
|
|
9885
9885
|
BaseEvents
|
|
9886
9886
|
>;
|
|
9887
9887
|
|
|
@@ -9929,19 +9929,19 @@ export type CustomElementsSolidJs = {
|
|
|
9929
9929
|
*
|
|
9930
9930
|
* Methods that can be called to access component functionality.
|
|
9931
9931
|
*
|
|
9932
|
-
* - `toggleCorrectResponse(show: boolean) => void`: undefined
|
|
9933
9932
|
* - `toggleCandidateCorrection(show: boolean) => void`: undefined
|
|
9934
9933
|
* - `validate() => boolean`: undefined
|
|
9935
9934
|
* - `reportValidity() => boolean`: undefined
|
|
9935
|
+
* - `toggleCorrectResponse(show: boolean) => void`: undefined
|
|
9936
9936
|
* - `reset() => void`: undefined
|
|
9937
9937
|
* - `formResetCallback() => void`: Called by the browser when the associated form is reset.
|
|
9938
9938
|
* Part of the Form-Associated Custom Elements API.
|
|
9939
9939
|
* - `saveResponse(value: string | string[], state?: string | null) => void`: undefined
|
|
9940
9940
|
*/
|
|
9941
|
-
"qti-
|
|
9942
|
-
|
|
9943
|
-
|
|
9944
|
-
BaseProps<
|
|
9941
|
+
"qti-hotspot-interaction": Partial<
|
|
9942
|
+
QtiHotspotInteractionProps &
|
|
9943
|
+
QtiHotspotInteractionSolidJsProps &
|
|
9944
|
+
BaseProps<QtiHotspotInteraction> &
|
|
9945
9945
|
BaseEvents
|
|
9946
9946
|
>;
|
|
9947
9947
|
|
|
@@ -11461,14 +11461,12 @@ export type CustomElementsSolidJs = {
|
|
|
11461
11461
|
*
|
|
11462
11462
|
* Methods that can be called to access component functionality.
|
|
11463
11463
|
*
|
|
11464
|
-
* - `calculate() => void`: undefined
|
|
11465
|
-
* - `getSubRules() => QtiRule[]`: undefined
|
|
11466
11464
|
* - `process() => void`: undefined
|
|
11467
11465
|
*/
|
|
11468
|
-
"qti-response-
|
|
11469
|
-
|
|
11470
|
-
|
|
11471
|
-
BaseProps<
|
|
11466
|
+
"qti-response-condition": Partial<
|
|
11467
|
+
QtiResponseConditionProps &
|
|
11468
|
+
QtiResponseConditionSolidJsProps &
|
|
11469
|
+
BaseProps<QtiResponseCondition> &
|
|
11472
11470
|
BaseEvents
|
|
11473
11471
|
>;
|
|
11474
11472
|
|
|
@@ -11479,12 +11477,14 @@ export type CustomElementsSolidJs = {
|
|
|
11479
11477
|
*
|
|
11480
11478
|
* Methods that can be called to access component functionality.
|
|
11481
11479
|
*
|
|
11480
|
+
* - `calculate() => void`: undefined
|
|
11481
|
+
* - `getSubRules() => QtiRule[]`: undefined
|
|
11482
11482
|
* - `process() => void`: undefined
|
|
11483
11483
|
*/
|
|
11484
|
-
"qti-response-
|
|
11485
|
-
|
|
11486
|
-
|
|
11487
|
-
BaseProps<
|
|
11484
|
+
"qti-response-else": Partial<
|
|
11485
|
+
QtiResponseElseProps &
|
|
11486
|
+
QtiResponseElseSolidJsProps &
|
|
11487
|
+
BaseProps<QtiResponseElse> &
|
|
11488
11488
|
BaseEvents
|
|
11489
11489
|
>;
|
|
11490
11490
|
|