@dhis2/analytics 23.11.0 → 23.12.1

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.
Files changed (136) hide show
  1. package/CHANGELOG.md +21 -0
  2. package/build/cjs/components/Interpretations/InterpretationModal/Comment.js +64 -0
  3. package/build/cjs/components/Interpretations/InterpretationModal/CommentAddForm.js +93 -0
  4. package/build/cjs/components/Interpretations/InterpretationModal/CommentDeleteButton.js +62 -0
  5. package/build/cjs/components/Interpretations/InterpretationModal/CommentUpdateForm.js +95 -0
  6. package/build/cjs/components/Interpretations/InterpretationModal/InterpretationModal.js +187 -0
  7. package/build/cjs/components/Interpretations/InterpretationModal/InterpretationThread.js +100 -0
  8. package/build/cjs/components/Interpretations/InterpretationModal/index.js +13 -0
  9. package/build/cjs/components/Interpretations/InterpretationModal/useModalContentWidth.js +39 -0
  10. package/build/cjs/components/Interpretations/InterpretationsUnit/InterpretationForm.js +94 -0
  11. package/build/cjs/components/Interpretations/InterpretationsUnit/InterpretationList.js +94 -0
  12. package/build/cjs/components/Interpretations/InterpretationsUnit/InterpretationsUnit.js +135 -0
  13. package/build/cjs/components/Interpretations/InterpretationsUnit/index.js +13 -0
  14. package/build/cjs/components/Interpretations/common/Interpretation/Interpretation.js +110 -0
  15. package/build/cjs/components/Interpretations/common/Interpretation/InterpretationDeleteButton.js +58 -0
  16. package/build/cjs/components/Interpretations/common/Interpretation/InterpretationSharingLink.js +50 -0
  17. package/build/cjs/components/Interpretations/common/Interpretation/InterpretationUpdateForm.js +108 -0
  18. package/build/cjs/components/Interpretations/common/Interpretation/index.js +21 -0
  19. package/build/cjs/components/Interpretations/common/Interpretation/useLike.js +53 -0
  20. package/build/cjs/components/Interpretations/common/Message/Message.js +55 -0
  21. package/build/cjs/components/Interpretations/common/Message/MessageButtonStrip.js +33 -0
  22. package/build/cjs/components/Interpretations/common/Message/MessageEditorContainer.js +42 -0
  23. package/build/cjs/components/Interpretations/common/Message/MessageIconButton.js +67 -0
  24. package/build/cjs/components/Interpretations/common/Message/MessageInput.js +31 -0
  25. package/build/cjs/components/Interpretations/common/Message/MessageStatsBar.js +33 -0
  26. package/build/cjs/components/Interpretations/common/Message/index.js +53 -0
  27. package/build/cjs/components/Interpretations/common/RichTextEditor/RichTextEditor.js +262 -0
  28. package/build/cjs/components/Interpretations/common/RichTextEditor/index.js +13 -0
  29. package/build/cjs/components/Interpretations/common/RichTextEditor/markdownHandler.js +148 -0
  30. package/build/cjs/components/Interpretations/common/RichTextEditor/styles/RichTextEditor.style.js +21 -0
  31. package/build/cjs/components/Interpretations/common/UserMention/UserList.js +48 -0
  32. package/build/cjs/components/Interpretations/common/UserMention/UserMentionWrapper.js +226 -0
  33. package/build/cjs/components/Interpretations/common/UserMention/styles/UserMentionWrapper.style.js +30 -0
  34. package/build/cjs/components/Interpretations/common/UserMention/useUserSearchResults.js +78 -0
  35. package/build/cjs/components/Interpretations/common/index.js +44 -0
  36. package/build/cjs/index.js +16 -0
  37. package/build/cjs/locales/ar/translations.json +32 -1
  38. package/build/cjs/locales/ar_EG/translations.json +32 -1
  39. package/build/cjs/locales/ar_IQ/translations.json +32 -1
  40. package/build/cjs/locales/ckb/translations.json +32 -1
  41. package/build/cjs/locales/cs/translations.json +32 -1
  42. package/build/cjs/locales/da/translations.json +32 -1
  43. package/build/cjs/locales/en/translations.json +32 -1
  44. package/build/cjs/locales/es/translations.json +32 -1
  45. package/build/cjs/locales/fr/translations.json +32 -1
  46. package/build/cjs/locales/id/translations.json +32 -1
  47. package/build/cjs/locales/km/translations.json +32 -1
  48. package/build/cjs/locales/lo/translations.json +32 -1
  49. package/build/cjs/locales/my/translations.json +32 -1
  50. package/build/cjs/locales/nb/translations.json +32 -1
  51. package/build/cjs/locales/nl/translations.json +32 -1
  52. package/build/cjs/locales/or/translations.json +32 -1
  53. package/build/cjs/locales/prs/translations.json +32 -1
  54. package/build/cjs/locales/ps/translations.json +32 -1
  55. package/build/cjs/locales/pt/translations.json +32 -1
  56. package/build/cjs/locales/pt_BR/translations.json +32 -1
  57. package/build/cjs/locales/ro/translations.json +38 -7
  58. package/build/cjs/locales/ru/translations.json +32 -1
  59. package/build/cjs/locales/sv/translations.json +32 -1
  60. package/build/cjs/locales/tet/translations.json +32 -1
  61. package/build/cjs/locales/tg/translations.json +32 -1
  62. package/build/cjs/locales/uk/translations.json +32 -1
  63. package/build/cjs/locales/ur/translations.json +32 -1
  64. package/build/cjs/locales/uz/translations.json +32 -1
  65. package/build/cjs/locales/uz_Latn/translations.json +32 -1
  66. package/build/cjs/locales/vi/translations.json +32 -1
  67. package/build/cjs/locales/zh/translations.json +32 -1
  68. package/build/cjs/locales/zh_CN/translations.json +32 -1
  69. package/build/es/components/Interpretations/InterpretationModal/Comment.js +45 -0
  70. package/build/es/components/Interpretations/InterpretationModal/CommentAddForm.js +70 -0
  71. package/build/es/components/Interpretations/InterpretationModal/CommentDeleteButton.js +47 -0
  72. package/build/es/components/Interpretations/InterpretationModal/CommentUpdateForm.js +73 -0
  73. package/build/es/components/Interpretations/InterpretationModal/InterpretationModal.js +165 -0
  74. package/build/es/components/Interpretations/InterpretationModal/InterpretationThread.js +79 -0
  75. package/build/es/components/Interpretations/InterpretationModal/index.js +1 -0
  76. package/build/es/components/Interpretations/InterpretationModal/useModalContentWidth.js +28 -0
  77. package/build/es/components/Interpretations/InterpretationsUnit/InterpretationForm.js +71 -0
  78. package/build/es/components/Interpretations/InterpretationsUnit/InterpretationList.js +78 -0
  79. package/build/es/components/Interpretations/InterpretationsUnit/InterpretationsUnit.js +112 -0
  80. package/build/es/components/Interpretations/InterpretationsUnit/index.js +1 -0
  81. package/build/es/components/Interpretations/common/Interpretation/Interpretation.js +87 -0
  82. package/build/es/components/Interpretations/common/Interpretation/InterpretationDeleteButton.js +43 -0
  83. package/build/es/components/Interpretations/common/Interpretation/InterpretationSharingLink.js +33 -0
  84. package/build/es/components/Interpretations/common/Interpretation/InterpretationUpdateForm.js +85 -0
  85. package/build/es/components/Interpretations/common/Interpretation/index.js +2 -0
  86. package/build/es/components/Interpretations/common/Interpretation/useLike.js +45 -0
  87. package/build/es/components/Interpretations/common/Message/Message.js +41 -0
  88. package/build/es/components/Interpretations/common/Message/MessageButtonStrip.js +21 -0
  89. package/build/es/components/Interpretations/common/Message/MessageEditorContainer.js +30 -0
  90. package/build/es/components/Interpretations/common/Message/MessageIconButton.js +54 -0
  91. package/build/es/components/Interpretations/common/Message/MessageInput.js +16 -0
  92. package/build/es/components/Interpretations/common/Message/MessageStatsBar.js +21 -0
  93. package/build/es/components/Interpretations/common/Message/index.js +6 -0
  94. package/build/es/components/Interpretations/common/RichTextEditor/RichTextEditor.js +240 -0
  95. package/build/es/components/Interpretations/common/RichTextEditor/index.js +1 -0
  96. package/build/es/components/Interpretations/common/RichTextEditor/markdownHandler.js +128 -0
  97. package/build/es/components/Interpretations/common/RichTextEditor/styles/RichTextEditor.style.js +9 -0
  98. package/build/es/components/Interpretations/common/UserMention/UserList.js +33 -0
  99. package/build/es/components/Interpretations/common/UserMention/UserMentionWrapper.js +202 -0
  100. package/build/es/components/Interpretations/common/UserMention/styles/UserMentionWrapper.style.js +17 -0
  101. package/build/es/components/Interpretations/common/UserMention/useUserSearchResults.js +63 -0
  102. package/build/es/components/Interpretations/common/index.js +3 -0
  103. package/build/es/index.js +2 -0
  104. package/build/es/locales/ar/translations.json +32 -1
  105. package/build/es/locales/ar_EG/translations.json +32 -1
  106. package/build/es/locales/ar_IQ/translations.json +32 -1
  107. package/build/es/locales/ckb/translations.json +32 -1
  108. package/build/es/locales/cs/translations.json +32 -1
  109. package/build/es/locales/da/translations.json +32 -1
  110. package/build/es/locales/en/translations.json +32 -1
  111. package/build/es/locales/es/translations.json +32 -1
  112. package/build/es/locales/fr/translations.json +32 -1
  113. package/build/es/locales/id/translations.json +32 -1
  114. package/build/es/locales/km/translations.json +32 -1
  115. package/build/es/locales/lo/translations.json +32 -1
  116. package/build/es/locales/my/translations.json +32 -1
  117. package/build/es/locales/nb/translations.json +32 -1
  118. package/build/es/locales/nl/translations.json +32 -1
  119. package/build/es/locales/or/translations.json +32 -1
  120. package/build/es/locales/prs/translations.json +32 -1
  121. package/build/es/locales/ps/translations.json +32 -1
  122. package/build/es/locales/pt/translations.json +32 -1
  123. package/build/es/locales/pt_BR/translations.json +32 -1
  124. package/build/es/locales/ro/translations.json +38 -7
  125. package/build/es/locales/ru/translations.json +32 -1
  126. package/build/es/locales/sv/translations.json +32 -1
  127. package/build/es/locales/tet/translations.json +32 -1
  128. package/build/es/locales/tg/translations.json +32 -1
  129. package/build/es/locales/uk/translations.json +32 -1
  130. package/build/es/locales/ur/translations.json +32 -1
  131. package/build/es/locales/uz/translations.json +32 -1
  132. package/build/es/locales/uz_Latn/translations.json +32 -1
  133. package/build/es/locales/vi/translations.json +32 -1
  134. package/build/es/locales/zh/translations.json +32 -1
  135. package/build/es/locales/zh_CN/translations.json +32 -1
  136. package/package.json +2 -1
