@acorex/components 16.18.28 → 16.18.30
Sign up to get free protection for your applications and to get access to all the features.
- package/esm2022/lib/form-group/form-group.component.mjs +12 -5
- package/esm2022/lib/tab-strip/tab-strip.component.mjs +11 -4
- package/fesm2022/acorex-components.mjs +21 -7
- package/fesm2022/acorex-components.mjs.map +1 -1
- package/lib/form-group/form-group.component.d.ts +1 -0
- package/lib/tab-strip/tab-strip.component.d.ts +1 -1
- package/package.json +1 -1
@@ -9,6 +9,7 @@ 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
|
+
inputHeight: import("@angular/core").WritableSignal<string>;
|
12
13
|
static ɵfac: i0.ɵɵFactoryDeclaration<AXFormGroupComponent, never>;
|
13
14
|
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>;
|
14
15
|
}
|
@@ -23,7 +23,7 @@ export declare class AXTabStripComponent implements OnInit {
|
|
23
23
|
maxWidth: string;
|
24
24
|
items: AXTabStripItem[];
|
25
25
|
onTabChanged: EventEmitter<AXTabStripChangedEvent>;
|
26
|
-
handleClick(i: AXTabStripItem): void;
|
26
|
+
handleClick(i: AXTabStripItem, e: MouseEvent): void;
|
27
27
|
static ɵfac: i0.ɵɵFactoryDeclaration<AXTabStripComponent, never>;
|
28
28
|
static ɵcmp: i0.ɵɵComponentDeclaration<AXTabStripComponent, "ax-tab-strip", never, { "maxWidth": { "alias": "maxWidth"; "required": false; }; "items": { "alias": "items"; "required": false; }; }, { "onTabChanged": "onTabChanged"; }, never, never, false, never>;
|
29
29
|
}
|