@provoly/hypervisor 2.4.3 → 2.4.4

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.3",
3
+ "version": "2.4.4",
4
4
  "peerDependencies": {
5
5
  "@angular/cdk": "17.x || 18.x",
6
6
  "@angular/common": "17.x || 18.x",
@@ -256,6 +256,7 @@ export declare const frTranslations: {
256
256
  CANCELLED: string;
257
257
  OT_CLOSED: string;
258
258
  };
259
+ nature_placeholder: string;
259
260
  title: string;
260
261
  subtitle: string;
261
262
  reason: string;
@@ -35,6 +35,7 @@ export declare class HvyCreateServiceComponent extends SubscriptionnerDirective
35
35
  allowedTypes: HypServiceType[];
36
36
  filteredTypes: HypServiceType[];
37
37
  typeSearch: string;
38
+ private typeSearchSubject;
38
39
  constructor(dialog: PryDialogRef<HvyCreateServiceComponent>, data: {
39
40
  action: HypServiceAction;
40
41
  events: HypEventDetails[];
@@ -42,7 +43,9 @@ export declare class HvyCreateServiceComponent extends SubscriptionnerDirective
42
43
  action(value: string): void;
43
44
  onEquipmentChange($event: string): void;
44
45
  onDescriptionChange($event: string): void;
46
+ onTypeInputFocus(): void;
45
47
  onTypeSearchChange(value: string): void;
48
+ private applyTypeFilter;
46
49
  onTypeChange($event: string): void;
47
50
  onPriorityChange($event: any): void;
48
51
  onDomainChange($event: string): void;
@@ -35,3 +35,8 @@
35
35
  border-color: themed($theme-map, 'color', 'status', 'error')!important;
36
36
  }
37
37
  }
38
+
39
+ .nature-combo-box::placeholder {
40
+ font-style: italic!important;
41
+ color: #859DB6!important;
42
+ }