@@ -85,6 +85,38 @@
85
85
  "line list": "",
86
86
  "map": "",
87
87
  "visualization": "",
88
+ "Edit": "",
89
+ "Write a reply": "",
90
+ "Post reply": "",
91
+ "Could not update comment": "",
92
+ "Enter comment text": "",
93
+ "Update": "Оновити",
94
+ "Viewing interpretation: {{visualisationName}}": "",
95
+ "Could not load interpretation": "",
96
+ "The interpretation couldn’t be displayed. Try again or contact your system administrator.": "",
97
+ "Hide interpretation": "",
98
+ "Write an interpretation": "",
99
+ "Post interpretation": "",
100
+ "Interpretations": "",
101
+ "Unlike": "",
102
+ "Like": "Вподобати",
103
+ "Reply": "Відповісти",
104
+ "Share": "",
105
+ "See interpretation": "",
106
+ "Manage sharing": "",
107
+ "Could not update interpretation": "",
108
+ "Enter interpretation text": "",
109
+ "Bold text": "",
110
+ "Italic text": "",
111
+ "Link to a URL": "",
112
+ "Mention a user": "",
113
+ "Add emoji": "",
114
+ "Preview": "",
115
+ "Back to write mode": "",
116
+ "Too many results. Try refining the search.": "",
117
+ "Search for a user": "",
118
+ "Searching for \"{{searchText}}\"": "",
119
+ "No results found": "",
88
120
  "Created by": "Створено",
