@provoly/hypervisor 2.1.0 → 2.1.1

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": "2.1.0",
3
+ "version": "2.1.1",
4
4
  "peerDependencies": {
5
5
  "@angular/cdk": "17.x || 18.x",
6
6
  "@angular/common": "17.x || 18.x",
@@ -179,7 +179,7 @@ export declare class EventDetailComponent extends SubscriptionnerDirective {
179
179
  protected readonly subCategories: (string | undefined)[];
180
180
  modifiedActions($event: any): void;
181
181
  refreshActions($event: HypAction[]): void;
182
- openAssociationModal(title?: string, procedure?: string, domain?: string): void;
182
+ openAssociationModal(title?: string, procedure?: HypProcedure, modify?: boolean): void;
183
183
  openDeleteModal(): void;
184
184
  openChangeModal(): void;
185
185
  private convertDate;
@@ -23,6 +23,8 @@ export declare class ProcedureAssociationModalComponent extends SubscriptionnerD
23
23
  eventsForAction: HypEventDetails[];
24
24
  disableValidButton: boolean;
25
25
  eventsDomain: (string | undefined)[];
26
+ modifyProcedure: boolean;
27
+ previousProcedureId: number | undefined;
26
28
  set events(events: HypEventDetails[]);
27
29
  title: string;
28
30
  procedureSelectValue?: string | HypProcedureModel;
@@ -24,13 +24,12 @@
24
24
  width: 100%;
25
25
  margin-bottom: toRem(8);
26
26
  field-sizing: content;
27
- min-height: unset;
27
+ min-height: 2.25rem;
28
28
 
29
29
  &::placeholder {
30
30
  font-style: italic;
31
31
  font-size: toRem(12);
32
32
  color: #859DB6;
33
- padding: 5px;
34
33
  }
35
34
  }
36
35