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