89
121
  "Anyone": "",
90
122
  "Only you": "",
@@ -125,7 +157,6 @@
125
157
  "New line list": "",
126
158
  "Options": "Опції",
127
159
  "Hide": "Сховати",
128
- "Update": "Оновити",
129
160
  "{{count}} org units_0": "",
130
161
  "{{count}} org units_1": "",
131
162
  "{{count}} org units_2": "",
@@ -83,6 +83,38 @@
83
83
  "line list": "",
84
84
  "map": "",
85
85
  "visualization": "",
86
+ "Edit": "ترمیم",
87
+ "Write a reply": "",
88
+ "Post reply": "",
89
+ "Could not update comment": "",
90
+ "Enter comment text": "",
91
+ "Update": "اپڈیٹ",
92
+ "Viewing interpretation: {{visualisationName}}": "",
93
+ "Could not load interpretation": "",
94
+ "The interpretation couldn’t be displayed. Try again or contact your system administrator.": "",
95
+ "Hide interpretation": "",
96
+ "Write an interpretation": "",
97
+ "Post interpretation": "",
98
+ "Interpretations": "تشریحات",
99
+ "Unlike": "برعکس",
100
+ "Like": "کی طرح",
101
+ "Reply": "جواب",
102
+ "Share": "بانٹیں",
103
+ "See interpretation": "",
104
+ "Manage sharing": "",
105
+ "Could not update interpretation": "",
106
+ "Enter interpretation text": "",
107
+ "Bold text": "",
108
+ "Italic text": "",
109
+ "Link to a URL": "",
110
+ "Mention a user": "",
111
+ "Add emoji": "",
112
+ "Preview": "پیش نظارہ",
113
+ "Back to write mode": "",
114
+ "Too many results. Try refining the search.": "",
115
+ "Search for a user": "",
116
+ "Searching for \"{{searchText}}\"": "",
117
+ "No results found": "کوئی نتیجہ نہیں ملا",
86
118
  "Created by": "تخلیق کیا",
