keevo-components 2.0.274 → 2.0.276
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/components/kv-instruction-page/kv-instruction-page.component.mjs +57 -11
- package/esm2022/lib/components/kv-table/kv-table.component.mjs +3 -3
- package/fesm2022/keevo-components.mjs +57 -9
- package/fesm2022/keevo-components.mjs.map +1 -1
- package/lib/components/kv-instruction-page/kv-instruction-page.component.d.ts +13 -4
- package/package.json +1 -1
|
@@ -1,8 +1,10 @@
|
|
|
1
|
+
import { OnInit } from '@angular/core';
|
|
1
2
|
import { ButtonModel } from '../../api/components/button/button.model';
|
|
2
3
|
import * as i0 from "@angular/core";
|
|
3
|
-
export declare class KvInstructionPageComponent {
|
|
4
|
+
export declare class KvInstructionPageComponent implements OnInit {
|
|
4
5
|
actions: import("@angular/core").InputSignal<ButtonModel[]>;
|
|
5
6
|
camposObrigatorios: import("@angular/core").InputSignal<boolean>;
|
|
7
|
+
startExpanded: import("@angular/core").InputSignal<boolean>;
|
|
6
8
|
whiteCard: import("@angular/core").InputSignal<{
|
|
7
9
|
title: string;
|
|
8
10
|
icon: string;
|
|
@@ -13,8 +15,15 @@ export declare class KvInstructionPageComponent {
|
|
|
13
15
|
icon: string;
|
|
14
16
|
height: number;
|
|
15
17
|
} | undefined>;
|
|
16
|
-
|
|
17
|
-
|
|
18
|
+
isMobile: import("@angular/core").WritableSignal<boolean>;
|
|
19
|
+
private userToggledPanel;
|
|
20
|
+
ngOnInit(): void;
|
|
21
|
+
onResize(): void;
|
|
22
|
+
private checkMobileState;
|
|
23
|
+
isPanelExpanded: import("@angular/core").Signal<boolean>;
|
|
24
|
+
togglePanel(): void;
|
|
25
|
+
mainContentWidth: import("@angular/core").Signal<"100%" | "0%" | "calc(75% - 0.25rem)">;
|
|
26
|
+
panelWidth: import("@angular/core").Signal<"100%" | "0%" | "calc(25% - 0.25rem)">;
|
|
18
27
|
static ɵfac: i0.ɵɵFactoryDeclaration<KvInstructionPageComponent, never>;
|
|
19
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<KvInstructionPageComponent, "kv-instruction-page", never, { "actions": { "alias": "actions"; "required": false; "isSignal": true; }; "camposObrigatorios": { "alias": "camposObrigatorios"; "required": false; "isSignal": true; }; "whiteCard": { "alias": "whiteCard"; "required": false; "isSignal": true; }; "blackCard": { "alias": "blackCard"; "required": false; "isSignal": true; }; }, {}, never, ["[main-content]", "[white-card-content]", "[black-card-content]"
|
|
28
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<KvInstructionPageComponent, "kv-instruction-page", never, { "actions": { "alias": "actions"; "required": false; "isSignal": true; }; "camposObrigatorios": { "alias": "camposObrigatorios"; "required": false; "isSignal": true; }; "startExpanded": { "alias": "startExpanded"; "required": false; "isSignal": true; }; "whiteCard": { "alias": "whiteCard"; "required": false; "isSignal": true; }; "blackCard": { "alias": "blackCard"; "required": false; "isSignal": true; }; }, {}, never, ["[main-content]", "[white-card-content]", "[black-card-content]"], true, never>;
|
|
20
29
|
}
|