@praxisui/dynamic-form 2.0.0-beta.0 → 3.0.0-beta.0
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/README.md +2 -2
- package/fesm2022/praxisui-dynamic-form.mjs +260 -230
- package/fesm2022/praxisui-dynamic-form.mjs.map +1 -1
- package/index.d.ts +7 -3
- package/package.json +7 -7
package/index.d.ts
CHANGED
|
@@ -1478,6 +1478,10 @@ declare class SectionEditorComponent implements OnInit, AfterViewInit, OnDestroy
|
|
|
1478
1478
|
section: EditableFormSection;
|
|
1479
1479
|
form: FormGroup;
|
|
1480
1480
|
breakpoints: Breakpoint[];
|
|
1481
|
+
fieldOptions: Array<{
|
|
1482
|
+
value: string;
|
|
1483
|
+
label: string;
|
|
1484
|
+
}>;
|
|
1481
1485
|
isDirty$: BehaviorSubject<boolean>;
|
|
1482
1486
|
isValid$: BehaviorSubject<boolean>;
|
|
1483
1487
|
isBusy$: BehaviorSubject<boolean>;
|
|
@@ -1496,14 +1500,14 @@ declare class SectionEditorComponent implements OnInit, AfterViewInit, OnDestroy
|
|
|
1496
1500
|
clearIcon(): void;
|
|
1497
1501
|
pickFallbackIcon(): Promise<void>;
|
|
1498
1502
|
clearFallbackIcon(): void;
|
|
1503
|
+
private syncCollapsedControlState;
|
|
1499
1504
|
applyPreset(key: 'default' | 'simple' | 'collapsible' | 'denseGrid'): void;
|
|
1500
1505
|
setCustomColors(value: string): void;
|
|
1501
1506
|
onTitleStyleChange(style: string): void;
|
|
1502
1507
|
onDescriptionStyleChange(style: string): void;
|
|
1503
|
-
|
|
1508
|
+
trackFieldOption(index: number, field: {
|
|
1504
1509
|
value: string;
|
|
1505
|
-
|
|
1506
|
-
}>;
|
|
1510
|
+
}): string;
|
|
1507
1511
|
tx(key: string, fallback: string): string;
|
|
1508
1512
|
private applyNormalizedFormValue;
|
|
1509
1513
|
private normalizeSectionFormValue;
|
package/package.json
CHANGED
|
@@ -1,17 +1,17 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@praxisui/dynamic-form",
|
|
3
|
-
"version": "
|
|
3
|
+
"version": "3.0.0-beta.0",
|
|
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": "^
|
|
10
|
-
"@praxisui/visual-builder": "^
|
|
11
|
-
"@praxisui/specification-core": "^
|
|
12
|
-
"@praxisui/specification": "^
|
|
13
|
-
"@praxisui/core": "^
|
|
14
|
-
"@praxisui/cron-builder": "^
|
|
9
|
+
"@praxisui/settings-panel": "^3.0.0-beta.0",
|
|
10
|
+
"@praxisui/visual-builder": "^3.0.0-beta.0",
|
|
11
|
+
"@praxisui/specification-core": "^3.0.0-beta.0",
|
|
12
|
+
"@praxisui/specification": "^3.0.0-beta.0",
|
|
13
|
+
"@praxisui/core": "^3.0.0-beta.0",
|
|
14
|
+
"@praxisui/cron-builder": "^3.0.0-beta.0"
|
|
15
15
|
},
|
|
16
16
|
"dependencies": {
|
|
17
17
|
"tslib": "^2.3.0",
|