87
119
  "Anyone": "",
88
120
  "Only you": "",
@@ -123,7 +155,6 @@
123
155
  "New line list": "",
124
156
  "Options": "اختیارات",
125
157
  "Hide": "چھپائیں",
126
- "Update": "اپڈیٹ",
127
158
  "{{count}} org units": "",
128
159
  "{{count}} org units_plural": "",
129
160
  "{{count}} levels": "",
@@ -82,6 +82,38 @@
82
82
  "line list": "",
83
83
  "map": "харита",
84
84
  "visualization": "",
85
+ "Edit": "Таҳрирлаш",
86
+ "Write a reply": "Изоҳ ёзинг",
87
+ "Post reply": "",
88
+ "Could not update comment": "",
89
+ "Enter comment text": "",
90
+ "Update": "Янгилаш",
91
+ "Viewing interpretation: {{visualisationName}}": "",
92
+ "Could not load interpretation": "",
93
+ "The interpretation couldn’t be displayed. Try again or contact your system administrator.": "",
94
+ "Hide interpretation": "",
95
+ "Write an interpretation": "Талқин ёзиш",
96
+ "Post interpretation": "",
97
+ "Interpretations": "Талқинлар",
98
+ "Unlike": "Аксинча",
99
+ "Like": "Каби, ўхшаш",
100
+ "Reply": "Изоҳ",
101
+ "Share": "Улашиш",
102
+ "See interpretation": "",
103
+ "Manage sharing": "Улашишни бошқариш",
104
+ "Could not update interpretation": "",
105
+ "Enter interpretation text": "",
106
+ "Bold text": "",
107
+ "Italic text": "",
108
+ "Link to a URL": "",
109
+ "Mention a user": "",
110
+ "Add emoji": "",
111
+ "Preview": "Олдиндан кўриш",
112
+ "Back to write mode": "",
113
+ "Too many results. Try refining the search.": "",
114
+ "Search for a user": "",
115
+ "Searching for \"{{searchText}}\"": "",
116
+ "No results found": "Ҳеч қандай натижа топилмади",
85
117
  "Created by": "Томонидан яратилган",
86
118
  "Anyone": "Кимдир",
87
119
  "Only you": "",
@@ -122,7 +154,6 @@
122
154
  "New line list": "",
123
155
  "Options": "Вариант",
124
156
  "Hide": "Беркитиш",
125
- "Update": "Янгилаш",
126
157
  "{{count}} org units": "",
