@bizy/core 21.8.0 → 21.8.1
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/fesm2022/bizy-core.mjs +83 -91
- package/fesm2022/bizy-core.mjs.map +1 -1
- package/package.json +1 -1
- package/types/bizy-core.d.ts +8 -8
package/package.json
CHANGED
package/types/bizy-core.d.ts
CHANGED
|
@@ -839,11 +839,11 @@ declare class BizyInputComponent implements OnDestroy {
|
|
|
839
839
|
bizyInputWrapper: ElementRef;
|
|
840
840
|
id: string;
|
|
841
841
|
name: string;
|
|
842
|
-
type: 'text' | 'number' | 'email' | 'password' | 'tel' | 'textarea' | 'currency';
|
|
843
842
|
customClass: string;
|
|
844
843
|
placeholder: string;
|
|
845
844
|
debounceTime: number;
|
|
846
845
|
rows: number;
|
|
846
|
+
type: 'text' | 'number' | 'email' | 'password' | 'tel' | 'textarea' | 'currency';
|
|
847
847
|
maxLength: number | null;
|
|
848
848
|
autofocus: boolean;
|
|
849
849
|
disabled: boolean;
|
|
@@ -853,10 +853,10 @@ declare class BizyInputComponent implements OnDestroy {
|
|
|
853
853
|
onEnter: EventEmitter<KeyboardEvent>;
|
|
854
854
|
onBackspace: EventEmitter<KeyboardEvent>;
|
|
855
855
|
onSelect: EventEmitter<PointerEvent>;
|
|
856
|
-
onBlur: EventEmitter<
|
|
857
|
-
onFocus: EventEmitter<
|
|
856
|
+
onBlur: EventEmitter<FocusEvent>;
|
|
857
|
+
onFocus: EventEmitter<FocusEvent>;
|
|
858
858
|
onPaste: EventEmitter<ClipboardEvent>;
|
|
859
|
-
set bizyInput(
|
|
859
|
+
set bizyInput(inputElement: ElementRef);
|
|
860
860
|
set value(value: string | number | null);
|
|
861
861
|
focused: boolean;
|
|
862
862
|
touched: boolean;
|
|
@@ -870,8 +870,7 @@ declare class BizyInputComponent implements OnDestroy {
|
|
|
870
870
|
_onClick: (event: PointerEvent) => void;
|
|
871
871
|
_onEnter: (event: KeyboardEvent) => void;
|
|
872
872
|
_onBackspace: (event: KeyboardEvent) => void;
|
|
873
|
-
setTouched(touched: boolean)
|
|
874
|
-
ngAfterViewInit(): void;
|
|
873
|
+
setTouched: (touched: boolean) => void;
|
|
875
874
|
onOpen: () => void;
|
|
876
875
|
getNativeElement: () => any;
|
|
877
876
|
setFocus: (focus: boolean) => void;
|
|
@@ -882,7 +881,7 @@ declare class BizyInputComponent implements OnDestroy {
|
|
|
882
881
|
}, button?: HTMLButtonElement) => void;
|
|
883
882
|
ngOnDestroy(): void;
|
|
884
883
|
static ɵfac: i0.ɵɵFactoryDeclaration<BizyInputComponent, never>;
|
|
885
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<BizyInputComponent, "bizy-input", never, { "id": { "alias": "id"; "required": false; }; "name": { "alias": "name"; "required": false; }; "
|
|
884
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<BizyInputComponent, "bizy-input", never, { "id": { "alias": "id"; "required": false; }; "name": { "alias": "name"; "required": false; }; "customClass": { "alias": "customClass"; "required": false; }; "placeholder": { "alias": "placeholder"; "required": false; }; "debounceTime": { "alias": "debounceTime"; "required": false; }; "rows": { "alias": "rows"; "required": false; }; "type": { "alias": "type"; "required": false; }; "maxLength": { "alias": "maxLength"; "required": false; }; "autofocus": { "alias": "autofocus"; "required": false; }; "disabled": { "alias": "disabled"; "required": false; }; "readonly": { "alias": "readonly"; "required": false; }; "value": { "alias": "value"; "required": false; }; }, { "valueChange": "valueChange"; "onChange": "onChange"; "onEnter": "onEnter"; "onBackspace": "onBackspace"; "onSelect": "onSelect"; "onBlur": "onBlur"; "onFocus": "onFocus"; "onPaste": "onPaste"; }, ["options"], ["[slot=header]", "[slot=prefix]", "[slot=suffix]", "bizy-input-option", "[slot=error]"], true, never>;
|
|
886
885
|
}
|
|
887
886
|
|
|
888
887
|
declare class BizySelectOptionComponent {
|
|
@@ -1029,10 +1028,11 @@ declare class BizyGridComponent implements AfterContentInit {
|
|
|
1029
1028
|
items: Array<unknown>;
|
|
1030
1029
|
itemTemplate: TemplateRef<unknown>;
|
|
1031
1030
|
itemsPerRow: number;
|
|
1031
|
+
getNativeElement: () => any;
|
|
1032
1032
|
ngAfterContentInit(): void;
|
|
1033
|
+
trackByRow(index: number, row: any[]): any;
|
|
1033
1034
|
scrollTo(index: number, behavior?: 'auto' | 'instant' | 'smooth'): void;
|
|
1034
1035
|
ngOnDestroy(): void;
|
|
1035
|
-
getNativeElement: () => any;
|
|
1036
1036
|
static ɵfac: i0.ɵɵFactoryDeclaration<BizyGridComponent, never>;
|
|
1037
1037
|
static ɵcmp: i0.ɵɵComponentDeclaration<BizyGridComponent, "bizy-grid", never, { "resizeRef": { "alias": "resizeRef"; "required": false; }; }, {}, ["gridDirective"], ["*"], true, never>;
|
|
1038
1038
|
}
|