@praxisui/dynamic-form 9.0.0-beta.84 → 9.0.0-beta.86
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/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@praxisui/dynamic-form",
|
|
3
|
-
"version": "9.0.0-beta.
|
|
3
|
+
"version": "9.0.0-beta.86",
|
|
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": "^21.0.0",
|
|
@@ -9,13 +9,13 @@
|
|
|
9
9
|
"@angular/forms": "^21.0.0",
|
|
10
10
|
"@angular/material": "^21.0.0",
|
|
11
11
|
"@angular/router": "^21.0.0",
|
|
12
|
-
"@praxisui/ai": "^9.0.0-beta.
|
|
13
|
-
"@praxisui/dynamic-fields": "^9.0.0-beta.
|
|
14
|
-
"@praxisui/metadata-editor": "^9.0.0-beta.
|
|
15
|
-
"@praxisui/rich-content": "^9.0.0-beta.
|
|
16
|
-
"@praxisui/settings-panel": "^9.0.0-beta.
|
|
17
|
-
"@praxisui/visual-builder": "^9.0.0-beta.
|
|
18
|
-
"@praxisui/core": "^9.0.0-beta.
|
|
12
|
+
"@praxisui/ai": "^9.0.0-beta.86",
|
|
13
|
+
"@praxisui/dynamic-fields": "^9.0.0-beta.86",
|
|
14
|
+
"@praxisui/metadata-editor": "^9.0.0-beta.86",
|
|
15
|
+
"@praxisui/rich-content": "^9.0.0-beta.86",
|
|
16
|
+
"@praxisui/settings-panel": "^9.0.0-beta.86",
|
|
17
|
+
"@praxisui/visual-builder": "^9.0.0-beta.86",
|
|
18
|
+
"@praxisui/core": "^9.0.0-beta.86",
|
|
19
19
|
"rxjs": "^7.8.0"
|
|
20
20
|
},
|
|
21
21
|
"dependencies": {
|
|
@@ -73,6 +73,7 @@ type RuleApplicationTargetType = NonNullable<FormLayoutRule['targetType']>;
|
|
|
73
73
|
type RuleApplicationTargetIndex = Partial<Record<RuleApplicationTargetType, ReadonlySet<string>>>;
|
|
74
74
|
interface RuleApplicationContext {
|
|
75
75
|
targetIndex?: RuleApplicationTargetIndex;
|
|
76
|
+
nowUtc?: string;
|
|
76
77
|
}
|
|
77
78
|
declare class FormRulesService {
|
|
78
79
|
private readonly jsonLogic;
|
|
@@ -1084,6 +1085,10 @@ declare class PraxisDynamicForm implements OnInit, OnChanges, OnDestroy {
|
|
|
1084
1085
|
isSectionCollapsible(section?: FormSection): boolean;
|
|
1085
1086
|
private getSectionRuleProps;
|
|
1086
1087
|
isSectionVisible(section?: FormSection): boolean;
|
|
1088
|
+
isLastVisibleSection(section: FormSection): boolean;
|
|
1089
|
+
private hasVisibleSectionBody;
|
|
1090
|
+
private shouldRenderInsideLastSectionContent;
|
|
1091
|
+
private resolveInsideLastSectionHost;
|
|
1087
1092
|
getSectionTitle(section: FormSection): string | undefined;
|
|
1088
1093
|
getSectionDescription(section: FormSection): string | undefined;
|
|
1089
1094
|
getSectionAppearance(section: FormSection): 'card' | 'plain' | 'step' | undefined;
|
|
@@ -1100,7 +1105,6 @@ declare class PraxisDynamicForm implements OnInit, OnChanges, OnDestroy {
|
|
|
1100
1105
|
getEffectiveSectionTitleGapBottom(section: FormSection): number;
|
|
1101
1106
|
isSectionHeaderTitleOnly(section: FormSection): boolean;
|
|
1102
1107
|
getSectionDescriptionGapBottom(section: FormSection): number | null;
|
|
1103
|
-
getSectionHeaderActionColor(action: FormSectionHeaderAction): 'primary' | 'accent' | 'warn' | undefined;
|
|
1104
1108
|
getSectionHeaderActionTooltip(action: FormSectionHeaderAction): string;
|
|
1105
1109
|
isSectionHeaderActionDisabled(action: FormSectionHeaderAction): boolean;
|
|
1106
1110
|
getSectionHeaderActionNgClass(action: FormSectionHeaderAction): Record<string, boolean>;
|