@gridsuite/commons-ui 0.214.0 → 0.216.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 (1348) hide show
  1. package/README.md +16 -0
  2. package/dist/components/composite/agGridTable/BottomRightButtons.js +62 -0
  3. package/dist/components/composite/agGridTable/CustomAgGridTable.d.ts +8 -0
  4. package/dist/components/composite/agGridTable/CustomAgGridTable.js +200 -0
  5. package/dist/components/composite/agGridTable/csvUploader/CsvUploader.d.ts +15 -0
  6. package/dist/components/composite/agGridTable/csvUploader/CsvUploader.js +182 -0
  7. package/dist/components/composite/customAGGrid/cell-renderers.js +201 -0
  8. package/dist/components/composite/customAGGrid/customAggrid.d.ts +12 -0
  9. package/dist/components/composite/customAGGrid/customAggrid.js +63 -0
  10. package/dist/components/composite/customAGGrid/separatorCellRenderer.js +20 -0
  11. package/dist/components/composite/dnd-table/dnd-table-add-rows-dialog.js +69 -0
  12. package/dist/components/composite/dnd-table/dnd-table-bottom-left-buttons.js +47 -0
  13. package/dist/components/composite/dnd-table/dnd-table-bottom-right-buttons.js +100 -0
  14. package/dist/components/composite/dnd-table/dnd-table.js +435 -0
  15. package/dist/components/composite/dnd-table/dnd-table.type.d.ts +56 -0
  16. package/dist/components/composite/dnd-table-v2/deletable-table-row.js +38 -0
  17. package/dist/components/composite/dnd-table-v2/dnd-table-add-rows-dialog.js +69 -0
  18. package/dist/components/composite/dnd-table-v2/dnd-table-bottom-left-buttons.js +47 -0
  19. package/dist/components/composite/dnd-table-v2/dnd-table-bottom-right-buttons.js +100 -0
  20. package/dist/components/composite/dnd-table-v2/dnd-table-row.js +183 -0
  21. package/dist/components/composite/dnd-table-v2/dnd-table.js +375 -0
  22. package/dist/components/composite/dnd-table-v2/dnd-table.type.d.ts +70 -0
  23. package/dist/components/composite/elementSearch/elementItem/EquipmentItem.d.ts +24 -0
  24. package/dist/components/composite/elementSearch/elementItem/EquipmentItem.js +56 -0
  25. package/dist/components/composite/elementSearch/hooks/useElementSearch.js +67 -0
  26. package/dist/components/composite/elementSearch/tagRenderer/TagRenderer.d.ts +14 -0
  27. package/dist/components/composite/elementSearch/tagRenderer/TagRenderer.js +20 -0
  28. package/dist/components/composite/filter/FilterCreationDialog.d.ts +18 -0
  29. package/dist/components/composite/filter/FilterCreationDialog.js +126 -0
  30. package/dist/components/composite/filter/FilterForm.js +44 -0
  31. package/dist/components/composite/filter/HeaderFilterForm.d.ts +26 -0
  32. package/dist/components/composite/filter/HeaderFilterForm.js +71 -0
  33. package/dist/components/composite/filter/expert/ExpertFilterEditionDialog.js +112 -0
  34. package/dist/components/composite/filter/expert/ExpertFilterForm.d.ts +21 -0
  35. package/dist/components/composite/filter/expert/ExpertFilterForm.js +117 -0
  36. package/dist/components/composite/filter/expert/expertFilter.type.d.ts +75 -0
  37. package/dist/components/composite/filter/expert/expertFilterConstants.d.ts +1154 -0
  38. package/dist/components/composite/filter/expert/expertFilterConstants.js +1453 -0
  39. package/dist/components/composite/filter/expert/expertFilterUtils.js +373 -0
  40. package/dist/components/composite/filter/explicitNaming/ExplicitNamingFilterEditionDialog.js +122 -0
  41. package/dist/components/composite/filter/explicitNaming/ExplicitNamingFilterForm.d.ts +28 -0
  42. package/dist/components/composite/filter/explicitNaming/ExplicitNamingFilterForm.js +243 -0
  43. package/dist/components/composite/filter/filter.type.d.ts +57 -0
  44. package/dist/components/composite/filter/utils/filterApi.js +110 -0
  45. package/dist/components/composite/filter/utils/filterFormUtils.d.ts +7 -0
  46. package/dist/components/composite/filter/utils/filterFormUtils.js +59 -0
  47. package/dist/components/composite/flatParameters/FlatParameters.js +366 -0
  48. package/dist/components/composite/grid/grid-item.js +9 -0
  49. package/dist/components/composite/grid/grid-section.d.ts +8 -0
  50. package/dist/components/composite/index.d.ts +15 -0
  51. package/dist/components/composite/index.js +146 -0
  52. package/dist/components/composite/muiTable/OverflowableTableCell.d.ts +3 -0
  53. package/dist/components/composite/muiTable/OverflowableTableCell.js +10 -0
  54. package/dist/components/composite/muiTable/OverflowableTableCellWithCheckbox.d.ts +6 -0
  55. package/dist/components/composite/muiTable/OverflowableTableCellWithCheckbox.js +16 -0
  56. package/dist/components/composite/reactQueryBuilder/CombinatorSelector.js +40 -0
  57. package/dist/components/composite/reactQueryBuilder/CountryValueEditor.js +49 -0
  58. package/dist/components/composite/reactQueryBuilder/CustomReactQueryBuilder.js +105 -0
  59. package/dist/components/composite/reactQueryBuilder/ElementValueEditor.js +46 -0
  60. package/dist/components/composite/reactQueryBuilder/OperatorSelector.js +24 -0
  61. package/dist/components/composite/reactQueryBuilder/PropertyValueEditor.js +102 -0
  62. package/dist/components/composite/reactQueryBuilder/RemoveButton.js +19 -0
  63. package/dist/components/composite/reactQueryBuilder/ValueEditor.js +96 -0
  64. package/dist/components/composite/reactQueryBuilder/compositeRuleEditor/GroupValueEditor.d.ts +3 -0
  65. package/dist/components/composite/reactQueryBuilder/compositeRuleEditor/RuleValueEditor.d.ts +8 -0
  66. package/dist/components/composite/reactQueryBuilder/hooks/useConvertValue.js +19 -0
  67. package/dist/components/index.d.ts +1 -17
  68. package/dist/components/index.js +58 -670
  69. package/dist/components/ui/checkBoxList/CheckBoxListItem.js +0 -1
  70. package/dist/components/ui/checkBoxList/CheckBoxListItemContent.js +0 -1
  71. package/dist/components/ui/checkBoxList/DraggableCheckBoxListItem.js +0 -1
  72. package/dist/components/ui/checkBoxList/DraggableCheckBoxListItemContent.js +0 -1
  73. package/dist/components/ui/csvDownloader/use-csv-export.js +0 -1
  74. package/dist/components/ui/dialogs/descriptionModificationDialog/DescriptionModificationDialog.js +1 -2
  75. package/dist/components/ui/dialogs/elementSaveDialog/ElementSaveDialog.js +2 -8
  76. package/dist/components/ui/dialogs/elementSaveDialog/utils.js +1 -1
  77. package/dist/components/ui/dialogs/modifyElementSelection/ModifyElementSelection.js +1 -2
  78. package/dist/components/ui/directoryItemSelector/DirectoryItemSelector.d.ts +11 -0
  79. package/dist/components/ui/directoryItemSelector/DirectoryItemSelector.js +304 -0
  80. package/dist/components/ui/directoryItemSelector/utils.d.ts +55 -0
  81. package/dist/components/ui/directoryItemSelector/utils.js +101 -0
  82. package/dist/components/ui/index.d.ts +2 -2
  83. package/dist/components/ui/index.js +8 -45
  84. package/dist/components/ui/overflowableText/OverflowableText.js +0 -1
  85. package/dist/components/ui/reactHookForm/CountrySelectionInput.js +0 -1
  86. package/dist/components/ui/reactHookForm/DirectoryItemsInput.js +1 -2
  87. package/dist/components/ui/reactHookForm/OverflowableChipWithHelperText.js +0 -1
  88. package/dist/components/ui/reactHookForm/chip-items-input.js +0 -1
  89. package/dist/components/ui/reactHookForm/index.d.ts +0 -1
  90. package/dist/components/ui/reactHookForm/index.js +0 -8
  91. package/dist/components/ui/reactHookForm/numbers/RangeInput.d.ts +2 -2
  92. package/dist/components/ui/reactHookForm/numbers/RangeInput.js +1 -2
  93. package/dist/components/ui/reactHookForm/tableInputs/table-numerical-input.js +0 -1
  94. package/dist/components/ui/reactHookForm/text/DescriptionField.js +0 -1
  95. package/dist/components/ui/treeViewFinder/TreeViewFinder.d.ts +39 -0
  96. package/dist/components/ui/treeViewFinder/TreeViewFinder.js +343 -0
  97. package/dist/components/ui/treeViewFinder/TreeViewUtils.d.ts +2 -0
  98. package/dist/configureYup.d.ts +1 -0
  99. package/dist/configureYup.js +22 -0
  100. package/dist/features/announcement/AnnouncementBanner.d.ts +15 -0
  101. package/dist/features/announcement/AnnouncementBanner.js +88 -0
  102. package/dist/features/announcement/useGlobalAnnouncement.d.ts +10 -0
  103. package/dist/features/announcement/useGlobalAnnouncement.js +48 -0
  104. package/dist/features/index.d.ts +15 -0
  105. package/dist/features/index.js +655 -0
  106. package/dist/features/network-modification-table/network-modifications-table.js +216 -0
  107. package/dist/features/network-modification-table/renderers/description-cell.js +74 -0
  108. package/dist/features/network-modification-table/renderers/name-cell.js +220 -0
  109. package/dist/features/network-modification-table/renderers/root-network-chip-cell.js +113 -0
  110. package/dist/features/network-modification-table/renderers/switch-cell.js +62 -0
  111. package/dist/features/network-modification-table/row/drag-row-clone.js +34 -0
  112. package/dist/features/network-modification-table/row/modification-row.js +106 -0
  113. package/dist/features/network-modification-table/use-modifications-drag-and-drop.js +192 -0
  114. package/dist/features/network-modification-table/utils.js +165 -0
  115. package/dist/features/network-modifications/battery/creation/BatteryCreationForm.js +121 -0
  116. package/dist/features/network-modifications/battery/creation/batteryCreation.utils.js +160 -0
  117. package/dist/features/network-modifications/by-filter/assignment/assignment/assignment-constants.js +401 -0
  118. package/dist/features/network-modifications/by-filter/assignment/assignment/assignment-form.js +232 -0
  119. package/dist/features/network-modifications/by-filter/assignment/assignment/assignment-utils.d.ts +28 -0
  120. package/dist/features/network-modifications/by-filter/assignment/assignment/assignment-utils.js +91 -0
  121. package/dist/features/network-modifications/by-filter/assignment/modification-by-assignment-form.js +82 -0
  122. package/dist/features/network-modifications/by-filter/assignment/modificationByAssignment.utils.d.ts +28 -0
  123. package/dist/features/network-modifications/by-filter/assignment/modificationByAssignment.utils.js +53 -0
  124. package/dist/features/network-modifications/by-filter/deletion/ByFilterDeletionForm.js +75 -0
  125. package/dist/features/network-modifications/by-filter/deletion/byFilterDeletion.utils.d.ts +24 -0
  126. package/dist/features/network-modifications/by-filter/deletion/byFilterDeletion.utils.js +51 -0
  127. package/dist/features/network-modifications/common/activePowerControl/ActivePowerControlForm.js +92 -0
  128. package/dist/features/network-modifications/common/activePowerControl/activePowerControlForm.utils.js +24 -0
  129. package/dist/features/network-modifications/common/connectivity/BranchConnectivityForm.js +56 -0
  130. package/dist/features/network-modifications/common/connectivity/ConnectivityForm.js +110 -0
  131. package/dist/features/network-modifications/common/connectivity/PositionForm.js +106 -0
  132. package/dist/features/network-modifications/common/connectivity/VoltageLevelConnectivityForm.js +158 -0
  133. package/dist/features/network-modifications/common/connectivity/connectivityForm.utils.js +195 -0
  134. package/dist/features/network-modifications/common/index.d.ts +16 -0
  135. package/dist/features/network-modifications/common/index.js +131 -0
  136. package/dist/features/network-modifications/common/measurements/BranchActiveReactivePowerMeasurementsForm.js +31 -0
  137. package/dist/features/network-modifications/common/measurements/BusbarSectionVoltageMeasurementsForm.d.ts +10 -0
  138. package/dist/features/network-modifications/common/measurements/BusbarSectionVoltageMeasurementsForm.js +99 -0
  139. package/dist/features/network-modifications/common/measurements/PowerMeasurementsForm.js +50 -0
  140. package/dist/features/network-modifications/common/measurements/PowerWithValidityForm.js +66 -0
  141. package/dist/features/network-modifications/common/measurements/branchActiveReactivePowerForm.utils.js +68 -0
  142. package/dist/features/network-modifications/common/measurements/index.d.ts +14 -0
  143. package/dist/features/network-modifications/common/measurements/index.js +28 -0
  144. package/dist/features/network-modifications/common/measurements/injectionActiveReactivePowerForm.utils.js +54 -0
  145. package/dist/features/network-modifications/common/measurements/powerWithValidity.utils.js +35 -0
  146. package/dist/features/network-modifications/common/properties/PropertiesForm.js +107 -0
  147. package/dist/features/network-modifications/common/properties/PropertyForm.js +94 -0
  148. package/dist/features/network-modifications/common/properties/propertyUtils.js +160 -0
  149. package/dist/features/network-modifications/common/reactiveLimits/ReactiveLimitsForm.js +96 -0
  150. package/dist/features/network-modifications/common/reactiveLimits/reactiveCapabilityCurve/ReactiveCapabilityCurveRowForm.js +95 -0
  151. package/dist/features/network-modifications/common/reactiveLimits/reactiveCapabilityCurve/ReactiveCapabilityCurveTableForm.js +112 -0
  152. package/dist/features/network-modifications/common/reactiveLimits/reactiveCapabilityCurve/reactiveCapability.utils.js +153 -0
  153. package/dist/features/network-modifications/common/reactiveLimits/reactiveLimits.utils.js +98 -0
  154. package/dist/features/network-modifications/common/regulatingTerminal/RegulatingTerminalForm.d.ts +16 -0
  155. package/dist/features/network-modifications/common/regulatingTerminal/RegulatingTerminalForm.js +160 -0
  156. package/dist/features/network-modifications/common/regulatingTerminal/index.d.ts +8 -0
  157. package/dist/features/network-modifications/common/regulatingTerminal/index.js +9 -0
  158. package/dist/features/network-modifications/common/regulatingTerminal/regulatingTerminal.utils.d.ts +55 -0
  159. package/dist/features/network-modifications/common/regulatingTerminal/regulatingTerminal.utils.js +71 -0
  160. package/dist/features/network-modifications/common/setpoints/SetPointsForm.js +63 -0
  161. package/dist/features/network-modifications/common/setpoints/setPoints.utils.js +62 -0
  162. package/dist/features/network-modifications/common/shortCircuit/ShortCircuitForm.js +62 -0
  163. package/dist/features/network-modifications/common/shortCircuit/shortCircuitForm.utils.js +35 -0
  164. package/dist/features/network-modifications/common/voltageRegulation/VoltageRegulationForm.d.ts +17 -0
  165. package/dist/features/network-modifications/common/voltageRegulation/VoltageRegulationForm.js +115 -0
  166. package/dist/features/network-modifications/common/voltageRegulation/index.d.ts +8 -0
  167. package/dist/features/network-modifications/common/voltageRegulation/index.js +8 -0
  168. package/dist/features/network-modifications/common/voltageRegulation/voltageRegulation.utils.d.ts +52 -0
  169. package/dist/features/network-modifications/common/voltageRegulation/voltageRegulation.utils.js +54 -0
  170. package/dist/features/network-modifications/equipmentDeletion/EquipmentDeletionForm.js +188 -0
  171. package/dist/features/network-modifications/equipmentDeletion/equipmentDeletion.utils.js +72 -0
  172. package/dist/features/network-modifications/equipmentDeletion/hvdcLccDeletion/HvdcLccDeletionSpecificForm.js +41 -0
  173. package/dist/features/network-modifications/equipmentDeletion/hvdcLccDeletion/ShuntCompensatorSelectionForm.js +54 -0
  174. package/dist/features/network-modifications/equipmentDeletion/hvdcLccDeletion/hvdcLccDeletion.utils.js +20 -0
  175. package/dist/features/network-modifications/equipmentDeletion/hvdcLccDeletion/useHvdcLccDeletion.js +84 -0
  176. package/dist/features/network-modifications/index.js +283 -0
  177. package/dist/features/network-modifications/load/common/LoadDialogHeader.js +107 -0
  178. package/dist/features/network-modifications/load/common/LoadDialogTabsContent.js +63 -0
  179. package/dist/features/network-modifications/load/common/load.utils.js +33 -0
  180. package/dist/features/network-modifications/load/creation/loadCreation.utils.js +92 -0
  181. package/dist/features/network-modifications/load/modification/loadModification.utils.js +124 -0
  182. package/dist/features/network-modifications/shunt-compensator/common/CharacteristicsForm.js +192 -0
  183. package/dist/features/network-modifications/shunt-compensator/common/characteristicsForm.utils.js +88 -0
  184. package/dist/features/network-modifications/shunt-compensator/creation/ShuntCompensatorCreationForm.js +98 -0
  185. package/dist/features/network-modifications/shunt-compensator/creation/shuntCompensatorCreation.utils.js +118 -0
  186. package/dist/features/network-modifications/substation/creation/SubstationCreationForm.js +79 -0
  187. package/dist/features/network-modifications/substation/creation/substationCreation.utils.js +43 -0
  188. package/dist/features/network-modifications/substation/modification/SubstationModificationForm.js +103 -0
  189. package/dist/features/network-modifications/substation/modification/substationModification.utils.d.ts +30 -0
  190. package/dist/features/network-modifications/substation/modification/substationModification.utils.js +41 -0
  191. package/dist/features/network-modifications/voltageLevel/creation/VoltageLevelCreationForm.js +144 -0
  192. package/dist/features/network-modifications/voltageLevel/creation/index.js +73 -0
  193. package/dist/features/network-modifications/voltageLevel/creation/tabs/characteristicsTab/CharacteristicsTab.js +87 -0
  194. package/dist/features/network-modifications/voltageLevel/creation/tabs/structureTab/StructureTab.js +58 -0
  195. package/dist/features/network-modifications/voltageLevel/creation/tabs/structureTab/couplingOmnibus/CouplingOmnibusCreation.js +53 -0
  196. package/dist/features/network-modifications/voltageLevel/creation/tabs/structureTab/couplingOmnibus/CouplingOmnibusForm.js +93 -0
  197. package/dist/features/network-modifications/voltageLevel/creation/tabs/structureTab/switchesBetweenSections/SwitchesBetweenSections.js +94 -0
  198. package/dist/features/network-modifications/voltageLevel/creation/tabs/substationTab/SubstationCreationSection.js +78 -0
  199. package/dist/features/network-modifications/voltageLevel/creation/tabs/substationTab/SubstationTab.js +77 -0
  200. package/dist/features/network-modifications/voltageLevel/creation/voltageLevel.constants.js +58 -0
  201. package/dist/features/network-modifications/voltageLevel/creation/voltageLevelCreation.utils.js +266 -0
  202. package/dist/features/network-modifications/voltageLevel/index.js +83 -0
  203. package/dist/features/network-modifications/voltageLevel/modification/VoltageLevelModificationForm.d.ts +7 -0
  204. package/dist/features/network-modifications/voltageLevel/modification/VoltageLevelModificationForm.js +220 -0
  205. package/dist/features/network-modifications/voltageLevel/modification/index.js +12 -0
  206. package/dist/features/network-modifications/voltageLevel/modification/voltageLevelModification.types.d.ts +41 -0
  207. package/dist/features/network-modifications/voltageLevel/modification/voltageLevelModification.utils.d.ts +82 -0
  208. package/dist/features/network-modifications/voltageLevel/modification/voltageLevelModification.utils.js +105 -0
  209. package/dist/features/node/build-status-chip.js +84 -0
  210. package/dist/features/parameters/common/ProviderParam.js +51 -0
  211. package/dist/features/parameters/common/contingency-table/columns-definitions.d.ts +28 -0
  212. package/dist/features/parameters/common/contingency-table/columns-definitions.js +106 -0
  213. package/dist/features/parameters/common/contingency-table/contingency-table.d.ts +13 -0
  214. package/dist/features/parameters/common/contingency-table/contingency-table.js +140 -0
  215. package/dist/features/parameters/common/hook/use-parameters-form.js +59 -0
  216. package/dist/features/parameters/common/limitreductions/columns-definitions.d.ts +62 -0
  217. package/dist/features/parameters/common/limitreductions/columns-definitions.js +72 -0
  218. package/dist/features/parameters/common/limitreductions/limit-reduction-table-cell.js +58 -0
  219. package/dist/features/parameters/common/limitreductions/limit-reductions-table-form.js +64 -0
  220. package/dist/features/parameters/common/name-element-editor/name-element-editor-form.js +33 -0
  221. package/dist/features/parameters/common/name-element-editor/name-element-editor-utils.d.ts +18 -0
  222. package/dist/features/parameters/common/name-element-editor/name-element-editor-utils.js +50 -0
  223. package/dist/features/parameters/common/parameter-field.js +105 -0
  224. package/dist/features/parameters/common/parameter-table/parameter-table.js +98 -0
  225. package/dist/features/parameters/common/parameter-table/table-cell.js +83 -0
  226. package/dist/features/parameters/common/parameter-table/table-row.js +41 -0
  227. package/dist/features/parameters/common/parameter-table-field/parameter-table-field.d.ts +11 -0
  228. package/dist/features/parameters/common/parameter-table-field/parameter-table-field.js +115 -0
  229. package/dist/features/parameters/common/parameters-creation-dialog.js +86 -0
  230. package/dist/features/parameters/common/utils.d.ts +23 -0
  231. package/dist/features/parameters/common/utils.js +88 -0
  232. package/dist/features/parameters/common/voltage-level-table/custom-voltage-level-table-cell.js +42 -0
  233. package/dist/features/parameters/common/voltage-level-table/custom-voltage-level-table.js +61 -0
  234. package/dist/features/parameters/common/widget/parameter-float.js +52 -0
  235. package/dist/features/parameters/common/widget/parameter-line-directory-items-input.js +59 -0
  236. package/dist/features/parameters/common/widget/parameter-line-slider.js +71 -0
  237. package/dist/features/parameters/dynamic-margin-calculation/dynamic-margin-calculation-form.js +98 -0
  238. package/dist/features/parameters/dynamic-margin-calculation/dynamic-margin-calculation-inline.js +177 -0
  239. package/dist/features/parameters/dynamic-margin-calculation/loads-variations-parameters.d.ts +29 -0
  240. package/dist/features/parameters/dynamic-margin-calculation/loads-variations-parameters.js +150 -0
  241. package/dist/features/parameters/dynamic-margin-calculation/time-delay-parameters.d.ts +30 -0
  242. package/dist/features/parameters/dynamic-margin-calculation/time-delay-parameters.js +61 -0
  243. package/dist/features/parameters/dynamic-margin-calculation/use-dynamic-margin-calculation-parameters-form.js +94 -0
  244. package/dist/features/parameters/dynamic-security-analysis/contingency-parameters.js +67 -0
  245. package/dist/features/parameters/dynamic-security-analysis/dynamic-security-analysis-inline.js +129 -0
  246. package/dist/features/parameters/dynamic-security-analysis/dynamic-security-analysis-parameters-form.js +99 -0
  247. package/dist/features/parameters/dynamic-security-analysis/scenario-parameters.js +24 -0
  248. package/dist/features/parameters/dynamic-security-analysis/use-dynamic-security-analysis-parameters-form.d.ts +46 -0
  249. package/dist/features/parameters/dynamic-security-analysis/use-dynamic-security-analysis-parameters-form.js +99 -0
  250. package/dist/features/parameters/dynamic-simulation/curve/common/grid-buttons.js +38 -0
  251. package/dist/features/parameters/dynamic-simulation/curve/curve-parameters-utils.d.ts +18 -0
  252. package/dist/features/parameters/dynamic-simulation/curve/curve-parameters-utils.js +17 -0
  253. package/dist/features/parameters/dynamic-simulation/curve/curve-parameters.d.ts +11 -0
  254. package/dist/features/parameters/dynamic-simulation/curve/curve-parameters.js +176 -0
  255. package/dist/features/parameters/dynamic-simulation/curve/dialog/curve-preview.js +122 -0
  256. package/dist/features/parameters/dynamic-simulation/curve/dialog/curve-selector-dialog.d.ts +15 -0
  257. package/dist/features/parameters/dynamic-simulation/curve/dialog/curve-selector-dialog.js +125 -0
  258. package/dist/features/parameters/dynamic-simulation/curve/dialog/curve-selector-utils.d.ts +20 -0
  259. package/dist/features/parameters/dynamic-simulation/curve/dialog/curve-selector-utils.js +283 -0
  260. package/dist/features/parameters/dynamic-simulation/curve/dialog/curve-selector.d.ts +16 -0
  261. package/dist/features/parameters/dynamic-simulation/curve/dialog/equipment-filter.d.ts +14 -0
  262. package/dist/features/parameters/dynamic-simulation/curve/dialog/equipment-filter.js +238 -0
  263. package/dist/features/parameters/dynamic-simulation/dynamic-simulation-inline.d.ts +15 -0
  264. package/dist/features/parameters/dynamic-simulation/dynamic-simulation-inline.js +186 -0
  265. package/dist/features/parameters/dynamic-simulation/dynamic-simulation-parameters-form.d.ts +15 -0
  266. package/dist/features/parameters/dynamic-simulation/dynamic-simulation-parameters-form.js +147 -0
  267. package/dist/features/parameters/dynamic-simulation/mapping/mapping-parameters-utils.d.ts +15 -0
  268. package/dist/features/parameters/dynamic-simulation/mapping/mapping-parameters-utils.js +12 -0
  269. package/dist/features/parameters/dynamic-simulation/mapping/mapping-parameters.js +51 -0
  270. package/dist/features/parameters/dynamic-simulation/network/network-parameters-utils.d.ts +72 -0
  271. package/dist/features/parameters/dynamic-simulation/network/network-parameters-utils.js +50 -0
  272. package/dist/features/parameters/dynamic-simulation/network/network-parameters.js +119 -0
  273. package/dist/features/parameters/dynamic-simulation/solver/common-solver/common-solver-parameters-utils.d.ts +32 -0
  274. package/dist/features/parameters/dynamic-simulation/solver/common-solver/common-solver-parameters-utils.js +32 -0
  275. package/dist/features/parameters/dynamic-simulation/solver/common-solver/common-solver-parameters.js +133 -0
  276. package/dist/features/parameters/dynamic-simulation/solver/ida-solver/ida-solver-parameters-utils.d.ts +68 -0
  277. package/dist/features/parameters/dynamic-simulation/solver/ida-solver/ida-solver-parameters-utils.js +16 -0
  278. package/dist/features/parameters/dynamic-simulation/solver/ida-solver/ida-solver-parameters.js +53 -0
  279. package/dist/features/parameters/dynamic-simulation/solver/sim-solver/simplified-solver-parameters-utils.d.ts +92 -0
  280. package/dist/features/parameters/dynamic-simulation/solver/sim-solver/simplified-solver-parameters-utils.js +30 -0
  281. package/dist/features/parameters/dynamic-simulation/solver/sim-solver/simplified-solver-parameters.js +113 -0
  282. package/dist/features/parameters/dynamic-simulation/solver/solver-parameters-utils.d.ts +18 -0
  283. package/dist/features/parameters/dynamic-simulation/solver/solver-parameters-utils.js +37 -0
  284. package/dist/features/parameters/dynamic-simulation/solver/solver-parameters.js +52 -0
  285. package/dist/features/parameters/dynamic-simulation/time-delay/time-delay-parameters-utils.d.ts +18 -0
  286. package/dist/features/parameters/dynamic-simulation/time-delay/time-delay-parameters-utils.js +20 -0
  287. package/dist/features/parameters/dynamic-simulation/time-delay/time-delay-parameters.js +29 -0
  288. package/dist/features/parameters/dynamic-simulation/use-dynamic-simulation-parameters-form.js +116 -0
  289. package/dist/features/parameters/loadflow/load-flow-general-parameters.js +180 -0
  290. package/dist/features/parameters/loadflow/load-flow-parameters-content.js +79 -0
  291. package/dist/features/parameters/loadflow/load-flow-parameters-dialog.js +106 -0
  292. package/dist/features/parameters/loadflow/load-flow-parameters-form.js +104 -0
  293. package/dist/features/parameters/loadflow/load-flow-parameters-header.js +96 -0
  294. package/dist/features/parameters/loadflow/load-flow-parameters-inline.js +195 -0
  295. package/dist/features/parameters/loadflow/load-flow-parameters-utils.d.ts +82 -0
  296. package/dist/features/parameters/loadflow/load-flow-parameters-utils.js +107 -0
  297. package/dist/features/parameters/loadflow/use-load-flow-parameters-form.d.ts +31 -0
  298. package/dist/features/parameters/loadflow/use-load-flow-parameters-form.js +250 -0
  299. package/dist/features/parameters/network-visualizations/map-parameters.js +112 -0
  300. package/dist/features/parameters/network-visualizations/network-area-diagram-parameters.js +60 -0
  301. package/dist/features/parameters/network-visualizations/network-visualizations-form.js +104 -0
  302. package/dist/features/parameters/network-visualizations/network-visualizations-parameters-dialog.js +99 -0
  303. package/dist/features/parameters/network-visualizations/network-visualizations-parameters-inline.js +133 -0
  304. package/dist/features/parameters/network-visualizations/single-line-diagram-parameters.js +102 -0
  305. package/dist/features/parameters/network-visualizations/use-network-visualizations-parameters-form.d.ts +30 -0
  306. package/dist/features/parameters/network-visualizations/use-network-visualizations-parameters-form.js +154 -0
  307. package/dist/features/parameters/pcc-min/pcc-min-form-utils.js +58 -0
  308. package/dist/features/parameters/pcc-min/pcc-min-parameters-dialog.js +97 -0
  309. package/dist/features/parameters/pcc-min/pcc-min-parameters-form.js +116 -0
  310. package/dist/features/parameters/pcc-min/pcc-min-parameters-inline.js +162 -0
  311. package/dist/features/parameters/pcc-min/use-pcc-min-parameters-form.d.ts +26 -0
  312. package/dist/features/parameters/pcc-min/use-pcc-min-parameters-form.js +134 -0
  313. package/dist/features/parameters/security-analysis/columns-definitions.d.ts +69 -0
  314. package/dist/features/parameters/security-analysis/columns-definitions.js +74 -0
  315. package/dist/features/parameters/security-analysis/security-analysis-parameters-dialog.js +115 -0
  316. package/dist/features/parameters/security-analysis/security-analysis-parameters-form.d.ts +16 -0
  317. package/dist/features/parameters/security-analysis/security-analysis-parameters-form.js +159 -0
  318. package/dist/features/parameters/security-analysis/security-analysis-parameters-inline.js +187 -0
  319. package/dist/features/parameters/security-analysis/security-analysis-parameters-selector.js +83 -0
  320. package/dist/features/parameters/security-analysis/security-analysis-violations-hiding.js +140 -0
  321. package/dist/features/parameters/security-analysis/use-security-analysis-parameters-form.js +187 -0
  322. package/dist/features/parameters/sensi/columns-definitions.d.ts +31 -0
  323. package/dist/features/parameters/sensi/columns-definitions.js +344 -0
  324. package/dist/features/parameters/sensi/sensitivity-analysis-parameters-dialog.js +121 -0
  325. package/dist/features/parameters/sensi/sensitivity-analysis-parameters-form.js +134 -0
  326. package/dist/features/parameters/sensi/sensitivity-analysis-parameters-inline.js +191 -0
  327. package/dist/features/parameters/sensi/sensitivity-parameters-fields.js +72 -0
  328. package/dist/features/parameters/sensi/sensitivity-parameters-selector.js +258 -0
  329. package/dist/features/parameters/sensi/use-sensitivity-analysis-parameters.js +379 -0
  330. package/dist/features/parameters/sensi/utils.d.ts +411 -0
  331. package/dist/features/parameters/sensi/utils.js +364 -0
  332. package/dist/features/parameters/short-circuit/columns-definition.js +126 -0
  333. package/dist/features/parameters/short-circuit/short-circuit-general-tab-panel.js +211 -0
  334. package/dist/features/parameters/short-circuit/short-circuit-icc-cluster-table-cell.js +70 -0
  335. package/dist/features/parameters/short-circuit/short-circuit-icc-cluster-table-row.js +36 -0
  336. package/dist/features/parameters/short-circuit/short-circuit-icc-cluster-table.js +60 -0
  337. package/dist/features/parameters/short-circuit/short-circuit-icc-material-table-cell.js +48 -0
  338. package/dist/features/parameters/short-circuit/short-circuit-icc-material-table.js +43 -0
  339. package/dist/features/parameters/short-circuit/short-circuit-parameters-content.js +103 -0
  340. package/dist/features/parameters/short-circuit/short-circuit-parameters-dialog.js +106 -0
  341. package/dist/features/parameters/short-circuit/short-circuit-parameters-form.js +66 -0
  342. package/dist/features/parameters/short-circuit/short-circuit-parameters-inline.js +172 -0
  343. package/dist/features/parameters/short-circuit/short-circuit-parameters-utils.d.ts +46 -0
  344. package/dist/features/parameters/short-circuit/short-circuit-parameters-utils.js +294 -0
  345. package/dist/features/parameters/short-circuit/short-circuit-power-electronics-tab-panel.js +93 -0
  346. package/dist/features/parameters/short-circuit/short-circuit-study-area-tab-panel.js +141 -0
  347. package/dist/features/parameters/short-circuit/use-short-circuit-parameters-form.d.ts +33 -0
  348. package/dist/features/parameters/short-circuit/use-short-circuit-parameters-form.js +245 -0
  349. package/dist/features/parameters/voltage-init/equipment-selection-parameters.js +121 -0
  350. package/dist/features/parameters/voltage-init/general-parameters.js +114 -0
  351. package/dist/features/parameters/voltage-init/use-voltage-init-parameters-form.d.ts +32 -0
  352. package/dist/features/parameters/voltage-init/use-voltage-init-parameters-form.js +212 -0
  353. package/dist/features/parameters/voltage-init/voltage-init-form-utils.js +213 -0
  354. package/dist/features/parameters/voltage-init/voltage-init-parameters-dialog.js +97 -0
  355. package/dist/features/parameters/voltage-init/voltage-init-parameters-form.js +152 -0
  356. package/dist/features/parameters/voltage-init/voltage-init-parameters-inline.js +171 -0
  357. package/dist/features/parameters/voltage-init/voltage-limits-parameters.js +170 -0
  358. package/dist/features/topBar/AboutDialog.js +349 -0
  359. package/dist/features/topBar/UserInformationDialog.js +75 -0
  360. package/dist/hooks/use-parameters-backend.d.ts +1 -1
  361. package/dist/hooks/use-parameters-backend.js +1 -1
  362. package/dist/hooks/use-unique-name-validation.js +0 -1
  363. package/dist/hooks/useConfidentialityWarning.js +0 -1
  364. package/dist/hooks/useGetLabelEquipmentTypes.js +0 -1
  365. package/dist/hooks/useModificationLabelComputer.js +0 -1
  366. package/dist/hooks/usePredefinedProperties.js +0 -1
  367. package/dist/index.d.ts +1 -0
  368. package/dist/index.js +229 -214
  369. package/dist/services/config.js +0 -1
  370. package/dist/services/explore.d.ts +1 -1
  371. package/dist/services/security-analysis.d.ts +1 -1
  372. package/dist/services/security-analysis.js +1 -1
  373. package/dist/services/sensitivity-analysis.js +0 -1
  374. package/dist/services/short-circuit-analysis.d.ts +1 -1
  375. package/dist/services/study-config.d.ts +1 -1
  376. package/dist/services/study.d.ts +3 -3
  377. package/dist/services/voltage-init.d.ts +1 -1
  378. package/dist/translations/en/networkModificationsEn.d.ts +7 -0
  379. package/dist/translations/en/networkModificationsEn.js +7 -1
  380. package/dist/translations/fr/networkModificationsFr.d.ts +7 -0
  381. package/dist/translations/fr/networkModificationsFr.js +7 -1
  382. package/dist/utils/index.d.ts +0 -1
  383. package/dist/utils/index.js +1 -4
  384. package/dist/utils/types/loadflow.type.d.ts +1 -1
  385. package/dist/utils/types/parameters.type.d.ts +4 -4
  386. package/package.json +13 -5
  387. package/dist/components/customAGGrid/cell-renderers.js +0 -202
  388. package/dist/components/customAGGrid/customAggrid.d.ts +0 -12
  389. package/dist/components/customAGGrid/customAggrid.js +0 -63
  390. package/dist/components/customAGGrid/separatorCellRenderer.js +0 -21
  391. package/dist/components/directoryItemSelector/DirectoryItemSelector.d.ts +0 -11
  392. package/dist/components/directoryItemSelector/DirectoryItemSelector.js +0 -305
  393. package/dist/components/directoryItemSelector/utils.d.ts +0 -55
  394. package/dist/components/directoryItemSelector/utils.js +0 -102
  395. package/dist/components/dnd-table/dnd-table-add-rows-dialog.js +0 -82
  396. package/dist/components/dnd-table/dnd-table-bottom-left-buttons.js +0 -47
  397. package/dist/components/dnd-table/dnd-table-bottom-right-buttons.js +0 -100
  398. package/dist/components/dnd-table/dnd-table.js +0 -448
  399. package/dist/components/dnd-table/dnd-table.type.d.ts +0 -56
  400. package/dist/components/dnd-table-v2/deletable-table-row.js +0 -38
  401. package/dist/components/dnd-table-v2/dnd-table-add-rows-dialog.js +0 -82
  402. package/dist/components/dnd-table-v2/dnd-table-bottom-left-buttons.js +0 -47
  403. package/dist/components/dnd-table-v2/dnd-table-bottom-right-buttons.js +0 -100
  404. package/dist/components/dnd-table-v2/dnd-table-row.js +0 -196
  405. package/dist/components/dnd-table-v2/dnd-table.js +0 -388
  406. package/dist/components/dnd-table-v2/dnd-table.type.d.ts +0 -70
  407. package/dist/components/elementSearch/elementItem/EquipmentItem.d.ts +0 -24
  408. package/dist/components/elementSearch/elementItem/EquipmentItem.js +0 -56
  409. package/dist/components/elementSearch/hooks/useElementSearch.js +0 -67
  410. package/dist/components/elementSearch/tagRenderer/TagRenderer.d.ts +0 -14
  411. package/dist/components/elementSearch/tagRenderer/TagRenderer.js +0 -20
  412. package/dist/components/filter/FilterCreationDialog.d.ts +0 -18
  413. package/dist/components/filter/FilterCreationDialog.js +0 -127
  414. package/dist/components/filter/FilterForm.js +0 -45
  415. package/dist/components/filter/HeaderFilterForm.d.ts +0 -26
  416. package/dist/components/filter/HeaderFilterForm.js +0 -84
  417. package/dist/components/filter/expert/ExpertFilterEditionDialog.js +0 -113
  418. package/dist/components/filter/expert/ExpertFilterForm.d.ts +0 -21
  419. package/dist/components/filter/expert/ExpertFilterForm.js +0 -126
  420. package/dist/components/filter/expert/expertFilter.type.d.ts +0 -75
  421. package/dist/components/filter/expert/expertFilterConstants.d.ts +0 -1154
  422. package/dist/components/filter/expert/expertFilterConstants.js +0 -1454
  423. package/dist/components/filter/expert/expertFilterUtils.js +0 -374
  424. package/dist/components/filter/explicitNaming/ExplicitNamingFilterEditionDialog.js +0 -123
  425. package/dist/components/filter/explicitNaming/ExplicitNamingFilterForm.d.ts +0 -28
  426. package/dist/components/filter/explicitNaming/ExplicitNamingFilterForm.js +0 -253
  427. package/dist/components/filter/filter.type.d.ts +0 -57
  428. package/dist/components/filter/utils/filterApi.js +0 -111
  429. package/dist/components/filter/utils/filterFormUtils.d.ts +0 -7
  430. package/dist/components/filter/utils/filterFormUtils.js +0 -60
  431. package/dist/components/flatParameters/FlatParameters.js +0 -366
  432. package/dist/components/grid/grid-item.js +0 -9
  433. package/dist/components/grid/grid-section.d.ts +0 -8
  434. package/dist/components/muiTable/OverflowableTableCell.d.ts +0 -3
  435. package/dist/components/muiTable/OverflowableTableCell.js +0 -10
  436. package/dist/components/muiTable/OverflowableTableCellWithCheckbox.d.ts +0 -6
  437. package/dist/components/muiTable/OverflowableTableCellWithCheckbox.js +0 -16
  438. package/dist/components/network-modification-table/network-modifications-table.js +0 -217
  439. package/dist/components/network-modification-table/renderers/description-cell.js +0 -75
  440. package/dist/components/network-modification-table/renderers/name-cell.js +0 -221
  441. package/dist/components/network-modification-table/renderers/root-network-chip-cell.js +0 -114
  442. package/dist/components/network-modification-table/renderers/switch-cell.js +0 -63
  443. package/dist/components/network-modification-table/row/drag-row-clone.js +0 -35
  444. package/dist/components/network-modification-table/row/modification-row.js +0 -107
  445. package/dist/components/network-modification-table/use-modifications-drag-and-drop.js +0 -193
  446. package/dist/components/network-modification-table/utils.js +0 -166
  447. package/dist/components/network-modifications/battery/creation/BatteryCreationForm.js +0 -111
  448. package/dist/components/network-modifications/battery/creation/batteryCreation.utils.js +0 -151
  449. package/dist/components/network-modifications/by-filter/assignment/assignment/assignment-constants.js +0 -402
  450. package/dist/components/network-modifications/by-filter/assignment/assignment/assignment-form.js +0 -245
  451. package/dist/components/network-modifications/by-filter/assignment/assignment/assignment-utils.d.ts +0 -22
  452. package/dist/components/network-modifications/by-filter/assignment/assignment/assignment-utils.js +0 -92
  453. package/dist/components/network-modifications/by-filter/assignment/modification-by-assignment-form.js +0 -95
  454. package/dist/components/network-modifications/by-filter/assignment/modificationByAssignment.utils.d.ts +0 -22
  455. package/dist/components/network-modifications/by-filter/assignment/modificationByAssignment.utils.js +0 -55
  456. package/dist/components/network-modifications/by-filter/deletion/ByFilterDeletionForm.js +0 -88
  457. package/dist/components/network-modifications/by-filter/deletion/byFilterDeletion.utils.d.ts +0 -18
  458. package/dist/components/network-modifications/by-filter/deletion/byFilterDeletion.utils.js +0 -52
  459. package/dist/components/network-modifications/common/activePowerControl/ActivePowerControlForm.js +0 -105
  460. package/dist/components/network-modifications/common/activePowerControl/activePowerControlForm.utils.js +0 -26
  461. package/dist/components/network-modifications/common/connectivity/BranchConnectivityForm.js +0 -57
  462. package/dist/components/network-modifications/common/connectivity/ConnectivityForm.js +0 -123
  463. package/dist/components/network-modifications/common/connectivity/PositionForm.js +0 -119
  464. package/dist/components/network-modifications/common/connectivity/VoltageLevelConnectivityForm.js +0 -171
  465. package/dist/components/network-modifications/common/connectivity/connectivityForm.utils.js +0 -197
  466. package/dist/components/network-modifications/common/index.d.ts +0 -14
  467. package/dist/components/network-modifications/common/index.js +0 -116
  468. package/dist/components/network-modifications/common/measurements/BranchActiveReactivePowerMeasurementsForm.js +0 -31
  469. package/dist/components/network-modifications/common/measurements/PowerMeasurementsForm.js +0 -51
  470. package/dist/components/network-modifications/common/measurements/PowerWithValidityForm.js +0 -79
  471. package/dist/components/network-modifications/common/measurements/branchActiveReactivePowerForm.utils.js +0 -69
  472. package/dist/components/network-modifications/common/measurements/index.d.ts +0 -13
  473. package/dist/components/network-modifications/common/measurements/index.js +0 -26
  474. package/dist/components/network-modifications/common/measurements/injectionActiveReactivePowerForm.utils.js +0 -55
  475. package/dist/components/network-modifications/common/measurements/powerWithValidity.utils.js +0 -37
  476. package/dist/components/network-modifications/common/properties/PropertiesForm.js +0 -120
  477. package/dist/components/network-modifications/common/properties/PropertyForm.js +0 -107
  478. package/dist/components/network-modifications/common/properties/propertyUtils.js +0 -161
  479. package/dist/components/network-modifications/common/reactiveLimits/ReactiveLimitsForm.js +0 -109
  480. package/dist/components/network-modifications/common/reactiveLimits/reactiveCapabilityCurve/ReactiveCapabilityCurveRowForm.js +0 -108
  481. package/dist/components/network-modifications/common/reactiveLimits/reactiveCapabilityCurve/ReactiveCapabilityCurveTableForm.js +0 -125
  482. package/dist/components/network-modifications/common/reactiveLimits/reactiveCapabilityCurve/reactiveCapability.utils.js +0 -155
  483. package/dist/components/network-modifications/common/reactiveLimits/reactiveLimits.utils.js +0 -100
  484. package/dist/components/network-modifications/common/setpoints/SetPointsForm.js +0 -76
  485. package/dist/components/network-modifications/common/setpoints/setPoints.utils.js +0 -63
  486. package/dist/components/network-modifications/common/shortCircuit/ShortCircuitForm.js +0 -75
  487. package/dist/components/network-modifications/common/shortCircuit/shortCircuitForm.utils.js +0 -37
  488. package/dist/components/network-modifications/equipmentDeletion/EquipmentDeletionForm.js +0 -178
  489. package/dist/components/network-modifications/equipmentDeletion/equipmentDeletion.utils.js +0 -86
  490. package/dist/components/network-modifications/equipmentDeletion/hvdcLccDeletion/HvdcLccDeletionSpecificForm.js +0 -42
  491. package/dist/components/network-modifications/equipmentDeletion/hvdcLccDeletion/ShuntCompensatorSelectionForm.js +0 -67
  492. package/dist/components/network-modifications/equipmentDeletion/hvdcLccDeletion/hvdcLccDeletion.utils.js +0 -22
  493. package/dist/components/network-modifications/equipmentDeletion/hvdcLccDeletion/useHvdcLccDeletion.js +0 -85
  494. package/dist/components/network-modifications/index.js +0 -278
  495. package/dist/components/network-modifications/load/common/LoadDialogHeader.js +0 -97
  496. package/dist/components/network-modifications/load/common/LoadDialogTabsContent.js +0 -63
  497. package/dist/components/network-modifications/load/common/load.utils.js +0 -34
  498. package/dist/components/network-modifications/load/creation/loadCreation.utils.js +0 -106
  499. package/dist/components/network-modifications/load/modification/loadModification.utils.js +0 -114
  500. package/dist/components/network-modifications/shunt-compensator/common/CharacteristicsForm.js +0 -205
  501. package/dist/components/network-modifications/shunt-compensator/common/characteristicsForm.utils.js +0 -90
  502. package/dist/components/network-modifications/shunt-compensator/creation/ShuntCompensatorCreationForm.js +0 -88
  503. package/dist/components/network-modifications/shunt-compensator/creation/shuntCompensatorCreation.utils.js +0 -109
  504. package/dist/components/network-modifications/substation/creation/SubstationCreationForm.js +0 -69
  505. package/dist/components/network-modifications/substation/creation/substationCreation.utils.js +0 -45
  506. package/dist/components/network-modifications/substation/modification/SubstationModificationForm.js +0 -93
  507. package/dist/components/network-modifications/substation/modification/substationModification.utils.d.ts +0 -24
  508. package/dist/components/network-modifications/substation/modification/substationModification.utils.js +0 -42
  509. package/dist/components/network-modifications/voltageLevel/creation/VoltageLevelCreationForm.js +0 -134
  510. package/dist/components/network-modifications/voltageLevel/creation/index.js +0 -63
  511. package/dist/components/network-modifications/voltageLevel/creation/tabs/characteristicsTab/CharacteristicsTab.js +0 -100
  512. package/dist/components/network-modifications/voltageLevel/creation/tabs/structureTab/StructureTab.js +0 -71
  513. package/dist/components/network-modifications/voltageLevel/creation/tabs/structureTab/couplingOmnibus/CouplingOmnibusCreation.js +0 -54
  514. package/dist/components/network-modifications/voltageLevel/creation/tabs/structureTab/couplingOmnibus/CouplingOmnibusForm.js +0 -106
  515. package/dist/components/network-modifications/voltageLevel/creation/tabs/structureTab/switchesBetweenSections/SwitchesBetweenSections.js +0 -107
  516. package/dist/components/network-modifications/voltageLevel/creation/tabs/substationTab/SubstationCreationSection.js +0 -68
  517. package/dist/components/network-modifications/voltageLevel/creation/tabs/substationTab/SubstationTab.js +0 -90
  518. package/dist/components/network-modifications/voltageLevel/creation/voltageLevel.constants.js +0 -59
  519. package/dist/components/network-modifications/voltageLevel/creation/voltageLevelCreation.utils.js +0 -257
  520. package/dist/components/network-modifications/voltageLevel/index.js +0 -70
  521. package/dist/components/network-modifications/voltageLevel/modification/VoltageLevelModificationForm.d.ts +0 -5
  522. package/dist/components/network-modifications/voltageLevel/modification/VoltageLevelModificationForm.js +0 -160
  523. package/dist/components/network-modifications/voltageLevel/modification/index.js +0 -9
  524. package/dist/components/network-modifications/voltageLevel/modification/voltageLevelModification.types.d.ts +0 -35
  525. package/dist/components/network-modifications/voltageLevel/modification/voltageLevelModification.utils.d.ts +0 -36
  526. package/dist/components/network-modifications/voltageLevel/modification/voltageLevelModification.utils.js +0 -75
  527. package/dist/components/node/build-status-chip.js +0 -85
  528. package/dist/components/parameters/common/ProviderParam.js +0 -64
  529. package/dist/components/parameters/common/contingency-table/columns-definitions.d.ts +0 -28
  530. package/dist/components/parameters/common/contingency-table/columns-definitions.js +0 -119
  531. package/dist/components/parameters/common/contingency-table/contingency-table.d.ts +0 -8
  532. package/dist/components/parameters/common/contingency-table/contingency-table.js +0 -133
  533. package/dist/components/parameters/common/hook/use-parameters-form.js +0 -60
  534. package/dist/components/parameters/common/limitreductions/columns-definitions.d.ts +0 -56
  535. package/dist/components/parameters/common/limitreductions/columns-definitions.js +0 -73
  536. package/dist/components/parameters/common/limitreductions/limit-reduction-table-cell.js +0 -71
  537. package/dist/components/parameters/common/limitreductions/limit-reductions-table-form.js +0 -77
  538. package/dist/components/parameters/common/name-element-editor/name-element-editor-form.js +0 -34
  539. package/dist/components/parameters/common/name-element-editor/name-element-editor-utils.d.ts +0 -12
  540. package/dist/components/parameters/common/name-element-editor/name-element-editor-utils.js +0 -63
  541. package/dist/components/parameters/common/parameter-field.js +0 -118
  542. package/dist/components/parameters/common/parameter-table/parameter-table.js +0 -98
  543. package/dist/components/parameters/common/parameter-table/table-cell.js +0 -96
  544. package/dist/components/parameters/common/parameter-table/table-row.js +0 -41
  545. package/dist/components/parameters/common/parameter-table-field/parameter-table-field.d.ts +0 -11
  546. package/dist/components/parameters/common/parameter-table-field/parameter-table-field.js +0 -128
  547. package/dist/components/parameters/common/parameters-creation-dialog.js +0 -87
  548. package/dist/components/parameters/common/utils.d.ts +0 -24
  549. package/dist/components/parameters/common/utils.js +0 -89
  550. package/dist/components/parameters/common/voltage-level-table/custom-voltage-level-table-cell.js +0 -55
  551. package/dist/components/parameters/common/voltage-level-table/custom-voltage-level-table.js +0 -61
  552. package/dist/components/parameters/common/widget/parameter-float.js +0 -65
  553. package/dist/components/parameters/common/widget/parameter-line-directory-items-input.js +0 -72
  554. package/dist/components/parameters/common/widget/parameter-line-slider.js +0 -84
  555. package/dist/components/parameters/dynamic-margin-calculation/dynamic-margin-calculation-form.js +0 -111
  556. package/dist/components/parameters/dynamic-margin-calculation/dynamic-margin-calculation-inline.js +0 -189
  557. package/dist/components/parameters/dynamic-margin-calculation/loads-variations-parameters.d.ts +0 -29
  558. package/dist/components/parameters/dynamic-margin-calculation/loads-variations-parameters.js +0 -163
  559. package/dist/components/parameters/dynamic-margin-calculation/time-delay-parameters.d.ts +0 -24
  560. package/dist/components/parameters/dynamic-margin-calculation/time-delay-parameters.js +0 -62
  561. package/dist/components/parameters/dynamic-margin-calculation/use-dynamic-margin-calculation-parameters-form.js +0 -107
  562. package/dist/components/parameters/dynamic-security-analysis/contingency-parameters.js +0 -80
  563. package/dist/components/parameters/dynamic-security-analysis/dynamic-security-analysis-inline.js +0 -142
  564. package/dist/components/parameters/dynamic-security-analysis/dynamic-security-analysis-parameters-form.js +0 -112
  565. package/dist/components/parameters/dynamic-security-analysis/scenario-parameters.js +0 -25
  566. package/dist/components/parameters/dynamic-security-analysis/use-dynamic-security-analysis-parameters-form.d.ts +0 -46
  567. package/dist/components/parameters/dynamic-security-analysis/use-dynamic-security-analysis-parameters-form.js +0 -112
  568. package/dist/components/parameters/dynamic-simulation/curve/common/grid-buttons.js +0 -38
  569. package/dist/components/parameters/dynamic-simulation/curve/curve-parameters-utils.d.ts +0 -12
  570. package/dist/components/parameters/dynamic-simulation/curve/curve-parameters-utils.js +0 -18
  571. package/dist/components/parameters/dynamic-simulation/curve/curve-parameters.d.ts +0 -11
  572. package/dist/components/parameters/dynamic-simulation/curve/curve-parameters.js +0 -177
  573. package/dist/components/parameters/dynamic-simulation/curve/dialog/curve-preview.js +0 -123
  574. package/dist/components/parameters/dynamic-simulation/curve/dialog/curve-selector-dialog.d.ts +0 -15
  575. package/dist/components/parameters/dynamic-simulation/curve/dialog/curve-selector-dialog.js +0 -125
  576. package/dist/components/parameters/dynamic-simulation/curve/dialog/curve-selector-utils.d.ts +0 -20
  577. package/dist/components/parameters/dynamic-simulation/curve/dialog/curve-selector-utils.js +0 -283
  578. package/dist/components/parameters/dynamic-simulation/curve/dialog/curve-selector.d.ts +0 -16
  579. package/dist/components/parameters/dynamic-simulation/curve/dialog/equipment-filter.d.ts +0 -14
  580. package/dist/components/parameters/dynamic-simulation/curve/dialog/equipment-filter.js +0 -239
  581. package/dist/components/parameters/dynamic-simulation/dynamic-simulation-inline.d.ts +0 -15
  582. package/dist/components/parameters/dynamic-simulation/dynamic-simulation-inline.js +0 -198
  583. package/dist/components/parameters/dynamic-simulation/dynamic-simulation-parameters-form.d.ts +0 -15
  584. package/dist/components/parameters/dynamic-simulation/dynamic-simulation-parameters-form.js +0 -160
  585. package/dist/components/parameters/dynamic-simulation/mapping/mapping-parameters-utils.d.ts +0 -9
  586. package/dist/components/parameters/dynamic-simulation/mapping/mapping-parameters-utils.js +0 -13
  587. package/dist/components/parameters/dynamic-simulation/mapping/mapping-parameters.js +0 -52
  588. package/dist/components/parameters/dynamic-simulation/network/network-parameters-utils.d.ts +0 -66
  589. package/dist/components/parameters/dynamic-simulation/network/network-parameters-utils.js +0 -51
  590. package/dist/components/parameters/dynamic-simulation/network/network-parameters.js +0 -120
  591. package/dist/components/parameters/dynamic-simulation/solver/common-solver/common-solver-parameters-utils.d.ts +0 -26
  592. package/dist/components/parameters/dynamic-simulation/solver/common-solver/common-solver-parameters-utils.js +0 -33
  593. package/dist/components/parameters/dynamic-simulation/solver/common-solver/common-solver-parameters.js +0 -134
  594. package/dist/components/parameters/dynamic-simulation/solver/ida-solver/ida-solver-parameters-utils.d.ts +0 -62
  595. package/dist/components/parameters/dynamic-simulation/solver/ida-solver/ida-solver-parameters-utils.js +0 -17
  596. package/dist/components/parameters/dynamic-simulation/solver/ida-solver/ida-solver-parameters.js +0 -53
  597. package/dist/components/parameters/dynamic-simulation/solver/sim-solver/simplified-solver-parameters-utils.d.ts +0 -86
  598. package/dist/components/parameters/dynamic-simulation/solver/sim-solver/simplified-solver-parameters-utils.js +0 -31
  599. package/dist/components/parameters/dynamic-simulation/solver/sim-solver/simplified-solver-parameters.js +0 -113
  600. package/dist/components/parameters/dynamic-simulation/solver/solver-parameters-utils.d.ts +0 -12
  601. package/dist/components/parameters/dynamic-simulation/solver/solver-parameters-utils.js +0 -38
  602. package/dist/components/parameters/dynamic-simulation/solver/solver-parameters.js +0 -52
  603. package/dist/components/parameters/dynamic-simulation/time-delay/time-delay-parameters-utils.d.ts +0 -12
  604. package/dist/components/parameters/dynamic-simulation/time-delay/time-delay-parameters-utils.js +0 -21
  605. package/dist/components/parameters/dynamic-simulation/time-delay/time-delay-parameters.js +0 -30
  606. package/dist/components/parameters/dynamic-simulation/use-dynamic-simulation-parameters-form.js +0 -129
  607. package/dist/components/parameters/loadflow/load-flow-general-parameters.js +0 -193
  608. package/dist/components/parameters/loadflow/load-flow-parameters-content.js +0 -92
  609. package/dist/components/parameters/loadflow/load-flow-parameters-dialog.js +0 -119
  610. package/dist/components/parameters/loadflow/load-flow-parameters-form.js +0 -117
  611. package/dist/components/parameters/loadflow/load-flow-parameters-header.js +0 -109
  612. package/dist/components/parameters/loadflow/load-flow-parameters-inline.js +0 -207
  613. package/dist/components/parameters/loadflow/load-flow-parameters-utils.d.ts +0 -82
  614. package/dist/components/parameters/loadflow/load-flow-parameters-utils.js +0 -120
  615. package/dist/components/parameters/loadflow/use-load-flow-parameters-form.d.ts +0 -31
  616. package/dist/components/parameters/loadflow/use-load-flow-parameters-form.js +0 -263
  617. package/dist/components/parameters/network-visualizations/map-parameters.js +0 -125
  618. package/dist/components/parameters/network-visualizations/network-area-diagram-parameters.js +0 -73
  619. package/dist/components/parameters/network-visualizations/network-visualizations-form.js +0 -117
  620. package/dist/components/parameters/network-visualizations/network-visualizations-parameters-dialog.js +0 -112
  621. package/dist/components/parameters/network-visualizations/network-visualizations-parameters-inline.js +0 -145
  622. package/dist/components/parameters/network-visualizations/single-line-diagram-parameters.js +0 -115
  623. package/dist/components/parameters/network-visualizations/use-network-visualizations-parameters-form.d.ts +0 -30
  624. package/dist/components/parameters/network-visualizations/use-network-visualizations-parameters-form.js +0 -167
  625. package/dist/components/parameters/pcc-min/pcc-min-form-utils.js +0 -71
  626. package/dist/components/parameters/pcc-min/pcc-min-parameters-dialog.js +0 -110
  627. package/dist/components/parameters/pcc-min/pcc-min-parameters-form.js +0 -129
  628. package/dist/components/parameters/pcc-min/pcc-min-parameters-inline.js +0 -174
  629. package/dist/components/parameters/pcc-min/use-pcc-min-parameters-form.d.ts +0 -26
  630. package/dist/components/parameters/pcc-min/use-pcc-min-parameters-form.js +0 -147
  631. package/dist/components/parameters/security-analysis/columns-definitions.d.ts +0 -63
  632. package/dist/components/parameters/security-analysis/columns-definitions.js +0 -87
  633. package/dist/components/parameters/security-analysis/security-analysis-parameters-dialog.js +0 -128
  634. package/dist/components/parameters/security-analysis/security-analysis-parameters-form.d.ts +0 -13
  635. package/dist/components/parameters/security-analysis/security-analysis-parameters-form.js +0 -170
  636. package/dist/components/parameters/security-analysis/security-analysis-parameters-inline.js +0 -195
  637. package/dist/components/parameters/security-analysis/security-analysis-parameters-selector.js +0 -96
  638. package/dist/components/parameters/security-analysis/security-analysis-violations-hiding.js +0 -153
  639. package/dist/components/parameters/security-analysis/use-security-analysis-parameters-form.js +0 -199
  640. package/dist/components/parameters/sensi/columns-definitions.d.ts +0 -31
  641. package/dist/components/parameters/sensi/columns-definitions.js +0 -356
  642. package/dist/components/parameters/sensi/sensitivity-analysis-parameters-dialog.js +0 -134
  643. package/dist/components/parameters/sensi/sensitivity-analysis-parameters-form.js +0 -147
  644. package/dist/components/parameters/sensi/sensitivity-analysis-parameters-inline.js +0 -203
  645. package/dist/components/parameters/sensi/sensitivity-parameters-fields.js +0 -85
  646. package/dist/components/parameters/sensi/sensitivity-parameters-selector.js +0 -270
  647. package/dist/components/parameters/sensi/use-sensitivity-analysis-parameters.js +0 -392
  648. package/dist/components/parameters/sensi/utils.d.ts +0 -411
  649. package/dist/components/parameters/sensi/utils.js +0 -376
  650. package/dist/components/parameters/short-circuit/columns-definition.js +0 -127
  651. package/dist/components/parameters/short-circuit/short-circuit-general-tab-panel.js +0 -224
  652. package/dist/components/parameters/short-circuit/short-circuit-icc-cluster-table-cell.js +0 -83
  653. package/dist/components/parameters/short-circuit/short-circuit-icc-cluster-table-row.js +0 -36
  654. package/dist/components/parameters/short-circuit/short-circuit-icc-cluster-table.js +0 -60
  655. package/dist/components/parameters/short-circuit/short-circuit-icc-material-table-cell.js +0 -61
  656. package/dist/components/parameters/short-circuit/short-circuit-icc-material-table.js +0 -43
  657. package/dist/components/parameters/short-circuit/short-circuit-parameters-content.js +0 -116
  658. package/dist/components/parameters/short-circuit/short-circuit-parameters-dialog.js +0 -119
  659. package/dist/components/parameters/short-circuit/short-circuit-parameters-form.js +0 -79
  660. package/dist/components/parameters/short-circuit/short-circuit-parameters-inline.js +0 -184
  661. package/dist/components/parameters/short-circuit/short-circuit-parameters-utils.d.ts +0 -40
  662. package/dist/components/parameters/short-circuit/short-circuit-parameters-utils.js +0 -307
  663. package/dist/components/parameters/short-circuit/short-circuit-power-electronics-tab-panel.js +0 -106
  664. package/dist/components/parameters/short-circuit/short-circuit-study-area-tab-panel.js +0 -154
  665. package/dist/components/parameters/short-circuit/use-short-circuit-parameters-form.d.ts +0 -33
  666. package/dist/components/parameters/short-circuit/use-short-circuit-parameters-form.js +0 -258
  667. package/dist/components/parameters/voltage-init/equipment-selection-parameters.js +0 -134
  668. package/dist/components/parameters/voltage-init/general-parameters.js +0 -127
  669. package/dist/components/parameters/voltage-init/use-voltage-init-parameters-form.d.ts +0 -32
  670. package/dist/components/parameters/voltage-init/use-voltage-init-parameters-form.js +0 -225
  671. package/dist/components/parameters/voltage-init/voltage-init-form-utils.js +0 -226
  672. package/dist/components/parameters/voltage-init/voltage-init-parameters-dialog.js +0 -110
  673. package/dist/components/parameters/voltage-init/voltage-init-parameters-form.js +0 -165
  674. package/dist/components/parameters/voltage-init/voltage-init-parameters-inline.js +0 -183
  675. package/dist/components/parameters/voltage-init/voltage-limits-parameters.js +0 -183
  676. package/dist/components/topBar/AboutDialog.js +0 -349
  677. package/dist/components/topBar/UserInformationDialog.js +0 -75
  678. package/dist/components/treeViewFinder/TreeViewFinder.d.ts +0 -39
  679. package/dist/components/treeViewFinder/TreeViewFinder.js +0 -343
  680. package/dist/components/treeViewFinder/TreeViewUtils.d.ts +0 -2
  681. package/dist/components/ui/announcement/AnnouncementBanner.d.ts +0 -15
  682. package/dist/components/ui/announcement/AnnouncementBanner.js +0 -88
  683. package/dist/components/ui/announcement/useGlobalAnnouncement.d.ts +0 -10
  684. package/dist/components/ui/announcement/useGlobalAnnouncement.js +0 -48
  685. package/dist/components/ui/reactHookForm/agGridTable/BottomRightButtons.js +0 -62
  686. package/dist/components/ui/reactHookForm/agGridTable/CustomAgGridTable.d.ts +0 -8
  687. package/dist/components/ui/reactHookForm/agGridTable/CustomAgGridTable.js +0 -201
  688. package/dist/components/ui/reactHookForm/agGridTable/csvUploader/CsvUploader.d.ts +0 -15
  689. package/dist/components/ui/reactHookForm/agGridTable/csvUploader/CsvUploader.js +0 -183
  690. package/dist/components/ui/reactQueryBuilder/CombinatorSelector.js +0 -40
  691. package/dist/components/ui/reactQueryBuilder/CountryValueEditor.js +0 -50
  692. package/dist/components/ui/reactQueryBuilder/CustomReactQueryBuilder.js +0 -105
  693. package/dist/components/ui/reactQueryBuilder/ElementValueEditor.js +0 -47
  694. package/dist/components/ui/reactQueryBuilder/OperatorSelector.js +0 -25
  695. package/dist/components/ui/reactQueryBuilder/PropertyValueEditor.js +0 -102
  696. package/dist/components/ui/reactQueryBuilder/RemoveButton.js +0 -19
  697. package/dist/components/ui/reactQueryBuilder/ValueEditor.js +0 -96
  698. package/dist/components/ui/reactQueryBuilder/compositeRuleEditor/GroupValueEditor.d.ts +0 -3
  699. package/dist/components/ui/reactQueryBuilder/compositeRuleEditor/RuleValueEditor.d.ts +0 -8
  700. package/dist/components/ui/reactQueryBuilder/hooks/useConvertValue.js +0 -19
  701. package/dist/utils/yupConfig.d.ts +0 -8
  702. package/dist/utils/yupConfig.js +0 -15
  703. /package/dist/components/{ui/reactHookForm → composite}/agGridTable/BottomRightButtons.d.ts +0 -0
  704. /package/dist/components/{ui/reactHookForm → composite}/agGridTable/cellEditors/index.d.ts +0 -0
  705. /package/dist/components/{ui/reactHookForm → composite}/agGridTable/cellEditors/index.js +0 -0
  706. /package/dist/components/{ui/reactHookForm → composite}/agGridTable/cellEditors/numericEditor.d.ts +0 -0
  707. /package/dist/components/{ui/reactHookForm → composite}/agGridTable/cellEditors/numericEditor.js +0 -0
  708. /package/dist/components/{ui/reactHookForm → composite}/agGridTable/csvUploader/index.d.ts +0 -0
  709. /package/dist/components/{ui/reactHookForm → composite}/agGridTable/csvUploader/index.js +0 -0
  710. /package/dist/components/{ui/reactHookForm → composite}/agGridTable/index.d.ts +0 -0
  711. /package/dist/components/{ui/reactHookForm → composite}/agGridTable/index.js +0 -0
  712. /package/dist/components/{customAGGrid → composite/customAGGrid}/cell-renderers.d.ts +0 -0
  713. /package/dist/components/{customAGGrid → composite/customAGGrid}/customAggrid.style.d.ts +0 -0
  714. /package/dist/components/{customAGGrid → composite/customAGGrid}/customAggrid.style.js +0 -0
  715. /package/dist/components/{customAGGrid → composite/customAGGrid}/index.d.ts +0 -0
  716. /package/dist/components/{customAGGrid → composite/customAGGrid}/index.js +0 -0
  717. /package/dist/components/{customAGGrid → composite/customAGGrid}/separatorCellRenderer.d.ts +0 -0
  718. /package/dist/components/{dnd-table → composite/dnd-table}/dnd-table-add-rows-dialog.d.ts +0 -0
  719. /package/dist/components/{dnd-table → composite/dnd-table}/dnd-table-bottom-left-buttons.d.ts +0 -0
  720. /package/dist/components/{dnd-table → composite/dnd-table}/dnd-table-bottom-right-buttons.d.ts +0 -0
  721. /package/dist/components/{dnd-table → composite/dnd-table}/dnd-table.d.ts +0 -0
  722. /package/dist/components/{dnd-table → composite/dnd-table}/dnd-table.type.js +0 -0
  723. /package/dist/components/{dnd-table → composite/dnd-table}/index.d.ts +0 -0
  724. /package/dist/components/{dnd-table → composite/dnd-table}/index.js +0 -0
  725. /package/dist/components/{dnd-table-v2 → composite/dnd-table-v2}/deletable-table-row.d.ts +0 -0
  726. /package/dist/components/{dnd-table-v2 → composite/dnd-table-v2}/dnd-table-add-rows-dialog.d.ts +0 -0
  727. /package/dist/components/{dnd-table-v2 → composite/dnd-table-v2}/dnd-table-bottom-left-buttons.d.ts +0 -0
  728. /package/dist/components/{dnd-table-v2 → composite/dnd-table-v2}/dnd-table-bottom-right-buttons.d.ts +0 -0
  729. /package/dist/components/{dnd-table-v2 → composite/dnd-table-v2}/dnd-table-row.d.ts +0 -0
  730. /package/dist/components/{dnd-table-v2 → composite/dnd-table-v2}/dnd-table-utils.d.ts +0 -0
  731. /package/dist/components/{dnd-table-v2 → composite/dnd-table-v2}/dnd-table-utils.js +0 -0
  732. /package/dist/components/{dnd-table-v2 → composite/dnd-table-v2}/dnd-table.d.ts +0 -0
  733. /package/dist/components/{dnd-table-v2 → composite/dnd-table-v2}/dnd-table.type.js +0 -0
  734. /package/dist/components/{dnd-table-v2 → composite/dnd-table-v2}/index.d.ts +0 -0
  735. /package/dist/components/{dnd-table-v2 → composite/dnd-table-v2}/index.js +0 -0
  736. /package/dist/components/{elementSearch → composite/elementSearch}/elementItem/index.d.ts +0 -0
  737. /package/dist/components/{elementSearch → composite/elementSearch}/elementItem/index.js +0 -0
  738. /package/dist/components/{elementSearch → composite/elementSearch}/elementSearchDialog/ElementSearchDialog.d.ts +0 -0
  739. /package/dist/components/{elementSearch → composite/elementSearch}/elementSearchDialog/ElementSearchDialog.js +0 -0
  740. /package/dist/components/{elementSearch → composite/elementSearch}/elementSearchDialog/index.d.ts +0 -0
  741. /package/dist/components/{elementSearch → composite/elementSearch}/elementSearchDialog/index.js +0 -0
  742. /package/dist/components/{elementSearch → composite/elementSearch}/elementSearchInput/ElementSearchInput.d.ts +0 -0
  743. /package/dist/components/{elementSearch → composite/elementSearch}/elementSearchInput/ElementSearchInput.js +0 -0
  744. /package/dist/components/{elementSearch → composite/elementSearch}/elementSearchInput/index.d.ts +0 -0
  745. /package/dist/components/{elementSearch → composite/elementSearch}/elementSearchInput/index.js +0 -0
  746. /package/dist/components/{elementSearch → composite/elementSearch}/hooks/index.d.ts +0 -0
  747. /package/dist/components/{elementSearch → composite/elementSearch}/hooks/index.js +0 -0
  748. /package/dist/components/{elementSearch → composite/elementSearch}/hooks/useElementSearch.d.ts +0 -0
  749. /package/dist/components/{elementSearch → composite/elementSearch}/index.d.ts +0 -0
  750. /package/dist/components/{elementSearch → composite/elementSearch}/index.js +0 -0
  751. /package/dist/components/{elementSearch → composite/elementSearch}/tagRenderer/index.d.ts +0 -0
  752. /package/dist/components/{elementSearch → composite/elementSearch}/tagRenderer/index.js +0 -0
  753. /package/dist/components/{filter → composite/filter}/FilterForm.d.ts +0 -0
  754. /package/dist/components/{filter → composite/filter}/constants/FilterConstants.d.ts +0 -0
  755. /package/dist/components/{filter → composite/filter}/constants/FilterConstants.js +0 -0
  756. /package/dist/components/{filter → composite/filter}/expert/ExpertFilterEditionDialog.d.ts +0 -0
  757. /package/dist/components/{filter → composite/filter}/expert/expertFilter.type.js +0 -0
  758. /package/dist/components/{filter → composite/filter}/expert/expertFilterUtils.d.ts +0 -0
  759. /package/dist/components/{filter → composite/filter}/expert/index.d.ts +0 -0
  760. /package/dist/components/{filter → composite/filter}/expert/index.js +0 -0
  761. /package/dist/components/{filter → composite/filter}/explicitNaming/ExplicitNamingFilterConstants.d.ts +0 -0
  762. /package/dist/components/{filter → composite/filter}/explicitNaming/ExplicitNamingFilterConstants.js +0 -0
  763. /package/dist/components/{filter → composite/filter}/explicitNaming/ExplicitNamingFilterEditionDialog.d.ts +0 -0
  764. /package/dist/components/{filter → composite/filter}/explicitNaming/index.d.ts +0 -0
  765. /package/dist/components/{filter → composite/filter}/explicitNaming/index.js +0 -0
  766. /package/dist/components/{filter → composite/filter}/filter.type.js +0 -0
  767. /package/dist/components/{filter → composite/filter}/index.d.ts +0 -0
  768. /package/dist/components/{filter → composite/filter}/index.js +0 -0
  769. /package/dist/components/{filter → composite/filter}/utils/filterApi.d.ts +0 -0
  770. /package/dist/components/{filter → composite/filter}/utils/index.d.ts +0 -0
  771. /package/dist/components/{filter → composite/filter}/utils/index.js +0 -0
  772. /package/dist/components/{flatParameters → composite/flatParameters}/FlatParameters.d.ts +0 -0
  773. /package/dist/components/{flatParameters → composite/flatParameters}/index.d.ts +0 -0
  774. /package/dist/components/{flatParameters → composite/flatParameters}/index.js +0 -0
  775. /package/dist/components/{grid → composite/grid}/grid-item.d.ts +0 -0
  776. /package/dist/components/{grid → composite/grid}/grid-section.js +0 -0
  777. /package/dist/components/{grid → composite/grid}/index.d.ts +0 -0
  778. /package/dist/components/{grid → composite/grid}/index.js +0 -0
  779. /package/dist/components/{muiTable → composite/muiTable}/index.d.ts +0 -0
  780. /package/dist/components/{muiTable → composite/muiTable}/index.js +0 -0
  781. /package/dist/components/{ui → composite}/reactQueryBuilder/AddButton.d.ts +0 -0
  782. /package/dist/components/{ui → composite}/reactQueryBuilder/AddButton.js +0 -0
  783. /package/dist/components/{ui → composite}/reactQueryBuilder/AutocompleteWithFavorites.d.ts +0 -0
  784. /package/dist/components/{ui → composite}/reactQueryBuilder/AutocompleteWithFavorites.js +0 -0
  785. /package/dist/components/{ui → composite}/reactQueryBuilder/CombinatorSelector.d.ts +0 -0
  786. /package/dist/components/{ui → composite}/reactQueryBuilder/CountryValueEditor.d.ts +0 -0
  787. /package/dist/components/{ui → composite}/reactQueryBuilder/CustomReactQueryBuilder.d.ts +0 -0
  788. /package/dist/components/{ui → composite}/reactQueryBuilder/ElementValueEditor.d.ts +0 -0
  789. /package/dist/components/{ui → composite}/reactQueryBuilder/FieldSelector.d.ts +0 -0
  790. /package/dist/components/{ui → composite}/reactQueryBuilder/FieldSelector.js +0 -0
  791. /package/dist/components/{ui → composite}/reactQueryBuilder/OperatorSelector.d.ts +0 -0
  792. /package/dist/components/{ui → composite}/reactQueryBuilder/PropertyValueEditor.d.ts +0 -0
  793. /package/dist/components/{ui → composite}/reactQueryBuilder/RemoveButton.d.ts +0 -0
  794. /package/dist/components/{ui → composite}/reactQueryBuilder/TextValueEditor.d.ts +0 -0
  795. /package/dist/components/{ui → composite}/reactQueryBuilder/TextValueEditor.js +0 -0
  796. /package/dist/components/{ui → composite}/reactQueryBuilder/TranslatedValueEditor.d.ts +0 -0
  797. /package/dist/components/{ui → composite}/reactQueryBuilder/TranslatedValueEditor.js +0 -0
  798. /package/dist/components/{ui → composite}/reactQueryBuilder/ValueEditor.d.ts +0 -0
  799. /package/dist/components/{ui → composite}/reactQueryBuilder/ValueSelector.d.ts +0 -0
  800. /package/dist/components/{ui → composite}/reactQueryBuilder/ValueSelector.js +0 -0
  801. /package/dist/components/{ui → composite}/reactQueryBuilder/compositeRuleEditor/GroupValueEditor.js +0 -0
  802. /package/dist/components/{ui → composite}/reactQueryBuilder/compositeRuleEditor/RuleValueEditor.js +0 -0
  803. /package/dist/components/{ui → composite}/reactQueryBuilder/compositeRuleEditor/index.d.ts +0 -0
  804. /package/dist/components/{ui → composite}/reactQueryBuilder/compositeRuleEditor/index.js +0 -0
  805. /package/dist/components/{ui → composite}/reactQueryBuilder/hooks/index.d.ts +0 -0
  806. /package/dist/components/{ui → composite}/reactQueryBuilder/hooks/index.js +0 -0
  807. /package/dist/components/{ui → composite}/reactQueryBuilder/hooks/useConvertValue.d.ts +0 -0
  808. /package/dist/components/{ui → composite}/reactQueryBuilder/hooks/useValid.d.ts +0 -0
  809. /package/dist/components/{ui → composite}/reactQueryBuilder/hooks/useValid.js +0 -0
  810. /package/dist/components/{ui → composite}/reactQueryBuilder/index.d.ts +0 -0
  811. /package/dist/components/{ui → composite}/reactQueryBuilder/index.js +0 -0
  812. /package/dist/components/{directoryItemSelector → ui/directoryItemSelector}/index.d.ts +0 -0
  813. /package/dist/components/{directoryItemSelector → ui/directoryItemSelector}/index.js +0 -0
  814. /package/dist/components/{treeViewFinder → ui/treeViewFinder}/TreeViewUtils.js +0 -0
  815. /package/dist/components/{treeViewFinder → ui/treeViewFinder}/index.d.ts +0 -0
  816. /package/dist/components/{treeViewFinder → ui/treeViewFinder}/index.js +0 -0
  817. /package/dist/{components/ui → features}/announcement/AnnouncementNotification.d.ts +0 -0
  818. /package/dist/{components/ui → features}/announcement/AnnouncementNotification.js +0 -0
  819. /package/dist/{components/ui → features}/announcement/index.d.ts +0 -0
  820. /package/dist/{components/ui → features}/announcement/index.js +0 -0
  821. /package/dist/{components → features}/authentication/AuthenticationRouter.d.ts +0 -0
  822. /package/dist/{components → features}/authentication/AuthenticationRouter.js +0 -0
  823. /package/dist/{components → features}/authentication/AuthenticationRouterErrorDisplay.d.ts +0 -0
  824. /package/dist/{components → features}/authentication/AuthenticationRouterErrorDisplay.js +0 -0
  825. /package/dist/{components → features}/authentication/Login.d.ts +0 -0
  826. /package/dist/{components → features}/authentication/Login.js +0 -0
  827. /package/dist/{components → features}/authentication/Logout.d.ts +0 -0
  828. /package/dist/{components → features}/authentication/Logout.js +0 -0
  829. /package/dist/{components → features}/authentication/SignInCallbackHandler.d.ts +0 -0
  830. /package/dist/{components → features}/authentication/SignInCallbackHandler.js +0 -0
  831. /package/dist/{components → features}/authentication/SilentRenewCallbackHandler.d.ts +0 -0
  832. /package/dist/{components → features}/authentication/SilentRenewCallbackHandler.js +0 -0
  833. /package/dist/{components → features}/authentication/alert/ErrorInLogoutAlert.d.ts +0 -0
  834. /package/dist/{components → features}/authentication/alert/ErrorInLogoutAlert.js +0 -0
  835. /package/dist/{components → features}/authentication/alert/ErrorInUserValidationAlert.d.ts +0 -0
  836. /package/dist/{components → features}/authentication/alert/ErrorInUserValidationAlert.js +0 -0
  837. /package/dist/{components → features}/authentication/alert/UnauthorizedAccessAlert.d.ts +0 -0
  838. /package/dist/{components → features}/authentication/alert/UnauthorizedAccessAlert.js +0 -0
  839. /package/dist/{components → features}/authentication/alert/index.d.ts +0 -0
  840. /package/dist/{components → features}/authentication/alert/index.js +0 -0
  841. /package/dist/{components → features}/authentication/authenticationType.d.ts +0 -0
  842. /package/dist/{components → features}/authentication/authenticationType.js +0 -0
  843. /package/dist/{components → features}/authentication/index.d.ts +0 -0
  844. /package/dist/{components → features}/authentication/index.js +0 -0
  845. /package/dist/{components → features}/authentication/utils/authService.d.ts +0 -0
  846. /package/dist/{components → features}/authentication/utils/authService.js +0 -0
  847. /package/dist/{components → features}/authentication/utils/index.d.ts +0 -0
  848. /package/dist/{components → features}/authentication/utils/index.js +0 -0
  849. /package/dist/{components → features}/authentication/utils/userManagerMock.d.ts +0 -0
  850. /package/dist/{components → features}/authentication/utils/userManagerMock.js +0 -0
  851. /package/dist/{components → features}/cardErrorBoundary/CardErrorBoundary.d.ts +0 -0
  852. /package/dist/{components → features}/cardErrorBoundary/CardErrorBoundary.js +0 -0
  853. /package/dist/{components → features}/cardErrorBoundary/index.d.ts +0 -0
  854. /package/dist/{components → features}/cardErrorBoundary/index.js +0 -0
  855. /package/dist/{components → features}/network-modification-table/columns-definition.d.ts +0 -0
  856. /package/dist/{components → features}/network-modification-table/columns-definition.js +0 -0
  857. /package/dist/{components → features}/network-modification-table/drag-forbidden-chip.d.ts +0 -0
  858. /package/dist/{components → features}/network-modification-table/drag-forbidden-chip.js +0 -0
  859. /package/dist/{components → features}/network-modification-table/index.d.ts +0 -0
  860. /package/dist/{components → features}/network-modification-table/index.js +0 -0
  861. /package/dist/{components → features}/network-modification-table/network-modification-table-styles.d.ts +0 -0
  862. /package/dist/{components → features}/network-modification-table/network-modification-table-styles.js +0 -0
  863. /package/dist/{components → features}/network-modification-table/network-modifications-table.d.ts +0 -0
  864. /package/dist/{components → features}/network-modification-table/renderers/cell-renderers.d.ts +0 -0
  865. /package/dist/{components → features}/network-modification-table/renderers/cell-renderers.js +0 -0
  866. /package/dist/{components → features}/network-modification-table/renderers/depth-box.d.ts +0 -0
  867. /package/dist/{components → features}/network-modification-table/renderers/depth-box.js +0 -0
  868. /package/dist/{components → features}/network-modification-table/renderers/description-cell.d.ts +0 -0
  869. /package/dist/{components → features}/network-modification-table/renderers/drag-handle-cell.d.ts +0 -0
  870. /package/dist/{components → features}/network-modification-table/renderers/drag-handle-cell.js +0 -0
  871. /package/dist/{components → features}/network-modification-table/renderers/index.d.ts +0 -0
  872. /package/dist/{components → features}/network-modification-table/renderers/index.js +0 -0
  873. /package/dist/{components → features}/network-modification-table/renderers/name-cell.d.ts +0 -0
  874. /package/dist/{components → features}/network-modification-table/renderers/network-modification-node-editor-name-header.d.ts +0 -0
  875. /package/dist/{components → features}/network-modification-table/renderers/network-modification-node-editor-name-header.js +0 -0
  876. /package/dist/{components → features}/network-modification-table/renderers/root-network-chip-cell.d.ts +0 -0
  877. /package/dist/{components → features}/network-modification-table/renderers/select-cell.d.ts +0 -0
  878. /package/dist/{components → features}/network-modification-table/renderers/select-cell.js +0 -0
  879. /package/dist/{components → features}/network-modification-table/renderers/select-header-cell.d.ts +0 -0
  880. /package/dist/{components → features}/network-modification-table/renderers/select-header-cell.js +0 -0
  881. /package/dist/{components → features}/network-modification-table/renderers/switch-cell.d.ts +0 -0
  882. /package/dist/{components → features}/network-modification-table/row/drag-row-clone.d.ts +0 -0
  883. /package/dist/{components → features}/network-modification-table/row/index.d.ts +0 -0
  884. /package/dist/{components → features}/network-modification-table/row/index.js +0 -0
  885. /package/dist/{components → features}/network-modification-table/row/modification-row.d.ts +0 -0
  886. /package/dist/{components → features}/network-modification-table/use-modifications-drag-and-drop.d.ts +0 -0
  887. /package/dist/{components → features}/network-modification-table/use-modifications-selection.d.ts +0 -0
  888. /package/dist/{components → features}/network-modification-table/use-modifications-selection.js +0 -0
  889. /package/dist/{components → features}/network-modification-table/utils.d.ts +0 -0
  890. /package/dist/{components → features}/network-modifications/battery/creation/BatteryCreationForm.d.ts +0 -0
  891. /package/dist/{components → features}/network-modifications/battery/creation/batteryCreation.types.d.ts +0 -0
  892. /package/dist/{components → features}/network-modifications/battery/creation/batteryCreation.types.js +0 -0
  893. /package/dist/{components → features}/network-modifications/battery/creation/batteryCreation.utils.d.ts +0 -0
  894. /package/dist/{components → features}/network-modifications/battery/creation/index.d.ts +0 -0
  895. /package/dist/{components → features}/network-modifications/battery/creation/index.js +0 -0
  896. /package/dist/{components → features}/network-modifications/battery/index.d.ts +0 -0
  897. /package/dist/{components → features}/network-modifications/battery/index.js +0 -0
  898. /package/dist/{components → features}/network-modifications/by-filter/assignment/assignment/assignment-constants.d.ts +0 -0
  899. /package/dist/{components → features}/network-modifications/by-filter/assignment/assignment/assignment-form.d.ts +0 -0
  900. /package/dist/{components → features}/network-modifications/by-filter/assignment/assignment/assignment.type.d.ts +0 -0
  901. /package/dist/{components → features}/network-modifications/by-filter/assignment/assignment/assignment.type.js +0 -0
  902. /package/dist/{components → features}/network-modifications/by-filter/assignment/index.d.ts +0 -0
  903. /package/dist/{components → features}/network-modifications/by-filter/assignment/index.js +0 -0
  904. /package/dist/{components → features}/network-modifications/by-filter/assignment/modification-by-assignment-form.d.ts +0 -0
  905. /package/dist/{components → features}/network-modifications/by-filter/assignment/modificationByAssignment.types.d.ts +0 -0
  906. /package/dist/{components → features}/network-modifications/by-filter/assignment/modificationByAssignment.types.js +0 -0
  907. /package/dist/{components → features}/network-modifications/by-filter/commons/by-filter.type.d.ts +0 -0
  908. /package/dist/{components → features}/network-modifications/by-filter/commons/by-filter.type.js +0 -0
  909. /package/dist/{components → features}/network-modifications/by-filter/deletion/ByFilterDeletionForm.d.ts +0 -0
  910. /package/dist/{components → features}/network-modifications/by-filter/deletion/byFilterDeletion.types.d.ts +0 -0
  911. /package/dist/{components → features}/network-modifications/by-filter/deletion/byFilterDeletion.types.js +0 -0
  912. /package/dist/{components → features}/network-modifications/by-filter/deletion/index.d.ts +0 -0
  913. /package/dist/{components → features}/network-modifications/by-filter/deletion/index.js +0 -0
  914. /package/dist/{components → features}/network-modifications/by-filter/index.d.ts +0 -0
  915. /package/dist/{components → features}/network-modifications/by-filter/index.js +0 -0
  916. /package/dist/{components → features}/network-modifications/common/activePowerControl/ActivePowerControlForm.d.ts +0 -0
  917. /package/dist/{components → features}/network-modifications/common/activePowerControl/activePowerControlForm.type.d.ts +0 -0
  918. /package/dist/{components → features}/network-modifications/common/activePowerControl/activePowerControlForm.type.js +0 -0
  919. /package/dist/{components → features}/network-modifications/common/activePowerControl/activePowerControlForm.utils.d.ts +0 -0
  920. /package/dist/{components → features}/network-modifications/common/activePowerControl/index.d.ts +0 -0
  921. /package/dist/{components → features}/network-modifications/common/activePowerControl/index.js +0 -0
  922. /package/dist/{components → features}/network-modifications/common/connectivity/BranchConnectivityForm.d.ts +0 -0
  923. /package/dist/{components → features}/network-modifications/common/connectivity/ConnectivityForm.d.ts +0 -0
  924. /package/dist/{components → features}/network-modifications/common/connectivity/PositionForm.d.ts +0 -0
  925. /package/dist/{components → features}/network-modifications/common/connectivity/VoltageLevelConnectivityForm.d.ts +0 -0
  926. /package/dist/{components → features}/network-modifications/common/connectivity/connectivity.type.d.ts +0 -0
  927. /package/dist/{components → features}/network-modifications/common/connectivity/connectivity.type.js +0 -0
  928. /package/dist/{components → features}/network-modifications/common/connectivity/connectivityForm.utils.d.ts +0 -0
  929. /package/dist/{components → features}/network-modifications/common/connectivity/index.d.ts +0 -0
  930. /package/dist/{components → features}/network-modifications/common/connectivity/index.js +0 -0
  931. /package/dist/{components → features}/network-modifications/common/form.utils.d.ts +0 -0
  932. /package/dist/{components → features}/network-modifications/common/form.utils.js +0 -0
  933. /package/dist/{components → features}/network-modifications/common/measurements/BranchActiveReactivePowerMeasurementsForm.d.ts +0 -0
  934. /package/dist/{components → features}/network-modifications/common/measurements/PowerMeasurementsForm.d.ts +0 -0
  935. /package/dist/{components → features}/network-modifications/common/measurements/PowerWithValidityForm.d.ts +0 -0
  936. /package/dist/{components → features}/network-modifications/common/measurements/branchActiveReactivePowerForm.utils.d.ts +0 -0
  937. /package/dist/{components → features}/network-modifications/common/measurements/injectionActiveReactivePowerForm.utils.d.ts +0 -0
  938. /package/dist/{components → features}/network-modifications/common/measurements/measurement.type.d.ts +0 -0
  939. /package/dist/{components → features}/network-modifications/common/measurements/measurement.type.js +0 -0
  940. /package/dist/{components → features}/network-modifications/common/measurements/powerWithValidity.utils.d.ts +0 -0
  941. /package/dist/{components → features}/network-modifications/common/properties/PropertiesForm.d.ts +0 -0
  942. /package/dist/{components → features}/network-modifications/common/properties/PropertyForm.d.ts +0 -0
  943. /package/dist/{components → features}/network-modifications/common/properties/index.d.ts +0 -0
  944. /package/dist/{components → features}/network-modifications/common/properties/index.js +0 -0
  945. /package/dist/{components → features}/network-modifications/common/properties/properties.type.d.ts +0 -0
  946. /package/dist/{components → features}/network-modifications/common/properties/properties.type.js +0 -0
  947. /package/dist/{components → features}/network-modifications/common/properties/propertyUtils.d.ts +0 -0
  948. /package/dist/{components → features}/network-modifications/common/reactiveLimits/ReactiveLimitsForm.d.ts +0 -0
  949. /package/dist/{components → features}/network-modifications/common/reactiveLimits/index.d.ts +0 -0
  950. /package/dist/{components → features}/network-modifications/common/reactiveLimits/index.js +0 -0
  951. /package/dist/{components → features}/network-modifications/common/reactiveLimits/reactiveCapabilityCurve/ReactiveCapabilityCurveRowForm.d.ts +0 -0
  952. /package/dist/{components → features}/network-modifications/common/reactiveLimits/reactiveCapabilityCurve/ReactiveCapabilityCurveTableForm.d.ts +0 -0
  953. /package/dist/{components → features}/network-modifications/common/reactiveLimits/reactiveCapabilityCurve/index.d.ts +0 -0
  954. /package/dist/{components → features}/network-modifications/common/reactiveLimits/reactiveCapabilityCurve/index.js +0 -0
  955. /package/dist/{components → features}/network-modifications/common/reactiveLimits/reactiveCapabilityCurve/reactiveCapability.utils.d.ts +0 -0
  956. /package/dist/{components → features}/network-modifications/common/reactiveLimits/reactiveLimits.type.d.ts +0 -0
  957. /package/dist/{components → features}/network-modifications/common/reactiveLimits/reactiveLimits.type.js +0 -0
  958. /package/dist/{components → features}/network-modifications/common/reactiveLimits/reactiveLimits.utils.d.ts +0 -0
  959. /package/dist/{components → features}/network-modifications/common/setpoints/SetPointsForm.d.ts +0 -0
  960. /package/dist/{components → features}/network-modifications/common/setpoints/index.d.ts +0 -0
  961. /package/dist/{components → features}/network-modifications/common/setpoints/index.js +0 -0
  962. /package/dist/{components → features}/network-modifications/common/setpoints/setPoints.utils.d.ts +0 -0
  963. /package/dist/{components → features}/network-modifications/common/shortCircuit/ShortCircuitForm.d.ts +0 -0
  964. /package/dist/{components → features}/network-modifications/common/shortCircuit/index.d.ts +0 -0
  965. /package/dist/{components → features}/network-modifications/common/shortCircuit/index.js +0 -0
  966. /package/dist/{components → features}/network-modifications/common/shortCircuit/shortCircuitForm.type.d.ts +0 -0
  967. /package/dist/{components → features}/network-modifications/common/shortCircuit/shortCircuitForm.type.js +0 -0
  968. /package/dist/{components → features}/network-modifications/common/shortCircuit/shortCircuitForm.utils.d.ts +0 -0
  969. /package/dist/{components → features}/network-modifications/equipmentDeletion/EquipmentDeletionForm.d.ts +0 -0
  970. /package/dist/{components → features}/network-modifications/equipmentDeletion/equipmentDeletion.types.d.ts +0 -0
  971. /package/dist/{components → features}/network-modifications/equipmentDeletion/equipmentDeletion.types.js +0 -0
  972. /package/dist/{components → features}/network-modifications/equipmentDeletion/equipmentDeletion.utils.d.ts +0 -0
  973. /package/dist/{components → features}/network-modifications/equipmentDeletion/hvdcLccDeletion/HvdcLccDeletionSpecificForm.d.ts +0 -0
  974. /package/dist/{components → features}/network-modifications/equipmentDeletion/hvdcLccDeletion/ShuntCompensatorSelectionForm.d.ts +0 -0
  975. /package/dist/{components → features}/network-modifications/equipmentDeletion/hvdcLccDeletion/hvdcLccDeletion.utils.d.ts +0 -0
  976. /package/dist/{components → features}/network-modifications/equipmentDeletion/hvdcLccDeletion/index.d.ts +0 -0
  977. /package/dist/{components → features}/network-modifications/equipmentDeletion/hvdcLccDeletion/index.js +0 -0
  978. /package/dist/{components → features}/network-modifications/equipmentDeletion/hvdcLccDeletion/useHvdcLccDeletion.d.ts +0 -0
  979. /package/dist/{components → features}/network-modifications/equipmentDeletion/index.d.ts +0 -0
  980. /package/dist/{components → features}/network-modifications/equipmentDeletion/index.js +0 -0
  981. /package/dist/{components → features}/network-modifications/generator/creation/generatorCreation.types.d.ts +0 -0
  982. /package/dist/{components → features}/network-modifications/generator/creation/generatorCreation.types.js +0 -0
  983. /package/dist/{components → features}/network-modifications/generator/creation/index.d.ts +0 -0
  984. /package/dist/{components → features}/network-modifications/generator/creation/index.js +0 -0
  985. /package/dist/{components → features}/network-modifications/generator/generatorDialog.type.d.ts +0 -0
  986. /package/dist/{components → features}/network-modifications/generator/generatorDialog.type.js +0 -0
  987. /package/dist/{components → features}/network-modifications/generator/index.d.ts +0 -0
  988. /package/dist/{components → features}/network-modifications/generator/index.js +0 -0
  989. /package/dist/{components → features}/network-modifications/generator/modification/generatorModification.types.d.ts +0 -0
  990. /package/dist/{components → features}/network-modifications/generator/modification/generatorModification.types.js +0 -0
  991. /package/dist/{components → features}/network-modifications/generator/modification/index.d.ts +0 -0
  992. /package/dist/{components → features}/network-modifications/generator/modification/index.js +0 -0
  993. /package/dist/{components → features}/network-modifications/hooks/index.d.ts +0 -0
  994. /package/dist/{components → features}/network-modifications/hooks/index.js +0 -0
  995. /package/dist/{components → features}/network-modifications/hooks/useTabsWithError.d.ts +0 -0
  996. /package/dist/{components → features}/network-modifications/hooks/useTabsWithError.js +0 -0
  997. /package/dist/{components → features}/network-modifications/index.d.ts +0 -0
  998. /package/dist/{components → features}/network-modifications/load/common/LoadDialogHeader.d.ts +0 -0
  999. /package/dist/{components → features}/network-modifications/load/common/LoadDialogTabs.d.ts +0 -0
  1000. /package/dist/{components → features}/network-modifications/load/common/LoadDialogTabs.js +0 -0
  1001. /package/dist/{components → features}/network-modifications/load/common/LoadDialogTabsContent.d.ts +0 -0
  1002. /package/dist/{components → features}/network-modifications/load/common/LoadForm.d.ts +0 -0
  1003. /package/dist/{components → features}/network-modifications/load/common/LoadForm.js +0 -0
  1004. /package/dist/{components → features}/network-modifications/load/common/index.d.ts +0 -0
  1005. /package/dist/{components → features}/network-modifications/load/common/index.js +0 -0
  1006. /package/dist/{components → features}/network-modifications/load/common/load.types.d.ts +0 -0
  1007. /package/dist/{components → features}/network-modifications/load/common/load.types.js +0 -0
  1008. /package/dist/{components → features}/network-modifications/load/common/load.utils.d.ts +0 -0
  1009. /package/dist/{components → features}/network-modifications/load/creation/index.d.ts +0 -0
  1010. /package/dist/{components → features}/network-modifications/load/creation/index.js +0 -0
  1011. /package/dist/{components → features}/network-modifications/load/creation/loadCreation.types.d.ts +0 -0
  1012. /package/dist/{components → features}/network-modifications/load/creation/loadCreation.types.js +0 -0
  1013. /package/dist/{components → features}/network-modifications/load/creation/loadCreation.utils.d.ts +0 -0
  1014. /package/dist/{components → features}/network-modifications/load/index.d.ts +0 -0
  1015. /package/dist/{components → features}/network-modifications/load/index.js +0 -0
  1016. /package/dist/{components → features}/network-modifications/load/modification/index.d.ts +0 -0
  1017. /package/dist/{components → features}/network-modifications/load/modification/index.js +0 -0
  1018. /package/dist/{components → features}/network-modifications/load/modification/loadModification.types.d.ts +0 -0
  1019. /package/dist/{components → features}/network-modifications/load/modification/loadModification.types.js +0 -0
  1020. /package/dist/{components → features}/network-modifications/load/modification/loadModification.utils.d.ts +0 -0
  1021. /package/dist/{components → features}/network-modifications/shunt-compensator/common/CharacteristicsForm.d.ts +0 -0
  1022. /package/dist/{components → features}/network-modifications/shunt-compensator/common/characteristicsForm.utils.d.ts +0 -0
  1023. /package/dist/{components → features}/network-modifications/shunt-compensator/common/index.d.ts +0 -0
  1024. /package/dist/{components → features}/network-modifications/shunt-compensator/common/index.js +0 -0
  1025. /package/dist/{components → features}/network-modifications/shunt-compensator/common/shuntCompensator.types.d.ts +0 -0
  1026. /package/dist/{components → features}/network-modifications/shunt-compensator/common/shuntCompensator.types.js +0 -0
  1027. /package/dist/{components → features}/network-modifications/shunt-compensator/common/shuntCompensator.utils.d.ts +0 -0
  1028. /package/dist/{components → features}/network-modifications/shunt-compensator/common/shuntCompensator.utils.js +0 -0
  1029. /package/dist/{components → features}/network-modifications/shunt-compensator/creation/ShuntCompensatorCreationForm.d.ts +0 -0
  1030. /package/dist/{components → features}/network-modifications/shunt-compensator/creation/index.d.ts +0 -0
  1031. /package/dist/{components → features}/network-modifications/shunt-compensator/creation/index.js +0 -0
  1032. /package/dist/{components → features}/network-modifications/shunt-compensator/creation/shuntCompensatorCreation.types.d.ts +0 -0
  1033. /package/dist/{components → features}/network-modifications/shunt-compensator/creation/shuntCompensatorCreation.types.js +0 -0
  1034. /package/dist/{components → features}/network-modifications/shunt-compensator/creation/shuntCompensatorCreation.utils.d.ts +0 -0
  1035. /package/dist/{components → features}/network-modifications/shunt-compensator/index.d.ts +0 -0
  1036. /package/dist/{components → features}/network-modifications/shunt-compensator/index.js +0 -0
  1037. /package/dist/{components → features}/network-modifications/substation/creation/SubstationCreationForm.d.ts +0 -0
  1038. /package/dist/{components → features}/network-modifications/substation/creation/index.d.ts +0 -0
  1039. /package/dist/{components → features}/network-modifications/substation/creation/index.js +0 -0
  1040. /package/dist/{components → features}/network-modifications/substation/creation/substationCreation.types.d.ts +0 -0
  1041. /package/dist/{components → features}/network-modifications/substation/creation/substationCreation.types.js +0 -0
  1042. /package/dist/{components → features}/network-modifications/substation/creation/substationCreation.utils.d.ts +0 -0
  1043. /package/dist/{components → features}/network-modifications/substation/index.d.ts +0 -0
  1044. /package/dist/{components → features}/network-modifications/substation/index.js +0 -0
  1045. /package/dist/{components → features}/network-modifications/substation/modification/SubstationModificationForm.d.ts +0 -0
  1046. /package/dist/{components → features}/network-modifications/substation/modification/index.d.ts +0 -0
  1047. /package/dist/{components → features}/network-modifications/substation/modification/index.js +0 -0
  1048. /package/dist/{components → features}/network-modifications/substation/modification/substationModification.types.d.ts +0 -0
  1049. /package/dist/{components → features}/network-modifications/substation/modification/substationModification.types.js +0 -0
  1050. /package/dist/{components → features}/network-modifications/voltageLevel/creation/VoltageLevelCreationForm.d.ts +0 -0
  1051. /package/dist/{components → features}/network-modifications/voltageLevel/creation/index.d.ts +0 -0
  1052. /package/dist/{components → features}/network-modifications/voltageLevel/creation/tabs/characteristicsTab/CharacteristicsTab.d.ts +0 -0
  1053. /package/dist/{components → features}/network-modifications/voltageLevel/creation/tabs/characteristicsTab/index.d.ts +0 -0
  1054. /package/dist/{components → features}/network-modifications/voltageLevel/creation/tabs/characteristicsTab/index.js +0 -0
  1055. /package/dist/{components → features}/network-modifications/voltageLevel/creation/tabs/index.d.ts +0 -0
  1056. /package/dist/{components → features}/network-modifications/voltageLevel/creation/tabs/index.js +0 -0
  1057. /package/dist/{components → features}/network-modifications/voltageLevel/creation/tabs/structureTab/StructureTab.d.ts +0 -0
  1058. /package/dist/{components → features}/network-modifications/voltageLevel/creation/tabs/structureTab/couplingOmnibus/CouplingOmnibusCreation.d.ts +0 -0
  1059. /package/dist/{components → features}/network-modifications/voltageLevel/creation/tabs/structureTab/couplingOmnibus/CouplingOmnibusForm.d.ts +0 -0
  1060. /package/dist/{components → features}/network-modifications/voltageLevel/creation/tabs/structureTab/couplingOmnibus/index.d.ts +0 -0
  1061. /package/dist/{components → features}/network-modifications/voltageLevel/creation/tabs/structureTab/couplingOmnibus/index.js +0 -0
  1062. /package/dist/{components → features}/network-modifications/voltageLevel/creation/tabs/structureTab/index.d.ts +0 -0
  1063. /package/dist/{components → features}/network-modifications/voltageLevel/creation/tabs/structureTab/index.js +0 -0
  1064. /package/dist/{components → features}/network-modifications/voltageLevel/creation/tabs/structureTab/switchesBetweenSections/SwitchesBetweenSections.d.ts +0 -0
  1065. /package/dist/{components → features}/network-modifications/voltageLevel/creation/tabs/structureTab/switchesBetweenSections/index.d.ts +0 -0
  1066. /package/dist/{components → features}/network-modifications/voltageLevel/creation/tabs/structureTab/switchesBetweenSections/index.js +0 -0
  1067. /package/dist/{components → features}/network-modifications/voltageLevel/creation/tabs/substationTab/SubstationCreationSection.d.ts +0 -0
  1068. /package/dist/{components → features}/network-modifications/voltageLevel/creation/tabs/substationTab/SubstationTab.d.ts +0 -0
  1069. /package/dist/{components → features}/network-modifications/voltageLevel/creation/tabs/substationTab/index.d.ts +0 -0
  1070. /package/dist/{components → features}/network-modifications/voltageLevel/creation/tabs/substationTab/index.js +0 -0
  1071. /package/dist/{components → features}/network-modifications/voltageLevel/creation/voltageLevel.constants.d.ts +0 -0
  1072. /package/dist/{components → features}/network-modifications/voltageLevel/creation/voltageLevelCreation.types.d.ts +0 -0
  1073. /package/dist/{components → features}/network-modifications/voltageLevel/creation/voltageLevelCreation.types.js +0 -0
  1074. /package/dist/{components → features}/network-modifications/voltageLevel/creation/voltageLevelCreation.utils.d.ts +0 -0
  1075. /package/dist/{components → features}/network-modifications/voltageLevel/index.d.ts +0 -0
  1076. /package/dist/{components → features}/network-modifications/voltageLevel/modification/index.d.ts +0 -0
  1077. /package/dist/{components → features}/network-modifications/voltageLevel/modification/voltageLevelModification.types.js +0 -0
  1078. /package/dist/{components → features}/network-modifications/voltageLevel/voltage-level.type.d.ts +0 -0
  1079. /package/dist/{components → features}/network-modifications/voltageLevel/voltage-level.type.js +0 -0
  1080. /package/dist/{components → features}/node/build-status-chip.d.ts +0 -0
  1081. /package/dist/{components → features}/node/constant.d.ts +0 -0
  1082. /package/dist/{components → features}/node/constant.js +0 -0
  1083. /package/dist/{components → features}/node/index.d.ts +0 -0
  1084. /package/dist/{components → features}/node/index.js +0 -0
  1085. /package/dist/{components → features}/notifications/NotificationsProvider.d.ts +0 -0
  1086. /package/dist/{components → features}/notifications/NotificationsProvider.js +0 -0
  1087. /package/dist/{components → features}/notifications/contexts/NotificationsContext.d.ts +0 -0
  1088. /package/dist/{components → features}/notifications/contexts/NotificationsContext.js +0 -0
  1089. /package/dist/{components → features}/notifications/hooks/useListenerManager.d.ts +0 -0
  1090. /package/dist/{components → features}/notifications/hooks/useListenerManager.js +0 -0
  1091. /package/dist/{components → features}/notifications/hooks/useNotificationsListener.d.ts +0 -0
  1092. /package/dist/{components → features}/notifications/hooks/useNotificationsListener.js +0 -0
  1093. /package/dist/{components → features}/notifications/index.d.ts +0 -0
  1094. /package/dist/{components → features}/notifications/index.js +0 -0
  1095. /package/dist/{components → features}/parameters/common/ProviderParam.d.ts +0 -0
  1096. /package/dist/{components → features}/parameters/common/computing-type.d.ts +0 -0
  1097. /package/dist/{components → features}/parameters/common/computing-type.js +0 -0
  1098. /package/dist/{components → features}/parameters/common/constants.d.ts +0 -0
  1099. /package/dist/{components → features}/parameters/common/constants.js +0 -0
  1100. /package/dist/{components → features}/parameters/common/contingency-table/index.d.ts +0 -0
  1101. /package/dist/{components → features}/parameters/common/contingency-table/index.js +0 -0
  1102. /package/dist/{components → features}/parameters/common/contingency-table/types.d.ts +0 -0
  1103. /package/dist/{components → features}/parameters/common/contingency-table/types.js +0 -0
  1104. /package/dist/{components → features}/parameters/common/hook/index.d.ts +0 -0
  1105. /package/dist/{components → features}/parameters/common/hook/index.js +0 -0
  1106. /package/dist/{components → features}/parameters/common/hook/use-parameters-form.d.ts +0 -0
  1107. /package/dist/{components → features}/parameters/common/hook/use-tabs.d.ts +0 -0
  1108. /package/dist/{components → features}/parameters/common/hook/use-tabs.js +0 -0
  1109. /package/dist/{components → features}/parameters/common/index.d.ts +0 -0
  1110. /package/dist/{components → features}/parameters/common/index.js +0 -0
  1111. /package/dist/{components → features}/parameters/common/limitreductions/index.d.ts +0 -0
  1112. /package/dist/{components → features}/parameters/common/limitreductions/index.js +0 -0
  1113. /package/dist/{components → features}/parameters/common/limitreductions/limit-reduction-table-cell.d.ts +0 -0
  1114. /package/dist/{components → features}/parameters/common/limitreductions/limit-reduction-table-row.d.ts +0 -0
  1115. /package/dist/{components → features}/parameters/common/limitreductions/limit-reduction-table-row.js +0 -0
  1116. /package/dist/{components → features}/parameters/common/limitreductions/limit-reductions-label-column.d.ts +0 -0
  1117. /package/dist/{components → features}/parameters/common/limitreductions/limit-reductions-label-column.js +0 -0
  1118. /package/dist/{components → features}/parameters/common/limitreductions/limit-reductions-table-form.d.ts +0 -0
  1119. /package/dist/{components → features}/parameters/common/limitreductions/limit-reductions-tooltip-column.d.ts +0 -0
  1120. /package/dist/{components → features}/parameters/common/limitreductions/limit-reductions-tooltip-column.js +0 -0
  1121. /package/dist/{components → features}/parameters/common/line-separator.d.ts +0 -0
  1122. /package/dist/{components → features}/parameters/common/line-separator.js +0 -0
  1123. /package/dist/{components → features}/parameters/common/name-element-editor/index.d.ts +0 -0
  1124. /package/dist/{components → features}/parameters/common/name-element-editor/index.js +0 -0
  1125. /package/dist/{components → features}/parameters/common/name-element-editor/name-element-editor-form.d.ts +0 -0
  1126. /package/dist/{components → features}/parameters/common/parameter-field.d.ts +0 -0
  1127. /package/dist/{components → features}/parameters/common/parameter-table/constants.d.ts +0 -0
  1128. /package/dist/{components → features}/parameters/common/parameter-table/constants.js +0 -0
  1129. /package/dist/{components → features}/parameters/common/parameter-table/parameter-table.d.ts +0 -0
  1130. /package/dist/{components → features}/parameters/common/parameter-table/table-cell.d.ts +0 -0
  1131. /package/dist/{components → features}/parameters/common/parameter-table/table-row.d.ts +0 -0
  1132. /package/dist/{components → features}/parameters/common/parameter-table/types.d.ts +0 -0
  1133. /package/dist/{components → features}/parameters/common/parameter-table/types.js +0 -0
  1134. /package/dist/{components → features}/parameters/common/parameter-table-field/constants.d.ts +0 -0
  1135. /package/dist/{components → features}/parameters/common/parameter-table-field/constants.js +0 -0
  1136. /package/dist/{components → features}/parameters/common/parameter-table-field/index.d.ts +0 -0
  1137. /package/dist/{components → features}/parameters/common/parameter-table-field/index.js +0 -0
  1138. /package/dist/{components → features}/parameters/common/parameters-creation-dialog.d.ts +0 -0
  1139. /package/dist/{components → features}/parameters/common/parameters-edition-dialog-props.d.ts +0 -0
  1140. /package/dist/{components → features}/parameters/common/parameters-edition-dialog-props.js +0 -0
  1141. /package/dist/{components → features}/parameters/common/parameters.d.ts +0 -0
  1142. /package/dist/{components → features}/parameters/common/parameters.js +0 -0
  1143. /package/dist/{components → features}/parameters/common/voltage-level-table/custom-voltage-level-table-cell.d.ts +0 -0
  1144. /package/dist/{components → features}/parameters/common/voltage-level-table/custom-voltage-level-table-row.d.ts +0 -0
  1145. /package/dist/{components → features}/parameters/common/voltage-level-table/custom-voltage-level-table-row.js +0 -0
  1146. /package/dist/{components → features}/parameters/common/voltage-level-table/custom-voltage-level-table.d.ts +0 -0
  1147. /package/dist/{components → features}/parameters/common/voltage-level-table/index.d.ts +0 -0
  1148. /package/dist/{components → features}/parameters/common/voltage-level-table/index.js +0 -0
  1149. /package/dist/{components → features}/parameters/common/widget/index.d.ts +0 -0
  1150. /package/dist/{components → features}/parameters/common/widget/index.js +0 -0
  1151. /package/dist/{components → features}/parameters/common/widget/parameter-float.d.ts +0 -0
  1152. /package/dist/{components → features}/parameters/common/widget/parameter-group.d.ts +0 -0
  1153. /package/dist/{components → features}/parameters/common/widget/parameter-group.js +0 -0
  1154. /package/dist/{components → features}/parameters/common/widget/parameter-line-directory-items-input.d.ts +0 -0
  1155. /package/dist/{components → features}/parameters/common/widget/parameter-line-slider.d.ts +0 -0
  1156. /package/dist/{components → features}/parameters/common/widget/parameter-switch.d.ts +0 -0
  1157. /package/dist/{components → features}/parameters/common/widget/parameter-switch.js +0 -0
  1158. /package/dist/{components → features}/parameters/dynamic-margin-calculation/constants.d.ts +0 -0
  1159. /package/dist/{components → features}/parameters/dynamic-margin-calculation/constants.js +0 -0
  1160. /package/dist/{components → features}/parameters/dynamic-margin-calculation/dynamic-margin-calculation-dialog.d.ts +0 -0
  1161. /package/dist/{components → features}/parameters/dynamic-margin-calculation/dynamic-margin-calculation-dialog.js +0 -0
  1162. /package/dist/{components → features}/parameters/dynamic-margin-calculation/dynamic-margin-calculation-form.d.ts +0 -0
  1163. /package/dist/{components → features}/parameters/dynamic-margin-calculation/dynamic-margin-calculation-inline.d.ts +0 -0
  1164. /package/dist/{components → features}/parameters/dynamic-margin-calculation/dynamic-margin-calculation.type.d.ts +0 -0
  1165. /package/dist/{components → features}/parameters/dynamic-margin-calculation/dynamic-margin-calculation.type.js +0 -0
  1166. /package/dist/{components → features}/parameters/dynamic-margin-calculation/index.d.ts +0 -0
  1167. /package/dist/{components → features}/parameters/dynamic-margin-calculation/index.js +0 -0
  1168. /package/dist/{components → features}/parameters/dynamic-margin-calculation/use-dynamic-margin-calculation-parameters-form.d.ts +0 -0
  1169. /package/dist/{components → features}/parameters/dynamic-security-analysis/constants.d.ts +0 -0
  1170. /package/dist/{components → features}/parameters/dynamic-security-analysis/constants.js +0 -0
  1171. /package/dist/{components → features}/parameters/dynamic-security-analysis/contingency-parameters.d.ts +0 -0
  1172. /package/dist/{components → features}/parameters/dynamic-security-analysis/dynamic-security-analysis-inline.d.ts +0 -0
  1173. /package/dist/{components → features}/parameters/dynamic-security-analysis/dynamic-security-analysis-parameters-form.d.ts +0 -0
  1174. /package/dist/{components → features}/parameters/dynamic-security-analysis/dynamic-security-analysis.type.d.ts +0 -0
  1175. /package/dist/{components → features}/parameters/dynamic-security-analysis/dynamic-security-analysis.type.js +0 -0
  1176. /package/dist/{components → features}/parameters/dynamic-security-analysis/index.d.ts +0 -0
  1177. /package/dist/{components → features}/parameters/dynamic-security-analysis/index.js +0 -0
  1178. /package/dist/{components → features}/parameters/dynamic-security-analysis/scenario-parameters.d.ts +0 -0
  1179. /package/dist/{components → features}/parameters/dynamic-simulation/curve/common/checkbox-select.d.ts +0 -0
  1180. /package/dist/{components → features}/parameters/dynamic-simulation/curve/common/checkbox-select.js +0 -0
  1181. /package/dist/{components → features}/parameters/dynamic-simulation/curve/common/checkbox-treeview.d.ts +0 -0
  1182. /package/dist/{components → features}/parameters/dynamic-simulation/curve/common/checkbox-treeview.js +0 -0
  1183. /package/dist/{components → features}/parameters/dynamic-simulation/curve/common/curve.type.d.ts +0 -0
  1184. /package/dist/{components → features}/parameters/dynamic-simulation/curve/common/curve.type.js +0 -0
  1185. /package/dist/{components → features}/parameters/dynamic-simulation/curve/common/grid-buttons.d.ts +0 -0
  1186. /package/dist/{components → features}/parameters/dynamic-simulation/curve/common/grid-search.d.ts +0 -0
  1187. /package/dist/{components → features}/parameters/dynamic-simulation/curve/common/grid-search.js +0 -0
  1188. /package/dist/{components → features}/parameters/dynamic-simulation/curve/curve-parameters-constants.d.ts +0 -0
  1189. /package/dist/{components → features}/parameters/dynamic-simulation/curve/curve-parameters-constants.js +0 -0
  1190. /package/dist/{components → features}/parameters/dynamic-simulation/curve/curve-parameters.type.d.ts +0 -0
  1191. /package/dist/{components → features}/parameters/dynamic-simulation/curve/curve-parameters.type.js +0 -0
  1192. /package/dist/{components → features}/parameters/dynamic-simulation/curve/dialog/curve-preview.d.ts +0 -0
  1193. /package/dist/{components → features}/parameters/dynamic-simulation/curve/dialog/curve-selector.js +0 -0
  1194. /package/dist/{components → features}/parameters/dynamic-simulation/curve/dialog/model-filter-utils.d.ts +0 -0
  1195. /package/dist/{components → features}/parameters/dynamic-simulation/curve/dialog/model-filter-utils.js +0 -0
  1196. /package/dist/{components → features}/parameters/dynamic-simulation/curve/dialog/model-filter.d.ts +0 -0
  1197. /package/dist/{components → features}/parameters/dynamic-simulation/curve/dialog/model-filter.js +0 -0
  1198. /package/dist/{components → features}/parameters/dynamic-simulation/dynamic-simulation.type.d.ts +0 -0
  1199. /package/dist/{components → features}/parameters/dynamic-simulation/dynamic-simulation.type.js +0 -0
  1200. /package/dist/{components → features}/parameters/dynamic-simulation/hook/use-default-params.d.ts +0 -0
  1201. /package/dist/{components → features}/parameters/dynamic-simulation/hook/use-default-params.js +0 -0
  1202. /package/dist/{components → features}/parameters/dynamic-simulation/index.d.ts +0 -0
  1203. /package/dist/{components → features}/parameters/dynamic-simulation/index.js +0 -0
  1204. /package/dist/{components → features}/parameters/dynamic-simulation/mapping/index.d.ts +0 -0
  1205. /package/dist/{components → features}/parameters/dynamic-simulation/mapping/index.js +0 -0
  1206. /package/dist/{components → features}/parameters/dynamic-simulation/mapping/mapping-parameters-constants.d.ts +0 -0
  1207. /package/dist/{components → features}/parameters/dynamic-simulation/mapping/mapping-parameters-constants.js +0 -0
  1208. /package/dist/{components → features}/parameters/dynamic-simulation/mapping/mapping-parameters.d.ts +0 -0
  1209. /package/dist/{components → features}/parameters/dynamic-simulation/network/index.d.ts +0 -0
  1210. /package/dist/{components → features}/parameters/dynamic-simulation/network/index.js +0 -0
  1211. /package/dist/{components → features}/parameters/dynamic-simulation/network/network-parameters-constants.d.ts +0 -0
  1212. /package/dist/{components → features}/parameters/dynamic-simulation/network/network-parameters-constants.js +0 -0
  1213. /package/dist/{components → features}/parameters/dynamic-simulation/network/network-parameters.d.ts +0 -0
  1214. /package/dist/{components → features}/parameters/dynamic-simulation/solver/common-solver/common-solver-parameters-constants.d.ts +0 -0
  1215. /package/dist/{components → features}/parameters/dynamic-simulation/solver/common-solver/common-solver-parameters-constants.js +0 -0
  1216. /package/dist/{components → features}/parameters/dynamic-simulation/solver/common-solver/common-solver-parameters.d.ts +0 -0
  1217. /package/dist/{components → features}/parameters/dynamic-simulation/solver/common-solver/index.d.ts +0 -0
  1218. /package/dist/{components → features}/parameters/dynamic-simulation/solver/common-solver/index.js +0 -0
  1219. /package/dist/{components → features}/parameters/dynamic-simulation/solver/ida-solver/ida-solver-parameters-constants.d.ts +0 -0
  1220. /package/dist/{components → features}/parameters/dynamic-simulation/solver/ida-solver/ida-solver-parameters-constants.js +0 -0
  1221. /package/dist/{components → features}/parameters/dynamic-simulation/solver/ida-solver/ida-solver-parameters.d.ts +0 -0
  1222. /package/dist/{components → features}/parameters/dynamic-simulation/solver/ida-solver/index.d.ts +0 -0
  1223. /package/dist/{components → features}/parameters/dynamic-simulation/solver/ida-solver/index.js +0 -0
  1224. /package/dist/{components → features}/parameters/dynamic-simulation/solver/index.d.ts +0 -0
  1225. /package/dist/{components → features}/parameters/dynamic-simulation/solver/index.js +0 -0
  1226. /package/dist/{components → features}/parameters/dynamic-simulation/solver/sim-solver/index.d.ts +0 -0
  1227. /package/dist/{components → features}/parameters/dynamic-simulation/solver/sim-solver/index.js +0 -0
  1228. /package/dist/{components → features}/parameters/dynamic-simulation/solver/sim-solver/simplified-solver-parameters-constant.d.ts +0 -0
  1229. /package/dist/{components → features}/parameters/dynamic-simulation/solver/sim-solver/simplified-solver-parameters-constant.js +0 -0
  1230. /package/dist/{components → features}/parameters/dynamic-simulation/solver/sim-solver/simplified-solver-parameters.d.ts +0 -0
  1231. /package/dist/{components → features}/parameters/dynamic-simulation/solver/solver-parameters-constants.d.ts +0 -0
  1232. /package/dist/{components → features}/parameters/dynamic-simulation/solver/solver-parameters-constants.js +0 -0
  1233. /package/dist/{components → features}/parameters/dynamic-simulation/solver/solver-parameters.d.ts +0 -0
  1234. /package/dist/{components → features}/parameters/dynamic-simulation/time-delay/index.d.ts +0 -0
  1235. /package/dist/{components → features}/parameters/dynamic-simulation/time-delay/index.js +0 -0
  1236. /package/dist/{components → features}/parameters/dynamic-simulation/time-delay/time-delay-parameters-constants.d.ts +0 -0
  1237. /package/dist/{components → features}/parameters/dynamic-simulation/time-delay/time-delay-parameters-constants.js +0 -0
  1238. /package/dist/{components → features}/parameters/dynamic-simulation/time-delay/time-delay-parameters.d.ts +0 -0
  1239. /package/dist/{components → features}/parameters/dynamic-simulation/use-dynamic-simulation-parameters-form.d.ts +0 -0
  1240. /package/dist/{components → features}/parameters/index.d.ts +0 -0
  1241. /package/dist/{components → features}/parameters/index.js +0 -0
  1242. /package/dist/{components → features}/parameters/loadflow/constants.d.ts +0 -0
  1243. /package/dist/{components → features}/parameters/loadflow/constants.js +0 -0
  1244. /package/dist/{components → features}/parameters/loadflow/index.d.ts +0 -0
  1245. /package/dist/{components → features}/parameters/loadflow/index.js +0 -0
  1246. /package/dist/{components → features}/parameters/loadflow/load-flow-general-parameters.d.ts +0 -0
  1247. /package/dist/{components → features}/parameters/loadflow/load-flow-parameters-content.d.ts +0 -0
  1248. /package/dist/{components → features}/parameters/loadflow/load-flow-parameters-context.d.ts +0 -0
  1249. /package/dist/{components → features}/parameters/loadflow/load-flow-parameters-context.js +0 -0
  1250. /package/dist/{components → features}/parameters/loadflow/load-flow-parameters-dialog.d.ts +0 -0
  1251. /package/dist/{components → features}/parameters/loadflow/load-flow-parameters-form.d.ts +0 -0
  1252. /package/dist/{components → features}/parameters/loadflow/load-flow-parameters-header.d.ts +0 -0
  1253. /package/dist/{components → features}/parameters/loadflow/load-flow-parameters-inline.d.ts +0 -0
  1254. /package/dist/{components → features}/parameters/loadflow/load-flow-parameters-provider.d.ts +0 -0
  1255. /package/dist/{components → features}/parameters/loadflow/load-flow-parameters-provider.js +0 -0
  1256. /package/dist/{components → features}/parameters/loadflow/load-flow-parameters-type.d.ts +0 -0
  1257. /package/dist/{components → features}/parameters/loadflow/load-flow-parameters-type.js +0 -0
  1258. /package/dist/{components → features}/parameters/loadflow/use-load-flow-context.d.ts +0 -0
  1259. /package/dist/{components → features}/parameters/loadflow/use-load-flow-context.js +0 -0
  1260. /package/dist/{components → features}/parameters/network-visualizations/constants.d.ts +0 -0
  1261. /package/dist/{components → features}/parameters/network-visualizations/constants.js +0 -0
  1262. /package/dist/{components → features}/parameters/network-visualizations/index.d.ts +0 -0
  1263. /package/dist/{components → features}/parameters/network-visualizations/index.js +0 -0
  1264. /package/dist/{components → features}/parameters/network-visualizations/map-parameters.d.ts +0 -0
  1265. /package/dist/{components → features}/parameters/network-visualizations/network-area-diagram-parameters.d.ts +0 -0
  1266. /package/dist/{components → features}/parameters/network-visualizations/network-visualizations-form.d.ts +0 -0
  1267. /package/dist/{components → features}/parameters/network-visualizations/network-visualizations-parameters-dialog.d.ts +0 -0
  1268. /package/dist/{components → features}/parameters/network-visualizations/network-visualizations-parameters-inline.d.ts +0 -0
  1269. /package/dist/{components → features}/parameters/network-visualizations/network-visualizations.types.d.ts +0 -0
  1270. /package/dist/{components → features}/parameters/network-visualizations/network-visualizations.types.js +0 -0
  1271. /package/dist/{components → features}/parameters/network-visualizations/single-line-diagram-parameters.d.ts +0 -0
  1272. /package/dist/{components → features}/parameters/parameters-style.d.ts +0 -0
  1273. /package/dist/{components → features}/parameters/parameters-style.js +0 -0
  1274. /package/dist/{components → features}/parameters/pcc-min/index.d.ts +0 -0
  1275. /package/dist/{components → features}/parameters/pcc-min/index.js +0 -0
  1276. /package/dist/{components → features}/parameters/pcc-min/pcc-min-form-utils.d.ts +0 -0
  1277. /package/dist/{components → features}/parameters/pcc-min/pcc-min-parameters-dialog.d.ts +0 -0
  1278. /package/dist/{components → features}/parameters/pcc-min/pcc-min-parameters-form.d.ts +0 -0
  1279. /package/dist/{components → features}/parameters/pcc-min/pcc-min-parameters-inline.d.ts +0 -0
  1280. /package/dist/{components → features}/parameters/security-analysis/index.d.ts +0 -0
  1281. /package/dist/{components → features}/parameters/security-analysis/index.js +0 -0
  1282. /package/dist/{components → features}/parameters/security-analysis/security-analysis-parameters-dialog.d.ts +0 -0
  1283. /package/dist/{components → features}/parameters/security-analysis/security-analysis-parameters-inline.d.ts +0 -0
  1284. /package/dist/{components → features}/parameters/security-analysis/security-analysis-parameters-selector.d.ts +0 -0
  1285. /package/dist/{components → features}/parameters/security-analysis/security-analysis-violations-hiding.d.ts +0 -0
  1286. /package/dist/{components → features}/parameters/security-analysis/types.d.ts +0 -0
  1287. /package/dist/{components → features}/parameters/security-analysis/types.js +0 -0
  1288. /package/dist/{components → features}/parameters/security-analysis/use-security-analysis-parameters-form.d.ts +0 -0
  1289. /package/dist/{components → features}/parameters/sensi/constants.d.ts +0 -0
  1290. /package/dist/{components → features}/parameters/sensi/constants.js +0 -0
  1291. /package/dist/{components → features}/parameters/sensi/index.d.ts +0 -0
  1292. /package/dist/{components → features}/parameters/sensi/index.js +0 -0
  1293. /package/dist/{components → features}/parameters/sensi/sensitivity-analysis-parameters-dialog.d.ts +0 -0
  1294. /package/dist/{components → features}/parameters/sensi/sensitivity-analysis-parameters-factor-count.d.ts +0 -0
  1295. /package/dist/{components → features}/parameters/sensi/sensitivity-analysis-parameters-factor-count.js +0 -0
  1296. /package/dist/{components → features}/parameters/sensi/sensitivity-analysis-parameters-form.d.ts +0 -0
  1297. /package/dist/{components → features}/parameters/sensi/sensitivity-analysis-parameters-inline.d.ts +0 -0
  1298. /package/dist/{components → features}/parameters/sensi/sensitivity-parameters-fields.d.ts +0 -0
  1299. /package/dist/{components → features}/parameters/sensi/sensitivity-parameters-selector.d.ts +0 -0
  1300. /package/dist/{components → features}/parameters/sensi/use-sensitivity-analysis-parameters.d.ts +0 -0
  1301. /package/dist/{components → features}/parameters/short-circuit/columns-definition.d.ts +0 -0
  1302. /package/dist/{components → features}/parameters/short-circuit/constants.d.ts +0 -0
  1303. /package/dist/{components → features}/parameters/short-circuit/constants.js +0 -0
  1304. /package/dist/{components → features}/parameters/short-circuit/index.d.ts +0 -0
  1305. /package/dist/{components → features}/parameters/short-circuit/index.js +0 -0
  1306. /package/dist/{components → features}/parameters/short-circuit/short-circuit-general-tab-panel.d.ts +0 -0
  1307. /package/dist/{components → features}/parameters/short-circuit/short-circuit-icc-cluster-table-cell.d.ts +0 -0
  1308. /package/dist/{components → features}/parameters/short-circuit/short-circuit-icc-cluster-table-row.d.ts +0 -0
  1309. /package/dist/{components → features}/parameters/short-circuit/short-circuit-icc-cluster-table.d.ts +0 -0
  1310. /package/dist/{components → features}/parameters/short-circuit/short-circuit-icc-material-table-cell.d.ts +0 -0
  1311. /package/dist/{components → features}/parameters/short-circuit/short-circuit-icc-material-table-row.d.ts +0 -0
  1312. /package/dist/{components → features}/parameters/short-circuit/short-circuit-icc-material-table-row.js +0 -0
  1313. /package/dist/{components → features}/parameters/short-circuit/short-circuit-icc-material-table.d.ts +0 -0
  1314. /package/dist/{components → features}/parameters/short-circuit/short-circuit-parameters-content.d.ts +0 -0
  1315. /package/dist/{components → features}/parameters/short-circuit/short-circuit-parameters-dialog.d.ts +0 -0
  1316. /package/dist/{components → features}/parameters/short-circuit/short-circuit-parameters-form.d.ts +0 -0
  1317. /package/dist/{components → features}/parameters/short-circuit/short-circuit-parameters-inline.d.ts +0 -0
  1318. /package/dist/{components → features}/parameters/short-circuit/short-circuit-parameters.type.d.ts +0 -0
  1319. /package/dist/{components → features}/parameters/short-circuit/short-circuit-parameters.type.js +0 -0
  1320. /package/dist/{components → features}/parameters/short-circuit/short-circuit-power-electronics-tab-panel.d.ts +0 -0
  1321. /package/dist/{components → features}/parameters/short-circuit/short-circuit-study-area-tab-panel.d.ts +0 -0
  1322. /package/dist/{components → features}/parameters/short-circuit/short-circuit-voltage-table.d.ts +0 -0
  1323. /package/dist/{components → features}/parameters/short-circuit/short-circuit-voltage-table.js +0 -0
  1324. /package/dist/{components → features}/parameters/voltage-init/constants.d.ts +0 -0
  1325. /package/dist/{components → features}/parameters/voltage-init/constants.js +0 -0
  1326. /package/dist/{components → features}/parameters/voltage-init/equipment-selection-parameters.d.ts +0 -0
  1327. /package/dist/{components → features}/parameters/voltage-init/general-parameters.d.ts +0 -0
  1328. /package/dist/{components → features}/parameters/voltage-init/index.d.ts +0 -0
  1329. /package/dist/{components → features}/parameters/voltage-init/index.js +0 -0
  1330. /package/dist/{components → features}/parameters/voltage-init/voltage-init-form-utils.d.ts +0 -0
  1331. /package/dist/{components → features}/parameters/voltage-init/voltage-init-parameters-dialog.d.ts +0 -0
  1332. /package/dist/{components → features}/parameters/voltage-init/voltage-init-parameters-form.d.ts +0 -0
  1333. /package/dist/{components → features}/parameters/voltage-init/voltage-init-parameters-inline.d.ts +0 -0
  1334. /package/dist/{components → features}/parameters/voltage-init/voltage-init.type.d.ts +0 -0
  1335. /package/dist/{components → features}/parameters/voltage-init/voltage-init.type.js +0 -0
  1336. /package/dist/{components → features}/parameters/voltage-init/voltage-limits-parameters.d.ts +0 -0
  1337. /package/dist/{components → features}/topBar/AboutDialog.d.ts +0 -0
  1338. /package/dist/{components → features}/topBar/DevModeBanner.d.ts +0 -0
  1339. /package/dist/{components → features}/topBar/DevModeBanner.js +0 -0
  1340. /package/dist/{components → features}/topBar/GridLogo.d.ts +0 -0
  1341. /package/dist/{components → features}/topBar/GridLogo.js +0 -0
  1342. /package/dist/{components → features}/topBar/TopBar.d.ts +0 -0
  1343. /package/dist/{components → features}/topBar/TopBar.js +0 -0
  1344. /package/dist/{components → features}/topBar/UserInformationDialog.d.ts +0 -0
  1345. /package/dist/{components → features}/topBar/UserSettingsDialog.d.ts +0 -0
  1346. /package/dist/{components → features}/topBar/UserSettingsDialog.js +0 -0
  1347. /package/dist/{components → features}/topBar/index.d.ts +0 -0
  1348. /package/dist/{components → features}/topBar/index.js +0 -0
