@progressio_resources/gravity-design-system 3.3.41 → 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.
- package/esm2022/lib/components/gravity-currency-display-v2/gravity-currency-display-v2.component.mjs +3 -3
- package/esm2022/lib/components/gravity-dropdown-list/gravity-dropdown-list.component.mjs +4 -4
- package/esm2022/lib/components/gravity-dropdown-list-display/gravity-dropdown-list-display.component.mjs +26 -9
- package/fesm2022/progressio_resources-gravity-design-system.mjs +28 -11
- package/fesm2022/progressio_resources-gravity-design-system.mjs.map +1 -1
- package/lib/components/gravity-dropdown-list/gravity-dropdown-list.component.d.ts +2 -2
- package/lib/components/gravity-dropdown-list-display/gravity-dropdown-list-display.component.d.ts +6 -3
- package/package.json +1 -1
|
@@ -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;
|
|
@@ -37,12 +37,12 @@ export declare class GravityDropdownListComponent implements OnChanges {
|
|
|
37
37
|
isoConfig: string;
|
|
38
38
|
availableOptions: any[];
|
|
39
39
|
dropdownOpened: boolean;
|
|
40
|
+
openChildrenMap: Map<any, boolean>;
|
|
40
41
|
networkConfig: {
|
|
41
42
|
label: string;
|
|
42
43
|
iso: string;
|
|
43
44
|
id: number;
|
|
44
45
|
};
|
|
45
|
-
openChildrenMap: Map<any, boolean>;
|
|
46
46
|
constructor(filterByPipe: FilterByPipe, _eref: ElementRef);
|
|
47
47
|
ngOnChanges(changes: SimpleChanges): void;
|
|
48
48
|
getStatus(): string;
|
package/lib/components/gravity-dropdown-list-display/gravity-dropdown-list-display.component.d.ts
CHANGED
|
@@ -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,
|
|
3
|
+
import { ElementRef, EventEmitter, OnChanges, SimpleChanges } from '@angular/core';
|
|
4
4
|
import * as i0 from "@angular/core";
|
|
5
|
-
export declare class GravityDropdownListDisplayComponent implements
|
|
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
|
-
|
|
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