127
158
  "{{count}} levels": "",
128
159
  "{{count}} groups": "",
@@ -82,6 +82,38 @@
82
82
  "line list": "",
83
83
  "map": "xarita",
84
84
  "visualization": "",
85
+ "Edit": "Tahrirlash",
86
+ "Write a reply": "Izoh yozing",
87
+ "Post reply": "",
88
+ "Could not update comment": "",
89
+ "Enter comment text": "",
90
+ "Update": "Янгилаш",
91
+ "Viewing interpretation: {{visualisationName}}": "",
92
+ "Could not load interpretation": "",
93
+ "The interpretation couldn’t be displayed. Try again or contact your system administrator.": "",
94
+ "Hide interpretation": "",
95
+ "Write an interpretation": "Talqin yozish",
96
+ "Post interpretation": "",
97
+ "Interpretations": "Talqinlar",
98
+ "Unlike": "Аksincha",
99
+ "Like": "Kabi, oʼxshash",
100
+ "Reply": "Javob",
101
+ "Share": "Улашиш",
102
+ "See interpretation": "",
103
+ "Manage sharing": "Ulashishni boshqarish",
104
+ "Could not update interpretation": "",
105
+ "Enter interpretation text": "",
106
+ "Bold text": "",
107
+ "Italic text": "",
108
+ "Link to a URL": "",
109
+ "Mention a user": "",
110
+ "Add emoji": "",
111
+ "Preview": "",
112
+ "Back to write mode": "",
113
+ "Too many results. Try refining the search.": "",
114
+ "Search for a user": "",
115
+ "Searching for \"{{searchText}}\"": "",
116
+ "No results found": "Hech qanday natija topilmadi",
85
117
  "Created by": "Томонидан яратилган",
86
118
  "Anyone": "Kimdir",
87
119
  "Only you": "",
@@ -122,7 +154,6 @@
122
154
  "New line list": "",
123
155
  "Options": "Вариант",
124
156
  "Hide": "Berkitish",
125
- "Update": "Янгилаш",
126
157
  "{{count}} org units": "",
127
158
  "{{count}} levels": "",
128
159
  "{{count}} groups": "",
@@ -82,6 +82,38 @@
82
82
  "line list": "",
83
83
  "map": "bản đồ",
84
84
  "visualization": "",
85
+ "Edit": "Chỉnh sửa",
86
+ "Write a reply": "Viết phản hồi",
87
+ "Post reply": "",
88
+ "Could not update comment": "",
89
+ "Enter comment text": "",
90
+ "Update": "Cập nhật",
91
+ "Viewing interpretation: {{visualisationName}}": "",
92
+ "Could not load interpretation": "",
93
+ "The interpretation couldn’t be displayed. Try again or contact your system administrator.": "",
94
+ "Hide interpretation": "",
95
+ "Write an interpretation": "Viết diễn giải",
96
+ "Post interpretation": "",
97
+ "Interpretations": "Diễn giải ",
98
+ "Unlike": "",
99
+ "Like": "Thích",
100
+ "Reply": "Trả lời",
101
+ "Share": "",
102
+ "See interpretation": "",
103
+ "Manage sharing": "Quản lý chia sẻ",
104
+ "Could not update interpretation": "",
105
+ "Enter interpretation text": "",
106
+ "Bold text": "",
107
+ "Italic text": "",
108
+ "Link to a URL": "",
109
+ "Mention a user": "",
110
+ "Add emoji": "",
111
+ "Preview": "Xem thử",
112
+ "Back to write mode": "",
113
+ "Too many results. Try refining the search.": "",
114
+ "Search for a user": "",
115
+ "Searching for \"{{searchText}}\"": "",
116
+ "No results found": "",
85
117
  "Created by": "Được tạo bởi",
86
118
  "Anyone": "Bất kỳ ai",
87
119
  "Only you": "",
@@ -122,7 +154,6 @@
122
154
  "New line list": "",
123
155
  "Options": "Tùy chọn",
124
156
  "Hide": "Ẩn",
125
- "Update": "Cập nhật",
126
157
  "{{count}} org units": "",
127
158
  "{{count}} levels": "",
128
159
  "{{count}} groups": "",
@@ -82,6 +82,38 @@
82
82
  "line list": "行列表",
83
83
  "map": "地图",
84
84
  "visualization": "可视化",
