@gridsuite/commons-ui 0.213.0 → 0.215.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 (1502) 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 +201 -0
  5. package/dist/components/composite/agGridTable/csvUploader/CsvUploader.d.ts +15 -0
  6. package/dist/components/composite/agGridTable/csvUploader/CsvUploader.js +183 -0
  7. package/dist/components/composite/customAGGrid/cell-renderers.js +202 -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 +21 -0
  11. package/dist/components/composite/dnd-table/dnd-table-add-rows-dialog.js +70 -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 +436 -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 +70 -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 +184 -0
  21. package/dist/components/composite/dnd-table-v2/dnd-table.js +376 -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 +127 -0
  30. package/dist/components/composite/filter/FilterForm.js +45 -0
  31. package/dist/components/composite/filter/HeaderFilterForm.d.ts +26 -0
  32. package/dist/components/composite/filter/HeaderFilterForm.js +72 -0
  33. package/dist/components/composite/filter/expert/ExpertFilterEditionDialog.js +113 -0
  34. package/dist/components/composite/filter/expert/ExpertFilterForm.d.ts +21 -0
  35. package/dist/components/composite/filter/expert/ExpertFilterForm.js +118 -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 +1454 -0
  39. package/dist/components/composite/filter/expert/expertFilterUtils.js +374 -0
  40. package/dist/components/composite/filter/explicitNaming/ExplicitNamingFilterEditionDialog.js +123 -0
  41. package/dist/components/composite/filter/explicitNaming/ExplicitNamingFilterForm.d.ts +28 -0
  42. package/dist/components/composite/filter/explicitNaming/ExplicitNamingFilterForm.js +244 -0
  43. package/dist/components/composite/filter/filter.type.d.ts +57 -0
  44. package/dist/components/composite/filter/utils/filterApi.js +111 -0
  45. package/dist/components/composite/filter/utils/filterFormUtils.d.ts +7 -0
  46. package/dist/components/composite/filter/utils/filterFormUtils.js +60 -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 +50 -0
  58. package/dist/components/composite/reactQueryBuilder/CustomReactQueryBuilder.js +105 -0
  59. package/dist/components/composite/reactQueryBuilder/ElementValueEditor.js +47 -0
  60. package/dist/components/composite/reactQueryBuilder/PropertyValueEditor.js +102 -0
  61. package/dist/components/composite/reactQueryBuilder/RemoveButton.js +19 -0
  62. package/dist/components/composite/reactQueryBuilder/ValueEditor.js +96 -0
  63. package/dist/components/composite/reactQueryBuilder/compositeRuleEditor/GroupValueEditor.d.ts +3 -0
  64. package/dist/components/composite/reactQueryBuilder/compositeRuleEditor/RuleValueEditor.d.ts +8 -0
  65. package/dist/components/composite/reactQueryBuilder/hooks/useConvertValue.js +19 -0
  66. package/dist/components/index.d.ts +2 -30
  67. package/dist/components/index.js +124 -736
  68. package/dist/components/ui/checkBoxList/CheckBoxListItem.js +74 -0
  69. package/dist/components/ui/checkBoxList/CheckBoxListItemContent.js +45 -0
  70. package/dist/components/ui/checkBoxList/DraggableCheckBoxListItem.js +84 -0
  71. package/dist/components/ui/checkBoxList/DraggableCheckBoxListItemContent.js +38 -0
  72. package/dist/components/ui/checkBoxList/checkBoxList.type.d.ts +74 -0
  73. package/dist/components/ui/csvDownloader/csv-export.type.d.ts +15 -0
  74. package/dist/components/ui/csvDownloader/use-csv-export.js +61 -0
  75. package/dist/components/ui/dialogs/customMuiDialog/CustomMuiDialog.d.ts +51 -0
  76. package/dist/components/ui/dialogs/customMuiDialog/CustomMuiDialog.js +143 -0
  77. package/dist/components/ui/dialogs/descriptionModificationDialog/DescriptionModificationDialog.js +74 -0
  78. package/dist/components/ui/dialogs/elementSaveDialog/ElementSaveDialog.d.ts +56 -0
  79. package/dist/components/ui/dialogs/elementSaveDialog/ElementSaveDialog.js +273 -0
  80. package/dist/components/ui/dialogs/elementSaveDialog/utils.d.ts +23 -0
  81. package/dist/components/ui/dialogs/index.d.ts +12 -0
  82. package/dist/components/ui/dialogs/index.js +17 -0
  83. package/dist/components/ui/dialogs/modifyElementSelection/ModifyElementSelection.d.ts +11 -0
  84. package/dist/components/ui/dialogs/modifyElementSelection/ModifyElementSelection.js +95 -0
  85. package/dist/components/ui/dialogs/multipleSelectionDialog/MultipleSelectionDialog.d.ts +8 -0
  86. package/dist/components/ui/dialogs/multipleSelectionDialog/MultipleSelectionDialog.js +33 -0
  87. package/dist/components/ui/dialogs/popupConfirmationDialog/PopupConfirmationDialog.js +24 -0
  88. package/dist/components/ui/directoryItemSelector/DirectoryItemSelector.d.ts +11 -0
  89. package/dist/components/ui/directoryItemSelector/DirectoryItemSelector.js +305 -0
  90. package/dist/components/ui/directoryItemSelector/utils.d.ts +55 -0
  91. package/dist/components/ui/directoryItemSelector/utils.js +102 -0
  92. package/dist/components/ui/index.d.ts +20 -0
  93. package/dist/components/ui/index.js +163 -0
  94. package/dist/components/ui/inputs/SelectClearable.js +41 -0
  95. package/dist/components/ui/inputs/index.d.ts +8 -0
  96. package/dist/components/ui/inputs/index.js +6 -0
  97. package/dist/components/ui/menus/custom-nested-menu.d.ts +10 -0
  98. package/dist/components/ui/menus/custom-nested-menu.js +62 -0
  99. package/dist/components/ui/overflowableText/OverflowableText.d.ts +11 -0
  100. package/dist/components/ui/overflowableText/OverflowableText.js +97 -0
  101. package/dist/components/ui/reactHookForm/DirectoryItemsInput.js +290 -0
  102. package/dist/components/ui/reactHookForm/OverflowableChip.js +25 -0
  103. package/dist/components/ui/reactHookForm/chip-items-input.js +135 -0
  104. package/dist/components/ui/reactHookForm/expandableInput/DeletableRow.js +42 -0
  105. package/dist/components/ui/reactHookForm/expandableInput/ExpandableInput.js +67 -0
  106. package/dist/components/ui/reactHookForm/index.d.ts +25 -0
  107. package/dist/components/ui/reactHookForm/index.js +104 -0
  108. package/dist/components/ui/reactHookForm/selectInputs/InputWithPopupConfirmation.js +61 -0
  109. package/dist/components/ui/reactHookForm/selectInputs/SelectWithConfirmationInput.js +64 -0
  110. package/dist/components/ui/reactHookForm/text/DescriptionField.js +62 -0
  111. package/dist/components/ui/reactHookForm/text/DescriptionInput.js +87 -0
  112. package/dist/components/ui/reactHookForm/utils/HelperPreviousValue.js +39 -0
  113. package/dist/components/ui/treeViewFinder/TreeViewFinder.d.ts +39 -0
  114. package/dist/components/ui/treeViewFinder/TreeViewFinder.js +343 -0
  115. package/dist/components/ui/treeViewFinder/TreeViewUtils.d.ts +2 -0
  116. package/dist/features/announcement/AnnouncementBanner.d.ts +15 -0
  117. package/dist/features/announcement/AnnouncementBanner.js +88 -0
  118. package/dist/features/announcement/AnnouncementNotification.d.ts +7 -0
  119. package/dist/features/announcement/AnnouncementNotification.js +20 -0
  120. package/dist/features/announcement/useGlobalAnnouncement.d.ts +10 -0
  121. package/dist/features/announcement/useGlobalAnnouncement.js +48 -0
  122. package/dist/features/index.d.ts +15 -0
  123. package/dist/features/index.js +651 -0
  124. package/dist/features/network-modification-table/renderers/description-cell.js +75 -0
  125. package/dist/features/network-modification-table/renderers/name-cell.js +221 -0
  126. package/dist/features/network-modification-table/renderers/root-network-chip-cell.js +114 -0
  127. package/dist/features/network-modifications/battery/creation/BatteryCreationForm.js +100 -0
  128. package/dist/features/network-modifications/battery/creation/batteryCreation.utils.js +140 -0
  129. package/dist/features/network-modifications/by-filter/assignment/assignment/assignment-form.js +233 -0
  130. package/dist/features/network-modifications/by-filter/assignment/modification-by-assignment-form.js +83 -0
  131. package/dist/features/network-modifications/by-filter/deletion/ByFilterDeletionForm.js +76 -0
  132. package/dist/features/network-modifications/common/activePowerControl/ActivePowerControlForm.js +93 -0
  133. package/dist/features/network-modifications/common/connectivity/BranchConnectivityForm.js +57 -0
  134. package/dist/features/network-modifications/common/connectivity/ConnectivityForm.js +111 -0
  135. package/dist/features/network-modifications/common/connectivity/PositionForm.js +107 -0
  136. package/dist/features/network-modifications/common/connectivity/VoltageLevelConnectivityForm.js +159 -0
  137. package/dist/features/network-modifications/common/index.d.ts +16 -0
  138. package/dist/features/network-modifications/common/index.js +129 -0
  139. package/dist/features/network-modifications/common/measurements/BranchActiveReactivePowerMeasurementsForm.js +31 -0
  140. package/dist/features/network-modifications/common/measurements/PowerWithValidityForm.js +67 -0
  141. package/dist/features/network-modifications/common/properties/PropertiesForm.js +108 -0
  142. package/dist/features/network-modifications/common/properties/PropertyForm.js +95 -0
  143. package/dist/features/network-modifications/common/reactiveLimits/ReactiveLimitsForm.js +97 -0
  144. package/dist/features/network-modifications/common/reactiveLimits/reactiveCapabilityCurve/ReactiveCapabilityCurveRowForm.js +96 -0
  145. package/dist/features/network-modifications/common/reactiveLimits/reactiveCapabilityCurve/ReactiveCapabilityCurveTableForm.js +113 -0
  146. package/dist/features/network-modifications/common/regulatingTerminal/RegulatingTerminalForm.d.ts +16 -0
  147. package/dist/features/network-modifications/common/regulatingTerminal/RegulatingTerminalForm.js +161 -0
  148. package/dist/features/network-modifications/common/regulatingTerminal/index.d.ts +8 -0
  149. package/dist/features/network-modifications/common/regulatingTerminal/index.js +9 -0
  150. package/dist/features/network-modifications/common/regulatingTerminal/regulatingTerminal.utils.d.ts +55 -0
  151. package/dist/features/network-modifications/common/regulatingTerminal/regulatingTerminal.utils.js +72 -0
  152. package/dist/features/network-modifications/common/setpoints/SetPointsForm.js +64 -0
  153. package/dist/features/network-modifications/common/shortCircuit/ShortCircuitForm.js +63 -0
  154. package/dist/features/network-modifications/common/voltageRegulation/VoltageRegulationForm.d.ts +17 -0
  155. package/dist/features/network-modifications/common/voltageRegulation/VoltageRegulationForm.js +116 -0
  156. package/dist/features/network-modifications/common/voltageRegulation/index.d.ts +8 -0
  157. package/dist/features/network-modifications/common/voltageRegulation/index.js +8 -0
  158. package/dist/features/network-modifications/common/voltageRegulation/voltageRegulation.utils.d.ts +52 -0
  159. package/dist/features/network-modifications/common/voltageRegulation/voltageRegulation.utils.js +56 -0
  160. package/dist/features/network-modifications/equipmentDeletion/EquipmentDeletionForm.js +167 -0
  161. package/dist/features/network-modifications/equipmentDeletion/equipmentDeletion.utils.js +74 -0
  162. package/dist/features/network-modifications/equipmentDeletion/hvdcLccDeletion/HvdcLccDeletionSpecificForm.js +42 -0
  163. package/dist/features/network-modifications/equipmentDeletion/hvdcLccDeletion/ShuntCompensatorSelectionForm.js +55 -0
  164. package/dist/features/network-modifications/index.js +279 -0
  165. package/dist/features/network-modifications/load/common/LoadDialogHeader.js +86 -0
  166. package/dist/features/network-modifications/load/common/LoadDialogTabsContent.js +63 -0
  167. package/dist/features/network-modifications/load/creation/loadCreation.utils.js +94 -0
  168. package/dist/features/network-modifications/load/modification/loadModification.utils.js +103 -0
  169. package/dist/features/network-modifications/shunt-compensator/common/CharacteristicsForm.js +193 -0
  170. package/dist/features/network-modifications/shunt-compensator/creation/ShuntCompensatorCreationForm.js +77 -0
  171. package/dist/features/network-modifications/shunt-compensator/creation/shuntCompensatorCreation.utils.js +98 -0
  172. package/dist/features/network-modifications/substation/creation/SubstationCreationForm.js +58 -0
  173. package/dist/features/network-modifications/substation/modification/SubstationModificationForm.js +82 -0
  174. package/dist/features/network-modifications/voltageLevel/creation/VoltageLevelCreationForm.js +123 -0
  175. package/dist/features/network-modifications/voltageLevel/creation/index.js +52 -0
  176. package/dist/features/network-modifications/voltageLevel/creation/tabs/characteristicsTab/CharacteristicsTab.js +88 -0
  177. package/dist/features/network-modifications/voltageLevel/creation/tabs/structureTab/StructureTab.js +59 -0
  178. package/dist/features/network-modifications/voltageLevel/creation/tabs/structureTab/couplingOmnibus/CouplingOmnibusCreation.js +54 -0
  179. package/dist/features/network-modifications/voltageLevel/creation/tabs/structureTab/couplingOmnibus/CouplingOmnibusForm.js +94 -0
  180. package/dist/features/network-modifications/voltageLevel/creation/tabs/structureTab/switchesBetweenSections/SwitchesBetweenSections.js +95 -0
  181. package/dist/features/network-modifications/voltageLevel/creation/tabs/substationTab/SubstationCreationSection.js +57 -0
  182. package/dist/features/network-modifications/voltageLevel/creation/tabs/substationTab/SubstationTab.js +78 -0
  183. package/dist/features/network-modifications/voltageLevel/creation/voltageLevelCreation.utils.js +246 -0
  184. package/dist/features/network-modifications/voltageLevel/index.js +59 -0
  185. package/dist/features/network-modifications/voltageLevel/modification/VoltageLevelModificationForm.js +149 -0
  186. package/dist/features/notifications/NotificationsProvider.js +66 -0
  187. package/dist/features/parameters/common/ProviderParam.js +52 -0
  188. package/dist/features/parameters/common/contingency-table/columns-definitions.d.ts +28 -0
  189. package/dist/features/parameters/common/contingency-table/columns-definitions.js +107 -0
  190. package/dist/features/parameters/common/contingency-table/contingency-table.d.ts +13 -0
  191. package/dist/features/parameters/common/contingency-table/contingency-table.js +141 -0
  192. package/dist/features/parameters/common/hook/use-parameters-form.js +60 -0
  193. package/dist/features/parameters/common/limitreductions/limit-reduction-table-cell.js +59 -0
  194. package/dist/features/parameters/common/limitreductions/limit-reductions-table-form.js +65 -0
  195. package/dist/features/parameters/common/name-element-editor/name-element-editor-form.js +34 -0
  196. package/dist/features/parameters/common/name-element-editor/name-element-editor-utils.js +51 -0
  197. package/dist/features/parameters/common/parameter-field.js +106 -0
  198. package/dist/features/parameters/common/parameter-table/parameter-table.js +98 -0
  199. package/dist/features/parameters/common/parameter-table/table-cell.js +84 -0
  200. package/dist/features/parameters/common/parameter-table/table-row.js +41 -0
  201. package/dist/features/parameters/common/parameter-table-field/parameter-table-field.d.ts +11 -0
  202. package/dist/features/parameters/common/parameter-table-field/parameter-table-field.js +116 -0
  203. package/dist/features/parameters/common/parameters-creation-dialog.js +87 -0
  204. package/dist/features/parameters/common/voltage-level-table/custom-voltage-level-table-cell.js +43 -0
  205. package/dist/features/parameters/common/voltage-level-table/custom-voltage-level-table.js +61 -0
  206. package/dist/features/parameters/common/widget/parameter-float.js +53 -0
  207. package/dist/features/parameters/common/widget/parameter-line-directory-items-input.js +60 -0
  208. package/dist/features/parameters/common/widget/parameter-line-slider.js +72 -0
  209. package/dist/features/parameters/dynamic-margin-calculation/dynamic-margin-calculation-form.js +99 -0
  210. package/dist/features/parameters/dynamic-margin-calculation/dynamic-margin-calculation-inline.js +178 -0
  211. package/dist/features/parameters/dynamic-margin-calculation/loads-variations-parameters.d.ts +29 -0
  212. package/dist/features/parameters/dynamic-margin-calculation/loads-variations-parameters.js +151 -0
  213. package/dist/features/parameters/dynamic-margin-calculation/use-dynamic-margin-calculation-parameters-form.js +95 -0
  214. package/dist/features/parameters/dynamic-security-analysis/contingency-parameters.js +68 -0
  215. package/dist/features/parameters/dynamic-security-analysis/dynamic-security-analysis-inline.js +130 -0
  216. package/dist/features/parameters/dynamic-security-analysis/dynamic-security-analysis-parameters-form.js +100 -0
  217. package/dist/features/parameters/dynamic-security-analysis/use-dynamic-security-analysis-parameters-form.js +100 -0
  218. package/dist/features/parameters/dynamic-simulation/curve/common/grid-buttons.js +38 -0
  219. package/dist/features/parameters/dynamic-simulation/curve/curve-parameters.d.ts +11 -0
  220. package/dist/features/parameters/dynamic-simulation/curve/curve-parameters.js +177 -0
  221. package/dist/features/parameters/dynamic-simulation/curve/dialog/curve-preview.js +123 -0
  222. package/dist/features/parameters/dynamic-simulation/curve/dialog/curve-selector-dialog.d.ts +15 -0
  223. package/dist/features/parameters/dynamic-simulation/curve/dialog/curve-selector-dialog.js +125 -0
  224. package/dist/features/parameters/dynamic-simulation/curve/dialog/curve-selector-utils.d.ts +20 -0
  225. package/dist/features/parameters/dynamic-simulation/curve/dialog/curve-selector-utils.js +283 -0
  226. package/dist/features/parameters/dynamic-simulation/curve/dialog/curve-selector.d.ts +16 -0
  227. package/dist/features/parameters/dynamic-simulation/curve/dialog/equipment-filter.d.ts +14 -0
  228. package/dist/features/parameters/dynamic-simulation/curve/dialog/equipment-filter.js +239 -0
  229. package/dist/features/parameters/dynamic-simulation/dynamic-simulation-inline.d.ts +15 -0
  230. package/dist/features/parameters/dynamic-simulation/dynamic-simulation-inline.js +187 -0
  231. package/dist/features/parameters/dynamic-simulation/dynamic-simulation-parameters-form.d.ts +15 -0
  232. package/dist/features/parameters/dynamic-simulation/dynamic-simulation-parameters-form.js +148 -0
  233. package/dist/features/parameters/dynamic-simulation/use-dynamic-simulation-parameters-form.js +117 -0
  234. package/dist/features/parameters/loadflow/load-flow-general-parameters.js +181 -0
  235. package/dist/features/parameters/loadflow/load-flow-parameters-content.js +80 -0
  236. package/dist/features/parameters/loadflow/load-flow-parameters-dialog.js +107 -0
  237. package/dist/features/parameters/loadflow/load-flow-parameters-form.js +105 -0
  238. package/dist/features/parameters/loadflow/load-flow-parameters-header.js +97 -0
  239. package/dist/features/parameters/loadflow/load-flow-parameters-inline.js +196 -0
  240. package/dist/features/parameters/loadflow/load-flow-parameters-utils.js +108 -0
  241. package/dist/features/parameters/loadflow/use-load-flow-parameters-form.js +251 -0
  242. package/dist/features/parameters/network-visualizations/map-parameters.js +113 -0
  243. package/dist/features/parameters/network-visualizations/network-area-diagram-parameters.js +61 -0
  244. package/dist/features/parameters/network-visualizations/network-visualizations-form.js +105 -0
  245. package/dist/features/parameters/network-visualizations/network-visualizations-parameters-dialog.js +100 -0
  246. package/dist/features/parameters/network-visualizations/network-visualizations-parameters-inline.js +134 -0
  247. package/dist/features/parameters/network-visualizations/single-line-diagram-parameters.js +103 -0
  248. package/dist/features/parameters/network-visualizations/use-network-visualizations-parameters-form.js +155 -0
  249. package/dist/features/parameters/pcc-min/pcc-min-form-utils.js +59 -0
  250. package/dist/features/parameters/pcc-min/pcc-min-parameters-dialog.js +98 -0
  251. package/dist/features/parameters/pcc-min/pcc-min-parameters-form.js +117 -0
  252. package/dist/features/parameters/pcc-min/pcc-min-parameters-inline.js +163 -0
  253. package/dist/features/parameters/pcc-min/use-pcc-min-parameters-form.js +135 -0
  254. package/dist/features/parameters/security-analysis/columns-definitions.js +75 -0
  255. package/dist/features/parameters/security-analysis/security-analysis-parameters-dialog.js +116 -0
  256. package/dist/features/parameters/security-analysis/security-analysis-parameters-form.d.ts +16 -0
  257. package/dist/features/parameters/security-analysis/security-analysis-parameters-form.js +160 -0
  258. package/dist/features/parameters/security-analysis/security-analysis-parameters-inline.js +188 -0
  259. package/dist/features/parameters/security-analysis/security-analysis-parameters-selector.js +84 -0
  260. package/dist/features/parameters/security-analysis/security-analysis-violations-hiding.js +141 -0
  261. package/dist/features/parameters/security-analysis/use-security-analysis-parameters-form.js +188 -0
  262. package/dist/features/parameters/sensi/columns-definitions.d.ts +31 -0
  263. package/dist/features/parameters/sensi/columns-definitions.js +345 -0
  264. package/dist/features/parameters/sensi/sensitivity-analysis-parameters-dialog.js +122 -0
  265. package/dist/features/parameters/sensi/sensitivity-analysis-parameters-form.js +135 -0
  266. package/dist/features/parameters/sensi/sensitivity-analysis-parameters-inline.js +192 -0
  267. package/dist/features/parameters/sensi/sensitivity-parameters-fields.js +73 -0
  268. package/dist/features/parameters/sensi/sensitivity-parameters-selector.js +259 -0
  269. package/dist/features/parameters/sensi/use-sensitivity-analysis-parameters.js +380 -0
  270. package/dist/features/parameters/sensi/utils.d.ts +411 -0
  271. package/dist/features/parameters/sensi/utils.js +365 -0
  272. package/dist/features/parameters/short-circuit/short-circuit-general-tab-panel.js +212 -0
  273. package/dist/features/parameters/short-circuit/short-circuit-icc-cluster-table-cell.js +71 -0
  274. package/dist/features/parameters/short-circuit/short-circuit-icc-cluster-table-row.js +36 -0
  275. package/dist/features/parameters/short-circuit/short-circuit-icc-cluster-table.js +60 -0
  276. package/dist/features/parameters/short-circuit/short-circuit-icc-material-table-cell.js +49 -0
  277. package/dist/features/parameters/short-circuit/short-circuit-icc-material-table.js +43 -0
  278. package/dist/features/parameters/short-circuit/short-circuit-parameters-content.js +104 -0
  279. package/dist/features/parameters/short-circuit/short-circuit-parameters-dialog.js +107 -0
  280. package/dist/features/parameters/short-circuit/short-circuit-parameters-form.js +67 -0
  281. package/dist/features/parameters/short-circuit/short-circuit-parameters-inline.js +173 -0
  282. package/dist/features/parameters/short-circuit/short-circuit-parameters-utils.js +295 -0
  283. package/dist/features/parameters/short-circuit/short-circuit-power-electronics-tab-panel.js +94 -0
  284. package/dist/features/parameters/short-circuit/short-circuit-study-area-tab-panel.js +142 -0
  285. package/dist/features/parameters/short-circuit/use-short-circuit-parameters-form.js +246 -0
  286. package/dist/features/parameters/voltage-init/equipment-selection-parameters.js +122 -0
  287. package/dist/features/parameters/voltage-init/general-parameters.js +115 -0
  288. package/dist/features/parameters/voltage-init/use-voltage-init-parameters-form.js +213 -0
  289. package/dist/features/parameters/voltage-init/voltage-init-form-utils.js +214 -0
  290. package/dist/features/parameters/voltage-init/voltage-init-parameters-dialog.js +98 -0
  291. package/dist/features/parameters/voltage-init/voltage-init-parameters-form.js +153 -0
  292. package/dist/features/parameters/voltage-init/voltage-init-parameters-inline.js +172 -0
  293. package/dist/features/parameters/voltage-init/voltage-limits-parameters.js +171 -0
  294. package/dist/features/topBar/AboutDialog.js +349 -0
  295. package/dist/features/topBar/TopBar.d.ts +25 -0
  296. package/dist/features/topBar/TopBar.js +537 -0
  297. package/dist/features/topBar/UserInformationDialog.d.ts +8 -0
  298. package/dist/features/topBar/UserInformationDialog.js +75 -0
  299. package/dist/hooks/use-parameters-backend.d.ts +1 -1
  300. package/dist/hooks/use-parameters-backend.js +1 -1
  301. package/dist/index.d.ts +1 -0
  302. package/dist/index.js +288 -275
  303. package/dist/services/explore.d.ts +1 -1
  304. package/dist/services/security-analysis.d.ts +1 -1
  305. package/dist/services/security-analysis.js +1 -1
  306. package/dist/services/short-circuit-analysis.d.ts +1 -1
  307. package/dist/services/study-config.d.ts +1 -1
  308. package/dist/services/study.d.ts +3 -3
  309. package/dist/services/voltage-init.d.ts +1 -1
  310. package/dist/translations/en/networkModificationsEn.d.ts +6 -0
  311. package/dist/translations/en/networkModificationsEn.js +6 -0
  312. package/dist/translations/fr/networkModificationsFr.d.ts +6 -0
  313. package/dist/translations/fr/networkModificationsFr.js +6 -0
  314. package/dist/utils/types/loadflow.type.d.ts +1 -1
  315. package/dist/utils/types/parameters.type.d.ts +4 -4
  316. package/package.json +1 -1
  317. package/dist/components/announcement/AnnouncementBanner.d.ts +0 -15
  318. package/dist/components/announcement/AnnouncementBanner.js +0 -88
  319. package/dist/components/announcement/AnnouncementNotification.d.ts +0 -7
  320. package/dist/components/announcement/AnnouncementNotification.js +0 -10
  321. package/dist/components/announcement/useGlobalAnnouncement.d.ts +0 -10
  322. package/dist/components/announcement/useGlobalAnnouncement.js +0 -48
  323. package/dist/components/checkBoxList/CheckBoxListItem.js +0 -74
  324. package/dist/components/checkBoxList/CheckBoxListItemContent.js +0 -45
  325. package/dist/components/checkBoxList/DraggableCheckBoxListItem.js +0 -84
  326. package/dist/components/checkBoxList/DraggableCheckBoxListItemContent.js +0 -38
  327. package/dist/components/checkBoxList/checkBoxList.type.d.ts +0 -74
  328. package/dist/components/csvDownloader/csv-export.type.d.ts +0 -15
  329. package/dist/components/csvDownloader/use-csv-export.js +0 -61
  330. package/dist/components/customAGGrid/cell-renderers.js +0 -202
  331. package/dist/components/customAGGrid/customAggrid.d.ts +0 -12
  332. package/dist/components/customAGGrid/customAggrid.js +0 -63
  333. package/dist/components/customAGGrid/separatorCellRenderer.js +0 -21
  334. package/dist/components/dialogs/customMuiDialog/CustomMuiDialog.d.ts +0 -51
  335. package/dist/components/dialogs/customMuiDialog/CustomMuiDialog.js +0 -143
  336. package/dist/components/dialogs/descriptionModificationDialog/DescriptionModificationDialog.js +0 -74
  337. package/dist/components/dialogs/elementSaveDialog/ElementSaveDialog.d.ts +0 -56
  338. package/dist/components/dialogs/elementSaveDialog/ElementSaveDialog.js +0 -284
  339. package/dist/components/dialogs/elementSaveDialog/utils.d.ts +0 -23
  340. package/dist/components/dialogs/index.d.ts +0 -11
  341. package/dist/components/dialogs/index.js +0 -15
  342. package/dist/components/dialogs/modifyElementSelection/ModifyElementSelection.d.ts +0 -11
  343. package/dist/components/dialogs/modifyElementSelection/ModifyElementSelection.js +0 -95
  344. package/dist/components/dialogs/popupConfirmationDialog/PopupConfirmationDialog.js +0 -24
  345. package/dist/components/directoryItemSelector/DirectoryItemSelector.d.ts +0 -11
  346. package/dist/components/directoryItemSelector/DirectoryItemSelector.js +0 -305
  347. package/dist/components/directoryItemSelector/utils.d.ts +0 -55
  348. package/dist/components/directoryItemSelector/utils.js +0 -102
  349. package/dist/components/dnd-table/dnd-table-add-rows-dialog.js +0 -76
  350. package/dist/components/dnd-table/dnd-table-bottom-left-buttons.js +0 -47
  351. package/dist/components/dnd-table/dnd-table-bottom-right-buttons.js +0 -100
  352. package/dist/components/dnd-table/dnd-table.js +0 -442
  353. package/dist/components/dnd-table/dnd-table.type.d.ts +0 -56
  354. package/dist/components/dnd-table-v2/deletable-table-row.js +0 -38
  355. package/dist/components/dnd-table-v2/dnd-table-add-rows-dialog.js +0 -76
  356. package/dist/components/dnd-table-v2/dnd-table-bottom-left-buttons.js +0 -47
  357. package/dist/components/dnd-table-v2/dnd-table-bottom-right-buttons.js +0 -100
  358. package/dist/components/dnd-table-v2/dnd-table-row.js +0 -183
  359. package/dist/components/dnd-table-v2/dnd-table.js +0 -383
  360. package/dist/components/dnd-table-v2/dnd-table.type.d.ts +0 -70
  361. package/dist/components/elementSearch/elementItem/EquipmentItem.d.ts +0 -24
  362. package/dist/components/elementSearch/elementItem/EquipmentItem.js +0 -56
  363. package/dist/components/elementSearch/hooks/useElementSearch.js +0 -67
  364. package/dist/components/elementSearch/tagRenderer/TagRenderer.d.ts +0 -14
  365. package/dist/components/elementSearch/tagRenderer/TagRenderer.js +0 -20
  366. package/dist/components/filter/FilterCreationDialog.d.ts +0 -18
  367. package/dist/components/filter/FilterCreationDialog.js +0 -127
  368. package/dist/components/filter/FilterForm.js +0 -43
  369. package/dist/components/filter/HeaderFilterForm.d.ts +0 -26
  370. package/dist/components/filter/HeaderFilterForm.js +0 -78
  371. package/dist/components/filter/expert/ExpertFilterEditionDialog.js +0 -113
  372. package/dist/components/filter/expert/ExpertFilterForm.d.ts +0 -21
  373. package/dist/components/filter/expert/ExpertFilterForm.js +0 -121
  374. package/dist/components/filter/expert/expertFilter.type.d.ts +0 -75
  375. package/dist/components/filter/expert/expertFilterConstants.d.ts +0 -1154
  376. package/dist/components/filter/expert/expertFilterConstants.js +0 -1454
  377. package/dist/components/filter/expert/expertFilterUtils.js +0 -374
  378. package/dist/components/filter/explicitNaming/ExplicitNamingFilterEditionDialog.js +0 -123
  379. package/dist/components/filter/explicitNaming/ExplicitNamingFilterForm.d.ts +0 -28
  380. package/dist/components/filter/explicitNaming/ExplicitNamingFilterForm.js +0 -248
  381. package/dist/components/filter/filter.type.d.ts +0 -57
  382. package/dist/components/filter/utils/filterApi.js +0 -111
  383. package/dist/components/filter/utils/filterFormUtils.d.ts +0 -7
  384. package/dist/components/filter/utils/filterFormUtils.js +0 -60
  385. package/dist/components/flatParameters/FlatParameters.js +0 -366
  386. package/dist/components/grid/grid-item.js +0 -9
  387. package/dist/components/grid/grid-section.d.ts +0 -8
  388. package/dist/components/inputs/SelectClearable.js +0 -41
  389. package/dist/components/inputs/index.d.ts +0 -10
  390. package/dist/components/inputs/index.js +0 -146
  391. package/dist/components/inputs/reactHookForm/DirectoryItemsInput.js +0 -290
  392. package/dist/components/inputs/reactHookForm/OverflowableChip.js +0 -25
  393. package/dist/components/inputs/reactHookForm/agGridTable/BottomRightButtons.js +0 -62
  394. package/dist/components/inputs/reactHookForm/agGridTable/CustomAgGridTable.d.ts +0 -8
  395. package/dist/components/inputs/reactHookForm/agGridTable/CustomAgGridTable.js +0 -201
  396. package/dist/components/inputs/reactHookForm/agGridTable/csvUploader/CsvUploader.d.ts +0 -15
  397. package/dist/components/inputs/reactHookForm/agGridTable/csvUploader/CsvUploader.js +0 -183
  398. package/dist/components/inputs/reactHookForm/chip-items-input.js +0 -135
  399. package/dist/components/inputs/reactHookForm/expandableInput/DeletableRow.js +0 -42
  400. package/dist/components/inputs/reactHookForm/expandableInput/ExpandableInput.js +0 -67
  401. package/dist/components/inputs/reactHookForm/index.d.ts +0 -26
  402. package/dist/components/inputs/reactHookForm/index.js +0 -112
  403. package/dist/components/inputs/reactHookForm/selectInputs/InputWithPopupConfirmation.js +0 -61
  404. package/dist/components/inputs/reactHookForm/selectInputs/SelectWithConfirmationInput.js +0 -64
  405. package/dist/components/inputs/reactHookForm/text/DescriptionField.js +0 -62
  406. package/dist/components/inputs/reactHookForm/text/DescriptionInput.js +0 -87
  407. package/dist/components/inputs/reactHookForm/utils/HelperPreviousValue.js +0 -39
  408. package/dist/components/inputs/reactQueryBuilder/CombinatorSelector.js +0 -40
  409. package/dist/components/inputs/reactQueryBuilder/CountryValueEditor.js +0 -50
  410. package/dist/components/inputs/reactQueryBuilder/CustomReactQueryBuilder.js +0 -105
  411. package/dist/components/inputs/reactQueryBuilder/ElementValueEditor.js +0 -47
  412. package/dist/components/inputs/reactQueryBuilder/PropertyValueEditor.js +0 -102
  413. package/dist/components/inputs/reactQueryBuilder/RemoveButton.js +0 -19
  414. package/dist/components/inputs/reactQueryBuilder/ValueEditor.js +0 -96
  415. package/dist/components/inputs/reactQueryBuilder/compositeRuleEditor/GroupValueEditor.d.ts +0 -3
  416. package/dist/components/inputs/reactQueryBuilder/compositeRuleEditor/RuleValueEditor.d.ts +0 -8
  417. package/dist/components/inputs/reactQueryBuilder/hooks/useConvertValue.js +0 -19
  418. package/dist/components/menus/custom-nested-menu.d.ts +0 -10
  419. package/dist/components/menus/custom-nested-menu.js +0 -62
  420. package/dist/components/muiTable/OverflowableTableCell.d.ts +0 -3
  421. package/dist/components/muiTable/OverflowableTableCell.js +0 -10
  422. package/dist/components/muiTable/OverflowableTableCellWithCheckbox.d.ts +0 -6
  423. package/dist/components/muiTable/OverflowableTableCellWithCheckbox.js +0 -16
  424. package/dist/components/multipleSelectionDialog/MultipleSelectionDialog.d.ts +0 -8
  425. package/dist/components/multipleSelectionDialog/MultipleSelectionDialog.js +0 -33
  426. package/dist/components/network-modification-table/renderers/description-cell.js +0 -73
  427. package/dist/components/network-modification-table/renderers/name-cell.js +0 -221
  428. package/dist/components/network-modification-table/renderers/root-network-chip-cell.js +0 -138
  429. package/dist/components/network-modifications/battery/creation/BatteryCreationForm.js +0 -105
  430. package/dist/components/network-modifications/battery/creation/batteryCreation.utils.js +0 -145
  431. package/dist/components/network-modifications/by-filter/assignment/assignment/assignment-form.js +0 -238
  432. package/dist/components/network-modifications/by-filter/assignment/modification-by-assignment-form.js +0 -90
  433. package/dist/components/network-modifications/by-filter/deletion/ByFilterDeletionForm.js +0 -81
  434. package/dist/components/network-modifications/common/activePowerControl/ActivePowerControlForm.js +0 -99
  435. package/dist/components/network-modifications/common/connectivity/BranchConnectivityForm.js +0 -57
  436. package/dist/components/network-modifications/common/connectivity/ConnectivityForm.js +0 -117
  437. package/dist/components/network-modifications/common/connectivity/PositionForm.js +0 -113
  438. package/dist/components/network-modifications/common/connectivity/VoltageLevelConnectivityForm.js +0 -165
  439. package/dist/components/network-modifications/common/index.d.ts +0 -14
  440. package/dist/components/network-modifications/common/index.js +0 -116
  441. package/dist/components/network-modifications/common/measurements/BranchActiveReactivePowerMeasurementsForm.js +0 -31
  442. package/dist/components/network-modifications/common/measurements/PowerWithValidityForm.js +0 -73
  443. package/dist/components/network-modifications/common/properties/PropertiesForm.js +0 -114
  444. package/dist/components/network-modifications/common/properties/PropertyForm.js +0 -101
  445. package/dist/components/network-modifications/common/reactiveLimits/ReactiveLimitsForm.js +0 -103
  446. package/dist/components/network-modifications/common/reactiveLimits/reactiveCapabilityCurve/ReactiveCapabilityCurveRowForm.js +0 -102
  447. package/dist/components/network-modifications/common/reactiveLimits/reactiveCapabilityCurve/ReactiveCapabilityCurveTableForm.js +0 -119
  448. package/dist/components/network-modifications/common/setpoints/SetPointsForm.js +0 -70
  449. package/dist/components/network-modifications/common/shortCircuit/ShortCircuitForm.js +0 -69
  450. package/dist/components/network-modifications/equipmentDeletion/EquipmentDeletionForm.js +0 -172
  451. package/dist/components/network-modifications/equipmentDeletion/equipmentDeletion.utils.js +0 -80
  452. package/dist/components/network-modifications/equipmentDeletion/hvdcLccDeletion/HvdcLccDeletionSpecificForm.js +0 -42
  453. package/dist/components/network-modifications/equipmentDeletion/hvdcLccDeletion/ShuntCompensatorSelectionForm.js +0 -61
  454. package/dist/components/network-modifications/index.js +0 -272
  455. package/dist/components/network-modifications/load/common/LoadDialogHeader.js +0 -91
  456. package/dist/components/network-modifications/load/common/LoadDialogTabsContent.js +0 -63
  457. package/dist/components/network-modifications/load/creation/loadCreation.utils.js +0 -100
  458. package/dist/components/network-modifications/load/modification/loadModification.utils.js +0 -108
  459. package/dist/components/network-modifications/shunt-compensator/common/CharacteristicsForm.js +0 -199
  460. package/dist/components/network-modifications/shunt-compensator/creation/ShuntCompensatorCreationForm.js +0 -82
  461. package/dist/components/network-modifications/shunt-compensator/creation/shuntCompensatorCreation.utils.js +0 -103
  462. package/dist/components/network-modifications/substation/creation/SubstationCreationForm.js +0 -63
  463. package/dist/components/network-modifications/substation/modification/SubstationModificationForm.js +0 -87
  464. package/dist/components/network-modifications/voltageLevel/creation/VoltageLevelCreationForm.js +0 -128
  465. package/dist/components/network-modifications/voltageLevel/creation/index.js +0 -57
  466. package/dist/components/network-modifications/voltageLevel/creation/tabs/characteristicsTab/CharacteristicsTab.js +0 -94
  467. package/dist/components/network-modifications/voltageLevel/creation/tabs/structureTab/StructureTab.js +0 -65
  468. package/dist/components/network-modifications/voltageLevel/creation/tabs/structureTab/couplingOmnibus/CouplingOmnibusCreation.js +0 -54
  469. package/dist/components/network-modifications/voltageLevel/creation/tabs/structureTab/couplingOmnibus/CouplingOmnibusForm.js +0 -100
  470. package/dist/components/network-modifications/voltageLevel/creation/tabs/structureTab/switchesBetweenSections/SwitchesBetweenSections.js +0 -101
  471. package/dist/components/network-modifications/voltageLevel/creation/tabs/substationTab/SubstationCreationSection.js +0 -62
  472. package/dist/components/network-modifications/voltageLevel/creation/tabs/substationTab/SubstationTab.js +0 -84
  473. package/dist/components/network-modifications/voltageLevel/creation/voltageLevelCreation.utils.js +0 -251
  474. package/dist/components/network-modifications/voltageLevel/index.js +0 -64
  475. package/dist/components/network-modifications/voltageLevel/modification/VoltageLevelModificationForm.js +0 -154
  476. package/dist/components/notifications/NotificationsProvider.js +0 -55
  477. package/dist/components/overflowableText/OverflowableText.d.ts +0 -11
  478. package/dist/components/overflowableText/OverflowableText.js +0 -97
  479. package/dist/components/parameters/common/ProviderParam.js +0 -58
  480. package/dist/components/parameters/common/contingency-table/columns-definitions.d.ts +0 -28
  481. package/dist/components/parameters/common/contingency-table/columns-definitions.js +0 -114
  482. package/dist/components/parameters/common/contingency-table/contingency-table.d.ts +0 -8
  483. package/dist/components/parameters/common/contingency-table/contingency-table.js +0 -133
  484. package/dist/components/parameters/common/hook/use-parameters-form.js +0 -60
  485. package/dist/components/parameters/common/limitreductions/limit-reduction-table-cell.js +0 -65
  486. package/dist/components/parameters/common/limitreductions/limit-reductions-table-form.js +0 -71
  487. package/dist/components/parameters/common/name-element-editor/name-element-editor-form.js +0 -34
  488. package/dist/components/parameters/common/name-element-editor/name-element-editor-utils.js +0 -57
  489. package/dist/components/parameters/common/parameter-field.js +0 -114
  490. package/dist/components/parameters/common/parameter-table/parameter-table.js +0 -98
  491. package/dist/components/parameters/common/parameter-table/table-cell.js +0 -83
  492. package/dist/components/parameters/common/parameter-table/table-row.js +0 -41
  493. package/dist/components/parameters/common/parameter-table-field/parameter-table-field.d.ts +0 -11
  494. package/dist/components/parameters/common/parameter-table-field/parameter-table-field.js +0 -122
  495. package/dist/components/parameters/common/parameters-creation-dialog.js +0 -85
  496. package/dist/components/parameters/common/voltage-level-table/custom-voltage-level-table-cell.js +0 -49
  497. package/dist/components/parameters/common/voltage-level-table/custom-voltage-level-table.js +0 -61
  498. package/dist/components/parameters/common/widget/parameter-float.js +0 -59
  499. package/dist/components/parameters/common/widget/parameter-line-directory-items-input.js +0 -65
  500. package/dist/components/parameters/common/widget/parameter-line-slider.js +0 -78
  501. package/dist/components/parameters/dynamic-margin-calculation/dynamic-margin-calculation-form.js +0 -107
  502. package/dist/components/parameters/dynamic-margin-calculation/dynamic-margin-calculation-inline.js +0 -184
  503. package/dist/components/parameters/dynamic-margin-calculation/loads-variations-parameters.d.ts +0 -29
  504. package/dist/components/parameters/dynamic-margin-calculation/loads-variations-parameters.js +0 -158
  505. package/dist/components/parameters/dynamic-margin-calculation/use-dynamic-margin-calculation-parameters-form.js +0 -103
  506. package/dist/components/parameters/dynamic-security-analysis/contingency-parameters.js +0 -76
  507. package/dist/components/parameters/dynamic-security-analysis/dynamic-security-analysis-inline.js +0 -137
  508. package/dist/components/parameters/dynamic-security-analysis/dynamic-security-analysis-parameters-form.js +0 -108
  509. package/dist/components/parameters/dynamic-security-analysis/use-dynamic-security-analysis-parameters-form.js +0 -108
  510. package/dist/components/parameters/dynamic-simulation/curve/common/grid-buttons.js +0 -38
  511. package/dist/components/parameters/dynamic-simulation/curve/curve-parameters.d.ts +0 -11
  512. package/dist/components/parameters/dynamic-simulation/curve/curve-parameters.js +0 -177
  513. package/dist/components/parameters/dynamic-simulation/curve/dialog/curve-preview.js +0 -123
  514. package/dist/components/parameters/dynamic-simulation/curve/dialog/curve-selector-dialog.d.ts +0 -15
  515. package/dist/components/parameters/dynamic-simulation/curve/dialog/curve-selector-dialog.js +0 -125
  516. package/dist/components/parameters/dynamic-simulation/curve/dialog/curve-selector-utils.d.ts +0 -20
  517. package/dist/components/parameters/dynamic-simulation/curve/dialog/curve-selector-utils.js +0 -283
  518. package/dist/components/parameters/dynamic-simulation/curve/dialog/curve-selector.d.ts +0 -16
  519. package/dist/components/parameters/dynamic-simulation/curve/dialog/equipment-filter.d.ts +0 -14
  520. package/dist/components/parameters/dynamic-simulation/curve/dialog/equipment-filter.js +0 -239
  521. package/dist/components/parameters/dynamic-simulation/dynamic-simulation-inline.d.ts +0 -15
  522. package/dist/components/parameters/dynamic-simulation/dynamic-simulation-inline.js +0 -194
  523. package/dist/components/parameters/dynamic-simulation/dynamic-simulation-parameters-form.d.ts +0 -15
  524. package/dist/components/parameters/dynamic-simulation/dynamic-simulation-parameters-form.js +0 -156
  525. package/dist/components/parameters/dynamic-simulation/use-dynamic-simulation-parameters-form.js +0 -125
  526. package/dist/components/parameters/loadflow/load-flow-general-parameters.js +0 -189
  527. package/dist/components/parameters/loadflow/load-flow-parameters-content.js +0 -88
  528. package/dist/components/parameters/loadflow/load-flow-parameters-dialog.js +0 -115
  529. package/dist/components/parameters/loadflow/load-flow-parameters-form.js +0 -111
  530. package/dist/components/parameters/loadflow/load-flow-parameters-header.js +0 -105
  531. package/dist/components/parameters/loadflow/load-flow-parameters-inline.js +0 -203
  532. package/dist/components/parameters/loadflow/load-flow-parameters-utils.js +0 -116
  533. package/dist/components/parameters/loadflow/use-load-flow-parameters-form.js +0 -259
  534. package/dist/components/parameters/network-visualizations/map-parameters.js +0 -121
  535. package/dist/components/parameters/network-visualizations/network-area-diagram-parameters.js +0 -67
  536. package/dist/components/parameters/network-visualizations/network-visualizations-form.js +0 -113
  537. package/dist/components/parameters/network-visualizations/network-visualizations-parameters-dialog.js +0 -107
  538. package/dist/components/parameters/network-visualizations/network-visualizations-parameters-inline.js +0 -140
  539. package/dist/components/parameters/network-visualizations/single-line-diagram-parameters.js +0 -111
  540. package/dist/components/parameters/network-visualizations/use-network-visualizations-parameters-form.js +0 -161
  541. package/dist/components/parameters/pcc-min/pcc-min-form-utils.js +0 -65
  542. package/dist/components/parameters/pcc-min/pcc-min-parameters-dialog.js +0 -105
  543. package/dist/components/parameters/pcc-min/pcc-min-parameters-form.js +0 -125
  544. package/dist/components/parameters/pcc-min/pcc-min-parameters-inline.js +0 -170
  545. package/dist/components/parameters/pcc-min/use-pcc-min-parameters-form.js +0 -141
  546. package/dist/components/parameters/security-analysis/columns-definitions.js +0 -83
  547. package/dist/components/parameters/security-analysis/security-analysis-parameters-dialog.js +0 -124
  548. package/dist/components/parameters/security-analysis/security-analysis-parameters-form.d.ts +0 -13
  549. package/dist/components/parameters/security-analysis/security-analysis-parameters-form.js +0 -165
  550. package/dist/components/parameters/security-analysis/security-analysis-parameters-inline.js +0 -191
  551. package/dist/components/parameters/security-analysis/security-analysis-parameters-selector.js +0 -92
  552. package/dist/components/parameters/security-analysis/security-analysis-violations-hiding.js +0 -149
  553. package/dist/components/parameters/security-analysis/use-security-analysis-parameters-form.js +0 -195
  554. package/dist/components/parameters/sensi/columns-definitions.d.ts +0 -31
  555. package/dist/components/parameters/sensi/columns-definitions.js +0 -352
  556. package/dist/components/parameters/sensi/sensitivity-analysis-parameters-dialog.js +0 -130
  557. package/dist/components/parameters/sensi/sensitivity-analysis-parameters-form.js +0 -143
  558. package/dist/components/parameters/sensi/sensitivity-analysis-parameters-inline.js +0 -199
  559. package/dist/components/parameters/sensi/sensitivity-parameters-fields.js +0 -79
  560. package/dist/components/parameters/sensi/sensitivity-parameters-selector.js +0 -265
  561. package/dist/components/parameters/sensi/use-sensitivity-analysis-parameters.js +0 -387
  562. package/dist/components/parameters/sensi/utils.d.ts +0 -411
  563. package/dist/components/parameters/sensi/utils.js +0 -372
  564. package/dist/components/parameters/short-circuit/short-circuit-general-tab-panel.js +0 -220
  565. package/dist/components/parameters/short-circuit/short-circuit-icc-cluster-table-cell.js +0 -76
  566. package/dist/components/parameters/short-circuit/short-circuit-icc-cluster-table-row.js +0 -36
  567. package/dist/components/parameters/short-circuit/short-circuit-icc-cluster-table.js +0 -60
  568. package/dist/components/parameters/short-circuit/short-circuit-icc-material-table-cell.js +0 -55
  569. package/dist/components/parameters/short-circuit/short-circuit-icc-material-table.js +0 -43
  570. package/dist/components/parameters/short-circuit/short-circuit-parameters-content.js +0 -112
  571. package/dist/components/parameters/short-circuit/short-circuit-parameters-dialog.js +0 -115
  572. package/dist/components/parameters/short-circuit/short-circuit-parameters-form.js +0 -73
  573. package/dist/components/parameters/short-circuit/short-circuit-parameters-inline.js +0 -180
  574. package/dist/components/parameters/short-circuit/short-circuit-parameters-utils.js +0 -303
  575. package/dist/components/parameters/short-circuit/short-circuit-power-electronics-tab-panel.js +0 -102
  576. package/dist/components/parameters/short-circuit/short-circuit-study-area-tab-panel.js +0 -150
  577. package/dist/components/parameters/short-circuit/use-short-circuit-parameters-form.js +0 -254
  578. package/dist/components/parameters/voltage-init/equipment-selection-parameters.js +0 -130
  579. package/dist/components/parameters/voltage-init/general-parameters.js +0 -123
  580. package/dist/components/parameters/voltage-init/use-voltage-init-parameters-form.js +0 -220
  581. package/dist/components/parameters/voltage-init/voltage-init-form-utils.js +0 -221
  582. package/dist/components/parameters/voltage-init/voltage-init-parameters-dialog.js +0 -105
  583. package/dist/components/parameters/voltage-init/voltage-init-parameters-form.js +0 -161
  584. package/dist/components/parameters/voltage-init/voltage-init-parameters-inline.js +0 -179
  585. package/dist/components/parameters/voltage-init/voltage-limits-parameters.js +0 -178
  586. package/dist/components/topBar/AboutDialog.js +0 -349
  587. package/dist/components/topBar/TopBar.d.ts +0 -25
  588. package/dist/components/topBar/TopBar.js +0 -537
  589. package/dist/components/topBar/UserInformationDialog.d.ts +0 -8
  590. package/dist/components/topBar/UserInformationDialog.js +0 -72
  591. package/dist/components/treeViewFinder/TreeViewFinder.d.ts +0 -39
  592. package/dist/components/treeViewFinder/TreeViewFinder.js +0 -343
  593. package/dist/components/treeViewFinder/TreeViewUtils.d.ts +0 -2
  594. /package/dist/components/{inputs/reactHookForm → composite}/agGridTable/BottomRightButtons.d.ts +0 -0
  595. /package/dist/components/{inputs/reactHookForm → composite}/agGridTable/cellEditors/index.d.ts +0 -0
  596. /package/dist/components/{inputs/reactHookForm → composite}/agGridTable/cellEditors/index.js +0 -0
  597. /package/dist/components/{inputs/reactHookForm → composite}/agGridTable/cellEditors/numericEditor.d.ts +0 -0
  598. /package/dist/components/{inputs/reactHookForm → composite}/agGridTable/cellEditors/numericEditor.js +0 -0
  599. /package/dist/components/{inputs/reactHookForm → composite}/agGridTable/csvUploader/index.d.ts +0 -0
  600. /package/dist/components/{inputs/reactHookForm → composite}/agGridTable/csvUploader/index.js +0 -0
  601. /package/dist/components/{inputs/reactHookForm → composite}/agGridTable/index.d.ts +0 -0
  602. /package/dist/components/{inputs/reactHookForm → composite}/agGridTable/index.js +0 -0
  603. /package/dist/components/{customAGGrid → composite/customAGGrid}/cell-renderers.d.ts +0 -0
  604. /package/dist/components/{customAGGrid → composite/customAGGrid}/customAggrid.style.d.ts +0 -0
  605. /package/dist/components/{customAGGrid → composite/customAGGrid}/customAggrid.style.js +0 -0
  606. /package/dist/components/{customAGGrid → composite/customAGGrid}/index.d.ts +0 -0
  607. /package/dist/components/{customAGGrid → composite/customAGGrid}/index.js +0 -0
  608. /package/dist/components/{customAGGrid → composite/customAGGrid}/separatorCellRenderer.d.ts +0 -0
  609. /package/dist/components/{dnd-table → composite/dnd-table}/dnd-table-add-rows-dialog.d.ts +0 -0
  610. /package/dist/components/{dnd-table → composite/dnd-table}/dnd-table-bottom-left-buttons.d.ts +0 -0
  611. /package/dist/components/{dnd-table → composite/dnd-table}/dnd-table-bottom-right-buttons.d.ts +0 -0
  612. /package/dist/components/{dnd-table → composite/dnd-table}/dnd-table.d.ts +0 -0
  613. /package/dist/components/{dnd-table → composite/dnd-table}/dnd-table.type.js +0 -0
  614. /package/dist/components/{dnd-table → composite/dnd-table}/index.d.ts +0 -0
  615. /package/dist/components/{dnd-table → composite/dnd-table}/index.js +0 -0
  616. /package/dist/components/{dnd-table-v2 → composite/dnd-table-v2}/deletable-table-row.d.ts +0 -0
  617. /package/dist/components/{dnd-table-v2 → composite/dnd-table-v2}/dnd-table-add-rows-dialog.d.ts +0 -0
  618. /package/dist/components/{dnd-table-v2 → composite/dnd-table-v2}/dnd-table-bottom-left-buttons.d.ts +0 -0
  619. /package/dist/components/{dnd-table-v2 → composite/dnd-table-v2}/dnd-table-bottom-right-buttons.d.ts +0 -0
  620. /package/dist/components/{dnd-table-v2 → composite/dnd-table-v2}/dnd-table-row.d.ts +0 -0
  621. /package/dist/components/{dnd-table-v2 → composite/dnd-table-v2}/dnd-table-utils.d.ts +0 -0
  622. /package/dist/components/{dnd-table-v2 → composite/dnd-table-v2}/dnd-table-utils.js +0 -0
  623. /package/dist/components/{dnd-table-v2 → composite/dnd-table-v2}/dnd-table.d.ts +0 -0
  624. /package/dist/components/{dnd-table-v2 → composite/dnd-table-v2}/dnd-table.type.js +0 -0
  625. /package/dist/components/{dnd-table-v2 → composite/dnd-table-v2}/index.d.ts +0 -0
  626. /package/dist/components/{dnd-table-v2 → composite/dnd-table-v2}/index.js +0 -0
  627. /package/dist/components/{elementSearch → composite/elementSearch}/elementItem/index.d.ts +0 -0
  628. /package/dist/components/{elementSearch → composite/elementSearch}/elementItem/index.js +0 -0
  629. /package/dist/components/{elementSearch → composite/elementSearch}/elementSearchDialog/ElementSearchDialog.d.ts +0 -0
  630. /package/dist/components/{elementSearch → composite/elementSearch}/elementSearchDialog/ElementSearchDialog.js +0 -0
  631. /package/dist/components/{elementSearch → composite/elementSearch}/elementSearchDialog/index.d.ts +0 -0
  632. /package/dist/components/{elementSearch → composite/elementSearch}/elementSearchDialog/index.js +0 -0
  633. /package/dist/components/{elementSearch → composite/elementSearch}/elementSearchInput/ElementSearchInput.d.ts +0 -0
  634. /package/dist/components/{elementSearch → composite/elementSearch}/elementSearchInput/ElementSearchInput.js +0 -0
  635. /package/dist/components/{elementSearch → composite/elementSearch}/elementSearchInput/index.d.ts +0 -0
  636. /package/dist/components/{elementSearch → composite/elementSearch}/elementSearchInput/index.js +0 -0
  637. /package/dist/components/{elementSearch → composite/elementSearch}/hooks/index.d.ts +0 -0
  638. /package/dist/components/{elementSearch → composite/elementSearch}/hooks/index.js +0 -0
  639. /package/dist/components/{elementSearch → composite/elementSearch}/hooks/useElementSearch.d.ts +0 -0
  640. /package/dist/components/{elementSearch → composite/elementSearch}/index.d.ts +0 -0
  641. /package/dist/components/{elementSearch → composite/elementSearch}/index.js +0 -0
  642. /package/dist/components/{elementSearch → composite/elementSearch}/tagRenderer/index.d.ts +0 -0
  643. /package/dist/components/{elementSearch → composite/elementSearch}/tagRenderer/index.js +0 -0
  644. /package/dist/components/{filter → composite/filter}/FilterForm.d.ts +0 -0
  645. /package/dist/components/{filter → composite/filter}/constants/FilterConstants.d.ts +0 -0
  646. /package/dist/components/{filter → composite/filter}/constants/FilterConstants.js +0 -0
  647. /package/dist/components/{filter → composite/filter}/expert/ExpertFilterEditionDialog.d.ts +0 -0
  648. /package/dist/components/{filter → composite/filter}/expert/expertFilter.type.js +0 -0
  649. /package/dist/components/{filter → composite/filter}/expert/expertFilterUtils.d.ts +0 -0
  650. /package/dist/components/{filter → composite/filter}/expert/index.d.ts +0 -0
  651. /package/dist/components/{filter → composite/filter}/expert/index.js +0 -0
  652. /package/dist/components/{filter → composite/filter}/explicitNaming/ExplicitNamingFilterConstants.d.ts +0 -0
  653. /package/dist/components/{filter → composite/filter}/explicitNaming/ExplicitNamingFilterConstants.js +0 -0
  654. /package/dist/components/{filter → composite/filter}/explicitNaming/ExplicitNamingFilterEditionDialog.d.ts +0 -0
  655. /package/dist/components/{filter → composite/filter}/explicitNaming/index.d.ts +0 -0
  656. /package/dist/components/{filter → composite/filter}/explicitNaming/index.js +0 -0
  657. /package/dist/components/{filter → composite/filter}/filter.type.js +0 -0
  658. /package/dist/components/{filter → composite/filter}/index.d.ts +0 -0
  659. /package/dist/components/{filter → composite/filter}/index.js +0 -0
  660. /package/dist/components/{filter → composite/filter}/utils/filterApi.d.ts +0 -0
  661. /package/dist/components/{filter → composite/filter}/utils/index.d.ts +0 -0
  662. /package/dist/components/{filter → composite/filter}/utils/index.js +0 -0
  663. /package/dist/components/{flatParameters → composite/flatParameters}/FlatParameters.d.ts +0 -0
  664. /package/dist/components/{flatParameters → composite/flatParameters}/index.d.ts +0 -0
  665. /package/dist/components/{flatParameters → composite/flatParameters}/index.js +0 -0
  666. /package/dist/components/{grid → composite/grid}/grid-item.d.ts +0 -0
  667. /package/dist/components/{grid → composite/grid}/grid-section.js +0 -0
  668. /package/dist/components/{grid → composite/grid}/index.d.ts +0 -0
  669. /package/dist/components/{grid → composite/grid}/index.js +0 -0
  670. /package/dist/components/{muiTable → composite/muiTable}/index.d.ts +0 -0
  671. /package/dist/components/{muiTable → composite/muiTable}/index.js +0 -0
  672. /package/dist/components/{inputs → composite}/reactQueryBuilder/AddButton.d.ts +0 -0
  673. /package/dist/components/{inputs → composite}/reactQueryBuilder/AddButton.js +0 -0
  674. /package/dist/components/{inputs → composite}/reactQueryBuilder/AutocompleteWithFavorites.d.ts +0 -0
  675. /package/dist/components/{inputs → composite}/reactQueryBuilder/AutocompleteWithFavorites.js +0 -0
  676. /package/dist/components/{inputs → composite}/reactQueryBuilder/CombinatorSelector.d.ts +0 -0
  677. /package/dist/components/{inputs → composite}/reactQueryBuilder/CountryValueEditor.d.ts +0 -0
  678. /package/dist/components/{inputs → composite}/reactQueryBuilder/CustomReactQueryBuilder.d.ts +0 -0
  679. /package/dist/components/{inputs → composite}/reactQueryBuilder/ElementValueEditor.d.ts +0 -0
  680. /package/dist/components/{inputs → composite}/reactQueryBuilder/FieldSelector.d.ts +0 -0
  681. /package/dist/components/{inputs → composite}/reactQueryBuilder/FieldSelector.js +0 -0
  682. /package/dist/components/{inputs → composite}/reactQueryBuilder/OperatorSelector.d.ts +0 -0
  683. /package/dist/components/{inputs → composite}/reactQueryBuilder/OperatorSelector.js +0 -0
  684. /package/dist/components/{inputs → composite}/reactQueryBuilder/PropertyValueEditor.d.ts +0 -0
  685. /package/dist/components/{inputs → composite}/reactQueryBuilder/RemoveButton.d.ts +0 -0
  686. /package/dist/components/{inputs → composite}/reactQueryBuilder/TextValueEditor.d.ts +0 -0
  687. /package/dist/components/{inputs → composite}/reactQueryBuilder/TextValueEditor.js +0 -0
  688. /package/dist/components/{inputs → composite}/reactQueryBuilder/TranslatedValueEditor.d.ts +0 -0
  689. /package/dist/components/{inputs → composite}/reactQueryBuilder/TranslatedValueEditor.js +0 -0
  690. /package/dist/components/{inputs → composite}/reactQueryBuilder/ValueEditor.d.ts +0 -0
  691. /package/dist/components/{inputs → composite}/reactQueryBuilder/ValueSelector.d.ts +0 -0
  692. /package/dist/components/{inputs → composite}/reactQueryBuilder/ValueSelector.js +0 -0
  693. /package/dist/components/{inputs → composite}/reactQueryBuilder/compositeRuleEditor/GroupValueEditor.js +0 -0
  694. /package/dist/components/{inputs → composite}/reactQueryBuilder/compositeRuleEditor/RuleValueEditor.js +0 -0
  695. /package/dist/components/{inputs → composite}/reactQueryBuilder/compositeRuleEditor/index.d.ts +0 -0
  696. /package/dist/components/{inputs → composite}/reactQueryBuilder/compositeRuleEditor/index.js +0 -0
  697. /package/dist/components/{inputs → composite}/reactQueryBuilder/hooks/index.d.ts +0 -0
  698. /package/dist/components/{inputs → composite}/reactQueryBuilder/hooks/index.js +0 -0
  699. /package/dist/components/{inputs → composite}/reactQueryBuilder/hooks/useConvertValue.d.ts +0 -0
  700. /package/dist/components/{inputs → composite}/reactQueryBuilder/hooks/useValid.d.ts +0 -0
  701. /package/dist/components/{inputs → composite}/reactQueryBuilder/hooks/useValid.js +0 -0
  702. /package/dist/components/{inputs → composite}/reactQueryBuilder/index.d.ts +0 -0
  703. /package/dist/components/{inputs → composite}/reactQueryBuilder/index.js +0 -0
  704. /package/dist/components/{addButton → ui/addButton}/AddButton.d.ts +0 -0
  705. /package/dist/components/{addButton → ui/addButton}/AddButton.js +0 -0
  706. /package/dist/components/{addButton → ui/addButton}/index.d.ts +0 -0
  707. /package/dist/components/{addButton → ui/addButton}/index.js +0 -0
  708. /package/dist/components/{checkBoxList → ui/checkBoxList}/CheckBoxList.d.ts +0 -0
  709. /package/dist/components/{checkBoxList → ui/checkBoxList}/CheckBoxList.js +0 -0
  710. /package/dist/components/{checkBoxList → ui/checkBoxList}/CheckBoxListItem.d.ts +0 -0
  711. /package/dist/components/{checkBoxList → ui/checkBoxList}/CheckBoxListItemContent.d.ts +0 -0
  712. /package/dist/components/{checkBoxList → ui/checkBoxList}/CheckBoxListItems.d.ts +0 -0
  713. /package/dist/components/{checkBoxList → ui/checkBoxList}/CheckBoxListItems.js +0 -0
  714. /package/dist/components/{checkBoxList → ui/checkBoxList}/DraggableCheckBoxListItem.d.ts +0 -0
  715. /package/dist/components/{checkBoxList → ui/checkBoxList}/DraggableCheckBoxListItemContent.d.ts +0 -0
  716. /package/dist/components/{checkBoxList → ui/checkBoxList}/checkBoxList.type.js +0 -0
  717. /package/dist/components/{checkBoxList → ui/checkBoxList}/index.d.ts +0 -0
  718. /package/dist/components/{checkBoxList → ui/checkBoxList}/index.js +0 -0
  719. /package/dist/components/{csvDownloader → ui/csvDownloader}/csv-export.d.ts +0 -0
  720. /package/dist/components/{csvDownloader → ui/csvDownloader}/csv-export.js +0 -0
  721. /package/dist/components/{csvDownloader → ui/csvDownloader}/csv-export.type.js +0 -0
  722. /package/dist/components/{csvDownloader → ui/csvDownloader}/export-csv-button.d.ts +0 -0
  723. /package/dist/components/{csvDownloader → ui/csvDownloader}/export-csv-button.js +0 -0
  724. /package/dist/components/{csvDownloader → ui/csvDownloader}/index.d.ts +0 -0
  725. /package/dist/components/{csvDownloader → ui/csvDownloader}/index.js +0 -0
  726. /package/dist/components/{csvDownloader → ui/csvDownloader}/use-csv-export.d.ts +0 -0
  727. /package/dist/components/{dialogs → ui/dialogs}/descriptionModificationDialog/DescriptionModificationDialog.d.ts +0 -0
  728. /package/dist/components/{dialogs → ui/dialogs}/descriptionModificationDialog/index.d.ts +0 -0
  729. /package/dist/components/{dialogs → ui/dialogs}/descriptionModificationDialog/index.js +0 -0
  730. /package/dist/components/{dialogs → ui/dialogs}/elementSaveDialog/index.d.ts +0 -0
  731. /package/dist/components/{dialogs → ui/dialogs}/elementSaveDialog/index.js +0 -0
  732. /package/dist/components/{dialogs → ui/dialogs}/elementSaveDialog/utils.js +0 -0
  733. /package/dist/components/{dialogs → ui/dialogs}/modifyElementSelection/index.d.ts +0 -0
  734. /package/dist/components/{dialogs → ui/dialogs}/modifyElementSelection/index.js +0 -0
  735. /package/dist/components/{multipleSelectionDialog → ui/dialogs/multipleSelectionDialog}/index.d.ts +0 -0
  736. /package/dist/components/{multipleSelectionDialog → ui/dialogs/multipleSelectionDialog}/index.js +0 -0
  737. /package/dist/components/{dialogs → ui/dialogs}/popupConfirmationDialog/PopupConfirmationDialog.d.ts +0 -0
  738. /package/dist/components/{dialogs → ui/dialogs}/popupConfirmationDialog/index.d.ts +0 -0
  739. /package/dist/components/{dialogs → ui/dialogs}/popupConfirmationDialog/index.js +0 -0
  740. /package/dist/components/{directoryItemSelector → ui/directoryItemSelector}/index.d.ts +0 -0
  741. /package/dist/components/{directoryItemSelector → ui/directoryItemSelector}/index.js +0 -0
  742. /package/dist/components/{expandableGroup → ui/expandableGroup}/ExpandableGroup.d.ts +0 -0
  743. /package/dist/components/{expandableGroup → ui/expandableGroup}/ExpandableGroup.js +0 -0
  744. /package/dist/components/{expandableGroup → ui/expandableGroup}/index.d.ts +0 -0
  745. /package/dist/components/{expandableGroup → ui/expandableGroup}/index.js +0 -0
  746. /package/dist/components/{icons → ui/icons}/ArrowsInputIcon.d.ts +0 -0
  747. /package/dist/components/{icons → ui/icons}/ArrowsInputIcon.js +0 -0
  748. /package/dist/components/{icons → ui/icons}/ArrowsOutputIcon.d.ts +0 -0
  749. /package/dist/components/{icons → ui/icons}/ArrowsOutputIcon.js +0 -0
  750. /package/dist/components/{icons → ui/icons}/EditNoteIcon.d.ts +0 -0
  751. /package/dist/components/{icons → ui/icons}/EditNoteIcon.js +0 -0
  752. /package/dist/components/{icons → ui/icons}/LeftPanelCloseIcon.d.ts +0 -0
  753. /package/dist/components/{icons → ui/icons}/LeftPanelCloseIcon.js +0 -0
  754. /package/dist/components/{icons → ui/icons}/LeftPanelOpenIcon.d.ts +0 -0
  755. /package/dist/components/{icons → ui/icons}/LeftPanelOpenIcon.js +0 -0
  756. /package/dist/components/{icons → ui/icons}/index.d.ts +0 -0
  757. /package/dist/components/{icons → ui/icons}/index.js +0 -0
  758. /package/dist/components/{inputs → ui/inputs}/ActivableChip.d.ts +0 -0
  759. /package/dist/components/{inputs → ui/inputs}/ActivableChip.js +0 -0
  760. /package/dist/components/{inputs → ui/inputs}/SelectClearable.d.ts +0 -0
  761. /package/dist/components/{inputs → ui/inputs}/checkbox-autocomplete/checkbox-autocomplete.d.ts +0 -0
  762. /package/dist/components/{inputs → ui/inputs}/checkbox-autocomplete/checkbox-autocomplete.js +0 -0
  763. /package/dist/components/{inputs → ui/inputs}/checkbox-autocomplete/checkbox-item.d.ts +0 -0
  764. /package/dist/components/{inputs → ui/inputs}/checkbox-autocomplete/checkbox-item.js +0 -0
  765. /package/dist/components/{inputs → ui/inputs}/checkbox-autocomplete/index.d.ts +0 -0
  766. /package/dist/components/{inputs → ui/inputs}/checkbox-autocomplete/index.js +0 -0
  767. /package/dist/components/{inputs → ui/inputs}/checkbox-autocomplete/virtualized-list-item.d.ts +0 -0
  768. /package/dist/components/{inputs → ui/inputs}/checkbox-autocomplete/virtualized-list-item.js +0 -0
  769. /package/dist/components/{inputs → ui/inputs}/checkbox-autocomplete/virtualized-list.d.ts +0 -0
  770. /package/dist/components/{inputs → ui/inputs}/checkbox-autocomplete/virtualized-list.js +0 -0
  771. /package/dist/components/{menus → ui/menus}/index.d.ts +0 -0
  772. /package/dist/components/{menus → ui/menus}/index.js +0 -0
  773. /package/dist/components/{overflowableText → ui/overflowableText}/index.d.ts +0 -0
  774. /package/dist/components/{overflowableText → ui/overflowableText}/index.js +0 -0
  775. /package/dist/components/{inputs → ui}/reactHookForm/CheckboxNullableInput.d.ts +0 -0
  776. /package/dist/components/{inputs → ui}/reactHookForm/CheckboxNullableInput.js +0 -0
  777. /package/dist/components/{inputs → ui}/reactHookForm/CountrySelectionInput.d.ts +0 -0
  778. /package/dist/components/{inputs → ui}/reactHookForm/CountrySelectionInput.js +0 -0
  779. /package/dist/components/{inputs → ui}/reactHookForm/DirectoryItemsInput.d.ts +0 -0
  780. /package/dist/components/{inputs → ui}/reactHookForm/OverflowableChip.d.ts +0 -0
  781. /package/dist/components/{inputs → ui}/reactHookForm/OverflowableChipWithHelperText.d.ts +0 -0
  782. /package/dist/components/{inputs → ui}/reactHookForm/OverflowableChipWithHelperText.js +0 -0
  783. /package/dist/components/{inputs → ui}/reactHookForm/RawReadOnlyInput.d.ts +0 -0
  784. /package/dist/components/{inputs → ui}/reactHookForm/RawReadOnlyInput.js +0 -0
  785. /package/dist/components/{inputs → ui}/reactHookForm/autocompleteInputs/AutocompleteInput.d.ts +0 -0
  786. /package/dist/components/{inputs → ui}/reactHookForm/autocompleteInputs/AutocompleteInput.js +0 -0
  787. /package/dist/components/{inputs → ui}/reactHookForm/autocompleteInputs/MultipleAutocompleteInput.d.ts +0 -0
  788. /package/dist/components/{inputs → ui}/reactHookForm/autocompleteInputs/MultipleAutocompleteInput.js +0 -0
  789. /package/dist/components/{inputs → ui}/reactHookForm/autocompleteInputs/index.d.ts +0 -0
  790. /package/dist/components/{inputs → ui}/reactHookForm/autocompleteInputs/index.js +0 -0
  791. /package/dist/components/{inputs → ui}/reactHookForm/booleans/BooleanInput.d.ts +0 -0
  792. /package/dist/components/{inputs → ui}/reactHookForm/booleans/BooleanInput.js +0 -0
  793. /package/dist/components/{inputs → ui}/reactHookForm/booleans/CheckboxInput.d.ts +0 -0
  794. /package/dist/components/{inputs → ui}/reactHookForm/booleans/CheckboxInput.js +0 -0
  795. /package/dist/components/{inputs → ui}/reactHookForm/booleans/RadioInput.d.ts +0 -0
  796. /package/dist/components/{inputs → ui}/reactHookForm/booleans/RadioInput.js +0 -0
  797. /package/dist/components/{inputs → ui}/reactHookForm/booleans/SwitchInput.d.ts +0 -0
  798. /package/dist/components/{inputs → ui}/reactHookForm/booleans/SwitchInput.js +0 -0
  799. /package/dist/components/{inputs → ui}/reactHookForm/booleans/index.d.ts +0 -0
  800. /package/dist/components/{inputs → ui}/reactHookForm/booleans/index.js +0 -0
  801. /package/dist/components/{inputs → ui}/reactHookForm/chip-items-input.d.ts +0 -0
  802. /package/dist/components/{inputs → ui}/reactHookForm/constants.d.ts +0 -0
  803. /package/dist/components/{inputs → ui}/reactHookForm/constants.js +0 -0
  804. /package/dist/components/{inputs → ui}/reactHookForm/errorManagement/ErrorInput.d.ts +0 -0
  805. /package/dist/components/{inputs → ui}/reactHookForm/errorManagement/ErrorInput.js +0 -0
  806. /package/dist/components/{inputs → ui}/reactHookForm/errorManagement/FieldErrorAlert.d.ts +0 -0
  807. /package/dist/components/{inputs → ui}/reactHookForm/errorManagement/FieldErrorAlert.js +0 -0
  808. /package/dist/components/{inputs → ui}/reactHookForm/errorManagement/MidFormError.d.ts +0 -0
  809. /package/dist/components/{inputs → ui}/reactHookForm/errorManagement/MidFormError.js +0 -0
  810. /package/dist/components/{inputs → ui}/reactHookForm/errorManagement/index.d.ts +0 -0
  811. /package/dist/components/{inputs → ui}/reactHookForm/errorManagement/index.js +0 -0
  812. /package/dist/components/{inputs → ui}/reactHookForm/expandableInput/DeletableRow.d.ts +0 -0
  813. /package/dist/components/{inputs → ui}/reactHookForm/expandableInput/ExpandableInput.d.ts +0 -0
  814. /package/dist/components/{inputs → ui}/reactHookForm/expandableInput/index.d.ts +0 -0
  815. /package/dist/components/{inputs → ui}/reactHookForm/expandableInput/index.js +0 -0
  816. /package/dist/components/{inputs → ui}/reactHookForm/numbers/FloatInput.d.ts +0 -0
  817. /package/dist/components/{inputs → ui}/reactHookForm/numbers/FloatInput.js +0 -0
  818. /package/dist/components/{inputs → ui}/reactHookForm/numbers/IntegerInput.d.ts +0 -0
  819. /package/dist/components/{inputs → ui}/reactHookForm/numbers/IntegerInput.js +0 -0
  820. /package/dist/components/{inputs → ui}/reactHookForm/numbers/RangeInput.d.ts +0 -0
  821. /package/dist/components/{inputs → ui}/reactHookForm/numbers/RangeInput.js +0 -0
  822. /package/dist/components/{inputs → ui}/reactHookForm/numbers/SliderInput.d.ts +0 -0
  823. /package/dist/components/{inputs → ui}/reactHookForm/numbers/SliderInput.js +0 -0
  824. /package/dist/components/{inputs → ui}/reactHookForm/numbers/index.d.ts +0 -0
  825. /package/dist/components/{inputs → ui}/reactHookForm/numbers/index.js +0 -0
  826. /package/dist/components/{inputs → ui}/reactHookForm/numbers/utils.d.ts +0 -0
  827. /package/dist/components/{inputs → ui}/reactHookForm/numbers/utils.js +0 -0
  828. /package/dist/components/{inputs → ui}/reactHookForm/provider/CustomFormProvider.d.ts +0 -0
  829. /package/dist/components/{inputs → ui}/reactHookForm/provider/CustomFormProvider.js +0 -0
  830. /package/dist/components/{inputs → ui}/reactHookForm/provider/index.d.ts +0 -0
  831. /package/dist/components/{inputs → ui}/reactHookForm/provider/index.js +0 -0
  832. /package/dist/components/{inputs → ui}/reactHookForm/provider/useCustomFormContext.d.ts +0 -0
  833. /package/dist/components/{inputs → ui}/reactHookForm/provider/useCustomFormContext.js +0 -0
  834. /package/dist/components/{inputs → ui}/reactHookForm/readOnly/ButtonReadOnlyInput.d.ts +0 -0
  835. /package/dist/components/{inputs → ui}/reactHookForm/readOnly/ButtonReadOnlyInput.js +0 -0
  836. /package/dist/components/{inputs → ui}/reactHookForm/readOnly/ReadOnlyInput.d.ts +0 -0
  837. /package/dist/components/{inputs → ui}/reactHookForm/readOnly/ReadOnlyInput.js +0 -0
  838. /package/dist/components/{inputs → ui}/reactHookForm/readOnly/index.d.ts +0 -0
  839. /package/dist/components/{inputs → ui}/reactHookForm/readOnly/index.js +0 -0
  840. /package/dist/components/{inputs → ui}/reactHookForm/selectInputs/CountriesInput.d.ts +0 -0
  841. /package/dist/components/{inputs → ui}/reactHookForm/selectInputs/CountriesInput.js +0 -0
  842. /package/dist/components/{inputs → ui}/reactHookForm/selectInputs/EnumInput.d.ts +0 -0
  843. /package/dist/components/{inputs → ui}/reactHookForm/selectInputs/EnumInput.js +0 -0
  844. /package/dist/components/{inputs → ui}/reactHookForm/selectInputs/InputWithPopupConfirmation.d.ts +0 -0
  845. /package/dist/components/{inputs → ui}/reactHookForm/selectInputs/MuiSelectInput.d.ts +0 -0
  846. /package/dist/components/{inputs → ui}/reactHookForm/selectInputs/MuiSelectInput.js +0 -0
  847. /package/dist/components/{inputs → ui}/reactHookForm/selectInputs/SelectInput.d.ts +0 -0
  848. /package/dist/components/{inputs → ui}/reactHookForm/selectInputs/SelectInput.js +0 -0
  849. /package/dist/components/{inputs → ui}/reactHookForm/selectInputs/SelectWithConfirmationInput.d.ts +0 -0
  850. /package/dist/components/{inputs → ui}/reactHookForm/selectInputs/index.d.ts +0 -0
  851. /package/dist/components/{inputs → ui}/reactHookForm/selectInputs/index.js +0 -0
  852. /package/dist/components/{inputs → ui}/reactHookForm/tableInputs/index.d.ts +0 -0
  853. /package/dist/components/{inputs → ui}/reactHookForm/tableInputs/index.js +0 -0
  854. /package/dist/components/{inputs → ui}/reactHookForm/tableInputs/table-numerical-input.d.ts +0 -0
  855. /package/dist/components/{inputs → ui}/reactHookForm/tableInputs/table-numerical-input.js +0 -0
  856. /package/dist/components/{inputs → ui}/reactHookForm/tableInputs/table-text-input.d.ts +0 -0
  857. /package/dist/components/{inputs → ui}/reactHookForm/tableInputs/table-text-input.js +0 -0
  858. /package/dist/components/{inputs → ui}/reactHookForm/text/DescriptionField.d.ts +0 -0
  859. /package/dist/components/{inputs → ui}/reactHookForm/text/DescriptionInput.d.ts +0 -0
  860. /package/dist/components/{inputs → ui}/reactHookForm/text/ExpandingTextField.d.ts +0 -0
  861. /package/dist/components/{inputs → ui}/reactHookForm/text/ExpandingTextField.js +0 -0
  862. /package/dist/components/{inputs → ui}/reactHookForm/text/TextInput.d.ts +0 -0
  863. /package/dist/components/{inputs → ui}/reactHookForm/text/TextInput.js +0 -0
  864. /package/dist/components/{inputs → ui}/reactHookForm/text/UniqueNameInput.d.ts +0 -0
  865. /package/dist/components/{inputs → ui}/reactHookForm/text/UniqueNameInput.js +0 -0
  866. /package/dist/components/{inputs → ui}/reactHookForm/text/index.d.ts +0 -0
  867. /package/dist/components/{inputs → ui}/reactHookForm/text/index.js +0 -0
  868. /package/dist/components/{inputs → ui}/reactHookForm/utils/CancelButton.d.ts +0 -0
  869. /package/dist/components/{inputs → ui}/reactHookForm/utils/CancelButton.js +0 -0
  870. /package/dist/components/{inputs → ui}/reactHookForm/utils/FieldLabel.d.ts +0 -0
  871. /package/dist/components/{inputs → ui}/reactHookForm/utils/FieldLabel.js +0 -0
  872. /package/dist/components/{inputs → ui}/reactHookForm/utils/HelperPreviousValue.d.ts +0 -0
  873. /package/dist/components/{inputs → ui}/reactHookForm/utils/SubmitButton.d.ts +0 -0
  874. /package/dist/components/{inputs → ui}/reactHookForm/utils/SubmitButton.js +0 -0
  875. /package/dist/components/{inputs → ui}/reactHookForm/utils/TextFieldWithAdornment.d.ts +0 -0
  876. /package/dist/components/{inputs → ui}/reactHookForm/utils/TextFieldWithAdornment.js +0 -0
  877. /package/dist/components/{inputs → ui}/reactHookForm/utils/functions.d.ts +0 -0
  878. /package/dist/components/{inputs → ui}/reactHookForm/utils/functions.js +0 -0
  879. /package/dist/components/{inputs → ui}/reactHookForm/utils/index.d.ts +0 -0
  880. /package/dist/components/{inputs → ui}/reactHookForm/utils/index.js +0 -0
  881. /package/dist/components/{resizablePanels → ui/resizablePanels}/ResizeHandle.d.ts +0 -0
  882. /package/dist/components/{resizablePanels → ui/resizablePanels}/ResizeHandle.js +0 -0
  883. /package/dist/components/{resizablePanels → ui/resizablePanels}/index.d.ts +0 -0
  884. /package/dist/components/{resizablePanels → ui/resizablePanels}/index.js +0 -0
  885. /package/dist/components/{snackbarProvider → ui/snackbarProvider}/SnackbarProvider.d.ts +0 -0
  886. /package/dist/components/{snackbarProvider → ui/snackbarProvider}/SnackbarProvider.js +0 -0
  887. /package/dist/components/{snackbarProvider → ui/snackbarProvider}/index.d.ts +0 -0
  888. /package/dist/components/{snackbarProvider → ui/snackbarProvider}/index.js +0 -0
  889. /package/dist/components/{tooltip → ui/tooltip}/CustomTooltip.d.ts +0 -0
  890. /package/dist/components/{tooltip → ui/tooltip}/CustomTooltip.js +0 -0
  891. /package/dist/components/{tooltip → ui/tooltip}/index.d.ts +0 -0
  892. /package/dist/components/{tooltip → ui/tooltip}/index.js +0 -0
  893. /package/dist/components/{treeViewFinder → ui/treeViewFinder}/TreeViewUtils.js +0 -0
  894. /package/dist/components/{treeViewFinder → ui/treeViewFinder}/index.d.ts +0 -0
  895. /package/dist/components/{treeViewFinder → ui/treeViewFinder}/index.js +0 -0
  896. /package/dist/{components → features}/announcement/index.d.ts +0 -0
  897. /package/dist/{components → features}/announcement/index.js +0 -0
  898. /package/dist/{components → features}/authentication/AuthenticationRouter.d.ts +0 -0
  899. /package/dist/{components → features}/authentication/AuthenticationRouter.js +0 -0
  900. /package/dist/{components → features}/authentication/AuthenticationRouterErrorDisplay.d.ts +0 -0
  901. /package/dist/{components → features}/authentication/AuthenticationRouterErrorDisplay.js +0 -0
  902. /package/dist/{components → features}/authentication/Login.d.ts +0 -0
  903. /package/dist/{components → features}/authentication/Login.js +0 -0
  904. /package/dist/{components → features}/authentication/Logout.d.ts +0 -0
  905. /package/dist/{components → features}/authentication/Logout.js +0 -0
  906. /package/dist/{components → features}/authentication/SignInCallbackHandler.d.ts +0 -0
  907. /package/dist/{components → features}/authentication/SignInCallbackHandler.js +0 -0
  908. /package/dist/{components → features}/authentication/SilentRenewCallbackHandler.d.ts +0 -0
  909. /package/dist/{components → features}/authentication/SilentRenewCallbackHandler.js +0 -0
  910. /package/dist/{components → features}/authentication/alert/ErrorInLogoutAlert.d.ts +0 -0
  911. /package/dist/{components → features}/authentication/alert/ErrorInLogoutAlert.js +0 -0
  912. /package/dist/{components → features}/authentication/alert/ErrorInUserValidationAlert.d.ts +0 -0
  913. /package/dist/{components → features}/authentication/alert/ErrorInUserValidationAlert.js +0 -0
  914. /package/dist/{components → features}/authentication/alert/UnauthorizedAccessAlert.d.ts +0 -0
  915. /package/dist/{components → features}/authentication/alert/UnauthorizedAccessAlert.js +0 -0
  916. /package/dist/{components → features}/authentication/alert/index.d.ts +0 -0
  917. /package/dist/{components → features}/authentication/alert/index.js +0 -0
  918. /package/dist/{components → features}/authentication/authenticationType.d.ts +0 -0
  919. /package/dist/{components → features}/authentication/authenticationType.js +0 -0
  920. /package/dist/{components → features}/authentication/index.d.ts +0 -0
  921. /package/dist/{components → features}/authentication/index.js +0 -0
  922. /package/dist/{components → features}/authentication/utils/authService.d.ts +0 -0
  923. /package/dist/{components → features}/authentication/utils/authService.js +0 -0
  924. /package/dist/{components → features}/authentication/utils/index.d.ts +0 -0
  925. /package/dist/{components → features}/authentication/utils/index.js +0 -0
  926. /package/dist/{components → features}/authentication/utils/userManagerMock.d.ts +0 -0
  927. /package/dist/{components → features}/authentication/utils/userManagerMock.js +0 -0
  928. /package/dist/{components → features}/cardErrorBoundary/CardErrorBoundary.d.ts +0 -0
  929. /package/dist/{components → features}/cardErrorBoundary/CardErrorBoundary.js +0 -0
  930. /package/dist/{components → features}/cardErrorBoundary/index.d.ts +0 -0
  931. /package/dist/{components → features}/cardErrorBoundary/index.js +0 -0
  932. /package/dist/{components → features}/network-modification-table/columns-definition.d.ts +0 -0
  933. /package/dist/{components → features}/network-modification-table/columns-definition.js +0 -0
  934. /package/dist/{components → features}/network-modification-table/drag-forbidden-chip.d.ts +0 -0
  935. /package/dist/{components → features}/network-modification-table/drag-forbidden-chip.js +0 -0
  936. /package/dist/{components → features}/network-modification-table/index.d.ts +0 -0
  937. /package/dist/{components → features}/network-modification-table/index.js +0 -0
  938. /package/dist/{components → features}/network-modification-table/network-modification-table-styles.d.ts +0 -0
  939. /package/dist/{components → features}/network-modification-table/network-modification-table-styles.js +0 -0
  940. /package/dist/{components → features}/network-modification-table/network-modifications-table.d.ts +0 -0
  941. /package/dist/{components → features}/network-modification-table/network-modifications-table.js +0 -0
  942. /package/dist/{components → features}/network-modification-table/renderers/cell-renderers.d.ts +0 -0
  943. /package/dist/{components → features}/network-modification-table/renderers/cell-renderers.js +0 -0
  944. /package/dist/{components → features}/network-modification-table/renderers/depth-box.d.ts +0 -0
  945. /package/dist/{components → features}/network-modification-table/renderers/depth-box.js +0 -0
  946. /package/dist/{components → features}/network-modification-table/renderers/description-cell.d.ts +0 -0
  947. /package/dist/{components → features}/network-modification-table/renderers/drag-handle-cell.d.ts +0 -0
  948. /package/dist/{components → features}/network-modification-table/renderers/drag-handle-cell.js +0 -0
  949. /package/dist/{components → features}/network-modification-table/renderers/index.d.ts +0 -0
  950. /package/dist/{components → features}/network-modification-table/renderers/index.js +0 -0
  951. /package/dist/{components → features}/network-modification-table/renderers/name-cell.d.ts +0 -0
  952. /package/dist/{components → features}/network-modification-table/renderers/network-modification-node-editor-name-header.d.ts +0 -0
  953. /package/dist/{components → features}/network-modification-table/renderers/network-modification-node-editor-name-header.js +0 -0
  954. /package/dist/{components → features}/network-modification-table/renderers/root-network-chip-cell.d.ts +0 -0
  955. /package/dist/{components → features}/network-modification-table/renderers/select-cell.d.ts +0 -0
  956. /package/dist/{components → features}/network-modification-table/renderers/select-cell.js +0 -0
  957. /package/dist/{components → features}/network-modification-table/renderers/select-header-cell.d.ts +0 -0
  958. /package/dist/{components → features}/network-modification-table/renderers/select-header-cell.js +0 -0
  959. /package/dist/{components → features}/network-modification-table/renderers/switch-cell.d.ts +0 -0
  960. /package/dist/{components → features}/network-modification-table/renderers/switch-cell.js +0 -0
  961. /package/dist/{components → features}/network-modification-table/row/drag-row-clone.d.ts +0 -0
  962. /package/dist/{components → features}/network-modification-table/row/drag-row-clone.js +0 -0
  963. /package/dist/{components → features}/network-modification-table/row/index.d.ts +0 -0
  964. /package/dist/{components → features}/network-modification-table/row/index.js +0 -0
  965. /package/dist/{components → features}/network-modification-table/row/modification-row.d.ts +0 -0
  966. /package/dist/{components → features}/network-modification-table/row/modification-row.js +0 -0
  967. /package/dist/{components → features}/network-modification-table/use-modifications-drag-and-drop.d.ts +0 -0
  968. /package/dist/{components → features}/network-modification-table/use-modifications-drag-and-drop.js +0 -0
  969. /package/dist/{components → features}/network-modification-table/use-modifications-selection.d.ts +0 -0
  970. /package/dist/{components → features}/network-modification-table/use-modifications-selection.js +0 -0
  971. /package/dist/{components → features}/network-modification-table/utils.d.ts +0 -0
  972. /package/dist/{components → features}/network-modification-table/utils.js +0 -0
  973. /package/dist/{components → features}/network-modifications/battery/creation/BatteryCreationForm.d.ts +0 -0
  974. /package/dist/{components → features}/network-modifications/battery/creation/batteryCreation.types.d.ts +0 -0
  975. /package/dist/{components → features}/network-modifications/battery/creation/batteryCreation.types.js +0 -0
  976. /package/dist/{components → features}/network-modifications/battery/creation/batteryCreation.utils.d.ts +0 -0
  977. /package/dist/{components → features}/network-modifications/battery/creation/index.d.ts +0 -0
  978. /package/dist/{components → features}/network-modifications/battery/creation/index.js +0 -0
  979. /package/dist/{components → features}/network-modifications/battery/index.d.ts +0 -0
  980. /package/dist/{components → features}/network-modifications/battery/index.js +0 -0
  981. /package/dist/{components → features}/network-modifications/by-filter/assignment/assignment/assignment-constants.d.ts +0 -0
  982. /package/dist/{components → features}/network-modifications/by-filter/assignment/assignment/assignment-constants.js +0 -0
  983. /package/dist/{components → features}/network-modifications/by-filter/assignment/assignment/assignment-form.d.ts +0 -0
  984. /package/dist/{components → features}/network-modifications/by-filter/assignment/assignment/assignment-utils.d.ts +0 -0
  985. /package/dist/{components → features}/network-modifications/by-filter/assignment/assignment/assignment-utils.js +0 -0
  986. /package/dist/{components → features}/network-modifications/by-filter/assignment/assignment/assignment.type.d.ts +0 -0
  987. /package/dist/{components → features}/network-modifications/by-filter/assignment/assignment/assignment.type.js +0 -0
  988. /package/dist/{components → features}/network-modifications/by-filter/assignment/index.d.ts +0 -0
  989. /package/dist/{components → features}/network-modifications/by-filter/assignment/index.js +0 -0
  990. /package/dist/{components → features}/network-modifications/by-filter/assignment/modification-by-assignment-form.d.ts +0 -0
  991. /package/dist/{components → features}/network-modifications/by-filter/assignment/modificationByAssignment.types.d.ts +0 -0
  992. /package/dist/{components → features}/network-modifications/by-filter/assignment/modificationByAssignment.types.js +0 -0
  993. /package/dist/{components → features}/network-modifications/by-filter/assignment/modificationByAssignment.utils.d.ts +0 -0
  994. /package/dist/{components → features}/network-modifications/by-filter/assignment/modificationByAssignment.utils.js +0 -0
  995. /package/dist/{components → features}/network-modifications/by-filter/commons/by-filter.type.d.ts +0 -0
  996. /package/dist/{components → features}/network-modifications/by-filter/commons/by-filter.type.js +0 -0
  997. /package/dist/{components → features}/network-modifications/by-filter/deletion/ByFilterDeletionForm.d.ts +0 -0
  998. /package/dist/{components → features}/network-modifications/by-filter/deletion/byFilterDeletion.types.d.ts +0 -0
  999. /package/dist/{components → features}/network-modifications/by-filter/deletion/byFilterDeletion.types.js +0 -0
  1000. /package/dist/{components → features}/network-modifications/by-filter/deletion/byFilterDeletion.utils.d.ts +0 -0
  1001. /package/dist/{components → features}/network-modifications/by-filter/deletion/byFilterDeletion.utils.js +0 -0
  1002. /package/dist/{components → features}/network-modifications/by-filter/deletion/index.d.ts +0 -0
  1003. /package/dist/{components → features}/network-modifications/by-filter/deletion/index.js +0 -0
  1004. /package/dist/{components → features}/network-modifications/by-filter/index.d.ts +0 -0
  1005. /package/dist/{components → features}/network-modifications/by-filter/index.js +0 -0
  1006. /package/dist/{components → features}/network-modifications/common/activePowerControl/ActivePowerControlForm.d.ts +0 -0
  1007. /package/dist/{components → features}/network-modifications/common/activePowerControl/activePowerControlForm.type.d.ts +0 -0
  1008. /package/dist/{components → features}/network-modifications/common/activePowerControl/activePowerControlForm.type.js +0 -0
  1009. /package/dist/{components → features}/network-modifications/common/activePowerControl/activePowerControlForm.utils.d.ts +0 -0
  1010. /package/dist/{components → features}/network-modifications/common/activePowerControl/activePowerControlForm.utils.js +0 -0
  1011. /package/dist/{components → features}/network-modifications/common/activePowerControl/index.d.ts +0 -0
  1012. /package/dist/{components → features}/network-modifications/common/activePowerControl/index.js +0 -0
  1013. /package/dist/{components → features}/network-modifications/common/connectivity/BranchConnectivityForm.d.ts +0 -0
  1014. /package/dist/{components → features}/network-modifications/common/connectivity/ConnectivityForm.d.ts +0 -0
  1015. /package/dist/{components → features}/network-modifications/common/connectivity/PositionForm.d.ts +0 -0
  1016. /package/dist/{components → features}/network-modifications/common/connectivity/VoltageLevelConnectivityForm.d.ts +0 -0
  1017. /package/dist/{components → features}/network-modifications/common/connectivity/connectivity.type.d.ts +0 -0
  1018. /package/dist/{components → features}/network-modifications/common/connectivity/connectivity.type.js +0 -0
  1019. /package/dist/{components → features}/network-modifications/common/connectivity/connectivityForm.utils.d.ts +0 -0
  1020. /package/dist/{components → features}/network-modifications/common/connectivity/connectivityForm.utils.js +0 -0
  1021. /package/dist/{components → features}/network-modifications/common/connectivity/index.d.ts +0 -0
  1022. /package/dist/{components → features}/network-modifications/common/connectivity/index.js +0 -0
  1023. /package/dist/{components → features}/network-modifications/common/form.utils.d.ts +0 -0
  1024. /package/dist/{components → features}/network-modifications/common/form.utils.js +0 -0
  1025. /package/dist/{components → features}/network-modifications/common/measurements/BranchActiveReactivePowerMeasurementsForm.d.ts +0 -0
  1026. /package/dist/{components → features}/network-modifications/common/measurements/PowerMeasurementsForm.d.ts +0 -0
  1027. /package/dist/{components → features}/network-modifications/common/measurements/PowerMeasurementsForm.js +0 -0
  1028. /package/dist/{components → features}/network-modifications/common/measurements/PowerWithValidityForm.d.ts +0 -0
  1029. /package/dist/{components → features}/network-modifications/common/measurements/branchActiveReactivePowerForm.utils.d.ts +0 -0
  1030. /package/dist/{components → features}/network-modifications/common/measurements/branchActiveReactivePowerForm.utils.js +0 -0
  1031. /package/dist/{components → features}/network-modifications/common/measurements/index.d.ts +0 -0
  1032. /package/dist/{components → features}/network-modifications/common/measurements/index.js +0 -0
  1033. /package/dist/{components → features}/network-modifications/common/measurements/injectionActiveReactivePowerForm.utils.d.ts +0 -0
  1034. /package/dist/{components → features}/network-modifications/common/measurements/injectionActiveReactivePowerForm.utils.js +0 -0
  1035. /package/dist/{components → features}/network-modifications/common/measurements/measurement.type.d.ts +0 -0
  1036. /package/dist/{components → features}/network-modifications/common/measurements/measurement.type.js +0 -0
  1037. /package/dist/{components → features}/network-modifications/common/measurements/powerWithValidity.utils.d.ts +0 -0
  1038. /package/dist/{components → features}/network-modifications/common/measurements/powerWithValidity.utils.js +0 -0
  1039. /package/dist/{components → features}/network-modifications/common/properties/PropertiesForm.d.ts +0 -0
  1040. /package/dist/{components → features}/network-modifications/common/properties/PropertyForm.d.ts +0 -0
  1041. /package/dist/{components → features}/network-modifications/common/properties/index.d.ts +0 -0
  1042. /package/dist/{components → features}/network-modifications/common/properties/index.js +0 -0
  1043. /package/dist/{components → features}/network-modifications/common/properties/properties.type.d.ts +0 -0
  1044. /package/dist/{components → features}/network-modifications/common/properties/properties.type.js +0 -0
  1045. /package/dist/{components → features}/network-modifications/common/properties/propertyUtils.d.ts +0 -0
  1046. /package/dist/{components → features}/network-modifications/common/properties/propertyUtils.js +0 -0
  1047. /package/dist/{components → features}/network-modifications/common/reactiveLimits/ReactiveLimitsForm.d.ts +0 -0
  1048. /package/dist/{components → features}/network-modifications/common/reactiveLimits/index.d.ts +0 -0
  1049. /package/dist/{components → features}/network-modifications/common/reactiveLimits/index.js +0 -0
  1050. /package/dist/{components → features}/network-modifications/common/reactiveLimits/reactiveCapabilityCurve/ReactiveCapabilityCurveRowForm.d.ts +0 -0
  1051. /package/dist/{components → features}/network-modifications/common/reactiveLimits/reactiveCapabilityCurve/ReactiveCapabilityCurveTableForm.d.ts +0 -0
  1052. /package/dist/{components → features}/network-modifications/common/reactiveLimits/reactiveCapabilityCurve/index.d.ts +0 -0
  1053. /package/dist/{components → features}/network-modifications/common/reactiveLimits/reactiveCapabilityCurve/index.js +0 -0
  1054. /package/dist/{components → features}/network-modifications/common/reactiveLimits/reactiveCapabilityCurve/reactiveCapability.utils.d.ts +0 -0
  1055. /package/dist/{components → features}/network-modifications/common/reactiveLimits/reactiveCapabilityCurve/reactiveCapability.utils.js +0 -0
  1056. /package/dist/{components → features}/network-modifications/common/reactiveLimits/reactiveLimits.type.d.ts +0 -0
  1057. /package/dist/{components → features}/network-modifications/common/reactiveLimits/reactiveLimits.type.js +0 -0
  1058. /package/dist/{components → features}/network-modifications/common/reactiveLimits/reactiveLimits.utils.d.ts +0 -0
  1059. /package/dist/{components → features}/network-modifications/common/reactiveLimits/reactiveLimits.utils.js +0 -0
  1060. /package/dist/{components → features}/network-modifications/common/setpoints/SetPointsForm.d.ts +0 -0
  1061. /package/dist/{components → features}/network-modifications/common/setpoints/index.d.ts +0 -0
  1062. /package/dist/{components → features}/network-modifications/common/setpoints/index.js +0 -0
  1063. /package/dist/{components → features}/network-modifications/common/setpoints/setPoints.utils.d.ts +0 -0
  1064. /package/dist/{components → features}/network-modifications/common/setpoints/setPoints.utils.js +0 -0
  1065. /package/dist/{components → features}/network-modifications/common/shortCircuit/ShortCircuitForm.d.ts +0 -0
  1066. /package/dist/{components → features}/network-modifications/common/shortCircuit/index.d.ts +0 -0
  1067. /package/dist/{components → features}/network-modifications/common/shortCircuit/index.js +0 -0
  1068. /package/dist/{components → features}/network-modifications/common/shortCircuit/shortCircuitForm.type.d.ts +0 -0
  1069. /package/dist/{components → features}/network-modifications/common/shortCircuit/shortCircuitForm.type.js +0 -0
  1070. /package/dist/{components → features}/network-modifications/common/shortCircuit/shortCircuitForm.utils.d.ts +0 -0
  1071. /package/dist/{components → features}/network-modifications/common/shortCircuit/shortCircuitForm.utils.js +0 -0
  1072. /package/dist/{components → features}/network-modifications/equipmentDeletion/EquipmentDeletionForm.d.ts +0 -0
  1073. /package/dist/{components → features}/network-modifications/equipmentDeletion/equipmentDeletion.types.d.ts +0 -0
  1074. /package/dist/{components → features}/network-modifications/equipmentDeletion/equipmentDeletion.types.js +0 -0
  1075. /package/dist/{components → features}/network-modifications/equipmentDeletion/equipmentDeletion.utils.d.ts +0 -0
  1076. /package/dist/{components → features}/network-modifications/equipmentDeletion/hvdcLccDeletion/HvdcLccDeletionSpecificForm.d.ts +0 -0
  1077. /package/dist/{components → features}/network-modifications/equipmentDeletion/hvdcLccDeletion/ShuntCompensatorSelectionForm.d.ts +0 -0
  1078. /package/dist/{components → features}/network-modifications/equipmentDeletion/hvdcLccDeletion/hvdcLccDeletion.utils.d.ts +0 -0
  1079. /package/dist/{components → features}/network-modifications/equipmentDeletion/hvdcLccDeletion/hvdcLccDeletion.utils.js +0 -0
  1080. /package/dist/{components → features}/network-modifications/equipmentDeletion/hvdcLccDeletion/index.d.ts +0 -0
  1081. /package/dist/{components → features}/network-modifications/equipmentDeletion/hvdcLccDeletion/index.js +0 -0
  1082. /package/dist/{components → features}/network-modifications/equipmentDeletion/hvdcLccDeletion/useHvdcLccDeletion.d.ts +0 -0
  1083. /package/dist/{components → features}/network-modifications/equipmentDeletion/hvdcLccDeletion/useHvdcLccDeletion.js +0 -0
  1084. /package/dist/{components → features}/network-modifications/equipmentDeletion/index.d.ts +0 -0
  1085. /package/dist/{components → features}/network-modifications/equipmentDeletion/index.js +0 -0
  1086. /package/dist/{components → features}/network-modifications/generator/creation/generatorCreation.types.d.ts +0 -0
  1087. /package/dist/{components → features}/network-modifications/generator/creation/generatorCreation.types.js +0 -0
  1088. /package/dist/{components → features}/network-modifications/generator/creation/index.d.ts +0 -0
  1089. /package/dist/{components → features}/network-modifications/generator/creation/index.js +0 -0
  1090. /package/dist/{components → features}/network-modifications/generator/generatorDialog.type.d.ts +0 -0
  1091. /package/dist/{components → features}/network-modifications/generator/generatorDialog.type.js +0 -0
  1092. /package/dist/{components → features}/network-modifications/generator/index.d.ts +0 -0
  1093. /package/dist/{components → features}/network-modifications/generator/index.js +0 -0
  1094. /package/dist/{components → features}/network-modifications/generator/modification/generatorModification.types.d.ts +0 -0
  1095. /package/dist/{components → features}/network-modifications/generator/modification/generatorModification.types.js +0 -0
  1096. /package/dist/{components → features}/network-modifications/generator/modification/index.d.ts +0 -0
  1097. /package/dist/{components → features}/network-modifications/generator/modification/index.js +0 -0
  1098. /package/dist/{components → features}/network-modifications/hooks/index.d.ts +0 -0
  1099. /package/dist/{components → features}/network-modifications/hooks/index.js +0 -0
  1100. /package/dist/{components → features}/network-modifications/hooks/useTabsWithError.d.ts +0 -0
  1101. /package/dist/{components → features}/network-modifications/hooks/useTabsWithError.js +0 -0
  1102. /package/dist/{components → features}/network-modifications/index.d.ts +0 -0
  1103. /package/dist/{components → features}/network-modifications/load/common/LoadDialogHeader.d.ts +0 -0
  1104. /package/dist/{components → features}/network-modifications/load/common/LoadDialogTabs.d.ts +0 -0
  1105. /package/dist/{components → features}/network-modifications/load/common/LoadDialogTabs.js +0 -0
  1106. /package/dist/{components → features}/network-modifications/load/common/LoadDialogTabsContent.d.ts +0 -0
  1107. /package/dist/{components → features}/network-modifications/load/common/LoadForm.d.ts +0 -0
  1108. /package/dist/{components → features}/network-modifications/load/common/LoadForm.js +0 -0
  1109. /package/dist/{components → features}/network-modifications/load/common/index.d.ts +0 -0
  1110. /package/dist/{components → features}/network-modifications/load/common/index.js +0 -0
  1111. /package/dist/{components → features}/network-modifications/load/common/load.types.d.ts +0 -0
  1112. /package/dist/{components → features}/network-modifications/load/common/load.types.js +0 -0
  1113. /package/dist/{components → features}/network-modifications/load/common/load.utils.d.ts +0 -0
  1114. /package/dist/{components → features}/network-modifications/load/common/load.utils.js +0 -0
  1115. /package/dist/{components → features}/network-modifications/load/creation/index.d.ts +0 -0
  1116. /package/dist/{components → features}/network-modifications/load/creation/index.js +0 -0
  1117. /package/dist/{components → features}/network-modifications/load/creation/loadCreation.types.d.ts +0 -0
  1118. /package/dist/{components → features}/network-modifications/load/creation/loadCreation.types.js +0 -0
  1119. /package/dist/{components → features}/network-modifications/load/creation/loadCreation.utils.d.ts +0 -0
  1120. /package/dist/{components → features}/network-modifications/load/index.d.ts +0 -0
  1121. /package/dist/{components → features}/network-modifications/load/index.js +0 -0
  1122. /package/dist/{components → features}/network-modifications/load/modification/index.d.ts +0 -0
  1123. /package/dist/{components → features}/network-modifications/load/modification/index.js +0 -0
  1124. /package/dist/{components → features}/network-modifications/load/modification/loadModification.types.d.ts +0 -0
  1125. /package/dist/{components → features}/network-modifications/load/modification/loadModification.types.js +0 -0
  1126. /package/dist/{components → features}/network-modifications/load/modification/loadModification.utils.d.ts +0 -0
  1127. /package/dist/{components → features}/network-modifications/shunt-compensator/common/CharacteristicsForm.d.ts +0 -0
  1128. /package/dist/{components → features}/network-modifications/shunt-compensator/common/characteristicsForm.utils.d.ts +0 -0
  1129. /package/dist/{components → features}/network-modifications/shunt-compensator/common/characteristicsForm.utils.js +0 -0
  1130. /package/dist/{components → features}/network-modifications/shunt-compensator/common/index.d.ts +0 -0
  1131. /package/dist/{components → features}/network-modifications/shunt-compensator/common/index.js +0 -0
  1132. /package/dist/{components → features}/network-modifications/shunt-compensator/common/shuntCompensator.types.d.ts +0 -0
  1133. /package/dist/{components → features}/network-modifications/shunt-compensator/common/shuntCompensator.types.js +0 -0
  1134. /package/dist/{components → features}/network-modifications/shunt-compensator/common/shuntCompensator.utils.d.ts +0 -0
  1135. /package/dist/{components → features}/network-modifications/shunt-compensator/common/shuntCompensator.utils.js +0 -0
  1136. /package/dist/{components → features}/network-modifications/shunt-compensator/creation/ShuntCompensatorCreationForm.d.ts +0 -0
  1137. /package/dist/{components → features}/network-modifications/shunt-compensator/creation/index.d.ts +0 -0
  1138. /package/dist/{components → features}/network-modifications/shunt-compensator/creation/index.js +0 -0
  1139. /package/dist/{components → features}/network-modifications/shunt-compensator/creation/shuntCompensatorCreation.types.d.ts +0 -0
  1140. /package/dist/{components → features}/network-modifications/shunt-compensator/creation/shuntCompensatorCreation.types.js +0 -0
  1141. /package/dist/{components → features}/network-modifications/shunt-compensator/creation/shuntCompensatorCreation.utils.d.ts +0 -0
  1142. /package/dist/{components → features}/network-modifications/shunt-compensator/index.d.ts +0 -0
  1143. /package/dist/{components → features}/network-modifications/shunt-compensator/index.js +0 -0
  1144. /package/dist/{components → features}/network-modifications/substation/creation/SubstationCreationForm.d.ts +0 -0
  1145. /package/dist/{components → features}/network-modifications/substation/creation/index.d.ts +0 -0
  1146. /package/dist/{components → features}/network-modifications/substation/creation/index.js +0 -0
  1147. /package/dist/{components → features}/network-modifications/substation/creation/substationCreation.types.d.ts +0 -0
  1148. /package/dist/{components → features}/network-modifications/substation/creation/substationCreation.types.js +0 -0
  1149. /package/dist/{components → features}/network-modifications/substation/creation/substationCreation.utils.d.ts +0 -0
  1150. /package/dist/{components → features}/network-modifications/substation/creation/substationCreation.utils.js +0 -0
  1151. /package/dist/{components → features}/network-modifications/substation/index.d.ts +0 -0
  1152. /package/dist/{components → features}/network-modifications/substation/index.js +0 -0
  1153. /package/dist/{components → features}/network-modifications/substation/modification/SubstationModificationForm.d.ts +0 -0
  1154. /package/dist/{components → features}/network-modifications/substation/modification/index.d.ts +0 -0
  1155. /package/dist/{components → features}/network-modifications/substation/modification/index.js +0 -0
  1156. /package/dist/{components → features}/network-modifications/substation/modification/substationModification.types.d.ts +0 -0
  1157. /package/dist/{components → features}/network-modifications/substation/modification/substationModification.types.js +0 -0
  1158. /package/dist/{components → features}/network-modifications/substation/modification/substationModification.utils.d.ts +0 -0
  1159. /package/dist/{components → features}/network-modifications/substation/modification/substationModification.utils.js +0 -0
  1160. /package/dist/{components → features}/network-modifications/voltageLevel/creation/VoltageLevelCreationForm.d.ts +0 -0
  1161. /package/dist/{components → features}/network-modifications/voltageLevel/creation/index.d.ts +0 -0
  1162. /package/dist/{components → features}/network-modifications/voltageLevel/creation/tabs/characteristicsTab/CharacteristicsTab.d.ts +0 -0
  1163. /package/dist/{components → features}/network-modifications/voltageLevel/creation/tabs/characteristicsTab/index.d.ts +0 -0
  1164. /package/dist/{components → features}/network-modifications/voltageLevel/creation/tabs/characteristicsTab/index.js +0 -0
  1165. /package/dist/{components → features}/network-modifications/voltageLevel/creation/tabs/index.d.ts +0 -0
  1166. /package/dist/{components → features}/network-modifications/voltageLevel/creation/tabs/index.js +0 -0
  1167. /package/dist/{components → features}/network-modifications/voltageLevel/creation/tabs/structureTab/StructureTab.d.ts +0 -0
  1168. /package/dist/{components → features}/network-modifications/voltageLevel/creation/tabs/structureTab/couplingOmnibus/CouplingOmnibusCreation.d.ts +0 -0
  1169. /package/dist/{components → features}/network-modifications/voltageLevel/creation/tabs/structureTab/couplingOmnibus/CouplingOmnibusForm.d.ts +0 -0
  1170. /package/dist/{components → features}/network-modifications/voltageLevel/creation/tabs/structureTab/couplingOmnibus/index.d.ts +0 -0
  1171. /package/dist/{components → features}/network-modifications/voltageLevel/creation/tabs/structureTab/couplingOmnibus/index.js +0 -0
  1172. /package/dist/{components → features}/network-modifications/voltageLevel/creation/tabs/structureTab/index.d.ts +0 -0
  1173. /package/dist/{components → features}/network-modifications/voltageLevel/creation/tabs/structureTab/index.js +0 -0
  1174. /package/dist/{components → features}/network-modifications/voltageLevel/creation/tabs/structureTab/switchesBetweenSections/SwitchesBetweenSections.d.ts +0 -0
  1175. /package/dist/{components → features}/network-modifications/voltageLevel/creation/tabs/structureTab/switchesBetweenSections/index.d.ts +0 -0
  1176. /package/dist/{components → features}/network-modifications/voltageLevel/creation/tabs/structureTab/switchesBetweenSections/index.js +0 -0
  1177. /package/dist/{components → features}/network-modifications/voltageLevel/creation/tabs/substationTab/SubstationCreationSection.d.ts +0 -0
  1178. /package/dist/{components → features}/network-modifications/voltageLevel/creation/tabs/substationTab/SubstationTab.d.ts +0 -0
  1179. /package/dist/{components → features}/network-modifications/voltageLevel/creation/tabs/substationTab/index.d.ts +0 -0
  1180. /package/dist/{components → features}/network-modifications/voltageLevel/creation/tabs/substationTab/index.js +0 -0
  1181. /package/dist/{components → features}/network-modifications/voltageLevel/creation/voltageLevel.constants.d.ts +0 -0
  1182. /package/dist/{components → features}/network-modifications/voltageLevel/creation/voltageLevel.constants.js +0 -0
  1183. /package/dist/{components → features}/network-modifications/voltageLevel/creation/voltageLevelCreation.types.d.ts +0 -0
  1184. /package/dist/{components → features}/network-modifications/voltageLevel/creation/voltageLevelCreation.types.js +0 -0
  1185. /package/dist/{components → features}/network-modifications/voltageLevel/creation/voltageLevelCreation.utils.d.ts +0 -0
  1186. /package/dist/{components → features}/network-modifications/voltageLevel/index.d.ts +0 -0
  1187. /package/dist/{components → features}/network-modifications/voltageLevel/modification/VoltageLevelModificationForm.d.ts +0 -0
  1188. /package/dist/{components → features}/network-modifications/voltageLevel/modification/index.d.ts +0 -0
  1189. /package/dist/{components → features}/network-modifications/voltageLevel/modification/index.js +0 -0
  1190. /package/dist/{components → features}/network-modifications/voltageLevel/modification/voltageLevelModification.types.d.ts +0 -0
  1191. /package/dist/{components → features}/network-modifications/voltageLevel/modification/voltageLevelModification.types.js +0 -0
  1192. /package/dist/{components → features}/network-modifications/voltageLevel/modification/voltageLevelModification.utils.d.ts +0 -0
  1193. /package/dist/{components → features}/network-modifications/voltageLevel/modification/voltageLevelModification.utils.js +0 -0
  1194. /package/dist/{components → features}/network-modifications/voltageLevel/voltage-level.type.d.ts +0 -0
  1195. /package/dist/{components → features}/network-modifications/voltageLevel/voltage-level.type.js +0 -0
  1196. /package/dist/{components → features}/node/build-status-chip.d.ts +0 -0
  1197. /package/dist/{components → features}/node/build-status-chip.js +0 -0
  1198. /package/dist/{components → features}/node/constant.d.ts +0 -0
  1199. /package/dist/{components → features}/node/constant.js +0 -0
  1200. /package/dist/{components → features}/node/index.d.ts +0 -0
  1201. /package/dist/{components → features}/node/index.js +0 -0
  1202. /package/dist/{components → features}/notifications/NotificationsProvider.d.ts +0 -0
  1203. /package/dist/{components → features}/notifications/contexts/NotificationsContext.d.ts +0 -0
  1204. /package/dist/{components → features}/notifications/contexts/NotificationsContext.js +0 -0
  1205. /package/dist/{components → features}/notifications/hooks/useListenerManager.d.ts +0 -0
  1206. /package/dist/{components → features}/notifications/hooks/useListenerManager.js +0 -0
  1207. /package/dist/{components → features}/notifications/hooks/useNotificationsListener.d.ts +0 -0
  1208. /package/dist/{components → features}/notifications/hooks/useNotificationsListener.js +0 -0
  1209. /package/dist/{components → features}/notifications/index.d.ts +0 -0
  1210. /package/dist/{components → features}/notifications/index.js +0 -0
  1211. /package/dist/{components → features}/parameters/common/ProviderParam.d.ts +0 -0
  1212. /package/dist/{components → features}/parameters/common/computing-type.d.ts +0 -0
  1213. /package/dist/{components → features}/parameters/common/computing-type.js +0 -0
  1214. /package/dist/{components → features}/parameters/common/constants.d.ts +0 -0
  1215. /package/dist/{components → features}/parameters/common/constants.js +0 -0
  1216. /package/dist/{components → features}/parameters/common/contingency-table/index.d.ts +0 -0
  1217. /package/dist/{components → features}/parameters/common/contingency-table/index.js +0 -0
  1218. /package/dist/{components → features}/parameters/common/contingency-table/types.d.ts +0 -0
  1219. /package/dist/{components → features}/parameters/common/contingency-table/types.js +0 -0
  1220. /package/dist/{components → features}/parameters/common/hook/index.d.ts +0 -0
  1221. /package/dist/{components → features}/parameters/common/hook/index.js +0 -0
  1222. /package/dist/{components → features}/parameters/common/hook/use-parameters-form.d.ts +0 -0
  1223. /package/dist/{components → features}/parameters/common/hook/use-tabs.d.ts +0 -0
  1224. /package/dist/{components → features}/parameters/common/hook/use-tabs.js +0 -0
  1225. /package/dist/{components → features}/parameters/common/index.d.ts +0 -0
  1226. /package/dist/{components → features}/parameters/common/index.js +0 -0
  1227. /package/dist/{components → features}/parameters/common/limitreductions/columns-definitions.d.ts +0 -0
  1228. /package/dist/{components → features}/parameters/common/limitreductions/columns-definitions.js +0 -0
  1229. /package/dist/{components → features}/parameters/common/limitreductions/index.d.ts +0 -0
  1230. /package/dist/{components → features}/parameters/common/limitreductions/index.js +0 -0
  1231. /package/dist/{components → features}/parameters/common/limitreductions/limit-reduction-table-cell.d.ts +0 -0
  1232. /package/dist/{components → features}/parameters/common/limitreductions/limit-reduction-table-row.d.ts +0 -0
  1233. /package/dist/{components → features}/parameters/common/limitreductions/limit-reduction-table-row.js +0 -0
  1234. /package/dist/{components → features}/parameters/common/limitreductions/limit-reductions-label-column.d.ts +0 -0
  1235. /package/dist/{components → features}/parameters/common/limitreductions/limit-reductions-label-column.js +0 -0
  1236. /package/dist/{components → features}/parameters/common/limitreductions/limit-reductions-table-form.d.ts +0 -0
  1237. /package/dist/{components → features}/parameters/common/limitreductions/limit-reductions-tooltip-column.d.ts +0 -0
  1238. /package/dist/{components → features}/parameters/common/limitreductions/limit-reductions-tooltip-column.js +0 -0
  1239. /package/dist/{components → features}/parameters/common/line-separator.d.ts +0 -0
  1240. /package/dist/{components → features}/parameters/common/line-separator.js +0 -0
  1241. /package/dist/{components → features}/parameters/common/name-element-editor/index.d.ts +0 -0
  1242. /package/dist/{components → features}/parameters/common/name-element-editor/index.js +0 -0
  1243. /package/dist/{components → features}/parameters/common/name-element-editor/name-element-editor-form.d.ts +0 -0
  1244. /package/dist/{components → features}/parameters/common/name-element-editor/name-element-editor-utils.d.ts +0 -0
  1245. /package/dist/{components → features}/parameters/common/parameter-field.d.ts +0 -0
  1246. /package/dist/{components → features}/parameters/common/parameter-table/constants.d.ts +0 -0
  1247. /package/dist/{components → features}/parameters/common/parameter-table/constants.js +0 -0
  1248. /package/dist/{components → features}/parameters/common/parameter-table/parameter-table.d.ts +0 -0
  1249. /package/dist/{components → features}/parameters/common/parameter-table/table-cell.d.ts +0 -0
  1250. /package/dist/{components → features}/parameters/common/parameter-table/table-row.d.ts +0 -0
  1251. /package/dist/{components → features}/parameters/common/parameter-table/types.d.ts +0 -0
  1252. /package/dist/{components → features}/parameters/common/parameter-table/types.js +0 -0
  1253. /package/dist/{components → features}/parameters/common/parameter-table-field/constants.d.ts +0 -0
  1254. /package/dist/{components → features}/parameters/common/parameter-table-field/constants.js +0 -0
  1255. /package/dist/{components → features}/parameters/common/parameter-table-field/index.d.ts +0 -0
  1256. /package/dist/{components → features}/parameters/common/parameter-table-field/index.js +0 -0
  1257. /package/dist/{components → features}/parameters/common/parameters-creation-dialog.d.ts +0 -0
  1258. /package/dist/{components → features}/parameters/common/parameters-edition-dialog-props.d.ts +0 -0
  1259. /package/dist/{components → features}/parameters/common/parameters-edition-dialog-props.js +0 -0
  1260. /package/dist/{components → features}/parameters/common/parameters.d.ts +0 -0
  1261. /package/dist/{components → features}/parameters/common/parameters.js +0 -0
  1262. /package/dist/{components → features}/parameters/common/utils.d.ts +0 -0
  1263. /package/dist/{components → features}/parameters/common/utils.js +0 -0
  1264. /package/dist/{components → features}/parameters/common/voltage-level-table/custom-voltage-level-table-cell.d.ts +0 -0
  1265. /package/dist/{components → features}/parameters/common/voltage-level-table/custom-voltage-level-table-row.d.ts +0 -0
  1266. /package/dist/{components → features}/parameters/common/voltage-level-table/custom-voltage-level-table-row.js +0 -0
  1267. /package/dist/{components → features}/parameters/common/voltage-level-table/custom-voltage-level-table.d.ts +0 -0
  1268. /package/dist/{components → features}/parameters/common/voltage-level-table/index.d.ts +0 -0
  1269. /package/dist/{components → features}/parameters/common/voltage-level-table/index.js +0 -0
  1270. /package/dist/{components → features}/parameters/common/widget/index.d.ts +0 -0
  1271. /package/dist/{components → features}/parameters/common/widget/index.js +0 -0
  1272. /package/dist/{components → features}/parameters/common/widget/parameter-float.d.ts +0 -0
  1273. /package/dist/{components → features}/parameters/common/widget/parameter-group.d.ts +0 -0
  1274. /package/dist/{components → features}/parameters/common/widget/parameter-group.js +0 -0
  1275. /package/dist/{components → features}/parameters/common/widget/parameter-line-directory-items-input.d.ts +0 -0
  1276. /package/dist/{components → features}/parameters/common/widget/parameter-line-slider.d.ts +0 -0
  1277. /package/dist/{components → features}/parameters/common/widget/parameter-switch.d.ts +0 -0
  1278. /package/dist/{components → features}/parameters/common/widget/parameter-switch.js +0 -0
  1279. /package/dist/{components → features}/parameters/dynamic-margin-calculation/constants.d.ts +0 -0
  1280. /package/dist/{components → features}/parameters/dynamic-margin-calculation/constants.js +0 -0
  1281. /package/dist/{components → features}/parameters/dynamic-margin-calculation/dynamic-margin-calculation-dialog.d.ts +0 -0
  1282. /package/dist/{components → features}/parameters/dynamic-margin-calculation/dynamic-margin-calculation-dialog.js +0 -0
  1283. /package/dist/{components → features}/parameters/dynamic-margin-calculation/dynamic-margin-calculation-form.d.ts +0 -0
  1284. /package/dist/{components → features}/parameters/dynamic-margin-calculation/dynamic-margin-calculation-inline.d.ts +0 -0
  1285. /package/dist/{components → features}/parameters/dynamic-margin-calculation/dynamic-margin-calculation.type.d.ts +0 -0
  1286. /package/dist/{components → features}/parameters/dynamic-margin-calculation/dynamic-margin-calculation.type.js +0 -0
  1287. /package/dist/{components → features}/parameters/dynamic-margin-calculation/index.d.ts +0 -0
  1288. /package/dist/{components → features}/parameters/dynamic-margin-calculation/index.js +0 -0
  1289. /package/dist/{components → features}/parameters/dynamic-margin-calculation/time-delay-parameters.d.ts +0 -0
  1290. /package/dist/{components → features}/parameters/dynamic-margin-calculation/time-delay-parameters.js +0 -0
  1291. /package/dist/{components → features}/parameters/dynamic-margin-calculation/use-dynamic-margin-calculation-parameters-form.d.ts +0 -0
  1292. /package/dist/{components → features}/parameters/dynamic-security-analysis/constants.d.ts +0 -0
  1293. /package/dist/{components → features}/parameters/dynamic-security-analysis/constants.js +0 -0
  1294. /package/dist/{components → features}/parameters/dynamic-security-analysis/contingency-parameters.d.ts +0 -0
  1295. /package/dist/{components → features}/parameters/dynamic-security-analysis/dynamic-security-analysis-inline.d.ts +0 -0
  1296. /package/dist/{components → features}/parameters/dynamic-security-analysis/dynamic-security-analysis-parameters-form.d.ts +0 -0
  1297. /package/dist/{components → features}/parameters/dynamic-security-analysis/dynamic-security-analysis.type.d.ts +0 -0
  1298. /package/dist/{components → features}/parameters/dynamic-security-analysis/dynamic-security-analysis.type.js +0 -0
  1299. /package/dist/{components → features}/parameters/dynamic-security-analysis/index.d.ts +0 -0
  1300. /package/dist/{components → features}/parameters/dynamic-security-analysis/index.js +0 -0
  1301. /package/dist/{components → features}/parameters/dynamic-security-analysis/scenario-parameters.d.ts +0 -0
  1302. /package/dist/{components → features}/parameters/dynamic-security-analysis/scenario-parameters.js +0 -0
  1303. /package/dist/{components → features}/parameters/dynamic-security-analysis/use-dynamic-security-analysis-parameters-form.d.ts +0 -0
  1304. /package/dist/{components → features}/parameters/dynamic-simulation/curve/common/checkbox-select.d.ts +0 -0
  1305. /package/dist/{components → features}/parameters/dynamic-simulation/curve/common/checkbox-select.js +0 -0
  1306. /package/dist/{components → features}/parameters/dynamic-simulation/curve/common/checkbox-treeview.d.ts +0 -0
  1307. /package/dist/{components → features}/parameters/dynamic-simulation/curve/common/checkbox-treeview.js +0 -0
  1308. /package/dist/{components → features}/parameters/dynamic-simulation/curve/common/curve.type.d.ts +0 -0
  1309. /package/dist/{components → features}/parameters/dynamic-simulation/curve/common/curve.type.js +0 -0
  1310. /package/dist/{components → features}/parameters/dynamic-simulation/curve/common/grid-buttons.d.ts +0 -0
  1311. /package/dist/{components → features}/parameters/dynamic-simulation/curve/common/grid-search.d.ts +0 -0
  1312. /package/dist/{components → features}/parameters/dynamic-simulation/curve/common/grid-search.js +0 -0
  1313. /package/dist/{components → features}/parameters/dynamic-simulation/curve/curve-parameters-constants.d.ts +0 -0
  1314. /package/dist/{components → features}/parameters/dynamic-simulation/curve/curve-parameters-constants.js +0 -0
  1315. /package/dist/{components → features}/parameters/dynamic-simulation/curve/curve-parameters-utils.d.ts +0 -0
  1316. /package/dist/{components → features}/parameters/dynamic-simulation/curve/curve-parameters-utils.js +0 -0
  1317. /package/dist/{components → features}/parameters/dynamic-simulation/curve/curve-parameters.type.d.ts +0 -0
  1318. /package/dist/{components → features}/parameters/dynamic-simulation/curve/curve-parameters.type.js +0 -0
  1319. /package/dist/{components → features}/parameters/dynamic-simulation/curve/dialog/curve-preview.d.ts +0 -0
  1320. /package/dist/{components → features}/parameters/dynamic-simulation/curve/dialog/curve-selector.js +0 -0
  1321. /package/dist/{components → features}/parameters/dynamic-simulation/curve/dialog/model-filter-utils.d.ts +0 -0
  1322. /package/dist/{components → features}/parameters/dynamic-simulation/curve/dialog/model-filter-utils.js +0 -0
  1323. /package/dist/{components → features}/parameters/dynamic-simulation/curve/dialog/model-filter.d.ts +0 -0
  1324. /package/dist/{components → features}/parameters/dynamic-simulation/curve/dialog/model-filter.js +0 -0
  1325. /package/dist/{components → features}/parameters/dynamic-simulation/dynamic-simulation.type.d.ts +0 -0
  1326. /package/dist/{components → features}/parameters/dynamic-simulation/dynamic-simulation.type.js +0 -0
  1327. /package/dist/{components → features}/parameters/dynamic-simulation/hook/use-default-params.d.ts +0 -0
  1328. /package/dist/{components → features}/parameters/dynamic-simulation/hook/use-default-params.js +0 -0
  1329. /package/dist/{components → features}/parameters/dynamic-simulation/index.d.ts +0 -0
  1330. /package/dist/{components → features}/parameters/dynamic-simulation/index.js +0 -0
  1331. /package/dist/{components → features}/parameters/dynamic-simulation/mapping/index.d.ts +0 -0
  1332. /package/dist/{components → features}/parameters/dynamic-simulation/mapping/index.js +0 -0
  1333. /package/dist/{components → features}/parameters/dynamic-simulation/mapping/mapping-parameters-constants.d.ts +0 -0
  1334. /package/dist/{components → features}/parameters/dynamic-simulation/mapping/mapping-parameters-constants.js +0 -0
  1335. /package/dist/{components → features}/parameters/dynamic-simulation/mapping/mapping-parameters-utils.d.ts +0 -0
  1336. /package/dist/{components → features}/parameters/dynamic-simulation/mapping/mapping-parameters-utils.js +0 -0
  1337. /package/dist/{components → features}/parameters/dynamic-simulation/mapping/mapping-parameters.d.ts +0 -0
  1338. /package/dist/{components → features}/parameters/dynamic-simulation/mapping/mapping-parameters.js +0 -0
  1339. /package/dist/{components → features}/parameters/dynamic-simulation/network/index.d.ts +0 -0
  1340. /package/dist/{components → features}/parameters/dynamic-simulation/network/index.js +0 -0
  1341. /package/dist/{components → features}/parameters/dynamic-simulation/network/network-parameters-constants.d.ts +0 -0
  1342. /package/dist/{components → features}/parameters/dynamic-simulation/network/network-parameters-constants.js +0 -0
  1343. /package/dist/{components → features}/parameters/dynamic-simulation/network/network-parameters-utils.d.ts +0 -0
  1344. /package/dist/{components → features}/parameters/dynamic-simulation/network/network-parameters-utils.js +0 -0
  1345. /package/dist/{components → features}/parameters/dynamic-simulation/network/network-parameters.d.ts +0 -0
  1346. /package/dist/{components → features}/parameters/dynamic-simulation/network/network-parameters.js +0 -0
  1347. /package/dist/{components → features}/parameters/dynamic-simulation/solver/common-solver/common-solver-parameters-constants.d.ts +0 -0
  1348. /package/dist/{components → features}/parameters/dynamic-simulation/solver/common-solver/common-solver-parameters-constants.js +0 -0
  1349. /package/dist/{components → features}/parameters/dynamic-simulation/solver/common-solver/common-solver-parameters-utils.d.ts +0 -0
  1350. /package/dist/{components → features}/parameters/dynamic-simulation/solver/common-solver/common-solver-parameters-utils.js +0 -0
  1351. /package/dist/{components → features}/parameters/dynamic-simulation/solver/common-solver/common-solver-parameters.d.ts +0 -0
  1352. /package/dist/{components → features}/parameters/dynamic-simulation/solver/common-solver/common-solver-parameters.js +0 -0
  1353. /package/dist/{components → features}/parameters/dynamic-simulation/solver/common-solver/index.d.ts +0 -0
  1354. /package/dist/{components → features}/parameters/dynamic-simulation/solver/common-solver/index.js +0 -0
  1355. /package/dist/{components → features}/parameters/dynamic-simulation/solver/ida-solver/ida-solver-parameters-constants.d.ts +0 -0
  1356. /package/dist/{components → features}/parameters/dynamic-simulation/solver/ida-solver/ida-solver-parameters-constants.js +0 -0
  1357. /package/dist/{components → features}/parameters/dynamic-simulation/solver/ida-solver/ida-solver-parameters-utils.d.ts +0 -0
  1358. /package/dist/{components → features}/parameters/dynamic-simulation/solver/ida-solver/ida-solver-parameters-utils.js +0 -0
  1359. /package/dist/{components → features}/parameters/dynamic-simulation/solver/ida-solver/ida-solver-parameters.d.ts +0 -0
  1360. /package/dist/{components → features}/parameters/dynamic-simulation/solver/ida-solver/ida-solver-parameters.js +0 -0
  1361. /package/dist/{components → features}/parameters/dynamic-simulation/solver/ida-solver/index.d.ts +0 -0
  1362. /package/dist/{components → features}/parameters/dynamic-simulation/solver/ida-solver/index.js +0 -0
  1363. /package/dist/{components → features}/parameters/dynamic-simulation/solver/index.d.ts +0 -0
  1364. /package/dist/{components → features}/parameters/dynamic-simulation/solver/index.js +0 -0
  1365. /package/dist/{components → features}/parameters/dynamic-simulation/solver/sim-solver/index.d.ts +0 -0
  1366. /package/dist/{components → features}/parameters/dynamic-simulation/solver/sim-solver/index.js +0 -0
  1367. /package/dist/{components → features}/parameters/dynamic-simulation/solver/sim-solver/simplified-solver-parameters-constant.d.ts +0 -0
  1368. /package/dist/{components → features}/parameters/dynamic-simulation/solver/sim-solver/simplified-solver-parameters-constant.js +0 -0
  1369. /package/dist/{components → features}/parameters/dynamic-simulation/solver/sim-solver/simplified-solver-parameters-utils.d.ts +0 -0
  1370. /package/dist/{components → features}/parameters/dynamic-simulation/solver/sim-solver/simplified-solver-parameters-utils.js +0 -0
  1371. /package/dist/{components → features}/parameters/dynamic-simulation/solver/sim-solver/simplified-solver-parameters.d.ts +0 -0
  1372. /package/dist/{components → features}/parameters/dynamic-simulation/solver/sim-solver/simplified-solver-parameters.js +0 -0
  1373. /package/dist/{components → features}/parameters/dynamic-simulation/solver/solver-parameters-constants.d.ts +0 -0
  1374. /package/dist/{components → features}/parameters/dynamic-simulation/solver/solver-parameters-constants.js +0 -0
  1375. /package/dist/{components → features}/parameters/dynamic-simulation/solver/solver-parameters-utils.d.ts +0 -0
  1376. /package/dist/{components → features}/parameters/dynamic-simulation/solver/solver-parameters-utils.js +0 -0
  1377. /package/dist/{components → features}/parameters/dynamic-simulation/solver/solver-parameters.d.ts +0 -0
  1378. /package/dist/{components → features}/parameters/dynamic-simulation/solver/solver-parameters.js +0 -0
  1379. /package/dist/{components → features}/parameters/dynamic-simulation/time-delay/index.d.ts +0 -0
  1380. /package/dist/{components → features}/parameters/dynamic-simulation/time-delay/index.js +0 -0
  1381. /package/dist/{components → features}/parameters/dynamic-simulation/time-delay/time-delay-parameters-constants.d.ts +0 -0
  1382. /package/dist/{components → features}/parameters/dynamic-simulation/time-delay/time-delay-parameters-constants.js +0 -0
  1383. /package/dist/{components → features}/parameters/dynamic-simulation/time-delay/time-delay-parameters-utils.d.ts +0 -0
  1384. /package/dist/{components → features}/parameters/dynamic-simulation/time-delay/time-delay-parameters-utils.js +0 -0
  1385. /package/dist/{components → features}/parameters/dynamic-simulation/time-delay/time-delay-parameters.d.ts +0 -0
  1386. /package/dist/{components → features}/parameters/dynamic-simulation/time-delay/time-delay-parameters.js +0 -0
  1387. /package/dist/{components → features}/parameters/dynamic-simulation/use-dynamic-simulation-parameters-form.d.ts +0 -0
  1388. /package/dist/{components → features}/parameters/index.d.ts +0 -0
  1389. /package/dist/{components → features}/parameters/index.js +0 -0
  1390. /package/dist/{components → features}/parameters/loadflow/constants.d.ts +0 -0
  1391. /package/dist/{components → features}/parameters/loadflow/constants.js +0 -0
  1392. /package/dist/{components → features}/parameters/loadflow/index.d.ts +0 -0
  1393. /package/dist/{components → features}/parameters/loadflow/index.js +0 -0
  1394. /package/dist/{components → features}/parameters/loadflow/load-flow-general-parameters.d.ts +0 -0
  1395. /package/dist/{components → features}/parameters/loadflow/load-flow-parameters-content.d.ts +0 -0
  1396. /package/dist/{components → features}/parameters/loadflow/load-flow-parameters-context.d.ts +0 -0
  1397. /package/dist/{components → features}/parameters/loadflow/load-flow-parameters-context.js +0 -0
  1398. /package/dist/{components → features}/parameters/loadflow/load-flow-parameters-dialog.d.ts +0 -0
  1399. /package/dist/{components → features}/parameters/loadflow/load-flow-parameters-form.d.ts +0 -0
  1400. /package/dist/{components → features}/parameters/loadflow/load-flow-parameters-header.d.ts +0 -0
  1401. /package/dist/{components → features}/parameters/loadflow/load-flow-parameters-inline.d.ts +0 -0
  1402. /package/dist/{components → features}/parameters/loadflow/load-flow-parameters-provider.d.ts +0 -0
  1403. /package/dist/{components → features}/parameters/loadflow/load-flow-parameters-provider.js +0 -0
  1404. /package/dist/{components → features}/parameters/loadflow/load-flow-parameters-type.d.ts +0 -0
  1405. /package/dist/{components → features}/parameters/loadflow/load-flow-parameters-type.js +0 -0
  1406. /package/dist/{components → features}/parameters/loadflow/load-flow-parameters-utils.d.ts +0 -0
  1407. /package/dist/{components → features}/parameters/loadflow/use-load-flow-context.d.ts +0 -0
  1408. /package/dist/{components → features}/parameters/loadflow/use-load-flow-context.js +0 -0
  1409. /package/dist/{components → features}/parameters/loadflow/use-load-flow-parameters-form.d.ts +0 -0
  1410. /package/dist/{components → features}/parameters/network-visualizations/constants.d.ts +0 -0
  1411. /package/dist/{components → features}/parameters/network-visualizations/constants.js +0 -0
  1412. /package/dist/{components → features}/parameters/network-visualizations/index.d.ts +0 -0
  1413. /package/dist/{components → features}/parameters/network-visualizations/index.js +0 -0
  1414. /package/dist/{components → features}/parameters/network-visualizations/map-parameters.d.ts +0 -0
  1415. /package/dist/{components → features}/parameters/network-visualizations/network-area-diagram-parameters.d.ts +0 -0
  1416. /package/dist/{components → features}/parameters/network-visualizations/network-visualizations-form.d.ts +0 -0
  1417. /package/dist/{components → features}/parameters/network-visualizations/network-visualizations-parameters-dialog.d.ts +0 -0
  1418. /package/dist/{components → features}/parameters/network-visualizations/network-visualizations-parameters-inline.d.ts +0 -0
  1419. /package/dist/{components → features}/parameters/network-visualizations/network-visualizations.types.d.ts +0 -0
  1420. /package/dist/{components → features}/parameters/network-visualizations/network-visualizations.types.js +0 -0
  1421. /package/dist/{components → features}/parameters/network-visualizations/single-line-diagram-parameters.d.ts +0 -0
  1422. /package/dist/{components → features}/parameters/network-visualizations/use-network-visualizations-parameters-form.d.ts +0 -0
  1423. /package/dist/{components → features}/parameters/parameters-style.d.ts +0 -0
  1424. /package/dist/{components → features}/parameters/parameters-style.js +0 -0
  1425. /package/dist/{components → features}/parameters/pcc-min/index.d.ts +0 -0
  1426. /package/dist/{components → features}/parameters/pcc-min/index.js +0 -0
  1427. /package/dist/{components → features}/parameters/pcc-min/pcc-min-form-utils.d.ts +0 -0
  1428. /package/dist/{components → features}/parameters/pcc-min/pcc-min-parameters-dialog.d.ts +0 -0
  1429. /package/dist/{components → features}/parameters/pcc-min/pcc-min-parameters-form.d.ts +0 -0
  1430. /package/dist/{components → features}/parameters/pcc-min/pcc-min-parameters-inline.d.ts +0 -0
  1431. /package/dist/{components → features}/parameters/pcc-min/use-pcc-min-parameters-form.d.ts +0 -0
  1432. /package/dist/{components → features}/parameters/security-analysis/columns-definitions.d.ts +0 -0
  1433. /package/dist/{components → features}/parameters/security-analysis/index.d.ts +0 -0
  1434. /package/dist/{components → features}/parameters/security-analysis/index.js +0 -0
  1435. /package/dist/{components → features}/parameters/security-analysis/security-analysis-parameters-dialog.d.ts +0 -0
  1436. /package/dist/{components → features}/parameters/security-analysis/security-analysis-parameters-inline.d.ts +0 -0
  1437. /package/dist/{components → features}/parameters/security-analysis/security-analysis-parameters-selector.d.ts +0 -0
  1438. /package/dist/{components → features}/parameters/security-analysis/security-analysis-violations-hiding.d.ts +0 -0
  1439. /package/dist/{components → features}/parameters/security-analysis/types.d.ts +0 -0
  1440. /package/dist/{components → features}/parameters/security-analysis/types.js +0 -0
  1441. /package/dist/{components → features}/parameters/security-analysis/use-security-analysis-parameters-form.d.ts +0 -0
  1442. /package/dist/{components → features}/parameters/sensi/constants.d.ts +0 -0
  1443. /package/dist/{components → features}/parameters/sensi/constants.js +0 -0
  1444. /package/dist/{components → features}/parameters/sensi/index.d.ts +0 -0
  1445. /package/dist/{components → features}/parameters/sensi/index.js +0 -0
  1446. /package/dist/{components → features}/parameters/sensi/sensitivity-analysis-parameters-dialog.d.ts +0 -0
  1447. /package/dist/{components → features}/parameters/sensi/sensitivity-analysis-parameters-factor-count.d.ts +0 -0
  1448. /package/dist/{components → features}/parameters/sensi/sensitivity-analysis-parameters-factor-count.js +0 -0
  1449. /package/dist/{components → features}/parameters/sensi/sensitivity-analysis-parameters-form.d.ts +0 -0
  1450. /package/dist/{components → features}/parameters/sensi/sensitivity-analysis-parameters-inline.d.ts +0 -0
  1451. /package/dist/{components → features}/parameters/sensi/sensitivity-parameters-fields.d.ts +0 -0
  1452. /package/dist/{components → features}/parameters/sensi/sensitivity-parameters-selector.d.ts +0 -0
  1453. /package/dist/{components → features}/parameters/sensi/use-sensitivity-analysis-parameters.d.ts +0 -0
  1454. /package/dist/{components → features}/parameters/short-circuit/columns-definition.d.ts +0 -0
  1455. /package/dist/{components → features}/parameters/short-circuit/columns-definition.js +0 -0
  1456. /package/dist/{components → features}/parameters/short-circuit/constants.d.ts +0 -0
  1457. /package/dist/{components → features}/parameters/short-circuit/constants.js +0 -0
  1458. /package/dist/{components → features}/parameters/short-circuit/index.d.ts +0 -0
  1459. /package/dist/{components → features}/parameters/short-circuit/index.js +0 -0
  1460. /package/dist/{components → features}/parameters/short-circuit/short-circuit-general-tab-panel.d.ts +0 -0
  1461. /package/dist/{components → features}/parameters/short-circuit/short-circuit-icc-cluster-table-cell.d.ts +0 -0
  1462. /package/dist/{components → features}/parameters/short-circuit/short-circuit-icc-cluster-table-row.d.ts +0 -0
  1463. /package/dist/{components → features}/parameters/short-circuit/short-circuit-icc-cluster-table.d.ts +0 -0
  1464. /package/dist/{components → features}/parameters/short-circuit/short-circuit-icc-material-table-cell.d.ts +0 -0
  1465. /package/dist/{components → features}/parameters/short-circuit/short-circuit-icc-material-table-row.d.ts +0 -0
  1466. /package/dist/{components → features}/parameters/short-circuit/short-circuit-icc-material-table-row.js +0 -0
  1467. /package/dist/{components → features}/parameters/short-circuit/short-circuit-icc-material-table.d.ts +0 -0
  1468. /package/dist/{components → features}/parameters/short-circuit/short-circuit-parameters-content.d.ts +0 -0
  1469. /package/dist/{components → features}/parameters/short-circuit/short-circuit-parameters-dialog.d.ts +0 -0
  1470. /package/dist/{components → features}/parameters/short-circuit/short-circuit-parameters-form.d.ts +0 -0
  1471. /package/dist/{components → features}/parameters/short-circuit/short-circuit-parameters-inline.d.ts +0 -0
  1472. /package/dist/{components → features}/parameters/short-circuit/short-circuit-parameters-utils.d.ts +0 -0
  1473. /package/dist/{components → features}/parameters/short-circuit/short-circuit-parameters.type.d.ts +0 -0
  1474. /package/dist/{components → features}/parameters/short-circuit/short-circuit-parameters.type.js +0 -0
  1475. /package/dist/{components → features}/parameters/short-circuit/short-circuit-power-electronics-tab-panel.d.ts +0 -0
  1476. /package/dist/{components → features}/parameters/short-circuit/short-circuit-study-area-tab-panel.d.ts +0 -0
  1477. /package/dist/{components → features}/parameters/short-circuit/short-circuit-voltage-table.d.ts +0 -0
  1478. /package/dist/{components → features}/parameters/short-circuit/short-circuit-voltage-table.js +0 -0
  1479. /package/dist/{components → features}/parameters/short-circuit/use-short-circuit-parameters-form.d.ts +0 -0
  1480. /package/dist/{components → features}/parameters/voltage-init/constants.d.ts +0 -0
  1481. /package/dist/{components → features}/parameters/voltage-init/constants.js +0 -0
  1482. /package/dist/{components → features}/parameters/voltage-init/equipment-selection-parameters.d.ts +0 -0
  1483. /package/dist/{components → features}/parameters/voltage-init/general-parameters.d.ts +0 -0
  1484. /package/dist/{components → features}/parameters/voltage-init/index.d.ts +0 -0
  1485. /package/dist/{components → features}/parameters/voltage-init/index.js +0 -0
  1486. /package/dist/{components → features}/parameters/voltage-init/use-voltage-init-parameters-form.d.ts +0 -0
  1487. /package/dist/{components → features}/parameters/voltage-init/voltage-init-form-utils.d.ts +0 -0
  1488. /package/dist/{components → features}/parameters/voltage-init/voltage-init-parameters-dialog.d.ts +0 -0
  1489. /package/dist/{components → features}/parameters/voltage-init/voltage-init-parameters-form.d.ts +0 -0
  1490. /package/dist/{components → features}/parameters/voltage-init/voltage-init-parameters-inline.d.ts +0 -0
  1491. /package/dist/{components → features}/parameters/voltage-init/voltage-init.type.d.ts +0 -0
  1492. /package/dist/{components → features}/parameters/voltage-init/voltage-init.type.js +0 -0
  1493. /package/dist/{components → features}/parameters/voltage-init/voltage-limits-parameters.d.ts +0 -0
  1494. /package/dist/{components → features}/topBar/AboutDialog.d.ts +0 -0
  1495. /package/dist/{components → features}/topBar/DevModeBanner.d.ts +0 -0
  1496. /package/dist/{components → features}/topBar/DevModeBanner.js +0 -0
  1497. /package/dist/{components → features}/topBar/GridLogo.d.ts +0 -0
  1498. /package/dist/{components → features}/topBar/GridLogo.js +0 -0
  1499. /package/dist/{components → features}/topBar/UserSettingsDialog.d.ts +0 -0
  1500. /package/dist/{components → features}/topBar/UserSettingsDialog.js +0 -0
  1501. /package/dist/{components → features}/topBar/index.d.ts +0 -0
  1502. /package/dist/{components → features}/topBar/index.js +0 -0
