@praxisui/dynamic-form 1.0.0-beta.13 → 1.0.0-beta.14
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/index.d.ts
CHANGED
|
@@ -987,6 +987,9 @@ declare class CanvasToolbarComponent {
|
|
|
987
987
|
selectPath: EventEmitter<CanvasPathPart>;
|
|
988
988
|
/** Emite quando o usuário solicita fechar a toolbar (ESC). */
|
|
989
989
|
requestClose: EventEmitter<void>;
|
|
990
|
+
/** Estado interno para animar o fechamento. */
|
|
991
|
+
closing: boolean;
|
|
992
|
+
private readonly closeAnimMs;
|
|
990
993
|
toggleReadonly: EventEmitter<void>;
|
|
991
994
|
toggleRequired: EventEmitter<void>;
|
|
992
995
|
toggleHidden: EventEmitter<void>;
|
|
@@ -1000,8 +1003,10 @@ declare class CanvasToolbarComponent {
|
|
|
1000
1003
|
get requiredIcon(): string;
|
|
1001
1004
|
get visibilityIcon(): string;
|
|
1002
1005
|
get disabledIcon(): string;
|
|
1003
|
-
/** Fecha a toolbar com a tecla ESC quando o componente está visível. */
|
|
1006
|
+
/** Fecha a toolbar com a tecla ESC quando o componente está visível (com animação). */
|
|
1004
1007
|
onGlobalKeydown(ev: KeyboardEvent): void;
|
|
1008
|
+
/** Inicia animação de saída e emite o evento ao final. */
|
|
1009
|
+
triggerClose(): void;
|
|
1005
1010
|
static ɵfac: i0.ɵɵFactoryDeclaration<CanvasToolbarComponent, never>;
|
|
1006
1011
|
static ɵcmp: i0.ɵɵComponentDeclaration<CanvasToolbarComponent, "praxis-canvas-toolbar", never, { "selectedElement": { "alias": "selectedElement"; "required": false; }; }, { "editMetadata": "editMetadata"; "delete": "delete"; "moveUp": "moveUp"; "moveDown": "moveDown"; "selectPath": "selectPath"; "requestClose": "requestClose"; "toggleReadonly": "toggleReadonly"; "toggleRequired": "toggleRequired"; "toggleHidden": "toggleHidden"; "toggleDisabled": "toggleDisabled"; }, never, never, true, never>;
|
|
1007
1012
|
}
|
package/package.json
CHANGED
|
@@ -1,17 +1,17 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@praxisui/dynamic-form",
|
|
3
|
-
"version": "1.0.0-beta.
|
|
3
|
+
"version": "1.0.0-beta.14",
|
|
4
4
|
"description": "Angular dynamic form engine for Praxis UI: metadata-driven forms, hooks, and services integrating @praxisui/* packages.",
|
|
5
5
|
"peerDependencies": {
|
|
6
6
|
"@angular/common": "^20.0.0",
|
|
7
7
|
"@angular/core": "^20.0.0",
|
|
8
8
|
"@angular/cdk": "^20.0.0",
|
|
9
|
-
"@praxisui/settings-panel": "^1.0.0-beta.
|
|
10
|
-
"@praxisui/visual-builder": "^1.0.0-beta.
|
|
11
|
-
"@praxisui/specification-core": "^1.0.0-beta.
|
|
12
|
-
"@praxisui/specification": "^1.0.0-beta.
|
|
13
|
-
"@praxisui/core": "^1.0.0-beta.
|
|
14
|
-
"@praxisui/cron-builder": "^1.0.0-beta.
|
|
9
|
+
"@praxisui/settings-panel": "^1.0.0-beta.14",
|
|
10
|
+
"@praxisui/visual-builder": "^1.0.0-beta.14",
|
|
11
|
+
"@praxisui/specification-core": "^1.0.0-beta.14",
|
|
12
|
+
"@praxisui/specification": "^1.0.0-beta.14",
|
|
13
|
+
"@praxisui/core": "^1.0.0-beta.14",
|
|
14
|
+
"@praxisui/cron-builder": "^1.0.0-beta.14"
|
|
15
15
|
},
|
|
16
16
|
"dependencies": {
|
|
17
17
|
"tslib": "^2.3.0",
|