@progressio_resources/gravity-design-system 3.3.40 → 3.3.42

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.
@@ -8,6 +8,7 @@ export declare class GravityCurrencyDisplayV2Component {
8
8
  currency_iso: string;
9
9
  network_id?: number;
10
10
  network_iso?: string;
11
+ pill_type?: 'primary' | 'secondary';
11
12
  };
12
13
  static ɵfac: i0.ɵɵFactoryDeclaration<GravityCurrencyDisplayV2Component, never>;
13
14
  static ɵcmp: i0.ɵɵComponentDeclaration<GravityCurrencyDisplayV2Component, "gravity-currency-display-v2", never, { "disabled": { "alias": "disabled"; "required": false; }; "type": { "alias": "type"; "required": false; }; "currency": { "alias": "currency"; "required": false; }; }, {}, never, never, false, never>;
@@ -1,5 +1,5 @@
1
- import { ElementRef, EventEmitter, OnChanges, SimpleChanges } from '@angular/core';
2
1
  import { FilterByPipe } from "./filter-by.pipe";
2
+ import { ElementRef, EventEmitter, OnChanges, SimpleChanges } from '@angular/core';
3
3
  import * as i0 from "@angular/core";
4
4
  export declare class GravityDropdownListComponent implements OnChanges {
5
5
  private readonly filterByPipe;
@@ -34,9 +34,15 @@ export declare class GravityDropdownListComponent implements OnChanges {
34
34
  set watch(searchInput: ElementRef<HTMLInputElement>);
35
35
  searchText: string;
36
36
  selectedItems: any[];
37
+ isoConfig: string;
37
38
  availableOptions: any[];
38
39
  dropdownOpened: boolean;
39
40
  openChildrenMap: Map<any, boolean>;
41
+ networkConfig: {
42
+ label: string;
43
+ iso: string;
44
+ id: number;
45
+ };
40
46
  constructor(filterByPipe: FilterByPipe, _eref: ElementRef);
41
47
  ngOnChanges(changes: SimpleChanges): void;
42
48
  getStatus(): string;
@@ -61,6 +67,7 @@ export declare class GravityDropdownListComponent implements OnChanges {
61
67
  label: string;
62
68
  }): string;
63
69
  inputDisplayValue(): string;
70
+ private truncate;
64
71
  clearSearch(): void;
65
72
  preventTypingWhenLocked(event: KeyboardEvent, input: HTMLInputElement): void;
66
73
  static ɵfac: i0.ɵɵFactoryDeclaration<GravityDropdownListComponent, never>;
@@ -1,8 +1,8 @@
1
1
  import { DisplayCurrencyItems } from "./display-currency-items";
2
2
  import { FilterByPipe } from "../gravity-dropdown-list/filter-by.pipe";
3
- import { ElementRef, EventEmitter, OnInit } from '@angular/core';
3
+ import { ElementRef, EventEmitter, OnChanges, SimpleChanges } from '@angular/core';
4
4
  import * as i0 from "@angular/core";
5
- export declare class GravityDropdownListDisplayComponent implements OnInit {
5
+ export declare class GravityDropdownListDisplayComponent implements OnChanges {
6
6
  private readonly filterByPipe;
7
7
  private _eref;
8
8
  selectedItemsResponse: EventEmitter<any[] | any>;
@@ -17,6 +17,7 @@ export declare class GravityDropdownListDisplayComponent implements OnInit {
17
17
  items: DisplayCurrencyItems[];
18
18
  size: 'md';
19
19
  width: 'standard';
20
+ isHovered: boolean;
20
21
  selectedItem: DisplayCurrencyItems;
21
22
  set watch(searchInput: ElementRef<HTMLInputElement>);
22
23
  availableOptions: any[];
@@ -24,7 +25,7 @@ export declare class GravityDropdownListDisplayComponent implements OnInit {
24
25
  searchText: string;
25
26
  selectedItems: any[];
26
27
  constructor(filterByPipe: FilterByPipe, _eref: ElementRef);
27
- ngOnInit(): void;
28
+ ngOnChanges(changes: SimpleChanges): void;
28
29
  private loadItems;
29
30
  getStatus(): string;
30
31
  toggleDropdown(): void;
@@ -32,6 +33,8 @@ export declare class GravityDropdownListDisplayComponent implements OnInit {
32
33
  checkIfSelected(itemToFind: any): boolean;
33
34
  filterItems(): void;
34
35
  onDocumentClick($event: PointerEvent): void;
36
+ onMouseEnter(): void;
37
+ onMouseLeave(): void;
35
38
  static ɵfac: i0.ɵɵFactoryDeclaration<GravityDropdownListDisplayComponent, never>;
36
39
  static ɵcmp: i0.ɵɵComponentDeclaration<GravityDropdownListDisplayComponent, "gravity-dropdown-list-display", never, { "cypressTag": { "alias": "cypressTag"; "required": false; }; "placeholder": { "alias": "placeholder"; "required": false; }; "currentLang": { "alias": "currentLang"; "required": false; }; "isReadonly": { "alias": "isReadonly"; "required": false; }; "isDisabled": { "alias": "isDisabled"; "required": false; }; "customValues": { "alias": "customValues"; "required": false; }; "disableSearch": { "alias": "disableSearch"; "required": false; }; "defaultSelectedItemIndex": { "alias": "defaultSelectedItemIndex"; "required": false; }; "items": { "alias": "items"; "required": false; }; "size": { "alias": "size"; "required": false; }; "width": { "alias": "width"; "required": false; }; }, { "selectedItemsResponse": "response"; }, never, never, false, never>;
37
40
  }
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@progressio_resources/gravity-design-system",
3
3
  "description": "Gravity Design System",
4
- "version": "3.3.40",
4
+ "version": "3.3.42",
5
5
  "license": "SEE LICENSE IN LIBRARY-LICENSE",
6
6
  "peerDependencies": {
7
7
  "@angular/common": "^16.2.12",