@progressio_resources/gravity-design-system 4.0.1 → 4.0.2
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,5 +1,5 @@
|
|
|
1
1
|
import * as i0 from '@angular/core';
|
|
2
|
-
import { OnChanges, TemplateRef, EventEmitter, ElementRef, ComponentFactoryResolver, ApplicationRef, Injector, SimpleChanges, ModuleWithProviders, AfterViewInit, OnInit, OnDestroy, PipeTransform, Renderer2, ChangeDetectorRef, ViewContainerRef, QueryList } from '@angular/core';
|
|
2
|
+
import { OnChanges, TemplateRef, EventEmitter, ElementRef, ComponentFactoryResolver, ApplicationRef, Injector, SimpleChanges, ModuleWithProviders, AfterViewInit, OnInit, OnDestroy, PipeTransform, Input, Renderer2, ChangeDetectorRef, ViewContainerRef, QueryList } from '@angular/core';
|
|
3
3
|
import * as i1$1 from 'angular-svg-icon';
|
|
4
4
|
import { SvgIconRegistryService } from 'angular-svg-icon';
|
|
5
5
|
import * as i2 from 'angular-svg-icon-preloader';
|
|
@@ -743,7 +743,6 @@ declare class GravityDropdownListComponent implements OnChanges, OnInit, OnDestr
|
|
|
743
743
|
multiple: boolean;
|
|
744
744
|
required: boolean;
|
|
745
745
|
currentLang: string;
|
|
746
|
-
isCurrency: boolean;
|
|
747
746
|
isDisabled: boolean;
|
|
748
747
|
isReadonly: boolean;
|
|
749
748
|
customValues: Array<any> | any;
|
|
@@ -751,6 +750,7 @@ declare class GravityDropdownListComponent implements OnChanges, OnInit, OnDestr
|
|
|
751
750
|
label: string;
|
|
752
751
|
value: string;
|
|
753
752
|
};
|
|
753
|
+
type: 'regular' | 'currency' | 'network';
|
|
754
754
|
labelSize: 'sm' | 'md' | 'lg';
|
|
755
755
|
size: 'sm' | 'md' | 'lg' | 'xl';
|
|
756
756
|
inputType: 'field' | 'label';
|
|
@@ -774,6 +774,7 @@ declare class GravityDropdownListComponent implements OnChanges, OnInit, OnDestr
|
|
|
774
774
|
id: number;
|
|
775
775
|
};
|
|
776
776
|
private dropdownManagerSubscription;
|
|
777
|
+
searchInput: Input;
|
|
777
778
|
constructor(dropdownService: GravityDropdownManagerService, _eref: ElementRef);
|
|
778
779
|
ngOnInit(): void;
|
|
779
780
|
ngOnChanges(changes: SimpleChanges): void;
|
|
@@ -803,13 +804,17 @@ declare class GravityDropdownListComponent implements OnChanges, OnInit, OnDestr
|
|
|
803
804
|
label: string;
|
|
804
805
|
}): string;
|
|
805
806
|
inputDisplayValue(): string;
|
|
807
|
+
getDisplayValueNetwork(): {
|
|
808
|
+
items: any[];
|
|
809
|
+
hasMore: boolean;
|
|
810
|
+
};
|
|
806
811
|
private truncate;
|
|
807
812
|
clearSearch(): void;
|
|
808
813
|
preventTypingWhenLocked(event: KeyboardEvent, input: HTMLInputElement): void;
|
|
809
814
|
private scrollToSelected;
|
|
810
815
|
onSearchTextChange(value: string): void;
|
|
811
816
|
static ɵfac: i0.ɵɵFactoryDeclaration<GravityDropdownListComponent, never>;
|
|
812
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<GravityDropdownListComponent, "gravity-dropdown-list", never, { "label": { "alias": "label"; "required": false; }; "iconLeft": { "alias": "iconLeft"; "required": false; }; "items": { "alias": "items"; "required": false; }; "cypressTag": { "alias": "cypressTag"; "required": false; }; "placeholder": { "alias": "placeholder"; "required": false; }; "supportText": { "alias": "supportText"; "required": false; }; "hasError": { "alias": "hasError"; "required": false; }; "clearable": { "alias": "clearable"; "required": false; }; "multiple": { "alias": "multiple"; "required": false; }; "required": { "alias": "required"; "required": false; }; "currentLang": { "alias": "currentLang"; "required": false; }; "
|
|
817
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<GravityDropdownListComponent, "gravity-dropdown-list", never, { "label": { "alias": "label"; "required": false; }; "iconLeft": { "alias": "iconLeft"; "required": false; }; "items": { "alias": "items"; "required": false; }; "cypressTag": { "alias": "cypressTag"; "required": false; }; "placeholder": { "alias": "placeholder"; "required": false; }; "supportText": { "alias": "supportText"; "required": false; }; "hasError": { "alias": "hasError"; "required": false; }; "clearable": { "alias": "clearable"; "required": false; }; "multiple": { "alias": "multiple"; "required": false; }; "required": { "alias": "required"; "required": false; }; "currentLang": { "alias": "currentLang"; "required": false; }; "isDisabled": { "alias": "isDisabled"; "required": false; }; "isReadonly": { "alias": "isReadonly"; "required": false; }; "customValues": { "alias": "customValues"; "required": false; }; "config": { "alias": "config"; "required": false; }; "type": { "alias": "type"; "required": false; }; "labelSize": { "alias": "labelSize"; "required": false; }; "size": { "alias": "size"; "required": false; }; "inputType": { "alias": "inputType"; "required": false; }; "width": { "alias": "width"; "required": false; }; "dropdownState": { "alias": "dropdownState"; "required": false; }; }, { "dropdownStateChange": "dropdownStateChange"; "selectedItemsResponse": "response"; }, never, ["*"], true, never>;
|
|
813
818
|
}
|
|
814
819
|
|
|
815
820
|
declare class GravityIconButtonComponent {
|