@gen-epix/ui-casedb 2.1.1 → 2.1.2
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/dist/index.js +16253 -19274
- package/dist/index.js.map +1 -1
- package/dist/locale/en.json +2 -0
- package/dist/locale/nl.json +2 -0
- package/dist/src/components/ui/PanelSeparator/PanelSeparatorHorizontal.d.ts +2 -0
- package/dist/src/components/ui/PanelSeparator/PanelSeparatorVertical.d.ts +2 -0
- package/dist/src/components/ui/PanelSeparator/index.d.ts +2 -0
- package/dist/src/index.d.ts +1 -0
- package/package.json +5 -4
package/dist/locale/en.json
CHANGED
|
@@ -256,6 +256,7 @@
|
|
|
256
256
|
"Grouping allows you to group cases by a selected field. Grouping will be disabled when the maximum unique values of the selected field exceeds {{max_stratification_unique_values}}.": "Grouping allows you to group cases by a selected field. Grouping will be disabled when the maximum unique values of the selected field exceeds {{max_stratification_unique_values}}.",
|
|
257
257
|
"Hide {{widgetName}}": "Hide {{widgetName}}",
|
|
258
258
|
"Home": "Home",
|
|
259
|
+
"Horizontal separator": "Horizontal separator",
|
|
259
260
|
"ICD Code": "ICD Code",
|
|
260
261
|
"Incidence map": "Incidence map",
|
|
261
262
|
"Incoming share routes": "Incoming share routes",
|
|
@@ -556,6 +557,7 @@
|
|
|
556
557
|
"Validating cases": "Validating cases",
|
|
557
558
|
"Value": "Value",
|
|
558
559
|
"Variables by dimension": "Variables by dimension",
|
|
560
|
+
"Vertical separator": "Vertical separator",
|
|
559
561
|
"View {{numSets}} sets": "View {{numSets}} sets",
|
|
560
562
|
"View all": "View all",
|
|
561
563
|
"View all cases": "View all cases",
|
package/dist/locale/nl.json
CHANGED
|
@@ -256,6 +256,7 @@
|
|
|
256
256
|
"Grouping allows you to group cases by a selected field. Grouping will be disabled when the maximum unique values of the selected field exceeds {{max_stratification_unique_values}}.": "Groeperen stelt u in staat casussen te groeperen op een geselecteerd veld. Groeperen wordt uitgeschakeld wanneer het maximum aantal unieke waarden van het geselecteerde veld {{max_stratification_unique_values}} overschrijdt.",
|
|
257
257
|
"Hide {{widgetName}}": "Verberg {{widgetName}}",
|
|
258
258
|
"Home": "Home",
|
|
259
|
+
"Horizontal separator": "Horizontale scheidingslijn",
|
|
259
260
|
"ICD Code": "ICD Code",
|
|
260
261
|
"Incidence map": "Incidentie kaart",
|
|
261
262
|
"Incoming share routes": "Inkomende deelroutes",
|
|
@@ -556,6 +557,7 @@
|
|
|
556
557
|
"Validating cases": "Casussen valideren",
|
|
557
558
|
"Value": "Waarde",
|
|
558
559
|
"Variables by dimension": "Variabelen per dimensie",
|
|
560
|
+
"Vertical separator": "Verticale scheidingslijn",
|
|
559
561
|
"View {{numSets}} sets": "Bekijk {{numSets}} sets",
|
|
560
562
|
"View all": "Bekijk alle",
|
|
561
563
|
"View all cases": "Bekijk alle casussen",
|
package/dist/src/index.d.ts
CHANGED
|
@@ -114,6 +114,7 @@ export * from './context/caseTypeAbac';
|
|
|
114
114
|
export * from './context/caseAbac';
|
|
115
115
|
export * from './components/ui/UsersEffectiveRightsDetailsDialog';
|
|
116
116
|
export * from './components/ui/PhylogeneticTreeComponent';
|
|
117
|
+
export * from './components/ui/PanelSeparator';
|
|
117
118
|
export * from './components/ui/HomePageTrends';
|
|
118
119
|
export * from './components/ui/FileSelector';
|
|
119
120
|
export * from './components/epi/EpiWidgetUnavailable';
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@gen-epix/ui-casedb",
|
|
3
|
-
"version": "2.1.
|
|
3
|
+
"version": "2.1.2",
|
|
4
4
|
"license": "EUPL-1.2",
|
|
5
5
|
"repository": {
|
|
6
6
|
"type": "git",
|
|
@@ -36,14 +36,16 @@
|
|
|
36
36
|
"@mui/system": "^9.0.1",
|
|
37
37
|
"@mui/utils": "^9.0.1",
|
|
38
38
|
"@mui/x-date-pickers": "^9.1.0",
|
|
39
|
+
"axios": "1.16.0",
|
|
39
40
|
"i18next": "^26.1.0",
|
|
40
41
|
"react": "^19.2.6",
|
|
41
42
|
"react-dom": "^19.2.6",
|
|
42
43
|
"react-i18next": "^17.0.7",
|
|
43
44
|
"vite": "^8.0.12",
|
|
44
|
-
"
|
|
45
|
+
"yup": "1.7.1",
|
|
46
|
+
"@gen-epix/api-casedb": "2.1.1",
|
|
45
47
|
"@gen-epix/api-commondb": "2.1.0",
|
|
46
|
-
"@gen-epix/
|
|
48
|
+
"@gen-epix/ui": "2.1.1"
|
|
47
49
|
},
|
|
48
50
|
"dependencies": {
|
|
49
51
|
"@emotion/cache": "11.14.0",
|
|
@@ -78,7 +80,6 @@
|
|
|
78
80
|
"use-debounce": "10.1.1",
|
|
79
81
|
"uuid": "14.0.0",
|
|
80
82
|
"write-excel-file": "4.0.6",
|
|
81
|
-
"yup": "1.7.1",
|
|
82
83
|
"zustand": "5.0.13"
|
|
83
84
|
},
|
|
84
85
|
"devDependencies": {
|