@gridsuite/commons-ui 0.160.0 → 0.161.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.
@@ -26,7 +26,7 @@ function updatePccMinParameters(studyUuid, newParams) {
26
26
  Accept: "application/json",
27
27
  "Content-Type": "application/json"
28
28
  },
29
- body: JSON.stringify(newParams)
29
+ body: newParams == null ? null : JSON.stringify(newParams)
30
30
  });
31
31
  }
32
32
  export {
@@ -65,4 +65,5 @@ export declare const businessErrorsEn: {
65
65
  'dynamicSimulation.mappingNotProvided': string;
66
66
  'dynamicSimulation.mappingNotLastRuleWithEmptyFilterError': string;
67
67
  'sensitivityAnalysis.tooManyFactors': string;
68
+ 'pccMin.missingFilter': string;
68
69
  };
@@ -58,7 +58,8 @@ const businessErrorsEn = {
58
58
  "dynamicSimulation.providerNotFound": "Dynamic simulation provider not found.",
59
59
  "dynamicSimulation.mappingNotProvided": "Dynamic simulation mapping not provided.",
60
60
  "dynamicSimulation.mappingNotLastRuleWithEmptyFilterError": "Only last rule can have empty filter: type {equipmentType}, rule index {index}.",
61
- "sensitivityAnalysis.tooManyFactors": "Too many factors to run sensitivity analysis: {resultCount} results (limit: {resultCountLimit}) and {variableCount} variables (limit: {variableCountLimit})."
61
+ "sensitivityAnalysis.tooManyFactors": "Too many factors to run sensitivity analysis: {resultCount} results (limit: {resultCountLimit}) and {variableCount} variables (limit: {variableCountLimit}).",
62
+ "pccMin.missingFilter": "The configuration contains one filter that has been deleted."
62
63
  };
63
64
  export {
64
65
  businessErrorsEn
@@ -65,4 +65,5 @@ export declare const businessErrorsFr: {
65
65
  'dynamicSimulation.mappingNotProvided': string;
66
66
  'dynamicSimulation.mappingNotLastRuleWithEmptyFilterError': string;
67
67
  'sensitivityAnalysis.tooManyFactors': string;
68
+ 'pccMin.missingFilter': string;
68
69
  };
@@ -58,7 +58,8 @@ const businessErrorsFr = {
58
58
  "dynamicSimulation.providerNotFound": "Simulateur pour la simulation dynamique non trouvé.",
59
59
  "dynamicSimulation.mappingNotProvided": "Mapping pour la simulation dynamique non fourni.",
60
60
  "dynamicSimulation.mappingNotLastRuleWithEmptyFilterError": "Seule la dernière règle peut avoir un filtre vide : type {equipmentType}, indice de la règle : {index}.",
61
- "sensitivityAnalysis.tooManyFactors": "Trop de facteurs pour exécuter l’analyse de sensibilité : {resultCount} résultats (limite : {resultCountLimit}) et {variableCount} variables (limite : {variableCountLimit})."
61
+ "sensitivityAnalysis.tooManyFactors": "Trop de facteurs pour exécuter l’analyse de sensibilité : {resultCount} résultats (limite : {resultCountLimit}) et {variableCount} variables (limite : {variableCountLimit}).",
62
+ "pccMin.missingFilter": "La configuration contient un filtre qui a été supprimé."
62
63
  };
63
64
  export {
64
65
  businessErrorsFr
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@gridsuite/commons-ui",
3
- "version": "0.160.0",
3
+ "version": "0.161.0",
4
4
  "description": "common react components for gridsuite applications",
5
5
  "author": "gridsuite team",
6
6
  "homepage": "https://github.com/gridsuite",