@zambon-dev/library 1.6.3 → 2.0.0
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/CHANGELOG.md +44 -1
- package/README.md +3 -1
- package/fesm2022/zambon-dev-library.mjs +52 -52
- package/fesm2022/zambon-dev-library.mjs.map +1 -1
- package/lib/components/catalog-select/catalog-select.component.d.ts +2 -3
- package/lib/components/data-grid/data-grid.component.d.ts +2 -2
- package/lib/components/form-input/form-input.component.d.ts +6 -6
- package/lib/components/group-accordion/group-accordion.component.d.ts +1 -1
- package/package.json +1 -1
|
@@ -1,10 +1,10 @@
|
|
|
1
|
-
import { AfterViewInit, OnInit } from '@angular/core';
|
|
1
|
+
import { AfterViewInit, OnInit, OnDestroy } from '@angular/core';
|
|
2
2
|
import { FormControl } from '@angular/forms';
|
|
3
3
|
import { Observable } from 'rxjs';
|
|
4
4
|
import { ICatalogEntry } from '../../models';
|
|
5
5
|
import { BaseComponent } from '../base.component';
|
|
6
6
|
import * as i0 from "@angular/core";
|
|
7
|
-
export declare class CatalogSelectComponent extends BaseComponent implements OnInit, AfterViewInit {
|
|
7
|
+
export declare class CatalogSelectComponent extends BaseComponent implements OnInit, AfterViewInit, OnDestroy {
|
|
8
8
|
private bodyMouseDown;
|
|
9
9
|
private bodyMouseUp;
|
|
10
10
|
private dropdownTemplate;
|
|
@@ -88,7 +88,6 @@ export declare class CatalogSelectComponent extends BaseComponent implements OnI
|
|
|
88
88
|
protected onKeyDown(event: KeyboardEvent): void;
|
|
89
89
|
protected onDropDownErrorClick(): void;
|
|
90
90
|
protected onDropDownItemClick(entry: ICatalogEntry): void;
|
|
91
|
-
protected onDropDownMessageClick(): void;
|
|
92
91
|
protected getOptionId(index: number): string;
|
|
93
92
|
private applySearchCriteria;
|
|
94
93
|
private checkAndAddDisplayControl;
|
|
@@ -1,10 +1,10 @@
|
|
|
1
|
-
import { AfterViewInit, ChangeDetectorRef, OnInit } from '@angular/core';
|
|
1
|
+
import { AfterViewInit, ChangeDetectorRef, OnInit, OnDestroy } from '@angular/core';
|
|
2
2
|
import { IGridColumn } from '../../models';
|
|
3
3
|
import { DataGridConfigs } from '../../models/configs';
|
|
4
4
|
import { DataGridDataset } from '../../services';
|
|
5
5
|
import { BaseComponent } from '../base.component';
|
|
6
6
|
import * as i0 from "@angular/core";
|
|
7
|
-
export declare class DataGridComponent extends BaseComponent implements OnInit, AfterViewInit {
|
|
7
|
+
export declare class DataGridComponent extends BaseComponent implements OnInit, AfterViewInit, OnDestroy {
|
|
8
8
|
private bodyElement;
|
|
9
9
|
private viewport?;
|
|
10
10
|
disabled: boolean;
|
|
@@ -19,11 +19,11 @@ export declare class FormInputComponent extends BaseComponent implements OnInit
|
|
|
19
19
|
rows: number;
|
|
20
20
|
step: number;
|
|
21
21
|
type: string;
|
|
22
|
-
|
|
23
|
-
|
|
24
|
-
fixedValueChanged: EventEmitter<
|
|
25
|
-
|
|
26
|
-
|
|
22
|
+
blurred: EventEmitter<void>;
|
|
23
|
+
changed: EventEmitter<any>;
|
|
24
|
+
fixedValueChanged: EventEmitter<string>;
|
|
25
|
+
focused: EventEmitter<void>;
|
|
26
|
+
inputChanged: EventEmitter<void>;
|
|
27
27
|
protected readonly formGroupDirective: FormGroupDirective;
|
|
28
28
|
protected readonly formGroupName: FormGroupName;
|
|
29
29
|
protected readonly formService: FormService;
|
|
@@ -43,5 +43,5 @@ export declare class FormInputComponent extends BaseComponent implements OnInit
|
|
|
43
43
|
protected onInput(): void;
|
|
44
44
|
protected onValueChanged(newText: string): void;
|
|
45
45
|
static ɵfac: i0.ɵɵFactoryDeclaration<FormInputComponent, never>;
|
|
46
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<FormInputComponent, "lib-form-input", never, { "autofocus": { "alias": "autofocus"; "required": false; }; "controlName": { "alias": "controlName"; "required": false; }; "disabledControlName": { "alias": "disabledControlName"; "required": false; }; "displayReadOnlyAsDisabled": { "alias": "displayReadOnlyAsDisabled"; "required": false; }; "fixedValue": { "alias": "fixedValue"; "required": false; }; "format": { "alias": "format"; "required": false; }; "invalid": { "alias": "invalid"; "required": false; }; "isDisabled": { "alias": "isDisabled"; "required": false; }; "isFullHeight": { "alias": "isFullHeight"; "required": false; }; "maxLength": { "alias": "maxLength"; "required": false; }; "min": { "alias": "min"; "required": false; }; "readOnly": { "alias": "readOnly"; "required": false; }; "rows": { "alias": "rows"; "required": false; }; "step": { "alias": "step"; "required": false; }; "type": { "alias": "type"; "required": false; }; }, { "
|
|
46
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<FormInputComponent, "lib-form-input", never, { "autofocus": { "alias": "autofocus"; "required": false; }; "controlName": { "alias": "controlName"; "required": false; }; "disabledControlName": { "alias": "disabledControlName"; "required": false; }; "displayReadOnlyAsDisabled": { "alias": "displayReadOnlyAsDisabled"; "required": false; }; "fixedValue": { "alias": "fixedValue"; "required": false; }; "format": { "alias": "format"; "required": false; }; "invalid": { "alias": "invalid"; "required": false; }; "isDisabled": { "alias": "isDisabled"; "required": false; }; "isFullHeight": { "alias": "isFullHeight"; "required": false; }; "maxLength": { "alias": "maxLength"; "required": false; }; "min": { "alias": "min"; "required": false; }; "readOnly": { "alias": "readOnly"; "required": false; }; "rows": { "alias": "rows"; "required": false; }; "step": { "alias": "step"; "required": false; }; "type": { "alias": "type"; "required": false; }; }, { "blurred": "blurred"; "changed": "changed"; "fixedValueChanged": "fixedValueChanged"; "focused": "focused"; "inputChanged": "inputChanged"; }, never, never, true, never>;
|
|
47
47
|
}
|