@gridsuite/commons-ui 0.55.0 → 0.57.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (162) hide show
  1. package/dist/assets/criteria-based-filter-edition-dialog.css +168 -0
  2. package/dist/chunks/criteria-based-filter-edition-dialog.BEXoNmzz.js +1673 -0
  3. package/dist/chunks/filter-properties.GRon8-ML.js +195 -0
  4. package/dist/components/DirectoryItemSelector/directory-item-selector.d.ts +13 -3
  5. package/dist/components/DirectoryItemSelector/directory-item-selector.js +14 -10
  6. package/dist/components/TopBar/TopBar.js +371 -429
  7. package/dist/components/dialogs/custom-mui-dialog.d.ts +21 -0
  8. package/dist/components/dialogs/custom-mui-dialog.js +87 -0
  9. package/dist/components/dialogs/description-modification-dialog.d.ts +11 -0
  10. package/dist/components/dialogs/description-modification-dialog.js +71 -0
  11. package/dist/components/dialogs/popup-confirmation-dialog.d.ts +11 -0
  12. package/dist/components/dialogs/popup-confirmation-dialog.js +38 -0
  13. package/dist/components/filter/constants/equipment-types.d.ts +72 -0
  14. package/dist/components/filter/constants/equipment-types.js +63 -0
  15. package/dist/components/filter/constants/expert-filter-constants.d.ts +551 -0
  16. package/dist/components/filter/constants/expert-filter-constants.js +668 -0
  17. package/dist/components/filter/constants/field-constants.d.ts +45 -0
  18. package/dist/components/filter/constants/field-constants.js +43 -0
  19. package/dist/components/filter/constants/filter-constants.d.ts +21 -0
  20. package/dist/components/filter/constants/filter-constants.js +10 -0
  21. package/dist/components/filter/criteria-based/criteria-based-filter-edition-dialog.d.ts +29 -0
  22. package/dist/components/filter/criteria-based/criteria-based-filter-edition-dialog.js +19 -0
  23. package/dist/components/filter/criteria-based/criteria-based-filter-form.d.ts +15 -0
  24. package/dist/components/filter/criteria-based/criteria-based-filter-form.js +33 -0
  25. package/dist/components/filter/criteria-based/criteria-based-filter-utils.d.ts +37 -0
  26. package/dist/components/filter/criteria-based/criteria-based-filter-utils.js +127 -0
  27. package/dist/components/filter/criteria-based/criteria-based-form.d.ts +7 -0
  28. package/dist/components/filter/criteria-based/criteria-based-form.js +50 -0
  29. package/dist/components/filter/criteria-based/filter-free-properties.d.ts +10 -0
  30. package/dist/components/filter/criteria-based/filter-free-properties.js +15 -0
  31. package/dist/components/filter/criteria-based/filter-properties.d.ts +21 -0
  32. package/dist/components/filter/criteria-based/filter-properties.js +19 -0
  33. package/dist/components/filter/criteria-based/filter-property.d.ts +19 -0
  34. package/dist/components/filter/criteria-based/filter-property.js +67 -0
  35. package/dist/components/filter/expert/expert-filter-edition-dialog.d.ts +28 -0
  36. package/dist/components/filter/expert/expert-filter-edition-dialog.js +20 -0
  37. package/dist/components/filter/expert/expert-filter-form.d.ts +21 -0
  38. package/dist/components/filter/expert/expert-filter-form.js +22 -0
  39. package/dist/components/filter/expert/expert-filter-utils.d.ts +91 -0
  40. package/dist/components/filter/expert/expert-filter-utils.js +304 -0
  41. package/dist/components/filter/expert/expert-filter.type.d.ts +114 -0
  42. package/dist/components/filter/expert/expert-filter.type.js +104 -0
  43. package/dist/components/filter/explicit-naming/explicit-naming-filter-edition-dialog.d.ts +22 -0
  44. package/dist/components/filter/explicit-naming/explicit-naming-filter-edition-dialog.js +19 -0
  45. package/dist/components/filter/explicit-naming/explicit-naming-filter-form.d.ts +22 -0
  46. package/dist/components/filter/explicit-naming/explicit-naming-filter-form.js +23 -0
  47. package/dist/components/filter/filter-context.d.ts +12 -0
  48. package/dist/components/filter/filter-context.js +10 -0
  49. package/dist/components/filter/filter-creation-dialog.d.ts +21 -0
  50. package/dist/components/filter/filter-creation-dialog.js +17 -0
  51. package/dist/components/filter/filter-form.d.ts +11 -0
  52. package/dist/components/filter/filter-form.js +14 -0
  53. package/dist/components/filter/utils/criteria-based-utils.d.ts +28 -0
  54. package/dist/components/filter/utils/criteria-based-utils.js +197 -0
  55. package/dist/components/filter/utils/filters-utils.d.ts +5 -0
  56. package/dist/components/filter/utils/filters-utils.js +99 -0
  57. package/dist/components/inputs/select-clearable.d.ts +14 -0
  58. package/dist/components/inputs/select-clearable.js +40 -0
  59. package/dist/components/react-hook-form/ExpandingTextField.d.ts +1 -1
  60. package/dist/components/react-hook-form/ExpandingTextField.js +0 -37
  61. package/dist/components/react-hook-form/ag-grid-table-rhf/bottom-right-buttons.d.ts +17 -0
  62. package/dist/components/react-hook-form/ag-grid-table-rhf/bottom-right-buttons.js +15 -0
  63. package/dist/components/react-hook-form/ag-grid-table-rhf/cell-editors/numericEditor.d.ts +23 -0
  64. package/dist/components/react-hook-form/ag-grid-table-rhf/cell-editors/numericEditor.js +70 -0
  65. package/dist/components/react-hook-form/ag-grid-table-rhf/csv-uploader/csv-uploader.d.ts +16 -0
  66. package/dist/components/react-hook-form/ag-grid-table-rhf/csv-uploader/csv-uploader.js +69 -0
  67. package/dist/components/react-hook-form/ag-grid-table-rhf/custom-ag-grid-table.d.ts +23 -0
  68. package/dist/components/react-hook-form/ag-grid-table-rhf/custom-ag-grid-table.js +15 -0
  69. package/dist/components/react-hook-form/autocomplete-input.d.ts +17 -29
  70. package/dist/components/react-hook-form/autocomplete-input.js +4 -15
  71. package/dist/components/react-hook-form/autocomplete-inputs/multiple-autocomplete-input.d.ts +2 -0
  72. package/dist/components/react-hook-form/autocomplete-inputs/multiple-autocomplete-input.js +46 -0
  73. package/dist/components/react-hook-form/directory-items-input.d.ts +0 -3
  74. package/dist/components/react-hook-form/directory-items-input.js +5 -6
  75. package/dist/components/react-hook-form/error-management/error-input.d.ts +13 -4
  76. package/dist/components/react-hook-form/error-management/error-input.js +7 -7
  77. package/dist/components/react-hook-form/error-management/field-error-alert.d.ts +6 -3
  78. package/dist/components/react-hook-form/error-management/field-error-alert.js +3 -1
  79. package/dist/components/react-hook-form/numbers/float-input.d.ts +5 -17
  80. package/dist/components/react-hook-form/numbers/float-input.js +3 -5
  81. package/dist/components/react-hook-form/numbers/integer-input.d.ts +15 -12
  82. package/dist/components/react-hook-form/numbers/utils.d.ts +8 -2
  83. package/dist/components/react-hook-form/provider/custom-form-provider.d.ts +1 -0
  84. package/dist/components/react-hook-form/provider/custom-form-provider.js +12 -3
  85. package/dist/components/react-hook-form/radio-input.d.ts +14 -17
  86. package/dist/components/react-hook-form/radio-input.js +7 -9
  87. package/dist/components/react-hook-form/range-input.d.ts +54 -0
  88. package/dist/components/react-hook-form/range-input.js +118 -0
  89. package/dist/components/react-hook-form/select-inputs/countries-input.d.ts +8 -0
  90. package/dist/components/react-hook-form/select-inputs/countries-input.js +36 -0
  91. package/dist/components/react-hook-form/select-inputs/input-with-popup-confirmation.d.ts +2 -0
  92. package/dist/components/react-hook-form/select-inputs/input-with-popup-confirmation.js +61 -0
  93. package/dist/components/react-hook-form/select-inputs/mui-select-input.d.ts +12 -0
  94. package/dist/components/react-hook-form/select-inputs/mui-select-input.js +25 -0
  95. package/dist/components/react-hook-form/select-inputs/select-input.d.ts +9 -0
  96. package/dist/components/react-hook-form/select-inputs/select-input.js +37 -0
  97. package/dist/components/react-hook-form/text-input.d.ts +23 -32
  98. package/dist/components/react-hook-form/text-input.js +6 -20
  99. package/dist/components/react-hook-form/unique-name-input.d.ts +21 -0
  100. package/dist/components/react-hook-form/unique-name-input.js +129 -0
  101. package/dist/components/react-hook-form/utils/cancel-button.d.ts +9 -8
  102. package/dist/components/react-hook-form/utils/field-label.d.ts +12 -5
  103. package/dist/components/react-hook-form/utils/field-label.js +5 -1
  104. package/dist/components/react-hook-form/utils/functions.d.ts +12 -4
  105. package/dist/components/react-hook-form/utils/functions.js +21 -1
  106. package/dist/components/react-hook-form/utils/submit-button.d.ts +9 -8
  107. package/dist/components/react-hook-form/utils/text-field-with-adornment.d.ts +11 -11
  108. package/dist/components/react-hook-form/utils/text-field-with-adornment.js +18 -23
  109. package/dist/components/react-query-builder-inputs/add-button.d.ts +8 -0
  110. package/dist/components/react-query-builder-inputs/add-button.js +17 -0
  111. package/dist/components/react-query-builder-inputs/combinator-selector.d.ts +5 -0
  112. package/dist/components/react-query-builder-inputs/combinator-selector.js +38 -0
  113. package/dist/components/react-query-builder-inputs/country-value-editor.d.ts +5 -0
  114. package/dist/components/react-query-builder-inputs/country-value-editor.js +46 -0
  115. package/dist/components/react-query-builder-inputs/custom-react-query-builder.d.ts +8 -0
  116. package/dist/components/react-query-builder-inputs/custom-react-query-builder.js +21 -0
  117. package/dist/components/react-query-builder-inputs/element-value-editor.d.ts +14 -0
  118. package/dist/components/react-query-builder-inputs/element-value-editor.js +69 -0
  119. package/dist/components/react-query-builder-inputs/property-value-editor.d.ts +9 -0
  120. package/dist/components/react-query-builder-inputs/property-value-editor.js +100 -0
  121. package/dist/components/react-query-builder-inputs/remove-button.d.ts +5 -0
  122. package/dist/components/react-query-builder-inputs/remove-button.js +9 -0
  123. package/dist/components/react-query-builder-inputs/text-value-editor.d.ts +5 -0
  124. package/dist/components/react-query-builder-inputs/text-value-editor.js +34 -0
  125. package/dist/components/react-query-builder-inputs/translated-value-editor.d.ts +5 -0
  126. package/dist/components/react-query-builder-inputs/translated-value-editor.js +58 -0
  127. package/dist/components/react-query-builder-inputs/use-convert-value.d.ts +9 -0
  128. package/dist/components/react-query-builder-inputs/use-convert-value.js +24 -0
  129. package/dist/components/react-query-builder-inputs/use-valid.d.ts +7 -0
  130. package/dist/components/react-query-builder-inputs/use-valid.js +13 -0
  131. package/dist/components/react-query-builder-inputs/value-editor.d.ts +5 -0
  132. package/dist/components/react-query-builder-inputs/value-editor.js +18 -0
  133. package/dist/components/react-query-builder-inputs/value-selector.d.ts +4 -0
  134. package/dist/components/react-query-builder-inputs/value-selector.js +14 -0
  135. package/dist/components/translations/filter-en.d.ts +22 -0
  136. package/dist/components/translations/filter-en.js +23 -0
  137. package/dist/components/translations/filter-fr.d.ts +22 -0
  138. package/dist/components/translations/filter-fr.js +23 -0
  139. package/dist/hooks/localized-countries-hook.d.ts +6 -0
  140. package/dist/hooks/localized-countries-hook.js +45 -0
  141. package/dist/hooks/predefined-properties-hook.d.ts +18 -0
  142. package/dist/hooks/predefined-properties-hook.js +43 -0
  143. package/dist/hooks/useDebounce.d.ts +7 -1
  144. package/dist/hooks/useSnackMessage.d.ts +23 -5
  145. package/dist/hooks/useSnackMessage.js +14 -12
  146. package/dist/index.d.ts +89 -142
  147. package/dist/index.js +172 -91
  148. package/dist/utils/FetchStatus.d.ts +12 -0
  149. package/dist/utils/FetchStatus.js +9 -0
  150. package/dist/utils/conversion-utils.d.ts +12 -0
  151. package/dist/utils/conversion-utils.js +22 -0
  152. package/dist/utils/equipment-types-for-predefined-properties-mapper.d.ts +3 -0
  153. package/dist/utils/equipment-types-for-predefined-properties-mapper.js +31 -0
  154. package/dist/utils/functions.d.ts +14 -0
  155. package/dist/utils/functions.js +16 -0
  156. package/dist/utils/types.d.ts +21 -0
  157. package/dist/utils/types.js +1 -0
  158. package/dist/utils/yup-config.d.ts +8 -0
  159. package/dist/utils/yup-config.js +16 -0
  160. package/package.json +15 -3
  161. package/dist/components/react-hook-form/select-input.d.ts +0 -17
  162. package/dist/components/react-hook-form/select-input.js +0 -30
