Comparing version 0.2.6 to 0.2.7
@@ -1,2 +0,2 @@ | ||
import { AfterViewInit, ChangeDetectorRef, ElementRef, OnChanges, SimpleChanges } from '@angular/core'; | ||
import { AfterViewInit, ChangeDetectorRef, ElementRef, OnChanges } from '@angular/core'; | ||
import { NgxFillMode, NgxRounded, NgxSize } from './typings'; | ||
@@ -14,3 +14,2 @@ import { ControlValueAccessor, NgControl } from '@angular/forms'; | ||
placeholder: string; | ||
disabled: boolean; | ||
containerRef: ElementRef; | ||
@@ -23,6 +22,7 @@ labelRef: ElementRef; | ||
valStatus: boolean; | ||
disabled: boolean; | ||
inputFocus: boolean; | ||
constructor(elementRef: ElementRef, cdr: ChangeDetectorRef, ngControl: NgControl); | ||
ngAfterViewInit(): void; | ||
ngOnChanges(changes: SimpleChanges): void; | ||
ngOnChanges(): void; | ||
initialize(): void; | ||
@@ -29,0 +29,0 @@ writeValue(value: any): void; |
{ | ||
"name": "ngx-eagle", | ||
"version": "0.2.6", | ||
"version": "0.2.7", | ||
"license": "MIT", | ||
@@ -63,14 +63,2 @@ "description": "UI component infrastructure and Design components for mobile and desktop Angular web applications.", | ||
}, | ||
"./carousel": { | ||
"types": "./carousel/index.d.ts", | ||
"esm2022": "./esm2022/carousel/ngx-eagle-carousel.mjs", | ||
"esm": "./esm2022/carousel/ngx-eagle-carousel.mjs", | ||
"default": "./fesm2022/ngx-eagle-carousel.mjs" | ||
}, | ||
"./divider": { | ||
"types": "./divider/index.d.ts", | ||
"esm2022": "./esm2022/divider/ngx-eagle-divider.mjs", | ||
"esm": "./esm2022/divider/ngx-eagle-divider.mjs", | ||
"default": "./fesm2022/ngx-eagle-divider.mjs" | ||
}, | ||
"./card": { | ||
@@ -82,7 +70,7 @@ "types": "./card/index.d.ts", | ||
}, | ||
"./grid": { | ||
"types": "./grid/index.d.ts", | ||
"esm2022": "./esm2022/grid/ngx-eagle-grid.mjs", | ||
"esm": "./esm2022/grid/ngx-eagle-grid.mjs", | ||
"default": "./fesm2022/ngx-eagle-grid.mjs" | ||
"./dialog": { | ||
"types": "./dialog/index.d.ts", | ||
"esm2022": "./esm2022/dialog/ngx-eagle-dialog.mjs", | ||
"esm": "./esm2022/dialog/ngx-eagle-dialog.mjs", | ||
"default": "./fesm2022/ngx-eagle-dialog.mjs" | ||
}, | ||
@@ -95,8 +83,2 @@ "./expansion-panel": { | ||
}, | ||
"./dialog": { | ||
"types": "./dialog/index.d.ts", | ||
"esm2022": "./esm2022/dialog/ngx-eagle-dialog.mjs", | ||
"esm": "./esm2022/dialog/ngx-eagle-dialog.mjs", | ||
"default": "./fesm2022/ngx-eagle-dialog.mjs" | ||
}, | ||
"./input": { | ||
@@ -108,2 +90,20 @@ "types": "./input/index.d.ts", | ||
}, | ||
"./carousel": { | ||
"types": "./carousel/index.d.ts", | ||
"esm2022": "./esm2022/carousel/ngx-eagle-carousel.mjs", | ||
"esm": "./esm2022/carousel/ngx-eagle-carousel.mjs", | ||
"default": "./fesm2022/ngx-eagle-carousel.mjs" | ||
}, | ||
"./divider": { | ||
"types": "./divider/index.d.ts", | ||
"esm2022": "./esm2022/divider/ngx-eagle-divider.mjs", | ||
"esm": "./esm2022/divider/ngx-eagle-divider.mjs", | ||
"default": "./fesm2022/ngx-eagle-divider.mjs" | ||
}, | ||
"./grid": { | ||
"types": "./grid/index.d.ts", | ||
"esm2022": "./esm2022/grid/ngx-eagle-grid.mjs", | ||
"esm": "./esm2022/grid/ngx-eagle-grid.mjs", | ||
"default": "./fesm2022/ngx-eagle-grid.mjs" | ||
}, | ||
"./line-chart": { | ||
@@ -127,2 +127,8 @@ "types": "./line-chart/index.d.ts", | ||
}, | ||
"./switch": { | ||
"types": "./switch/index.d.ts", | ||
"esm2022": "./esm2022/switch/ngx-eagle-switch.mjs", | ||
"esm": "./esm2022/switch/ngx-eagle-switch.mjs", | ||
"default": "./fesm2022/ngx-eagle-switch.mjs" | ||
}, | ||
"./tab": { | ||
@@ -134,8 +140,2 @@ "types": "./tab/index.d.ts", | ||
}, | ||
"./switch": { | ||
"types": "./switch/index.d.ts", | ||
"esm2022": "./esm2022/switch/ngx-eagle-switch.mjs", | ||
"esm": "./esm2022/switch/ngx-eagle-switch.mjs", | ||
"default": "./fesm2022/ngx-eagle-switch.mjs" | ||
}, | ||
"./tag": { | ||
@@ -142,0 +142,0 @@ "types": "./tag/index.d.ts", |
@@ -0,5 +1,16 @@ | ||
import { ElementRef, OnDestroy, OnInit } from '@angular/core'; | ||
import { SelectComponent } from './select.component'; | ||
import * as i0 from "@angular/core"; | ||
export declare class OptionComponent { | ||
static ɵfac: i0.ɵɵFactoryDeclaration<OptionComponent, never>; | ||
static ɵcmp: i0.ɵɵComponentDeclaration<OptionComponent, "ngx-option", never, {}, {}, never, never, true, never>; | ||
export declare class OptionComponent implements OnInit, OnDestroy { | ||
selectComponent: SelectComponent; | ||
optionItemRef: ElementRef; | ||
value: string; | ||
inputRef: ElementRef; | ||
private subscription; | ||
constructor(selectComponent: SelectComponent); | ||
ngOnInit(): void; | ||
onClick(): void; | ||
ngOnDestroy(): void; | ||
static ɵfac: i0.ɵɵFactoryDeclaration<OptionComponent, [{ optional: true; host: true; }]>; | ||
static ɵcmp: i0.ɵɵComponentDeclaration<OptionComponent, "ngx-option", never, { "value": { "alias": "value"; "required": false; }; }, {}, never, ["*"], true, never>; | ||
} |
@@ -1,6 +0,10 @@ | ||
import { AfterViewInit, ElementRef } from '@angular/core'; | ||
import { AfterViewInit, ChangeDetectorRef, ElementRef, OnChanges } from '@angular/core'; | ||
import { NgxFillMode, NgxRounded, NgxSize } from './typings'; | ||
import { ControlValueAccessor, NgControl } from '@angular/forms'; | ||
import { ReplaySubject } from 'rxjs'; | ||
import * as i0 from "@angular/core"; | ||
export declare class SelectComponent implements AfterViewInit { | ||
export declare class SelectComponent implements AfterViewInit, ControlValueAccessor, OnChanges { | ||
elementRef: ElementRef; | ||
private cdr; | ||
ngControl: NgControl; | ||
ngxSize: NgxSize; | ||
@@ -11,15 +15,37 @@ ngxRounded: NgxRounded; | ||
placeholder: string; | ||
autocomplete: boolean; | ||
selectRef: ElementRef; | ||
containerRef: ElementRef; | ||
labelRef: ElementRef; | ||
inputRef: ElementRef; | ||
arrowRef: ElementRef; | ||
optContRef: ElementRef; | ||
readonly containerRef$: ReplaySubject<ElementRef<any>>; | ||
readonly inputRef$: ReplaySubject<ElementRef<any>>; | ||
onChange: any; | ||
onTouched: any; | ||
value: any; | ||
valStatus: boolean; | ||
disabled: boolean; | ||
inputFocus: boolean; | ||
inputValue: string; | ||
constructor(elementRef: ElementRef); | ||
isOpenDropdown: boolean; | ||
constructor(elementRef: ElementRef, cdr: ChangeDetectorRef, ngControl: NgControl); | ||
ngAfterViewInit(): void; | ||
openDropdown(isOpenDropdown: boolean): void; | ||
clickout(event: any): void; | ||
ngOnChanges(): void; | ||
initialize(): void; | ||
writeValue(value: any): void; | ||
registerOnChange(fn: any): void; | ||
registerOnTouched(fn: any): void; | ||
setDisabledState?(isDisabled: boolean): void; | ||
moveLabel(): void; | ||
moveArrow(): void; | ||
onInputChange(event: Event): void; | ||
buildBorderOutlined(): void; | ||
drawLineTopBorder(): void; | ||
static ɵfac: i0.ɵɵFactoryDeclaration<SelectComponent, never>; | ||
static ɵcmp: i0.ɵɵComponentDeclaration<SelectComponent, "ngx-select", never, { "ngxSize": { "alias": "ngxSize"; "required": false; }; "ngxRounded": { "alias": "ngxRounded"; "required": false; }; "ngxFillMode": { "alias": "ngxFillMode"; "required": false; }; "label": { "alias": "label"; "required": false; }; "placeholder": { "alias": "placeholder"; "required": false; }; }, {}, never, ["*"], true, never>; | ||
validate(): void; | ||
static ɵfac: i0.ɵɵFactoryDeclaration<SelectComponent, [null, null, { optional: true; self: true; }]>; | ||
static ɵcmp: i0.ɵɵComponentDeclaration<SelectComponent, "ngx-select", never, { "ngxSize": { "alias": "ngxSize"; "required": false; }; "ngxRounded": { "alias": "ngxRounded"; "required": false; }; "ngxFillMode": { "alias": "ngxFillMode"; "required": false; }; "label": { "alias": "label"; "required": false; }; "placeholder": { "alias": "placeholder"; "required": false; }; "autocomplete": { "alias": "autocomplete"; "required": false; }; }, {}, never, ["*"], true, never>; | ||
static ngAcceptInputType_autocomplete: unknown; | ||
} |
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
626413
5806