@provoly/hypervisor 0.0.113 → 0.0.115
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/esm2022/src/lib/event/filters/choice/choice-filter.component.mjs +17 -5
- package/esm2022/src/lib/event/list/event-list.component.mjs +3 -3
- package/esm2022/src/lib/general/i18n/en.translations.mjs +53 -7
- package/esm2022/src/lib/general/i18n/fr.translations.mjs +2 -1
- package/esm2022/src/lib/general/procedure-actions/action-parameters/service/create-service.component.mjs +23 -6
- package/esm2022/src/lib/model/hyp-equipment.interface.mjs +1 -1
- package/esm2022/src/lib/procedure/model-list/procedure-list.component.mjs +1 -1
- package/fesm2022/provoly-hypervisor.mjs +92 -17
- package/fesm2022/provoly-hypervisor.mjs.map +1 -1
- package/package.json +1 -1
- package/src/lib/event/filters/choice/choice-filter.component.d.ts +3 -2
- package/src/lib/general/i18n/en.translations.d.ts +46 -0
- package/src/lib/general/i18n/fr.translations.d.ts +1 -0
- package/src/lib/general/procedure-actions/action-parameters/service/create-service.component.d.ts +6 -2
- package/src/lib/model/hyp-equipment.interface.d.ts +1 -0
package/package.json
CHANGED
|
@@ -21,6 +21,7 @@ export declare class ChoiceFilterComponent extends HvyUnitFilterComponent implem
|
|
|
21
21
|
allLabel: string;
|
|
22
22
|
label: string;
|
|
23
23
|
i18nPrefix: string;
|
|
24
|
+
addNonLeaves: boolean;
|
|
24
25
|
value: WritableSignal<string[]>;
|
|
25
26
|
choices: HvyChoiceFilter;
|
|
26
27
|
overlayRef?: OverlayRef;
|
|
@@ -48,8 +49,8 @@ export declare class ChoiceFilterComponent extends HvyUnitFilterComponent implem
|
|
|
48
49
|
}[];
|
|
49
50
|
}): boolean;
|
|
50
51
|
allValues(): string[];
|
|
51
|
-
assignValue(
|
|
52
|
+
assignValue(values: string[]): void;
|
|
52
53
|
private triggerInhibate;
|
|
53
54
|
static ɵfac: i0.ɵɵFactoryDeclaration<ChoiceFilterComponent, never>;
|
|
54
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<ChoiceFilterComponent, "hvy-choice-filter", never, { "allLabel": { "alias": "allLabel"; "required": false; }; "label": { "alias": "label"; "required": false; }; "i18nPrefix": { "alias": "i18nPrefix"; "required": false; }; "choices": { "alias": "choices"; "required": false; }; }, {}, never, never, false, never>;
|
|
55
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<ChoiceFilterComponent, "hvy-choice-filter", never, { "allLabel": { "alias": "allLabel"; "required": false; }; "label": { "alias": "label"; "required": false; }; "i18nPrefix": { "alias": "i18nPrefix"; "required": false; }; "addNonLeaves": { "alias": "addNonLeaves"; "required": false; }; "choices": { "alias": "choices"; "required": false; }; }, {}, never, never, false, never>;
|
|
55
56
|
}
|
|
@@ -18,6 +18,7 @@ export declare const enTranslations: {
|
|
|
18
18
|
};
|
|
19
19
|
address: string;
|
|
20
20
|
source: string;
|
|
21
|
+
hypervisor: string;
|
|
21
22
|
equipment: string;
|
|
22
23
|
equipmentEntity: string;
|
|
23
24
|
notFound: string;
|
|
@@ -46,6 +47,7 @@ export declare const enTranslations: {
|
|
|
46
47
|
comments: {
|
|
47
48
|
name: string;
|
|
48
49
|
placeholder: string;
|
|
50
|
+
actions: string;
|
|
49
51
|
};
|
|
50
52
|
};
|
|
51
53
|
procedure: {
|
|
@@ -59,6 +61,10 @@ export declare const enTranslations: {
|
|
|
59
61
|
};
|
|
60
62
|
category: {
|
|
61
63
|
name: string;
|
|
64
|
+
MANIFESTATION: string;
|
|
65
|
+
LIMIT: string;
|
|
66
|
+
OUTOFORDER: string;
|
|
67
|
+
ANOMALY: string;
|
|
62
68
|
};
|
|
63
69
|
criticality: {
|
|
64
70
|
name: string;
|
|
@@ -86,6 +92,9 @@ export declare const enTranslations: {
|
|
|
86
92
|
presenceSensor: string;
|
|
87
93
|
parent: string;
|
|
88
94
|
consult: string;
|
|
95
|
+
entity: {
|
|
96
|
+
NOTFOUND: string;
|
|
97
|
+
};
|
|
89
98
|
comment: {
|
|
90
99
|
lastDetail: string;
|
|
91
100
|
detail: string;
|
|
@@ -94,6 +103,7 @@ export declare const enTranslations: {
|
|
|
94
103
|
head: string;
|
|
95
104
|
heads: string;
|
|
96
105
|
};
|
|
106
|
+
equipmentPlaceholder: string;
|
|
97
107
|
};
|
|
98
108
|
eventSummary: {
|
|
99
109
|
from: string;
|
|
@@ -131,6 +141,7 @@ export declare const enTranslations: {
|
|
|
131
141
|
actions: string;
|
|
132
142
|
description: string;
|
|
133
143
|
creator: string;
|
|
144
|
+
formTitle: string;
|
|
134
145
|
action: {
|
|
135
146
|
add: string;
|
|
136
147
|
create: string;
|
|
@@ -146,6 +157,21 @@ export declare const enTranslations: {
|
|
|
146
157
|
EMAIL: string;
|
|
147
158
|
to: string;
|
|
148
159
|
at: string;
|
|
160
|
+
placeholder: {
|
|
161
|
+
name: string;
|
|
162
|
+
phone: string;
|
|
163
|
+
email: string;
|
|
164
|
+
service: string;
|
|
165
|
+
other: string;
|
|
166
|
+
action: string;
|
|
167
|
+
};
|
|
168
|
+
question: {
|
|
169
|
+
PHONE: string;
|
|
170
|
+
SMS: string;
|
|
171
|
+
EMAIL: string;
|
|
172
|
+
ASKED_SERVICE: string;
|
|
173
|
+
OTHER: string;
|
|
174
|
+
};
|
|
149
175
|
};
|
|
150
176
|
};
|
|
151
177
|
associationModal: {
|
|
@@ -166,6 +192,8 @@ export declare const enTranslations: {
|
|
|
166
192
|
validate: string;
|
|
167
193
|
cancel: string;
|
|
168
194
|
search: string;
|
|
195
|
+
update: string;
|
|
196
|
+
create: string;
|
|
169
197
|
};
|
|
170
198
|
service: {
|
|
171
199
|
status: {
|
|
@@ -175,6 +203,24 @@ export declare const enTranslations: {
|
|
|
175
203
|
DONE: string;
|
|
176
204
|
CANCELLED: string;
|
|
177
205
|
};
|
|
206
|
+
title: string;
|
|
207
|
+
subtitle: string;
|
|
208
|
+
reason: string;
|
|
209
|
+
type: string;
|
|
210
|
+
priority: string;
|
|
211
|
+
description: string;
|
|
212
|
+
target: string;
|
|
213
|
+
gti: string;
|
|
214
|
+
gtr: string;
|
|
215
|
+
gtrp: string;
|
|
216
|
+
describe: string;
|
|
217
|
+
noEquip: string;
|
|
218
|
+
domain: string;
|
|
219
|
+
priorities: {
|
|
220
|
+
'1-MINEUR': string;
|
|
221
|
+
'2-MAJEUR': string;
|
|
222
|
+
'3-BLOQUANT': string;
|
|
223
|
+
};
|
|
178
224
|
};
|
|
179
225
|
};
|
|
180
226
|
};
|
package/src/lib/general/procedure-actions/action-parameters/service/create-service.component.d.ts
CHANGED
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import { PryDialogRef, PryI18nService } from '@provoly/dashboard';
|
|
1
|
+
import { PryDialogRef, PryI18nService, SubscriptionnerDirective } from '@provoly/dashboard';
|
|
2
2
|
import { Observable } from 'rxjs';
|
|
3
3
|
import { HypEquipment } from '../../../../model/hyp-equipment.interface';
|
|
4
4
|
import { HypServiceAction } from './service-action-display.component';
|
|
@@ -9,6 +9,7 @@ export type HypCreateServiceResult = {
|
|
|
9
9
|
value: string;
|
|
10
10
|
name: string;
|
|
11
11
|
equipment: string;
|
|
12
|
+
domain: string;
|
|
12
13
|
priority: string;
|
|
13
14
|
type: string;
|
|
14
15
|
description: string;
|
|
@@ -16,7 +17,7 @@ export type HypCreateServiceResult = {
|
|
|
16
17
|
gtr?: string;
|
|
17
18
|
gtrp?: string;
|
|
18
19
|
};
|
|
19
|
-
export declare class HvyCreateServiceComponent {
|
|
20
|
+
export declare class HvyCreateServiceComponent extends SubscriptionnerDirective {
|
|
20
21
|
private dialog;
|
|
21
22
|
data: {
|
|
22
23
|
action: HypServiceAction;
|
|
@@ -31,6 +32,8 @@ export declare class HvyCreateServiceComponent {
|
|
|
31
32
|
errors: string[];
|
|
32
33
|
types: HypServiceType[];
|
|
33
34
|
priorities: string[];
|
|
35
|
+
domains: string[];
|
|
36
|
+
private equipments;
|
|
34
37
|
constructor(dialog: PryDialogRef<HvyCreateServiceComponent>, data: {
|
|
35
38
|
action: HypServiceAction;
|
|
36
39
|
}, equipmentService: EquipmentService, serviceService: ServiceService, i18nService: PryI18nService);
|
|
@@ -39,6 +42,7 @@ export declare class HvyCreateServiceComponent {
|
|
|
39
42
|
onDescriptionChange($event: string): void;
|
|
40
43
|
onTypeChange($event: string): void;
|
|
41
44
|
onPriorityChange($event: any): void;
|
|
45
|
+
onDomainChange($event: string): void;
|
|
42
46
|
hasError(type: string): boolean;
|
|
43
47
|
check(): void;
|
|
44
48
|
createDI(): void;
|