@praxisui/dynamic-form 0.0.1 → 1.0.0-beta.3
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/fesm2022/praxisui-dynamic-form.mjs +155 -32
- package/fesm2022/praxisui-dynamic-form.mjs.map +1 -1
- package/index.d.ts +14 -2
- package/package.json +16 -7
package/index.d.ts
CHANGED
|
@@ -842,8 +842,17 @@ declare class LayoutEditorComponent implements OnInit {
|
|
|
842
842
|
columnIndex?: number;
|
|
843
843
|
fieldName?: string;
|
|
844
844
|
} | null;
|
|
845
|
-
|
|
846
|
-
|
|
845
|
+
gapGlobal: number;
|
|
846
|
+
density: 'compact' | 'cozy' | 'regular';
|
|
847
|
+
get densityConfig(): {
|
|
848
|
+
gridGap: number;
|
|
849
|
+
sectionGap: number;
|
|
850
|
+
};
|
|
851
|
+
chromeToggles: string[];
|
|
852
|
+
get borderEnabled(): boolean;
|
|
853
|
+
get dividerEnabled(): boolean;
|
|
854
|
+
canApplyAll(): boolean;
|
|
855
|
+
applyGapToAll(): void;
|
|
847
856
|
ngOnInit(): void;
|
|
848
857
|
handleKeydown(event: KeyboardEvent): void;
|
|
849
858
|
/**
|
|
@@ -869,6 +878,9 @@ declare class LayoutEditorComponent implements OnInit {
|
|
|
869
878
|
onSectionUpdated(index: number, updatedSection: FormSection): void;
|
|
870
879
|
private emitNewConfig;
|
|
871
880
|
onApplyStyleToAll(patch: Partial<FormSection>): void;
|
|
881
|
+
trackBySection(index: number, s: FormSection & {
|
|
882
|
+
id?: string;
|
|
883
|
+
}): string | number;
|
|
872
884
|
static ɵfac: i0.ɵɵFactoryDeclaration<LayoutEditorComponent, never>;
|
|
873
885
|
static ɵcmp: i0.ɵɵComponentDeclaration<LayoutEditorComponent, "praxis-layout-editor", never, { "config": { "alias": "config"; "required": false; }; }, { "configChange": "configChange"; }, never, never, true, never>;
|
|
874
886
|
}
|
package/package.json
CHANGED
|
@@ -1,16 +1,17 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@praxisui/dynamic-form",
|
|
3
|
-
"version": "0.0.
|
|
3
|
+
"version": "1.0.0-beta.3",
|
|
4
|
+
"description": "Angular dynamic form engine for Praxis UI: metadata-driven forms, hooks, and services integrating @praxisui/* packages.",
|
|
4
5
|
"peerDependencies": {
|
|
5
6
|
"@angular/common": "^20.0.0",
|
|
6
7
|
"@angular/core": "^20.0.0",
|
|
7
8
|
"@angular/cdk": "^20.0.0",
|
|
8
|
-
"@praxisui/settings-panel": "^0.0.
|
|
9
|
-
"@praxisui/visual-builder": "^0.0.
|
|
10
|
-
"@praxisui/specification-core": "^0.0.
|
|
11
|
-
"@praxisui/specification": "^0.0.
|
|
12
|
-
"@praxisui/core": "^0.0.
|
|
13
|
-
"@praxisui/cron-builder": "^0.0.
|
|
9
|
+
"@praxisui/settings-panel": "^1.0.0-beta.3",
|
|
10
|
+
"@praxisui/visual-builder": "^1.0.0-beta.3",
|
|
11
|
+
"@praxisui/specification-core": "^1.0.0-beta.3",
|
|
12
|
+
"@praxisui/specification": "^1.0.0-beta.3",
|
|
13
|
+
"@praxisui/core": "^1.0.0-beta.3",
|
|
14
|
+
"@praxisui/cron-builder": "^1.0.0-beta.3"
|
|
14
15
|
},
|
|
15
16
|
"dependencies": {
|
|
16
17
|
"tslib": "^2.3.0",
|
|
@@ -28,6 +29,14 @@
|
|
|
28
29
|
"bugs": {
|
|
29
30
|
"url": "https://github.com/codexrodrigues/praxis/issues"
|
|
30
31
|
},
|
|
32
|
+
"keywords": [
|
|
33
|
+
"angular",
|
|
34
|
+
"praxisui",
|
|
35
|
+
"forms",
|
|
36
|
+
"dynamic-form",
|
|
37
|
+
"metadata",
|
|
38
|
+
"ui"
|
|
39
|
+
],
|
|
31
40
|
"sideEffects": false,
|
|
32
41
|
"module": "fesm2022/praxisui-dynamic-form.mjs",
|
|
33
42
|
"typings": "index.d.ts",
|