@dhis2/analytics 23.7.7 → 23.7.10
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/CHANGELOG.md +21 -0
- package/build/cjs/api/analytics/AnalyticsRequest.js +10 -2
- package/build/cjs/components/FileMenu/GetLinkDialog.js +2 -7
- package/build/cjs/components/FileMenu/utils.js +1 -2
- package/build/cjs/locales/nl/translations.json +22 -22
- package/build/es/api/analytics/AnalyticsRequest.js +10 -2
- package/build/es/components/FileMenu/GetLinkDialog.js +2 -6
- package/build/es/components/FileMenu/utils.js +1 -2
- package/build/es/locales/nl/translations.json +22 -22
- package/package.json +2 -2
package/CHANGELOG.md
CHANGED
|
@@ -1,3 +1,24 @@
|
|
|
1
|
+
## [23.7.10](https://github.com/dhis2/analytics/compare/v23.7.9...v23.7.10) (2022-04-28)
|
|
2
|
+
|
|
3
|
+
|
|
4
|
+
### Bug Fixes
|
|
5
|
+
|
|
6
|
+
* set repetition in filter ([#1212](https://github.com/dhis2/analytics/issues/1212)) ([8510cba](https://github.com/dhis2/analytics/commit/8510cbaa68eac3902215d6db8508478b046d59b2))
|
|
7
|
+
|
|
8
|
+
## [23.7.9](https://github.com/dhis2/analytics/compare/v23.7.8...v23.7.9) (2022-04-26)
|
|
9
|
+
|
|
10
|
+
|
|
11
|
+
### Bug Fixes
|
|
12
|
+
|
|
13
|
+
* simplify code and fix double path issue DHIS2-12940 ([#1206](https://github.com/dhis2/analytics/issues/1206)) ([2097119](https://github.com/dhis2/analytics/commit/2097119c858790cb6f40e43abaeab1c2867ad578))
|
|
14
|
+
|
|
15
|
+
## [23.7.8](https://github.com/dhis2/analytics/compare/v23.7.7...v23.7.8) (2022-04-22)
|
|
16
|
+
|
|
17
|
+
|
|
18
|
+
### Bug Fixes
|
|
19
|
+
|
|
20
|
+
* **translations:** sync translations from transifex (master) ([f399dd7](https://github.com/dhis2/analytics/commit/f399dd7e484acf18f83317770a9dce2ca88046e3))
|
|
21
|
+
|
|
1
22
|
## [23.7.7](https://github.com/dhis2/analytics/compare/v23.7.6...v23.7.7) (2022-04-19)
|
|
2
23
|
|
|
3
24
|
|
|
@@ -92,7 +92,7 @@ class AnalyticsRequest extends (0, _AnalyticsRequestDimensionsMixin.default)((0,
|
|
|
92
92
|
|
|
93
93
|
request = request.addDimension(f.dimension, (_f$items = f.items) === null || _f$items === void 0 ? void 0 : _f$items.map(item => item.id));
|
|
94
94
|
} else {
|
|
95
|
-
var _f$programStage, _f$
|
|
95
|
+
var _f$programStage, _f$repetition, _f$repetition$indexes;
|
|
96
96
|
|
|
97
97
|
let filterString = (_f$programStage = f.programStage) !== null && _f$programStage !== void 0 && _f$programStage.id ? "".concat(f.programStage.id, ".").concat(f.dimension) : f.dimension;
|
|
98
98
|
|
|
@@ -100,7 +100,15 @@ class AnalyticsRequest extends (0, _AnalyticsRequestDimensionsMixin.default)((0,
|
|
|
100
100
|
filterString += ":".concat(f.filter);
|
|
101
101
|
}
|
|
102
102
|
|
|
103
|
-
|
|
103
|
+
if ((_f$repetition = f.repetition) !== null && _f$repetition !== void 0 && (_f$repetition$indexes = _f$repetition.indexes) !== null && _f$repetition$indexes !== void 0 && _f$repetition$indexes.length) {
|
|
104
|
+
f.repetition.indexes.forEach(index => {
|
|
105
|
+
request = request.addFilter(filterString.replace(/\./, "[".concat(index, "].")));
|
|
106
|
+
});
|
|
107
|
+
} else {
|
|
108
|
+
var _f$items2;
|
|
109
|
+
|
|
110
|
+
request = request.addFilter(filterString, (_f$items2 = f.items) === null || _f$items2 === void 0 ? void 0 : _f$items2.map(item => item.id));
|
|
111
|
+
}
|
|
104
112
|
}
|
|
105
113
|
});
|
|
106
114
|
return request;
|
|
@@ -5,8 +5,6 @@ Object.defineProperty(exports, "__esModule", {
|
|
|
5
5
|
});
|
|
6
6
|
exports.GetLinkDialog = void 0;
|
|
7
7
|
|
|
8
|
-
var _appRuntime = require("@dhis2/app-runtime");
|
|
9
|
-
|
|
10
8
|
var _ui = require("@dhis2/ui");
|
|
11
9
|
|
|
12
10
|
var _propTypes = _interopRequireDefault(require("prop-types"));
|
|
@@ -24,11 +22,8 @@ const GetLinkDialog = ({
|
|
|
24
22
|
id,
|
|
25
23
|
onClose
|
|
26
24
|
}) => {
|
|
27
|
-
|
|
28
|
-
|
|
29
|
-
} = (0, _appRuntime.useConfig)(); // TODO simply use href from the visualization object?
|
|
30
|
-
|
|
31
|
-
const appUrl = new URL("".concat(baseUrl, "/").concat((0, _utils.appPathFor)(type, id)), "".concat(window.location.origin).concat(window.location.pathname));
|
|
25
|
+
// TODO simply use href from the visualization object?
|
|
26
|
+
const appUrl = new URL((0, _utils.appPathFor)(type, id), "".concat(window.location.origin).concat(window.location.pathname));
|
|
32
27
|
return /*#__PURE__*/_react.default.createElement(_ui.Modal, {
|
|
33
28
|
onClose: onClose
|
|
34
29
|
}, /*#__PURE__*/_react.default.createElement(_ui.ModalContent, null, /*#__PURE__*/_react.default.createElement("p", null, _index.default.t('Open in this app')), /*#__PURE__*/_react.default.createElement("a", {
|
|
@@ -54,8 +54,7 @@ const appPathFor = (fileType, id) => {
|
|
|
54
54
|
return "dhis-web-maps/index.html?id=".concat(id);
|
|
55
55
|
|
|
56
56
|
default:
|
|
57
|
-
|
|
58
|
-
return "".concat(window.location.pathname).concat(window.location.search).concat(window.location.hash).substring(1);
|
|
57
|
+
return "".concat(window.location.search).concat(window.location.hash);
|
|
59
58
|
}
|
|
60
59
|
};
|
|
61
60
|
|
|
@@ -23,7 +23,7 @@
|
|
|
23
23
|
"Totals only": "",
|
|
24
24
|
"Details only": "",
|
|
25
25
|
"Disaggregation": "",
|
|
26
|
-
"No data": "",
|
|
26
|
+
"No data": "Geen gegevens",
|
|
27
27
|
"Loading": "",
|
|
28
28
|
"Search by data item name": "",
|
|
29
29
|
"No items selected": "",
|
|
@@ -60,12 +60,12 @@
|
|
|
60
60
|
"Nothing found for {{searchTerm}}": "",
|
|
61
61
|
"Delete {{fileType}}": "",
|
|
62
62
|
"This {{fileType}} and related interpretations will be deleted. Continue?": "",
|
|
63
|
-
"Cancel": "",
|
|
63
|
+
"Cancel": "Annuleer",
|
|
64
64
|
"Delete": "Verwijderen",
|
|
65
65
|
"File": "",
|
|
66
66
|
"New": "",
|
|
67
67
|
"Open…": "",
|
|
68
|
-
"Save": "",
|
|
68
|
+
"Save": "Sla op",
|
|
69
69
|
"Save…": "",
|
|
70
70
|
"Save as…": "",
|
|
71
71
|
"Rename…": "",
|
|
@@ -73,17 +73,17 @@
|
|
|
73
73
|
"Share…": "",
|
|
74
74
|
"Get link…": "",
|
|
75
75
|
"Open in this app": "",
|
|
76
|
-
"Close": "",
|
|
76
|
+
"Close": "Sluit",
|
|
77
77
|
"Rename {{fileType}}": "",
|
|
78
|
-
"Name": "",
|
|
79
|
-
"Description": "",
|
|
78
|
+
"Name": "Naam",
|
|
79
|
+
"Description": "Beschrijving",
|
|
80
80
|
"Rename": "",
|
|
81
81
|
"Save {{fileType}} as": "",
|
|
82
82
|
"event report": "",
|
|
83
83
|
"line list": "",
|
|
84
84
|
"map": "",
|
|
85
85
|
"visualization": "",
|
|
86
|
-
"Created by": "",
|
|
86
|
+
"Created by": "Gecreëerd door",
|
|
87
87
|
"Anyone": "",
|
|
88
88
|
"Only you": "",
|
|
89
89
|
"Others": "",
|
|
@@ -91,7 +91,7 @@
|
|
|
91
91
|
"Filter by name": "",
|
|
92
92
|
"Created": "",
|
|
93
93
|
"Last updated": "Laatst bijgewerkt",
|
|
94
|
-
"Type": "",
|
|
94
|
+
"Type": "Soort",
|
|
95
95
|
"Clear filters": "",
|
|
96
96
|
"{{firstItemIndex}}-{{lastItemIndex}} of {{totalNumberOfItems}}": "",
|
|
97
97
|
"Open": "",
|
|
@@ -121,7 +121,7 @@
|
|
|
121
121
|
"No line lists found. Click New line list to get started.": "",
|
|
122
122
|
"No line lists found. Try adjusting your search or filter options to find what you're looking for.": "",
|
|
123
123
|
"New line list": "",
|
|
124
|
-
"Options": "",
|
|
124
|
+
"Options": "Opties",
|
|
125
125
|
"Hide": "",
|
|
126
126
|
"Update": "Bijwerken",
|
|
127
127
|
"{{count}} org units": "",
|
|
@@ -138,8 +138,8 @@
|
|
|
138
138
|
"Select a level": "",
|
|
139
139
|
"Select a group": "",
|
|
140
140
|
"Deselect all": "",
|
|
141
|
-
"Period type": "",
|
|
142
|
-
"Year": "",
|
|
141
|
+
"Period type": "Soort periode",
|
|
142
|
+
"Year": "Jaar",
|
|
143
143
|
"Select year": "",
|
|
144
144
|
"Period": "Periode",
|
|
145
145
|
"Relative periods": "",
|
|
@@ -238,7 +238,7 @@
|
|
|
238
238
|
"Retry": "",
|
|
239
239
|
"Series": "",
|
|
240
240
|
"Category": "",
|
|
241
|
-
"Filter": "",
|
|
241
|
+
"Filter": "Filter",
|
|
242
242
|
"Columns": "",
|
|
243
243
|
"Rows": "",
|
|
244
244
|
"Points": "",
|
|
@@ -247,30 +247,30 @@
|
|
|
247
247
|
"Actual reports": "",
|
|
248
248
|
"Actual reports on time": "",
|
|
249
249
|
"Expected reports": "",
|
|
250
|
-
"Program": "",
|
|
250
|
+
"Program": "Programma",
|
|
251
251
|
"Select a program": "",
|
|
252
252
|
"Indicators": "",
|
|
253
|
-
"Indicator group": "",
|
|
253
|
+
"Indicator group": "Indicatorgroep",
|
|
254
254
|
"All groups": "",
|
|
255
|
-
"Indicator": "",
|
|
255
|
+
"Indicator": "Indicator",
|
|
256
256
|
"No indicator groups found": "",
|
|
257
257
|
"Loading indicator groups": "",
|
|
258
258
|
"Data elements": "Gegevenselementen",
|
|
259
|
-
"Data element group": "",
|
|
259
|
+
"Data element group": "Gegevenselementengroep",
|
|
260
260
|
"Data element": "informatie onderdeel",
|
|
261
261
|
"No data element groups found": "",
|
|
262
262
|
"Loading data element groups": "",
|
|
263
263
|
"Data sets": "",
|
|
264
|
-
"Data set": "",
|
|
264
|
+
"Data set": "Gegevensreeks",
|
|
265
265
|
"All data sets": "",
|
|
266
266
|
"Loading data sets": "",
|
|
267
|
-
"Event data items": "",
|
|
267
|
+
"Event data items": "Gebeurtenisgegevensitems",
|
|
268
268
|
"All programs": "",
|
|
269
|
-
"Event data item": "",
|
|
269
|
+
"Event data item": "Gebeurtenisgegevensitem",
|
|
270
270
|
"No programs found": "",
|
|
271
271
|
"Loading programs": "",
|
|
272
|
-
"Program indicators": "",
|
|
273
|
-
"Program indicator": "",
|
|
272
|
+
"Program indicators": "Programmaindicators",
|
|
273
|
+
"Program indicator": "Programmaindicator",
|
|
274
274
|
"Extra Small": "",
|
|
275
275
|
"Small": "",
|
|
276
276
|
"Regular": "",
|
|
@@ -297,7 +297,7 @@
|
|
|
297
297
|
"{{thresholdFactor}} × Modified Z-score high": "",
|
|
298
298
|
"{{thresholdFactor}} × Z-score low": "",
|
|
299
299
|
"{{thresholdFactor}} × Z-score high": "",
|
|
300
|
-
"Data": "",
|
|
300
|
+
"Data": "Gegevens",
|
|
301
301
|
"Organisation Unit": "",
|
|
302
302
|
"Assigned Categories": "",
|
|
303
303
|
"Pivot table": "",
|
|
@@ -79,7 +79,7 @@ class AnalyticsRequest extends AnalyticsRequestDimensionsMixin(AnalyticsRequestF
|
|
|
79
79
|
|
|
80
80
|
request = request.addDimension(f.dimension, (_f$items = f.items) === null || _f$items === void 0 ? void 0 : _f$items.map(item => item.id));
|
|
81
81
|
} else {
|
|
82
|
-
var _f$programStage, _f$
|
|
82
|
+
var _f$programStage, _f$repetition, _f$repetition$indexes;
|
|
83
83
|
|
|
84
84
|
let filterString = (_f$programStage = f.programStage) !== null && _f$programStage !== void 0 && _f$programStage.id ? "".concat(f.programStage.id, ".").concat(f.dimension) : f.dimension;
|
|
85
85
|
|
|
@@ -87,7 +87,15 @@ class AnalyticsRequest extends AnalyticsRequestDimensionsMixin(AnalyticsRequestF
|
|
|
87
87
|
filterString += ":".concat(f.filter);
|
|
88
88
|
}
|
|
89
89
|
|
|
90
|
-
|
|
90
|
+
if ((_f$repetition = f.repetition) !== null && _f$repetition !== void 0 && (_f$repetition$indexes = _f$repetition.indexes) !== null && _f$repetition$indexes !== void 0 && _f$repetition$indexes.length) {
|
|
91
|
+
f.repetition.indexes.forEach(index => {
|
|
92
|
+
request = request.addFilter(filterString.replace(/\./, "[".concat(index, "].")));
|
|
93
|
+
});
|
|
94
|
+
} else {
|
|
95
|
+
var _f$items2;
|
|
96
|
+
|
|
97
|
+
request = request.addFilter(filterString, (_f$items2 = f.items) === null || _f$items2 === void 0 ? void 0 : _f$items2.map(item => item.id));
|
|
98
|
+
}
|
|
91
99
|
}
|
|
92
100
|
});
|
|
93
101
|
return request;
|
|
@@ -1,4 +1,3 @@
|
|
|
1
|
-
import { useConfig } from '@dhis2/app-runtime';
|
|
2
1
|
import { Modal, ModalContent, ModalActions, ButtonStrip, Button } from '@dhis2/ui';
|
|
3
2
|
import PropTypes from 'prop-types';
|
|
4
3
|
import React from 'react';
|
|
@@ -9,11 +8,8 @@ export const GetLinkDialog = ({
|
|
|
9
8
|
id,
|
|
10
9
|
onClose
|
|
11
10
|
}) => {
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
} = useConfig(); // TODO simply use href from the visualization object?
|
|
15
|
-
|
|
16
|
-
const appUrl = new URL("".concat(baseUrl, "/").concat(appPathFor(type, id)), "".concat(window.location.origin).concat(window.location.pathname));
|
|
11
|
+
// TODO simply use href from the visualization object?
|
|
12
|
+
const appUrl = new URL(appPathFor(type, id), "".concat(window.location.origin).concat(window.location.pathname));
|
|
17
13
|
return /*#__PURE__*/React.createElement(Modal, {
|
|
18
14
|
onClose: onClose
|
|
19
15
|
}, /*#__PURE__*/React.createElement(ModalContent, null, /*#__PURE__*/React.createElement("p", null, i18n.t('Open in this app')), /*#__PURE__*/React.createElement("a", {
|
|
@@ -32,7 +32,6 @@ export const appPathFor = (fileType, id) => {
|
|
|
32
32
|
return "dhis-web-maps/index.html?id=".concat(id);
|
|
33
33
|
|
|
34
34
|
default:
|
|
35
|
-
|
|
36
|
-
return "".concat(window.location.pathname).concat(window.location.search).concat(window.location.hash).substring(1);
|
|
35
|
+
return "".concat(window.location.search).concat(window.location.hash);
|
|
37
36
|
}
|
|
38
37
|
};
|
|
@@ -23,7 +23,7 @@
|
|
|
23
23
|
"Totals only": "",
|
|
24
24
|
"Details only": "",
|
|
25
25
|
"Disaggregation": "",
|
|
26
|
-
"No data": "",
|
|
26
|
+
"No data": "Geen gegevens",
|
|
27
27
|
"Loading": "",
|
|
28
28
|
"Search by data item name": "",
|
|
29
29
|
"No items selected": "",
|
|
@@ -60,12 +60,12 @@
|
|
|
60
60
|
"Nothing found for {{searchTerm}}": "",
|
|
61
61
|
"Delete {{fileType}}": "",
|
|
62
62
|
"This {{fileType}} and related interpretations will be deleted. Continue?": "",
|
|
63
|
-
"Cancel": "",
|
|
63
|
+
"Cancel": "Annuleer",
|
|
64
64
|
"Delete": "Verwijderen",
|
|
65
65
|
"File": "",
|
|
66
66
|
"New": "",
|
|
67
67
|
"Open…": "",
|
|
68
|
-
"Save": "",
|
|
68
|
+
"Save": "Sla op",
|
|
69
69
|
"Save…": "",
|
|
70
70
|
"Save as…": "",
|
|
71
71
|
"Rename…": "",
|
|
@@ -73,17 +73,17 @@
|
|
|
73
73
|
"Share…": "",
|
|
74
74
|
"Get link…": "",
|
|
75
75
|
"Open in this app": "",
|
|
76
|
-
"Close": "",
|
|
76
|
+
"Close": "Sluit",
|
|
77
77
|
"Rename {{fileType}}": "",
|
|
78
|
-
"Name": "",
|
|
79
|
-
"Description": "",
|
|
78
|
+
"Name": "Naam",
|
|
79
|
+
"Description": "Beschrijving",
|
|
80
80
|
"Rename": "",
|
|
81
81
|
"Save {{fileType}} as": "",
|
|
82
82
|
"event report": "",
|
|
83
83
|
"line list": "",
|
|
84
84
|
"map": "",
|
|
85
85
|
"visualization": "",
|
|
86
|
-
"Created by": "",
|
|
86
|
+
"Created by": "Gecreëerd door",
|
|
87
87
|
"Anyone": "",
|
|
88
88
|
"Only you": "",
|
|
89
89
|
"Others": "",
|
|
@@ -91,7 +91,7 @@
|
|
|
91
91
|
"Filter by name": "",
|
|
92
92
|
"Created": "",
|
|
93
93
|
"Last updated": "Laatst bijgewerkt",
|
|
94
|
-
"Type": "",
|
|
94
|
+
"Type": "Soort",
|
|
95
95
|
"Clear filters": "",
|
|
96
96
|
"{{firstItemIndex}}-{{lastItemIndex}} of {{totalNumberOfItems}}": "",
|
|
97
97
|
"Open": "",
|
|
@@ -121,7 +121,7 @@
|
|
|
121
121
|
"No line lists found. Click New line list to get started.": "",
|
|
122
122
|
"No line lists found. Try adjusting your search or filter options to find what you're looking for.": "",
|
|
123
123
|
"New line list": "",
|
|
124
|
-
"Options": "",
|
|
124
|
+
"Options": "Opties",
|
|
125
125
|
"Hide": "",
|
|
126
126
|
"Update": "Bijwerken",
|
|
127
127
|
"{{count}} org units": "",
|
|
@@ -138,8 +138,8 @@
|
|
|
138
138
|
"Select a level": "",
|
|
139
139
|
"Select a group": "",
|
|
140
140
|
"Deselect all": "",
|
|
141
|
-
"Period type": "",
|
|
142
|
-
"Year": "",
|
|
141
|
+
"Period type": "Soort periode",
|
|
142
|
+
"Year": "Jaar",
|
|
143
143
|
"Select year": "",
|
|
144
144
|
"Period": "Periode",
|
|
145
145
|
"Relative periods": "",
|
|
@@ -238,7 +238,7 @@
|
|
|
238
238
|
"Retry": "",
|
|
239
239
|
"Series": "",
|
|
240
240
|
"Category": "",
|
|
241
|
-
"Filter": "",
|
|
241
|
+
"Filter": "Filter",
|
|
242
242
|
"Columns": "",
|
|
243
243
|
"Rows": "",
|
|
244
244
|
"Points": "",
|
|
@@ -247,30 +247,30 @@
|
|
|
247
247
|
"Actual reports": "",
|
|
248
248
|
"Actual reports on time": "",
|
|
249
249
|
"Expected reports": "",
|
|
250
|
-
"Program": "",
|
|
250
|
+
"Program": "Programma",
|
|
251
251
|
"Select a program": "",
|
|
252
252
|
"Indicators": "",
|
|
253
|
-
"Indicator group": "",
|
|
253
|
+
"Indicator group": "Indicatorgroep",
|
|
254
254
|
"All groups": "",
|
|
255
|
-
"Indicator": "",
|
|
255
|
+
"Indicator": "Indicator",
|
|
256
256
|
"No indicator groups found": "",
|
|
257
257
|
"Loading indicator groups": "",
|
|
258
258
|
"Data elements": "Gegevenselementen",
|
|
259
|
-
"Data element group": "",
|
|
259
|
+
"Data element group": "Gegevenselementengroep",
|
|
260
260
|
"Data element": "informatie onderdeel",
|
|
261
261
|
"No data element groups found": "",
|
|
262
262
|
"Loading data element groups": "",
|
|
263
263
|
"Data sets": "",
|
|
264
|
-
"Data set": "",
|
|
264
|
+
"Data set": "Gegevensreeks",
|
|
265
265
|
"All data sets": "",
|
|
266
266
|
"Loading data sets": "",
|
|
267
|
-
"Event data items": "",
|
|
267
|
+
"Event data items": "Gebeurtenisgegevensitems",
|
|
268
268
|
"All programs": "",
|
|
269
|
-
"Event data item": "",
|
|
269
|
+
"Event data item": "Gebeurtenisgegevensitem",
|
|
270
270
|
"No programs found": "",
|
|
271
271
|
"Loading programs": "",
|
|
272
|
-
"Program indicators": "",
|
|
273
|
-
"Program indicator": "",
|
|
272
|
+
"Program indicators": "Programmaindicators",
|
|
273
|
+
"Program indicator": "Programmaindicator",
|
|
274
274
|
"Extra Small": "",
|
|
275
275
|
"Small": "",
|
|
276
276
|
"Regular": "",
|
|
@@ -297,7 +297,7 @@
|
|
|
297
297
|
"{{thresholdFactor}} × Modified Z-score high": "",
|
|
298
298
|
"{{thresholdFactor}} × Z-score low": "",
|
|
299
299
|
"{{thresholdFactor}} × Z-score high": "",
|
|
300
|
-
"Data": "",
|
|
300
|
+
"Data": "Gegevens",
|
|
301
301
|
"Organisation Unit": "",
|
|
302
302
|
"Assigned Categories": "",
|
|
303
303
|
"Pivot table": "",
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@dhis2/analytics",
|
|
3
|
-
"version": "23.7.
|
|
3
|
+
"version": "23.7.10",
|
|
4
4
|
"main": "./build/cjs/index.js",
|
|
5
5
|
"module": "./build/es/index.js",
|
|
6
6
|
"exports": {
|
|
@@ -33,7 +33,7 @@
|
|
|
33
33
|
"devDependencies": {
|
|
34
34
|
"@dhis2/app-runtime": "^2.11.0",
|
|
35
35
|
"@dhis2/cli-app-scripts": "^6.2.0",
|
|
36
|
-
"@dhis2/cli-style": "^10.
|
|
36
|
+
"@dhis2/cli-style": "^10.4.0",
|
|
37
37
|
"@dhis2/d2-i18n": "^1.1.0",
|
|
38
38
|
"@dhis2/ui": "^7.16.1",
|
|
39
39
|
"@sambego/storybook-state": "^2.0.1",
|