@provoly/hypervisor 1.6.0 → 1.6.2

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/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@provoly/hypervisor",
3
- "version": "1.6.0",
3
+ "version": "1.6.2",
4
4
  "peerDependencies": {
5
5
  "@angular/cdk": "17.x || 18.x",
6
6
  "@angular/common": "17.x || 18.x",
@@ -131,6 +131,7 @@ export declare class EventDetailComponent extends SubscriptionnerDirective {
131
131
  get procedure(): HypProcedure | undefined;
132
132
  get closeComment(): string;
133
133
  toggle(i: number): void;
134
+ manageEquipment(index: number): void;
134
135
  modifyEvent(index: number, prop: string, $event: Event | string): void;
135
136
  access(event: HypEventDetails): {
136
137
  name: boolean;
@@ -10,7 +10,7 @@ export declare class EquipmentService {
10
10
  constructor(httpClient: HttpClient, store: Store<any>);
11
11
  findByName(name: string): Observable<HypEventTooltipBase>;
12
12
  list(): Observable<HypEquipment[]>;
13
- search(search: string | undefined): Observable<EquipmentForEvent[]>;
13
+ search(search: string | undefined, domain?: string): Observable<EquipmentForEvent[]>;
14
14
  static ɵfac: i0.ɵɵFactoryDeclaration<EquipmentService, never>;
15
15
  static ɵprov: i0.ɵɵInjectableDeclaration<EquipmentService>;
16
16
  }