85
+ "Edit": "编辑",
86
+ "Write a reply": "书写应答",
87
+ "Post reply": "",
88
+ "Could not update comment": "",
89
+ "Enter comment text": "",
90
+ "Update": "更新",
91
+ "Viewing interpretation: {{visualisationName}}": "",
92
+ "Could not load interpretation": "",
93
+ "The interpretation couldn’t be displayed. Try again or contact your system administrator.": "",
94
+ "Hide interpretation": "",
95
+ "Write an interpretation": "书写注释",
96
+ "Post interpretation": "",
97
+ "Interpretations": "解释",
98
+ "Unlike": "不喜欢",
99
+ "Like": "喜欢",
100
+ "Reply": "应答",
101
+ "Share": "分享",
102
+ "See interpretation": "",
103
+ "Manage sharing": "管理共享",
104
+ "Could not update interpretation": "",
105
+ "Enter interpretation text": "",
106
+ "Bold text": "",
107
+ "Italic text": "",
108
+ "Link to a URL": "",
109
+ "Mention a user": "",
110
+ "Add emoji": "",
111
+ "Preview": "预览",
112
+ "Back to write mode": "",
113
+ "Too many results. Try refining the search.": "",
114
+ "Search for a user": "",
115
+ "Searching for \"{{searchText}}\"": "",
116
+ "No results found": "没有结果",
85
117
  "Created by": "创建人",
86
118
  "Anyone": "任何人",
87
119
  "Only you": "只有你",
@@ -122,7 +154,6 @@
122
154
  "New line list": "新行列表",
123
155
  "Options": "选项",
124
156
  "Hide": "隐藏",
125
- "Update": "更新",
126
157
  "{{count}} org units": "{{count}} 个组织单位",
127
158
  "{{count}} levels": "{{count}} 级",
128
159
  "{{count}} groups": "{{count}} 组",
@@ -82,6 +82,38 @@
82
82
  "line list": "",
83
83
  "map": "",
84
84
  "visualization": "",
85
+ "Edit": "编辑",
86
+ "Write a reply": "",
87
+ "Post reply": "",
88
+ "Could not update comment": "",
89
+ "Enter comment text": "",
90
+ "Update": "更新",
91
+ "Viewing interpretation: {{visualisationName}}": "",
92
+ "Could not load interpretation": "",
93
+ "The interpretation couldn’t be displayed. Try again or contact your system administrator.": "",
94
+ "Hide interpretation": "",
95
+ "Write an interpretation": "",
96
+ "Post interpretation": "",
97
+ "Interpretations": "注释",
98
+ "Unlike": "",
99
+ "Like": "Like",
100
+ "Reply": "回复",
101
+ "Share": "分享",
102
+ "See interpretation": "",
103
+ "Manage sharing": "",
104
+ "Could not update interpretation": "",
105
+ "Enter interpretation text": "",
106
+ "Bold text": "",
107
+ "Italic text": "",
108
+ "Link to a URL": "",
109
+ "Mention a user": "",
110
+ "Add emoji": "",
111
+ "Preview": "预览",
112
+ "Back to write mode": "",
113
+ "Too many results. Try refining the search.": "",
114
+ "Search for a user": "",
115
+ "Searching for \"{{searchText}}\"": "",
116
+ "No results found": "没有结果",
85
117
  "Created by": "创建自",
86
118
  "Anyone": "任何人",
87
119
  "Only you": "",
@@ -122,7 +154,6 @@
122
154
  "New line list": "",
123
155
  "Options": "选项",
124
156
  "Hide": "隐藏",
125
- "Update": "更新",
126
157
  "{{count}} org units": "",
127
158
  "{{count}} levels": "",
128
159
  "{{count}} groups": "",
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@dhis2/analytics",
3
- "version": "23.11.0",
3
+ "version": "23.12.1",
4
4
  "main": "./build/cjs/index.js",
5
5
  "module": "./build/es/index.js",
6
6
  "exports": {
@@ -58,6 +58,7 @@
58
58
  "styled-jsx": "^4.0.1"
59
59
  },
60
60
  "dependencies": {
61
+ "@dhis2/d2-ui-rich-text": "^7.4.0",
61
62
  "classnames": "^2.3.1",
62
63
  "d2-utilizr": "^0.2.16",
63
64
  "d3-color": "^1.2.3",