@gridsuite/commons-ui 0.72.3 → 0.73.1

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/README.md CHANGED
@@ -33,6 +33,7 @@ you need to follow the steps below:
33
33
  - [Make a release action](https://github.com/gridsuite/commons-ui/actions/workflows/release.yml)
34
34
  - In the 'run workflow' combobox select, let the branch on main
35
35
  - Enter the type of evolution (major | minor | patch)
36
+ - Enter your NPM access token (it must be an **automation** access token to bypass 2FA, see the [access token documentation](https://docs.npmjs.com/creating-and-viewing-access-tokens) for details)
36
37
  - Click 'run workflow'
37
38
 
38
39
  #### License Headers and dependencies checking
@@ -12,7 +12,7 @@ export interface FlatParametersProps {
12
12
  paramsAsArray: Parameter[];
13
13
  initValues: Record<string, string>;
14
14
  onChange: (paramName: string, value: unknown, isInEdition: boolean) => void;
15
- variant: TextFieldProps['variant'];
15
+ variant?: TextFieldProps['variant'];
16
16
  showSeparator?: boolean;
17
17
  selectionWithDialog?: (param: Parameter) => boolean;
18
18
  }
@@ -58,4 +58,5 @@ export declare const networkModificationsEn: {
58
58
  'network_modifications.TABULAR_CREATION': string;
59
59
  'network_modifications.tabular.GENERATOR_CREATION': string;
60
60
  'network_modifications.LCC_CREATION': string;
61
+ 'network_modifications.CSPR_CREATION': string;
61
62
  };
@@ -51,7 +51,8 @@ const networkModificationsEn = {
51
51
  "network_modifications.tabular.SUBSTATION_MODIFICATION": "substation modifications",
52
52
  "network_modifications.TABULAR_CREATION": "Tabular creation - {computedLabel}",
53
53
  "network_modifications.tabular.GENERATOR_CREATION": "generator creations",
54
- "network_modifications.LCC_CREATION": "Creating HVDC (LCC) {computedLabel}"
54
+ "network_modifications.LCC_CREATION": "Creating HVDC (LCC) {computedLabel}",
55
+ "network_modifications.CSPR_CREATION": "Creating CSPR {computedLabel}"
55
56
  };
56
57
  export {
57
58
  networkModificationsEn
@@ -58,4 +58,5 @@ export declare const networkModificationsFr: {
58
58
  'network_modifications.TABULAR_CREATION': string;
59
59
  'network_modifications.tabular.GENERATOR_CREATION': string;
60
60
  'network_modifications.LCC_CREATION': string;
61
+ 'network_modifications.STATIC_VAR_COMPENSATOR_CREATION': string;
61
62
  };
@@ -51,7 +51,8 @@ const networkModificationsFr = {
51
51
  "network_modifications.tabular.SUBSTATION_MODIFICATION": "modifications de sites",
52
52
  "network_modifications.TABULAR_CREATION": "Création tabulaire - {computedLabel}",
53
53
  "network_modifications.tabular.GENERATOR_CREATION": "créations de générateurs",
54
- "network_modifications.LCC_CREATION": "Création de la HVDC (LCC) {computedLabel}"
54
+ "network_modifications.LCC_CREATION": "Création de la HVDC (LCC) {computedLabel}",
55
+ "network_modifications.STATIC_VAR_COMPENSATOR_CREATION": "Création de CSPR {computedLabel}"
55
56
  };
56
57
  export {
57
58
  networkModificationsFr
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@gridsuite/commons-ui",
3
- "version": "0.72.3",
3
+ "version": "0.73.1",
4
4
  "description": "common react components for gridsuite applications",
5
5
  "engines": {
6
6
  "npm": ">=9",