@@ -0,0 +1,551 @@
1
+ import { Field } from 'react-querybuilder';
2
+ import { CombinatorType, DataType, FieldType, OperatorType } from '../expert/expert-filter.type.ts';
3
+
4
+ export declare enum RULES {
5
+ EMPTY_RULE = "emptyRule",
6
+ EMPTY_GROUP = "emptyGroup",
7
+ INCORRECT_RULE = "incorrectRule",
8
+ BETWEEN_RULE = "betweenRule"
9
+ }
10
+ export declare const EXPERT_FILTER_EQUIPMENTS: {
11
+ SUBSTATION: {
12
+ id: string;
13
+ label: string;
14
+ };
15
+ VOLTAGE_LEVEL: {
16
+ id: string;
17
+ label: string;
18
+ };
19
+ LINE: {
20
+ id: string;
21
+ label: string;
22
+ };
23
+ TWO_WINDINGS_TRANSFORMER: {
24
+ id: string;
25
+ label: string;
26
+ };
27
+ GENERATOR: {
28
+ id: string;
29
+ label: string;
30
+ };
31
+ LOAD: {
32
+ id: string;
33
+ label: string;
34
+ };
35
+ BATTERY: {
36
+ id: string;
37
+ label: string;
38
+ };
39
+ SHUNT_COMPENSATOR: {
40
+ id: string;
41
+ label: string;
42
+ };
43
+ };
44
+ export declare const ENERGY_SOURCE_OPTIONS: {
45
+ name: string;
46
+ label: string;
47
+ }[];
48
+ export declare const SHUNT_COMPENSATOR_TYPE_OPTIONS: {
49
+ name: string;
50
+ label: string;
51
+ }[];
52
+ export declare const LOAD_TYPE_OPTIONS: {
53
+ name: string;
54
+ label: string;
55
+ }[];
56
+ export declare const RATIO_REGULATION_MODE_OPTIONS: {
57
+ name: string;
58
+ label: string;
59
+ }[];
60
+ export declare const PHASE_REGULATION_MODE_OPTIONS: {
61
+ name: string;
62
+ label: string;
63
+ }[];
64
+ export declare const OPERATOR_OPTIONS: {
65
+ EQUALS: {
66
+ name: string;
67
+ customName: OperatorType;
68
+ label: string;
69
+ };
70
+ NOT_EQUALS: {
71
+ name: string;
72
+ customName: OperatorType;
73
+ label: string;
74
+ };
75
+ EXISTS: {
76
+ name: OperatorType;
77
+ customName: OperatorType;
78
+ label: string;
79
+ };
80
+ NOT_EXISTS: {
81
+ name: OperatorType;
82
+ customName: OperatorType;
83
+ label: string;
84
+ };
85
+ LOWER: {
86
+ name: string;
87
+ customName: OperatorType;
88
+ label: string;
89
+ };
90
+ LOWER_OR_EQUALS: {
91
+ name: string;
92
+ customName: OperatorType;
93
+ label: string;
94
+ };
95
+ GREATER: {
96
+ name: string;
97
+ customName: OperatorType;
98
+ label: string;
99
+ };
100
+ GREATER_OR_EQUALS: {
101
+ name: string;
102
+ customName: OperatorType;
103
+ label: string;
104
+ };
105
+ BETWEEN: {
106
+ name: string;
107
+ customName: OperatorType;
108
+ label: string;
109
+ };
110
+ IN: {
111
+ name: string;
112
+ customName: OperatorType;
113
+ label: string;
114
+ };
115
+ IS: {
116
+ name: OperatorType;
117
+ customName: OperatorType;
118
+ label: string;
119
+ };
120
+ CONTAINS: {
121
+ name: string;
122
+ customName: OperatorType;
123
+ label: string;
124
+ };
125
+ BEGINS_WITH: {
126
+ name: string;
127
+ customName: OperatorType;
128
+ label: string;
129
+ };
130
+ ENDS_WITH: {
131
+ name: string;
132
+ customName: OperatorType;
133
+ label: string;
134
+ };
135
+ IS_PART_OF: {
136
+ name: OperatorType;
137
+ customName: OperatorType;
138
+ label: string;
139
+ };
140
+ IS_NOT_PART_OF: {
141
+ name: OperatorType;
142
+ customName: OperatorType;
143
+ label: string;
144
+ };
145
+ };
146
+ export declare const COMBINATOR_OPTIONS: {
147
+ AND: {
148
+ name: CombinatorType;
149
+ label: string;
150
+ };
151
+ OR: {
152
+ name: CombinatorType;
153
+ label: string;
154
+ };
155
+ };
156
+ export declare const FIELDS_OPTIONS: {
157
+ ID: {
158
+ name: FieldType;
159
+ label: string;
160
+ dataType: DataType;
161
+ };
162
+ NAME: {
163
+ name: FieldType;
164
+ label: string;
165
+ dataType: DataType;
166
+ };
167
+ NOMINAL_VOLTAGE: {
168
+ name: FieldType;
169
+ label: string;
170
+ dataType: DataType;
171
+ inputType: string;
172
+ };
173
+ MIN_P: {
174
+ name: FieldType;
175
+ label: string;
176
+ dataType: DataType;
177
+ inputType: string;
178
+ };
179
+ MAX_P: {
180
+ name: FieldType;
181
+ label: string;
182
+ dataType: DataType;
183
+ inputType: string;
184
+ };
185
+ TARGET_P: {
186
+ name: FieldType;
187
+ label: string;
188
+ dataType: DataType;
189
+ inputType: string;
190
+ };
191
+ TARGET_V: {
192
+ name: FieldType;
193
+ label: string;
194
+ dataType: DataType;
195
+ inputType: string;
196
+ };
197
+ TARGET_Q: {
198
+ name: FieldType;
199
+ label: string;
200
+ dataType: DataType;
201
+ inputType: string;
202
+ };
203
+ ENERGY_SOURCE: {
204
+ name: FieldType;
205
+ label: string;
206
+ dataType: DataType;
207
+ values: {
208
+ name: string;
209
+ label: string;
210
+ }[];
211
+ valueEditorType: string;
212
+ defaultValue: string;
213
+ };
214
+ COUNTRY: {
215
+ name: FieldType;
216
+ label: string;
217
+ dataType: DataType;
218
+ valueEditorType: string;
219
+ defaultValue: string;
220
+ };
221
+ VOLTAGE_REGULATOR_ON: {
222
+ name: FieldType;
223
+ label: string;
224
+ dataType: DataType;
225
+ valueEditorType: string;
226
+ };
227
+ PLANNED_ACTIVE_POWER_SET_POINT: {
228
+ name: FieldType;
229
+ label: string;
230
+ dataType: DataType;
231
+ inputType: string;
232
+ };
233
+ CONNECTED: {
234
+ name: FieldType;
235
+ label: string;
236
+ dataType: DataType;
237
+ valueEditorType: string;
238
+ };
239
+ RATED_S: {
240
+ name: FieldType;
241
+ label: string;
242
+ dataType: DataType;
243
+ inputType: string;
244
+ };
245
+ MARGINAL_COST: {
246
+ name: FieldType;
247
+ label: string;
248
+ dataType: DataType;
249
+ inputType: string;
250
+ };
251
+ PLANNED_OUTAGE_RATE: {
252
+ name: FieldType;
253
+ label: string;
254
+ dataType: DataType;
255
+ inputType: string;
256
+ };
257
+ FORCED_OUTAGE_RATE: {
258
+ name: FieldType;
259
+ label: string;
260
+ dataType: DataType;
261
+ inputType: string;
262
+ };
263
+ VOLTAGE_LEVEL_ID: {
264
+ name: FieldType;
265
+ label: string;
266
+ dataType: DataType;
267
+ };
268
+ P0: {
269
+ name: FieldType;
270
+ label: string;
271
+ dataType: DataType;
272
+ inputType: string;
273
+ };
274
+ Q0: {
275
+ name: FieldType;
276
+ label: string;
277
+ dataType: DataType;
278
+ inputType: string;
279
+ };
280
+ LOW_VOLTAGE_LIMIT: {
281
+ name: FieldType;
282
+ label: string;
283
+ dataType: DataType;
284
+ inputType: string;
285
+ };
286
+ HIGH_VOLTAGE_LIMIT: {
287
+ name: FieldType;
288
+ label: string;
289
+ dataType: DataType;
290
+ inputType: string;
291
+ };
292
+ MAXIMUM_SECTION_COUNT: {
293
+ name: FieldType;
294
+ label: string;
295
+ dataType: DataType;
296
+ inputType: string;
297
+ };
298
+ SECTION_COUNT: {
299
+ name: FieldType;
300
+ label: string;
301
+ dataType: DataType;
302
+ inputType: string;
303
+ };
304
+ SHUNT_COMPENSATOR_TYPE: {
305
+ name: FieldType;
306
+ label: string;
307
+ dataType: DataType;
308
+ values: {
309
+ name: string;
310
+ label: string;
311
+ }[];
312
+ valueEditorType: string;
313
+ defaultValue: string;
314
+ };
315
+ MAX_Q_AT_NOMINAL_V: {
316
+ name: FieldType;
317
+ label: string;
318
+ dataType: DataType;
319
+ inputType: string;
320
+ };
321
+ SWITCHED_ON_Q_AT_NOMINAL_V: {
322
+ name: FieldType;
323
+ label: string;
324
+ dataType: DataType;
325
+ inputType: string;
326
+ };
327
+ MAX_SUSCEPTANCE: {
328
+ name: FieldType;
329
+ label: string;
330
+ dataType: DataType;
331
+ inputType: string;
332
+ };
333
+ SWITCHED_ON_SUSCEPTANCE: {
334
+ name: FieldType;
335
+ label: string;
336
+ dataType: DataType;
337
+ inputType: string;
338
+ };
339
+ CONNECTED_1: {
340
+ name: FieldType;
341
+ label: string;
342
+ dataType: DataType;
343
+ valueEditorType: string;
344
+ };
345
+ CONNECTED_2: {
346
+ name: FieldType;
347
+ label: string;
348
+ dataType: DataType;
349
+ valueEditorType: string;
350
+ };
351
+ VOLTAGE_LEVEL_ID_1: {
352
+ name: FieldType;
353
+ label: string;
354
+ dataType: DataType;
355
+ };
356
+ VOLTAGE_LEVEL_ID_2: {
357
+ name: FieldType;
358
+ label: string;
359
+ dataType: DataType;
360
+ };
361
+ NOMINAL_VOLTAGE_1: {
362
+ name: FieldType;
363
+ label: string;
364
+ dataType: DataType;
365
+ inputType: string;
366
+ };
367
+ NOMINAL_VOLTAGE_2: {
368
+ name: FieldType;
369
+ label: string;
370
+ dataType: DataType;
371
+ inputType: string;
372
+ };
373
+ RATED_VOLTAGE_1: {
374
+ name: FieldType;
375
+ label: string;
376
+ dataType: DataType;
377
+ inputType: string;
378
+ };
379
+ RATED_VOLTAGE_2: {
380
+ name: FieldType;
381
+ label: string;
382
+ dataType: DataType;
383
+ inputType: string;
384
+ };
385
+ COUNTRY_1: {
386
+ name: FieldType;
387
+ label: string;
388
+ dataType: DataType;
389
+ valueEditorType: string;
390
+ defaultValue: string;
391
+ };
392
+ COUNTRY_2: {
393
+ name: FieldType;
394
+ label: string;
395
+ dataType: DataType;
396
+ valueEditorType: string;
397
+ defaultValue: string;
398
+ };
399
+ SERIE_RESISTANCE: {
400
+ name: FieldType;
401
+ label: string;
402
+ dataType: DataType;
403
+ inputType: string;
404
+ };
405
+ SERIE_REACTANCE: {
406
+ name: FieldType;
407
+ label: string;
408
+ dataType: DataType;
409
+ inputType: string;
410
+ };
411
+ SHUNT_CONDUCTANCE_1: {
412
+ name: FieldType;
413
+ label: string;
414
+ dataType: DataType;
415
+ inputType: string;
416
+ };
417
+ SHUNT_CONDUCTANCE_2: {
418
+ name: FieldType;
419
+ label: string;
420
+ dataType: DataType;
421
+ inputType: string;
422
+ };
423
+ SHUNT_SUSCEPTANCE_1: {
424
+ name: FieldType;
425
+ label: string;
426
+ dataType: DataType;
427
+ inputType: string;
428
+ };
429
+ SHUNT_SUSCEPTANCE_2: {
430
+ name: FieldType;
431
+ label: string;
432
+ dataType: DataType;
433
+ inputType: string;
434
+ };
435
+ MAGNETIZING_CONDUCTANCE: {
436
+ name: FieldType;
437
+ label: string;
438
+ dataType: DataType;
439
+ inputType: string;
440
+ };
441
+ MAGNETIZING_SUSCEPTANCE: {
442
+ name: FieldType;
443
+ label: string;
444
+ dataType: DataType;
445
+ inputType: string;
446
+ };
447
+ LOAD_TYPE: {
448
+ name: FieldType;
449
+ label: string;
450
+ dataType: DataType;
451
+ values: {
452
+ name: string;
453
+ label: string;
454
+ }[];
455
+ valueEditorType: string;
456
+ defaultValue: string;
457
+ };
458
+ HAS_RATIO_TAP_CHANGER: {
459
+ name: FieldType;
460
+ label: string;
461
+ dataType: DataType;
462
+ valueEditorType: string;
463
+ };
464
+ RATIO_REGULATING: {
465
+ name: FieldType;
466
+ label: string;
467
+ dataType: DataType;
468
+ valueEditorType: string;
469
+ };
470
+ LOAD_TAP_CHANGING_CAPABILITIES: {
471
+ name: FieldType;
472
+ label: string;
473
+ dataType: DataType;
474
+ valueEditorType: string;
475
+ };
476
+ RATIO_REGULATION_MODE: {
477
+ name: FieldType;
478
+ label: string;
479
+ dataType: DataType;
480
+ values: {
481
+ name: string;
482
+ label: string;
483
+ }[];
484
+ valueEditorType: string;
485
+ defaultValue: string;
486
+ };
487
+ RATIO_TARGET_V: {
488
+ name: FieldType;
489
+ label: string;
490
+ dataType: DataType;
491
+ inputType: string;
492
+ };
493
+ HAS_PHASE_TAP_CHANGER: {
494
+ name: FieldType;
495
+ label: string;
496
+ dataType: DataType;
497
+ valueEditorType: string;
498
+ };
499
+ PHASE_REGULATING: {
500
+ name: FieldType;
501
+ label: string;
502
+ dataType: DataType;
503
+ valueEditorType: string;
504
+ };
505
+ PHASE_REGULATION_MODE: {
506
+ name: FieldType;
507
+ label: string;
508
+ dataType: DataType;
509
+ values: {
510
+ name: string;
511
+ label: string;
512
+ }[];
513
+ valueEditorType: string;
514
+ defaultValue: string;
515
+ };
516
+ PHASE_REGULATION_VALUE: {
517
+ name: FieldType;
518
+ label: string;
519
+ dataType: DataType;
520
+ inputType: string;
521
+ };
522
+ PROPERTY: {
523
+ name: FieldType;
524
+ label: string;
525
+ dataType: DataType;
526
+ valueEditorType: string;
527
+ defaultValue: string;
528
+ };
529
+ SUBSTATION_PROPERTY: {
530
+ name: FieldType;
531
+ label: string;
532
+ dataType: DataType;
533
+ valueEditorType: string;
534
+ defaultValue: string;
535
+ };
536
+ SUBSTATION_PROPERTY_1: {
537
+ name: FieldType;
538
+ label: string;
539
+ dataType: DataType;
540
+ valueEditorType: string;
541
+ defaultValue: string;
542
+ };
543
+ SUBSTATION_PROPERTY_2: {
544
+ name: FieldType;
545
+ label: string;
546
+ dataType: DataType;
547
+ valueEditorType: string;
548
+ defaultValue: string;
549
+ };
550
+ };
551
+ export declare const fields: Record<string, Field[]>;