@@ -1,442 +0,0 @@
1
- import { jsxs, jsx } from "react/jsx-runtime";
2
- import { createPortal } from "react-dom";
3
- import { useState, useRef, useCallback, useMemo } from "react";
4
- import { useFormContext, useWatch } from "react-hook-form";
5
- import { Grid, TableContainer, Table, TableHead, TableRow, TableCell, Box, TableBody, Checkbox } from "@mui/material";
6
- import { DragIndicator } from "@mui/icons-material";
7
- import { DragDropContext, Droppable, Draggable } from "@hello-pangea/dnd";
8
- import { useIntl } from "react-intl";
9
- import { CustomTooltip } from "../tooltip/CustomTooltip.js";
10
- import { MAX_ROWS_NUMBER, SELECTED, DndColumnType } from "./dnd-table.type.js";
11
- import { DndTableBottomLeftButtons } from "./dnd-table-bottom-left-buttons.js";
12
- import { DndTableBottomRightButtons } from "./dnd-table-bottom-right-buttons.js";
13
- import { DndTableAddRowsDialog } from "./dnd-table-add-rows-dialog.js";
14
- import "../overflowableText/OverflowableText.js";
15
- import "../../utils/conversionUtils.js";
16
- import "../../utils/types/equipmentType.js";
17
- import { mergeSx } from "../../utils/styles.js";
18
- import "../../utils/yupConfig.js";
19
- import { ChipItemsInput } from "../inputs/reactHookForm/chip-items-input.js";
20
- import { DirectoryItemsInput } from "../inputs/reactHookForm/DirectoryItemsInput.js";
21
- import { RawReadOnlyInput } from "../inputs/reactHookForm/RawReadOnlyInput.js";
22
- import "../inputs/reactHookForm/agGridTable/BottomRightButtons.js";
23
- import "../customAGGrid/customAggrid.js";
24
- import "ag-grid-community";
25
- import "react-papaparse";
26
- import "react-csv-downloader";
27
- import "yup";
28
- import { AutocompleteInput } from "../inputs/reactHookForm/autocompleteInputs/AutocompleteInput.js";
29
- import { CheckboxInput } from "../inputs/reactHookForm/booleans/CheckboxInput.js";
30
- import { SwitchInput } from "../inputs/reactHookForm/booleans/SwitchInput.js";
31
- import { ErrorInput } from "../inputs/reactHookForm/errorManagement/ErrorInput.js";
32
- import { FieldErrorAlert } from "../inputs/reactHookForm/errorManagement/FieldErrorAlert.js";
33
- import "../inputs/reactHookForm/provider/CustomFormProvider.js";
34
- import "../inputs/reactHookForm/numbers/RangeInput.js";
35
- import "localized-countries";
36
- import "localized-countries/data/fr";
37
- import "localized-countries/data/en";
38
- import { TableNumericalInput } from "../inputs/reactHookForm/tableInputs/table-numerical-input.js";
39
- import { TableTextInput } from "../inputs/reactHookForm/tableInputs/table-text-input.js";
40
- import "@material-symbols/svg-400/outlined/left_panel_open.svg?react";
41
- import "@material-symbols/svg-400/outlined/arrows_output.svg?react";
42
- import "@material-symbols/svg-400/outlined/arrows_input.svg?react";
43
- import "@material-symbols/svg-400/outlined/left_panel_close.svg?react";
44
- import "@material-symbols/svg-400/outlined/add_notes.svg?react";
45
- import "../dialogs/descriptionModificationDialog/DescriptionModificationDialog.js";
46
- import "../inputs/reactHookForm/expandableInput/ExpandableInput.js";
47
- import "notistack";
48
- import "@react-querybuilder/material";
49
- import "../filter/expert/expertFilterConstants.js";
50
- import "../inputs/reactQueryBuilder/CustomReactQueryBuilder.js";
51
- import "uuid";
52
- import "../inputs/reactQueryBuilder/PropertyValueEditor.js";
53
- import "react-querybuilder";
54
- const styles = {
55
- columnsStyle: {
56
- display: "inline-flex",
57
- justifyContent: "space-between",
58
- alignItems: "center",
59
- margin: 1,
60
- textTransform: "none"
61
- }
62
- };
63
- function MultiCheckbox({
64
- arrayFormName,
65
- handleClickCheck,
66
- handleClickUncheck,
67
- ...props
68
- }) {
69
- const arrayToWatch = useWatch({
70
- name: arrayFormName
71
- });
72
- const allRowSelected = useMemo(
73
- () => arrayToWatch ? arrayToWatch?.every((row) => row[SELECTED]) : false,
74
- [arrayToWatch]
75
- );
76
- const someRowSelected = useMemo(
77
- () => arrayToWatch ? arrayToWatch?.some((row) => row[SELECTED]) : false,
78
- [arrayToWatch]
79
- );
80
- return /* @__PURE__ */ jsx(
81
- Checkbox,
82
- {
83
- checked: arrayToWatch?.length > 0 && allRowSelected,
84
- indeterminate: someRowSelected && !allRowSelected,
85
- onChange: (event) => {
86
- if (event.target.checked) {
87
- handleClickCheck();
88
- } else {
89
- handleClickUncheck();
90
- }
91
- },
92
- ...props
93
- }
94
- );
95
- }
96
- function DefaultTableCell({ arrayFormName, rowIndex, column, width, ...props }) {
97
- return /* @__PURE__ */ jsx(TableCell, { sx: mergeSx({ padding: 1 }, width), children: /* @__PURE__ */ jsx(RawReadOnlyInput, { name: `${arrayFormName}[${rowIndex}].${column.dataKey}`, ...props }) }, column.dataKey);
98
- }
99
- function EditableTableCell({
100
- arrayFormName,
101
- rowIndex,
102
- column,
103
- width,
104
- previousValue,
105
- valueModified,
106
- ...props
107
- }) {
108
- return /* @__PURE__ */ jsxs(TableCell, { sx: mergeSx({ padding: 0.5, maxWidth: column.maxWidth }, width), children: [
109
- column.type === DndColumnType.NUMERIC && /* @__PURE__ */ jsx(
110
- TableNumericalInput,
111
- {
112
- ...props,
113
- name: `${arrayFormName}[${rowIndex}].${column.dataKey}`,
114
- previousValue,
115
- valueModified,
116
- adornment: column?.adornment,
117
- isClearable: column?.clearable,
118
- style: {
119
- textAlign: column?.textAlign
120
- }
121
- }
122
- ),
123
- column.type === DndColumnType.TEXT && /* @__PURE__ */ jsx(
124
- TableTextInput,
125
- {
126
- ...props,
127
- name: `${arrayFormName}[${rowIndex}].${column.dataKey}`,
128
- showErrorMsg: column.showErrorMsg
129
- }
130
- ),
131
- column.type === DndColumnType.AUTOCOMPLETE && /* @__PURE__ */ jsx(
132
- AutocompleteInput,
133
- {
134
- forcePopupIcon: true,
135
- freeSolo: true,
136
- name: `${arrayFormName}[${rowIndex}].${column.dataKey}`,
137
- options: column.options,
138
- inputTransform: (value) => value ?? "",
139
- outputTransform: (value) => value,
140
- size: "small"
141
- }
142
- ),
143
- column.type === DndColumnType.DIRECTORY_ITEMS && /* @__PURE__ */ jsx(
144
- DirectoryItemsInput,
145
- {
146
- name: `${arrayFormName}[${rowIndex}].${column.dataKey}`,
147
- equipmentTypes: column.equipmentTypes,
148
- elementType: column.elementType,
149
- titleId: column.titleId,
150
- hideErrorMessage: true,
151
- label: void 0
152
- }
153
- ),
154
- column.type === DndColumnType.CHIP_ITEMS && /* @__PURE__ */ jsx(ChipItemsInput, { name: `${arrayFormName}[${rowIndex}].${column.dataKey}`, hideErrorMessage: true }),
155
- column.type === DndColumnType.SWITCH && /* @__PURE__ */ jsx(SwitchInput, { name: `${arrayFormName}[${rowIndex}].${column.dataKey}` }),
156
- column.type === DndColumnType.CUSTOM && column.component(rowIndex)
157
- ] }, column.dataKey);
158
- }
159
- function DndTable(props) {
160
- const {
161
- arrayFormName,
162
- useFieldArrayOutput,
163
- columnsDefinition,
164
- tableHeight,
165
- allowedToAddRows = () => Promise.resolve(true),
166
- createRows,
167
- disabled = false,
168
- withResetButton = false,
169
- withAddRowsDialog = true,
170
- previousValues,
171
- disableTableCell,
172
- getPreviousValue,
173
- isValueModified,
174
- disableAddingRows = false,
175
- showMoveArrow = true,
176
- disableDragAndDrop = false,
177
- handleUploadButton = void 0,
178
- uploadButtonMessageId = void 0,
179
- handleResetButton = void 0,
180
- resetButtonMessageId = void 0,
181
- maxRows = MAX_ROWS_NUMBER
182
- } = props;
183
- const intl = useIntl();
184
- const { getValues, setValue, setError, clearErrors } = useFormContext();
185
- const {
186
- fields: currentRows,
187
- // don't use it to access form data ! check doc
188
- move,
189
- swap,
190
- append,
191
- remove
192
- } = useFieldArrayOutput;
193
- const [openAddRowsDialog, setOpenAddRowsDialog] = useState(false);
194
- function renderTableCell(rowId, rowIndex, column, width) {
195
- const CustomTableCell = column.editable ? EditableTableCell : DefaultTableCell;
196
- return /* @__PURE__ */ jsx(
197
- CustomTableCell,
198
- {
199
- arrayFormName,
200
- rowIndex,
201
- column,
202
- disabled: disableTableCell ? disableTableCell(rowIndex, column, arrayFormName, previousValues) : disabled,
203
- previousValue: getPreviousValue ? getPreviousValue(rowIndex, column, arrayFormName, previousValues) : void 0,
204
- valueModified: isValueModified ? isValueModified(rowIndex, arrayFormName) : false,
205
- width
206
- },
207
- rowId + column.dataKey
208
- );
209
- }
210
- const addNewRows = (numberOfRows) => {
211
- if (currentRows.length + numberOfRows > maxRows) {
212
- setError(arrayFormName, {
213
- type: "custom",
214
- message: intl.formatMessage(
215
- {
216
- id: "MaximumRowNumberError"
217
- },
218
- {
219
- value: maxRows
220
- }
221
- )
222
- });
223
- return;
224
- }
225
- clearErrors(arrayFormName);
226
- const rowsToAdd = createRows?.(numberOfRows).map((row) => {
227
- return { ...row, [SELECTED]: false };
228
- });
229
- append(rowsToAdd);
230
- };
231
- const handleAddRowsButton = () => {
232
- allowedToAddRows().then((isAllowed) => {
233
- if (isAllowed) {
234
- if (withAddRowsDialog) {
235
- setOpenAddRowsDialog(true);
236
- } else {
237
- addNewRows(1);
238
- }
239
- }
240
- });
241
- };
242
- const handleCloseAddRowsDialog = () => {
243
- setOpenAddRowsDialog(false);
244
- };
245
- const deleteSelectedRows = () => {
246
- const currentRowsValues = getValues(arrayFormName);
247
- const rowsToDelete = [];
248
- for (let i = 0; i < currentRowsValues.length; i++) {
249
- if (currentRowsValues[i][SELECTED]) {
250
- rowsToDelete.push(i);
251
- }
252
- }
253
- remove(rowsToDelete);
254
- };
255
- const selectAllRows = () => {
256
- for (let i = 0; i < currentRows.length; i++) {
257
- setValue(`${arrayFormName}[${i}].${SELECTED}`, true);
258
- }
259
- };
260
- const unselectAllRows = () => {
261
- for (let i = 0; i < currentRows.length; i++) {
262
- setValue(`${arrayFormName}[${i}].${SELECTED}`, false);
263
- }
264
- };
265
- const moveUpSelectedRows = () => {
266
- const currentRowsValues = getValues(arrayFormName);
267
- if (currentRowsValues[0][SELECTED]) {
268
- return;
269
- }
270
- for (let i = 1; i < currentRowsValues.length; i++) {
271
- if (currentRowsValues[i][SELECTED]) {
272
- swap(i - 1, i);
273
- }
274
- }
275
- };
276
- const moveDownSelectedRows = () => {
277
- const currentRowsValues = getValues(arrayFormName);
278
- if (currentRowsValues[currentRowsValues.length - 1][SELECTED]) {
279
- return;
280
- }
281
- for (let i = currentRowsValues.length - 2; i >= 0; i--) {
282
- if (currentRowsValues[i][SELECTED]) {
283
- swap(i, i + 1);
284
- }
285
- }
286
- };
287
- const dragCellWidthsRef = useRef([]);
288
- const cellIdxRef = useRef(0);
289
- const onBeforeDragStart = useCallback((start) => {
290
- const row = document.querySelector(`[data-rfd-draggable-id="${start.draggableId}"]`);
291
- if (row) {
292
- dragCellWidthsRef.current = Array.from(row.cells, (cell) => cell.offsetWidth);
293
- }
294
- }, []);
295
- const nextLockedWidthSx = useCallback((isDragging) => {
296
- const cellWidths = dragCellWidthsRef.current;
297
- const cellIdx = cellIdxRef.current;
298
- if (!isDragging || cellWidths[cellIdx] == null) {
299
- return void 0;
300
- }
301
- cellIdxRef.current += 1;
302
- return { width: cellWidths[cellIdx], boxSizing: "border-box" };
303
- }, []);
304
- const onDragEnd = (result) => {
305
- dragCellWidthsRef.current = [];
306
- if (!result.destination) {
307
- return;
308
- }
309
- move(result.source.index, result.destination.index);
310
- };
311
- function renderTableHead() {
312
- return /* @__PURE__ */ jsx(TableHead, { children: /* @__PURE__ */ jsxs(TableRow, { children: [
313
- !disableDragAndDrop && /* @__PURE__ */ jsx(TableCell, { sx: { width: "3%" } }),
314
- /* @__PURE__ */ jsx(TableCell, { sx: { width: "5%", textAlign: "center" }, children: /* @__PURE__ */ jsx(
315
- MultiCheckbox,
316
- {
317
- arrayFormName,
318
- handleClickCheck: selectAllRows,
319
- handleClickUncheck: unselectAllRows,
320
- disabled: disabled || currentRows.length === 0
321
- }
322
- ) }),
323
- columnsDefinition.map((column) => /* @__PURE__ */ jsx(TableCell, { sx: { width: column.width, maxWidth: column.maxWidth }, children: /* @__PURE__ */ jsxs(Box, { sx: styles.columnsStyle, children: [
324
- column.label,
325
- column.extra
326
- ] }) }, column.dataKey))
327
- ] }) });
328
- }
329
- function renderTableBody(providedDroppable) {
330
- return /* @__PURE__ */ jsxs(TableBody, { children: [
331
- currentRows.map((row, index) => /* @__PURE__ */ jsx(
332
- Draggable,
333
- {
334
- draggableId: row.id.toString(),
335
- index,
336
- isDragDisabled: disableDragAndDrop,
337
- children: (provided, snapshot) => {
338
- cellIdxRef.current = 0;
339
- const tableRow = /* @__PURE__ */ jsxs(TableRow, { ref: provided.innerRef, ...provided.draggableProps, children: [
340
- !disableDragAndDrop && /* @__PURE__ */ jsx(
341
- CustomTooltip,
342
- {
343
- title: intl.formatMessage({
344
- id: "DragAndDrop"
345
- }),
346
- children: /* @__PURE__ */ jsx(
347
- TableCell,
348
- {
349
- sx: mergeSx(
350
- { textAlign: "center" },
351
- nextLockedWidthSx(snapshot.isDragging)
352
- ),
353
- ...disabled ? {} : { ...provided.dragHandleProps },
354
- children: /* @__PURE__ */ jsx(DragIndicator, {})
355
- }
356
- )
357
- }
358
- ),
359
- /* @__PURE__ */ jsx(
360
- TableCell,
361
- {
362
- sx: mergeSx({ textAlign: "center" }, nextLockedWidthSx(snapshot.isDragging)),
363
- children: /* @__PURE__ */ jsx(
364
- CheckboxInput,
365
- {
366
- name: `${arrayFormName}[${index}].${SELECTED}`,
367
- formProps: { disabled }
368
- }
369
- )
370
- }
371
- ),
372
- columnsDefinition.map(
373
- (column) => renderTableCell(row.id, index, column, nextLockedWidthSx(snapshot.isDragging))
374
- )
375
- ] });
376
- return snapshot.isDragging ? createPortal(tableRow, document.body) : tableRow;
377
- }
378
- },
379
- row.id
380
- )),
381
- providedDroppable.placeholder
382
- ] });
383
- }
384
- return /* @__PURE__ */ jsxs(Grid, { item: true, container: true, spacing: 1, children: [
385
- /* @__PURE__ */ jsxs(Grid, { item: true, container: true, children: [
386
- /* @__PURE__ */ jsx(DragDropContext, { onBeforeDragStart, onDragEnd, children: /* @__PURE__ */ jsx(Droppable, { droppableId: "tapTable", isDropDisabled: disabled, children: (provided) => /* @__PURE__ */ jsx(
387
- TableContainer,
388
- {
389
- ref: provided.innerRef,
390
- ...provided.droppableProps,
391
- sx: {
392
- height: tableHeight,
393
- border: "solid 1px rgba(0,0,0,0.1)"
394
- },
395
- children: /* @__PURE__ */ jsxs(Table, { stickyHeader: true, size: "small", padding: "none", children: [
396
- renderTableHead(),
397
- renderTableBody(provided)
398
- ] })
399
- }
400
- ) }) }),
401
- /* @__PURE__ */ jsx(ErrorInput, { name: arrayFormName, InputField: FieldErrorAlert })
402
- ] }),
403
- /* @__PURE__ */ jsxs(Grid, { container: true, item: true, children: [
404
- handleResetButton && handleUploadButton && resetButtonMessageId && uploadButtonMessageId ? /* @__PURE__ */ jsx(
405
- DndTableBottomLeftButtons,
406
- {
407
- withResetButton,
408
- disableUploadButton: disableAddingRows,
409
- disabled,
410
- handleUploadButton,
411
- uploadButtonMessageId,
412
- handleResetButton,
413
- resetButtonMessageId
414
- }
415
- ) : null,
416
- /* @__PURE__ */ jsx(
417
- DndTableBottomRightButtons,
418
- {
419
- arrayFormName,
420
- handleAddButton: handleAddRowsButton,
421
- handleDeleteButton: deleteSelectedRows,
422
- handleMoveUpButton: moveUpSelectedRows,
423
- handleMoveDownButton: moveDownSelectedRows,
424
- disableAddingRows,
425
- showMoveArrow,
426
- disabled
427
- }
428
- )
429
- ] }),
430
- /* @__PURE__ */ jsx(
431
- DndTableAddRowsDialog,
432
- {
433
- open: openAddRowsDialog,
434
- handleAddButton: addNewRows,
435
- onClose: handleCloseAddRowsDialog
436
- }
437
- )
438
- ] });
439
- }
440
- export {
441
- DndTable
442
- };
@@ -1,56 +0,0 @@
1
- import { JSX, ReactNode } from 'react';
2
- import { ElementType, EquipmentType } from '../../utils';
3
- export declare const SELECTED = "selected";
4
- export declare const MAX_ROWS_NUMBER = 100;
5
- export declare enum DndColumnType {
6
- TEXT = "TEXT",
7
- NUMERIC = "NUMERIC",
8
- AUTOCOMPLETE = "AUTOCOMPLETE",
9
- CHIP_ITEMS = "CHIP_ITEMS",
10
- DIRECTORY_ITEMS = "DIRECTORY_ITEMS",
11
- SWITCH = "SWITCH",
12
- CUSTOM = "CUSTOM"
13
- }
14
- export interface ColumnBase {
15
- dataKey: string;
16
- maxWidth?: number | string;
17
- width?: number | string;
18
- label?: string;
19
- extra?: JSX.Element;
20
- editable?: boolean;
21
- type: DndColumnType;
22
- initialValue?: any;
23
- }
24
- export interface ColumnText extends ColumnBase {
25
- type: DndColumnType.TEXT;
26
- showErrorMsg?: boolean;
27
- }
28
- export interface ColumnNumeric extends ColumnBase {
29
- type: DndColumnType.NUMERIC;
30
- adornment?: {
31
- text: string;
32
- };
33
- clearable?: boolean;
34
- textAlign?: 'right' | 'left';
35
- }
36
- export interface ColumnAutocomplete extends ColumnBase {
37
- type: DndColumnType.AUTOCOMPLETE;
38
- options: string[];
39
- }
40
- export interface ColumnDirectoryItem extends ColumnBase {
41
- type: DndColumnType.DIRECTORY_ITEMS;
42
- equipmentTypes: EquipmentType[];
43
- elementType: ElementType;
44
- titleId: string;
45
- }
46
- export interface ColumnChipsItem extends ColumnBase {
47
- type: DndColumnType.CHIP_ITEMS;
48
- }
49
- export interface ColumnSwitchItem extends ColumnBase {
50
- type: DndColumnType.SWITCH;
51
- }
52
- export interface ColumnCustom extends ColumnBase {
53
- type: DndColumnType.CUSTOM;
54
- component: (rowIndex: number) => ReactNode;
55
- }
56
- export type DndColumn = ColumnNumeric | ColumnAutocomplete | ColumnText | ColumnDirectoryItem | ColumnChipsItem | ColumnSwitchItem | ColumnCustom;
@@ -1,38 +0,0 @@
1
- import { jsxs, jsx } from "react/jsx-runtime";
2
- import { useState } from "react";
3
- import { useIntl } from "react-intl";
4
- import { TableRow, TableCell, IconButton } from "@mui/material";
5
- import { Delete } from "@mui/icons-material";
6
- import { CustomTooltip } from "../tooltip/CustomTooltip.js";
7
- function DeletableTableRow({
8
- onClick,
9
- disabledDeletion,
10
- children,
11
- ...otherProps
12
- }) {
13
- const intl = useIntl();
14
- const [isMouseHover, setIsMouseHover] = useState(false);
15
- return /* @__PURE__ */ jsxs(
16
- TableRow,
17
- {
18
- ...otherProps,
19
- onMouseEnter: () => setIsMouseHover(true),
20
- onMouseLeave: () => setIsMouseHover(false),
21
- children: [
22
- children,
23
- !disabledDeletion && /* @__PURE__ */ jsx(TableCell, { sx: { width: "5rem", textAlign: "center" }, children: isMouseHover && /* @__PURE__ */ jsx(
24
- CustomTooltip,
25
- {
26
- title: intl.formatMessage({
27
- id: "DeleteRows"
28
- }),
29
- children: /* @__PURE__ */ jsx(IconButton, { onClick, children: /* @__PURE__ */ jsx(Delete, {}) })
30
- }
31
- ) })
32
- ]
33
- }
34
- );
35
- }
36
- export {
37
- DeletableTableRow
38
- };
@@ -1,76 +0,0 @@
1
- import { jsxs, jsx } from "react/jsx-runtime";
2
- import { Dialog, DialogTitle, DialogContent, TextField, DialogActions, Button } from "@mui/material";
3
- import { FormattedMessage } from "react-intl";
4
- import { useState } from "react";
5
- import "../overflowableText/OverflowableText.js";
6
- import "../../utils/conversionUtils.js";
7
- import "../../utils/types/equipmentType.js";
8
- import "@mui/icons-material";
9
- import "../../utils/yupConfig.js";
10
- import "react-hook-form";
11
- import "localized-countries";
12
- import "localized-countries/data/fr";
13
- import "localized-countries/data/en";
14
- import "notistack";
15
- import "../inputs/reactHookForm/provider/CustomFormProvider.js";
16
- import { CancelButton } from "../inputs/reactHookForm/utils/CancelButton.js";
17
- import "yup";
18
- import "../treeViewFinder/TreeViewFinder.js";
19
- import "../inputs/reactHookForm/agGridTable/BottomRightButtons.js";
20
- import "../customAGGrid/customAggrid.js";
21
- import "ag-grid-community";
22
- import "react-papaparse";
23
- import "react-csv-downloader";
24
- import "../inputs/reactHookForm/numbers/RangeInput.js";
25
- import "@material-symbols/svg-400/outlined/left_panel_open.svg?react";
26
- import "@material-symbols/svg-400/outlined/arrows_output.svg?react";
27
- import "@material-symbols/svg-400/outlined/arrows_input.svg?react";
28
- import "@material-symbols/svg-400/outlined/left_panel_close.svg?react";
29
- import "@material-symbols/svg-400/outlined/add_notes.svg?react";
30
- import "../dialogs/descriptionModificationDialog/DescriptionModificationDialog.js";
31
- import "../inputs/reactHookForm/expandableInput/ExpandableInput.js";
32
- import "@react-querybuilder/material";
33
- import "../filter/expert/expertFilterConstants.js";
34
- import "../inputs/reactQueryBuilder/CustomReactQueryBuilder.js";
35
- import "uuid";
36
- import "../inputs/reactQueryBuilder/PropertyValueEditor.js";
37
- import "react-querybuilder";
38
- function DndTableAddRowsDialog({ open, handleAddButton, onClose }) {
39
- const [rowNumber, setRowNumber] = useState(1);
40
- const handleClose = () => {
41
- setRowNumber(1);
42
- onClose();
43
- };
44
- return /* @__PURE__ */ jsxs(Dialog, { open, onClose: handleClose, children: [
45
- /* @__PURE__ */ jsx(DialogTitle, { children: /* @__PURE__ */ jsx(FormattedMessage, { id: "AddRowsDialogTitle" }) }),
46
- /* @__PURE__ */ jsx(DialogContent, { children: /* @__PURE__ */ jsx(
47
- TextField,
48
- {
49
- autoFocus: true,
50
- type: "Number",
51
- value: rowNumber,
52
- onChange: (event) => {
53
- setRowNumber(!event.target.value ? 0 : parseInt(event.target.value, 10));
54
- }
55
- }
56
- ) }),
57
- /* @__PURE__ */ jsxs(DialogActions, { children: [
58
- /* @__PURE__ */ jsx(CancelButton, { onClick: handleClose }),
59
- /* @__PURE__ */ jsx(
60
- Button,
61
- {
62
- onClick: () => {
63
- handleAddButton(rowNumber);
64
- handleClose();
65
- },
66
- variant: "outlined",
67
- disabled: rowNumber <= 0,
68
- children: /* @__PURE__ */ jsx(FormattedMessage, { id: "AddRowsButton" })
69
- }
70
- )
71
- ] })
72
- ] });
73
- }
74
- export {
75
- DndTableAddRowsDialog
76
- };
@@ -1,47 +0,0 @@
1
- import { jsxs, jsx } from "react/jsx-runtime";
2
- import { Grid, IconButton } from "@mui/material";
3
- import { Upload, Replay } from "@mui/icons-material";
4
- import { useIntl } from "react-intl";
5
- import { CustomTooltip } from "../tooltip/CustomTooltip.js";
6
- function DndTableBottomLeftButtons({
7
- handleUploadButton,
8
- uploadButtonMessageId,
9
- handleResetButton,
10
- resetButtonMessageId,
11
- withResetButton,
12
- disableUploadButton,
13
- disabled
14
- }) {
15
- const intl = useIntl();
16
- return /* @__PURE__ */ jsxs(Grid, { container: true, item: true, xs: true, spacing: 1, children: [
17
- /* @__PURE__ */ jsx(Grid, { item: true, children: /* @__PURE__ */ jsx(
18
- CustomTooltip,
19
- {
20
- title: intl.formatMessage({
21
- id: uploadButtonMessageId
22
- }),
23
- children: /* @__PURE__ */ jsx("span", { children: /* @__PURE__ */ jsx(
24
- IconButton,
25
- {
26
- color: "primary",
27
- onClick: () => handleUploadButton(),
28
- disabled: disabled || disableUploadButton,
29
- children: /* @__PURE__ */ jsx(Upload, {})
30
- }
31
- ) })
32
- }
33
- ) }),
34
- withResetButton && /* @__PURE__ */ jsx(Grid, { item: true, children: /* @__PURE__ */ jsx(
35
- CustomTooltip,
36
- {
37
- title: intl.formatMessage({
38
- id: resetButtonMessageId
39
- }),
40
- children: /* @__PURE__ */ jsx("span", { children: /* @__PURE__ */ jsx(IconButton, { color: "primary", onClick: () => handleResetButton(), disabled, children: /* @__PURE__ */ jsx(Replay, {}) }) })
41
- }
42
- ) })
43
- ] });
44
- }
45
- export {
46
- DndTableBottomLeftButtons
47
- };