@provoly/hypervisor 0.0.89 → 0.0.91
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/detail/event-detail.component.mjs +22 -8
- package/esm2022/src/lib/event/filters/choice/choice-filter.component.mjs +1 -1
- package/esm2022/src/lib/event/list/event-list.component.mjs +1 -1
- package/esm2022/src/lib/general/i18n/en.translations.mjs +11 -2
- package/esm2022/src/lib/general/i18n/fr.translations.mjs +11 -2
- package/esm2022/src/lib/general/procedure-actions/procedure-actions.component.mjs +1 -1
- package/esm2022/src/lib/general/status-display/status-display.component.mjs +6 -3
- package/esm2022/src/lib/model/event/hyp-event-status.type.mjs +2 -2
- package/esm2022/src/lib/model/event/hyp-event-tooltip.interface.mjs +1 -1
- package/esm2022/src/lib/model/hyp-service-status.type.mjs +4 -0
- package/esm2022/src/lib/model/public-api.mjs +2 -1
- package/fesm2022/provoly-hypervisor.mjs +55 -16
- package/fesm2022/provoly-hypervisor.mjs.map +1 -1
- package/package.json +2 -2
- package/src/lib/event/detail/event-detail.component.d.ts +1 -1
- package/src/lib/general/i18n/en.translations.d.ts +10 -1
- package/src/lib/general/i18n/fr.translations.d.ts +10 -1
- package/src/lib/general/status-display/status-display.component.d.ts +2 -1
- package/src/lib/model/event/hyp-event-tooltip.interface.d.ts +10 -1
- package/src/lib/model/hyp-service-status.type.d.ts +3 -0
- package/src/lib/model/public-api.d.ts +1 -0
- package/styles/components/_o-hvy-procedure-actions.scss +4 -0
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@provoly/hypervisor",
|
|
3
|
-
"version": "0.0.
|
|
3
|
+
"version": "0.0.91",
|
|
4
4
|
"peerDependencies": {
|
|
5
5
|
"@angular/cdk": "16.x || 17.x",
|
|
6
6
|
"@angular/common": "16.x || 17.x",
|
|
@@ -14,7 +14,7 @@
|
|
|
14
14
|
"rxjs": "^7.4.0",
|
|
15
15
|
"uuid": "^8.3.2 || ^9.0.0",
|
|
16
16
|
"zone.js": "~0.14.3",
|
|
17
|
-
"@provoly/dashboard": "^1.3.
|
|
17
|
+
"@provoly/dashboard": "^1.3.20"
|
|
18
18
|
},
|
|
19
19
|
"dependencies": {
|
|
20
20
|
"tslib": "^2.6.2"
|
|
@@ -91,7 +91,7 @@ export declare class EventDetailComponent extends SubscriptionnerDirective {
|
|
|
91
91
|
protected readonly subCategories: (string | undefined)[];
|
|
92
92
|
modifiedActions($event: any): void;
|
|
93
93
|
openAssociationModal(): void;
|
|
94
|
-
|
|
94
|
+
openDeleteModal(): void;
|
|
95
95
|
private convertDate;
|
|
96
96
|
static ɵfac: i0.ɵɵFactoryDeclaration<EventDetailComponent, never>;
|
|
97
97
|
static ɵcmp: i0.ɵɵComponentDeclaration<EventDetailComponent, "hvy-event-detail", never, { "title": { "alias": "title"; "required": false; }; "events": { "alias": "events"; "required": false; }; "procedure": { "alias": "procedure"; "required": false; }; "cancelModifications": { "alias": "cancelModifications"; "required": false; }; "equipmentName": { "alias": "equipmentName"; "required": false; }; }, { "modifiedEvents": "modifiedEvents"; "modifiedProcedure": "modifiedProcedure"; "eventErrors": "eventErrors"; }, never, never, false, never>;
|
|
@@ -13,7 +13,7 @@ export declare const enTranslations: {
|
|
|
13
13
|
NEW: string;
|
|
14
14
|
IN_PROGRESS: string;
|
|
15
15
|
DONE: string;
|
|
16
|
-
|
|
16
|
+
ARCHIVED: string;
|
|
17
17
|
};
|
|
18
18
|
address: string;
|
|
19
19
|
source: string;
|
|
@@ -157,5 +157,14 @@ export declare const enTranslations: {
|
|
|
157
157
|
cancel: string;
|
|
158
158
|
search: string;
|
|
159
159
|
};
|
|
160
|
+
service: {
|
|
161
|
+
status: {
|
|
162
|
+
CREATED: string;
|
|
163
|
+
ASKED: string;
|
|
164
|
+
IN_PROGRESS: string;
|
|
165
|
+
DONE: string;
|
|
166
|
+
CANCELLED: string;
|
|
167
|
+
};
|
|
168
|
+
};
|
|
160
169
|
};
|
|
161
170
|
};
|
|
@@ -13,7 +13,7 @@ export declare const frTranslations: {
|
|
|
13
13
|
NEW: string;
|
|
14
14
|
IN_PROGRESS: string;
|
|
15
15
|
DONE: string;
|
|
16
|
-
|
|
16
|
+
ARCHIVED: string;
|
|
17
17
|
};
|
|
18
18
|
address: string;
|
|
19
19
|
source: string;
|
|
@@ -180,5 +180,14 @@ export declare const frTranslations: {
|
|
|
180
180
|
cancel: string;
|
|
181
181
|
search: string;
|
|
182
182
|
};
|
|
183
|
+
service: {
|
|
184
|
+
status: {
|
|
185
|
+
CREATED: string;
|
|
186
|
+
ASKED: string;
|
|
187
|
+
IN_PROGRESS: string;
|
|
188
|
+
DONE: string;
|
|
189
|
+
CANCELLED: string;
|
|
190
|
+
};
|
|
191
|
+
};
|
|
183
192
|
};
|
|
184
193
|
};
|
|
@@ -9,6 +9,7 @@ export declare class StatusDisplayComponent extends SubscriptionnerDirective {
|
|
|
9
9
|
targetStatuses: string[];
|
|
10
10
|
targetsDisplayed: boolean;
|
|
11
11
|
_modifiable: boolean;
|
|
12
|
+
type: 'service' | 'event';
|
|
12
13
|
set item(item: {
|
|
13
14
|
status: string;
|
|
14
15
|
});
|
|
@@ -22,5 +23,5 @@ export declare class StatusDisplayComponent extends SubscriptionnerDirective {
|
|
|
22
23
|
toggle(): void;
|
|
23
24
|
constructor();
|
|
24
25
|
static ɵfac: i0.ɵɵFactoryDeclaration<StatusDisplayComponent, never>;
|
|
25
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<StatusDisplayComponent, "hvy-status-display", never, { "item": { "alias": "item"; "required": false; }; "modifiable": { "alias": "modifiable"; "required": false; }; }, { "modified": "modified"; }, never, never, false, never>;
|
|
26
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<StatusDisplayComponent, "hvy-status-display", never, { "type": { "alias": "type"; "required": false; }; "item": { "alias": "item"; "required": false; }; "modifiable": { "alias": "modifiable"; "required": false; }; }, { "modified": "modified"; }, never, never, false, never>;
|
|
26
27
|
}
|
|
@@ -22,7 +22,16 @@ export interface HypEventTooltipARM extends HypEventTooltipBase {
|
|
|
22
22
|
export interface HypEventTooltipFL extends HypEventTooltipBase {
|
|
23
23
|
presenceSensor?: boolean;
|
|
24
24
|
}
|
|
25
|
-
export
|
|
25
|
+
export interface HypEventTooltipCAM extends HypEventTooltipBase {
|
|
26
|
+
alimentation: string;
|
|
27
|
+
height: string;
|
|
28
|
+
accessibility: string;
|
|
29
|
+
connectivity: string;
|
|
30
|
+
typology: string;
|
|
31
|
+
measuredAt: string;
|
|
32
|
+
licenses: number;
|
|
33
|
+
}
|
|
34
|
+
export type HypEventTooltip = HypEventTooltipARM | HypEventTooltipFL | HypEventTooltipCAM;
|
|
26
35
|
export interface HypServiceTooltip {
|
|
27
36
|
id: string;
|
|
28
37
|
externalId: string;
|
|
@@ -9,5 +9,6 @@ export * from './procedure/hyp-procedure.interface';
|
|
|
9
9
|
export * from './procedure/hyp-procedure-model.interface';
|
|
10
10
|
export * from './procedure/hyp-action.interface';
|
|
11
11
|
export * from './hyp-equipment.interface';
|
|
12
|
+
export * from './hyp-service-status.type';
|
|
12
13
|
export * from './domains.constant';
|
|
13
14
|
export * from './entites.constant';
|