@openmrs/esm-implementer-tools-app 8.0.1-pre.3518 → 8.0.1-pre.3529
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/.turbo/turbo-build.log +5 -5
- package/dist/4300.js +1 -1
- package/dist/6132.js +1 -1
- package/dist/6132.js.map +1 -1
- package/dist/8292.js +1 -0
- package/dist/8292.js.map +1 -0
- package/dist/main.js +1 -1
- package/dist/main.js.map +1 -1
- package/dist/openmrs-esm-implementer-tools-app.js +1 -1
- package/dist/openmrs-esm-implementer-tools-app.js.buildmanifest.json +37 -37
- package/dist/openmrs-esm-implementer-tools-app.js.map +1 -1
- package/dist/routes.json +1 -1
- package/package.json +4 -4
- package/src/configuration/configuration.component.tsx +1 -1
- package/translations/en.json +8 -0
- package/dist/4813.js +0 -1
- package/dist/4813.js.map +0 -1
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@openmrs/esm-implementer-tools-app",
|
|
3
|
-
"version": "8.0.1-pre.
|
|
3
|
+
"version": "8.0.1-pre.3529",
|
|
4
4
|
"license": "MPL-2.0",
|
|
5
5
|
"description": "The admin interface for OpenMRS Frontend",
|
|
6
6
|
"browser": "dist/openmrs-esm-implementer-tools-app.js",
|
|
@@ -17,7 +17,7 @@
|
|
|
17
17
|
"analyze": "webpack --mode=production --env analyze=true",
|
|
18
18
|
"typescript": "tsc",
|
|
19
19
|
"lint": "eslint src --ext ts,tsx",
|
|
20
|
-
"extract-translations": "i18next 'src/**/*.
|
|
20
|
+
"extract-translations": "i18next 'src/**/*.tsx' 'src/**/*.ts' '!src/**/*.test.tsx' '!src/**/*.test.ts' --config='../../../tools/i18next-parser.config.js'"
|
|
21
21
|
},
|
|
22
22
|
"keywords": [
|
|
23
23
|
"openmrs",
|
|
@@ -51,8 +51,8 @@
|
|
|
51
51
|
"swr": "2.x"
|
|
52
52
|
},
|
|
53
53
|
"devDependencies": {
|
|
54
|
-
"@openmrs/esm-framework": "8.0.1-pre.
|
|
55
|
-
"@openmrs/webpack-config": "8.0.1-pre.
|
|
54
|
+
"@openmrs/esm-framework": "8.0.1-pre.3529",
|
|
55
|
+
"@openmrs/webpack-config": "8.0.1-pre.3529",
|
|
56
56
|
"ace-builds": "^1.43.3",
|
|
57
57
|
"react": "^18.3.1",
|
|
58
58
|
"react-ace": "^14.0.1",
|
|
@@ -127,7 +127,7 @@ export const Configuration: React.FC = () => {
|
|
|
127
127
|
<Column>
|
|
128
128
|
<TextInput
|
|
129
129
|
id="extensionSearch"
|
|
130
|
-
labelText=
|
|
130
|
+
labelText={t('searchConfiguration', 'Search configuration')}
|
|
131
131
|
onChange={(e) => setFilterText(e.target.value)}
|
|
132
132
|
autoComplete="off"
|
|
133
133
|
/>
|
package/translations/en.json
CHANGED
|
@@ -12,6 +12,7 @@
|
|
|
12
12
|
"edit": "Edit",
|
|
13
13
|
"editValueButtonText": "Edit",
|
|
14
14
|
"enabled": "Enabled",
|
|
15
|
+
"exitUIEditor": "Exit UI Editor",
|
|
15
16
|
"extensions": "Extensions",
|
|
16
17
|
"featureFlag": "Feature flag",
|
|
17
18
|
"featureFlags": "Feature flags",
|
|
@@ -20,13 +21,20 @@
|
|
|
20
21
|
"installedVersion": "Installed version",
|
|
21
22
|
"itemDescriptionSourceDefaultText": "The current value is the default.",
|
|
22
23
|
"jsonEditor": "JSON editor",
|
|
24
|
+
"loading": "Loading",
|
|
23
25
|
"missing": "Missing",
|
|
24
26
|
"moduleName": "Module name",
|
|
25
27
|
"modulesWithMissingDependenciesWarning": "Some modules have unresolved backend dependencies",
|
|
28
|
+
"noConceptsFoundText": "No matching concepts found",
|
|
29
|
+
"noPersonAttributeFoundText": "No matching person attribute types found",
|
|
26
30
|
"numberValidationMessage": "Value must be a number",
|
|
27
31
|
"objectValidationMessage": "Value must be an object",
|
|
28
32
|
"requiredVersion": "Required Version",
|
|
29
33
|
"resetToDefaultValueButtonText": "Reset to default",
|
|
34
|
+
"searchConceptHelperText": "Search concepts",
|
|
35
|
+
"searchConfiguration": "Search configuration",
|
|
36
|
+
"searching": "Searching",
|
|
37
|
+
"searchPersonAttributeHelperText": "Person attribute type name",
|
|
30
38
|
"stringValidationMessage": "Value must be a string",
|
|
31
39
|
"toggleImplementerTools": "Toggle Implementer Tools",
|
|
32
40
|
"uiEditor": "UI editor",
|