@gridsuite/commons-ui 0.284.0 → 0.285.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.
Files changed (73) hide show
  1. package/dist/components/ui/reactHookForm/utils/HelperPreviousValue.js +1 -1
  2. package/dist/features/index.js +48 -6
  3. package/dist/features/network-modifications/battery/modification/BatteryDialogTabsContent.d.ts +2 -2
  4. package/dist/features/network-modifications/common/index.js +2 -5
  5. package/dist/features/network-modifications/common/measurements/PowerMeasurementsForm.js +3 -9
  6. package/dist/features/network-modifications/common/measurements/branchActiveReactivePowerForm.utils.d.ts +4 -17
  7. package/dist/features/network-modifications/common/measurements/branchActiveReactivePowerForm.utils.js +0 -8
  8. package/dist/features/network-modifications/common/measurements/index.js +1 -2
  9. package/dist/features/network-modifications/common/measurements/injectionActiveReactivePowerForm.utils.d.ts +6 -9
  10. package/dist/features/network-modifications/common/measurements/measurement.type.d.ts +7 -1
  11. package/dist/features/network-modifications/common/measurements/powerWithValidity.utils.d.ts +3 -3
  12. package/dist/features/network-modifications/common/reactiveLimits/index.js +1 -3
  13. package/dist/features/network-modifications/common/reactiveLimits/reactiveCapabilityCurve/index.js +1 -3
  14. package/dist/features/network-modifications/common/reactiveLimits/reactiveCapabilityCurve/reactiveCapability.utils.d.ts +0 -4
  15. package/dist/features/network-modifications/common/reactiveLimits/reactiveCapabilityCurve/reactiveCapability.utils.js +0 -8
  16. package/dist/features/network-modifications/common/reactiveLimits/reactiveLimits.type.d.ts +1 -0
  17. package/dist/features/network-modifications/generator/modification/GeneratorDialogTabsContent.d.ts +2 -2
  18. package/dist/features/network-modifications/hvdcLine/index.d.ts +7 -0
  19. package/dist/features/network-modifications/hvdcLine/index.js +47 -0
  20. package/dist/features/network-modifications/hvdcLine/vsc/common/characteristics/VscHvdcLineCharacteristicsPane.d.ts +8 -0
  21. package/dist/features/network-modifications/hvdcLine/vsc/common/characteristics/VscHvdcLineCharacteristicsPane.js +235 -0
  22. package/dist/features/network-modifications/hvdcLine/vsc/common/characteristics/index.d.ts +8 -0
  23. package/dist/features/network-modifications/hvdcLine/vsc/common/characteristics/index.js +11 -0
  24. package/dist/features/network-modifications/hvdcLine/vsc/common/characteristics/vscHvdcLineCharacteristicsPane.utils.d.ts +67 -0
  25. package/dist/features/network-modifications/hvdcLine/vsc/common/characteristics/vscHvdcLineCharacteristicsPane.utils.js +106 -0
  26. package/dist/features/network-modifications/hvdcLine/vsc/common/converterStation/VscConverterStationPane.d.ts +12 -0
  27. package/dist/features/network-modifications/hvdcLine/vsc/common/converterStation/VscConverterStationPane.js +198 -0
  28. package/dist/features/network-modifications/hvdcLine/vsc/common/converterStation/index.d.ts +8 -0
  29. package/dist/features/network-modifications/hvdcLine/vsc/common/converterStation/index.js +13 -0
  30. package/dist/features/network-modifications/hvdcLine/vsc/common/converterStation/vscConverterStationPane.utils.d.ts +156 -0
  31. package/dist/features/network-modifications/hvdcLine/vsc/common/converterStation/vscConverterStationPane.utils.js +199 -0
  32. package/dist/features/network-modifications/hvdcLine/vsc/common/form/VscHvdcLineDialogHeader.d.ts +6 -0
  33. package/dist/features/network-modifications/hvdcLine/vsc/common/form/VscHvdcLineDialogHeader.js +106 -0
  34. package/dist/features/network-modifications/hvdcLine/vsc/common/form/VscHvdcLineDialogTabs.d.ts +9 -0
  35. package/dist/features/network-modifications/hvdcLine/vsc/common/form/VscHvdcLineDialogTabs.js +129 -0
  36. package/dist/features/network-modifications/hvdcLine/vsc/common/form/VscHvdcLineDialogTabsContent.d.ts +10 -0
  37. package/dist/features/network-modifications/hvdcLine/vsc/common/form/VscHvdcLineDialogTabsContent.js +139 -0
  38. package/dist/features/network-modifications/hvdcLine/vsc/common/form/VscHvdcLineForm.d.ts +11 -0
  39. package/dist/features/network-modifications/hvdcLine/vsc/common/form/VscHvdcLineForm.js +43 -0
  40. package/dist/features/network-modifications/hvdcLine/vsc/common/form/index.d.ts +11 -0
  41. package/dist/features/network-modifications/hvdcLine/vsc/common/form/index.js +13 -0
  42. package/dist/features/network-modifications/hvdcLine/vsc/common/form/vscHvdcLine.utils.d.ts +8 -0
  43. package/dist/features/network-modifications/hvdcLine/vsc/common/form/vscHvdcLine.utils.js +34 -0
  44. package/dist/features/network-modifications/hvdcLine/vsc/common/index.d.ts +10 -0
  45. package/dist/features/network-modifications/hvdcLine/vsc/common/index.js +36 -0
  46. package/dist/features/network-modifications/hvdcLine/vsc/common/vscHvdcLine.types.d.ts +52 -0
  47. package/dist/features/network-modifications/hvdcLine/vsc/common/vscHvdcLine.types.js +25 -0
  48. package/dist/features/network-modifications/hvdcLine/vsc/creation/index.d.ts +8 -0
  49. package/dist/features/network-modifications/hvdcLine/vsc/creation/index.js +7 -0
  50. package/dist/features/network-modifications/hvdcLine/vsc/creation/vscHvdcLineCreation.types.d.ts +45 -0
  51. package/dist/features/network-modifications/hvdcLine/vsc/creation/vscHvdcLineCreation.types.js +1 -0
  52. package/dist/features/network-modifications/hvdcLine/vsc/creation/vscHvdcLineCreation.utils.d.ts +159 -0
  53. package/dist/features/network-modifications/hvdcLine/vsc/creation/vscHvdcLineCreation.utils.js +88 -0
  54. package/dist/features/network-modifications/hvdcLine/vsc/index.d.ts +9 -0
  55. package/dist/features/network-modifications/hvdcLine/vsc/index.js +47 -0
  56. package/dist/features/network-modifications/hvdcLine/vsc/modification/index.d.ts +8 -0
  57. package/dist/features/network-modifications/hvdcLine/vsc/modification/index.js +8 -0
  58. package/dist/features/network-modifications/hvdcLine/vsc/modification/vscHvdcLineModification.types.d.ts +49 -0
  59. package/dist/features/network-modifications/hvdcLine/vsc/modification/vscHvdcLineModification.types.js +1 -0
  60. package/dist/features/network-modifications/hvdcLine/vsc/modification/vscHvdcLineModification.utils.d.ts +230 -0
  61. package/dist/features/network-modifications/hvdcLine/vsc/modification/vscHvdcLineModification.utils.js +145 -0
  62. package/dist/features/network-modifications/index.d.ts +1 -0
  63. package/dist/features/network-modifications/index.js +48 -6
  64. package/dist/features/network-modifications/static-var-compensator/common/static-var-compensator-dialog-tabs.js +3 -3
  65. package/dist/hooks/useModificationLabelComputer.js +7 -5
  66. package/dist/index.js +48 -6
  67. package/dist/translations/en/networkModificationsEn.d.ts +23 -4
  68. package/dist/translations/en/networkModificationsEn.js +23 -4
  69. package/dist/translations/fr/networkModificationsFr.d.ts +23 -4
  70. package/dist/translations/fr/networkModificationsFr.js +23 -4
  71. package/dist/utils/constants/fieldConstants.d.ts +15 -0
  72. package/dist/utils/constants/fieldConstants.js +15 -0
  73. package/package.json +1 -1
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@gridsuite/commons-ui",
3
- "version": "0.284.0",
3
+ "version": "0.285.0",
4
4
  "description": "common react components for gridsuite applications",
5
5
  "author": "gridsuite team",
6
6
  "homepage": "https://github.com/gridsuite",