@provoly/hypervisor 2.4.2 → 2.4.3

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.4.2",
3
+ "version": "2.4.3",
4
4
  "peerDependencies": {
5
5
  "@angular/cdk": "17.x || 18.x",
6
6
  "@angular/common": "17.x || 18.x",
@@ -33,6 +33,8 @@ export declare class HvyCreateServiceComponent extends SubscriptionnerDirective
33
33
  displayName: string;
34
34
  })[];
35
35
  allowedTypes: HypServiceType[];
36
+ filteredTypes: HypServiceType[];
37
+ typeSearch: string;
36
38
  constructor(dialog: PryDialogRef<HvyCreateServiceComponent>, data: {
37
39
  action: HypServiceAction;
38
40
  events: HypEventDetails[];
@@ -40,6 +42,7 @@ export declare class HvyCreateServiceComponent extends SubscriptionnerDirective
40
42
  action(value: string): void;
41
43
  onEquipmentChange($event: string): void;
42
44
  onDescriptionChange($event: string): void;
45
+ onTypeSearchChange(value: string): void;
43
46
  onTypeChange($event: string): void;
44
47
  onPriorityChange($event: any): void;
45
48
  onDomainChange($event: string): void;
@@ -22,10 +22,16 @@
22
22
  &__priority-nature {
23
23
  display: flex;
24
24
  flex-direction: row;
25
+ align-items: flex-start;
25
26
  gap: toRem(10);
26
27
 
27
28
  > div {
28
29
  flex: 1 1;
29
30
  }
30
31
  }
32
+
33
+ input.a-form-field.-error {
34
+ color: themed($theme-map, 'color', 'primary', 700);
35
+ border-color: themed($theme-map, 'color', 'status', 'error')!important;
36
+ }
31
37
  }