case-editor-tools 1.0.4 → 1.0.5
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/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "case-editor-tools",
|
|
3
3
|
"description": "Javascript tools to simplify survey and study coding for CASE.",
|
|
4
|
-
"version": "1.0.
|
|
4
|
+
"version": "1.0.5",
|
|
5
5
|
"main": "index.js",
|
|
6
6
|
"license": "Apache-2.0",
|
|
7
7
|
"repository": "github:case-framework/case-editor-tools",
|
|
@@ -18,7 +18,7 @@ export declare const SingleChoiceOptionTypes: {
|
|
|
18
18
|
textInput: (props: TextInputProps & {
|
|
19
19
|
key: string;
|
|
20
20
|
displayCondition?: Expression;
|
|
21
|
-
alignText
|
|
21
|
+
alignText?: 'start' | 'center' | 'end';
|
|
22
22
|
}) => OptionDef;
|
|
23
23
|
timeInput: (props: TimeInputProps & {
|
|
24
24
|
key: string;
|
|
@@ -27,7 +27,7 @@ export declare const SingleChoiceOptionTypes: {
|
|
|
27
27
|
numberInput: (props: NumericInputProps & {
|
|
28
28
|
key: string;
|
|
29
29
|
displayCondition?: Expression;
|
|
30
|
-
alignText
|
|
30
|
+
alignText?: 'start' | 'center' | 'end';
|
|
31
31
|
}) => OptionDef;
|
|
32
32
|
cloze: (props: ClozeProps & {
|
|
33
33
|
key: string;
|
|
@@ -41,7 +41,7 @@ export declare const MultipleChoiceOptionTypes: {
|
|
|
41
41
|
textInput: (props: TextInputProps & {
|
|
42
42
|
key: string;
|
|
43
43
|
displayCondition?: Expression;
|
|
44
|
-
alignText
|
|
44
|
+
alignText?: 'start' | 'center' | 'end';
|
|
45
45
|
}) => OptionDef;
|
|
46
46
|
timeInput: (props: TimeInputProps & {
|
|
47
47
|
key: string;
|
|
@@ -50,7 +50,7 @@ export declare const MultipleChoiceOptionTypes: {
|
|
|
50
50
|
numberInput: (props: NumericInputProps & {
|
|
51
51
|
key: string;
|
|
52
52
|
displayCondition?: Expression;
|
|
53
|
-
alignText
|
|
53
|
+
alignText?: 'start' | 'center' | 'end';
|
|
54
54
|
}) => OptionDef;
|
|
55
55
|
cloze: (props: ClozeProps & {
|
|
56
56
|
key: string;
|
|
@@ -64,7 +64,7 @@ export declare const ClozeItemTypes: {
|
|
|
64
64
|
textInput: (props: TextInputProps & {
|
|
65
65
|
key: string;
|
|
66
66
|
displayCondition?: Expression;
|
|
67
|
-
alignText
|
|
67
|
+
alignText?: 'start' | 'center' | 'end';
|
|
68
68
|
}) => OptionDef;
|
|
69
69
|
dateInput: (props: DateInputProps & {
|
|
70
70
|
key: string;
|
|
@@ -78,7 +78,7 @@ export declare const ClozeItemTypes: {
|
|
|
78
78
|
numberInput: (props: NumericInputProps & {
|
|
79
79
|
key: string;
|
|
80
80
|
displayCondition?: Expression;
|
|
81
|
-
alignText
|
|
81
|
+
alignText?: 'start' | 'center' | 'end';
|
|
82
82
|
}) => OptionDef;
|
|
83
83
|
dropDown: (props: {
|
|
84
84
|
key: string;
|