coer-elements 2.0.58 → 2.0.59
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/components/lib/coer-checkbox/coer-checkbox.component.d.ts +1 -1
- package/components/lib/coer-dropdown/coer-dropdown.component.d.ts +1 -1
- package/components/lib/coer-grid/coer-grid-body/coer-grid-body.component.d.ts +1 -0
- package/components/lib/coer-grid/coer-grid-footer/coer-grid-footer.component.d.ts +5 -1
- package/components/lib/coer-grid/coer-grid-header/coer-grid-header.component.d.ts +8 -2
- package/components/lib/coer-grid/coer-grid.extension.d.ts +4 -0
- package/components/lib/coer-switch/coer-switch.component.d.ts +1 -1
- package/components/lib/coer-textarea/coer-textarea.component.d.ts +1 -1
- package/fesm2022/coer-elements-components.mjs +133 -60
- package/fesm2022/coer-elements-components.mjs.map +1 -1
- package/fesm2022/coer-elements-tools.mjs +32 -0
- package/fesm2022/coer-elements-tools.mjs.map +1 -1
- package/package.json +1 -1
- package/tools/lib/html-elements.tools.d.ts +10 -0
@@ -3,7 +3,7 @@ import { ControlValue } from 'coer-elements/tools';
|
|
3
3
|
import * as i0 from "@angular/core";
|
4
4
|
export declare class CoerCheckbox extends ControlValue implements AfterViewInit, OnDestroy {
|
5
5
|
_value: boolean;
|
6
|
-
protected readonly
|
6
|
+
protected readonly _effectValue: EffectRef;
|
7
7
|
protected readonly _id: string;
|
8
8
|
protected _isLoading: boolean;
|
9
9
|
id: import("@angular/core").InputSignal<string>;
|
@@ -5,7 +5,7 @@ export declare class CoerDropdown<T> extends ControlValue implements AfterViewIn
|
|
5
5
|
protected readonly _coerTextBox: import("@angular/core").Signal<ElementRef<any>>;
|
6
6
|
protected _value: T | null;
|
7
7
|
protected readonly _id: string;
|
8
|
-
protected readonly
|
8
|
+
protected readonly _effectValue: EffectRef;
|
9
9
|
protected readonly _index: import("@angular/core").WritableSignal<number>;
|
10
10
|
protected readonly _isOpen: import("@angular/core").WritableSignal<boolean>;
|
11
11
|
protected readonly _isOverMenu: import("@angular/core").WritableSignal<boolean>;
|
@@ -8,6 +8,7 @@ export declare class CoerGridBody<T> {
|
|
8
8
|
protected _isLoadingCheck: boolean;
|
9
9
|
protected readonly _coerCheckboxList: import("@angular/core").Signal<readonly CoerCheckbox[]>;
|
10
10
|
protected readonly _coerGridCellList: import("@angular/core").Signal<readonly CoerGridCell<T>[]>;
|
11
|
+
protected _body: HTMLElement | null;
|
11
12
|
protected readonly _sort: import("@angular/core").WritableSignal<IGridSort>;
|
12
13
|
GetIdCalculated: import("@angular/core").InputSignal<(indexRow: number, indexColumn: number, suffix?: string) => string>;
|
13
14
|
value: import("@angular/core").InputSignal<T[]>;
|
@@ -1,11 +1,15 @@
|
|
1
1
|
import { IGridFooter } from 'coer-elements/interfaces';
|
2
2
|
import * as i0 from "@angular/core";
|
3
3
|
export declare class CoerGridfooter<T> {
|
4
|
+
protected _footer: HTMLElement | null;
|
5
|
+
GetIdCalculated: import("@angular/core").InputSignal<(indexRow: number, indexColumn: number, suffix: string) => string>;
|
4
6
|
footer: import("@angular/core").InputSignal<IGridFooter>;
|
5
7
|
dataSource: import("@angular/core").InputSignal<T[]>;
|
6
8
|
dataSourceFiltered: import("@angular/core").InputSignal<T[]>;
|
7
9
|
dataSourceSelected: import("@angular/core").InputSignal<T[]>;
|
8
10
|
isLoadingInner: import("@angular/core").InputSignal<boolean>;
|
11
|
+
ngAfterViewInit(): void;
|
12
|
+
get heigth(): number;
|
9
13
|
static ɵfac: i0.ɵɵFactoryDeclaration<CoerGridfooter<any>, never>;
|
10
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<CoerGridfooter<any>, "coer-grid-footer", never, { "footer": { "alias": "footer"; "required": false; "isSignal": true; }; "dataSource": { "alias": "dataSource"; "required": false; "isSignal": true; }; "dataSourceFiltered": { "alias": "dataSourceFiltered"; "required": false; "isSignal": true; }; "dataSourceSelected": { "alias": "dataSourceSelected"; "required": false; "isSignal": true; }; "isLoadingInner": { "alias": "isLoadingInner"; "required": false; "isSignal": true; }; }, {}, never, never, false, never>;
|
14
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<CoerGridfooter<any>, "coer-grid-footer", never, { "GetIdCalculated": { "alias": "GetIdCalculated"; "required": true; "isSignal": true; }; "footer": { "alias": "footer"; "required": false; "isSignal": true; }; "dataSource": { "alias": "dataSource"; "required": false; "isSignal": true; }; "dataSourceFiltered": { "alias": "dataSourceFiltered"; "required": false; "isSignal": true; }; "dataSourceSelected": { "alias": "dataSourceSelected"; "required": false; "isSignal": true; }; "isLoadingInner": { "alias": "isLoadingInner"; "required": false; "isSignal": true; }; }, {}, never, never, false, never>;
|
11
15
|
}
|
@@ -1,12 +1,15 @@
|
|
1
1
|
import { IGridHeader, IGridHeaderButton, IGridHeaderExportButton, IGridHeaderImportButton, IGridImport, IGridKeyupEnter, IGridSearch } from 'coer-elements/interfaces';
|
2
|
-
import { ElementRef } from '@angular/core';
|
2
|
+
import { AfterViewInit, ElementRef } from '@angular/core';
|
3
3
|
import { CoerTextBox } from '../../../lib/coer-textbox/coer-textbox.component';
|
4
4
|
import { CoerAlert } from 'coer-elements/tools';
|
5
5
|
import * as i0 from "@angular/core";
|
6
|
-
export declare class CoerGridHeader<T> {
|
6
|
+
export declare class CoerGridHeader<T> implements AfterViewInit {
|
7
7
|
protected readonly _alert: CoerAlert;
|
8
8
|
protected readonly _inputFile: import("@angular/core").Signal<ElementRef<any>>;
|
9
9
|
protected readonly _inputSearch: import("@angular/core").Signal<CoerTextBox>;
|
10
|
+
protected _header: HTMLElement | null;
|
11
|
+
protected _headerButtons: HTMLElement | null;
|
12
|
+
protected _headerSlots: HTMLElement | null;
|
10
13
|
protected readonly _isLoadingInner: import("@angular/core").WritableSignal<boolean>;
|
11
14
|
GetIdCalculated: import("@angular/core").InputSignal<(indexRow: number, indexColumn: number, suffix: string) => string>;
|
12
15
|
GetColumnName: import("@angular/core").InputSignal<(columnName: string) => string>;
|
@@ -32,6 +35,9 @@ export declare class CoerGridHeader<T> {
|
|
32
35
|
onInputSearch: import("@angular/core").OutputEmitterRef<string | number>;
|
33
36
|
onClickClearSearch: import("@angular/core").OutputEmitterRef<string | number>;
|
34
37
|
onKeyupEnterSearch: import("@angular/core").OutputEmitterRef<IGridKeyupEnter>;
|
38
|
+
ngAfterViewInit(): void;
|
39
|
+
get heigth(): number;
|
40
|
+
protected get _marginBottom(): number;
|
35
41
|
_dataSourceExport: import("@angular/core").Signal<T[]>;
|
36
42
|
protected _showExportButton: import("@angular/core").Signal<boolean>;
|
37
43
|
/** */
|
@@ -3,10 +3,14 @@ import { AfterViewInit } from "@angular/core";
|
|
3
3
|
import { ControlValue } from 'coer-elements/tools';
|
4
4
|
import { CoerGridHeader } from "./coer-grid-header/coer-grid-header.component";
|
5
5
|
import { CoerGridBody } from "./coer-grid-body/coer-grid-body.component";
|
6
|
+
import { CoerGridfooter } from "./coer-grid-footer/coer-grid-footer.component";
|
6
7
|
import * as i0 from "@angular/core";
|
7
8
|
export declare class CoerGridExtension<T> extends ControlValue implements AfterViewInit {
|
8
9
|
protected readonly _coerGridHeader: import("@angular/core").Signal<CoerGridHeader<T> | undefined>;
|
9
10
|
protected readonly _coerGridBody: import("@angular/core").Signal<CoerGridBody<T> | undefined>;
|
11
|
+
protected readonly _coerGridFooter: import("@angular/core").Signal<CoerGridfooter<T> | undefined>;
|
12
|
+
protected _gridGrandFather: HTMLElement | null;
|
13
|
+
protected _grid: HTMLElement | null;
|
10
14
|
protected _value: T[];
|
11
15
|
protected readonly _valueSignal: import("@angular/core").WritableSignal<T[]>;
|
12
16
|
protected readonly _id: string;
|
@@ -6,7 +6,7 @@ export declare class CoerSwitch extends ControlValue implements OnDestroy {
|
|
6
6
|
protected coerSwitch: import("@angular/core").Signal<MatSlideToggle>;
|
7
7
|
protected _value: boolean;
|
8
8
|
protected readonly _id: string;
|
9
|
-
protected readonly
|
9
|
+
protected readonly _effectValue: EffectRef;
|
10
10
|
id: import("@angular/core").InputSignal<string>;
|
11
11
|
value: import("@angular/core").InputSignal<boolean | null | undefined>;
|
12
12
|
label: import("@angular/core").InputSignal<string>;
|
@@ -4,7 +4,7 @@ import * as i0 from "@angular/core";
|
|
4
4
|
export declare class CoerTextarea extends ControlValue implements AfterViewInit, OnDestroy {
|
5
5
|
protected _coerTextBox: import("@angular/core").Signal<ElementRef<any>>;
|
6
6
|
protected _value: string | number;
|
7
|
-
protected readonly
|
7
|
+
protected readonly _effectValue: EffectRef;
|
8
8
|
protected readonly _id: string;
|
9
9
|
protected readonly _isLoadingEvent: import("@angular/core").WritableSignal<boolean>;
|
10
10
|
protected _htmlElement: HTMLInputElement;
|