├── .browserslistrc ├── .env ├── .github ├── config │ └── .licenserc.yaml └── workflows │ ├── build.yml │ ├── patch.yml │ └── release.yml ├── .gitignore ├── .sonarlint └── connectedMode.json ├── CHANGELOG.md ├── Dockerfile ├── LICENSE ├── README.md ├── app-httpd.conf ├── babel.config.json ├── eslint.config.js ├── index.html ├── jest.config.ts ├── jest.setup.ts ├── license-checker-config.json ├── package.json ├── prettier.config.js ├── public ├── env.json ├── favicon.ico └── idpSettings.json ├── sonar-project.properties ├── src ├── _mocks_ │ └── svg.tsx ├── components │ ├── app-top-bar.jsx │ ├── app-wrapper.jsx │ ├── app.jsx │ ├── breadcrumbs │ │ ├── root-network-select.tsx │ │ └── study-path-breadcrumbs.tsx │ ├── common │ │ └── tooltip-icon-button.tsx │ ├── computing-status │ │ ├── computing-status-utils.ts │ │ ├── use-all-computing-status.ts │ │ └── use-computing-status.ts │ ├── custom-aggrid │ │ ├── custom-aggrid-filters │ │ │ ├── custom-aggrid-autocomplete-filter.tsx │ │ │ ├── custom-aggrid-boolean-filter.tsx │ │ │ ├── custom-aggrid-comparator-filter.tsx │ │ │ ├── custom-aggrid-comparator-selector.tsx │ │ │ ├── custom-aggrid-duration-filter.tsx │ │ │ ├── custom-aggrid-filter.tsx │ │ │ ├── custom-aggrid-filter.type.ts │ │ │ ├── custom-aggrid-text-filter.tsx │ │ │ ├── custom-filter-icon.tsx │ │ │ ├── hooks │ │ │ │ ├── use-custom-aggrid-comparator-filter.ts │ │ │ │ └── use-custom-aggrid-filter.ts │ │ │ └── utils │ │ │ │ ├── aggrid-filters-utils.ts │ │ │ │ └── filter-tolerance-utils.ts │ │ ├── custom-aggrid-header.tsx │ │ ├── custom-aggrid-header.type.ts │ │ ├── custom-aggrid-menu.tsx │ │ ├── custom-aggrid-sort.tsx │ │ ├── display-rounding.tsx │ │ ├── hooks │ │ │ └── use-custom-aggrid-sort.ts │ │ ├── rowindex-cell-renderer.tsx │ │ └── utils │ │ │ ├── custom-aggrid-header-utils.ts │ │ │ └── format-values-utils.ts │ ├── dialogs │ │ ├── active-power-control │ │ │ ├── active-power-control-form.tsx │ │ │ ├── active-power-control-utils.ts │ │ │ └── active-power-control.type.ts │ │ ├── commons │ │ │ ├── basicModificationDialog.tsx │ │ │ ├── grid-item.tsx │ │ │ ├── grid-section.tsx │ │ │ ├── handle-loader.ts │ │ │ ├── handle-modification-form.ts │ │ │ ├── line-separator.tsx │ │ │ ├── modification-dialog-content.tsx │ │ │ ├── modificationDialog.tsx │ │ │ ├── select-with-confirmation-input.tsx │ │ │ ├── use-form-search-copy.ts │ │ │ ├── use-form-with-dirty-tracking.ts │ │ │ └── utils.tsx │ │ ├── connectivity │ │ │ ├── branch-connectivity-form.tsx │ │ │ ├── connectivity-form-utils.ts │ │ │ ├── connectivity-form.tsx │ │ │ └── connectivity.type.ts │ │ ├── contingency-list-selector.tsx │ │ ├── dialog-utils.ts │ │ ├── dynamicsimulation │ │ │ ├── dynamic-simulation-parameters-selector.tsx │ │ │ └── event │ │ │ │ ├── dynamic-simulation-event-dialog.tsx │ │ │ │ ├── dynamic-simulation-event-form.tsx │ │ │ │ ├── model │ │ │ │ └── event.model.ts │ │ │ │ ├── types │ │ │ │ └── event.type.ts │ │ │ │ └── util │ │ │ │ ├── event-rhf.tsx │ │ │ │ └── event-yup.ts │ │ ├── equipment-id │ │ │ ├── equipment-id-selector.tsx │ │ │ └── formFiller.tsx │ │ ├── equipment-search-dialog.tsx │ │ ├── export-network-dialog.tsx │ │ ├── filter │ │ │ └── expert │ │ │ │ └── expert-filter.type.ts │ │ ├── illustrations │ │ │ ├── AccordionIllustration.tsx │ │ │ └── generic-Illustration-network-modification.tsx │ │ ├── import-case-dialog.tsx │ │ ├── import-modification-dialog.tsx │ │ ├── limits │ │ │ ├── limits-constants.ts │ │ │ ├── limits-groups-contextual-menu.tsx │ │ │ ├── limits-pane-utils.ts │ │ │ ├── limits-pane.tsx │ │ │ ├── limits-properties-side-stack.tsx │ │ │ ├── limits-properties-stack.tsx │ │ │ ├── limits-side-pane.tsx │ │ │ ├── limits-tag-chip.tsx │ │ │ ├── limitsChart.tsx │ │ │ ├── operational-limits-group-tab-label.tsx │ │ │ ├── operational-limits-groups-styles.ts │ │ │ ├── operational-limits-groups-tabs.tsx │ │ │ ├── operational-limits-groups-types.ts │ │ │ ├── operational-limits-groups-utils.ts │ │ │ ├── selected-operational-limit-group.tsx │ │ │ └── temporary-limits-table.tsx │ │ ├── line-types-catalog │ │ │ ├── limit-custom-aggrid.tsx │ │ │ ├── line-catalog.type.ts │ │ │ ├── line-type-segment-creation.tsx │ │ │ ├── line-type-segment-dialog.tsx │ │ │ ├── line-type-segment-form.tsx │ │ │ ├── line-types-catalog-selector-dialog.tsx │ │ │ ├── line-types-catalog-selector-form.tsx │ │ │ ├── segment-utils.ts │ │ │ ├── use-column-definitions.ts │ │ │ └── use-row-data.ts │ │ ├── network-modifications │ │ │ ├── balances-adjustment │ │ │ │ ├── balances-adjustment-advanced-content.tsx │ │ │ │ ├── balances-adjustment-dialog-tabs.tsx │ │ │ │ ├── balances-adjustment-dialog.tsx │ │ │ │ ├── balances-adjustment-table.tsx │ │ │ │ ├── balances-adjustment.constants.ts │ │ │ │ ├── countries-autocomplete.tsx │ │ │ │ └── styles.ts │ │ │ ├── battery │ │ │ │ ├── battery-dialog.type.ts │ │ │ │ ├── creation │ │ │ │ │ ├── battery-creation-dialog.tsx │ │ │ │ │ └── battery-creation-form.tsx │ │ │ │ └── modification │ │ │ │ │ ├── battery-modification-dialog.tsx │ │ │ │ │ └── battery-modification-form.tsx │ │ │ ├── by-filter │ │ │ │ ├── by-assignment │ │ │ │ │ ├── assignment │ │ │ │ │ │ ├── assignment-constants.ts │ │ │ │ │ │ ├── assignment-form.tsx │ │ │ │ │ │ ├── assignment-utils.ts │ │ │ │ │ │ └── assignment.type.ts │ │ │ │ │ ├── modification-by-assignment-dialog.tsx │ │ │ │ │ └── modification-by-assignment-form.tsx │ │ │ │ ├── by-filter-deletion │ │ │ │ │ ├── by-filter-deletion-dialog.tsx │ │ │ │ │ ├── by-filter-deletion-form.tsx │ │ │ │ │ └── by-filter-deletion.type.ts │ │ │ │ ├── by-formula │ │ │ │ │ ├── by-formula-dialog.jsx │ │ │ │ │ ├── by-formula-form.tsx │ │ │ │ │ └── formula │ │ │ │ │ │ ├── formula-form.tsx │ │ │ │ │ │ ├── formula-utils.tsx │ │ │ │ │ │ └── reference-autocomplete-input.tsx │ │ │ │ └── commons │ │ │ │ │ └── by-filter.type.ts │ │ │ ├── common │ │ │ │ ├── measurements │ │ │ │ │ ├── branch-active-reactive-power-form-utils.ts │ │ │ │ │ ├── branch-active-reactive-power-form.tsx │ │ │ │ │ ├── injection-active-reactive-power-form-utils.ts │ │ │ │ │ ├── measurement.type.ts │ │ │ │ │ ├── power-measurements-form.tsx │ │ │ │ │ ├── power-with-validity-form.tsx │ │ │ │ │ └── power-with-validity-utils.ts │ │ │ │ └── properties │ │ │ │ │ ├── properties-form.tsx │ │ │ │ │ ├── property-form.tsx │ │ │ │ │ └── property-utils.ts │ │ │ ├── coupling-device │ │ │ │ ├── coupling-device-dialog.type.ts │ │ │ │ └── modification │ │ │ │ │ ├── create-coupling-device-dialog.tsx │ │ │ │ │ └── create-coupling-device-form.tsx │ │ │ ├── delete-attaching-line │ │ │ │ ├── delete-attaching-line-dialog.jsx │ │ │ │ ├── delete-attaching-line-form.jsx │ │ │ │ └── delete-attaching-line-illustration.tsx │ │ │ ├── delete-voltage-level-on-line │ │ │ │ ├── delete-voltage-level-on-line-dialog.jsx │ │ │ │ ├── delete-voltage-level-on-line-form.jsx │ │ │ │ └── delete-voltage-level-on-line-illustration.tsx │ │ │ ├── equipment-deletion │ │ │ │ ├── equipment-deletion-dialog.jsx │ │ │ │ ├── equipment-deletion-form.jsx │ │ │ │ └── hvdc-lcc-deletion │ │ │ │ │ ├── hvdc-lcc-deletion-specific-form.jsx │ │ │ │ │ └── hvdc-lcc-deletion-utils.js │ │ │ ├── generation-dispatch │ │ │ │ ├── frequency-reserve-pane.jsx │ │ │ │ ├── generation-dispatch-dialog.jsx │ │ │ │ ├── generation-dispatch-form.jsx │ │ │ │ ├── substations-autocomplete.tsx │ │ │ │ └── substations-generators-ordering-pane.jsx │ │ │ ├── generator-scaling │ │ │ │ ├── generator-scaling-dialog.jsx │ │ │ │ ├── generator-scaling-form.jsx │ │ │ │ └── variation │ │ │ │ │ ├── variation-form.jsx │ │ │ │ │ └── variation-utils.js │ │ │ ├── generator │ │ │ │ ├── creation │ │ │ │ │ ├── generator-creation-dialog.tsx │ │ │ │ │ └── generator-creation-form.tsx │ │ │ │ ├── generator-dialog.type.ts │ │ │ │ └── modification │ │ │ │ │ ├── generator-modification-dialog.tsx │ │ │ │ │ └── generator-modification-form.tsx │ │ │ ├── hvdc-line │ │ │ │ ├── lcc │ │ │ │ │ ├── common │ │ │ │ │ │ ├── lcc-converter-station.tsx │ │ │ │ │ │ ├── lcc-hvdc-line.tsx │ │ │ │ │ │ ├── lcc-tabs.tsx │ │ │ │ │ │ ├── lcc-type.ts │ │ │ │ │ │ └── lcc-utils.ts │ │ │ │ │ ├── creation │ │ │ │ │ │ ├── filters-shunt-compensator-table.tsx │ │ │ │ │ │ ├── lcc-creation-dialog-header.tsx │ │ │ │ │ │ ├── lcc-creation-dialog.tsx │ │ │ │ │ │ └── lcc-creation-form.tsx │ │ │ │ │ └── modification │ │ │ │ │ │ ├── filter-shunt-compensator-table-modification.tsx │ │ │ │ │ │ ├── lcc-modification-dialog.tsx │ │ │ │ │ │ └── lcc-modification-form.tsx │ │ │ │ └── vsc │ │ │ │ │ ├── converter-station │ │ │ │ │ ├── converter-station-pane.tsx │ │ │ │ │ ├── converter-station-type.ts │ │ │ │ │ └── converter-station-utils.tsx │ │ │ │ │ ├── creation │ │ │ │ │ ├── vsc-creation-dialog.jsx │ │ │ │ │ └── vsc-creation-form.tsx │ │ │ │ │ ├── hvdc-line-pane │ │ │ │ │ ├── vsc-hvdc-line-pane-utils.tsx │ │ │ │ │ └── vsc-hvdc-line-pane.tsx │ │ │ │ │ ├── modification │ │ │ │ │ ├── vsc-modification-dialog.tsx │ │ │ │ │ └── vsc-modification-from.tsx │ │ │ │ │ ├── vsc-tabs.tsx │ │ │ │ │ └── vsc-utils.ts │ │ │ ├── limit-sets │ │ │ │ ├── limit-sets-modification-dialog.tsx │ │ │ │ ├── limit-sets-tabular-modification-form.tsx │ │ │ │ └── limit-sets-tabular-modification-utils.ts │ │ │ ├── line-attach-to-voltage-level │ │ │ │ ├── line-attach-to-voltage-level-dialog.jsx │ │ │ │ ├── line-attach-to-voltage-level-form.jsx │ │ │ │ └── line-attach-to-voltage-level-illustration.tsx │ │ │ ├── line-split-with-voltage-level │ │ │ │ ├── line-split-with-voltage-level-dialog.jsx │ │ │ │ ├── line-split-with-voltage-level-form.jsx │ │ │ │ └── line-split-with-voltage-level-illustration.tsx │ │ │ ├── line-to-attach-or-split-form │ │ │ │ ├── line-to-attach-or-split-form.jsx │ │ │ │ └── line-to-attach-or-split-utils.js │ │ │ ├── line │ │ │ │ ├── characteristics-pane │ │ │ │ │ ├── line-characteristics-pane-utils.js │ │ │ │ │ └── line-characteristics-pane.jsx │ │ │ │ ├── creation │ │ │ │ │ ├── line-creation-dialog-utils.js │ │ │ │ │ └── line-creation-dialog.jsx │ │ │ │ ├── line-dialog-tabs.jsx │ │ │ │ ├── line-utils.ts │ │ │ │ └── modification │ │ │ │ │ ├── line-modification-dialog-header.tsx │ │ │ │ │ ├── line-modification-dialog-tabs.tsx │ │ │ │ │ ├── line-modification-dialog.tsx │ │ │ │ │ └── line-modification-type.ts │ │ │ ├── lines-attach-to-split-lines │ │ │ │ ├── lines-attach-to-split-lines-dialog.jsx │ │ │ │ ├── lines-attach-to-split-lines-form.jsx │ │ │ │ └── lines-attach-to-split-lines-illustration.tsx │ │ │ ├── load-scaling │ │ │ │ ├── load-scaling-dialog.jsx │ │ │ │ ├── load-scaling-form.jsx │ │ │ │ └── variation │ │ │ │ │ ├── variation-form.jsx │ │ │ │ │ └── variation-utils.js │ │ │ ├── load │ │ │ │ ├── common │ │ │ │ │ ├── load-dialog-header.tsx │ │ │ │ │ ├── load-dialog-tabs-content.tsx │ │ │ │ │ ├── load-dialog-tabs.tsx │ │ │ │ │ ├── load-utils.ts │ │ │ │ │ └── load.type.ts │ │ │ │ ├── creation │ │ │ │ │ ├── load-creation-dialog.tsx │ │ │ │ │ └── load-creation.type.ts │ │ │ │ └── modification │ │ │ │ │ ├── load-modification-dialog.tsx │ │ │ │ │ └── load-modification.type.ts │ │ │ ├── shunt-compensator │ │ │ │ ├── characteristics-pane │ │ │ │ │ ├── characteristics-form-utils.js │ │ │ │ │ └── characteristics-form.jsx │ │ │ │ ├── creation │ │ │ │ │ ├── shunt-compensator-creation-dialog.jsx │ │ │ │ │ └── shunt-compensator-creation-form.jsx │ │ │ │ └── modification │ │ │ │ │ ├── shunt-compensator-modification-dialog.jsx │ │ │ │ │ └── shunt-compensator-modification-form.jsx │ │ │ ├── static-var-compensator │ │ │ │ └── creation │ │ │ │ │ ├── set-points-limits-form-utils.ts │ │ │ │ │ ├── set-points-limits-form.tsx │ │ │ │ │ ├── standby-automaton-form-utils.ts │ │ │ │ │ ├── standby-automaton-form.tsx │ │ │ │ │ ├── static-var-compensator-creation-dialog-header.tsx │ │ │ │ │ ├── static-var-compensator-creation-dialog-tabs.tsx │ │ │ │ │ ├── static-var-compensator-creation-dialog.tsx │ │ │ │ │ ├── static-var-compensator-creation-form.tsx │ │ │ │ │ ├── static-var-compensator-creation-utils.ts │ │ │ │ │ └── susceptance-area.tsx │ │ │ ├── substation │ │ │ │ ├── creation │ │ │ │ │ ├── substation-creation-dialog.jsx │ │ │ │ │ └── substation-creation-form.jsx │ │ │ │ └── modification │ │ │ │ │ ├── substation-modification-dialog.jsx │ │ │ │ │ └── substation-modification-form.jsx │ │ │ ├── tabular │ │ │ │ ├── properties │ │ │ │ │ ├── define-properties-dialog.tsx │ │ │ │ │ ├── properties-form.tsx │ │ │ │ │ ├── property-form.tsx │ │ │ │ │ └── property-utils.ts │ │ │ │ ├── tabular-common.ts │ │ │ │ ├── tabular-creation-utils.ts │ │ │ │ ├── tabular-dialog.tsx │ │ │ │ ├── tabular-form.tsx │ │ │ │ ├── tabular-modification-utils.ts │ │ │ │ └── use-filter-csv-generator.ts │ │ │ ├── two-windings-transformer │ │ │ │ ├── characteristics-pane │ │ │ │ │ ├── two-windings-transformer-characteristics-pane-utils.js │ │ │ │ │ └── two-windings-transformer-characteristics-pane.jsx │ │ │ │ ├── creation │ │ │ │ │ ├── characteristics-pane │ │ │ │ │ │ ├── two-windings-transformer-creation-characteristics-pane-utils.js │ │ │ │ │ │ └── two-windings-transformer-creation-characteristics-pane.jsx │ │ │ │ │ ├── two-windings-transformer-creation-dialog-header.jsx │ │ │ │ │ ├── two-windings-transformer-creation-dialog-tabs.jsx │ │ │ │ │ └── two-windings-transformer-creation-dialog.jsx │ │ │ │ ├── modification │ │ │ │ │ ├── 2wt-to-be-estimated │ │ │ │ │ │ ├── to-be-estimated-form-utils.ts │ │ │ │ │ │ ├── to-be-estimated-form.tsx │ │ │ │ │ │ └── to-be-estimated.type.ts │ │ │ │ │ ├── state-estimation-form-utils.ts │ │ │ │ │ ├── two-windings-transformer-modification-dialog-header.jsx │ │ │ │ │ ├── two-windings-transformer-modification-dialog-tabs.jsx │ │ │ │ │ └── two-windings-transformer-modification-dialog.jsx │ │ │ │ ├── tap-changer-pane │ │ │ │ │ ├── create-rule │ │ │ │ │ │ ├── create-rule-dialog-submit-button.jsx │ │ │ │ │ │ ├── create-rule-dialog-utils.js │ │ │ │ │ │ ├── create-rule-dialog.jsx │ │ │ │ │ │ └── create-rule-form.jsx │ │ │ │ │ ├── import-rule-dialog.jsx │ │ │ │ │ ├── phase-tap-changer-pane │ │ │ │ │ │ ├── phase-tap-changer-pane-steps.jsx │ │ │ │ │ │ ├── phase-tap-changer-pane-utils.js │ │ │ │ │ │ └── phase-tap-changer-pane.jsx │ │ │ │ │ ├── ratio-tap-changer-pane │ │ │ │ │ │ ├── ratio-tap-changer-pane-steps.jsx │ │ │ │ │ │ ├── ratio-tap-changer-pane-utils.js │ │ │ │ │ │ └── ratio-tap-changer-pane.jsx │ │ │ │ │ ├── regulated-terminal-section.tsx │ │ │ │ │ ├── tap-changer-pane-utils.ts │ │ │ │ │ └── tap-changer-steps.jsx │ │ │ │ └── two-windings-transformer-utils.ts │ │ │ ├── voltage-init-modification │ │ │ │ └── voltage-init-modification-dialog.tsx │ │ │ └── voltage-level │ │ │ │ ├── coupling-omnibus │ │ │ │ ├── coupling-omnibus-creation.jsx │ │ │ │ └── coupling-omnibus-form.jsx │ │ │ │ ├── creation │ │ │ │ ├── voltage-level-creation-dialog.jsx │ │ │ │ └── voltage-level-creation-form.jsx │ │ │ │ ├── modification │ │ │ │ ├── voltage-level-modification-dialog.jsx │ │ │ │ └── voltage-level-modification-form.jsx │ │ │ │ ├── move-feeder-bays │ │ │ │ ├── feeder-bay-direction-cell-render.tsx │ │ │ │ ├── feeder-bay-position-cell-render.tsx │ │ │ │ ├── move-voltage-level-feeder-bays-dialog.tsx │ │ │ │ ├── move-voltage-level-feeder-bays-form.tsx │ │ │ │ └── move-voltage-level-feeder-bays.type.ts │ │ │ │ ├── section │ │ │ │ ├── create-voltage-level-section-dialog.tsx │ │ │ │ ├── create-voltage-level-section-form.tsx │ │ │ │ └── voltage-level-section.type.ts │ │ │ │ ├── switches-between-sections │ │ │ │ ├── create-switches-between-sections │ │ │ │ │ ├── create-switches-dialog-submit-button.jsx │ │ │ │ │ ├── create-switches-dialog-utils.js │ │ │ │ │ ├── create-switches-dialog.jsx │ │ │ │ │ └── create-switches-form.jsx │ │ │ │ └── switches-between-sections.jsx │ │ │ │ ├── topology-creation │ │ │ │ ├── create-voltage-level-topology-dialog.tsx │ │ │ │ ├── create-voltage-level-topology-dialog.type.ts │ │ │ │ └── create-voltage-level-topology-form.tsx │ │ │ │ ├── topology-modification │ │ │ │ ├── connection-cell-render.tsx │ │ │ │ ├── header-with-tooltip.tsx │ │ │ │ ├── separator-cell-renderer.tsx │ │ │ │ ├── voltage-level-topology-modification-dialog.tsx │ │ │ │ ├── voltage-level-topology-modification-form.tsx │ │ │ │ └── voltage-level-topology.type.ts │ │ │ │ ├── voltage-level-creation-utils.js │ │ │ │ └── voltage-level.type.ts │ │ ├── parameters │ │ │ ├── dynamic-security-analysis │ │ │ │ ├── contingency-parameters.tsx │ │ │ │ ├── dynamic-security-analysis-parameters.tsx │ │ │ │ └── scenario-parameters.tsx │ │ │ ├── dynamicsimulation │ │ │ │ ├── curve-parameters.tsx │ │ │ │ ├── curve │ │ │ │ │ ├── common │ │ │ │ │ │ ├── checkbox-select.tsx │ │ │ │ │ │ └── checkbox-treeview.tsx │ │ │ │ │ ├── dialog │ │ │ │ │ │ ├── curve-preview.tsx │ │ │ │ │ │ ├── curve-selector-dialog.tsx │ │ │ │ │ │ ├── curve-selector-utils.ts │ │ │ │ │ │ ├── curve-selector.tsx │ │ │ │ │ │ ├── equipment-filter.tsx │ │ │ │ │ │ └── model-filter.tsx │ │ │ │ │ └── grid-buttons.tsx │ │ │ │ ├── dynamic-simulation-parameters.tsx │ │ │ │ ├── dynamic-simulation-utils.ts │ │ │ │ ├── dynamic-simulation.type.ts │ │ │ │ ├── global-filter.tsx │ │ │ │ ├── mapping-parameters.tsx │ │ │ │ ├── network-parameters.tsx │ │ │ │ ├── solver-parameters.tsx │ │ │ │ ├── solver │ │ │ │ │ ├── common-solver-parameters.ts │ │ │ │ │ ├── ida-solver-parameters.tsx │ │ │ │ │ └── simplified-solver-parameters.tsx │ │ │ │ └── time-delay-parameters.tsx │ │ │ ├── parameters.tsx │ │ │ ├── state-estimation │ │ │ │ ├── state-estimation-general-parameters.tsx │ │ │ │ ├── state-estimation-loadbounds-parameters.tsx │ │ │ │ ├── state-estimation-parameters-utils.ts │ │ │ │ ├── state-estimation-parameters.tsx │ │ │ │ ├── state-estimation-quality-parameters.tsx │ │ │ │ ├── state-estimation-weights-parameters.tsx │ │ │ │ └── use-get-state-estimation-parameters.ts │ │ │ ├── use-get-pcc-min-parameters.ts │ │ │ ├── use-get-short-circuit-parameters.ts │ │ │ ├── use-get-voltage-init-parameters.ts │ │ │ ├── use-parameters-notification.ts │ │ │ ├── use-parameters-state.ts │ │ │ └── util │ │ │ │ ├── make-component-utils.tsx │ │ │ │ └── styles.ts │ │ ├── percentage-area │ │ │ ├── percentage-area-utils.ts │ │ │ └── percentage-area.tsx │ │ ├── reactive-limits │ │ │ ├── reactive-capability-curve │ │ │ │ ├── reactive-capability-curve-row-form.tsx │ │ │ │ ├── reactive-capability-curve-table.tsx │ │ │ │ └── reactive-capability-utils.ts │ │ │ ├── reactive-limits-form.tsx │ │ │ ├── reactive-limits-utils.ts │ │ │ └── reactive-limits.type.ts │ │ ├── regulating-terminal │ │ │ ├── regulating-terminal-form-utils.ts │ │ │ └── regulating-terminal-form.tsx │ │ ├── restore-modification-dialog.tsx │ │ ├── restore-node-dialog.tsx │ │ ├── root-network │ │ │ ├── advanced-parameters-button.tsx │ │ │ ├── ignored-params.ts │ │ │ ├── import-parameters-section.tsx │ │ │ ├── root-network-case-selection.tsx │ │ │ └── root-network-dialog.tsx │ │ ├── set-points │ │ │ ├── set-points-form.tsx │ │ │ └── set-points-utils.ts │ │ ├── short-circuit │ │ │ ├── short-circuit-form.tsx │ │ │ ├── short-circuit-utils.ts │ │ │ └── short-circuit.type.ts │ │ └── voltage-regulation │ │ │ ├── voltage-regulation-form.tsx │ │ │ └── voltage-regulation-utils.ts │ ├── graph │ │ ├── layout-utils.ts │ │ ├── layout.test.ts │ │ ├── layout.ts │ │ ├── layout.type.ts │ │ ├── menus │ │ │ ├── create-child-menu-item.tsx │ │ │ ├── create-node-menu.tsx │ │ │ ├── dynamic-simulation │ │ │ │ ├── event-modification-scenario-editor.tsx │ │ │ │ └── scenario-editor.tsx │ │ │ ├── network-modifications │ │ │ │ ├── editable-title.tsx │ │ │ │ ├── loadflow-modifications │ │ │ │ │ ├── loadflow-modification-alert.tsx │ │ │ │ │ ├── loadflow-modifications.tsx │ │ │ │ │ └── use-loadflow-modifications.tsx │ │ │ │ ├── network-modification-menu.type.ts │ │ │ │ ├── network-modification-node-dialog.tsx │ │ │ │ ├── network-modification-node-editor-name-header.tsx │ │ │ │ ├── network-modification-node-editor-utils.ts │ │ │ │ ├── network-modification-node-editor.tsx │ │ │ │ ├── network-modifications-menu.tsx │ │ │ │ ├── network-modifications-table.tsx │ │ │ │ ├── node-editor-header.tsx │ │ │ │ ├── node-editor.tsx │ │ │ │ ├── root-network-chip-cell-renderer.tsx │ │ │ │ ├── root-network-selection.tsx │ │ │ │ └── switch-cell-renderer.tsx │ │ │ ├── node-name-edit-dialog.tsx │ │ │ ├── root-network │ │ │ │ ├── root-network-minimized-panel-content.tsx │ │ │ │ ├── root-network-modification-results.tsx │ │ │ │ ├── root-network-modifications-search-results.tsx │ │ │ │ ├── root-network-node-editor.tsx │ │ │ │ ├── root-network-nodes-search-results.tsx │ │ │ │ ├── root-network-panel-header.tsx │ │ │ │ ├── root-network-panel-search.tsx │ │ │ │ ├── root-network-panel.tsx │ │ │ │ ├── root-network-search-bar.tsx │ │ │ │ ├── root-network.types.ts │ │ │ │ ├── use-root-network-modification-search.ts │ │ │ │ ├── use-root-network-node-search.ts │ │ │ │ ├── use-root-network-notifications.ts │ │ │ │ └── use-root-network-search-notifications.ts │ │ │ └── unique-check-name-input.tsx │ │ ├── network-modification-tree-model.ts │ │ ├── nodes │ │ │ ├── build-button.tsx │ │ │ ├── build-status-chip.tsx │ │ │ ├── constants.ts │ │ │ ├── labeled-group-node.tsx │ │ │ ├── labeled-group-node.type.ts │ │ │ ├── network-modification-node.tsx │ │ │ ├── node-handle.tsx │ │ │ ├── node-overlay-spinner.tsx │ │ │ ├── root-node.tsx │ │ │ └── styles.ts │ │ ├── tree-node.type.ts │ │ └── util │ │ │ ├── case-import-parameters.ts │ │ │ ├── model-constants.ts │ │ │ ├── model-functions.ts │ │ │ └── tree-control-button.tsx │ ├── grid-layout │ │ └── cards │ │ │ ├── card-styles.ts │ │ │ └── diagrams │ │ │ ├── diagram-styles.ts │ │ │ ├── diagram-utils.ts │ │ │ ├── diagram.type.ts │ │ │ ├── networkAreaDiagram │ │ │ ├── diagram-controls.tsx │ │ │ ├── network-area-diagram-content.tsx │ │ │ ├── node-context-menu.tsx │ │ │ └── voltage-level-search-menu.tsx │ │ │ └── singleLineDiagram │ │ │ ├── hooks │ │ │ └── use-one-bus-shortcircuit-analysis-loader.tsx │ │ │ ├── positionDiagram │ │ │ ├── diagram-header.tsx │ │ │ ├── position-diagram-pane.tsx │ │ │ └── position-diagram.tsx │ │ │ └── single-line-diagram-content.tsx │ ├── menus │ │ ├── base-equipment-menu.tsx │ │ ├── bus-menu.tsx │ │ ├── dynamic-simulation │ │ │ └── dynamic-simulation-event-menu-item.tsx │ │ ├── equipment-menu.tsx │ │ └── operating-status-menu.tsx │ ├── network-modification-tree-pane-panels-handlers.tsx │ ├── network-modification-tree-pane.jsx │ ├── network-modification-tree.jsx │ ├── network-modification.type.ts │ ├── network │ │ ├── constants.ts │ │ ├── gs-map-equipments.ts │ │ ├── guidance-popup.tsx │ │ ├── network-map-panel.tsx │ │ ├── network-map │ │ │ └── use-mapbox-token.tsx │ │ ├── nominal-voltage-filter.tsx │ │ ├── selection-creation-panel │ │ │ ├── contingency-filter-creation │ │ │ │ ├── contingency-filter-creation-directory-selector.tsx │ │ │ │ └── contingency-filter-creation-fields.tsx │ │ │ ├── selection-creation-panel-form.tsx │ │ │ ├── selection-creation-panel-submit-button.tsx │ │ │ ├── selection-creation-panel.tsx │ │ │ ├── selection-creation-schema.tsx │ │ │ ├── selection-types.ts │ │ │ └── use-save-map.ts │ │ └── utils │ │ │ └── nominal-voltage-filter-utils.tsx │ ├── page-not-found.jsx │ ├── parameters-tabs.tsx │ ├── report-viewer-tab.jsx │ ├── report-viewer │ │ ├── QuickSearch.tsx │ │ ├── log-table.tsx │ │ ├── report-viewer.tsx │ │ ├── report.styles.ts │ │ ├── treeview-item.tsx │ │ ├── use-logs-pagination.ts │ │ ├── use-treeview-scroll.ts │ │ └── virtualized-treeview.tsx │ ├── result-view-tab.tsx │ ├── result-view-tab.type.ts │ ├── results │ │ ├── common │ │ │ ├── Overlay.tsx │ │ │ ├── computation-report-viewer.tsx │ │ │ ├── glass-pane.tsx │ │ │ ├── global-filter │ │ │ │ ├── global-filter-autocomplete.tsx │ │ │ │ ├── global-filter-context.ts │ │ │ │ ├── global-filter-paper.tsx │ │ │ │ ├── global-filter-provider.tsx │ │ │ │ ├── global-filter-selector.tsx │ │ │ │ ├── global-filter-styles.ts │ │ │ │ ├── global-filter-types.ts │ │ │ │ ├── global-filter-utils.ts │ │ │ │ ├── use-global-filter-options.ts │ │ │ │ ├── use-global-filter-results.ts │ │ │ │ └── use-global-filters.ts │ │ │ ├── result-cell-renderers.tsx │ │ │ ├── tab-panel-lazy.tsx │ │ │ └── utils.ts │ │ ├── dynamic-security-analysis │ │ │ ├── dynamic-security-analysis-result-logs.tsx │ │ │ ├── dynamic-security-analysis-result-synthesis.tsx │ │ │ └── dynamic-security-analysis-result-tab.tsx │ │ ├── dynamicsimulation │ │ │ ├── common │ │ │ │ ├── gridlayout │ │ │ │ │ ├── react-grid-layout.custom.css │ │ │ │ │ ├── react-grid-layout.main.css │ │ │ │ │ └── responsive-grid-layout.tsx │ │ │ │ └── visibility-box.tsx │ │ │ ├── dynamic-simulation-result-logs.tsx │ │ │ ├── dynamic-simulation-result-synthesis.tsx │ │ │ ├── dynamic-simulation-result-tab.tsx │ │ │ ├── dynamic-simulation-result-time-series.tsx │ │ │ ├── dynamic-simulation-result-timeline.tsx │ │ │ ├── hooks │ │ │ │ └── useResultTimeSeries.ts │ │ │ ├── plot │ │ │ │ ├── plot-config.ts │ │ │ │ ├── plot-events.ts │ │ │ │ ├── plot-types.ts │ │ │ │ └── plotly-series-chart.tsx │ │ │ ├── timeseries │ │ │ │ ├── dynamic-simulation-result-chart.tsx │ │ │ │ ├── dynamic-simulation-result-series-chart.tsx │ │ │ │ ├── dynamic-simulation-result-series-item.tsx │ │ │ │ └── dynamic-simulation-result-series-list.tsx │ │ │ ├── types │ │ │ │ └── dynamic-simulation-result.type.ts │ │ │ └── utils │ │ │ │ └── dynamic-simulation-result-utils.ts │ │ ├── loadflow │ │ │ ├── limit-violation-result.tsx │ │ │ ├── load-flow-result-tab.tsx │ │ │ ├── load-flow-result-utils.ts │ │ │ ├── load-flow-result.tsx │ │ │ ├── load-flow-result.type.ts │ │ │ └── use-load-flow-result-column-actions.ts │ │ ├── pccmin │ │ │ ├── pcc-min-export-button.tsx │ │ │ ├── pcc-min-result-tab.tsx │ │ │ ├── pcc-min-result-table.tsx │ │ │ ├── pcc-min-result.tsx │ │ │ └── pcc-min-result.type.ts │ │ ├── securityanalysis │ │ │ ├── security-analysis-export-button.tsx │ │ │ ├── security-analysis-result-n.tsx │ │ │ ├── security-analysis-result-nmk.tsx │ │ │ ├── security-analysis-result-tab.tsx │ │ │ ├── security-analysis-result-utils.ts │ │ │ ├── security-analysis-table.tsx │ │ │ ├── security-analysis.type.ts │ │ │ └── use-security-analysis-column-defs.tsx │ │ ├── sensitivity-analysis │ │ │ ├── paged-sensitivity-analysis-result.tsx │ │ │ ├── sensitivity-analysis-export-button.tsx │ │ │ ├── sensitivity-analysis-result-tab.tsx │ │ │ ├── sensitivity-analysis-result-utils.ts │ │ │ ├── sensitivity-analysis-result.tsx │ │ │ ├── sensitivity-analysis-result.type.ts │ │ │ └── sensitivity-analysis-tabs.tsx │ │ ├── shortcircuit │ │ │ ├── shortcircuit-analysis-all-buses-result.tsx │ │ │ ├── shortcircuit-analysis-export-button.tsx │ │ │ ├── shortcircuit-analysis-one-bus-result.tsx │ │ │ ├── shortcircuit-analysis-result-content.ts │ │ │ ├── shortcircuit-analysis-result-tab.tsx │ │ │ ├── shortcircuit-analysis-result-table.tsx │ │ │ ├── shortcircuit-analysis-result.tsx │ │ │ └── shortcircuit-analysis-result.type.ts │ │ ├── stateestimation │ │ │ ├── state-estimation-quality-result.tsx │ │ │ ├── state-estimation-result-tab.tsx │ │ │ ├── state-estimation-result-utils.ts │ │ │ ├── state-estimation-result.type.ts │ │ │ └── state-estimation-status-result.tsx │ │ └── use-results-tab.ts │ ├── run-button-container.jsx │ ├── run-button.jsx │ ├── spreadsheet-view │ │ ├── add-spreadsheet │ │ │ ├── add-spreadsheet-button.tsx │ │ │ ├── dialogs │ │ │ │ ├── add-empty-spreadsheet-dialog.tsx │ │ │ │ ├── add-spreadsheet-form.ts │ │ │ │ ├── add-spreadsheet-from-model-dialog.tsx │ │ │ │ ├── add-spreadsheet-utils.ts │ │ │ │ └── add-spreadsheets-from-collection-dialog.tsx │ │ │ ├── styles │ │ │ │ └── styles.ts │ │ │ └── types.d.ts │ │ ├── columns │ │ │ ├── column-creation-dialog.tsx │ │ │ ├── column-creation-form.ts │ │ │ ├── column-menu.tsx │ │ │ ├── common-column-definitions.ts │ │ │ ├── floating-treeview-list │ │ │ │ ├── floating-popover-treeview-wrapper.tsx │ │ │ │ ├── tree-label.tsx │ │ │ │ ├── treeview-searchable.tsx │ │ │ │ ├── use-formula-quicksearch.ts │ │ │ │ └── utils │ │ │ │ │ ├── json-schema-parser.ts │ │ │ │ │ ├── render-tree-data.tsx │ │ │ │ │ ├── sort-priority-order.ts │ │ │ │ │ └── use-popover-toggle.ts │ │ │ └── utils │ │ │ │ ├── column-mapper.ts │ │ │ │ ├── cyclic-dependencies.ts │ │ │ │ ├── formula-validator.ts │ │ │ │ └── math.ts │ │ ├── constants.ts │ │ ├── hooks │ │ │ ├── use-built-nodes-ids.ts │ │ │ ├── use-fetch-equipment.ts │ │ │ ├── use-node-aliases-update-on-notification.ts │ │ │ ├── use-node-aliases.ts │ │ │ ├── use-reset-spreadsheet-on-root-network.ts │ │ │ ├── use-spreadsheet-equipments.ts │ │ │ └── use-update-equipments-on-notification.ts │ │ ├── spreadsheet-tabs │ │ │ ├── rename-tab-dialog.tsx │ │ │ ├── spreadsheet-tab-label.tsx │ │ │ ├── spreadsheet-tabs-toolbar.tsx │ │ │ ├── spreadsheet-tabs.tsx │ │ │ └── toolbar │ │ │ │ ├── PartialLoadingMenuButton.tsx │ │ │ │ └── PartialLoadingMenuItem.tsx │ │ ├── spreadsheet-view.tsx │ │ ├── spreadsheet.style.ts │ │ ├── spreadsheet │ │ │ ├── spreadsheet-content │ │ │ │ ├── equipment-table.style.ts │ │ │ │ ├── equipment-table.tsx │ │ │ │ ├── hooks │ │ │ │ │ ├── use-column-management.ts │ │ │ │ │ ├── use-equipment-modification.tsx │ │ │ │ │ ├── use-grid-calculations.ts │ │ │ │ │ ├── use-optional-loading-parameters-for-equipments.ts │ │ │ │ │ ├── use-spreadsheet-gs-filter.ts │ │ │ │ │ └── useEquipmentContextMenu.ts │ │ │ │ └── spreadsheet-content.tsx │ │ │ ├── spreadsheet-toolbar │ │ │ │ ├── column-creation-button.tsx │ │ │ │ ├── columns-config.tsx │ │ │ │ ├── draggable-column-item.tsx │ │ │ │ ├── droppable-columns-list.tsx │ │ │ │ ├── global-filter │ │ │ │ │ └── spreadsheet-global-filter.tsx │ │ │ │ ├── global-model-editor │ │ │ │ │ ├── columnName-editor.tsx │ │ │ │ │ ├── dependencies-editor.tsx │ │ │ │ │ ├── formula-editor.tsx │ │ │ │ │ ├── formula-search-context.tsx │ │ │ │ │ ├── formula-search-replace.tsx │ │ │ │ │ ├── spreadsheet-model-global-editor-dialog.tsx │ │ │ │ │ ├── spreadsheet-model-global-editor-table.tsx │ │ │ │ │ ├── spreadsheet-model-global-editor.type.ts │ │ │ │ │ └── spreadsheet-model-global-editor.utils.ts │ │ │ │ ├── nodes-config │ │ │ │ │ ├── node-config-table.tsx │ │ │ │ │ ├── nodes-config-button.tsx │ │ │ │ │ ├── nodes-config-dialog.tsx │ │ │ │ │ └── nodes-config-dialog.utils.ts │ │ │ │ ├── row-counter │ │ │ │ │ ├── filtered-row-counter.tsx │ │ │ │ │ └── use-filtered-row-counter.tsx │ │ │ │ ├── save │ │ │ │ │ ├── save-filter-confirmation-dialog.tsx │ │ │ │ │ ├── save-naming-filter-dialog.tsx │ │ │ │ │ ├── save-spreadsheet-button.tsx │ │ │ │ │ ├── save-spreadsheet-collection-dialog.tsx │ │ │ │ │ └── save-spreadsheet-dialog.tsx │ │ │ │ └── spreadsheet-toolbar.tsx │ │ │ └── spreadsheet.tsx │ │ ├── types │ │ │ ├── calculation.type.ts │ │ │ ├── node-alias.type.ts │ │ │ └── spreadsheet.type.ts │ │ └── utils │ │ │ └── calculation-utils.ts │ ├── study-container.jsx │ ├── study-navigation-sync-toggle.tsx │ ├── study-pane.jsx │ ├── tooltips │ │ ├── branch-popover-content.tsx │ │ ├── carateristics-table.tsx │ │ ├── cell-render.tsx │ │ ├── current-table.tsx │ │ ├── equipment-popover-map.tsx │ │ ├── generic-equipment-popover-utils.tsx │ │ ├── generic-equipment-popover.tsx │ │ ├── generic-popover-content.tsx │ │ └── limit-table.tsx │ ├── top-bar-equipment-seach-dialog │ │ ├── custom-suffix-renderer.tsx │ │ ├── top-bar-equipment-search-dialog.tsx │ │ ├── top-bar-equipment-search-input.tsx │ │ ├── top-bar-equipment-search-popover.tsx │ │ ├── use-disabled-search-reason.tsx │ │ ├── use-search-event.tsx │ │ ├── use-search-matching-equipments.tsx │ │ └── use-top-bar-search-matching-equipments.tsx │ ├── use-node-data.tsx │ ├── utils │ │ ├── aggrid-rows-handler.ts │ │ ├── alert-custom-message-node.tsx │ │ ├── checkbox-autocomplete │ │ │ ├── checkbox-autocomplete.tsx │ │ │ ├── checkbox-item.tsx │ │ │ ├── index.ts │ │ │ ├── virtualized-list-item.tsx │ │ │ └── virtualized-list.tsx │ │ ├── column-constant.ts │ │ ├── constants.ts │ │ ├── custom-dialog.tsx │ │ ├── custom-table-pagination.tsx │ │ ├── draggable-tab │ │ │ ├── draggable-tab.tsx │ │ │ └── droppable-tabs.tsx │ │ ├── equipment-types.ts │ │ ├── equipmentInfosHandler.ts │ │ ├── feederType.ts │ │ ├── field-constants.ts │ │ ├── forwardRefBox.tsx │ │ ├── inputs │ │ │ └── input-hooks.tsx │ │ ├── is-any-node-building-hook.ts │ │ ├── loader-with-overlay.tsx │ │ ├── localized-countries-hook.ts │ │ ├── optional-services.ts │ │ ├── renderTable-ExportCsv.tsx │ │ ├── rhf-inputs │ │ │ ├── boolean-nullable-input.tsx │ │ │ ├── country-selection-input.tsx │ │ │ ├── enum-input.tsx │ │ │ ├── expandable-input │ │ │ │ ├── deletable-row.tsx │ │ │ │ ├── expandable-input.tsx │ │ │ │ └── index.ts │ │ │ └── read-only │ │ │ │ ├── button-read-only-input.tsx │ │ │ │ └── read-only-input.tsx │ │ ├── running-status.ts │ │ ├── split-button.tsx │ │ ├── tab-utils.ts │ │ ├── ts-utils.ts │ │ ├── utils.test.ts │ │ ├── utils.ts │ │ ├── validation-functions.test.ts │ │ ├── validation-functions.ts │ │ ├── waiting-loader.tsx │ │ └── yup-config.ts │ ├── voltage-init-result-tab.tsx │ ├── voltage-init-result.tsx │ ├── voltage-init-result.type.ts │ ├── voltage-level-choice.jsx │ └── workspace │ │ ├── constants │ │ └── workspace.constants.tsx │ │ ├── core │ │ ├── panel-header.tsx │ │ ├── panel.tsx │ │ ├── utils │ │ │ └── snap-utils.ts │ │ ├── workspace-container.tsx │ │ ├── workspace-dock.tsx │ │ ├── workspace-switcher.tsx │ │ └── workspace-toolbar.tsx │ │ ├── diagrams │ │ ├── common │ │ │ ├── use-diagram-navigation.ts │ │ │ └── use-diagram-notifications.ts │ │ ├── diagram-wrapper.tsx │ │ ├── nad │ │ │ ├── use-nad-config-cleanup.ts │ │ │ └── use-nad-diagram.ts │ │ └── sld │ │ │ ├── sld-navigation-sidebar.tsx │ │ │ └── use-sld-diagram.ts │ │ ├── panel-contents │ │ ├── diagrams │ │ │ ├── nad │ │ │ │ └── nad-panel-content.tsx │ │ │ └── sld │ │ │ │ ├── substation-panel-content.tsx │ │ │ │ └── voltage-level-panel-content.tsx │ │ ├── map-panel-content.tsx │ │ ├── panel-content-registry.tsx │ │ └── tree-panel-content.tsx │ │ └── types │ │ └── workspace.types.ts ├── constants │ ├── node.constant.ts │ └── study-navigation-sync-constants.ts ├── hooks │ ├── use-computation-debug.ts │ ├── use-computation-results-count.ts │ ├── use-equipment-dialogs.tsx │ ├── use-equipment-menu.tsx │ ├── use-export-download.ts │ ├── use-export-notification.ts │ ├── use-export-subscription.ts │ ├── use-filter-selector.ts │ ├── use-get-label-equipment-types.ts │ ├── use-get-study-impacts.ts │ ├── use-notifications-url-generator.ts │ ├── use-optional-loading-parameters.ts │ ├── use-optional-service-status.ts │ ├── use-pagination-selector.ts │ ├── use-report-fetcher.tsx │ ├── use-stable-computed-set.ts │ ├── use-study-navigation-sync.ts │ ├── use-study-path.ts │ ├── use-study-scoped-navigation-keys.ts │ ├── use-sync-navigation-actions.ts │ ├── use-tree-node-focus.ts │ └── use-voltage-levels-list-infos.ts ├── images │ ├── 404.png │ ├── GridStudy_logo_dark.svg │ ├── GridStudy_logo_light.svg │ ├── add_column_right_dark.svg │ ├── add_column_right_disabled.svg │ ├── add_column_right_light.svg │ ├── arrow.svg │ ├── arrow_hover.svg │ ├── bolt_black_24dp.svg │ ├── lock_black_24dp.svg │ └── network-modifications │ │ └── illustrations │ │ ├── delete-attaching-line-illustration.svg │ │ ├── delete-voltage-level-on-line.svg │ │ ├── line-attach-to-voltage-level.svg │ │ ├── line-split-with-voltage-level.svg │ │ └── lines-attach-to-split-lines.svg ├── index.css ├── index.jsx ├── module-file-saver.d.ts ├── module-mui.d.ts ├── nad-index.css ├── plugins │ ├── README.md │ ├── index.js │ └── translations │ │ ├── en.json │ │ ├── fr.json │ │ └── index.js ├── redux │ ├── actions.ts │ ├── reducer.ts │ ├── session-storage │ │ ├── debug-state.ts │ │ ├── diagram-grid-layout.ts │ │ ├── diagram-state.ts │ │ ├── export-network-state.ts │ │ ├── local-storage.ts │ │ └── search-equipment-history.ts │ ├── slices │ │ ├── workspace-helpers.ts │ │ ├── workspace-selectors.ts │ │ ├── workspace-slice.ts │ │ └── workspace-storage.ts │ ├── store.ts │ ├── user-store.ts │ └── utils.ts ├── services │ ├── directory.ts │ ├── dynamic-security-analysis.ts │ ├── dynamic-simulation.ts │ ├── explore.ts │ ├── loadflow.ts │ ├── network-conversion.ts │ ├── network-modification-types.ts │ ├── network-modification.ts │ ├── root-network.ts │ ├── sensitivity-analysis.ts │ ├── short-circuit-analysis.ts │ ├── study-config.ts │ ├── study │ │ ├── contingency-list.ts │ │ ├── dynamic-security-analysis.ts │ │ ├── dynamic-security-analysis.type.ts │ │ ├── dynamic-simulation.ts │ │ ├── dynamic-simulation.type.ts │ │ ├── filter.ts │ │ ├── geo-data.ts │ │ ├── index.ts │ │ ├── loadflow.ts │ │ ├── network-map.ts │ │ ├── network-map.type.ts │ │ ├── network-modifications.ts │ │ ├── network.ts │ │ ├── node-alias.ts │ │ ├── pcc-min.ts │ │ ├── security-analysis.ts │ │ ├── sensitivity-analysis.ts │ │ ├── sensitivity-analysis.type.ts │ │ ├── short-circuit-analysis.ts │ │ ├── spreadsheet.ts │ │ ├── state-estimation.ts │ │ ├── study-config.ts │ │ ├── study.ts │ │ ├── tree-subtree.ts │ │ └── voltage-init.ts │ ├── utils.ts │ ├── utils.type.ts │ └── voltage-init.ts ├── styles │ ├── dark-theme-css-vars.ts │ └── light-theme-css-vars.ts ├── translations │ ├── dynamic │ │ ├── csv-locale-en.ts │ │ ├── csv-locale-fr.ts │ │ ├── errors-locale-en.ts │ │ ├── errors-locale-fr.ts │ │ ├── events-locale-en.ts │ │ ├── events-locale-fr.ts │ │ ├── filter-locale-en.ts │ │ ├── filter-locale-fr.ts │ │ ├── menu-locale-en.ts │ │ ├── menu-locale-fr.ts │ │ ├── table-locale-en.ts │ │ └── table-locale-fr.ts │ ├── en.json │ ├── external │ │ ├── backend-locale-en.ts │ │ ├── backend-locale-fr.ts │ │ ├── dynamic-mapping-models-en.ts │ │ └── dynamic-mapping-models-fr.ts │ ├── fr.json │ ├── grid-en.ts │ ├── grid-fr.ts │ ├── not-intl │ │ ├── README.txt │ │ └── aggrid-locales.ts │ ├── spreadsheet-en.ts │ └── spreadsheet-fr.ts ├── types │ ├── PropsWithoutChildren.d.ts │ ├── custom-aggrid-types.ts │ ├── filter-lib │ │ └── filter.ts │ └── notification-types.ts ├── utils │ ├── UIconstants.ts │ ├── aggrid-headers-utils.ts │ ├── colors.ts │ ├── compute-title.ts │ ├── config-params.ts │ ├── dialogs.tsx │ ├── directories-notification-type.ts │ ├── export-network-utils.ts │ ├── http-status-code.ts │ ├── report │ │ ├── report-log.mapper.ts │ │ ├── report-severity.ts │ │ ├── report-tree.mapper.ts │ │ ├── report.constant.ts │ │ └── report.type.ts │ ├── rounding.ts │ ├── spreadsheet-equipments-mapper.ts │ ├── store-sort-filter-fields.ts │ └── types-utils.ts └── vite-env.d.ts ├── tsconfig.json └── vite.config.ts /.browserslistrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gridsuite/gridstudy-app/HEAD/.browserslistrc -------------------------------------------------------------------------------- /.env: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gridsuite/gridstudy-app/HEAD/.env -------------------------------------------------------------------------------- /.github/config/.licenserc.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gridsuite/gridstudy-app/HEAD/.github/config/.licenserc.yaml -------------------------------------------------------------------------------- /.github/workflows/build.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gridsuite/gridstudy-app/HEAD/.github/workflows/build.yml -------------------------------------------------------------------------------- /.github/workflows/patch.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gridsuite/gridstudy-app/HEAD/.github/workflows/patch.yml -------------------------------------------------------------------------------- /.github/workflows/release.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gridsuite/gridstudy-app/HEAD/.github/workflows/release.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gridsuite/gridstudy-app/HEAD/.gitignore -------------------------------------------------------------------------------- /.sonarlint/connectedMode.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gridsuite/gridstudy-app/HEAD/.sonarlint/connectedMode.json -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gridsuite/gridstudy-app/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gridsuite/gridstudy-app/HEAD/Dockerfile -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gridsuite/gridstudy-app/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gridsuite/gridstudy-app/HEAD/README.md -------------------------------------------------------------------------------- /app-httpd.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gridsuite/gridstudy-app/HEAD/app-httpd.conf -------------------------------------------------------------------------------- /babel.config.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gridsuite/gridstudy-app/HEAD/babel.config.json -------------------------------------------------------------------------------- /eslint.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gridsuite/gridstudy-app/HEAD/eslint.config.js -------------------------------------------------------------------------------- /index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gridsuite/gridstudy-app/HEAD/index.html -------------------------------------------------------------------------------- /jest.config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gridsuite/gridstudy-app/HEAD/jest.config.ts -------------------------------------------------------------------------------- /jest.setup.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gridsuite/gridstudy-app/HEAD/jest.setup.ts -------------------------------------------------------------------------------- /license-checker-config.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gridsuite/gridstudy-app/HEAD/license-checker-config.json -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gridsuite/gridstudy-app/HEAD/package.json -------------------------------------------------------------------------------- /prettier.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gridsuite/gridstudy-app/HEAD/prettier.config.js -------------------------------------------------------------------------------- /public/env.json: -------------------------------------------------------------------------------- 1 | { 2 | "appsMetadataServerUrl": "http://localhost:8070" 3 | } 4 | -------------------------------------------------------------------------------- /public/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gridsuite/gridstudy-app/HEAD/public/favicon.ico -------------------------------------------------------------------------------- /public/idpSettings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gridsuite/gridstudy-app/HEAD/public/idpSettings.json -------------------------------------------------------------------------------- /sonar-project.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gridsuite/gridstudy-app/HEAD/sonar-project.properties -------------------------------------------------------------------------------- /src/_mocks_/svg.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gridsuite/gridstudy-app/HEAD/src/_mocks_/svg.tsx -------------------------------------------------------------------------------- /src/components/app-top-bar.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gridsuite/gridstudy-app/HEAD/src/components/app-top-bar.jsx -------------------------------------------------------------------------------- /src/components/app-wrapper.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gridsuite/gridstudy-app/HEAD/src/components/app-wrapper.jsx -------------------------------------------------------------------------------- /src/components/app.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gridsuite/gridstudy-app/HEAD/src/components/app.jsx -------------------------------------------------------------------------------- /src/components/breadcrumbs/root-network-select.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gridsuite/gridstudy-app/HEAD/src/components/breadcrumbs/root-network-select.tsx -------------------------------------------------------------------------------- /src/components/breadcrumbs/study-path-breadcrumbs.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gridsuite/gridstudy-app/HEAD/src/components/breadcrumbs/study-path-breadcrumbs.tsx -------------------------------------------------------------------------------- /src/components/common/tooltip-icon-button.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gridsuite/gridstudy-app/HEAD/src/components/common/tooltip-icon-button.tsx -------------------------------------------------------------------------------- /src/components/computing-status/computing-status-utils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gridsuite/gridstudy-app/HEAD/src/components/computing-status/computing-status-utils.ts -------------------------------------------------------------------------------- /src/components/computing-status/use-all-computing-status.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gridsuite/gridstudy-app/HEAD/src/components/computing-status/use-all-computing-status.ts -------------------------------------------------------------------------------- /src/components/computing-status/use-computing-status.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gridsuite/gridstudy-app/HEAD/src/components/computing-status/use-computing-status.ts -------------------------------------------------------------------------------- /src/components/custom-aggrid/custom-aggrid-filters/custom-aggrid-autocomplete-filter.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gridsuite/gridstudy-app/HEAD/src/components/custom-aggrid/custom-aggrid-filters/custom-aggrid-autocomplete-filter.tsx -------------------------------------------------------------------------------- /src/components/custom-aggrid/custom-aggrid-filters/custom-aggrid-boolean-filter.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gridsuite/gridstudy-app/HEAD/src/components/custom-aggrid/custom-aggrid-filters/custom-aggrid-boolean-filter.tsx -------------------------------------------------------------------------------- /src/components/custom-aggrid/custom-aggrid-filters/custom-aggrid-comparator-filter.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gridsuite/gridstudy-app/HEAD/src/components/custom-aggrid/custom-aggrid-filters/custom-aggrid-comparator-filter.tsx -------------------------------------------------------------------------------- /src/components/custom-aggrid/custom-aggrid-filters/custom-aggrid-comparator-selector.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gridsuite/gridstudy-app/HEAD/src/components/custom-aggrid/custom-aggrid-filters/custom-aggrid-comparator-selector.tsx -------------------------------------------------------------------------------- /src/components/custom-aggrid/custom-aggrid-filters/custom-aggrid-duration-filter.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gridsuite/gridstudy-app/HEAD/src/components/custom-aggrid/custom-aggrid-filters/custom-aggrid-duration-filter.tsx -------------------------------------------------------------------------------- /src/components/custom-aggrid/custom-aggrid-filters/custom-aggrid-filter.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gridsuite/gridstudy-app/HEAD/src/components/custom-aggrid/custom-aggrid-filters/custom-aggrid-filter.tsx -------------------------------------------------------------------------------- /src/components/custom-aggrid/custom-aggrid-filters/custom-aggrid-filter.type.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gridsuite/gridstudy-app/HEAD/src/components/custom-aggrid/custom-aggrid-filters/custom-aggrid-filter.type.ts -------------------------------------------------------------------------------- /src/components/custom-aggrid/custom-aggrid-filters/custom-aggrid-text-filter.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gridsuite/gridstudy-app/HEAD/src/components/custom-aggrid/custom-aggrid-filters/custom-aggrid-text-filter.tsx -------------------------------------------------------------------------------- /src/components/custom-aggrid/custom-aggrid-filters/custom-filter-icon.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gridsuite/gridstudy-app/HEAD/src/components/custom-aggrid/custom-aggrid-filters/custom-filter-icon.tsx -------------------------------------------------------------------------------- /src/components/custom-aggrid/custom-aggrid-filters/hooks/use-custom-aggrid-filter.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gridsuite/gridstudy-app/HEAD/src/components/custom-aggrid/custom-aggrid-filters/hooks/use-custom-aggrid-filter.ts -------------------------------------------------------------------------------- /src/components/custom-aggrid/custom-aggrid-filters/utils/aggrid-filters-utils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gridsuite/gridstudy-app/HEAD/src/components/custom-aggrid/custom-aggrid-filters/utils/aggrid-filters-utils.ts -------------------------------------------------------------------------------- /src/components/custom-aggrid/custom-aggrid-filters/utils/filter-tolerance-utils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gridsuite/gridstudy-app/HEAD/src/components/custom-aggrid/custom-aggrid-filters/utils/filter-tolerance-utils.ts -------------------------------------------------------------------------------- /src/components/custom-aggrid/custom-aggrid-header.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gridsuite/gridstudy-app/HEAD/src/components/custom-aggrid/custom-aggrid-header.tsx -------------------------------------------------------------------------------- /src/components/custom-aggrid/custom-aggrid-header.type.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gridsuite/gridstudy-app/HEAD/src/components/custom-aggrid/custom-aggrid-header.type.ts -------------------------------------------------------------------------------- /src/components/custom-aggrid/custom-aggrid-menu.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gridsuite/gridstudy-app/HEAD/src/components/custom-aggrid/custom-aggrid-menu.tsx -------------------------------------------------------------------------------- /src/components/custom-aggrid/custom-aggrid-sort.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gridsuite/gridstudy-app/HEAD/src/components/custom-aggrid/custom-aggrid-sort.tsx -------------------------------------------------------------------------------- /src/components/custom-aggrid/display-rounding.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gridsuite/gridstudy-app/HEAD/src/components/custom-aggrid/display-rounding.tsx -------------------------------------------------------------------------------- /src/components/custom-aggrid/hooks/use-custom-aggrid-sort.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gridsuite/gridstudy-app/HEAD/src/components/custom-aggrid/hooks/use-custom-aggrid-sort.ts -------------------------------------------------------------------------------- /src/components/custom-aggrid/rowindex-cell-renderer.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gridsuite/gridstudy-app/HEAD/src/components/custom-aggrid/rowindex-cell-renderer.tsx -------------------------------------------------------------------------------- /src/components/custom-aggrid/utils/custom-aggrid-header-utils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gridsuite/gridstudy-app/HEAD/src/components/custom-aggrid/utils/custom-aggrid-header-utils.ts -------------------------------------------------------------------------------- /src/components/custom-aggrid/utils/format-values-utils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gridsuite/gridstudy-app/HEAD/src/components/custom-aggrid/utils/format-values-utils.ts -------------------------------------------------------------------------------- /src/components/dialogs/active-power-control/active-power-control-form.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gridsuite/gridstudy-app/HEAD/src/components/dialogs/active-power-control/active-power-control-form.tsx -------------------------------------------------------------------------------- /src/components/dialogs/active-power-control/active-power-control-utils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gridsuite/gridstudy-app/HEAD/src/components/dialogs/active-power-control/active-power-control-utils.ts -------------------------------------------------------------------------------- /src/components/dialogs/active-power-control/active-power-control.type.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gridsuite/gridstudy-app/HEAD/src/components/dialogs/active-power-control/active-power-control.type.ts -------------------------------------------------------------------------------- /src/components/dialogs/commons/basicModificationDialog.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gridsuite/gridstudy-app/HEAD/src/components/dialogs/commons/basicModificationDialog.tsx -------------------------------------------------------------------------------- /src/components/dialogs/commons/grid-item.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gridsuite/gridstudy-app/HEAD/src/components/dialogs/commons/grid-item.tsx -------------------------------------------------------------------------------- /src/components/dialogs/commons/grid-section.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gridsuite/gridstudy-app/HEAD/src/components/dialogs/commons/grid-section.tsx -------------------------------------------------------------------------------- /src/components/dialogs/commons/handle-loader.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gridsuite/gridstudy-app/HEAD/src/components/dialogs/commons/handle-loader.ts -------------------------------------------------------------------------------- /src/components/dialogs/commons/handle-modification-form.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gridsuite/gridstudy-app/HEAD/src/components/dialogs/commons/handle-modification-form.ts -------------------------------------------------------------------------------- /src/components/dialogs/commons/line-separator.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gridsuite/gridstudy-app/HEAD/src/components/dialogs/commons/line-separator.tsx -------------------------------------------------------------------------------- /src/components/dialogs/commons/modification-dialog-content.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gridsuite/gridstudy-app/HEAD/src/components/dialogs/commons/modification-dialog-content.tsx -------------------------------------------------------------------------------- /src/components/dialogs/commons/modificationDialog.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gridsuite/gridstudy-app/HEAD/src/components/dialogs/commons/modificationDialog.tsx -------------------------------------------------------------------------------- /src/components/dialogs/commons/select-with-confirmation-input.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gridsuite/gridstudy-app/HEAD/src/components/dialogs/commons/select-with-confirmation-input.tsx -------------------------------------------------------------------------------- /src/components/dialogs/commons/use-form-search-copy.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gridsuite/gridstudy-app/HEAD/src/components/dialogs/commons/use-form-search-copy.ts -------------------------------------------------------------------------------- /src/components/dialogs/commons/use-form-with-dirty-tracking.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gridsuite/gridstudy-app/HEAD/src/components/dialogs/commons/use-form-with-dirty-tracking.ts -------------------------------------------------------------------------------- /src/components/dialogs/commons/utils.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gridsuite/gridstudy-app/HEAD/src/components/dialogs/commons/utils.tsx -------------------------------------------------------------------------------- /src/components/dialogs/connectivity/branch-connectivity-form.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gridsuite/gridstudy-app/HEAD/src/components/dialogs/connectivity/branch-connectivity-form.tsx -------------------------------------------------------------------------------- /src/components/dialogs/connectivity/connectivity-form-utils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gridsuite/gridstudy-app/HEAD/src/components/dialogs/connectivity/connectivity-form-utils.ts -------------------------------------------------------------------------------- /src/components/dialogs/connectivity/connectivity-form.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gridsuite/gridstudy-app/HEAD/src/components/dialogs/connectivity/connectivity-form.tsx -------------------------------------------------------------------------------- /src/components/dialogs/connectivity/connectivity.type.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gridsuite/gridstudy-app/HEAD/src/components/dialogs/connectivity/connectivity.type.ts -------------------------------------------------------------------------------- /src/components/dialogs/contingency-list-selector.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gridsuite/gridstudy-app/HEAD/src/components/dialogs/contingency-list-selector.tsx -------------------------------------------------------------------------------- /src/components/dialogs/dialog-utils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gridsuite/gridstudy-app/HEAD/src/components/dialogs/dialog-utils.ts -------------------------------------------------------------------------------- /src/components/dialogs/dynamicsimulation/dynamic-simulation-parameters-selector.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gridsuite/gridstudy-app/HEAD/src/components/dialogs/dynamicsimulation/dynamic-simulation-parameters-selector.tsx -------------------------------------------------------------------------------- /src/components/dialogs/dynamicsimulation/event/dynamic-simulation-event-dialog.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gridsuite/gridstudy-app/HEAD/src/components/dialogs/dynamicsimulation/event/dynamic-simulation-event-dialog.tsx -------------------------------------------------------------------------------- /src/components/dialogs/dynamicsimulation/event/dynamic-simulation-event-form.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gridsuite/gridstudy-app/HEAD/src/components/dialogs/dynamicsimulation/event/dynamic-simulation-event-form.tsx -------------------------------------------------------------------------------- /src/components/dialogs/dynamicsimulation/event/model/event.model.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gridsuite/gridstudy-app/HEAD/src/components/dialogs/dynamicsimulation/event/model/event.model.ts -------------------------------------------------------------------------------- /src/components/dialogs/dynamicsimulation/event/types/event.type.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gridsuite/gridstudy-app/HEAD/src/components/dialogs/dynamicsimulation/event/types/event.type.ts -------------------------------------------------------------------------------- /src/components/dialogs/dynamicsimulation/event/util/event-rhf.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gridsuite/gridstudy-app/HEAD/src/components/dialogs/dynamicsimulation/event/util/event-rhf.tsx -------------------------------------------------------------------------------- /src/components/dialogs/dynamicsimulation/event/util/event-yup.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gridsuite/gridstudy-app/HEAD/src/components/dialogs/dynamicsimulation/event/util/event-yup.ts -------------------------------------------------------------------------------- /src/components/dialogs/equipment-id/equipment-id-selector.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gridsuite/gridstudy-app/HEAD/src/components/dialogs/equipment-id/equipment-id-selector.tsx -------------------------------------------------------------------------------- /src/components/dialogs/equipment-id/formFiller.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gridsuite/gridstudy-app/HEAD/src/components/dialogs/equipment-id/formFiller.tsx -------------------------------------------------------------------------------- /src/components/dialogs/equipment-search-dialog.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gridsuite/gridstudy-app/HEAD/src/components/dialogs/equipment-search-dialog.tsx -------------------------------------------------------------------------------- /src/components/dialogs/export-network-dialog.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gridsuite/gridstudy-app/HEAD/src/components/dialogs/export-network-dialog.tsx -------------------------------------------------------------------------------- /src/components/dialogs/filter/expert/expert-filter.type.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gridsuite/gridstudy-app/HEAD/src/components/dialogs/filter/expert/expert-filter.type.ts -------------------------------------------------------------------------------- /src/components/dialogs/illustrations/AccordionIllustration.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gridsuite/gridstudy-app/HEAD/src/components/dialogs/illustrations/AccordionIllustration.tsx -------------------------------------------------------------------------------- /src/components/dialogs/illustrations/generic-Illustration-network-modification.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gridsuite/gridstudy-app/HEAD/src/components/dialogs/illustrations/generic-Illustration-network-modification.tsx -------------------------------------------------------------------------------- /src/components/dialogs/import-case-dialog.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gridsuite/gridstudy-app/HEAD/src/components/dialogs/import-case-dialog.tsx -------------------------------------------------------------------------------- /src/components/dialogs/import-modification-dialog.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gridsuite/gridstudy-app/HEAD/src/components/dialogs/import-modification-dialog.tsx -------------------------------------------------------------------------------- /src/components/dialogs/limits/limits-constants.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gridsuite/gridstudy-app/HEAD/src/components/dialogs/limits/limits-constants.ts -------------------------------------------------------------------------------- /src/components/dialogs/limits/limits-groups-contextual-menu.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gridsuite/gridstudy-app/HEAD/src/components/dialogs/limits/limits-groups-contextual-menu.tsx -------------------------------------------------------------------------------- /src/components/dialogs/limits/limits-pane-utils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gridsuite/gridstudy-app/HEAD/src/components/dialogs/limits/limits-pane-utils.ts -------------------------------------------------------------------------------- /src/components/dialogs/limits/limits-pane.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gridsuite/gridstudy-app/HEAD/src/components/dialogs/limits/limits-pane.tsx -------------------------------------------------------------------------------- /src/components/dialogs/limits/limits-properties-side-stack.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gridsuite/gridstudy-app/HEAD/src/components/dialogs/limits/limits-properties-side-stack.tsx -------------------------------------------------------------------------------- /src/components/dialogs/limits/limits-properties-stack.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gridsuite/gridstudy-app/HEAD/src/components/dialogs/limits/limits-properties-stack.tsx -------------------------------------------------------------------------------- /src/components/dialogs/limits/limits-side-pane.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gridsuite/gridstudy-app/HEAD/src/components/dialogs/limits/limits-side-pane.tsx -------------------------------------------------------------------------------- /src/components/dialogs/limits/limits-tag-chip.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gridsuite/gridstudy-app/HEAD/src/components/dialogs/limits/limits-tag-chip.tsx -------------------------------------------------------------------------------- /src/components/dialogs/limits/limitsChart.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gridsuite/gridstudy-app/HEAD/src/components/dialogs/limits/limitsChart.tsx -------------------------------------------------------------------------------- /src/components/dialogs/limits/operational-limits-group-tab-label.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gridsuite/gridstudy-app/HEAD/src/components/dialogs/limits/operational-limits-group-tab-label.tsx -------------------------------------------------------------------------------- /src/components/dialogs/limits/operational-limits-groups-styles.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gridsuite/gridstudy-app/HEAD/src/components/dialogs/limits/operational-limits-groups-styles.ts -------------------------------------------------------------------------------- /src/components/dialogs/limits/operational-limits-groups-tabs.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gridsuite/gridstudy-app/HEAD/src/components/dialogs/limits/operational-limits-groups-tabs.tsx -------------------------------------------------------------------------------- /src/components/dialogs/limits/operational-limits-groups-types.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gridsuite/gridstudy-app/HEAD/src/components/dialogs/limits/operational-limits-groups-types.ts -------------------------------------------------------------------------------- /src/components/dialogs/limits/operational-limits-groups-utils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gridsuite/gridstudy-app/HEAD/src/components/dialogs/limits/operational-limits-groups-utils.ts -------------------------------------------------------------------------------- /src/components/dialogs/limits/selected-operational-limit-group.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gridsuite/gridstudy-app/HEAD/src/components/dialogs/limits/selected-operational-limit-group.tsx -------------------------------------------------------------------------------- /src/components/dialogs/limits/temporary-limits-table.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gridsuite/gridstudy-app/HEAD/src/components/dialogs/limits/temporary-limits-table.tsx -------------------------------------------------------------------------------- /src/components/dialogs/line-types-catalog/limit-custom-aggrid.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gridsuite/gridstudy-app/HEAD/src/components/dialogs/line-types-catalog/limit-custom-aggrid.tsx -------------------------------------------------------------------------------- /src/components/dialogs/line-types-catalog/line-catalog.type.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gridsuite/gridstudy-app/HEAD/src/components/dialogs/line-types-catalog/line-catalog.type.ts -------------------------------------------------------------------------------- /src/components/dialogs/line-types-catalog/line-type-segment-creation.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gridsuite/gridstudy-app/HEAD/src/components/dialogs/line-types-catalog/line-type-segment-creation.tsx -------------------------------------------------------------------------------- /src/components/dialogs/line-types-catalog/line-type-segment-dialog.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gridsuite/gridstudy-app/HEAD/src/components/dialogs/line-types-catalog/line-type-segment-dialog.tsx -------------------------------------------------------------------------------- /src/components/dialogs/line-types-catalog/line-type-segment-form.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gridsuite/gridstudy-app/HEAD/src/components/dialogs/line-types-catalog/line-type-segment-form.tsx -------------------------------------------------------------------------------- /src/components/dialogs/line-types-catalog/line-types-catalog-selector-dialog.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gridsuite/gridstudy-app/HEAD/src/components/dialogs/line-types-catalog/line-types-catalog-selector-dialog.tsx -------------------------------------------------------------------------------- /src/components/dialogs/line-types-catalog/line-types-catalog-selector-form.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gridsuite/gridstudy-app/HEAD/src/components/dialogs/line-types-catalog/line-types-catalog-selector-form.tsx -------------------------------------------------------------------------------- /src/components/dialogs/line-types-catalog/segment-utils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gridsuite/gridstudy-app/HEAD/src/components/dialogs/line-types-catalog/segment-utils.ts -------------------------------------------------------------------------------- /src/components/dialogs/line-types-catalog/use-column-definitions.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gridsuite/gridstudy-app/HEAD/src/components/dialogs/line-types-catalog/use-column-definitions.ts -------------------------------------------------------------------------------- /src/components/dialogs/line-types-catalog/use-row-data.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gridsuite/gridstudy-app/HEAD/src/components/dialogs/line-types-catalog/use-row-data.ts -------------------------------------------------------------------------------- /src/components/dialogs/network-modifications/balances-adjustment/balances-adjustment-table.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gridsuite/gridstudy-app/HEAD/src/components/dialogs/network-modifications/balances-adjustment/balances-adjustment-table.tsx -------------------------------------------------------------------------------- /src/components/dialogs/network-modifications/balances-adjustment/countries-autocomplete.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gridsuite/gridstudy-app/HEAD/src/components/dialogs/network-modifications/balances-adjustment/countries-autocomplete.tsx -------------------------------------------------------------------------------- /src/components/dialogs/network-modifications/balances-adjustment/styles.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gridsuite/gridstudy-app/HEAD/src/components/dialogs/network-modifications/balances-adjustment/styles.ts -------------------------------------------------------------------------------- /src/components/dialogs/network-modifications/battery/battery-dialog.type.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gridsuite/gridstudy-app/HEAD/src/components/dialogs/network-modifications/battery/battery-dialog.type.ts -------------------------------------------------------------------------------- /src/components/dialogs/network-modifications/battery/creation/battery-creation-dialog.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gridsuite/gridstudy-app/HEAD/src/components/dialogs/network-modifications/battery/creation/battery-creation-dialog.tsx -------------------------------------------------------------------------------- /src/components/dialogs/network-modifications/battery/creation/battery-creation-form.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gridsuite/gridstudy-app/HEAD/src/components/dialogs/network-modifications/battery/creation/battery-creation-form.tsx -------------------------------------------------------------------------------- /src/components/dialogs/network-modifications/by-filter/by-formula/by-formula-dialog.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gridsuite/gridstudy-app/HEAD/src/components/dialogs/network-modifications/by-filter/by-formula/by-formula-dialog.jsx -------------------------------------------------------------------------------- /src/components/dialogs/network-modifications/by-filter/by-formula/by-formula-form.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gridsuite/gridstudy-app/HEAD/src/components/dialogs/network-modifications/by-filter/by-formula/by-formula-form.tsx -------------------------------------------------------------------------------- /src/components/dialogs/network-modifications/by-filter/by-formula/formula/formula-form.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gridsuite/gridstudy-app/HEAD/src/components/dialogs/network-modifications/by-filter/by-formula/formula/formula-form.tsx -------------------------------------------------------------------------------- /src/components/dialogs/network-modifications/by-filter/by-formula/formula/formula-utils.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gridsuite/gridstudy-app/HEAD/src/components/dialogs/network-modifications/by-filter/by-formula/formula/formula-utils.tsx -------------------------------------------------------------------------------- /src/components/dialogs/network-modifications/by-filter/commons/by-filter.type.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gridsuite/gridstudy-app/HEAD/src/components/dialogs/network-modifications/by-filter/commons/by-filter.type.ts -------------------------------------------------------------------------------- /src/components/dialogs/network-modifications/common/measurements/measurement.type.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gridsuite/gridstudy-app/HEAD/src/components/dialogs/network-modifications/common/measurements/measurement.type.ts -------------------------------------------------------------------------------- /src/components/dialogs/network-modifications/common/measurements/power-measurements-form.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gridsuite/gridstudy-app/HEAD/src/components/dialogs/network-modifications/common/measurements/power-measurements-form.tsx -------------------------------------------------------------------------------- /src/components/dialogs/network-modifications/common/measurements/power-with-validity-form.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gridsuite/gridstudy-app/HEAD/src/components/dialogs/network-modifications/common/measurements/power-with-validity-form.tsx -------------------------------------------------------------------------------- /src/components/dialogs/network-modifications/common/measurements/power-with-validity-utils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gridsuite/gridstudy-app/HEAD/src/components/dialogs/network-modifications/common/measurements/power-with-validity-utils.ts -------------------------------------------------------------------------------- /src/components/dialogs/network-modifications/common/properties/properties-form.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gridsuite/gridstudy-app/HEAD/src/components/dialogs/network-modifications/common/properties/properties-form.tsx -------------------------------------------------------------------------------- /src/components/dialogs/network-modifications/common/properties/property-form.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gridsuite/gridstudy-app/HEAD/src/components/dialogs/network-modifications/common/properties/property-form.tsx -------------------------------------------------------------------------------- /src/components/dialogs/network-modifications/common/properties/property-utils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gridsuite/gridstudy-app/HEAD/src/components/dialogs/network-modifications/common/properties/property-utils.ts -------------------------------------------------------------------------------- /src/components/dialogs/network-modifications/coupling-device/coupling-device-dialog.type.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gridsuite/gridstudy-app/HEAD/src/components/dialogs/network-modifications/coupling-device/coupling-device-dialog.type.ts -------------------------------------------------------------------------------- /src/components/dialogs/network-modifications/equipment-deletion/equipment-deletion-dialog.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gridsuite/gridstudy-app/HEAD/src/components/dialogs/network-modifications/equipment-deletion/equipment-deletion-dialog.jsx -------------------------------------------------------------------------------- /src/components/dialogs/network-modifications/equipment-deletion/equipment-deletion-form.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gridsuite/gridstudy-app/HEAD/src/components/dialogs/network-modifications/equipment-deletion/equipment-deletion-form.jsx -------------------------------------------------------------------------------- /src/components/dialogs/network-modifications/generation-dispatch/frequency-reserve-pane.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gridsuite/gridstudy-app/HEAD/src/components/dialogs/network-modifications/generation-dispatch/frequency-reserve-pane.jsx -------------------------------------------------------------------------------- /src/components/dialogs/network-modifications/generation-dispatch/generation-dispatch-form.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gridsuite/gridstudy-app/HEAD/src/components/dialogs/network-modifications/generation-dispatch/generation-dispatch-form.jsx -------------------------------------------------------------------------------- /src/components/dialogs/network-modifications/generation-dispatch/substations-autocomplete.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gridsuite/gridstudy-app/HEAD/src/components/dialogs/network-modifications/generation-dispatch/substations-autocomplete.tsx -------------------------------------------------------------------------------- /src/components/dialogs/network-modifications/generator-scaling/generator-scaling-dialog.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gridsuite/gridstudy-app/HEAD/src/components/dialogs/network-modifications/generator-scaling/generator-scaling-dialog.jsx -------------------------------------------------------------------------------- /src/components/dialogs/network-modifications/generator-scaling/generator-scaling-form.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gridsuite/gridstudy-app/HEAD/src/components/dialogs/network-modifications/generator-scaling/generator-scaling-form.jsx -------------------------------------------------------------------------------- /src/components/dialogs/network-modifications/generator-scaling/variation/variation-form.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gridsuite/gridstudy-app/HEAD/src/components/dialogs/network-modifications/generator-scaling/variation/variation-form.jsx -------------------------------------------------------------------------------- /src/components/dialogs/network-modifications/generator-scaling/variation/variation-utils.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gridsuite/gridstudy-app/HEAD/src/components/dialogs/network-modifications/generator-scaling/variation/variation-utils.js -------------------------------------------------------------------------------- /src/components/dialogs/network-modifications/generator/creation/generator-creation-dialog.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gridsuite/gridstudy-app/HEAD/src/components/dialogs/network-modifications/generator/creation/generator-creation-dialog.tsx -------------------------------------------------------------------------------- /src/components/dialogs/network-modifications/generator/creation/generator-creation-form.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gridsuite/gridstudy-app/HEAD/src/components/dialogs/network-modifications/generator/creation/generator-creation-form.tsx -------------------------------------------------------------------------------- /src/components/dialogs/network-modifications/generator/generator-dialog.type.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gridsuite/gridstudy-app/HEAD/src/components/dialogs/network-modifications/generator/generator-dialog.type.ts -------------------------------------------------------------------------------- /src/components/dialogs/network-modifications/hvdc-line/lcc/common/lcc-converter-station.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gridsuite/gridstudy-app/HEAD/src/components/dialogs/network-modifications/hvdc-line/lcc/common/lcc-converter-station.tsx -------------------------------------------------------------------------------- /src/components/dialogs/network-modifications/hvdc-line/lcc/common/lcc-hvdc-line.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gridsuite/gridstudy-app/HEAD/src/components/dialogs/network-modifications/hvdc-line/lcc/common/lcc-hvdc-line.tsx -------------------------------------------------------------------------------- /src/components/dialogs/network-modifications/hvdc-line/lcc/common/lcc-tabs.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gridsuite/gridstudy-app/HEAD/src/components/dialogs/network-modifications/hvdc-line/lcc/common/lcc-tabs.tsx -------------------------------------------------------------------------------- /src/components/dialogs/network-modifications/hvdc-line/lcc/common/lcc-type.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gridsuite/gridstudy-app/HEAD/src/components/dialogs/network-modifications/hvdc-line/lcc/common/lcc-type.ts -------------------------------------------------------------------------------- /src/components/dialogs/network-modifications/hvdc-line/lcc/common/lcc-utils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gridsuite/gridstudy-app/HEAD/src/components/dialogs/network-modifications/hvdc-line/lcc/common/lcc-utils.ts -------------------------------------------------------------------------------- /src/components/dialogs/network-modifications/hvdc-line/lcc/creation/lcc-creation-dialog.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gridsuite/gridstudy-app/HEAD/src/components/dialogs/network-modifications/hvdc-line/lcc/creation/lcc-creation-dialog.tsx -------------------------------------------------------------------------------- /src/components/dialogs/network-modifications/hvdc-line/lcc/creation/lcc-creation-form.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gridsuite/gridstudy-app/HEAD/src/components/dialogs/network-modifications/hvdc-line/lcc/creation/lcc-creation-form.tsx -------------------------------------------------------------------------------- /src/components/dialogs/network-modifications/hvdc-line/vsc/creation/vsc-creation-dialog.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gridsuite/gridstudy-app/HEAD/src/components/dialogs/network-modifications/hvdc-line/vsc/creation/vsc-creation-dialog.jsx -------------------------------------------------------------------------------- /src/components/dialogs/network-modifications/hvdc-line/vsc/creation/vsc-creation-form.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gridsuite/gridstudy-app/HEAD/src/components/dialogs/network-modifications/hvdc-line/vsc/creation/vsc-creation-form.tsx -------------------------------------------------------------------------------- /src/components/dialogs/network-modifications/hvdc-line/vsc/vsc-tabs.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gridsuite/gridstudy-app/HEAD/src/components/dialogs/network-modifications/hvdc-line/vsc/vsc-tabs.tsx -------------------------------------------------------------------------------- /src/components/dialogs/network-modifications/hvdc-line/vsc/vsc-utils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gridsuite/gridstudy-app/HEAD/src/components/dialogs/network-modifications/hvdc-line/vsc/vsc-utils.ts -------------------------------------------------------------------------------- /src/components/dialogs/network-modifications/limit-sets/limit-sets-modification-dialog.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gridsuite/gridstudy-app/HEAD/src/components/dialogs/network-modifications/limit-sets/limit-sets-modification-dialog.tsx -------------------------------------------------------------------------------- /src/components/dialogs/network-modifications/line/creation/line-creation-dialog-utils.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gridsuite/gridstudy-app/HEAD/src/components/dialogs/network-modifications/line/creation/line-creation-dialog-utils.js -------------------------------------------------------------------------------- /src/components/dialogs/network-modifications/line/creation/line-creation-dialog.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gridsuite/gridstudy-app/HEAD/src/components/dialogs/network-modifications/line/creation/line-creation-dialog.jsx -------------------------------------------------------------------------------- /src/components/dialogs/network-modifications/line/line-dialog-tabs.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gridsuite/gridstudy-app/HEAD/src/components/dialogs/network-modifications/line/line-dialog-tabs.jsx -------------------------------------------------------------------------------- /src/components/dialogs/network-modifications/line/line-utils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gridsuite/gridstudy-app/HEAD/src/components/dialogs/network-modifications/line/line-utils.ts -------------------------------------------------------------------------------- /src/components/dialogs/network-modifications/line/modification/line-modification-dialog.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gridsuite/gridstudy-app/HEAD/src/components/dialogs/network-modifications/line/modification/line-modification-dialog.tsx -------------------------------------------------------------------------------- /src/components/dialogs/network-modifications/line/modification/line-modification-type.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gridsuite/gridstudy-app/HEAD/src/components/dialogs/network-modifications/line/modification/line-modification-type.ts -------------------------------------------------------------------------------- /src/components/dialogs/network-modifications/load-scaling/load-scaling-dialog.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gridsuite/gridstudy-app/HEAD/src/components/dialogs/network-modifications/load-scaling/load-scaling-dialog.jsx -------------------------------------------------------------------------------- /src/components/dialogs/network-modifications/load-scaling/load-scaling-form.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gridsuite/gridstudy-app/HEAD/src/components/dialogs/network-modifications/load-scaling/load-scaling-form.jsx -------------------------------------------------------------------------------- /src/components/dialogs/network-modifications/load-scaling/variation/variation-form.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gridsuite/gridstudy-app/HEAD/src/components/dialogs/network-modifications/load-scaling/variation/variation-form.jsx -------------------------------------------------------------------------------- /src/components/dialogs/network-modifications/load-scaling/variation/variation-utils.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gridsuite/gridstudy-app/HEAD/src/components/dialogs/network-modifications/load-scaling/variation/variation-utils.js -------------------------------------------------------------------------------- /src/components/dialogs/network-modifications/load/common/load-dialog-header.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gridsuite/gridstudy-app/HEAD/src/components/dialogs/network-modifications/load/common/load-dialog-header.tsx -------------------------------------------------------------------------------- /src/components/dialogs/network-modifications/load/common/load-dialog-tabs-content.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gridsuite/gridstudy-app/HEAD/src/components/dialogs/network-modifications/load/common/load-dialog-tabs-content.tsx -------------------------------------------------------------------------------- /src/components/dialogs/network-modifications/load/common/load-dialog-tabs.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gridsuite/gridstudy-app/HEAD/src/components/dialogs/network-modifications/load/common/load-dialog-tabs.tsx -------------------------------------------------------------------------------- /src/components/dialogs/network-modifications/load/common/load-utils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gridsuite/gridstudy-app/HEAD/src/components/dialogs/network-modifications/load/common/load-utils.ts -------------------------------------------------------------------------------- /src/components/dialogs/network-modifications/load/common/load.type.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gridsuite/gridstudy-app/HEAD/src/components/dialogs/network-modifications/load/common/load.type.ts -------------------------------------------------------------------------------- /src/components/dialogs/network-modifications/load/creation/load-creation-dialog.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gridsuite/gridstudy-app/HEAD/src/components/dialogs/network-modifications/load/creation/load-creation-dialog.tsx -------------------------------------------------------------------------------- /src/components/dialogs/network-modifications/load/creation/load-creation.type.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gridsuite/gridstudy-app/HEAD/src/components/dialogs/network-modifications/load/creation/load-creation.type.ts -------------------------------------------------------------------------------- /src/components/dialogs/network-modifications/load/modification/load-modification-dialog.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gridsuite/gridstudy-app/HEAD/src/components/dialogs/network-modifications/load/modification/load-modification-dialog.tsx -------------------------------------------------------------------------------- /src/components/dialogs/network-modifications/load/modification/load-modification.type.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gridsuite/gridstudy-app/HEAD/src/components/dialogs/network-modifications/load/modification/load-modification.type.ts -------------------------------------------------------------------------------- /src/components/dialogs/network-modifications/substation/creation/substation-creation-form.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gridsuite/gridstudy-app/HEAD/src/components/dialogs/network-modifications/substation/creation/substation-creation-form.jsx -------------------------------------------------------------------------------- /src/components/dialogs/network-modifications/tabular/properties/define-properties-dialog.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gridsuite/gridstudy-app/HEAD/src/components/dialogs/network-modifications/tabular/properties/define-properties-dialog.tsx -------------------------------------------------------------------------------- /src/components/dialogs/network-modifications/tabular/properties/properties-form.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gridsuite/gridstudy-app/HEAD/src/components/dialogs/network-modifications/tabular/properties/properties-form.tsx -------------------------------------------------------------------------------- /src/components/dialogs/network-modifications/tabular/properties/property-form.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gridsuite/gridstudy-app/HEAD/src/components/dialogs/network-modifications/tabular/properties/property-form.tsx -------------------------------------------------------------------------------- /src/components/dialogs/network-modifications/tabular/properties/property-utils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gridsuite/gridstudy-app/HEAD/src/components/dialogs/network-modifications/tabular/properties/property-utils.ts -------------------------------------------------------------------------------- /src/components/dialogs/network-modifications/tabular/tabular-common.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gridsuite/gridstudy-app/HEAD/src/components/dialogs/network-modifications/tabular/tabular-common.ts -------------------------------------------------------------------------------- /src/components/dialogs/network-modifications/tabular/tabular-creation-utils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gridsuite/gridstudy-app/HEAD/src/components/dialogs/network-modifications/tabular/tabular-creation-utils.ts -------------------------------------------------------------------------------- /src/components/dialogs/network-modifications/tabular/tabular-dialog.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gridsuite/gridstudy-app/HEAD/src/components/dialogs/network-modifications/tabular/tabular-dialog.tsx -------------------------------------------------------------------------------- /src/components/dialogs/network-modifications/tabular/tabular-form.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gridsuite/gridstudy-app/HEAD/src/components/dialogs/network-modifications/tabular/tabular-form.tsx -------------------------------------------------------------------------------- /src/components/dialogs/network-modifications/tabular/tabular-modification-utils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gridsuite/gridstudy-app/HEAD/src/components/dialogs/network-modifications/tabular/tabular-modification-utils.ts -------------------------------------------------------------------------------- /src/components/dialogs/network-modifications/tabular/use-filter-csv-generator.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gridsuite/gridstudy-app/HEAD/src/components/dialogs/network-modifications/tabular/use-filter-csv-generator.ts -------------------------------------------------------------------------------- /src/components/dialogs/network-modifications/voltage-level/voltage-level-creation-utils.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gridsuite/gridstudy-app/HEAD/src/components/dialogs/network-modifications/voltage-level/voltage-level-creation-utils.js -------------------------------------------------------------------------------- /src/components/dialogs/network-modifications/voltage-level/voltage-level.type.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gridsuite/gridstudy-app/HEAD/src/components/dialogs/network-modifications/voltage-level/voltage-level.type.ts -------------------------------------------------------------------------------- /src/components/dialogs/parameters/dynamic-security-analysis/contingency-parameters.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gridsuite/gridstudy-app/HEAD/src/components/dialogs/parameters/dynamic-security-analysis/contingency-parameters.tsx -------------------------------------------------------------------------------- /src/components/dialogs/parameters/dynamic-security-analysis/scenario-parameters.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gridsuite/gridstudy-app/HEAD/src/components/dialogs/parameters/dynamic-security-analysis/scenario-parameters.tsx -------------------------------------------------------------------------------- /src/components/dialogs/parameters/dynamicsimulation/curve-parameters.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gridsuite/gridstudy-app/HEAD/src/components/dialogs/parameters/dynamicsimulation/curve-parameters.tsx -------------------------------------------------------------------------------- /src/components/dialogs/parameters/dynamicsimulation/curve/common/checkbox-select.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gridsuite/gridstudy-app/HEAD/src/components/dialogs/parameters/dynamicsimulation/curve/common/checkbox-select.tsx -------------------------------------------------------------------------------- /src/components/dialogs/parameters/dynamicsimulation/curve/common/checkbox-treeview.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gridsuite/gridstudy-app/HEAD/src/components/dialogs/parameters/dynamicsimulation/curve/common/checkbox-treeview.tsx -------------------------------------------------------------------------------- /src/components/dialogs/parameters/dynamicsimulation/curve/dialog/curve-preview.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gridsuite/gridstudy-app/HEAD/src/components/dialogs/parameters/dynamicsimulation/curve/dialog/curve-preview.tsx -------------------------------------------------------------------------------- /src/components/dialogs/parameters/dynamicsimulation/curve/dialog/curve-selector-dialog.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gridsuite/gridstudy-app/HEAD/src/components/dialogs/parameters/dynamicsimulation/curve/dialog/curve-selector-dialog.tsx -------------------------------------------------------------------------------- /src/components/dialogs/parameters/dynamicsimulation/curve/dialog/curve-selector-utils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gridsuite/gridstudy-app/HEAD/src/components/dialogs/parameters/dynamicsimulation/curve/dialog/curve-selector-utils.ts -------------------------------------------------------------------------------- /src/components/dialogs/parameters/dynamicsimulation/curve/dialog/curve-selector.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gridsuite/gridstudy-app/HEAD/src/components/dialogs/parameters/dynamicsimulation/curve/dialog/curve-selector.tsx -------------------------------------------------------------------------------- /src/components/dialogs/parameters/dynamicsimulation/curve/dialog/equipment-filter.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gridsuite/gridstudy-app/HEAD/src/components/dialogs/parameters/dynamicsimulation/curve/dialog/equipment-filter.tsx -------------------------------------------------------------------------------- /src/components/dialogs/parameters/dynamicsimulation/curve/dialog/model-filter.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gridsuite/gridstudy-app/HEAD/src/components/dialogs/parameters/dynamicsimulation/curve/dialog/model-filter.tsx -------------------------------------------------------------------------------- /src/components/dialogs/parameters/dynamicsimulation/curve/grid-buttons.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gridsuite/gridstudy-app/HEAD/src/components/dialogs/parameters/dynamicsimulation/curve/grid-buttons.tsx -------------------------------------------------------------------------------- /src/components/dialogs/parameters/dynamicsimulation/dynamic-simulation-parameters.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gridsuite/gridstudy-app/HEAD/src/components/dialogs/parameters/dynamicsimulation/dynamic-simulation-parameters.tsx -------------------------------------------------------------------------------- /src/components/dialogs/parameters/dynamicsimulation/dynamic-simulation-utils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gridsuite/gridstudy-app/HEAD/src/components/dialogs/parameters/dynamicsimulation/dynamic-simulation-utils.ts -------------------------------------------------------------------------------- /src/components/dialogs/parameters/dynamicsimulation/dynamic-simulation.type.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gridsuite/gridstudy-app/HEAD/src/components/dialogs/parameters/dynamicsimulation/dynamic-simulation.type.ts -------------------------------------------------------------------------------- /src/components/dialogs/parameters/dynamicsimulation/global-filter.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gridsuite/gridstudy-app/HEAD/src/components/dialogs/parameters/dynamicsimulation/global-filter.tsx -------------------------------------------------------------------------------- /src/components/dialogs/parameters/dynamicsimulation/mapping-parameters.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gridsuite/gridstudy-app/HEAD/src/components/dialogs/parameters/dynamicsimulation/mapping-parameters.tsx -------------------------------------------------------------------------------- /src/components/dialogs/parameters/dynamicsimulation/network-parameters.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gridsuite/gridstudy-app/HEAD/src/components/dialogs/parameters/dynamicsimulation/network-parameters.tsx -------------------------------------------------------------------------------- /src/components/dialogs/parameters/dynamicsimulation/solver-parameters.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gridsuite/gridstudy-app/HEAD/src/components/dialogs/parameters/dynamicsimulation/solver-parameters.tsx -------------------------------------------------------------------------------- /src/components/dialogs/parameters/dynamicsimulation/solver/common-solver-parameters.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gridsuite/gridstudy-app/HEAD/src/components/dialogs/parameters/dynamicsimulation/solver/common-solver-parameters.ts -------------------------------------------------------------------------------- /src/components/dialogs/parameters/dynamicsimulation/solver/ida-solver-parameters.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gridsuite/gridstudy-app/HEAD/src/components/dialogs/parameters/dynamicsimulation/solver/ida-solver-parameters.tsx -------------------------------------------------------------------------------- /src/components/dialogs/parameters/dynamicsimulation/solver/simplified-solver-parameters.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gridsuite/gridstudy-app/HEAD/src/components/dialogs/parameters/dynamicsimulation/solver/simplified-solver-parameters.tsx -------------------------------------------------------------------------------- /src/components/dialogs/parameters/dynamicsimulation/time-delay-parameters.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gridsuite/gridstudy-app/HEAD/src/components/dialogs/parameters/dynamicsimulation/time-delay-parameters.tsx -------------------------------------------------------------------------------- /src/components/dialogs/parameters/parameters.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gridsuite/gridstudy-app/HEAD/src/components/dialogs/parameters/parameters.tsx -------------------------------------------------------------------------------- /src/components/dialogs/parameters/state-estimation/state-estimation-general-parameters.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gridsuite/gridstudy-app/HEAD/src/components/dialogs/parameters/state-estimation/state-estimation-general-parameters.tsx -------------------------------------------------------------------------------- /src/components/dialogs/parameters/state-estimation/state-estimation-parameters-utils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gridsuite/gridstudy-app/HEAD/src/components/dialogs/parameters/state-estimation/state-estimation-parameters-utils.ts -------------------------------------------------------------------------------- /src/components/dialogs/parameters/state-estimation/state-estimation-parameters.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gridsuite/gridstudy-app/HEAD/src/components/dialogs/parameters/state-estimation/state-estimation-parameters.tsx -------------------------------------------------------------------------------- /src/components/dialogs/parameters/state-estimation/state-estimation-quality-parameters.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gridsuite/gridstudy-app/HEAD/src/components/dialogs/parameters/state-estimation/state-estimation-quality-parameters.tsx -------------------------------------------------------------------------------- /src/components/dialogs/parameters/state-estimation/state-estimation-weights-parameters.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gridsuite/gridstudy-app/HEAD/src/components/dialogs/parameters/state-estimation/state-estimation-weights-parameters.tsx -------------------------------------------------------------------------------- /src/components/dialogs/parameters/state-estimation/use-get-state-estimation-parameters.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gridsuite/gridstudy-app/HEAD/src/components/dialogs/parameters/state-estimation/use-get-state-estimation-parameters.ts -------------------------------------------------------------------------------- /src/components/dialogs/parameters/use-get-pcc-min-parameters.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gridsuite/gridstudy-app/HEAD/src/components/dialogs/parameters/use-get-pcc-min-parameters.ts -------------------------------------------------------------------------------- /src/components/dialogs/parameters/use-get-short-circuit-parameters.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gridsuite/gridstudy-app/HEAD/src/components/dialogs/parameters/use-get-short-circuit-parameters.ts -------------------------------------------------------------------------------- /src/components/dialogs/parameters/use-get-voltage-init-parameters.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gridsuite/gridstudy-app/HEAD/src/components/dialogs/parameters/use-get-voltage-init-parameters.ts -------------------------------------------------------------------------------- /src/components/dialogs/parameters/use-parameters-notification.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gridsuite/gridstudy-app/HEAD/src/components/dialogs/parameters/use-parameters-notification.ts -------------------------------------------------------------------------------- /src/components/dialogs/parameters/use-parameters-state.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gridsuite/gridstudy-app/HEAD/src/components/dialogs/parameters/use-parameters-state.ts -------------------------------------------------------------------------------- /src/components/dialogs/parameters/util/make-component-utils.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gridsuite/gridstudy-app/HEAD/src/components/dialogs/parameters/util/make-component-utils.tsx -------------------------------------------------------------------------------- /src/components/dialogs/parameters/util/styles.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gridsuite/gridstudy-app/HEAD/src/components/dialogs/parameters/util/styles.ts -------------------------------------------------------------------------------- /src/components/dialogs/percentage-area/percentage-area-utils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gridsuite/gridstudy-app/HEAD/src/components/dialogs/percentage-area/percentage-area-utils.ts -------------------------------------------------------------------------------- /src/components/dialogs/percentage-area/percentage-area.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gridsuite/gridstudy-app/HEAD/src/components/dialogs/percentage-area/percentage-area.tsx -------------------------------------------------------------------------------- /src/components/dialogs/reactive-limits/reactive-limits-form.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gridsuite/gridstudy-app/HEAD/src/components/dialogs/reactive-limits/reactive-limits-form.tsx -------------------------------------------------------------------------------- /src/components/dialogs/reactive-limits/reactive-limits-utils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gridsuite/gridstudy-app/HEAD/src/components/dialogs/reactive-limits/reactive-limits-utils.ts -------------------------------------------------------------------------------- /src/components/dialogs/reactive-limits/reactive-limits.type.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gridsuite/gridstudy-app/HEAD/src/components/dialogs/reactive-limits/reactive-limits.type.ts -------------------------------------------------------------------------------- /src/components/dialogs/regulating-terminal/regulating-terminal-form-utils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gridsuite/gridstudy-app/HEAD/src/components/dialogs/regulating-terminal/regulating-terminal-form-utils.ts -------------------------------------------------------------------------------- /src/components/dialogs/regulating-terminal/regulating-terminal-form.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gridsuite/gridstudy-app/HEAD/src/components/dialogs/regulating-terminal/regulating-terminal-form.tsx -------------------------------------------------------------------------------- /src/components/dialogs/restore-modification-dialog.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gridsuite/gridstudy-app/HEAD/src/components/dialogs/restore-modification-dialog.tsx -------------------------------------------------------------------------------- /src/components/dialogs/restore-node-dialog.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gridsuite/gridstudy-app/HEAD/src/components/dialogs/restore-node-dialog.tsx -------------------------------------------------------------------------------- /src/components/dialogs/root-network/advanced-parameters-button.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gridsuite/gridstudy-app/HEAD/src/components/dialogs/root-network/advanced-parameters-button.tsx -------------------------------------------------------------------------------- /src/components/dialogs/root-network/ignored-params.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gridsuite/gridstudy-app/HEAD/src/components/dialogs/root-network/ignored-params.ts -------------------------------------------------------------------------------- /src/components/dialogs/root-network/import-parameters-section.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gridsuite/gridstudy-app/HEAD/src/components/dialogs/root-network/import-parameters-section.tsx -------------------------------------------------------------------------------- /src/components/dialogs/root-network/root-network-case-selection.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gridsuite/gridstudy-app/HEAD/src/components/dialogs/root-network/root-network-case-selection.tsx -------------------------------------------------------------------------------- /src/components/dialogs/root-network/root-network-dialog.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gridsuite/gridstudy-app/HEAD/src/components/dialogs/root-network/root-network-dialog.tsx -------------------------------------------------------------------------------- /src/components/dialogs/set-points/set-points-form.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gridsuite/gridstudy-app/HEAD/src/components/dialogs/set-points/set-points-form.tsx -------------------------------------------------------------------------------- /src/components/dialogs/set-points/set-points-utils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gridsuite/gridstudy-app/HEAD/src/components/dialogs/set-points/set-points-utils.ts -------------------------------------------------------------------------------- /src/components/dialogs/short-circuit/short-circuit-form.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gridsuite/gridstudy-app/HEAD/src/components/dialogs/short-circuit/short-circuit-form.tsx -------------------------------------------------------------------------------- /src/components/dialogs/short-circuit/short-circuit-utils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gridsuite/gridstudy-app/HEAD/src/components/dialogs/short-circuit/short-circuit-utils.ts -------------------------------------------------------------------------------- /src/components/dialogs/short-circuit/short-circuit.type.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gridsuite/gridstudy-app/HEAD/src/components/dialogs/short-circuit/short-circuit.type.ts -------------------------------------------------------------------------------- /src/components/dialogs/voltage-regulation/voltage-regulation-form.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gridsuite/gridstudy-app/HEAD/src/components/dialogs/voltage-regulation/voltage-regulation-form.tsx -------------------------------------------------------------------------------- /src/components/dialogs/voltage-regulation/voltage-regulation-utils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gridsuite/gridstudy-app/HEAD/src/components/dialogs/voltage-regulation/voltage-regulation-utils.ts -------------------------------------------------------------------------------- /src/components/graph/layout-utils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gridsuite/gridstudy-app/HEAD/src/components/graph/layout-utils.ts -------------------------------------------------------------------------------- /src/components/graph/layout.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gridsuite/gridstudy-app/HEAD/src/components/graph/layout.test.ts -------------------------------------------------------------------------------- /src/components/graph/layout.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gridsuite/gridstudy-app/HEAD/src/components/graph/layout.ts -------------------------------------------------------------------------------- /src/components/graph/layout.type.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gridsuite/gridstudy-app/HEAD/src/components/graph/layout.type.ts -------------------------------------------------------------------------------- /src/components/graph/menus/create-child-menu-item.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gridsuite/gridstudy-app/HEAD/src/components/graph/menus/create-child-menu-item.tsx -------------------------------------------------------------------------------- /src/components/graph/menus/create-node-menu.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gridsuite/gridstudy-app/HEAD/src/components/graph/menus/create-node-menu.tsx -------------------------------------------------------------------------------- /src/components/graph/menus/dynamic-simulation/event-modification-scenario-editor.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gridsuite/gridstudy-app/HEAD/src/components/graph/menus/dynamic-simulation/event-modification-scenario-editor.tsx -------------------------------------------------------------------------------- /src/components/graph/menus/dynamic-simulation/scenario-editor.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gridsuite/gridstudy-app/HEAD/src/components/graph/menus/dynamic-simulation/scenario-editor.tsx -------------------------------------------------------------------------------- /src/components/graph/menus/network-modifications/editable-title.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gridsuite/gridstudy-app/HEAD/src/components/graph/menus/network-modifications/editable-title.tsx -------------------------------------------------------------------------------- /src/components/graph/menus/network-modifications/network-modification-menu.type.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gridsuite/gridstudy-app/HEAD/src/components/graph/menus/network-modifications/network-modification-menu.type.ts -------------------------------------------------------------------------------- /src/components/graph/menus/network-modifications/network-modification-node-dialog.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gridsuite/gridstudy-app/HEAD/src/components/graph/menus/network-modifications/network-modification-node-dialog.tsx -------------------------------------------------------------------------------- /src/components/graph/menus/network-modifications/network-modification-node-editor-utils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gridsuite/gridstudy-app/HEAD/src/components/graph/menus/network-modifications/network-modification-node-editor-utils.ts -------------------------------------------------------------------------------- /src/components/graph/menus/network-modifications/network-modification-node-editor.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gridsuite/gridstudy-app/HEAD/src/components/graph/menus/network-modifications/network-modification-node-editor.tsx -------------------------------------------------------------------------------- /src/components/graph/menus/network-modifications/network-modifications-menu.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gridsuite/gridstudy-app/HEAD/src/components/graph/menus/network-modifications/network-modifications-menu.tsx -------------------------------------------------------------------------------- /src/components/graph/menus/network-modifications/network-modifications-table.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gridsuite/gridstudy-app/HEAD/src/components/graph/menus/network-modifications/network-modifications-table.tsx -------------------------------------------------------------------------------- /src/components/graph/menus/network-modifications/node-editor-header.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gridsuite/gridstudy-app/HEAD/src/components/graph/menus/network-modifications/node-editor-header.tsx -------------------------------------------------------------------------------- /src/components/graph/menus/network-modifications/node-editor.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gridsuite/gridstudy-app/HEAD/src/components/graph/menus/network-modifications/node-editor.tsx -------------------------------------------------------------------------------- /src/components/graph/menus/network-modifications/root-network-chip-cell-renderer.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gridsuite/gridstudy-app/HEAD/src/components/graph/menus/network-modifications/root-network-chip-cell-renderer.tsx -------------------------------------------------------------------------------- /src/components/graph/menus/network-modifications/root-network-selection.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gridsuite/gridstudy-app/HEAD/src/components/graph/menus/network-modifications/root-network-selection.tsx -------------------------------------------------------------------------------- /src/components/graph/menus/network-modifications/switch-cell-renderer.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gridsuite/gridstudy-app/HEAD/src/components/graph/menus/network-modifications/switch-cell-renderer.tsx -------------------------------------------------------------------------------- /src/components/graph/menus/node-name-edit-dialog.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gridsuite/gridstudy-app/HEAD/src/components/graph/menus/node-name-edit-dialog.tsx -------------------------------------------------------------------------------- /src/components/graph/menus/root-network/root-network-minimized-panel-content.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gridsuite/gridstudy-app/HEAD/src/components/graph/menus/root-network/root-network-minimized-panel-content.tsx -------------------------------------------------------------------------------- /src/components/graph/menus/root-network/root-network-modification-results.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gridsuite/gridstudy-app/HEAD/src/components/graph/menus/root-network/root-network-modification-results.tsx -------------------------------------------------------------------------------- /src/components/graph/menus/root-network/root-network-modifications-search-results.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gridsuite/gridstudy-app/HEAD/src/components/graph/menus/root-network/root-network-modifications-search-results.tsx -------------------------------------------------------------------------------- /src/components/graph/menus/root-network/root-network-node-editor.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gridsuite/gridstudy-app/HEAD/src/components/graph/menus/root-network/root-network-node-editor.tsx -------------------------------------------------------------------------------- /src/components/graph/menus/root-network/root-network-nodes-search-results.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gridsuite/gridstudy-app/HEAD/src/components/graph/menus/root-network/root-network-nodes-search-results.tsx -------------------------------------------------------------------------------- /src/components/graph/menus/root-network/root-network-panel-header.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gridsuite/gridstudy-app/HEAD/src/components/graph/menus/root-network/root-network-panel-header.tsx -------------------------------------------------------------------------------- /src/components/graph/menus/root-network/root-network-panel-search.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gridsuite/gridstudy-app/HEAD/src/components/graph/menus/root-network/root-network-panel-search.tsx -------------------------------------------------------------------------------- /src/components/graph/menus/root-network/root-network-panel.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gridsuite/gridstudy-app/HEAD/src/components/graph/menus/root-network/root-network-panel.tsx -------------------------------------------------------------------------------- /src/components/graph/menus/root-network/root-network-search-bar.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gridsuite/gridstudy-app/HEAD/src/components/graph/menus/root-network/root-network-search-bar.tsx -------------------------------------------------------------------------------- /src/components/graph/menus/root-network/root-network.types.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gridsuite/gridstudy-app/HEAD/src/components/graph/menus/root-network/root-network.types.ts -------------------------------------------------------------------------------- /src/components/graph/menus/root-network/use-root-network-modification-search.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gridsuite/gridstudy-app/HEAD/src/components/graph/menus/root-network/use-root-network-modification-search.ts -------------------------------------------------------------------------------- /src/components/graph/menus/root-network/use-root-network-node-search.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gridsuite/gridstudy-app/HEAD/src/components/graph/menus/root-network/use-root-network-node-search.ts -------------------------------------------------------------------------------- /src/components/graph/menus/root-network/use-root-network-notifications.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gridsuite/gridstudy-app/HEAD/src/components/graph/menus/root-network/use-root-network-notifications.ts -------------------------------------------------------------------------------- /src/components/graph/menus/root-network/use-root-network-search-notifications.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gridsuite/gridstudy-app/HEAD/src/components/graph/menus/root-network/use-root-network-search-notifications.ts -------------------------------------------------------------------------------- /src/components/graph/menus/unique-check-name-input.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gridsuite/gridstudy-app/HEAD/src/components/graph/menus/unique-check-name-input.tsx -------------------------------------------------------------------------------- /src/components/graph/network-modification-tree-model.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gridsuite/gridstudy-app/HEAD/src/components/graph/network-modification-tree-model.ts -------------------------------------------------------------------------------- /src/components/graph/nodes/build-button.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gridsuite/gridstudy-app/HEAD/src/components/graph/nodes/build-button.tsx -------------------------------------------------------------------------------- /src/components/graph/nodes/build-status-chip.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gridsuite/gridstudy-app/HEAD/src/components/graph/nodes/build-status-chip.tsx -------------------------------------------------------------------------------- /src/components/graph/nodes/constants.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gridsuite/gridstudy-app/HEAD/src/components/graph/nodes/constants.ts -------------------------------------------------------------------------------- /src/components/graph/nodes/labeled-group-node.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gridsuite/gridstudy-app/HEAD/src/components/graph/nodes/labeled-group-node.tsx -------------------------------------------------------------------------------- /src/components/graph/nodes/labeled-group-node.type.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gridsuite/gridstudy-app/HEAD/src/components/graph/nodes/labeled-group-node.type.ts -------------------------------------------------------------------------------- /src/components/graph/nodes/network-modification-node.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gridsuite/gridstudy-app/HEAD/src/components/graph/nodes/network-modification-node.tsx -------------------------------------------------------------------------------- /src/components/graph/nodes/node-handle.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gridsuite/gridstudy-app/HEAD/src/components/graph/nodes/node-handle.tsx -------------------------------------------------------------------------------- /src/components/graph/nodes/node-overlay-spinner.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gridsuite/gridstudy-app/HEAD/src/components/graph/nodes/node-overlay-spinner.tsx -------------------------------------------------------------------------------- /src/components/graph/nodes/root-node.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gridsuite/gridstudy-app/HEAD/src/components/graph/nodes/root-node.tsx -------------------------------------------------------------------------------- /src/components/graph/nodes/styles.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gridsuite/gridstudy-app/HEAD/src/components/graph/nodes/styles.ts -------------------------------------------------------------------------------- /src/components/graph/tree-node.type.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gridsuite/gridstudy-app/HEAD/src/components/graph/tree-node.type.ts -------------------------------------------------------------------------------- /src/components/graph/util/case-import-parameters.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gridsuite/gridstudy-app/HEAD/src/components/graph/util/case-import-parameters.ts -------------------------------------------------------------------------------- /src/components/graph/util/model-constants.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gridsuite/gridstudy-app/HEAD/src/components/graph/util/model-constants.ts -------------------------------------------------------------------------------- /src/components/graph/util/model-functions.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gridsuite/gridstudy-app/HEAD/src/components/graph/util/model-functions.ts -------------------------------------------------------------------------------- /src/components/graph/util/tree-control-button.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gridsuite/gridstudy-app/HEAD/src/components/graph/util/tree-control-button.tsx -------------------------------------------------------------------------------- /src/components/grid-layout/cards/card-styles.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gridsuite/gridstudy-app/HEAD/src/components/grid-layout/cards/card-styles.ts -------------------------------------------------------------------------------- /src/components/grid-layout/cards/diagrams/diagram-styles.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gridsuite/gridstudy-app/HEAD/src/components/grid-layout/cards/diagrams/diagram-styles.ts -------------------------------------------------------------------------------- /src/components/grid-layout/cards/diagrams/diagram-utils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gridsuite/gridstudy-app/HEAD/src/components/grid-layout/cards/diagrams/diagram-utils.ts -------------------------------------------------------------------------------- /src/components/grid-layout/cards/diagrams/diagram.type.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gridsuite/gridstudy-app/HEAD/src/components/grid-layout/cards/diagrams/diagram.type.ts -------------------------------------------------------------------------------- /src/components/grid-layout/cards/diagrams/networkAreaDiagram/diagram-controls.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gridsuite/gridstudy-app/HEAD/src/components/grid-layout/cards/diagrams/networkAreaDiagram/diagram-controls.tsx -------------------------------------------------------------------------------- /src/components/grid-layout/cards/diagrams/networkAreaDiagram/node-context-menu.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gridsuite/gridstudy-app/HEAD/src/components/grid-layout/cards/diagrams/networkAreaDiagram/node-context-menu.tsx -------------------------------------------------------------------------------- /src/components/grid-layout/cards/diagrams/networkAreaDiagram/voltage-level-search-menu.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gridsuite/gridstudy-app/HEAD/src/components/grid-layout/cards/diagrams/networkAreaDiagram/voltage-level-search-menu.tsx -------------------------------------------------------------------------------- /src/components/grid-layout/cards/diagrams/singleLineDiagram/single-line-diagram-content.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gridsuite/gridstudy-app/HEAD/src/components/grid-layout/cards/diagrams/singleLineDiagram/single-line-diagram-content.tsx -------------------------------------------------------------------------------- /src/components/menus/base-equipment-menu.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gridsuite/gridstudy-app/HEAD/src/components/menus/base-equipment-menu.tsx -------------------------------------------------------------------------------- /src/components/menus/bus-menu.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gridsuite/gridstudy-app/HEAD/src/components/menus/bus-menu.tsx -------------------------------------------------------------------------------- /src/components/menus/dynamic-simulation/dynamic-simulation-event-menu-item.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gridsuite/gridstudy-app/HEAD/src/components/menus/dynamic-simulation/dynamic-simulation-event-menu-item.tsx -------------------------------------------------------------------------------- /src/components/menus/equipment-menu.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gridsuite/gridstudy-app/HEAD/src/components/menus/equipment-menu.tsx -------------------------------------------------------------------------------- /src/components/menus/operating-status-menu.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gridsuite/gridstudy-app/HEAD/src/components/menus/operating-status-menu.tsx -------------------------------------------------------------------------------- /src/components/network-modification-tree-pane-panels-handlers.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gridsuite/gridstudy-app/HEAD/src/components/network-modification-tree-pane-panels-handlers.tsx -------------------------------------------------------------------------------- /src/components/network-modification-tree-pane.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gridsuite/gridstudy-app/HEAD/src/components/network-modification-tree-pane.jsx -------------------------------------------------------------------------------- /src/components/network-modification-tree.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gridsuite/gridstudy-app/HEAD/src/components/network-modification-tree.jsx -------------------------------------------------------------------------------- /src/components/network-modification.type.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gridsuite/gridstudy-app/HEAD/src/components/network-modification.type.ts -------------------------------------------------------------------------------- /src/components/network/constants.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gridsuite/gridstudy-app/HEAD/src/components/network/constants.ts -------------------------------------------------------------------------------- /src/components/network/gs-map-equipments.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gridsuite/gridstudy-app/HEAD/src/components/network/gs-map-equipments.ts -------------------------------------------------------------------------------- /src/components/network/guidance-popup.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gridsuite/gridstudy-app/HEAD/src/components/network/guidance-popup.tsx -------------------------------------------------------------------------------- /src/components/network/network-map-panel.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gridsuite/gridstudy-app/HEAD/src/components/network/network-map-panel.tsx -------------------------------------------------------------------------------- /src/components/network/network-map/use-mapbox-token.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gridsuite/gridstudy-app/HEAD/src/components/network/network-map/use-mapbox-token.tsx -------------------------------------------------------------------------------- /src/components/network/nominal-voltage-filter.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gridsuite/gridstudy-app/HEAD/src/components/network/nominal-voltage-filter.tsx -------------------------------------------------------------------------------- /src/components/network/selection-creation-panel/selection-creation-panel-form.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gridsuite/gridstudy-app/HEAD/src/components/network/selection-creation-panel/selection-creation-panel-form.tsx -------------------------------------------------------------------------------- /src/components/network/selection-creation-panel/selection-creation-panel-submit-button.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gridsuite/gridstudy-app/HEAD/src/components/network/selection-creation-panel/selection-creation-panel-submit-button.tsx -------------------------------------------------------------------------------- /src/components/network/selection-creation-panel/selection-creation-panel.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gridsuite/gridstudy-app/HEAD/src/components/network/selection-creation-panel/selection-creation-panel.tsx -------------------------------------------------------------------------------- /src/components/network/selection-creation-panel/selection-creation-schema.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gridsuite/gridstudy-app/HEAD/src/components/network/selection-creation-panel/selection-creation-schema.tsx -------------------------------------------------------------------------------- /src/components/network/selection-creation-panel/selection-types.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gridsuite/gridstudy-app/HEAD/src/components/network/selection-creation-panel/selection-types.ts -------------------------------------------------------------------------------- /src/components/network/selection-creation-panel/use-save-map.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gridsuite/gridstudy-app/HEAD/src/components/network/selection-creation-panel/use-save-map.ts -------------------------------------------------------------------------------- /src/components/network/utils/nominal-voltage-filter-utils.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gridsuite/gridstudy-app/HEAD/src/components/network/utils/nominal-voltage-filter-utils.tsx -------------------------------------------------------------------------------- /src/components/page-not-found.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gridsuite/gridstudy-app/HEAD/src/components/page-not-found.jsx -------------------------------------------------------------------------------- /src/components/parameters-tabs.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gridsuite/gridstudy-app/HEAD/src/components/parameters-tabs.tsx -------------------------------------------------------------------------------- /src/components/report-viewer-tab.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gridsuite/gridstudy-app/HEAD/src/components/report-viewer-tab.jsx -------------------------------------------------------------------------------- /src/components/report-viewer/QuickSearch.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gridsuite/gridstudy-app/HEAD/src/components/report-viewer/QuickSearch.tsx -------------------------------------------------------------------------------- /src/components/report-viewer/log-table.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gridsuite/gridstudy-app/HEAD/src/components/report-viewer/log-table.tsx -------------------------------------------------------------------------------- /src/components/report-viewer/report-viewer.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gridsuite/gridstudy-app/HEAD/src/components/report-viewer/report-viewer.tsx -------------------------------------------------------------------------------- /src/components/report-viewer/report.styles.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gridsuite/gridstudy-app/HEAD/src/components/report-viewer/report.styles.ts -------------------------------------------------------------------------------- /src/components/report-viewer/treeview-item.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gridsuite/gridstudy-app/HEAD/src/components/report-viewer/treeview-item.tsx -------------------------------------------------------------------------------- /src/components/report-viewer/use-logs-pagination.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gridsuite/gridstudy-app/HEAD/src/components/report-viewer/use-logs-pagination.ts -------------------------------------------------------------------------------- /src/components/report-viewer/use-treeview-scroll.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gridsuite/gridstudy-app/HEAD/src/components/report-viewer/use-treeview-scroll.ts -------------------------------------------------------------------------------- /src/components/report-viewer/virtualized-treeview.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gridsuite/gridstudy-app/HEAD/src/components/report-viewer/virtualized-treeview.tsx -------------------------------------------------------------------------------- /src/components/result-view-tab.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gridsuite/gridstudy-app/HEAD/src/components/result-view-tab.tsx -------------------------------------------------------------------------------- /src/components/result-view-tab.type.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gridsuite/gridstudy-app/HEAD/src/components/result-view-tab.type.ts -------------------------------------------------------------------------------- /src/components/results/common/Overlay.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gridsuite/gridstudy-app/HEAD/src/components/results/common/Overlay.tsx -------------------------------------------------------------------------------- /src/components/results/common/computation-report-viewer.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gridsuite/gridstudy-app/HEAD/src/components/results/common/computation-report-viewer.tsx -------------------------------------------------------------------------------- /src/components/results/common/glass-pane.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gridsuite/gridstudy-app/HEAD/src/components/results/common/glass-pane.tsx -------------------------------------------------------------------------------- /src/components/results/common/global-filter/global-filter-autocomplete.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gridsuite/gridstudy-app/HEAD/src/components/results/common/global-filter/global-filter-autocomplete.tsx -------------------------------------------------------------------------------- /src/components/results/common/global-filter/global-filter-context.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gridsuite/gridstudy-app/HEAD/src/components/results/common/global-filter/global-filter-context.ts -------------------------------------------------------------------------------- /src/components/results/common/global-filter/global-filter-paper.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gridsuite/gridstudy-app/HEAD/src/components/results/common/global-filter/global-filter-paper.tsx -------------------------------------------------------------------------------- /src/components/results/common/global-filter/global-filter-provider.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gridsuite/gridstudy-app/HEAD/src/components/results/common/global-filter/global-filter-provider.tsx -------------------------------------------------------------------------------- /src/components/results/common/global-filter/global-filter-selector.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gridsuite/gridstudy-app/HEAD/src/components/results/common/global-filter/global-filter-selector.tsx -------------------------------------------------------------------------------- /src/components/results/common/global-filter/global-filter-styles.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gridsuite/gridstudy-app/HEAD/src/components/results/common/global-filter/global-filter-styles.ts -------------------------------------------------------------------------------- /src/components/results/common/global-filter/global-filter-types.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gridsuite/gridstudy-app/HEAD/src/components/results/common/global-filter/global-filter-types.ts -------------------------------------------------------------------------------- /src/components/results/common/global-filter/global-filter-utils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gridsuite/gridstudy-app/HEAD/src/components/results/common/global-filter/global-filter-utils.ts -------------------------------------------------------------------------------- /src/components/results/common/global-filter/use-global-filter-options.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gridsuite/gridstudy-app/HEAD/src/components/results/common/global-filter/use-global-filter-options.ts -------------------------------------------------------------------------------- /src/components/results/common/global-filter/use-global-filter-results.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gridsuite/gridstudy-app/HEAD/src/components/results/common/global-filter/use-global-filter-results.ts -------------------------------------------------------------------------------- /src/components/results/common/global-filter/use-global-filters.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gridsuite/gridstudy-app/HEAD/src/components/results/common/global-filter/use-global-filters.ts -------------------------------------------------------------------------------- /src/components/results/common/result-cell-renderers.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gridsuite/gridstudy-app/HEAD/src/components/results/common/result-cell-renderers.tsx -------------------------------------------------------------------------------- /src/components/results/common/tab-panel-lazy.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gridsuite/gridstudy-app/HEAD/src/components/results/common/tab-panel-lazy.tsx -------------------------------------------------------------------------------- /src/components/results/common/utils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gridsuite/gridstudy-app/HEAD/src/components/results/common/utils.ts -------------------------------------------------------------------------------- /src/components/results/dynamic-security-analysis/dynamic-security-analysis-result-logs.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gridsuite/gridstudy-app/HEAD/src/components/results/dynamic-security-analysis/dynamic-security-analysis-result-logs.tsx -------------------------------------------------------------------------------- /src/components/results/dynamic-security-analysis/dynamic-security-analysis-result-tab.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gridsuite/gridstudy-app/HEAD/src/components/results/dynamic-security-analysis/dynamic-security-analysis-result-tab.tsx -------------------------------------------------------------------------------- /src/components/results/dynamicsimulation/common/gridlayout/react-grid-layout.custom.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gridsuite/gridstudy-app/HEAD/src/components/results/dynamicsimulation/common/gridlayout/react-grid-layout.custom.css -------------------------------------------------------------------------------- /src/components/results/dynamicsimulation/common/gridlayout/react-grid-layout.main.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gridsuite/gridstudy-app/HEAD/src/components/results/dynamicsimulation/common/gridlayout/react-grid-layout.main.css -------------------------------------------------------------------------------- /src/components/results/dynamicsimulation/common/gridlayout/responsive-grid-layout.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gridsuite/gridstudy-app/HEAD/src/components/results/dynamicsimulation/common/gridlayout/responsive-grid-layout.tsx -------------------------------------------------------------------------------- /src/components/results/dynamicsimulation/common/visibility-box.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gridsuite/gridstudy-app/HEAD/src/components/results/dynamicsimulation/common/visibility-box.tsx -------------------------------------------------------------------------------- /src/components/results/dynamicsimulation/dynamic-simulation-result-logs.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gridsuite/gridstudy-app/HEAD/src/components/results/dynamicsimulation/dynamic-simulation-result-logs.tsx -------------------------------------------------------------------------------- /src/components/results/dynamicsimulation/dynamic-simulation-result-synthesis.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gridsuite/gridstudy-app/HEAD/src/components/results/dynamicsimulation/dynamic-simulation-result-synthesis.tsx -------------------------------------------------------------------------------- /src/components/results/dynamicsimulation/dynamic-simulation-result-tab.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gridsuite/gridstudy-app/HEAD/src/components/results/dynamicsimulation/dynamic-simulation-result-tab.tsx -------------------------------------------------------------------------------- /src/components/results/dynamicsimulation/dynamic-simulation-result-time-series.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gridsuite/gridstudy-app/HEAD/src/components/results/dynamicsimulation/dynamic-simulation-result-time-series.tsx -------------------------------------------------------------------------------- /src/components/results/dynamicsimulation/dynamic-simulation-result-timeline.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gridsuite/gridstudy-app/HEAD/src/components/results/dynamicsimulation/dynamic-simulation-result-timeline.tsx -------------------------------------------------------------------------------- /src/components/results/dynamicsimulation/hooks/useResultTimeSeries.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gridsuite/gridstudy-app/HEAD/src/components/results/dynamicsimulation/hooks/useResultTimeSeries.ts -------------------------------------------------------------------------------- /src/components/results/dynamicsimulation/plot/plot-config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gridsuite/gridstudy-app/HEAD/src/components/results/dynamicsimulation/plot/plot-config.ts -------------------------------------------------------------------------------- /src/components/results/dynamicsimulation/plot/plot-events.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gridsuite/gridstudy-app/HEAD/src/components/results/dynamicsimulation/plot/plot-events.ts -------------------------------------------------------------------------------- /src/components/results/dynamicsimulation/plot/plot-types.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gridsuite/gridstudy-app/HEAD/src/components/results/dynamicsimulation/plot/plot-types.ts -------------------------------------------------------------------------------- /src/components/results/dynamicsimulation/plot/plotly-series-chart.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gridsuite/gridstudy-app/HEAD/src/components/results/dynamicsimulation/plot/plotly-series-chart.tsx -------------------------------------------------------------------------------- /src/components/results/dynamicsimulation/timeseries/dynamic-simulation-result-chart.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gridsuite/gridstudy-app/HEAD/src/components/results/dynamicsimulation/timeseries/dynamic-simulation-result-chart.tsx -------------------------------------------------------------------------------- /src/components/results/dynamicsimulation/types/dynamic-simulation-result.type.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gridsuite/gridstudy-app/HEAD/src/components/results/dynamicsimulation/types/dynamic-simulation-result.type.ts -------------------------------------------------------------------------------- /src/components/results/dynamicsimulation/utils/dynamic-simulation-result-utils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gridsuite/gridstudy-app/HEAD/src/components/results/dynamicsimulation/utils/dynamic-simulation-result-utils.ts -------------------------------------------------------------------------------- /src/components/results/loadflow/limit-violation-result.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gridsuite/gridstudy-app/HEAD/src/components/results/loadflow/limit-violation-result.tsx -------------------------------------------------------------------------------- /src/components/results/loadflow/load-flow-result-tab.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gridsuite/gridstudy-app/HEAD/src/components/results/loadflow/load-flow-result-tab.tsx -------------------------------------------------------------------------------- /src/components/results/loadflow/load-flow-result-utils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gridsuite/gridstudy-app/HEAD/src/components/results/loadflow/load-flow-result-utils.ts -------------------------------------------------------------------------------- /src/components/results/loadflow/load-flow-result.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gridsuite/gridstudy-app/HEAD/src/components/results/loadflow/load-flow-result.tsx -------------------------------------------------------------------------------- /src/components/results/loadflow/load-flow-result.type.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gridsuite/gridstudy-app/HEAD/src/components/results/loadflow/load-flow-result.type.ts -------------------------------------------------------------------------------- /src/components/results/loadflow/use-load-flow-result-column-actions.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gridsuite/gridstudy-app/HEAD/src/components/results/loadflow/use-load-flow-result-column-actions.ts -------------------------------------------------------------------------------- /src/components/results/pccmin/pcc-min-export-button.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gridsuite/gridstudy-app/HEAD/src/components/results/pccmin/pcc-min-export-button.tsx -------------------------------------------------------------------------------- /src/components/results/pccmin/pcc-min-result-tab.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gridsuite/gridstudy-app/HEAD/src/components/results/pccmin/pcc-min-result-tab.tsx -------------------------------------------------------------------------------- /src/components/results/pccmin/pcc-min-result-table.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gridsuite/gridstudy-app/HEAD/src/components/results/pccmin/pcc-min-result-table.tsx -------------------------------------------------------------------------------- /src/components/results/pccmin/pcc-min-result.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gridsuite/gridstudy-app/HEAD/src/components/results/pccmin/pcc-min-result.tsx -------------------------------------------------------------------------------- /src/components/results/pccmin/pcc-min-result.type.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gridsuite/gridstudy-app/HEAD/src/components/results/pccmin/pcc-min-result.type.ts -------------------------------------------------------------------------------- /src/components/results/securityanalysis/security-analysis-export-button.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gridsuite/gridstudy-app/HEAD/src/components/results/securityanalysis/security-analysis-export-button.tsx -------------------------------------------------------------------------------- /src/components/results/securityanalysis/security-analysis-result-n.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gridsuite/gridstudy-app/HEAD/src/components/results/securityanalysis/security-analysis-result-n.tsx -------------------------------------------------------------------------------- /src/components/results/securityanalysis/security-analysis-result-nmk.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gridsuite/gridstudy-app/HEAD/src/components/results/securityanalysis/security-analysis-result-nmk.tsx -------------------------------------------------------------------------------- /src/components/results/securityanalysis/security-analysis-result-tab.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gridsuite/gridstudy-app/HEAD/src/components/results/securityanalysis/security-analysis-result-tab.tsx -------------------------------------------------------------------------------- /src/components/results/securityanalysis/security-analysis-result-utils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gridsuite/gridstudy-app/HEAD/src/components/results/securityanalysis/security-analysis-result-utils.ts -------------------------------------------------------------------------------- /src/components/results/securityanalysis/security-analysis-table.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gridsuite/gridstudy-app/HEAD/src/components/results/securityanalysis/security-analysis-table.tsx -------------------------------------------------------------------------------- /src/components/results/securityanalysis/security-analysis.type.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gridsuite/gridstudy-app/HEAD/src/components/results/securityanalysis/security-analysis.type.ts -------------------------------------------------------------------------------- /src/components/results/securityanalysis/use-security-analysis-column-defs.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gridsuite/gridstudy-app/HEAD/src/components/results/securityanalysis/use-security-analysis-column-defs.tsx -------------------------------------------------------------------------------- /src/components/results/sensitivity-analysis/paged-sensitivity-analysis-result.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gridsuite/gridstudy-app/HEAD/src/components/results/sensitivity-analysis/paged-sensitivity-analysis-result.tsx -------------------------------------------------------------------------------- /src/components/results/sensitivity-analysis/sensitivity-analysis-export-button.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gridsuite/gridstudy-app/HEAD/src/components/results/sensitivity-analysis/sensitivity-analysis-export-button.tsx -------------------------------------------------------------------------------- /src/components/results/sensitivity-analysis/sensitivity-analysis-result-tab.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gridsuite/gridstudy-app/HEAD/src/components/results/sensitivity-analysis/sensitivity-analysis-result-tab.tsx -------------------------------------------------------------------------------- /src/components/results/sensitivity-analysis/sensitivity-analysis-result-utils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gridsuite/gridstudy-app/HEAD/src/components/results/sensitivity-analysis/sensitivity-analysis-result-utils.ts -------------------------------------------------------------------------------- /src/components/results/sensitivity-analysis/sensitivity-analysis-result.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gridsuite/gridstudy-app/HEAD/src/components/results/sensitivity-analysis/sensitivity-analysis-result.tsx -------------------------------------------------------------------------------- /src/components/results/sensitivity-analysis/sensitivity-analysis-result.type.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gridsuite/gridstudy-app/HEAD/src/components/results/sensitivity-analysis/sensitivity-analysis-result.type.ts -------------------------------------------------------------------------------- /src/components/results/sensitivity-analysis/sensitivity-analysis-tabs.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gridsuite/gridstudy-app/HEAD/src/components/results/sensitivity-analysis/sensitivity-analysis-tabs.tsx -------------------------------------------------------------------------------- /src/components/results/shortcircuit/shortcircuit-analysis-all-buses-result.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gridsuite/gridstudy-app/HEAD/src/components/results/shortcircuit/shortcircuit-analysis-all-buses-result.tsx -------------------------------------------------------------------------------- /src/components/results/shortcircuit/shortcircuit-analysis-export-button.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gridsuite/gridstudy-app/HEAD/src/components/results/shortcircuit/shortcircuit-analysis-export-button.tsx -------------------------------------------------------------------------------- /src/components/results/shortcircuit/shortcircuit-analysis-one-bus-result.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gridsuite/gridstudy-app/HEAD/src/components/results/shortcircuit/shortcircuit-analysis-one-bus-result.tsx -------------------------------------------------------------------------------- /src/components/results/shortcircuit/shortcircuit-analysis-result-content.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gridsuite/gridstudy-app/HEAD/src/components/results/shortcircuit/shortcircuit-analysis-result-content.ts -------------------------------------------------------------------------------- /src/components/results/shortcircuit/shortcircuit-analysis-result-tab.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gridsuite/gridstudy-app/HEAD/src/components/results/shortcircuit/shortcircuit-analysis-result-tab.tsx -------------------------------------------------------------------------------- /src/components/results/shortcircuit/shortcircuit-analysis-result-table.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gridsuite/gridstudy-app/HEAD/src/components/results/shortcircuit/shortcircuit-analysis-result-table.tsx -------------------------------------------------------------------------------- /src/components/results/shortcircuit/shortcircuit-analysis-result.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gridsuite/gridstudy-app/HEAD/src/components/results/shortcircuit/shortcircuit-analysis-result.tsx -------------------------------------------------------------------------------- /src/components/results/shortcircuit/shortcircuit-analysis-result.type.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gridsuite/gridstudy-app/HEAD/src/components/results/shortcircuit/shortcircuit-analysis-result.type.ts -------------------------------------------------------------------------------- /src/components/results/stateestimation/state-estimation-quality-result.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gridsuite/gridstudy-app/HEAD/src/components/results/stateestimation/state-estimation-quality-result.tsx -------------------------------------------------------------------------------- /src/components/results/stateestimation/state-estimation-result-tab.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gridsuite/gridstudy-app/HEAD/src/components/results/stateestimation/state-estimation-result-tab.tsx -------------------------------------------------------------------------------- /src/components/results/stateestimation/state-estimation-result-utils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gridsuite/gridstudy-app/HEAD/src/components/results/stateestimation/state-estimation-result-utils.ts -------------------------------------------------------------------------------- /src/components/results/stateestimation/state-estimation-result.type.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gridsuite/gridstudy-app/HEAD/src/components/results/stateestimation/state-estimation-result.type.ts -------------------------------------------------------------------------------- /src/components/results/stateestimation/state-estimation-status-result.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gridsuite/gridstudy-app/HEAD/src/components/results/stateestimation/state-estimation-status-result.tsx -------------------------------------------------------------------------------- /src/components/results/use-results-tab.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gridsuite/gridstudy-app/HEAD/src/components/results/use-results-tab.ts -------------------------------------------------------------------------------- /src/components/run-button-container.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gridsuite/gridstudy-app/HEAD/src/components/run-button-container.jsx -------------------------------------------------------------------------------- /src/components/run-button.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gridsuite/gridstudy-app/HEAD/src/components/run-button.jsx -------------------------------------------------------------------------------- /src/components/spreadsheet-view/add-spreadsheet/add-spreadsheet-button.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gridsuite/gridstudy-app/HEAD/src/components/spreadsheet-view/add-spreadsheet/add-spreadsheet-button.tsx -------------------------------------------------------------------------------- /src/components/spreadsheet-view/add-spreadsheet/dialogs/add-empty-spreadsheet-dialog.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gridsuite/gridstudy-app/HEAD/src/components/spreadsheet-view/add-spreadsheet/dialogs/add-empty-spreadsheet-dialog.tsx -------------------------------------------------------------------------------- /src/components/spreadsheet-view/add-spreadsheet/dialogs/add-spreadsheet-form.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gridsuite/gridstudy-app/HEAD/src/components/spreadsheet-view/add-spreadsheet/dialogs/add-spreadsheet-form.ts -------------------------------------------------------------------------------- /src/components/spreadsheet-view/add-spreadsheet/dialogs/add-spreadsheet-utils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gridsuite/gridstudy-app/HEAD/src/components/spreadsheet-view/add-spreadsheet/dialogs/add-spreadsheet-utils.ts -------------------------------------------------------------------------------- /src/components/spreadsheet-view/add-spreadsheet/styles/styles.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gridsuite/gridstudy-app/HEAD/src/components/spreadsheet-view/add-spreadsheet/styles/styles.ts -------------------------------------------------------------------------------- /src/components/spreadsheet-view/add-spreadsheet/types.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gridsuite/gridstudy-app/HEAD/src/components/spreadsheet-view/add-spreadsheet/types.d.ts -------------------------------------------------------------------------------- /src/components/spreadsheet-view/columns/column-creation-dialog.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gridsuite/gridstudy-app/HEAD/src/components/spreadsheet-view/columns/column-creation-dialog.tsx -------------------------------------------------------------------------------- /src/components/spreadsheet-view/columns/column-creation-form.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gridsuite/gridstudy-app/HEAD/src/components/spreadsheet-view/columns/column-creation-form.ts -------------------------------------------------------------------------------- /src/components/spreadsheet-view/columns/column-menu.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gridsuite/gridstudy-app/HEAD/src/components/spreadsheet-view/columns/column-menu.tsx -------------------------------------------------------------------------------- /src/components/spreadsheet-view/columns/common-column-definitions.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gridsuite/gridstudy-app/HEAD/src/components/spreadsheet-view/columns/common-column-definitions.ts -------------------------------------------------------------------------------- /src/components/spreadsheet-view/columns/floating-treeview-list/tree-label.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gridsuite/gridstudy-app/HEAD/src/components/spreadsheet-view/columns/floating-treeview-list/tree-label.tsx -------------------------------------------------------------------------------- /src/components/spreadsheet-view/columns/floating-treeview-list/treeview-searchable.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gridsuite/gridstudy-app/HEAD/src/components/spreadsheet-view/columns/floating-treeview-list/treeview-searchable.tsx -------------------------------------------------------------------------------- /src/components/spreadsheet-view/columns/floating-treeview-list/use-formula-quicksearch.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gridsuite/gridstudy-app/HEAD/src/components/spreadsheet-view/columns/floating-treeview-list/use-formula-quicksearch.ts -------------------------------------------------------------------------------- /src/components/spreadsheet-view/columns/floating-treeview-list/utils/json-schema-parser.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gridsuite/gridstudy-app/HEAD/src/components/spreadsheet-view/columns/floating-treeview-list/utils/json-schema-parser.ts -------------------------------------------------------------------------------- /src/components/spreadsheet-view/columns/floating-treeview-list/utils/render-tree-data.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gridsuite/gridstudy-app/HEAD/src/components/spreadsheet-view/columns/floating-treeview-list/utils/render-tree-data.tsx -------------------------------------------------------------------------------- /src/components/spreadsheet-view/columns/floating-treeview-list/utils/sort-priority-order.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gridsuite/gridstudy-app/HEAD/src/components/spreadsheet-view/columns/floating-treeview-list/utils/sort-priority-order.ts -------------------------------------------------------------------------------- /src/components/spreadsheet-view/columns/floating-treeview-list/utils/use-popover-toggle.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gridsuite/gridstudy-app/HEAD/src/components/spreadsheet-view/columns/floating-treeview-list/utils/use-popover-toggle.ts -------------------------------------------------------------------------------- /src/components/spreadsheet-view/columns/utils/column-mapper.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gridsuite/gridstudy-app/HEAD/src/components/spreadsheet-view/columns/utils/column-mapper.ts -------------------------------------------------------------------------------- /src/components/spreadsheet-view/columns/utils/cyclic-dependencies.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gridsuite/gridstudy-app/HEAD/src/components/spreadsheet-view/columns/utils/cyclic-dependencies.ts -------------------------------------------------------------------------------- /src/components/spreadsheet-view/columns/utils/formula-validator.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gridsuite/gridstudy-app/HEAD/src/components/spreadsheet-view/columns/utils/formula-validator.ts -------------------------------------------------------------------------------- /src/components/spreadsheet-view/columns/utils/math.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gridsuite/gridstudy-app/HEAD/src/components/spreadsheet-view/columns/utils/math.ts -------------------------------------------------------------------------------- /src/components/spreadsheet-view/constants.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gridsuite/gridstudy-app/HEAD/src/components/spreadsheet-view/constants.ts -------------------------------------------------------------------------------- /src/components/spreadsheet-view/hooks/use-built-nodes-ids.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gridsuite/gridstudy-app/HEAD/src/components/spreadsheet-view/hooks/use-built-nodes-ids.ts -------------------------------------------------------------------------------- /src/components/spreadsheet-view/hooks/use-fetch-equipment.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gridsuite/gridstudy-app/HEAD/src/components/spreadsheet-view/hooks/use-fetch-equipment.ts -------------------------------------------------------------------------------- /src/components/spreadsheet-view/hooks/use-node-aliases-update-on-notification.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gridsuite/gridstudy-app/HEAD/src/components/spreadsheet-view/hooks/use-node-aliases-update-on-notification.ts -------------------------------------------------------------------------------- /src/components/spreadsheet-view/hooks/use-node-aliases.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gridsuite/gridstudy-app/HEAD/src/components/spreadsheet-view/hooks/use-node-aliases.ts -------------------------------------------------------------------------------- /src/components/spreadsheet-view/hooks/use-reset-spreadsheet-on-root-network.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gridsuite/gridstudy-app/HEAD/src/components/spreadsheet-view/hooks/use-reset-spreadsheet-on-root-network.ts -------------------------------------------------------------------------------- /src/components/spreadsheet-view/hooks/use-spreadsheet-equipments.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gridsuite/gridstudy-app/HEAD/src/components/spreadsheet-view/hooks/use-spreadsheet-equipments.ts -------------------------------------------------------------------------------- /src/components/spreadsheet-view/hooks/use-update-equipments-on-notification.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gridsuite/gridstudy-app/HEAD/src/components/spreadsheet-view/hooks/use-update-equipments-on-notification.ts -------------------------------------------------------------------------------- /src/components/spreadsheet-view/spreadsheet-tabs/rename-tab-dialog.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gridsuite/gridstudy-app/HEAD/src/components/spreadsheet-view/spreadsheet-tabs/rename-tab-dialog.tsx -------------------------------------------------------------------------------- /src/components/spreadsheet-view/spreadsheet-tabs/spreadsheet-tab-label.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gridsuite/gridstudy-app/HEAD/src/components/spreadsheet-view/spreadsheet-tabs/spreadsheet-tab-label.tsx -------------------------------------------------------------------------------- /src/components/spreadsheet-view/spreadsheet-tabs/spreadsheet-tabs-toolbar.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gridsuite/gridstudy-app/HEAD/src/components/spreadsheet-view/spreadsheet-tabs/spreadsheet-tabs-toolbar.tsx -------------------------------------------------------------------------------- /src/components/spreadsheet-view/spreadsheet-tabs/spreadsheet-tabs.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gridsuite/gridstudy-app/HEAD/src/components/spreadsheet-view/spreadsheet-tabs/spreadsheet-tabs.tsx -------------------------------------------------------------------------------- /src/components/spreadsheet-view/spreadsheet-tabs/toolbar/PartialLoadingMenuButton.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gridsuite/gridstudy-app/HEAD/src/components/spreadsheet-view/spreadsheet-tabs/toolbar/PartialLoadingMenuButton.tsx -------------------------------------------------------------------------------- /src/components/spreadsheet-view/spreadsheet-tabs/toolbar/PartialLoadingMenuItem.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gridsuite/gridstudy-app/HEAD/src/components/spreadsheet-view/spreadsheet-tabs/toolbar/PartialLoadingMenuItem.tsx -------------------------------------------------------------------------------- /src/components/spreadsheet-view/spreadsheet-view.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gridsuite/gridstudy-app/HEAD/src/components/spreadsheet-view/spreadsheet-view.tsx -------------------------------------------------------------------------------- /src/components/spreadsheet-view/spreadsheet.style.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gridsuite/gridstudy-app/HEAD/src/components/spreadsheet-view/spreadsheet.style.ts -------------------------------------------------------------------------------- /src/components/spreadsheet-view/spreadsheet/spreadsheet-content/equipment-table.style.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gridsuite/gridstudy-app/HEAD/src/components/spreadsheet-view/spreadsheet/spreadsheet-content/equipment-table.style.ts -------------------------------------------------------------------------------- /src/components/spreadsheet-view/spreadsheet/spreadsheet-content/equipment-table.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gridsuite/gridstudy-app/HEAD/src/components/spreadsheet-view/spreadsheet/spreadsheet-content/equipment-table.tsx -------------------------------------------------------------------------------- /src/components/spreadsheet-view/spreadsheet/spreadsheet-content/spreadsheet-content.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gridsuite/gridstudy-app/HEAD/src/components/spreadsheet-view/spreadsheet/spreadsheet-content/spreadsheet-content.tsx -------------------------------------------------------------------------------- /src/components/spreadsheet-view/spreadsheet/spreadsheet-toolbar/column-creation-button.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gridsuite/gridstudy-app/HEAD/src/components/spreadsheet-view/spreadsheet/spreadsheet-toolbar/column-creation-button.tsx -------------------------------------------------------------------------------- /src/components/spreadsheet-view/spreadsheet/spreadsheet-toolbar/columns-config.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gridsuite/gridstudy-app/HEAD/src/components/spreadsheet-view/spreadsheet/spreadsheet-toolbar/columns-config.tsx -------------------------------------------------------------------------------- /src/components/spreadsheet-view/spreadsheet/spreadsheet-toolbar/draggable-column-item.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gridsuite/gridstudy-app/HEAD/src/components/spreadsheet-view/spreadsheet/spreadsheet-toolbar/draggable-column-item.tsx -------------------------------------------------------------------------------- /src/components/spreadsheet-view/spreadsheet/spreadsheet-toolbar/droppable-columns-list.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gridsuite/gridstudy-app/HEAD/src/components/spreadsheet-view/spreadsheet/spreadsheet-toolbar/droppable-columns-list.tsx -------------------------------------------------------------------------------- /src/components/spreadsheet-view/spreadsheet/spreadsheet-toolbar/spreadsheet-toolbar.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gridsuite/gridstudy-app/HEAD/src/components/spreadsheet-view/spreadsheet/spreadsheet-toolbar/spreadsheet-toolbar.tsx -------------------------------------------------------------------------------- /src/components/spreadsheet-view/spreadsheet/spreadsheet.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gridsuite/gridstudy-app/HEAD/src/components/spreadsheet-view/spreadsheet/spreadsheet.tsx -------------------------------------------------------------------------------- /src/components/spreadsheet-view/types/calculation.type.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gridsuite/gridstudy-app/HEAD/src/components/spreadsheet-view/types/calculation.type.ts -------------------------------------------------------------------------------- /src/components/spreadsheet-view/types/node-alias.type.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gridsuite/gridstudy-app/HEAD/src/components/spreadsheet-view/types/node-alias.type.ts -------------------------------------------------------------------------------- /src/components/spreadsheet-view/types/spreadsheet.type.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gridsuite/gridstudy-app/HEAD/src/components/spreadsheet-view/types/spreadsheet.type.ts -------------------------------------------------------------------------------- /src/components/spreadsheet-view/utils/calculation-utils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gridsuite/gridstudy-app/HEAD/src/components/spreadsheet-view/utils/calculation-utils.ts -------------------------------------------------------------------------------- /src/components/study-container.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gridsuite/gridstudy-app/HEAD/src/components/study-container.jsx -------------------------------------------------------------------------------- /src/components/study-navigation-sync-toggle.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gridsuite/gridstudy-app/HEAD/src/components/study-navigation-sync-toggle.tsx -------------------------------------------------------------------------------- /src/components/study-pane.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gridsuite/gridstudy-app/HEAD/src/components/study-pane.jsx -------------------------------------------------------------------------------- /src/components/tooltips/branch-popover-content.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gridsuite/gridstudy-app/HEAD/src/components/tooltips/branch-popover-content.tsx -------------------------------------------------------------------------------- /src/components/tooltips/carateristics-table.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gridsuite/gridstudy-app/HEAD/src/components/tooltips/carateristics-table.tsx -------------------------------------------------------------------------------- /src/components/tooltips/cell-render.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gridsuite/gridstudy-app/HEAD/src/components/tooltips/cell-render.tsx -------------------------------------------------------------------------------- /src/components/tooltips/current-table.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gridsuite/gridstudy-app/HEAD/src/components/tooltips/current-table.tsx -------------------------------------------------------------------------------- /src/components/tooltips/equipment-popover-map.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gridsuite/gridstudy-app/HEAD/src/components/tooltips/equipment-popover-map.tsx -------------------------------------------------------------------------------- /src/components/tooltips/generic-equipment-popover-utils.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gridsuite/gridstudy-app/HEAD/src/components/tooltips/generic-equipment-popover-utils.tsx -------------------------------------------------------------------------------- /src/components/tooltips/generic-equipment-popover.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gridsuite/gridstudy-app/HEAD/src/components/tooltips/generic-equipment-popover.tsx -------------------------------------------------------------------------------- /src/components/tooltips/generic-popover-content.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gridsuite/gridstudy-app/HEAD/src/components/tooltips/generic-popover-content.tsx -------------------------------------------------------------------------------- /src/components/tooltips/limit-table.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gridsuite/gridstudy-app/HEAD/src/components/tooltips/limit-table.tsx -------------------------------------------------------------------------------- /src/components/top-bar-equipment-seach-dialog/custom-suffix-renderer.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gridsuite/gridstudy-app/HEAD/src/components/top-bar-equipment-seach-dialog/custom-suffix-renderer.tsx -------------------------------------------------------------------------------- /src/components/top-bar-equipment-seach-dialog/top-bar-equipment-search-dialog.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gridsuite/gridstudy-app/HEAD/src/components/top-bar-equipment-seach-dialog/top-bar-equipment-search-dialog.tsx -------------------------------------------------------------------------------- /src/components/top-bar-equipment-seach-dialog/top-bar-equipment-search-input.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gridsuite/gridstudy-app/HEAD/src/components/top-bar-equipment-seach-dialog/top-bar-equipment-search-input.tsx -------------------------------------------------------------------------------- /src/components/top-bar-equipment-seach-dialog/top-bar-equipment-search-popover.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gridsuite/gridstudy-app/HEAD/src/components/top-bar-equipment-seach-dialog/top-bar-equipment-search-popover.tsx -------------------------------------------------------------------------------- /src/components/top-bar-equipment-seach-dialog/use-disabled-search-reason.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gridsuite/gridstudy-app/HEAD/src/components/top-bar-equipment-seach-dialog/use-disabled-search-reason.tsx -------------------------------------------------------------------------------- /src/components/top-bar-equipment-seach-dialog/use-search-event.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gridsuite/gridstudy-app/HEAD/src/components/top-bar-equipment-seach-dialog/use-search-event.tsx -------------------------------------------------------------------------------- /src/components/top-bar-equipment-seach-dialog/use-search-matching-equipments.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gridsuite/gridstudy-app/HEAD/src/components/top-bar-equipment-seach-dialog/use-search-matching-equipments.tsx -------------------------------------------------------------------------------- /src/components/top-bar-equipment-seach-dialog/use-top-bar-search-matching-equipments.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gridsuite/gridstudy-app/HEAD/src/components/top-bar-equipment-seach-dialog/use-top-bar-search-matching-equipments.tsx -------------------------------------------------------------------------------- /src/components/use-node-data.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gridsuite/gridstudy-app/HEAD/src/components/use-node-data.tsx -------------------------------------------------------------------------------- /src/components/utils/aggrid-rows-handler.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gridsuite/gridstudy-app/HEAD/src/components/utils/aggrid-rows-handler.ts -------------------------------------------------------------------------------- /src/components/utils/alert-custom-message-node.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gridsuite/gridstudy-app/HEAD/src/components/utils/alert-custom-message-node.tsx -------------------------------------------------------------------------------- /src/components/utils/checkbox-autocomplete/checkbox-autocomplete.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gridsuite/gridstudy-app/HEAD/src/components/utils/checkbox-autocomplete/checkbox-autocomplete.tsx -------------------------------------------------------------------------------- /src/components/utils/checkbox-autocomplete/checkbox-item.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gridsuite/gridstudy-app/HEAD/src/components/utils/checkbox-autocomplete/checkbox-item.tsx -------------------------------------------------------------------------------- /src/components/utils/checkbox-autocomplete/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gridsuite/gridstudy-app/HEAD/src/components/utils/checkbox-autocomplete/index.ts -------------------------------------------------------------------------------- /src/components/utils/checkbox-autocomplete/virtualized-list-item.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gridsuite/gridstudy-app/HEAD/src/components/utils/checkbox-autocomplete/virtualized-list-item.tsx -------------------------------------------------------------------------------- /src/components/utils/checkbox-autocomplete/virtualized-list.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gridsuite/gridstudy-app/HEAD/src/components/utils/checkbox-autocomplete/virtualized-list.tsx -------------------------------------------------------------------------------- /src/components/utils/column-constant.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gridsuite/gridstudy-app/HEAD/src/components/utils/column-constant.ts -------------------------------------------------------------------------------- /src/components/utils/constants.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gridsuite/gridstudy-app/HEAD/src/components/utils/constants.ts -------------------------------------------------------------------------------- /src/components/utils/custom-dialog.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gridsuite/gridstudy-app/HEAD/src/components/utils/custom-dialog.tsx -------------------------------------------------------------------------------- /src/components/utils/custom-table-pagination.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gridsuite/gridstudy-app/HEAD/src/components/utils/custom-table-pagination.tsx -------------------------------------------------------------------------------- /src/components/utils/draggable-tab/draggable-tab.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gridsuite/gridstudy-app/HEAD/src/components/utils/draggable-tab/draggable-tab.tsx -------------------------------------------------------------------------------- /src/components/utils/draggable-tab/droppable-tabs.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gridsuite/gridstudy-app/HEAD/src/components/utils/draggable-tab/droppable-tabs.tsx -------------------------------------------------------------------------------- /src/components/utils/equipment-types.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gridsuite/gridstudy-app/HEAD/src/components/utils/equipment-types.ts -------------------------------------------------------------------------------- /src/components/utils/equipmentInfosHandler.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gridsuite/gridstudy-app/HEAD/src/components/utils/equipmentInfosHandler.ts -------------------------------------------------------------------------------- /src/components/utils/feederType.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gridsuite/gridstudy-app/HEAD/src/components/utils/feederType.ts -------------------------------------------------------------------------------- /src/components/utils/field-constants.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gridsuite/gridstudy-app/HEAD/src/components/utils/field-constants.ts -------------------------------------------------------------------------------- /src/components/utils/forwardRefBox.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gridsuite/gridstudy-app/HEAD/src/components/utils/forwardRefBox.tsx -------------------------------------------------------------------------------- /src/components/utils/inputs/input-hooks.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gridsuite/gridstudy-app/HEAD/src/components/utils/inputs/input-hooks.tsx -------------------------------------------------------------------------------- /src/components/utils/is-any-node-building-hook.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gridsuite/gridstudy-app/HEAD/src/components/utils/is-any-node-building-hook.ts -------------------------------------------------------------------------------- /src/components/utils/loader-with-overlay.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gridsuite/gridstudy-app/HEAD/src/components/utils/loader-with-overlay.tsx -------------------------------------------------------------------------------- /src/components/utils/localized-countries-hook.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gridsuite/gridstudy-app/HEAD/src/components/utils/localized-countries-hook.ts -------------------------------------------------------------------------------- /src/components/utils/optional-services.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gridsuite/gridstudy-app/HEAD/src/components/utils/optional-services.ts -------------------------------------------------------------------------------- /src/components/utils/renderTable-ExportCsv.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gridsuite/gridstudy-app/HEAD/src/components/utils/renderTable-ExportCsv.tsx -------------------------------------------------------------------------------- /src/components/utils/rhf-inputs/boolean-nullable-input.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gridsuite/gridstudy-app/HEAD/src/components/utils/rhf-inputs/boolean-nullable-input.tsx -------------------------------------------------------------------------------- /src/components/utils/rhf-inputs/country-selection-input.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gridsuite/gridstudy-app/HEAD/src/components/utils/rhf-inputs/country-selection-input.tsx -------------------------------------------------------------------------------- /src/components/utils/rhf-inputs/enum-input.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gridsuite/gridstudy-app/HEAD/src/components/utils/rhf-inputs/enum-input.tsx -------------------------------------------------------------------------------- /src/components/utils/rhf-inputs/expandable-input/deletable-row.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gridsuite/gridstudy-app/HEAD/src/components/utils/rhf-inputs/expandable-input/deletable-row.tsx -------------------------------------------------------------------------------- /src/components/utils/rhf-inputs/expandable-input/expandable-input.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gridsuite/gridstudy-app/HEAD/src/components/utils/rhf-inputs/expandable-input/expandable-input.tsx -------------------------------------------------------------------------------- /src/components/utils/rhf-inputs/expandable-input/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gridsuite/gridstudy-app/HEAD/src/components/utils/rhf-inputs/expandable-input/index.ts -------------------------------------------------------------------------------- /src/components/utils/rhf-inputs/read-only/button-read-only-input.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gridsuite/gridstudy-app/HEAD/src/components/utils/rhf-inputs/read-only/button-read-only-input.tsx -------------------------------------------------------------------------------- /src/components/utils/rhf-inputs/read-only/read-only-input.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gridsuite/gridstudy-app/HEAD/src/components/utils/rhf-inputs/read-only/read-only-input.tsx -------------------------------------------------------------------------------- /src/components/utils/running-status.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gridsuite/gridstudy-app/HEAD/src/components/utils/running-status.ts -------------------------------------------------------------------------------- /src/components/utils/split-button.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gridsuite/gridstudy-app/HEAD/src/components/utils/split-button.tsx -------------------------------------------------------------------------------- /src/components/utils/tab-utils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gridsuite/gridstudy-app/HEAD/src/components/utils/tab-utils.ts -------------------------------------------------------------------------------- /src/components/utils/ts-utils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gridsuite/gridstudy-app/HEAD/src/components/utils/ts-utils.ts -------------------------------------------------------------------------------- /src/components/utils/utils.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gridsuite/gridstudy-app/HEAD/src/components/utils/utils.test.ts -------------------------------------------------------------------------------- /src/components/utils/utils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gridsuite/gridstudy-app/HEAD/src/components/utils/utils.ts -------------------------------------------------------------------------------- /src/components/utils/validation-functions.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gridsuite/gridstudy-app/HEAD/src/components/utils/validation-functions.test.ts -------------------------------------------------------------------------------- /src/components/utils/validation-functions.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gridsuite/gridstudy-app/HEAD/src/components/utils/validation-functions.ts -------------------------------------------------------------------------------- /src/components/utils/waiting-loader.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gridsuite/gridstudy-app/HEAD/src/components/utils/waiting-loader.tsx -------------------------------------------------------------------------------- /src/components/utils/yup-config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gridsuite/gridstudy-app/HEAD/src/components/utils/yup-config.ts -------------------------------------------------------------------------------- /src/components/voltage-init-result-tab.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gridsuite/gridstudy-app/HEAD/src/components/voltage-init-result-tab.tsx -------------------------------------------------------------------------------- /src/components/voltage-init-result.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gridsuite/gridstudy-app/HEAD/src/components/voltage-init-result.tsx -------------------------------------------------------------------------------- /src/components/voltage-init-result.type.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gridsuite/gridstudy-app/HEAD/src/components/voltage-init-result.type.ts -------------------------------------------------------------------------------- /src/components/voltage-level-choice.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gridsuite/gridstudy-app/HEAD/src/components/voltage-level-choice.jsx -------------------------------------------------------------------------------- /src/components/workspace/constants/workspace.constants.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gridsuite/gridstudy-app/HEAD/src/components/workspace/constants/workspace.constants.tsx -------------------------------------------------------------------------------- /src/components/workspace/core/panel-header.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gridsuite/gridstudy-app/HEAD/src/components/workspace/core/panel-header.tsx -------------------------------------------------------------------------------- /src/components/workspace/core/panel.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gridsuite/gridstudy-app/HEAD/src/components/workspace/core/panel.tsx -------------------------------------------------------------------------------- /src/components/workspace/core/utils/snap-utils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gridsuite/gridstudy-app/HEAD/src/components/workspace/core/utils/snap-utils.ts -------------------------------------------------------------------------------- /src/components/workspace/core/workspace-container.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gridsuite/gridstudy-app/HEAD/src/components/workspace/core/workspace-container.tsx -------------------------------------------------------------------------------- /src/components/workspace/core/workspace-dock.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gridsuite/gridstudy-app/HEAD/src/components/workspace/core/workspace-dock.tsx -------------------------------------------------------------------------------- /src/components/workspace/core/workspace-switcher.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gridsuite/gridstudy-app/HEAD/src/components/workspace/core/workspace-switcher.tsx -------------------------------------------------------------------------------- /src/components/workspace/core/workspace-toolbar.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gridsuite/gridstudy-app/HEAD/src/components/workspace/core/workspace-toolbar.tsx -------------------------------------------------------------------------------- /src/components/workspace/diagrams/common/use-diagram-navigation.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gridsuite/gridstudy-app/HEAD/src/components/workspace/diagrams/common/use-diagram-navigation.ts -------------------------------------------------------------------------------- /src/components/workspace/diagrams/common/use-diagram-notifications.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gridsuite/gridstudy-app/HEAD/src/components/workspace/diagrams/common/use-diagram-notifications.ts -------------------------------------------------------------------------------- /src/components/workspace/diagrams/diagram-wrapper.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gridsuite/gridstudy-app/HEAD/src/components/workspace/diagrams/diagram-wrapper.tsx -------------------------------------------------------------------------------- /src/components/workspace/diagrams/nad/use-nad-config-cleanup.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gridsuite/gridstudy-app/HEAD/src/components/workspace/diagrams/nad/use-nad-config-cleanup.ts -------------------------------------------------------------------------------- /src/components/workspace/diagrams/nad/use-nad-diagram.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gridsuite/gridstudy-app/HEAD/src/components/workspace/diagrams/nad/use-nad-diagram.ts -------------------------------------------------------------------------------- /src/components/workspace/diagrams/sld/sld-navigation-sidebar.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gridsuite/gridstudy-app/HEAD/src/components/workspace/diagrams/sld/sld-navigation-sidebar.tsx -------------------------------------------------------------------------------- /src/components/workspace/diagrams/sld/use-sld-diagram.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gridsuite/gridstudy-app/HEAD/src/components/workspace/diagrams/sld/use-sld-diagram.ts -------------------------------------------------------------------------------- /src/components/workspace/panel-contents/diagrams/nad/nad-panel-content.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gridsuite/gridstudy-app/HEAD/src/components/workspace/panel-contents/diagrams/nad/nad-panel-content.tsx -------------------------------------------------------------------------------- /src/components/workspace/panel-contents/diagrams/sld/substation-panel-content.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gridsuite/gridstudy-app/HEAD/src/components/workspace/panel-contents/diagrams/sld/substation-panel-content.tsx -------------------------------------------------------------------------------- /src/components/workspace/panel-contents/diagrams/sld/voltage-level-panel-content.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gridsuite/gridstudy-app/HEAD/src/components/workspace/panel-contents/diagrams/sld/voltage-level-panel-content.tsx -------------------------------------------------------------------------------- /src/components/workspace/panel-contents/map-panel-content.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gridsuite/gridstudy-app/HEAD/src/components/workspace/panel-contents/map-panel-content.tsx -------------------------------------------------------------------------------- /src/components/workspace/panel-contents/panel-content-registry.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gridsuite/gridstudy-app/HEAD/src/components/workspace/panel-contents/panel-content-registry.tsx -------------------------------------------------------------------------------- /src/components/workspace/panel-contents/tree-panel-content.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gridsuite/gridstudy-app/HEAD/src/components/workspace/panel-contents/tree-panel-content.tsx -------------------------------------------------------------------------------- /src/components/workspace/types/workspace.types.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gridsuite/gridstudy-app/HEAD/src/components/workspace/types/workspace.types.ts -------------------------------------------------------------------------------- /src/constants/node.constant.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gridsuite/gridstudy-app/HEAD/src/constants/node.constant.ts -------------------------------------------------------------------------------- /src/constants/study-navigation-sync-constants.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gridsuite/gridstudy-app/HEAD/src/constants/study-navigation-sync-constants.ts -------------------------------------------------------------------------------- /src/hooks/use-computation-debug.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gridsuite/gridstudy-app/HEAD/src/hooks/use-computation-debug.ts -------------------------------------------------------------------------------- /src/hooks/use-computation-results-count.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gridsuite/gridstudy-app/HEAD/src/hooks/use-computation-results-count.ts -------------------------------------------------------------------------------- /src/hooks/use-equipment-dialogs.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gridsuite/gridstudy-app/HEAD/src/hooks/use-equipment-dialogs.tsx -------------------------------------------------------------------------------- /src/hooks/use-equipment-menu.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gridsuite/gridstudy-app/HEAD/src/hooks/use-equipment-menu.tsx -------------------------------------------------------------------------------- /src/hooks/use-export-download.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gridsuite/gridstudy-app/HEAD/src/hooks/use-export-download.ts -------------------------------------------------------------------------------- /src/hooks/use-export-notification.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gridsuite/gridstudy-app/HEAD/src/hooks/use-export-notification.ts -------------------------------------------------------------------------------- /src/hooks/use-export-subscription.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gridsuite/gridstudy-app/HEAD/src/hooks/use-export-subscription.ts -------------------------------------------------------------------------------- /src/hooks/use-filter-selector.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gridsuite/gridstudy-app/HEAD/src/hooks/use-filter-selector.ts -------------------------------------------------------------------------------- /src/hooks/use-get-label-equipment-types.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gridsuite/gridstudy-app/HEAD/src/hooks/use-get-label-equipment-types.ts -------------------------------------------------------------------------------- /src/hooks/use-get-study-impacts.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gridsuite/gridstudy-app/HEAD/src/hooks/use-get-study-impacts.ts -------------------------------------------------------------------------------- /src/hooks/use-notifications-url-generator.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gridsuite/gridstudy-app/HEAD/src/hooks/use-notifications-url-generator.ts -------------------------------------------------------------------------------- /src/hooks/use-optional-loading-parameters.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gridsuite/gridstudy-app/HEAD/src/hooks/use-optional-loading-parameters.ts -------------------------------------------------------------------------------- /src/hooks/use-optional-service-status.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gridsuite/gridstudy-app/HEAD/src/hooks/use-optional-service-status.ts -------------------------------------------------------------------------------- /src/hooks/use-pagination-selector.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gridsuite/gridstudy-app/HEAD/src/hooks/use-pagination-selector.ts -------------------------------------------------------------------------------- /src/hooks/use-report-fetcher.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gridsuite/gridstudy-app/HEAD/src/hooks/use-report-fetcher.tsx -------------------------------------------------------------------------------- /src/hooks/use-stable-computed-set.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gridsuite/gridstudy-app/HEAD/src/hooks/use-stable-computed-set.ts -------------------------------------------------------------------------------- /src/hooks/use-study-navigation-sync.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gridsuite/gridstudy-app/HEAD/src/hooks/use-study-navigation-sync.ts -------------------------------------------------------------------------------- /src/hooks/use-study-path.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gridsuite/gridstudy-app/HEAD/src/hooks/use-study-path.ts -------------------------------------------------------------------------------- /src/hooks/use-study-scoped-navigation-keys.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gridsuite/gridstudy-app/HEAD/src/hooks/use-study-scoped-navigation-keys.ts -------------------------------------------------------------------------------- /src/hooks/use-sync-navigation-actions.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gridsuite/gridstudy-app/HEAD/src/hooks/use-sync-navigation-actions.ts -------------------------------------------------------------------------------- /src/hooks/use-tree-node-focus.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gridsuite/gridstudy-app/HEAD/src/hooks/use-tree-node-focus.ts -------------------------------------------------------------------------------- /src/hooks/use-voltage-levels-list-infos.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gridsuite/gridstudy-app/HEAD/src/hooks/use-voltage-levels-list-infos.ts -------------------------------------------------------------------------------- /src/images/404.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gridsuite/gridstudy-app/HEAD/src/images/404.png -------------------------------------------------------------------------------- /src/images/GridStudy_logo_dark.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gridsuite/gridstudy-app/HEAD/src/images/GridStudy_logo_dark.svg -------------------------------------------------------------------------------- /src/images/GridStudy_logo_light.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gridsuite/gridstudy-app/HEAD/src/images/GridStudy_logo_light.svg -------------------------------------------------------------------------------- /src/images/add_column_right_dark.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gridsuite/gridstudy-app/HEAD/src/images/add_column_right_dark.svg -------------------------------------------------------------------------------- /src/images/add_column_right_disabled.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gridsuite/gridstudy-app/HEAD/src/images/add_column_right_disabled.svg -------------------------------------------------------------------------------- /src/images/add_column_right_light.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gridsuite/gridstudy-app/HEAD/src/images/add_column_right_light.svg -------------------------------------------------------------------------------- /src/images/arrow.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gridsuite/gridstudy-app/HEAD/src/images/arrow.svg -------------------------------------------------------------------------------- /src/images/arrow_hover.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gridsuite/gridstudy-app/HEAD/src/images/arrow_hover.svg -------------------------------------------------------------------------------- /src/images/bolt_black_24dp.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gridsuite/gridstudy-app/HEAD/src/images/bolt_black_24dp.svg -------------------------------------------------------------------------------- /src/images/lock_black_24dp.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gridsuite/gridstudy-app/HEAD/src/images/lock_black_24dp.svg -------------------------------------------------------------------------------- /src/images/network-modifications/illustrations/delete-attaching-line-illustration.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gridsuite/gridstudy-app/HEAD/src/images/network-modifications/illustrations/delete-attaching-line-illustration.svg -------------------------------------------------------------------------------- /src/images/network-modifications/illustrations/delete-voltage-level-on-line.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gridsuite/gridstudy-app/HEAD/src/images/network-modifications/illustrations/delete-voltage-level-on-line.svg -------------------------------------------------------------------------------- /src/images/network-modifications/illustrations/line-attach-to-voltage-level.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gridsuite/gridstudy-app/HEAD/src/images/network-modifications/illustrations/line-attach-to-voltage-level.svg -------------------------------------------------------------------------------- /src/images/network-modifications/illustrations/line-split-with-voltage-level.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gridsuite/gridstudy-app/HEAD/src/images/network-modifications/illustrations/line-split-with-voltage-level.svg -------------------------------------------------------------------------------- /src/images/network-modifications/illustrations/lines-attach-to-split-lines.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gridsuite/gridstudy-app/HEAD/src/images/network-modifications/illustrations/lines-attach-to-split-lines.svg -------------------------------------------------------------------------------- /src/index.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gridsuite/gridstudy-app/HEAD/src/index.css -------------------------------------------------------------------------------- /src/index.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gridsuite/gridstudy-app/HEAD/src/index.jsx -------------------------------------------------------------------------------- /src/module-file-saver.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gridsuite/gridstudy-app/HEAD/src/module-file-saver.d.ts -------------------------------------------------------------------------------- /src/module-mui.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gridsuite/gridstudy-app/HEAD/src/module-mui.d.ts -------------------------------------------------------------------------------- /src/nad-index.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gridsuite/gridstudy-app/HEAD/src/nad-index.css -------------------------------------------------------------------------------- /src/plugins/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gridsuite/gridstudy-app/HEAD/src/plugins/README.md -------------------------------------------------------------------------------- /src/plugins/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gridsuite/gridstudy-app/HEAD/src/plugins/index.js -------------------------------------------------------------------------------- /src/plugins/translations/en.json: -------------------------------------------------------------------------------- 1 | {} 2 | -------------------------------------------------------------------------------- /src/plugins/translations/fr.json: -------------------------------------------------------------------------------- 1 | {} 2 | -------------------------------------------------------------------------------- /src/plugins/translations/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gridsuite/gridstudy-app/HEAD/src/plugins/translations/index.js -------------------------------------------------------------------------------- /src/redux/actions.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gridsuite/gridstudy-app/HEAD/src/redux/actions.ts -------------------------------------------------------------------------------- /src/redux/reducer.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gridsuite/gridstudy-app/HEAD/src/redux/reducer.ts -------------------------------------------------------------------------------- /src/redux/session-storage/debug-state.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gridsuite/gridstudy-app/HEAD/src/redux/session-storage/debug-state.ts -------------------------------------------------------------------------------- /src/redux/session-storage/diagram-grid-layout.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gridsuite/gridstudy-app/HEAD/src/redux/session-storage/diagram-grid-layout.ts -------------------------------------------------------------------------------- /src/redux/session-storage/diagram-state.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gridsuite/gridstudy-app/HEAD/src/redux/session-storage/diagram-state.ts -------------------------------------------------------------------------------- /src/redux/session-storage/export-network-state.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gridsuite/gridstudy-app/HEAD/src/redux/session-storage/export-network-state.ts -------------------------------------------------------------------------------- /src/redux/session-storage/local-storage.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gridsuite/gridstudy-app/HEAD/src/redux/session-storage/local-storage.ts -------------------------------------------------------------------------------- /src/redux/session-storage/search-equipment-history.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gridsuite/gridstudy-app/HEAD/src/redux/session-storage/search-equipment-history.ts -------------------------------------------------------------------------------- /src/redux/slices/workspace-helpers.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gridsuite/gridstudy-app/HEAD/src/redux/slices/workspace-helpers.ts -------------------------------------------------------------------------------- /src/redux/slices/workspace-selectors.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gridsuite/gridstudy-app/HEAD/src/redux/slices/workspace-selectors.ts -------------------------------------------------------------------------------- /src/redux/slices/workspace-slice.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gridsuite/gridstudy-app/HEAD/src/redux/slices/workspace-slice.ts -------------------------------------------------------------------------------- /src/redux/slices/workspace-storage.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gridsuite/gridstudy-app/HEAD/src/redux/slices/workspace-storage.ts -------------------------------------------------------------------------------- /src/redux/store.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gridsuite/gridstudy-app/HEAD/src/redux/store.ts -------------------------------------------------------------------------------- /src/redux/user-store.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gridsuite/gridstudy-app/HEAD/src/redux/user-store.ts -------------------------------------------------------------------------------- /src/redux/utils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gridsuite/gridstudy-app/HEAD/src/redux/utils.ts -------------------------------------------------------------------------------- /src/services/directory.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gridsuite/gridstudy-app/HEAD/src/services/directory.ts -------------------------------------------------------------------------------- /src/services/dynamic-security-analysis.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gridsuite/gridstudy-app/HEAD/src/services/dynamic-security-analysis.ts -------------------------------------------------------------------------------- /src/services/dynamic-simulation.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gridsuite/gridstudy-app/HEAD/src/services/dynamic-simulation.ts -------------------------------------------------------------------------------- /src/services/explore.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gridsuite/gridstudy-app/HEAD/src/services/explore.ts -------------------------------------------------------------------------------- /src/services/loadflow.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gridsuite/gridstudy-app/HEAD/src/services/loadflow.ts -------------------------------------------------------------------------------- /src/services/network-conversion.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gridsuite/gridstudy-app/HEAD/src/services/network-conversion.ts -------------------------------------------------------------------------------- /src/services/network-modification-types.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gridsuite/gridstudy-app/HEAD/src/services/network-modification-types.ts -------------------------------------------------------------------------------- /src/services/network-modification.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gridsuite/gridstudy-app/HEAD/src/services/network-modification.ts -------------------------------------------------------------------------------- /src/services/root-network.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gridsuite/gridstudy-app/HEAD/src/services/root-network.ts -------------------------------------------------------------------------------- /src/services/sensitivity-analysis.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gridsuite/gridstudy-app/HEAD/src/services/sensitivity-analysis.ts -------------------------------------------------------------------------------- /src/services/short-circuit-analysis.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gridsuite/gridstudy-app/HEAD/src/services/short-circuit-analysis.ts -------------------------------------------------------------------------------- /src/services/study-config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gridsuite/gridstudy-app/HEAD/src/services/study-config.ts -------------------------------------------------------------------------------- /src/services/study/contingency-list.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gridsuite/gridstudy-app/HEAD/src/services/study/contingency-list.ts -------------------------------------------------------------------------------- /src/services/study/dynamic-security-analysis.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gridsuite/gridstudy-app/HEAD/src/services/study/dynamic-security-analysis.ts -------------------------------------------------------------------------------- /src/services/study/dynamic-security-analysis.type.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gridsuite/gridstudy-app/HEAD/src/services/study/dynamic-security-analysis.type.ts -------------------------------------------------------------------------------- /src/services/study/dynamic-simulation.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gridsuite/gridstudy-app/HEAD/src/services/study/dynamic-simulation.ts -------------------------------------------------------------------------------- /src/services/study/dynamic-simulation.type.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gridsuite/gridstudy-app/HEAD/src/services/study/dynamic-simulation.type.ts -------------------------------------------------------------------------------- /src/services/study/filter.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gridsuite/gridstudy-app/HEAD/src/services/study/filter.ts -------------------------------------------------------------------------------- /src/services/study/geo-data.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gridsuite/gridstudy-app/HEAD/src/services/study/geo-data.ts -------------------------------------------------------------------------------- /src/services/study/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gridsuite/gridstudy-app/HEAD/src/services/study/index.ts -------------------------------------------------------------------------------- /src/services/study/loadflow.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gridsuite/gridstudy-app/HEAD/src/services/study/loadflow.ts -------------------------------------------------------------------------------- /src/services/study/network-map.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gridsuite/gridstudy-app/HEAD/src/services/study/network-map.ts -------------------------------------------------------------------------------- /src/services/study/network-map.type.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gridsuite/gridstudy-app/HEAD/src/services/study/network-map.type.ts -------------------------------------------------------------------------------- /src/services/study/network-modifications.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gridsuite/gridstudy-app/HEAD/src/services/study/network-modifications.ts -------------------------------------------------------------------------------- /src/services/study/network.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gridsuite/gridstudy-app/HEAD/src/services/study/network.ts -------------------------------------------------------------------------------- /src/services/study/node-alias.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gridsuite/gridstudy-app/HEAD/src/services/study/node-alias.ts -------------------------------------------------------------------------------- /src/services/study/pcc-min.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gridsuite/gridstudy-app/HEAD/src/services/study/pcc-min.ts -------------------------------------------------------------------------------- /src/services/study/security-analysis.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gridsuite/gridstudy-app/HEAD/src/services/study/security-analysis.ts -------------------------------------------------------------------------------- /src/services/study/sensitivity-analysis.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gridsuite/gridstudy-app/HEAD/src/services/study/sensitivity-analysis.ts -------------------------------------------------------------------------------- /src/services/study/sensitivity-analysis.type.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gridsuite/gridstudy-app/HEAD/src/services/study/sensitivity-analysis.type.ts -------------------------------------------------------------------------------- /src/services/study/short-circuit-analysis.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gridsuite/gridstudy-app/HEAD/src/services/study/short-circuit-analysis.ts -------------------------------------------------------------------------------- /src/services/study/spreadsheet.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gridsuite/gridstudy-app/HEAD/src/services/study/spreadsheet.ts -------------------------------------------------------------------------------- /src/services/study/state-estimation.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gridsuite/gridstudy-app/HEAD/src/services/study/state-estimation.ts -------------------------------------------------------------------------------- /src/services/study/study-config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gridsuite/gridstudy-app/HEAD/src/services/study/study-config.ts -------------------------------------------------------------------------------- /src/services/study/study.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gridsuite/gridstudy-app/HEAD/src/services/study/study.ts -------------------------------------------------------------------------------- /src/services/study/tree-subtree.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gridsuite/gridstudy-app/HEAD/src/services/study/tree-subtree.ts -------------------------------------------------------------------------------- /src/services/study/voltage-init.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gridsuite/gridstudy-app/HEAD/src/services/study/voltage-init.ts -------------------------------------------------------------------------------- /src/services/utils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gridsuite/gridstudy-app/HEAD/src/services/utils.ts -------------------------------------------------------------------------------- /src/services/utils.type.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gridsuite/gridstudy-app/HEAD/src/services/utils.type.ts -------------------------------------------------------------------------------- /src/services/voltage-init.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gridsuite/gridstudy-app/HEAD/src/services/voltage-init.ts -------------------------------------------------------------------------------- /src/styles/dark-theme-css-vars.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gridsuite/gridstudy-app/HEAD/src/styles/dark-theme-css-vars.ts -------------------------------------------------------------------------------- /src/styles/light-theme-css-vars.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gridsuite/gridstudy-app/HEAD/src/styles/light-theme-css-vars.ts -------------------------------------------------------------------------------- /src/translations/dynamic/csv-locale-en.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gridsuite/gridstudy-app/HEAD/src/translations/dynamic/csv-locale-en.ts -------------------------------------------------------------------------------- /src/translations/dynamic/csv-locale-fr.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gridsuite/gridstudy-app/HEAD/src/translations/dynamic/csv-locale-fr.ts -------------------------------------------------------------------------------- /src/translations/dynamic/errors-locale-en.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gridsuite/gridstudy-app/HEAD/src/translations/dynamic/errors-locale-en.ts -------------------------------------------------------------------------------- /src/translations/dynamic/errors-locale-fr.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gridsuite/gridstudy-app/HEAD/src/translations/dynamic/errors-locale-fr.ts -------------------------------------------------------------------------------- /src/translations/dynamic/events-locale-en.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gridsuite/gridstudy-app/HEAD/src/translations/dynamic/events-locale-en.ts -------------------------------------------------------------------------------- /src/translations/dynamic/events-locale-fr.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gridsuite/gridstudy-app/HEAD/src/translations/dynamic/events-locale-fr.ts -------------------------------------------------------------------------------- /src/translations/dynamic/filter-locale-en.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gridsuite/gridstudy-app/HEAD/src/translations/dynamic/filter-locale-en.ts -------------------------------------------------------------------------------- /src/translations/dynamic/filter-locale-fr.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gridsuite/gridstudy-app/HEAD/src/translations/dynamic/filter-locale-fr.ts -------------------------------------------------------------------------------- /src/translations/dynamic/menu-locale-en.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gridsuite/gridstudy-app/HEAD/src/translations/dynamic/menu-locale-en.ts -------------------------------------------------------------------------------- /src/translations/dynamic/menu-locale-fr.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gridsuite/gridstudy-app/HEAD/src/translations/dynamic/menu-locale-fr.ts -------------------------------------------------------------------------------- /src/translations/dynamic/table-locale-en.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gridsuite/gridstudy-app/HEAD/src/translations/dynamic/table-locale-en.ts -------------------------------------------------------------------------------- /src/translations/dynamic/table-locale-fr.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gridsuite/gridstudy-app/HEAD/src/translations/dynamic/table-locale-fr.ts -------------------------------------------------------------------------------- /src/translations/en.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gridsuite/gridstudy-app/HEAD/src/translations/en.json -------------------------------------------------------------------------------- /src/translations/external/backend-locale-en.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gridsuite/gridstudy-app/HEAD/src/translations/external/backend-locale-en.ts -------------------------------------------------------------------------------- /src/translations/external/backend-locale-fr.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gridsuite/gridstudy-app/HEAD/src/translations/external/backend-locale-fr.ts -------------------------------------------------------------------------------- /src/translations/external/dynamic-mapping-models-en.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gridsuite/gridstudy-app/HEAD/src/translations/external/dynamic-mapping-models-en.ts -------------------------------------------------------------------------------- /src/translations/external/dynamic-mapping-models-fr.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gridsuite/gridstudy-app/HEAD/src/translations/external/dynamic-mapping-models-fr.ts -------------------------------------------------------------------------------- /src/translations/fr.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gridsuite/gridstudy-app/HEAD/src/translations/fr.json -------------------------------------------------------------------------------- /src/translations/grid-en.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gridsuite/gridstudy-app/HEAD/src/translations/grid-en.ts -------------------------------------------------------------------------------- /src/translations/grid-fr.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gridsuite/gridstudy-app/HEAD/src/translations/grid-fr.ts -------------------------------------------------------------------------------- /src/translations/not-intl/README.txt: -------------------------------------------------------------------------------- 1 | Translations not use with react-intl system. 2 | -------------------------------------------------------------------------------- /src/translations/not-intl/aggrid-locales.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gridsuite/gridstudy-app/HEAD/src/translations/not-intl/aggrid-locales.ts -------------------------------------------------------------------------------- /src/translations/spreadsheet-en.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gridsuite/gridstudy-app/HEAD/src/translations/spreadsheet-en.ts -------------------------------------------------------------------------------- /src/translations/spreadsheet-fr.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gridsuite/gridstudy-app/HEAD/src/translations/spreadsheet-fr.ts -------------------------------------------------------------------------------- /src/types/PropsWithoutChildren.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gridsuite/gridstudy-app/HEAD/src/types/PropsWithoutChildren.d.ts -------------------------------------------------------------------------------- /src/types/custom-aggrid-types.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gridsuite/gridstudy-app/HEAD/src/types/custom-aggrid-types.ts -------------------------------------------------------------------------------- /src/types/filter-lib/filter.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gridsuite/gridstudy-app/HEAD/src/types/filter-lib/filter.ts -------------------------------------------------------------------------------- /src/types/notification-types.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gridsuite/gridstudy-app/HEAD/src/types/notification-types.ts -------------------------------------------------------------------------------- /src/utils/UIconstants.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gridsuite/gridstudy-app/HEAD/src/utils/UIconstants.ts -------------------------------------------------------------------------------- /src/utils/aggrid-headers-utils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gridsuite/gridstudy-app/HEAD/src/utils/aggrid-headers-utils.ts -------------------------------------------------------------------------------- /src/utils/colors.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gridsuite/gridstudy-app/HEAD/src/utils/colors.ts -------------------------------------------------------------------------------- /src/utils/compute-title.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gridsuite/gridstudy-app/HEAD/src/utils/compute-title.ts -------------------------------------------------------------------------------- /src/utils/config-params.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gridsuite/gridstudy-app/HEAD/src/utils/config-params.ts -------------------------------------------------------------------------------- /src/utils/dialogs.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gridsuite/gridstudy-app/HEAD/src/utils/dialogs.tsx -------------------------------------------------------------------------------- /src/utils/directories-notification-type.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gridsuite/gridstudy-app/HEAD/src/utils/directories-notification-type.ts -------------------------------------------------------------------------------- /src/utils/export-network-utils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gridsuite/gridstudy-app/HEAD/src/utils/export-network-utils.ts -------------------------------------------------------------------------------- /src/utils/http-status-code.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gridsuite/gridstudy-app/HEAD/src/utils/http-status-code.ts -------------------------------------------------------------------------------- /src/utils/report/report-log.mapper.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gridsuite/gridstudy-app/HEAD/src/utils/report/report-log.mapper.ts -------------------------------------------------------------------------------- /src/utils/report/report-severity.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gridsuite/gridstudy-app/HEAD/src/utils/report/report-severity.ts -------------------------------------------------------------------------------- /src/utils/report/report-tree.mapper.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gridsuite/gridstudy-app/HEAD/src/utils/report/report-tree.mapper.ts -------------------------------------------------------------------------------- /src/utils/report/report.constant.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gridsuite/gridstudy-app/HEAD/src/utils/report/report.constant.ts -------------------------------------------------------------------------------- /src/utils/report/report.type.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gridsuite/gridstudy-app/HEAD/src/utils/report/report.type.ts -------------------------------------------------------------------------------- /src/utils/rounding.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gridsuite/gridstudy-app/HEAD/src/utils/rounding.ts -------------------------------------------------------------------------------- /src/utils/spreadsheet-equipments-mapper.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gridsuite/gridstudy-app/HEAD/src/utils/spreadsheet-equipments-mapper.ts -------------------------------------------------------------------------------- /src/utils/store-sort-filter-fields.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gridsuite/gridstudy-app/HEAD/src/utils/store-sort-filter-fields.ts -------------------------------------------------------------------------------- /src/utils/types-utils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gridsuite/gridstudy-app/HEAD/src/utils/types-utils.ts -------------------------------------------------------------------------------- /src/vite-env.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gridsuite/gridstudy-app/HEAD/src/vite-env.d.ts -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gridsuite/gridstudy-app/HEAD/tsconfig.json -------------------------------------------------------------------------------- /vite.config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gridsuite/gridstudy-app/HEAD/vite.config.ts --------------------------------------------------------------------------------