@praxisui/manual-form 3.0.0-beta.1 → 3.0.0-beta.10
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-manual-form.mjs +641 -317
- package/index.d.ts +5 -0
- package/package.json +5 -5
- package/fesm2022/praxisui-manual-form.mjs.map +0 -1
package/index.d.ts
CHANGED
|
@@ -290,6 +290,7 @@ interface PanelInputs {
|
|
|
290
290
|
}
|
|
291
291
|
declare class ManualFormConfigEditorComponent implements OnInit {
|
|
292
292
|
private ref;
|
|
293
|
+
private readonly i18n;
|
|
293
294
|
readonly instance: ManualFormInstance;
|
|
294
295
|
all: FieldMetadata[];
|
|
295
296
|
filtered: FieldMetadata[];
|
|
@@ -313,6 +314,10 @@ declare class ManualFormConfigEditorComponent implements OnInit {
|
|
|
313
314
|
isValid$: BehaviorSubject<boolean>;
|
|
314
315
|
isBusy$: BehaviorSubject<boolean>;
|
|
315
316
|
constructor(inputs: PanelInputs, ref: SettingsPanelRef);
|
|
317
|
+
tx(key: string, fallback: string): string;
|
|
318
|
+
hookPlaceholder(): string;
|
|
319
|
+
hookTooltip(stage: FormHookStage): string;
|
|
320
|
+
formRulesPlaceholder(): string;
|
|
316
321
|
ngOnInit(): void;
|
|
317
322
|
close(): void;
|
|
318
323
|
applyFilter(): void;
|
package/package.json
CHANGED
|
@@ -1,14 +1,14 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@praxisui/manual-form",
|
|
3
|
-
"version": "3.0.0-beta.
|
|
3
|
+
"version": "3.0.0-beta.10",
|
|
4
4
|
"description": "Manual form toolkit for Praxis UI: container, instance factory and editor bridge for @praxisui/* fields.",
|
|
5
5
|
"peerDependencies": {
|
|
6
6
|
"@angular/common": "^20.1.0",
|
|
7
7
|
"@angular/core": "^20.1.0",
|
|
8
|
-
"@praxisui/core": "^3.0.0-beta.
|
|
9
|
-
"@praxisui/dynamic-fields": "^3.0.0-beta.
|
|
10
|
-
"@praxisui/settings-panel": "^3.0.0-beta.
|
|
11
|
-
"@praxisui/metadata-editor": "^3.0.0-beta.
|
|
8
|
+
"@praxisui/core": "^3.0.0-beta.10",
|
|
9
|
+
"@praxisui/dynamic-fields": "^3.0.0-beta.10",
|
|
10
|
+
"@praxisui/settings-panel": "^3.0.0-beta.10",
|
|
11
|
+
"@praxisui/metadata-editor": "^3.0.0-beta.10"
|
|
12
12
|
},
|
|
13
13
|
"dependencies": {
|
|
14
14
|
"tslib": "^2.3.0"
|