@acorex/components 16.18.26 → 16.18.27
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/esm2022/lib/form-group/form-group.component.mjs +20 -11
- package/esm2022/lib/property-editor/editors/textarea-editor/textarea.editor.mjs +1 -1
- package/esm2022/lib/selectbox/selectbox.component.mjs +2 -2
- package/esm2022/lib/textarea/textarea.component.mjs +18 -5
- package/esm2022/lib/textbox/textbox.component.mjs +9 -5
- package/fesm2022/acorex-components.mjs +43 -17
- package/fesm2022/acorex-components.mjs.map +1 -1
- package/lib/form-group/form-group.component.d.ts +0 -1
- package/lib/selectbox/selectbox.component.d.ts +1 -1
- package/lib/textarea/textarea.component.d.ts +7 -2
- package/package.json +1 -1
@@ -9,7 +9,6 @@ export declare class AXFormGroupComponent extends AXBaseComponent implements AXB
|
|
9
9
|
private component;
|
10
10
|
required: any;
|
11
11
|
labelMode: import("@angular/core").ModelSignal<"static" | "float" | "over">;
|
12
|
-
protected isFloatActive: import("@angular/core").WritableSignal<boolean>;
|
13
12
|
static ɵfac: i0.ɵɵFactoryDeclaration<AXFormGroupComponent, never>;
|
14
13
|
static ɵcmp: i0.ɵɵComponentDeclaration<AXFormGroupComponent, "ax-form-group", never, { "size": { "alias": "size"; "required": false; }; "labelMode": { "alias": "labelMode"; "required": false; "isSignal": true; }; }, { "labelMode": "labelModeChange"; }, ["component"], ["ax-label", "ax-button[start]", "*", "ax-button[end]", "ax-button"], false, never>;
|
15
14
|
}
|
@@ -17,7 +17,7 @@ export declare class AXSelectBoxComponent extends AXValidatableComponent impleme
|
|
17
17
|
private cdr;
|
18
18
|
private ref;
|
19
19
|
private zone;
|
20
|
-
|
20
|
+
componentName: string;
|
21
21
|
showDropDownButton: boolean;
|
22
22
|
rowTemplate: TemplateRef<any>;
|
23
23
|
rowInputTemplate: TemplateRef<any>;
|
@@ -1,12 +1,17 @@
|
|
1
|
-
import { ChangeDetectorRef, ElementRef } from '@angular/core';
|
1
|
+
import { ChangeDetectorRef, ElementRef, EventEmitter } from '@angular/core';
|
2
2
|
import { AXBaseTextComponent } from '../base/element.class';
|
3
3
|
import * as i0 from "@angular/core";
|
4
4
|
export declare class AXTextAreaComponent extends AXBaseTextComponent {
|
5
5
|
protected cdr: ChangeDetectorRef;
|
6
|
+
componentName: string;
|
6
7
|
constructor(cdr: ChangeDetectorRef, ref: ElementRef);
|
7
8
|
rows: number;
|
8
9
|
cols: number;
|
10
|
+
onBlur: EventEmitter<any>;
|
11
|
+
onFocus: EventEmitter<any>;
|
9
12
|
maxLength: number;
|
13
|
+
protected focusHandler(e: MouseEvent): void;
|
14
|
+
protected blurHandler(e: MouseEvent): void;
|
10
15
|
static ɵfac: i0.ɵɵFactoryDeclaration<AXTextAreaComponent, never>;
|
11
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<AXTextAreaComponent, "ax-text-area", never, { "rows": { "alias": "rows"; "required": false; }; "cols": { "alias": "cols"; "required": false; }; "maxLength": { "alias": "maxLength"; "required": false; }; }, {}, never, ["ax-button"], false, never>;
|
16
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<AXTextAreaComponent, "ax-text-area", never, { "rows": { "alias": "rows"; "required": false; }; "cols": { "alias": "cols"; "required": false; }; "maxLength": { "alias": "maxLength"; "required": false; }; }, { "onBlur": "onBlur"; "onFocus": "onFocus"; }, never, ["ax-button"], false, never>;
|
12
17
|
}
|