@dhis2/analytics 26.9.5 → 26.10.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/build/cjs/__demo__/DataDimension.stories.js +53 -0
- package/build/cjs/api/dimensions.js +1 -1
- package/build/cjs/api/expression.js +20 -10
- package/build/cjs/components/DataDimension/Calculation/CalculationModal.js +1 -1
- package/build/cjs/components/DataDimension/DataDimension.js +4 -1
- package/build/cjs/components/DataDimension/Info/CalculationInfo.js +106 -0
- package/build/cjs/components/DataDimension/Info/DataElementInfo.js +135 -0
- package/build/cjs/components/DataDimension/Info/DataElementOperandInfo.js +188 -0
- package/build/cjs/components/DataDimension/Info/DataSetInfo.js +115 -0
- package/build/cjs/components/DataDimension/Info/EventDataItemInfo.js +111 -0
- package/build/cjs/components/DataDimension/Info/IndicatorInfo.js +179 -0
- package/build/cjs/components/DataDimension/Info/InfoPopover.js +58 -0
- package/build/cjs/components/DataDimension/Info/InfoTable.js +219 -0
- package/build/cjs/components/DataDimension/Info/ProgramIndicatorInfo.js +191 -0
- package/build/cjs/components/DataDimension/Info/styles/InfoPopover.style.js +10 -0
- package/build/cjs/components/DataDimension/ItemSelector.js +22 -5
- package/build/cjs/components/DataDimension/TransferOption.js +117 -0
- package/build/cjs/components/DataDimension/styles/TransferOption.style.js +10 -0
- package/build/cjs/components/DimensionsPanel/List/__tests__/__snapshots__/DimensionItem.spec.js.snap +0 -20
- package/build/cjs/components/OrgUnitDimension/__tests__/__snapshots__/OrgUnitDimension.spec.js.snap +0 -5
- package/build/cjs/components/PeriodDimension/__tests__/__snapshots__/FixedPeriodSingleSelect.spec.js.snap +0 -12
- package/build/cjs/components/PeriodDimension/__tests__/__snapshots__/PeriodSelector.spec.js.snap +3 -10
- package/build/cjs/components/styles/DimensionSelector.style.js +2 -2
- package/build/cjs/index.js +66 -10
- package/build/cjs/locales/en/translations.json +73 -9
- package/build/cjs/locales/vi/translations.json +202 -202
- package/build/cjs/modules/dimensionListItem.js +3 -3
- package/build/cjs/modules/dimensionSelectorHelper.js +2 -2
- package/build/cjs/modules/valueTypes.js +50 -11
- package/build/es/__demo__/DataDimension.stories.js +42 -0
- package/build/es/api/dimensions.js +1 -1
- package/build/es/api/expression.js +19 -9
- package/build/es/components/DataDimension/Calculation/CalculationModal.js +2 -2
- package/build/es/components/DataDimension/DataDimension.js +4 -1
- package/build/es/components/DataDimension/Info/CalculationInfo.js +96 -0
- package/build/es/components/DataDimension/Info/DataElementInfo.js +127 -0
- package/build/es/components/DataDimension/Info/DataElementOperandInfo.js +178 -0
- package/build/es/components/DataDimension/Info/DataSetInfo.js +107 -0
- package/build/es/components/DataDimension/Info/EventDataItemInfo.js +103 -0
- package/build/es/components/DataDimension/Info/IndicatorInfo.js +169 -0
- package/build/es/components/DataDimension/Info/InfoPopover.js +54 -0
- package/build/es/components/DataDimension/Info/InfoTable.js +205 -0
- package/build/es/components/DataDimension/Info/ProgramIndicatorInfo.js +181 -0
- package/build/es/components/DataDimension/Info/styles/InfoPopover.style.js +4 -0
- package/build/es/components/DataDimension/ItemSelector.js +24 -7
- package/build/es/components/DataDimension/TransferOption.js +109 -0
- package/build/es/components/DataDimension/styles/TransferOption.style.js +4 -0
- package/build/es/components/DimensionsPanel/List/__tests__/__snapshots__/DimensionItem.spec.js.snap +0 -20
- package/build/es/components/OrgUnitDimension/__tests__/__snapshots__/OrgUnitDimension.spec.js.snap +0 -5
- package/build/es/components/PeriodDimension/__tests__/__snapshots__/FixedPeriodSingleSelect.spec.js.snap +0 -12
- package/build/es/components/PeriodDimension/__tests__/__snapshots__/PeriodSelector.spec.js.snap +3 -10
- package/build/es/components/styles/DimensionSelector.style.js +2 -2
- package/build/es/index.js +1 -1
- package/build/es/locales/en/translations.json +73 -9
- package/build/es/locales/vi/translations.json +202 -202
- package/build/es/modules/dimensionListItem.js +1 -1
- package/build/es/modules/dimensionSelectorHelper.js +2 -2
- package/build/es/modules/valueTypes.js +48 -10
- package/package.json +5 -5
package/build/cjs/components/DimensionsPanel/List/__tests__/__snapshots__/DimensionItem.spec.js.snap
CHANGED
|
@@ -4,10 +4,6 @@ exports[`DimensionItem matches the snapshot 1`] = `
|
|
|
4
4
|
<Fragment>
|
|
5
5
|
<CssVariables
|
|
6
6
|
colors={true}
|
|
7
|
-
elevations={false}
|
|
8
|
-
layers={false}
|
|
9
|
-
spacers={false}
|
|
10
|
-
theme={false}
|
|
11
7
|
/>
|
|
12
8
|
<li
|
|
13
9
|
className="item"
|
|
@@ -56,10 +52,6 @@ exports[`DimensionItem matches the snapshot with locked 1`] = `
|
|
|
56
52
|
<Fragment>
|
|
57
53
|
<CssVariables
|
|
58
54
|
colors={true}
|
|
59
|
-
elevations={false}
|
|
60
|
-
layers={false}
|
|
61
|
-
spacers={false}
|
|
62
|
-
theme={false}
|
|
63
55
|
/>
|
|
64
56
|
<li
|
|
65
57
|
className="item"
|
|
@@ -126,10 +118,6 @@ exports[`DimensionItem matches the snapshot with onOptionsClick 1`] = `
|
|
|
126
118
|
<Fragment>
|
|
127
119
|
<CssVariables
|
|
128
120
|
colors={true}
|
|
129
|
-
elevations={false}
|
|
130
|
-
layers={false}
|
|
131
|
-
spacers={false}
|
|
132
|
-
theme={false}
|
|
133
121
|
/>
|
|
134
122
|
<li
|
|
135
123
|
className="item"
|
|
@@ -182,10 +170,6 @@ exports[`DimensionItem matches the snapshot with recommended 1`] = `
|
|
|
182
170
|
<Fragment>
|
|
183
171
|
<CssVariables
|
|
184
172
|
colors={true}
|
|
185
|
-
elevations={false}
|
|
186
|
-
layers={false}
|
|
187
|
-
spacers={false}
|
|
188
|
-
theme={false}
|
|
189
173
|
/>
|
|
190
174
|
<li
|
|
191
175
|
className="item"
|
|
@@ -234,10 +218,6 @@ exports[`DimensionItem matches the snapshot with selected 1`] = `
|
|
|
234
218
|
<Fragment>
|
|
235
219
|
<CssVariables
|
|
236
220
|
colors={true}
|
|
237
|
-
elevations={false}
|
|
238
|
-
layers={false}
|
|
239
|
-
spacers={false}
|
|
240
|
-
theme={false}
|
|
241
221
|
/>
|
|
242
222
|
<li
|
|
243
223
|
className="item selected"
|
package/build/cjs/components/OrgUnitDimension/__tests__/__snapshots__/OrgUnitDimension.spec.js.snap
CHANGED
|
@@ -37,11 +37,8 @@ exports[`The OrgUnitDimension component matches the snapshot 1`] = `
|
|
|
37
37
|
>
|
|
38
38
|
<OrganisationUnitTree
|
|
39
39
|
dataTest="org-unit-tree"
|
|
40
|
-
filter={Array []}
|
|
41
|
-
highlighted={Array []}
|
|
42
40
|
initiallyExpanded={Array []}
|
|
43
41
|
onChange={[Function]}
|
|
44
|
-
renderNodeLabel={[Function]}
|
|
45
42
|
roots={Array []}
|
|
46
43
|
selected={Array []}
|
|
47
44
|
/>
|
|
@@ -78,12 +75,10 @@ exports[`The OrgUnitDimension component matches the snapshot 1`] = `
|
|
|
78
75
|
className="deselectButton"
|
|
79
76
|
>
|
|
80
77
|
<Button
|
|
81
|
-
dataTest="dhis2-uicore-button"
|
|
82
78
|
disabled={true}
|
|
83
79
|
onClick={[Function]}
|
|
84
80
|
secondary={true}
|
|
85
81
|
small={true}
|
|
86
|
-
type="button"
|
|
87
82
|
>
|
|
88
83
|
Deselect all
|
|
89
84
|
</Button>
|
|
@@ -28,73 +28,61 @@ exports[`The Fixed Period Single Select component matches the snapshot 1`] = `
|
|
|
28
28
|
selected="201405"
|
|
29
29
|
>
|
|
30
30
|
<SingleSelectOption
|
|
31
|
-
dataTest="dhis2-uicore-singleselectoption"
|
|
32
31
|
key="201401"
|
|
33
32
|
label="January 2014"
|
|
34
33
|
value="201401"
|
|
35
34
|
/>
|
|
36
35
|
<SingleSelectOption
|
|
37
|
-
dataTest="dhis2-uicore-singleselectoption"
|
|
38
36
|
key="201402"
|
|
39
37
|
label="February 2014"
|
|
40
38
|
value="201402"
|
|
41
39
|
/>
|
|
42
40
|
<SingleSelectOption
|
|
43
|
-
dataTest="dhis2-uicore-singleselectoption"
|
|
44
41
|
key="201403"
|
|
45
42
|
label="March 2014"
|
|
46
43
|
value="201403"
|
|
47
44
|
/>
|
|
48
45
|
<SingleSelectOption
|
|
49
|
-
dataTest="dhis2-uicore-singleselectoption"
|
|
50
46
|
key="201404"
|
|
51
47
|
label="April 2014"
|
|
52
48
|
value="201404"
|
|
53
49
|
/>
|
|
54
50
|
<SingleSelectOption
|
|
55
|
-
dataTest="dhis2-uicore-singleselectoption"
|
|
56
51
|
key="201405"
|
|
57
52
|
label="May 2014"
|
|
58
53
|
value="201405"
|
|
59
54
|
/>
|
|
60
55
|
<SingleSelectOption
|
|
61
|
-
dataTest="dhis2-uicore-singleselectoption"
|
|
62
56
|
key="201406"
|
|
63
57
|
label="June 2014"
|
|
64
58
|
value="201406"
|
|
65
59
|
/>
|
|
66
60
|
<SingleSelectOption
|
|
67
|
-
dataTest="dhis2-uicore-singleselectoption"
|
|
68
61
|
key="201407"
|
|
69
62
|
label="July 2014"
|
|
70
63
|
value="201407"
|
|
71
64
|
/>
|
|
72
65
|
<SingleSelectOption
|
|
73
|
-
dataTest="dhis2-uicore-singleselectoption"
|
|
74
66
|
key="201408"
|
|
75
67
|
label="August 2014"
|
|
76
68
|
value="201408"
|
|
77
69
|
/>
|
|
78
70
|
<SingleSelectOption
|
|
79
|
-
dataTest="dhis2-uicore-singleselectoption"
|
|
80
71
|
key="201409"
|
|
81
72
|
label="September 2014"
|
|
82
73
|
value="201409"
|
|
83
74
|
/>
|
|
84
75
|
<SingleSelectOption
|
|
85
|
-
dataTest="dhis2-uicore-singleselectoption"
|
|
86
76
|
key="201410"
|
|
87
77
|
label="October 2014"
|
|
88
78
|
value="201410"
|
|
89
79
|
/>
|
|
90
80
|
<SingleSelectOption
|
|
91
|
-
dataTest="dhis2-uicore-singleselectoption"
|
|
92
81
|
key="201411"
|
|
93
82
|
label="November 2014"
|
|
94
83
|
value="201411"
|
|
95
84
|
/>
|
|
96
85
|
<SingleSelectOption
|
|
97
|
-
dataTest="dhis2-uicore-singleselectoption"
|
|
98
86
|
key="201412"
|
|
99
87
|
label="December 2014"
|
|
100
88
|
value="201412"
|
package/build/cjs/components/PeriodDimension/__tests__/__snapshots__/PeriodSelector.spec.js.snap
CHANGED
|
@@ -4,16 +4,10 @@ exports[`The Period Selector component matches the snapshot 1`] = `
|
|
|
4
4
|
<Transfer
|
|
5
5
|
dataTest="period-dimension-transfer"
|
|
6
6
|
enableOrderChange={true}
|
|
7
|
-
filterCallback={[Function]}
|
|
8
|
-
filterCallbackPicked={[Function]}
|
|
9
7
|
height="512px"
|
|
10
|
-
initialSearchTerm=""
|
|
11
|
-
initialSearchTermPicked=""
|
|
12
8
|
leftHeader={
|
|
13
9
|
<React.Fragment>
|
|
14
|
-
<TabBar
|
|
15
|
-
dataTest="dhis2-uicore-tabbar"
|
|
16
|
-
>
|
|
10
|
+
<TabBar>
|
|
17
11
|
<Tab
|
|
18
12
|
dataTest="period-dimension-relative-periods-button"
|
|
19
13
|
onClick={[Function]}
|
|
@@ -44,7 +38,6 @@ exports[`The Period Selector component matches the snapshot 1`] = `
|
|
|
44
38
|
</style>
|
|
45
39
|
</React.Fragment>
|
|
46
40
|
}
|
|
47
|
-
maxSelections={Infinity}
|
|
48
41
|
onChange={[Function]}
|
|
49
42
|
options={
|
|
50
43
|
Array [
|
|
@@ -74,7 +67,7 @@ exports[`The Period Selector component matches the snapshot 1`] = `
|
|
|
74
67
|
},
|
|
75
68
|
]
|
|
76
69
|
}
|
|
77
|
-
optionsWidth="
|
|
70
|
+
optionsWidth="520px"
|
|
78
71
|
renderOption={[Function]}
|
|
79
72
|
rightFooter={<React.Fragment />}
|
|
80
73
|
rightHeader={<RightHeader />}
|
|
@@ -91,6 +84,6 @@ exports[`The Period Selector component matches the snapshot 1`] = `
|
|
|
91
84
|
</style>
|
|
92
85
|
</React.Fragment>
|
|
93
86
|
}
|
|
94
|
-
selectedWidth="
|
|
87
|
+
selectedWidth="520px"
|
|
95
88
|
/>
|
|
96
89
|
`;
|
|
@@ -5,6 +5,6 @@ Object.defineProperty(exports, "__esModule", {
|
|
|
5
5
|
});
|
|
6
6
|
exports.default = void 0;
|
|
7
7
|
var _ui = require("@dhis2/ui");
|
|
8
|
-
const _defaultExport = [`.filterContainer.jsx-
|
|
9
|
-
_defaultExport.__hash = "
|
|
8
|
+
const _defaultExport = [".transfer-container.jsx-1438110436{min-width:800px;}", `.filterContainer.jsx-1438110436{display:-webkit-box;display:-webkit-flex;display:-ms-flexbox;display:flex;margin-bottom:${_ui.spacers.dp12};margin-top:${_ui.spacers.dp8};}`, `.emptyList.jsx-1438110436{text-align:center;font-size:14px;line-height:16px;margin:${_ui.spacers.dp24} 0 0;color:${_ui.colors.grey700};}`, ".rightHeader.jsx-1438110436{font-size:14px;font-weight:400;}", `.leftHeader.jsx-1438110436{padding:${_ui.spacers.dp12} ${_ui.spacers.dp4};}`, `.info-container.jsx-1438110436{display:-webkit-box;display:-webkit-flex;display:-ms-flexbox;display:flex;margin-bottom:${_ui.spacers.dp8};padding:${_ui.spacers.dp8};background-color:${_ui.colors.grey200};border-radius:3px;}`, `.info-text.jsx-1438110436{padding-left:${_ui.spacers.dp8};color:${_ui.colors.grey900};font-size:12px;line-height:16px;}`, `.calculation-button.jsx-1438110436{margin:${_ui.spacers.dp8} 0;}`];
|
|
9
|
+
_defaultExport.__hash = "1438110436";
|
|
10
10
|
var _default = exports.default = _defaultExport;
|
package/build/cjs/index.js
CHANGED
|
@@ -70,27 +70,35 @@ var _exportNames = {
|
|
|
70
70
|
layoutHasDimension: true,
|
|
71
71
|
layoutHasDynamicDimension: true,
|
|
72
72
|
layoutHasPeriodDimension: true,
|
|
73
|
-
VALUE_TYPE_NUMBER: true,
|
|
74
|
-
VALUE_TYPE_UNIT_INTERVAL: true,
|
|
75
|
-
VALUE_TYPE_PERCENTAGE: true,
|
|
76
|
-
VALUE_TYPE_INTEGER: true,
|
|
77
|
-
VALUE_TYPE_INTEGER_POSITIVE: true,
|
|
78
|
-
VALUE_TYPE_INTEGER_NEGATIVE: true,
|
|
79
|
-
VALUE_TYPE_INTEGER_ZERO_OR_POSITIVE: true,
|
|
80
73
|
VALUE_TYPE_TEXT: true,
|
|
81
74
|
VALUE_TYPE_LONG_TEXT: true,
|
|
75
|
+
VALUE_TYPE_MULTI_TEXT: true,
|
|
82
76
|
VALUE_TYPE_LETTER: true,
|
|
83
77
|
VALUE_TYPE_PHONE_NUMBER: true,
|
|
84
78
|
VALUE_TYPE_EMAIL: true,
|
|
85
|
-
VALUE_TYPE_USERNAME: true,
|
|
86
|
-
VALUE_TYPE_URL: true,
|
|
87
79
|
VALUE_TYPE_BOOLEAN: true,
|
|
88
80
|
VALUE_TYPE_TRUE_ONLY: true,
|
|
89
81
|
VALUE_TYPE_DATE: true,
|
|
90
|
-
VALUE_TYPE_TIME: true,
|
|
91
82
|
VALUE_TYPE_DATETIME: true,
|
|
83
|
+
VALUE_TYPE_TIME: true,
|
|
84
|
+
VALUE_TYPE_NUMBER: true,
|
|
85
|
+
VALUE_TYPE_UNIT_INTERVAL: true,
|
|
86
|
+
VALUE_TYPE_PERCENTAGE: true,
|
|
87
|
+
VALUE_TYPE_INTEGER: true,
|
|
88
|
+
VALUE_TYPE_INTEGER_POSITIVE: true,
|
|
89
|
+
VALUE_TYPE_INTEGER_NEGATIVE: true,
|
|
90
|
+
VALUE_TYPE_INTEGER_ZERO_OR_POSITIVE: true,
|
|
91
|
+
VALUE_TYPE_TRACKER_ASSOCIATE: true,
|
|
92
|
+
VALUE_TYPE_USERNAME: true,
|
|
93
|
+
VALUE_TYPE_COORDINATE: true,
|
|
92
94
|
VALUE_TYPE_ORGANISATION_UNIT: true,
|
|
95
|
+
VALUE_TYPE_REFERENCE: true,
|
|
93
96
|
VALUE_TYPE_AGE: true,
|
|
97
|
+
VALUE_TYPE_URL: true,
|
|
98
|
+
VALUE_TYPE_FILE_RESOURCE: true,
|
|
99
|
+
VALUE_TYPE_IMAGE: true,
|
|
100
|
+
VALUE_TYPE_GEOJSON: true,
|
|
101
|
+
valueTypeDisplayNames: true,
|
|
94
102
|
AXIS: true,
|
|
95
103
|
AXIS_ID_COLUMNS: true,
|
|
96
104
|
AXIS_ID_ROWS: true,
|
|
@@ -915,6 +923,12 @@ Object.defineProperty(exports, "VALUE_TYPE_BOOLEAN", {
|
|
|
915
923
|
return _valueTypes.VALUE_TYPE_BOOLEAN;
|
|
916
924
|
}
|
|
917
925
|
});
|
|
926
|
+
Object.defineProperty(exports, "VALUE_TYPE_COORDINATE", {
|
|
927
|
+
enumerable: true,
|
|
928
|
+
get: function () {
|
|
929
|
+
return _valueTypes.VALUE_TYPE_COORDINATE;
|
|
930
|
+
}
|
|
931
|
+
});
|
|
918
932
|
Object.defineProperty(exports, "VALUE_TYPE_DATE", {
|
|
919
933
|
enumerable: true,
|
|
920
934
|
get: function () {
|
|
@@ -933,6 +947,24 @@ Object.defineProperty(exports, "VALUE_TYPE_EMAIL", {
|
|
|
933
947
|
return _valueTypes.VALUE_TYPE_EMAIL;
|
|
934
948
|
}
|
|
935
949
|
});
|
|
950
|
+
Object.defineProperty(exports, "VALUE_TYPE_FILE_RESOURCE", {
|
|
951
|
+
enumerable: true,
|
|
952
|
+
get: function () {
|
|
953
|
+
return _valueTypes.VALUE_TYPE_FILE_RESOURCE;
|
|
954
|
+
}
|
|
955
|
+
});
|
|
956
|
+
Object.defineProperty(exports, "VALUE_TYPE_GEOJSON", {
|
|
957
|
+
enumerable: true,
|
|
958
|
+
get: function () {
|
|
959
|
+
return _valueTypes.VALUE_TYPE_GEOJSON;
|
|
960
|
+
}
|
|
961
|
+
});
|
|
962
|
+
Object.defineProperty(exports, "VALUE_TYPE_IMAGE", {
|
|
963
|
+
enumerable: true,
|
|
964
|
+
get: function () {
|
|
965
|
+
return _valueTypes.VALUE_TYPE_IMAGE;
|
|
966
|
+
}
|
|
967
|
+
});
|
|
936
968
|
Object.defineProperty(exports, "VALUE_TYPE_INTEGER", {
|
|
937
969
|
enumerable: true,
|
|
938
970
|
get: function () {
|
|
@@ -969,6 +1001,12 @@ Object.defineProperty(exports, "VALUE_TYPE_LONG_TEXT", {
|
|
|
969
1001
|
return _valueTypes.VALUE_TYPE_LONG_TEXT;
|
|
970
1002
|
}
|
|
971
1003
|
});
|
|
1004
|
+
Object.defineProperty(exports, "VALUE_TYPE_MULTI_TEXT", {
|
|
1005
|
+
enumerable: true,
|
|
1006
|
+
get: function () {
|
|
1007
|
+
return _valueTypes.VALUE_TYPE_MULTI_TEXT;
|
|
1008
|
+
}
|
|
1009
|
+
});
|
|
972
1010
|
Object.defineProperty(exports, "VALUE_TYPE_NUMBER", {
|
|
973
1011
|
enumerable: true,
|
|
974
1012
|
get: function () {
|
|
@@ -993,6 +1031,12 @@ Object.defineProperty(exports, "VALUE_TYPE_PHONE_NUMBER", {
|
|
|
993
1031
|
return _valueTypes.VALUE_TYPE_PHONE_NUMBER;
|
|
994
1032
|
}
|
|
995
1033
|
});
|
|
1034
|
+
Object.defineProperty(exports, "VALUE_TYPE_REFERENCE", {
|
|
1035
|
+
enumerable: true,
|
|
1036
|
+
get: function () {
|
|
1037
|
+
return _valueTypes.VALUE_TYPE_REFERENCE;
|
|
1038
|
+
}
|
|
1039
|
+
});
|
|
996
1040
|
Object.defineProperty(exports, "VALUE_TYPE_TEXT", {
|
|
997
1041
|
enumerable: true,
|
|
998
1042
|
get: function () {
|
|
@@ -1005,6 +1049,12 @@ Object.defineProperty(exports, "VALUE_TYPE_TIME", {
|
|
|
1005
1049
|
return _valueTypes.VALUE_TYPE_TIME;
|
|
1006
1050
|
}
|
|
1007
1051
|
});
|
|
1052
|
+
Object.defineProperty(exports, "VALUE_TYPE_TRACKER_ASSOCIATE", {
|
|
1053
|
+
enumerable: true,
|
|
1054
|
+
get: function () {
|
|
1055
|
+
return _valueTypes.VALUE_TYPE_TRACKER_ASSOCIATE;
|
|
1056
|
+
}
|
|
1057
|
+
});
|
|
1008
1058
|
Object.defineProperty(exports, "VALUE_TYPE_TRUE_ONLY", {
|
|
1009
1059
|
enumerable: true,
|
|
1010
1060
|
get: function () {
|
|
@@ -1743,6 +1793,12 @@ Object.defineProperty(exports, "useCachedDataQuery", {
|
|
|
1743
1793
|
return _CachedDataQueryProvider.useCachedDataQuery;
|
|
1744
1794
|
}
|
|
1745
1795
|
});
|
|
1796
|
+
Object.defineProperty(exports, "valueTypeDisplayNames", {
|
|
1797
|
+
enumerable: true,
|
|
1798
|
+
get: function () {
|
|
1799
|
+
return _valueTypes.valueTypeDisplayNames;
|
|
1800
|
+
}
|
|
1801
|
+
});
|
|
1746
1802
|
Object.defineProperty(exports, "visTypeDisplayNames", {
|
|
1747
1803
|
enumerable: true,
|
|
1748
1804
|
get: function () {
|
|
@@ -50,6 +50,54 @@
|
|
|
50
50
|
"All types": "All types",
|
|
51
51
|
"Disaggregation": "Disaggregation",
|
|
52
52
|
"No data": "No data",
|
|
53
|
+
"Expression description": "Expression description",
|
|
54
|
+
"Error loading value": "Error loading value",
|
|
55
|
+
"None": "None",
|
|
56
|
+
"Data set(s)": "Data set(s)",
|
|
57
|
+
"Zero is significant": "Zero is significant",
|
|
58
|
+
"True": "True",
|
|
59
|
+
"False": "False",
|
|
60
|
+
"Value type": "Value type",
|
|
61
|
+
"Aggregation type": "Aggregation type",
|
|
62
|
+
"Category combo": "Category combo",
|
|
63
|
+
"Option set": "Option set",
|
|
64
|
+
"Group membership": "Group membership",
|
|
65
|
+
"Legend set(s)": "Legend set(s)",
|
|
66
|
+
"Category option name": "Category option name",
|
|
67
|
+
"Category combo name": "Category combo name",
|
|
68
|
+
"Categories name": "Categories name",
|
|
69
|
+
"Period type": "Period type",
|
|
70
|
+
"Indicators": "Indicators",
|
|
71
|
+
"Expiry days": "Expiry days",
|
|
72
|
+
"Type": "Type",
|
|
73
|
+
"Data element": "Data element",
|
|
74
|
+
"Tracked entity attribute": "Tracked entity attribute",
|
|
75
|
+
"Numerator description": "Numerator description",
|
|
76
|
+
"Numerator expression": "Numerator expression",
|
|
77
|
+
"Denominator description": "Denominator description",
|
|
78
|
+
"Denominator expression": "Denominator expression",
|
|
79
|
+
"Annualized": "Annualized",
|
|
80
|
+
"Yes": "Yes",
|
|
81
|
+
"No": "No",
|
|
82
|
+
"Indicator type": "Indicator type",
|
|
83
|
+
"Decimals in output": "Decimals in output",
|
|
84
|
+
"There was a problem loading information for this data item.": "There was a problem loading information for this data item.",
|
|
85
|
+
"Name": "Name",
|
|
86
|
+
"Description": "Description",
|
|
87
|
+
"Code": "Code",
|
|
88
|
+
"ID": "ID",
|
|
89
|
+
"Last updated date": "Last updated date",
|
|
90
|
+
"Created date": "Created date",
|
|
91
|
+
"Created by": "Created by",
|
|
92
|
+
"Custom": "Custom",
|
|
93
|
+
"Program": "Program",
|
|
94
|
+
"Analytics type": "Analytics type",
|
|
95
|
+
"Enrollment": "Enrollment",
|
|
96
|
+
"Event": "Event",
|
|
97
|
+
"Analytics period boundaries": "Analytics period boundaries",
|
|
98
|
+
"{{ offsetPeriodType }} × {{ offsetPeriods }}": "{{ offsetPeriodType }} × {{ offsetPeriods }}",
|
|
99
|
+
"Expression": "Expression",
|
|
100
|
+
"Filter": "Filter",
|
|
53
101
|
"Search by data item name": "Search by data item name",
|
|
54
102
|
"No items selected": "No items selected",
|
|
55
103
|
"Selected Items": "Selected Items",
|
|
@@ -100,8 +148,6 @@
|
|
|
100
148
|
"Open in this app": "Open in this app",
|
|
101
149
|
"Close": "Close",
|
|
102
150
|
"Rename {{fileType}}": "Rename {{fileType}}",
|
|
103
|
-
"Name": "Name",
|
|
104
|
-
"Description": "Description",
|
|
105
151
|
"Rename": "Rename",
|
|
106
152
|
"{{- objectName}} (copy)": "{{- objectName}} (copy)",
|
|
107
153
|
"Save {{fileType}} as": "Save {{fileType}} as",
|
|
@@ -137,7 +183,6 @@
|
|
|
137
183
|
"Could not update interpretation": "Could not update interpretation",
|
|
138
184
|
"Enter interpretation text": "Enter interpretation text",
|
|
139
185
|
"Not available offline": "Not available offline",
|
|
140
|
-
"Created by": "Created by",
|
|
141
186
|
"Anyone": "Anyone",
|
|
142
187
|
"Only you": "Only you",
|
|
143
188
|
"Others": "Others",
|
|
@@ -145,7 +190,6 @@
|
|
|
145
190
|
"Filter by name": "Filter by name",
|
|
146
191
|
"Created": "Created",
|
|
147
192
|
"Last updated": "Last updated",
|
|
148
|
-
"Type": "Type",
|
|
149
193
|
"Clear filters": "Clear filters",
|
|
150
194
|
"{{firstItemIndex}}-{{lastItemIndex}} of {{totalNumberOfItems}}": "{{firstItemIndex}}-{{lastItemIndex}} of {{totalNumberOfItems}}",
|
|
151
195
|
"Open": "Open",
|
|
@@ -191,7 +235,6 @@
|
|
|
191
235
|
"Select a level": "Select a level",
|
|
192
236
|
"Select a group": "Select a group",
|
|
193
237
|
"Deselect all": "Deselect all",
|
|
194
|
-
"Period type": "Period type",
|
|
195
238
|
"Year": "Year",
|
|
196
239
|
"Select year": "Select year",
|
|
197
240
|
"Period": "Period",
|
|
@@ -291,7 +334,6 @@
|
|
|
291
334
|
"No results found": "No results found",
|
|
292
335
|
"Series": "Series",
|
|
293
336
|
"Category": "Category",
|
|
294
|
-
"Filter": "Filter",
|
|
295
337
|
"Columns": "Columns",
|
|
296
338
|
"Rows": "Rows",
|
|
297
339
|
"Points": "Points",
|
|
@@ -300,16 +342,13 @@
|
|
|
300
342
|
"Actual reports": "Actual reports",
|
|
301
343
|
"Actual reports on time": "Actual reports on time",
|
|
302
344
|
"Expected reports": "Expected reports",
|
|
303
|
-
"Program": "Program",
|
|
304
345
|
"Select a program": "Select a program",
|
|
305
|
-
"Indicators": "Indicators",
|
|
306
346
|
"Indicator group": "Indicator group",
|
|
307
347
|
"All groups": "All groups",
|
|
308
348
|
"Indicator": "Indicator",
|
|
309
349
|
"No indicator groups found": "No indicator groups found",
|
|
310
350
|
"Loading indicator groups": "Loading indicator groups",
|
|
311
351
|
"Data element group": "Data element group",
|
|
312
|
-
"Data element": "Data element",
|
|
313
352
|
"No data element groups found": "No data element groups found",
|
|
314
353
|
"Loading data element groups": "Loading data element groups",
|
|
315
354
|
"Data sets": "Data sets",
|
|
@@ -362,6 +401,31 @@
|
|
|
362
401
|
"Data": "Data",
|
|
363
402
|
"Organisation unit": "Organisation unit",
|
|
364
403
|
"Assigned Categories": "Assigned Categories",
|
|
404
|
+
"Text": "Text",
|
|
405
|
+
"Long text": "Long text",
|
|
406
|
+
"Multi text": "Multi text",
|
|
407
|
+
"Letter": "Letter",
|
|
408
|
+
"Phone number": "Phone number",
|
|
409
|
+
"Email": "Email",
|
|
410
|
+
"Yes/No": "Yes/No",
|
|
411
|
+
"Yes Only": "Yes Only",
|
|
412
|
+
"Date": "Date",
|
|
413
|
+
"Date & Time": "Date & Time",
|
|
414
|
+
"Time": "Time",
|
|
415
|
+
"Unit interval": "Unit interval",
|
|
416
|
+
"Percentage": "Percentage",
|
|
417
|
+
"Integer": "Integer",
|
|
418
|
+
"Positive Integer": "Positive Integer",
|
|
419
|
+
"Negative Integer": "Negative Integer",
|
|
420
|
+
"Positive or Zero Integer": "Positive or Zero Integer",
|
|
421
|
+
"Tracker Associate": "Tracker Associate",
|
|
422
|
+
"Username": "Username",
|
|
423
|
+
"Coordinate": "Coordinate",
|
|
424
|
+
"Reference": "Reference",
|
|
425
|
+
"Age": "Age",
|
|
426
|
+
"URL": "URL",
|
|
427
|
+
"Image": "Image",
|
|
428
|
+
"GeoJSON": "GeoJSON",
|
|
365
429
|
"Pivot table": "Pivot table",
|
|
366
430
|
"Area": "Area",
|
|
367
431
|
"Stacked area": "Stacked area",
|