@@ -1,1154 +0,0 @@
1
- import { Field } from 'react-querybuilder';
2
- import { CombinatorType, DataType, OperatorType } from './expertFilter.type';
3
- import { FieldType } from '../../../utils/types/fieldType';
4
- import { ALL_EQUIPMENTS } from '../../../utils';
5
- export declare enum RULES {
6
- EMPTY_RULE = "emptyRule",
7
- EMPTY_GROUP = "emptyGroup",
8
- INCORRECT_RULE = "incorrectRule",
9
- BETWEEN_RULE = "betweenRule"
10
- }
11
- export declare const EXPERT_FILTER_QUERY = "rules";
12
- export declare const EXPERT_FILTER_EQUIPMENTS: typeof ALL_EQUIPMENTS;
13
- export declare const ENERGY_SOURCE_OPTIONS: {
14
- name: string;
15
- label: string;
16
- }[];
17
- export declare const SHUNT_COMPENSATOR_TYPE_OPTIONS: {
18
- name: string;
19
- label: string;
20
- }[];
21
- export declare const LOAD_TYPE_OPTIONS: {
22
- name: string;
23
- label: string;
24
- }[];
25
- export declare const RATIO_REGULATION_MODE_OPTIONS: {
26
- name: string;
27
- label: string;
28
- }[];
29
- export declare const PHASE_REGULATION_MODE_OPTIONS: {
30
- name: string;
31
- label: string;
32
- }[];
33
- export declare const SVAR_REGULATION_MODE_OPTIONS: {
34
- name: string;
35
- label: string;
36
- }[];
37
- export declare const REGULATION_TYPE_OPTIONS: {
38
- name: string;
39
- label: string;
40
- }[];
41
- export declare const CONVERTERS_MODE_OPTIONS: {
42
- name: string;
43
- label: string;
44
- }[];
45
- export declare const OPERATOR_OPTIONS: {
46
- EQUALS: {
47
- name: string;
48
- customName: OperatorType;
49
- label: string;
50
- };
51
- NOT_EQUALS: {
52
- name: string;
53
- customName: OperatorType;
54
- label: string;
55
- };
56
- EXISTS: {
57
- name: OperatorType;
58
- customName: OperatorType;
59
- label: string;
60
- };
61
- NOT_EXISTS: {
62
- name: OperatorType;
63
- customName: OperatorType;
64
- label: string;
65
- };
66
- LOWER: {
67
- name: string;
68
- customName: OperatorType;
69
- label: string;
70
- };
71
- LOWER_OR_EQUALS: {
72
- name: string;
73
- customName: OperatorType;
74
- label: string;
75
- };
76
- GREATER: {
77
- name: string;
78
- customName: OperatorType;
79
- label: string;
80
- };
81
- GREATER_OR_EQUALS: {
82
- name: string;
83
- customName: OperatorType;
84
- label: string;
85
- };
86
- BETWEEN: {
87
- name: string;
88
- customName: OperatorType;
89
- label: string;
90
- };
91
- IN: {
92
- name: string;
93
- customName: OperatorType;
94
- label: string;
95
- };
96
- NOT_IN: {
97
- name: string;
98
- customName: OperatorType;
99
- label: string;
100
- };
101
- IS: {
102
- name: OperatorType;
103
- customName: OperatorType;
104
- label: string;
105
- };
106
- CONTAINS: {
107
- name: string;
108
- customName: OperatorType;
109
- label: string;
110
- };
111
- BEGINS_WITH: {
112
- name: string;
113
- customName: OperatorType;
114
- label: string;
115
- };
116
- ENDS_WITH: {
117
- name: string;
118
- customName: OperatorType;
119
- label: string;
120
- };
121
- IS_PART_OF: {
122
- name: OperatorType;
123
- customName: OperatorType;
124
- label: string;
125
- };
126
- IS_NOT_PART_OF: {
127
- name: OperatorType;
128
- customName: OperatorType;
129
- label: string;
130
- };
131
- };
132
- export declare const COMBINATOR_OPTIONS: {
133
- AND: {
134
- name: CombinatorType;
135
- label: string;
136
- };
137
- OR: {
138
- name: CombinatorType;
139
- label: string;
140
- };
141
- };
142
- export declare const FIELDS_OPTIONS: {
143
- ID: {
144
- name: FieldType;
145
- label: string;
146
- dataType: DataType;
147
- };
148
- NAME: {
149
- name: FieldType;
150
- label: string;
151
- dataType: DataType;
152
- };
153
- NOMINAL_VOLTAGE: {
154
- name: FieldType;
155
- label: string;
156
- unit: string;
157
- dataType: DataType;
158
- inputType: string;
159
- };
160
- MIN_P: {
161
- name: FieldType;
162
- label: string;
163
- unit: string;
164
- dataType: DataType;
165
- inputType: string;
166
- };
167
- MAX_P: {
168
- name: FieldType;
169
- label: string;
170
- unit: string;
171
- dataType: DataType;
172
- inputType: string;
173
- };
174
- P: {
175
- name: FieldType;
176
- label: string;
177
- unit: string;
178
- dataType: DataType;
179
- inputType: string;
180
- };
181
- Q: {
182
- name: FieldType;
183
- label: string;
184
- unit: string;
185
- dataType: DataType;
186
- inputType: string;
187
- };
188
- P_ABSOLUTE: {
189
- name: FieldType;
190
- label: string;
191
- unit: string;
192
- dataType: DataType;
193
- inputType: string;
194
- };
195
- Q_ABSOLUTE: {
196
- name: FieldType;
197
- label: string;
198
- unit: string;
199
- dataType: DataType;
200
- inputType: string;
201
- };
202
- TARGET_P: {
203
- name: FieldType;
204
- label: string;
205
- unit: string;
206
- dataType: DataType;
207
- inputType: string;
208
- };
209
- TARGET_V: {
210
- name: FieldType;
211
- label: string;
212
- unit: string;
213
- dataType: DataType;
214
- inputType: string;
215
- };
216
- TARGET_Q: {
217
- name: FieldType;
218
- label: string;
219
- unit: string;
220
- dataType: DataType;
221
- inputType: string;
222
- };
223
- ENERGY_SOURCE: {
224
- name: FieldType;
225
- label: string;
226
- dataType: DataType;
227
- values: {
228
- name: string;
229
- label: string;
230
- }[];
231
- valueEditorType: string;
232
- defaultValue: string;
233
- };
234
- COUNTRY: {
235
- name: FieldType;
236
- label: string;
237
- dataType: DataType;
238
- valueEditorType: string;
239
- };
240
- VOLTAGE_REGULATOR_ON: {
241
- name: FieldType;
242
- label: string;
243
- dataType: DataType;
244
- defaultValue: boolean;
245
- valueEditorType: string;
246
- };
247
- PLANNED_ACTIVE_POWER_SET_POINT: {
248
- name: FieldType;
249
- label: string;
250
- unit: string;
251
- dataType: DataType;
252
- inputType: string;
253
- };
254
- CONNECTED: {
255
- name: FieldType;
256
- label: string;
257
- dataType: DataType;
258
- defaultValue: boolean;
259
- valueEditorType: string;
260
- };
261
- RATED_S: {
262
- name: FieldType;
263
- label: string;
264
- unit: string;
265
- dataType: DataType;
266
- inputType: string;
267
- };
268
- RATED_S1: {
269
- name: FieldType;
270
- label: string;
271
- unit: string;
272
- dataType: DataType;
273
- inputType: string;
274
- };
275
- RATED_S2: {
276
- name: FieldType;
277
- label: string;
278
- unit: string;
279
- dataType: DataType;
280
- inputType: string;
281
- };
282
- RATED_S3: {
283
- name: FieldType;
284
- label: string;
285
- unit: string;
286
- dataType: DataType;
287
- inputType: string;
288
- };
289
- MARGINAL_COST: {
290
- name: FieldType;
291
- label: string;
292
- dataType: DataType;
293
- inputType: string;
294
- };
295
- PLANNED_OUTAGE_RATE: {
296
- name: FieldType;
297
- label: string;
298
- dataType: DataType;
299
- inputType: string;
300
- };
301
- FORCED_OUTAGE_RATE: {
302
- name: FieldType;
303
- label: string;
304
- dataType: DataType;
305
- inputType: string;
306
- };
307
- VOLTAGE_LEVEL_ID: {
308
- name: FieldType;
309
- label: string;
310
- dataType: DataType;
311
- };
312
- P0: {
313
- name: FieldType;
314
- label: string;
315
- unit: string;
316
- dataType: DataType;
317
- inputType: string;
318
- };
319
- Q0: {
320
- name: FieldType;
321
- label: string;
322
- unit: string;
323
- dataType: DataType;
324
- inputType: string;
325
- };
326
- LOW_VOLTAGE_LIMIT: {
327
- name: FieldType;
328
- label: string;
329
- unit: string;
330
- dataType: DataType;
331
- inputType: string;
332
- };
333
- HIGH_VOLTAGE_LIMIT: {
334
- name: FieldType;
335
- label: string;
336
- unit: string;
337
- dataType: DataType;
338
- inputType: string;
339
- };
340
- MAXIMUM_SECTION_COUNT: {
341
- name: FieldType;
342
- label: string;
343
- dataType: DataType;
344
- inputType: string;
345
- };
346
- SECTION_COUNT: {
347
- name: FieldType;
348
- label: string;
349
- dataType: DataType;
350
- inputType: string;
351
- };
352
- SHUNT_COMPENSATOR_TYPE: {
353
- name: FieldType;
354
- label: string;
355
- dataType: DataType;
356
- values: {
357
- name: string;
358
- label: string;
359
- }[];
360
- valueEditorType: string;
361
- defaultValue: string;
362
- };
363
- MAX_Q_AT_NOMINAL_V: {
364
- name: FieldType;
365
- label: string;
366
- unit: string;
367
- dataType: DataType;
368
- inputType: string;
369
- };
370
- MIN_Q_AT_NOMINAL_V: {
371
- name: FieldType;
372
- label: string;
373
- unit: string;
374
- dataType: DataType;
375
- inputType: string;
376
- };
377
- FIX_Q_AT_NOMINAL_V: {
378
- name: FieldType;
379
- label: string;
380
- unit: string;
381
- dataType: DataType;
382
- inputType: string;
383
- };
384
- SWITCHED_ON_Q_AT_NOMINAL_V: {
385
- name: FieldType;
386
- label: string;
387
- unit: string;
388
- dataType: DataType;
389
- inputType: string;
390
- };
391
- MAX_SUSCEPTANCE: {
392
- name: FieldType;
393
- label: string;
394
- unit: string;
395
- dataType: DataType;
396
- inputType: string;
397
- };
398
- MIN_SUSCEPTANCE: {
399
- name: FieldType;
400
- label: string;
401
- unit: string;
402
- dataType: DataType;
403
- inputType: string;
404
- };
405
- SWITCHED_ON_SUSCEPTANCE: {
406
- name: FieldType;
407
- label: string;
408
- unit: string;
409
- dataType: DataType;
410
- inputType: string;
411
- };
412
- CONNECTED_1: {
413
- name: FieldType;
414
- label: string;
415
- dataType: DataType;
416
- defaultValue: boolean;
417
- valueEditorType: string;
418
- };
419
- CONNECTED_2: {
420
- name: FieldType;
421
- label: string;
422
- dataType: DataType;
423
- defaultValue: boolean;
424
- valueEditorType: string;
425
- };
426
- CONNECTED_3: {
427
- name: FieldType;
428
- label: string;
429
- dataType: DataType;
430
- defaultValue: boolean;
431
- valueEditorType: string;
432
- };
433
- VOLTAGE_LEVEL_ID_1: {
434
- name: FieldType;
435
- label: string;
436
- dataType: DataType;
437
- };
438
- VOLTAGE_LEVEL_ID_2: {
439
- name: FieldType;
440
- label: string;
441
- dataType: DataType;
442
- };
443
- VOLTAGE_LEVEL_ID_3: {
444
- name: FieldType;
445
- label: string;
446
- dataType: DataType;
447
- };
448
- NOMINAL_VOLTAGE_1: {
449
- name: FieldType;
450
- label: string;
451
- unit: string;
452
- dataType: DataType;
453
- inputType: string;
454
- };
455
- NOMINAL_VOLTAGE_2: {
456
- name: FieldType;
457
- label: string;
458
- unit: string;
459
- dataType: DataType;
460
- inputType: string;
461
- };
462
- NOMINAL_VOLTAGE_3: {
463
- name: FieldType;
464
- label: string;
465
- unit: string;
466
- dataType: DataType;
467
- inputType: string;
468
- };
469
- RATED_VOLTAGE_1: {
470
- name: FieldType;
471
- label: string;
472
- unit: string;
473
- dataType: DataType;
474
- inputType: string;
475
- };
476
- RATED_VOLTAGE_2: {
477
- name: FieldType;
478
- label: string;
479
- unit: string;
480
- dataType: DataType;
481
- inputType: string;
482
- };
483
- RATED_VOLTAGE_0: {
484
- name: FieldType;
485
- label: string;
486
- unit: string;
487
- dataType: DataType;
488
- inputType: string;
489
- };
490
- RATED_VOLTAGE_3: {
491
- name: FieldType;
492
- label: string;
493
- unit: string;
494
- dataType: DataType;
495
- inputType: string;
496
- };
497
- COUNTRY_1: {
498
- name: FieldType;
499
- label: string;
500
- dataType: DataType;
501
- valueEditorType: string;
502
- };
503
- COUNTRY_2: {
504
- name: FieldType;
505
- label: string;
506
- dataType: DataType;
507
- valueEditorType: string;
508
- };
509
- SERIE_RESISTANCE: {
510
- name: FieldType;
511
- label: string;
512
- unit: string;
513
- dataType: DataType;
514
- inputType: string;
515
- };
516
- SERIE_RESISTANCE_1: {
517
- name: FieldType;
518
- label: string;
519
- unit: string;
520
- dataType: DataType;
521
- inputType: string;
522
- };
523
- SERIE_RESISTANCE_2: {
524
- name: FieldType;
525
- label: string;
526
- unit: string;
527
- dataType: DataType;
528
- inputType: string;
529
- };
530
- SERIE_RESISTANCE_3: {
531
- name: FieldType;
532
- label: string;
533
- unit: string;
534
- dataType: DataType;
535
- inputType: string;
536
- };
537
- SERIE_REACTANCE: {
538
- name: FieldType;
539
- label: string;
540
- unit: string;
541
- dataType: DataType;
542
- inputType: string;
543
- };
544
- SERIE_REACTANCE_1: {
545
- name: FieldType;
546
- label: string;
547
- unit: string;
548
- dataType: DataType;
549
- inputType: string;
550
- };
551
- SERIE_REACTANCE_2: {
552
- name: FieldType;
553
- label: string;
554
- unit: string;
555
- dataType: DataType;
556
- inputType: string;
557
- };
558
- SERIE_REACTANCE_3: {
559
- name: FieldType;
560
- label: string;
561
- unit: string;
562
- dataType: DataType;
563
- inputType: string;
564
- };
565
- SHUNT_CONDUCTANCE_1: {
566
- name: FieldType;
567
- label: string;
568
- unit: string;
569
- dataType: DataType;
570
- inputType: string;
571
- };
572
- SHUNT_CONDUCTANCE_2: {
573
- name: FieldType;
574
- label: string;
575
- unit: string;
576
- dataType: DataType;
577
- inputType: string;
578
- };
579
- SHUNT_SUSCEPTANCE_1: {
580
- name: FieldType;
581
- label: string;
582
- unit: string;
583
- dataType: DataType;
584
- inputType: string;
585
- };
586
- SHUNT_SUSCEPTANCE_2: {
587
- name: FieldType;
588
- label: string;
589
- unit: string;
590
- dataType: DataType;
591
- inputType: string;
592
- };
593
- MAGNETIZING_CONDUCTANCE: {
594
- name: FieldType;
595
- label: string;
596
- unit: string;
597
- dataType: DataType;
598
- inputType: string;
599
- };
600
- MAGNETIZING_CONDUCTANCE_1: {
601
- name: FieldType;
602
- label: string;
603
- unit: string;
604
- dataType: DataType;
605
- inputType: string;
606
- };
607
- MAGNETIZING_CONDUCTANCE_2: {
608
- name: FieldType;
609
- label: string;
610
- unit: string;
611
- dataType: DataType;
612
- inputType: string;
613
- };
614
- MAGNETIZING_CONDUCTANCE_3: {
615
- name: FieldType;
616
- label: string;
617
- unit: string;
618
- dataType: DataType;
619
- inputType: string;
620
- };
621
- MAGNETIZING_SUSCEPTANCE: {
622
- name: FieldType;
623
- label: string;
624
- unit: string;
625
- dataType: DataType;
626
- inputType: string;
627
- };
628
- MAGNETIZING_SUSCEPTANCE_1: {
629
- name: FieldType;
630
- label: string;
631
- unit: string;
632
- dataType: DataType;
633
- inputType: string;
634
- };
635
- MAGNETIZING_SUSCEPTANCE_2: {
636
- name: FieldType;
637
- label: string;
638
- unit: string;
639
- dataType: DataType;
640
- inputType: string;
641
- };
642
- MAGNETIZING_SUSCEPTANCE_3: {
643
- name: FieldType;
644
- label: string;
645
- unit: string;
646
- dataType: DataType;
647
- inputType: string;
648
- };
649
- LOAD_TYPE: {
650
- name: FieldType;
651
- label: string;
652
- dataType: DataType;
653
- values: {
654
- name: string;
655
- label: string;
656
- }[];
657
- valueEditorType: string;
658
- defaultValue: string;
659
- };
660
- HAS_RATIO_TAP_CHANGER: {
661
- name: FieldType;
662
- label: string;
663
- dataType: DataType;
664
- defaultValue: boolean;
665
- valueEditorType: string;
666
- };
667
- HAS_RATIO_TAP_CHANGER_1: {
668
- name: FieldType;
669
- label: string;
670
- dataType: DataType;
671
- defaultValue: boolean;
672
- valueEditorType: string;
673
- };
674
- HAS_RATIO_TAP_CHANGER_2: {
675
- name: FieldType;
676
- label: string;
677
- dataType: DataType;
678
- defaultValue: boolean;
679
- valueEditorType: string;
680
- };
681
- HAS_RATIO_TAP_CHANGER_3: {
682
- name: FieldType;
683
- label: string;
684
- dataType: DataType;
685
- defaultValue: boolean;
686
- valueEditorType: string;
687
- };
688
- LOAD_TAP_CHANGING_CAPABILITIES: {
689
- name: FieldType;
690
- label: string;
691
- dataType: DataType;
692
- defaultValue: boolean;
693
- valueEditorType: string;
694
- };
695
- LOAD_TAP_CHANGING_CAPABILITIES_1: {
696
- name: FieldType;
697
- label: string;
698
- dataType: DataType;
699
- defaultValue: boolean;
700
- valueEditorType: string;
701
- };
702
- LOAD_TAP_CHANGING_CAPABILITIES_2: {
703
- name: FieldType;
704
- label: string;
705
- dataType: DataType;
706
- defaultValue: boolean;
707
- valueEditorType: string;
708
- };
709
- LOAD_TAP_CHANGING_CAPABILITIES_3: {
710
- name: FieldType;
711
- label: string;
712
- dataType: DataType;
713
- defaultValue: boolean;
714
- valueEditorType: string;
715
- };
716
- RATIO_REGULATION_MODE: {
717
- name: FieldType;
718
- label: string;
719
- dataType: DataType;
720
- values: {
721
- name: string;
722
- label: string;
723
- }[];
724
- valueEditorType: string;
725
- defaultValue: string;
726
- };
727
- RATIO_REGULATION_MODE_1: {
728
- name: FieldType;
729
- label: string;
730
- dataType: DataType;
731
- values: {
732
- name: string;
733
- label: string;
734
- }[];
735
- valueEditorType: string;
736
- defaultValue: string;
737
- };
738
- RATIO_REGULATION_MODE_2: {
739
- name: FieldType;
740
- label: string;
741
- dataType: DataType;
742
- values: {
743
- name: string;
744
- label: string;
745
- }[];
746
- valueEditorType: string;
747
- defaultValue: string;
748
- };
749
- RATIO_REGULATION_MODE_3: {
750
- name: FieldType;
751
- label: string;
752
- dataType: DataType;
753
- values: {
754
- name: string;
755
- label: string;
756
- }[];
757
- valueEditorType: string;
758
- defaultValue: string;
759
- };
760
- RATIO_TARGET_V: {
761
- name: FieldType;
762
- label: string;
763
- unit: string;
764
- dataType: DataType;
765
- inputType: string;
766
- };
767
- RATIO_TARGET_V1: {
768
- name: FieldType;
769
- label: string;
770
- unit: string;
771
- dataType: DataType;
772
- inputType: string;
773
- };
774
- RATIO_TARGET_V2: {
775
- name: FieldType;
776
- label: string;
777
- unit: string;
778
- dataType: DataType;
779
- inputType: string;
780
- };
781
- RATIO_TARGET_V3: {
782
- name: FieldType;
783
- label: string;
784
- unit: string;
785
- dataType: DataType;
786
- inputType: string;
787
- };
788
- HAS_PHASE_TAP_CHANGER: {
789
- name: FieldType;
790
- label: string;
791
- dataType: DataType;
792
- defaultValue: boolean;
793
- valueEditorType: string;
794
- };
795
- HAS_PHASE_TAP_CHANGER_1: {
796
- name: FieldType;
797
- label: string;
798
- dataType: DataType;
799
- defaultValue: boolean;
800
- valueEditorType: string;
801
- };
802
- HAS_PHASE_TAP_CHANGER_2: {
803
- name: FieldType;
804
- label: string;
805
- dataType: DataType;
806
- defaultValue: boolean;
807
- valueEditorType: string;
808
- };
809
- HAS_PHASE_TAP_CHANGER_3: {
810
- name: FieldType;
811
- label: string;
812
- dataType: DataType;
813
- defaultValue: boolean;
814
- valueEditorType: string;
815
- };
816
- PHASE_REGULATION_MODE: {
817
- name: FieldType;
818
- label: string;
819
- dataType: DataType;
820
- values: {
821
- name: string;
822
- label: string;
823
- }[];
824
- valueEditorType: string;
825
- defaultValue: string;
826
- };
827
- PHASE_REGULATION_MODE_1: {
828
- name: FieldType;
829
- label: string;
830
- dataType: DataType;
831
- values: {
832
- name: string;
833
- label: string;
834
- }[];
835
- valueEditorType: string;
836
- defaultValue: string;
837
- };
838
- PHASE_REGULATION_MODE_2: {
839
- name: FieldType;
840
- label: string;
841
- dataType: DataType;
842
- values: {
843
- name: string;
844
- label: string;
845
- }[];
846
- valueEditorType: string;
847
- defaultValue: string;
848
- };
849
- PHASE_REGULATION_MODE_3: {
850
- name: FieldType;
851
- label: string;
852
- dataType: DataType;
853
- values: {
854
- name: string;
855
- label: string;
856
- }[];
857
- valueEditorType: string;
858
- defaultValue: string;
859
- };
860
- PHASE_REGULATION_VALUE: {
861
- name: FieldType;
862
- label: string;
863
- dataType: DataType;
864
- inputType: string;
865
- };
866
- PHASE_REGULATION_VALUE_1: {
867
- name: FieldType;
868
- label: string;
869
- dataType: DataType;
870
- inputType: string;
871
- };
872
- PHASE_REGULATION_VALUE_2: {
873
- name: FieldType;
874
- label: string;
875
- dataType: DataType;
876
- inputType: string;
877
- };
878
- PHASE_REGULATION_VALUE_3: {
879
- name: FieldType;
880
- label: string;
881
- dataType: DataType;
882
- inputType: string;
883
- };
884
- PROPERTY: {
885
- name: FieldType;
886
- label: string;
887
- dataType: DataType;
888
- valueEditorType: string;
889
- defaultValue: string;
890
- };
891
- SUBSTATION_PROPERTY: {
892
- name: FieldType;
893
- label: string;
894
- dataType: DataType;
895
- valueEditorType: string;
896
- defaultValue: string;
897
- };
898
- SUBSTATION_PROPERTY_1: {
899
- name: FieldType;
900
- label: string;
901
- dataType: DataType;
902
- valueEditorType: string;
903
- defaultValue: string;
904
- };
905
- SUBSTATION_PROPERTY_2: {
906
- name: FieldType;
907
- label: string;
908
- dataType: DataType;
909
- valueEditorType: string;
910
- defaultValue: string;
911
- };
912
- VOLTAGE_LEVEL_PROPERTY: {
913
- name: FieldType;
914
- label: string;
915
- dataType: DataType;
916
- valueEditorType: string;
917
- defaultValue: string;
918
- };
919
- VOLTAGE_LEVEL_PROPERTY_1: {
920
- name: FieldType;
921
- label: string;
922
- dataType: DataType;
923
- valueEditorType: string;
924
- defaultValue: string;
925
- };
926
- VOLTAGE_LEVEL_PROPERTY_2: {
927
- name: FieldType;
928
- label: string;
929
- dataType: DataType;
930
- valueEditorType: string;
931
- defaultValue: string;
932
- };
933
- VOLTAGE_LEVEL_PROPERTY_3: {
934
- name: FieldType;
935
- label: string;
936
- dataType: DataType;
937
- valueEditorType: string;
938
- defaultValue: string;
939
- };
940
- SVAR_REGULATION_MODE: {
941
- name: FieldType;
942
- label: string;
943
- dataType: DataType;
944
- values: {
945
- name: string;
946
- label: string;
947
- }[];
948
- valueEditorType: string;
949
- defaultValue: string;
950
- };
951
- VOLTAGE_SET_POINT: {
952
- name: FieldType;
953
- label: string;
954
- unit: string;
955
- dataType: DataType;
956
- inputType: string;
957
- };
958
- ACTIVE_POWER_SET_POINT: {
959
- name: FieldType;
960
- label: string;
961
- unit: string;
962
- dataType: DataType;
963
- inputType: string;
964
- };
965
- REACTIVE_POWER_SET_POINT: {
966
- name: FieldType;
967
- label: string;
968
- unit: string;
969
- dataType: DataType;
970
- inputType: string;
971
- };
972
- REMOTE_REGULATED_TERMINAL: {
973
- name: FieldType;
974
- label: string;
975
- dataType: DataType;
976
- combinator: CombinatorType;
977
- children: {
978
- REGULATING_TERMINAL_VL_ID: {
979
- name: FieldType;
980
- label: string;
981
- dataType: DataType;
982
- operators: {
983
- name: OperatorType;
984
- customName: OperatorType;
985
- label: string;
986
- }[];
987
- };
988
- REGULATING_TERMINAL_CONNECTABLE_ID: {
989
- name: FieldType;
990
- label: string;
991
- dataType: DataType;
992
- operators: {
993
- name: OperatorType;
994
- customName: OperatorType;
995
- label: string;
996
- }[];
997
- };
998
- };
999
- };
1000
- REGULATION_TYPE: {
1001
- name: FieldType;
1002
- label: string;
1003
- dataType: DataType;
1004
- values: {
1005
- name: string;
1006
- label: string;
1007
- }[];
1008
- valueEditorType: string;
1009
- defaultValue: string;
1010
- };
1011
- AUTOMATE: {
1012
- name: FieldType;
1013
- label: string;
1014
- dataType: DataType;
1015
- };
1016
- LOW_VOLTAGE_SET_POINT: {
1017
- name: FieldType;
1018
- label: string;
1019
- unit: string;
1020
- dataType: DataType;
1021
- inputType: string;
1022
- };
1023
- HIGH_VOLTAGE_SET_POINT: {
1024
- name: FieldType;
1025
- label: string;
1026
- unit: string;
1027
- dataType: DataType;
1028
- inputType: string;
1029
- };
1030
- LOW_VOLTAGE_THRESHOLD: {
1031
- name: FieldType;
1032
- label: string;
1033
- unit: string;
1034
- dataType: DataType;
1035
- inputType: string;
1036
- };
1037
- HIGH_VOLTAGE_THRESHOLD: {
1038
- name: FieldType;
1039
- label: string;
1040
- unit: string;
1041
- dataType: DataType;
1042
- inputType: string;
1043
- };
1044
- SUSCEPTANCE_FIX: {
1045
- name: FieldType;
1046
- label: string;
1047
- unit: string;
1048
- dataType: DataType;
1049
- inputType: string;
1050
- };
1051
- SHUNT_SUSCEPTANCE: {
1052
- name: FieldType;
1053
- label: string;
1054
- unit: string;
1055
- dataType: DataType;
1056
- inputType: string;
1057
- };
1058
- SHUNT_CONDUCTANCE: {
1059
- name: FieldType;
1060
- label: string;
1061
- unit: string;
1062
- dataType: DataType;
1063
- inputType: string;
1064
- };
1065
- PAIRED: {
1066
- name: FieldType;
1067
- label: string;
1068
- dataType: DataType;
1069
- defaultValue: boolean;
1070
- valueEditorType: string;
1071
- };
1072
- CONVERTER_STATION_ID_1: {
1073
- name: FieldType;
1074
- label: string;
1075
- dataType: DataType;
1076
- };
1077
- CONVERTER_STATION_ID_2: {
1078
- name: FieldType;
1079
- label: string;
1080
- dataType: DataType;
1081
- };
1082
- CONVERTERS_MODE: {
1083
- name: FieldType;
1084
- label: string;
1085
- dataType: DataType;
1086
- values: {
1087
- name: string;
1088
- label: string;
1089
- }[];
1090
- valueEditorType: string;
1091
- defaultValue: string;
1092
- };
1093
- CONVERTER_STATION_NOMINAL_VOLTAGE_1: {
1094
- name: FieldType;
1095
- label: string;
1096
- unit: string;
1097
- dataType: DataType;
1098
- inputType: string;
1099
- };
1100
- CONVERTER_STATION_NOMINAL_VOLTAGE_2: {
1101
- name: FieldType;
1102
- label: string;
1103
- unit: string;
1104
- dataType: DataType;
1105
- inputType: string;
1106
- };
1107
- DC_NOMINAL_VOLTAGE: {
1108
- name: FieldType;
1109
- label: string;
1110
- unit: string;
1111
- dataType: DataType;
1112
- inputType: string;
1113
- };
1114
- PAIRING_KEY: {
1115
- name: FieldType;
1116
- label: string;
1117
- dataType: DataType;
1118
- };
1119
- TIE_LINE_ID: {
1120
- name: FieldType;
1121
- label: string;
1122
- dataType: DataType;
1123
- };
1124
- LOW_SHORT_CIRCUIT_CURRENT_LIMIT: {
1125
- name: FieldType;
1126
- label: string;
1127
- unit: string;
1128
- dataType: DataType;
1129
- inputType: string;
1130
- };
1131
- HIGH_SHORT_CIRCUIT_CURRENT_LIMIT: {
1132
- name: FieldType;
1133
- label: string;
1134
- unit: string;
1135
- dataType: DataType;
1136
- inputType: string;
1137
- };
1138
- SUBSTATION_ID: {
1139
- name: FieldType;
1140
- label: string;
1141
- dataType: DataType;
1142
- };
1143
- SUBSTATION_ID_1: {
1144
- name: FieldType;
1145
- label: string;
1146
- dataType: DataType;
1147
- };
1148
- SUBSTATION_ID_2: {
1149
- name: FieldType;
1150
- label: string;
1151
- dataType: DataType;
1152
- };
1153
- };
1154
- export declare const EXPERT_FILTER_FIELDS: Record<string, Field[]>;