@praxisui/dynamic-form 1.0.0-beta.62 → 1.0.0-beta.63
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
|
@@ -301,6 +301,9 @@ declare class PraxisFormActionsComponent implements OnChanges, OnDestroy {
|
|
|
301
301
|
getActionButtons(): FormActionButton[];
|
|
302
302
|
getVisibleButtons(): FormActionButton[];
|
|
303
303
|
getCollapsedButtons(): FormActionButton[];
|
|
304
|
+
isSplitLayout(): boolean;
|
|
305
|
+
getPrimaryButtons(): FormActionButton[];
|
|
306
|
+
getSecondaryButtons(): FormActionButton[];
|
|
304
307
|
onActionButtonClick(button: FormActionButton, event: Event): void;
|
|
305
308
|
getButtonNgClass(button: FormActionButton): {
|
|
306
309
|
[key: string]: boolean;
|
|
@@ -309,6 +312,7 @@ declare class PraxisFormActionsComponent implements OnChanges, OnDestroy {
|
|
|
309
312
|
isActionButtonDisabled(button: FormActionButton): boolean;
|
|
310
313
|
private applyOverrides;
|
|
311
314
|
private registerActionShortcuts;
|
|
315
|
+
private isSecondaryButton;
|
|
312
316
|
static ɵfac: i0.ɵɵFactoryDeclaration<PraxisFormActionsComponent, never>;
|
|
313
317
|
static ɵcmp: i0.ɵɵComponentDeclaration<PraxisFormActionsComponent, "praxis-form-actions", never, { "actions": { "alias": "actions"; "required": false; }; "isSubmitting": { "alias": "isSubmitting"; "required": false; }; "formIsValid": { "alias": "formIsValid"; "required": false; }; "submitError": { "alias": "submitError"; "required": false; }; "formId": { "alias": "formId"; "required": false; }; "actionOverrides": { "alias": "actionOverrides"; "required": false; }; }, { "action": "action"; }, never, never, true, never>;
|
|
314
318
|
}
|
|
@@ -724,6 +728,9 @@ declare class PraxisDynamicForm implements OnInit, OnChanges, OnDestroy {
|
|
|
724
728
|
getSectionIcon(section: FormSection): string | undefined;
|
|
725
729
|
getSectionClasses(section: FormSection): string[];
|
|
726
730
|
getSectionStyles(section: FormSection): Record<string, any> | null;
|
|
731
|
+
private sanitizeSectionStylesForEditorialContext;
|
|
732
|
+
private isEditorialVisualContext;
|
|
733
|
+
hasEditorialVisualContext(): boolean;
|
|
727
734
|
private applyBorderPropsToStyle;
|
|
728
735
|
toggleSectionCollapse(event: Event, section: FormSection): void;
|
|
729
736
|
sectionPanelId(section: FormSection, index: number): string;
|
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.63",
|
|
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.63",
|
|
10
|
+
"@praxisui/visual-builder": "^1.0.0-beta.63",
|
|
11
|
+
"@praxisui/specification-core": "^1.0.0-beta.63",
|
|
12
|
+
"@praxisui/specification": "^1.0.0-beta.63",
|
|
13
|
+
"@praxisui/core": "^1.0.0-beta.63",
|
|
14
|
+
"@praxisui/cron-builder": "^1.0.0-beta.63"
|
|
15
15
|
},
|
|
16
16
|
"dependencies": {
|
|
17
17
|
"tslib": "^2.3.0",
|