@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.
- package/dist/components/ui/reactHookForm/utils/HelperPreviousValue.js +1 -1
- package/dist/features/index.js +48 -6
- package/dist/features/network-modifications/battery/modification/BatteryDialogTabsContent.d.ts +2 -2
- package/dist/features/network-modifications/common/index.js +2 -5
- package/dist/features/network-modifications/common/measurements/PowerMeasurementsForm.js +3 -9
- package/dist/features/network-modifications/common/measurements/branchActiveReactivePowerForm.utils.d.ts +4 -17
- package/dist/features/network-modifications/common/measurements/branchActiveReactivePowerForm.utils.js +0 -8
- package/dist/features/network-modifications/common/measurements/index.js +1 -2
- package/dist/features/network-modifications/common/measurements/injectionActiveReactivePowerForm.utils.d.ts +6 -9
- package/dist/features/network-modifications/common/measurements/measurement.type.d.ts +7 -1
- package/dist/features/network-modifications/common/measurements/powerWithValidity.utils.d.ts +3 -3
- package/dist/features/network-modifications/common/reactiveLimits/index.js +1 -3
- package/dist/features/network-modifications/common/reactiveLimits/reactiveCapabilityCurve/index.js +1 -3
- package/dist/features/network-modifications/common/reactiveLimits/reactiveCapabilityCurve/reactiveCapability.utils.d.ts +0 -4
- package/dist/features/network-modifications/common/reactiveLimits/reactiveCapabilityCurve/reactiveCapability.utils.js +0 -8
- package/dist/features/network-modifications/common/reactiveLimits/reactiveLimits.type.d.ts +1 -0
- package/dist/features/network-modifications/generator/modification/GeneratorDialogTabsContent.d.ts +2 -2
- package/dist/features/network-modifications/hvdcLine/index.d.ts +7 -0
- package/dist/features/network-modifications/hvdcLine/index.js +47 -0
- package/dist/features/network-modifications/hvdcLine/vsc/common/characteristics/VscHvdcLineCharacteristicsPane.d.ts +8 -0
- package/dist/features/network-modifications/hvdcLine/vsc/common/characteristics/VscHvdcLineCharacteristicsPane.js +235 -0
- package/dist/features/network-modifications/hvdcLine/vsc/common/characteristics/index.d.ts +8 -0
- package/dist/features/network-modifications/hvdcLine/vsc/common/characteristics/index.js +11 -0
- package/dist/features/network-modifications/hvdcLine/vsc/common/characteristics/vscHvdcLineCharacteristicsPane.utils.d.ts +67 -0
- package/dist/features/network-modifications/hvdcLine/vsc/common/characteristics/vscHvdcLineCharacteristicsPane.utils.js +106 -0
- package/dist/features/network-modifications/hvdcLine/vsc/common/converterStation/VscConverterStationPane.d.ts +12 -0
- package/dist/features/network-modifications/hvdcLine/vsc/common/converterStation/VscConverterStationPane.js +198 -0
- package/dist/features/network-modifications/hvdcLine/vsc/common/converterStation/index.d.ts +8 -0
- package/dist/features/network-modifications/hvdcLine/vsc/common/converterStation/index.js +13 -0
- package/dist/features/network-modifications/hvdcLine/vsc/common/converterStation/vscConverterStationPane.utils.d.ts +156 -0
- package/dist/features/network-modifications/hvdcLine/vsc/common/converterStation/vscConverterStationPane.utils.js +199 -0
- package/dist/features/network-modifications/hvdcLine/vsc/common/form/VscHvdcLineDialogHeader.d.ts +6 -0
- package/dist/features/network-modifications/hvdcLine/vsc/common/form/VscHvdcLineDialogHeader.js +106 -0
- package/dist/features/network-modifications/hvdcLine/vsc/common/form/VscHvdcLineDialogTabs.d.ts +9 -0
- package/dist/features/network-modifications/hvdcLine/vsc/common/form/VscHvdcLineDialogTabs.js +129 -0
- package/dist/features/network-modifications/hvdcLine/vsc/common/form/VscHvdcLineDialogTabsContent.d.ts +10 -0
- package/dist/features/network-modifications/hvdcLine/vsc/common/form/VscHvdcLineDialogTabsContent.js +139 -0
- package/dist/features/network-modifications/hvdcLine/vsc/common/form/VscHvdcLineForm.d.ts +11 -0
- package/dist/features/network-modifications/hvdcLine/vsc/common/form/VscHvdcLineForm.js +43 -0
- package/dist/features/network-modifications/hvdcLine/vsc/common/form/index.d.ts +11 -0
- package/dist/features/network-modifications/hvdcLine/vsc/common/form/index.js +13 -0
- package/dist/features/network-modifications/hvdcLine/vsc/common/form/vscHvdcLine.utils.d.ts +8 -0
- package/dist/features/network-modifications/hvdcLine/vsc/common/form/vscHvdcLine.utils.js +34 -0
- package/dist/features/network-modifications/hvdcLine/vsc/common/index.d.ts +10 -0
- package/dist/features/network-modifications/hvdcLine/vsc/common/index.js +36 -0
- package/dist/features/network-modifications/hvdcLine/vsc/common/vscHvdcLine.types.d.ts +52 -0
- package/dist/features/network-modifications/hvdcLine/vsc/common/vscHvdcLine.types.js +25 -0
- package/dist/features/network-modifications/hvdcLine/vsc/creation/index.d.ts +8 -0
- package/dist/features/network-modifications/hvdcLine/vsc/creation/index.js +7 -0
- package/dist/features/network-modifications/hvdcLine/vsc/creation/vscHvdcLineCreation.types.d.ts +45 -0
- package/dist/features/network-modifications/hvdcLine/vsc/creation/vscHvdcLineCreation.types.js +1 -0
- package/dist/features/network-modifications/hvdcLine/vsc/creation/vscHvdcLineCreation.utils.d.ts +159 -0
- package/dist/features/network-modifications/hvdcLine/vsc/creation/vscHvdcLineCreation.utils.js +88 -0
- package/dist/features/network-modifications/hvdcLine/vsc/index.d.ts +9 -0
- package/dist/features/network-modifications/hvdcLine/vsc/index.js +47 -0
- package/dist/features/network-modifications/hvdcLine/vsc/modification/index.d.ts +8 -0
- package/dist/features/network-modifications/hvdcLine/vsc/modification/index.js +8 -0
- package/dist/features/network-modifications/hvdcLine/vsc/modification/vscHvdcLineModification.types.d.ts +49 -0
- package/dist/features/network-modifications/hvdcLine/vsc/modification/vscHvdcLineModification.types.js +1 -0
- package/dist/features/network-modifications/hvdcLine/vsc/modification/vscHvdcLineModification.utils.d.ts +230 -0
- package/dist/features/network-modifications/hvdcLine/vsc/modification/vscHvdcLineModification.utils.js +145 -0
- package/dist/features/network-modifications/index.d.ts +1 -0
- package/dist/features/network-modifications/index.js +48 -6
- package/dist/features/network-modifications/static-var-compensator/common/static-var-compensator-dialog-tabs.js +3 -3
- package/dist/hooks/useModificationLabelComputer.js +7 -5
- package/dist/index.js +48 -6
- package/dist/translations/en/networkModificationsEn.d.ts +23 -4
- package/dist/translations/en/networkModificationsEn.js +23 -4
- package/dist/translations/fr/networkModificationsFr.d.ts +23 -4
- package/dist/translations/fr/networkModificationsFr.js +23 -4
- package/dist/utils/constants/fieldConstants.d.ts +15 -0
- package/dist/utils/constants/fieldConstants.js +15 -0
- package/package.json +1 -1