@praxisui/dynamic-form 3.0.0-beta.8 → 3.0.0-beta.9
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.
|
@@ -5620,11 +5620,14 @@ class PraxisDynamicForm {
|
|
|
5620
5620
|
tryInitializeForm() {
|
|
5621
5621
|
if (!this.inputsLoaded)
|
|
5622
5622
|
return;
|
|
5623
|
-
if (this.
|
|
5624
|
-
|
|
5625
|
-
|
|
5626
|
-
!this.isLoading) {
|
|
5623
|
+
if (this.isInitialized || this.isLoading)
|
|
5624
|
+
return;
|
|
5625
|
+
if (this.formId && this.resourcePath) {
|
|
5627
5626
|
void this.initializeForm();
|
|
5627
|
+
return;
|
|
5628
|
+
}
|
|
5629
|
+
if (!this.resourcePath && this.hasRenderableConfig()) {
|
|
5630
|
+
this.initializeStandaloneConfig();
|
|
5628
5631
|
}
|
|
5629
5632
|
}
|
|
5630
5633
|
hasRenderableConfig(config = this.config) {
|
|
@@ -22767,4 +22770,3 @@ const FORM_COMPONENT_AI_CAPABILITIES = {
|
|
|
22767
22770
|
*/
|
|
22768
22771
|
|
|
22769
22772
|
export { ActionsEditorComponent, CanvasStateService, CanvasToolbarComponent, ColumnEditorComponent, DynamicFormLayoutService, FORM_AI_CAPABILITIES, FORM_COMPONENT_AI_CAPABILITIES, FieldConfiguratorComponent, FieldEditorComponent, FormConfigService, FormContextService, FormLayoutService, JsonConfigEditorComponent, LayoutColorToken, LayoutEditorComponent, LayoutPrefsService, PRAXIS_DYNAMIC_FORM_COMPONENT_METADATA, PRAXIS_FILTER_FORM_COMPONENT_METADATA, PraxisDynamicForm, PraxisDynamicFormConfigEditor, PraxisFilterForm, PraxisFormActionsComponent, RowConfiguratorComponent, RowEditorComponent, SETTINGS_PANEL_DYNAMIC_FORM_PROVIDER, SectionEditorComponent, TASK_PRESETS, applyVisibilityRules, buildDynamicFormApplyPlan, createDynamicFormAuthoringDocument, formLayoutRulesToBuilderState, getFormAiCatalog, getFormCapabilities, getFormEnum, isRuleSatisfied, normalizeDateArrays, normalizeDynamicFormAuthoringDocument, parseLegacyOrDynamicFormDocument, providePraxisDynamicFormMetadata, providePraxisFilterFormMetadata, provideSettingsPanelDynamicForm, ruleBuilderStateToFormLayoutRules, serializeDynamicFormAuthoringDocument, stripLegacyFieldMetadata, toCanonicalDynamicFormConfig, validateDynamicFormAuthoringDocument, validateDynamicFormAuthoringInput };
|
|
22770
|
-
//# sourceMappingURL=praxisui-dynamic-form.mjs.map
|
package/package.json
CHANGED
|
@@ -1,17 +1,17 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@praxisui/dynamic-form",
|
|
3
|
-
"version": "3.0.0-beta.
|
|
3
|
+
"version": "3.0.0-beta.9",
|
|
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": "^3.0.0-beta.
|
|
10
|
-
"@praxisui/visual-builder": "^3.0.0-beta.
|
|
11
|
-
"@praxisui/specification-core": "^3.0.0-beta.
|
|
12
|
-
"@praxisui/specification": "^3.0.0-beta.
|
|
13
|
-
"@praxisui/core": "^3.0.0-beta.
|
|
14
|
-
"@praxisui/cron-builder": "^3.0.0-beta.
|
|
9
|
+
"@praxisui/settings-panel": "^3.0.0-beta.9",
|
|
10
|
+
"@praxisui/visual-builder": "^3.0.0-beta.9",
|
|
11
|
+
"@praxisui/specification-core": "^3.0.0-beta.9",
|
|
12
|
+
"@praxisui/specification": "^3.0.0-beta.9",
|
|
13
|
+
"@praxisui/core": "^3.0.0-beta.9",
|
|
14
|
+
"@praxisui/cron-builder": "^3.0.0-beta.9"
|
|
15
15
|
},
|
|
16
16
|
"dependencies": {
|
|
17
17
|
"tslib": "^2.3.0",
|