@praxisui/dynamic-form 9.0.0-beta.3 → 9.0.0-beta.30
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 +155 -2
- package/ai/component-registry.json +14102 -0
- package/docs/dynamic-form-visual-builder-parity-audit.md +268 -0
- package/docs/layout-items-visual-blocks.md +20 -3
- package/docs/schema-driven-layout-materialization-rfc.md +446 -0
- package/fesm2022/praxisui-dynamic-form.mjs +4141 -660
- package/package.json +13 -9
- package/src/lib/config-editor/praxis-dynamic-form-config-editor.json-api.md +8 -6
- package/src/lib/layout-editor/praxis-layout-editor.json-api.md +1 -1
- package/src/lib/praxis-dynamic-form.json-api.md +27 -4
- package/types/praxisui-dynamic-form.d.ts +137 -15
|
@@ -7,13 +7,14 @@ import { MatDialog } from '@angular/material/dialog';
|
|
|
7
7
|
import { MatSnackBar } from '@angular/material/snack-bar';
|
|
8
8
|
import { CdkDragStart, CdkDragMove, CdkDragEnd, CdkDragDrop } from '@angular/cdk/drag-drop';
|
|
9
9
|
import * as _praxisui_core from '@praxisui/core';
|
|
10
|
-
import { AsyncConfigStorage, FormLayout, FieldMetadata, FormLayoutRule, FormRuleTargetType as FormRuleTargetType$1, PraxisJsonLogicService, FormSection, FormRow, FormColumn, FormConfig, FormLayoutItem, FormActionButton, AiCapability, BackConfig, RichBlockHostCapabilities, ApiEndpoint, ApiUrlEntry, FormHooksLayout, EndpointConfig, FormSubmitEvent, FormReadyEvent, FormValueChangeEvent, SyncResult, FormInitializationError, LoadingState, FormCustomActionEvent, FormActionConfirmationEvent, RichContentDocument, JsonLogicRecord, GenericCrudService, ConnectionStorage, DynamicFormService, ErrorMessageService, SchemaNormalizerService, ComponentMetadataRegistry, GlobalConfigService, ComponentKeyService, LoadingOrchestrator, ApiUrlConfig, PraxisLoadingRenderer, FormHooksRegistry, FormHookPreset, LoggerService, FormSectionHeaderAction, FormSectionHeaderConfig, FormConfigState, JsonLogicExpression, GlobalActionCatalogEntry, PraxisRuntimeConditionalEffectRule, PraxisRuntimeGlobalActionEffect, GlobalActionField, FieldDefinition, ComponentDocMeta, Breakpoint, DomainRuleRequestOptions, DomainRuleService, DomainRuleMaterialization, IconPickerService, GlobalActionRef,
|
|
10
|
+
import { AsyncConfigStorage, FormLayout, FieldMetadata, FormLayoutRule, FormRuleTargetType as FormRuleTargetType$1, PraxisJsonLogicService, FormSection, FormRow, FormColumn, FormConfig, FormLayoutItem, FormActionButton, AiCapability, BackConfig, RichBlockHostCapabilities, ApiEndpoint, ApiUrlEntry, DynamicFormLayoutPolicy, FormHooksLayout, EndpointConfig, FormSubmitEvent, FormReadyEvent, FormValueChangeEvent, SyncResult, FormInitializationError, LoadingState, FormCustomActionEvent, FormActionConfirmationEvent, RichContentDocument, JsonLogicRecord, GenericCrudService, ConnectionStorage, DynamicFormService, ErrorMessageService, SchemaNormalizerService, ComponentMetadataRegistry, GlobalConfigService, ComponentKeyService, LoadingOrchestrator, ApiUrlConfig, PraxisLoadingRenderer, FormHooksRegistry, FormHookPreset, LoggerService, EnterpriseRuntimeContextService, FormSectionHeaderAction, FormSectionHeaderConfig, FormConfigState, JsonLogicExpression, FormHelpPresentationConfig, GlobalActionCatalogEntry, PraxisRuntimeConditionalEffectRule, PraxisRuntimeGlobalActionEffect, SurfaceOpenPayload, GlobalActionField, PraxisEffectPolicy, FieldDefinition, ComponentDocMeta, Breakpoint, DomainRuleRequestOptions, DomainRuleService, DomainRuleMaterialization, TableConfig, IconPickerService, GlobalActionRef, AiCapabilityCategory, AiCapabilityCatalog, AiValueKind, ComponentAuthoringManifest } from '@praxisui/core';
|
|
11
11
|
import * as rxjs from 'rxjs';
|
|
12
12
|
import { Observable, BehaviorSubject } from 'rxjs';
|
|
13
13
|
import { SettingsPanelService, SettingsValueProvider } from '@praxisui/settings-panel';
|
|
14
14
|
import { BaseAiAdapter, AiResponseCompileResult, PatchResult, PraxisAssistantShellLayout, PraxisAssistantTurnViewState, PraxisAssistantShellLabels, PraxisAssistantSessionSnapshot, PraxisAssistantShellQuickReply, PraxisAssistantShellMessage } from '@praxisui/ai';
|
|
15
15
|
import { KeyboardShortcutService } from '@praxisui/dynamic-fields';
|
|
16
16
|
import { RuleBuilderConfig, RuleBuilderState } from '@praxisui/visual-builder';
|
|
17
|
+
import * as _praxisui_dynamic_form from '@praxisui/dynamic-form';
|
|
17
18
|
|
|
18
19
|
declare class FormLayoutService {
|
|
19
20
|
private storage?;
|
|
@@ -200,16 +201,20 @@ interface InsertLocalFieldResult extends LayoutResult {
|
|
|
200
201
|
applied: boolean;
|
|
201
202
|
diagnostics: LocalFieldInsertionDiagnostic[];
|
|
202
203
|
}
|
|
204
|
+
type DynamicFormGeneratedLayoutPreset = 'default' | 'compactPresentation';
|
|
205
|
+
interface GenerateFormConfigFromMetadataOptions {
|
|
206
|
+
fieldsPerRow?: number;
|
|
207
|
+
defaultSectionTitle?: string;
|
|
208
|
+
layoutPreset?: DynamicFormGeneratedLayoutPreset;
|
|
209
|
+
presentationRoleMap?: Record<string, string>;
|
|
210
|
+
}
|
|
203
211
|
declare class DynamicFormLayoutService {
|
|
204
212
|
private readonly changesSubject;
|
|
205
213
|
readonly changes$: rxjs.Observable<LayoutChange>;
|
|
206
214
|
private emit;
|
|
207
215
|
normalizeConfig(config: FormConfig): FormConfig;
|
|
208
216
|
validateConfig(config: FormConfig): ValidationReport;
|
|
209
|
-
generateFormConfigFromMetadata(fields: FieldMetadata[], options?:
|
|
210
|
-
fieldsPerRow?: number;
|
|
211
|
-
defaultSectionTitle?: string;
|
|
212
|
-
}): FormConfig;
|
|
217
|
+
generateFormConfigFromMetadata(fields: FieldMetadata[], options?: GenerateFormConfigFromMetadataOptions): FormConfig;
|
|
213
218
|
getElementPath(config: FormConfig, element: HTMLElement): CanvasPathPart[];
|
|
214
219
|
updateElement(config: FormConfig, path: CanvasPathPart[], updatedData: any, options?: {
|
|
215
220
|
correlationId?: string;
|
|
@@ -218,6 +223,15 @@ declare class DynamicFormLayoutService {
|
|
|
218
223
|
private resolvePath;
|
|
219
224
|
resolvePathByIds(config: FormConfig, ids: IdPath): FieldPath;
|
|
220
225
|
private createRowsFromFields;
|
|
226
|
+
private createCompactPresentationRowsFromFields;
|
|
227
|
+
private resolveCompactPresentationSpan;
|
|
228
|
+
private inferCompactPresentationSpan;
|
|
229
|
+
private clampGridSpan;
|
|
230
|
+
private resolveGroupOrder;
|
|
231
|
+
private withCompactPresentationFieldDefaults;
|
|
232
|
+
private resolveFieldPresentationRole;
|
|
233
|
+
private resolvePresentationRole;
|
|
234
|
+
private normalizePresentationRole;
|
|
221
235
|
private genId;
|
|
222
236
|
private capitalizeFirstLetter;
|
|
223
237
|
private assertIndex;
|
|
@@ -683,6 +697,7 @@ declare class PraxisDynamicForm implements OnInit, OnChanges, OnDestroy {
|
|
|
683
697
|
private hooksRegistry?;
|
|
684
698
|
private hookPresets?;
|
|
685
699
|
private logger?;
|
|
700
|
+
private enterpriseRuntimeContext?;
|
|
686
701
|
private readonly i18n;
|
|
687
702
|
private readonly injector;
|
|
688
703
|
private readonly aiApi;
|
|
@@ -757,6 +772,10 @@ declare class PraxisDynamicForm implements OnInit, OnChanges, OnDestroy {
|
|
|
757
772
|
configPersistenceStrategy: 'local-first' | 'input-first';
|
|
758
773
|
/** Optional layout to use instead of generated one */
|
|
759
774
|
layout?: FormLayout;
|
|
775
|
+
/** Metadata-driven layout preset used only when creating an initial config from schema. */
|
|
776
|
+
generatedLayoutPreset: DynamicFormGeneratedLayoutPreset;
|
|
777
|
+
/** Opt-in policy for schema-driven transient layout materialization. */
|
|
778
|
+
layoutPolicy?: DynamicFormLayoutPolicy | null;
|
|
760
779
|
/** Optional navigation back config (from CRUD host) */
|
|
761
780
|
backConfig?: BackConfig;
|
|
762
781
|
/** Optional direct hooks declaration for testing/demo (overrides config.hooks) */
|
|
@@ -777,6 +796,7 @@ declare class PraxisDynamicForm implements OnInit, OnChanges, OnDestroy {
|
|
|
777
796
|
disabledModeGlobal: boolean | null;
|
|
778
797
|
presentationModeGlobal: boolean | null;
|
|
779
798
|
visibleGlobal: boolean | null;
|
|
799
|
+
fieldIconPolicy: 'all' | 'presentation-only' | 'none';
|
|
780
800
|
/** Opt-in loader for shared domain rule materializations persisted outside FormConfig. */
|
|
781
801
|
domainRules: PraxisDynamicFormDomainRulesOptions | boolean | null;
|
|
782
802
|
get effectivePresentation(): boolean;
|
|
@@ -786,6 +806,12 @@ declare class PraxisDynamicForm implements OnInit, OnChanges, OnDestroy {
|
|
|
786
806
|
get invalidRequiredFieldLabels(): string[];
|
|
787
807
|
/** Value propagated to DynamicFieldLoader; null allows per-field metadata */
|
|
788
808
|
get presentationForLoader(): boolean | null;
|
|
809
|
+
getRenderableFieldsForLoader(fields: FieldMetadata[]): FieldMetadata[];
|
|
810
|
+
private materializeFieldPresentationPolicy;
|
|
811
|
+
private materializeFieldHelpPolicy;
|
|
812
|
+
private shouldSuppressFieldIcons;
|
|
813
|
+
private resolveFieldHelpDisplay;
|
|
814
|
+
private normalizeFieldHelpControlToken;
|
|
789
815
|
/** Custom endpoints for CRUD operations */
|
|
790
816
|
private _customEndpoints;
|
|
791
817
|
get customEndpoints(): EndpointConfig;
|
|
@@ -937,7 +963,8 @@ declare class PraxisDynamicForm implements OnInit, OnChanges, OnDestroy {
|
|
|
937
963
|
private mountAnimationTimer;
|
|
938
964
|
protected isMounting: boolean;
|
|
939
965
|
private hasBuiltFormFromConfig;
|
|
940
|
-
|
|
966
|
+
private runtimeFieldMetadata;
|
|
967
|
+
constructor(crud: GenericCrudService<any>, http: HttpClient, fb: FormBuilder, cdr: ChangeDetectorRef, layoutService: FormLayoutService, contextService: FormContextService, rulesService: FormRulesService, settingsPanel: SettingsPanelService, dialog: MatDialog, asyncConfigStorage: AsyncConfigStorage, connectionStorage: ConnectionStorage, dynamicForm: DynamicFormService, snackBar: MatSnackBar, canvasState: CanvasStateService, dynamicLayout: DynamicFormLayoutService, errorMessages: ErrorMessageService, schemaNormalizer: SchemaNormalizerService, componentMetaRegistry: ComponentMetadataRegistry, global: GlobalConfigService, componentKeys: ComponentKeyService, loadingOrchestrator: LoadingOrchestrator, ngZone: NgZone, apiUrlConfig: ApiUrlConfig, loadingRenderer?: PraxisLoadingRenderer | undefined, router?: Router | undefined, route?: ActivatedRoute | undefined, hooksRegistry?: FormHooksRegistry | undefined, hookPresets?: FormHookPreset[] | null | undefined, logger?: LoggerService | undefined, enterpriseRuntimeContext?: EnterpriseRuntimeContextService | undefined);
|
|
941
968
|
private emitLoadingState;
|
|
942
969
|
private buildLoadingContext;
|
|
943
970
|
private beginLoading;
|
|
@@ -981,6 +1008,10 @@ declare class PraxisDynamicForm implements OnInit, OnChanges, OnDestroy {
|
|
|
981
1008
|
private persistFormConfig;
|
|
982
1009
|
private createDefaultConfig;
|
|
983
1010
|
private createConfigFromHostConfig;
|
|
1011
|
+
private shouldUseSchemaLayoutPolicy;
|
|
1012
|
+
private layoutPolicyRequestsPresentation;
|
|
1013
|
+
private shouldPersistGeneratedConfig;
|
|
1014
|
+
private createSchemaMaterializedConfig;
|
|
984
1015
|
private reconcileLoadedConfigWithServerSchema;
|
|
985
1016
|
private hostConfigHasAuthoredLocalFieldsNotInLocalConfig;
|
|
986
1017
|
private syncWithServer;
|
|
@@ -997,6 +1028,10 @@ declare class PraxisDynamicForm implements OnInit, OnChanges, OnDestroy {
|
|
|
997
1028
|
private setEntityLookupDependencyConflict;
|
|
998
1029
|
private clearEntityLookupDependencyConflict;
|
|
999
1030
|
private resolveEntityLookupDependencyValidationMessage;
|
|
1031
|
+
private getRuntimeFieldMetadata;
|
|
1032
|
+
private resolveFieldAccessAuthorities;
|
|
1033
|
+
private normalizeAuthorityClaims;
|
|
1034
|
+
private materializeFieldAccessState;
|
|
1000
1035
|
private scheduleValueChangeBootstrapRelease;
|
|
1001
1036
|
private hasInteractiveFormState;
|
|
1002
1037
|
private captureFormRuntimeState;
|
|
@@ -1136,6 +1171,7 @@ declare class PraxisDynamicForm implements OnInit, OnChanges, OnDestroy {
|
|
|
1136
1171
|
private _showConfirmationDialog;
|
|
1137
1172
|
onFormAction(event: PraxisFormActionEvent): void;
|
|
1138
1173
|
private dispatchRichContentAction;
|
|
1174
|
+
private emitRichContentCustomAction;
|
|
1139
1175
|
private isRichContentActionAvailable;
|
|
1140
1176
|
private hasRichContentCapability;
|
|
1141
1177
|
private buildRichContentActionContext;
|
|
@@ -1337,8 +1373,8 @@ declare class PraxisDynamicForm implements OnInit, OnChanges, OnDestroy {
|
|
|
1337
1373
|
private logRowGapsSnapshot;
|
|
1338
1374
|
private applyPresentationVars;
|
|
1339
1375
|
private applyPresentationConfig;
|
|
1340
|
-
static ɵfac: i0.ɵɵFactoryDeclaration<PraxisDynamicForm, [null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, { optional: true; }, { optional: true; }, { optional: true; }, { optional: true; }, { optional: true; }, { optional: true; }]>;
|
|
1341
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<PraxisDynamicForm, "praxis-dynamic-form", never, { "resourcePath": { "alias": "resourcePath"; "required": false; }; "resourceId": { "alias": "resourceId"; "required": false; }; "initialValue": { "alias": "initialValue"; "required": false; }; "editorialContext": { "alias": "editorialContext"; "required": false; }; "mode": { "alias": "mode"; "required": false; }; "config": { "alias": "config"; "required": false; }; "actions": { "alias": "actions"; "required": false; }; "schemaSource": { "alias": "schemaSource"; "required": false; }; "schemaUrl": { "alias": "schemaUrl"; "required": false; }; "readUrl": { "alias": "readUrl"; "required": false; }; "submitUrl": { "alias": "submitUrl"; "required": false; }; "submitMethod": { "alias": "submitMethod"; "required": false; }; "responseSchemaUrl": { "alias": "responseSchemaUrl"; "required": false; }; "apiEndpointKey": { "alias": "apiEndpointKey"; "required": false; }; "apiUrlEntry": { "alias": "apiUrlEntry"; "required": false; }; "enableCustomization": { "alias": "enableCustomization"; "required": false; }; "showAiAssistant": { "alias": "showAiAssistant"; "required": false; }; "formId": { "alias": "formId"; "required": false; }; "componentInstanceId": { "alias": "componentInstanceId"; "required": false; }; "configPersistenceStrategy": { "alias": "configPersistenceStrategy"; "required": false; }; "layout": { "alias": "layout"; "required": false; }; "backConfig": { "alias": "backConfig"; "required": false; }; "hooks": { "alias": "hooks"; "required": false; }; "removeEmptyContainersOnSave": { "alias": "removeEmptyContainersOnSave"; "required": false; }; "reactiveValidation": { "alias": "reactiveValidation"; "required": false; }; "reactiveValidationDebounceMs": { "alias": "reactiveValidationDebounceMs"; "required": false; }; "notifyIfOutdated": { "alias": "notifyIfOutdated"; "required": false; }; "snoozeMs": { "alias": "snoozeMs"; "required": false; }; "autoOpenSettingsOnOutdated": { "alias": "autoOpenSettingsOnOutdated"; "required": false; }; "readonlyModeGlobal": { "alias": "readonlyModeGlobal"; "required": false; }; "disabledModeGlobal": { "alias": "disabledModeGlobal"; "required": false; }; "presentationModeGlobal": { "alias": "presentationModeGlobal"; "required": false; }; "visibleGlobal": { "alias": "visibleGlobal"; "required": false; }; "domainRules": { "alias": "domainRules"; "required": false; }; "customEndpoints": { "alias": "customEndpoints"; "required": false; }; }, { "formSubmit": "formSubmit"; "formCancel": "formCancel"; "formReset": "formReset"; "configChange": "configChange"; "configPatchChange": "configPatchChange"; "formReady": "formReady"; "valueChange": "valueChange"; "syncCompleted": "syncCompleted"; "initializationError": "initializationError"; "loadingStateChange": "loadingStateChange"; "enableCustomizationChange": "enableCustomizationChange"; "customAction": "customAction"; "actionConfirmation": "actionConfirmation"; "schemaStatusChange": "schemaStatusChange"; "fieldRenderError": "fieldRenderError"; "ruleDiagnosticsChange": "ruleDiagnosticsChange"; }, never, never, true, never>;
|
|
1376
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<PraxisDynamicForm, [null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, { optional: true; }, { optional: true; }, { optional: true; }, { optional: true; }, { optional: true; }, { optional: true; }, { optional: true; }]>;
|
|
1377
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<PraxisDynamicForm, "praxis-dynamic-form", never, { "resourcePath": { "alias": "resourcePath"; "required": false; }; "resourceId": { "alias": "resourceId"; "required": false; }; "initialValue": { "alias": "initialValue"; "required": false; }; "editorialContext": { "alias": "editorialContext"; "required": false; }; "mode": { "alias": "mode"; "required": false; }; "config": { "alias": "config"; "required": false; }; "actions": { "alias": "actions"; "required": false; }; "schemaSource": { "alias": "schemaSource"; "required": false; }; "schemaUrl": { "alias": "schemaUrl"; "required": false; }; "readUrl": { "alias": "readUrl"; "required": false; }; "submitUrl": { "alias": "submitUrl"; "required": false; }; "submitMethod": { "alias": "submitMethod"; "required": false; }; "responseSchemaUrl": { "alias": "responseSchemaUrl"; "required": false; }; "apiEndpointKey": { "alias": "apiEndpointKey"; "required": false; }; "apiUrlEntry": { "alias": "apiUrlEntry"; "required": false; }; "enableCustomization": { "alias": "enableCustomization"; "required": false; }; "showAiAssistant": { "alias": "showAiAssistant"; "required": false; }; "formId": { "alias": "formId"; "required": false; }; "componentInstanceId": { "alias": "componentInstanceId"; "required": false; }; "configPersistenceStrategy": { "alias": "configPersistenceStrategy"; "required": false; }; "layout": { "alias": "layout"; "required": false; }; "generatedLayoutPreset": { "alias": "generatedLayoutPreset"; "required": false; }; "layoutPolicy": { "alias": "layoutPolicy"; "required": false; }; "backConfig": { "alias": "backConfig"; "required": false; }; "hooks": { "alias": "hooks"; "required": false; }; "removeEmptyContainersOnSave": { "alias": "removeEmptyContainersOnSave"; "required": false; }; "reactiveValidation": { "alias": "reactiveValidation"; "required": false; }; "reactiveValidationDebounceMs": { "alias": "reactiveValidationDebounceMs"; "required": false; }; "notifyIfOutdated": { "alias": "notifyIfOutdated"; "required": false; }; "snoozeMs": { "alias": "snoozeMs"; "required": false; }; "autoOpenSettingsOnOutdated": { "alias": "autoOpenSettingsOnOutdated"; "required": false; }; "readonlyModeGlobal": { "alias": "readonlyModeGlobal"; "required": false; }; "disabledModeGlobal": { "alias": "disabledModeGlobal"; "required": false; }; "presentationModeGlobal": { "alias": "presentationModeGlobal"; "required": false; }; "visibleGlobal": { "alias": "visibleGlobal"; "required": false; }; "fieldIconPolicy": { "alias": "fieldIconPolicy"; "required": false; }; "domainRules": { "alias": "domainRules"; "required": false; }; "customEndpoints": { "alias": "customEndpoints"; "required": false; }; }, { "formSubmit": "formSubmit"; "formCancel": "formCancel"; "formReset": "formReset"; "configChange": "configChange"; "configPatchChange": "configPatchChange"; "formReady": "formReady"; "valueChange": "valueChange"; "syncCompleted": "syncCompleted"; "initializationError": "initializationError"; "loadingStateChange": "loadingStateChange"; "enableCustomizationChange": "enableCustomizationChange"; "customAction": "customAction"; "actionConfirmation": "actionConfirmation"; "schemaStatusChange": "schemaStatusChange"; "fieldRenderError": "fieldRenderError"; "ruleDiagnosticsChange": "ruleDiagnosticsChange"; }, never, never, true, never>;
|
|
1342
1378
|
}
|
|
1343
1379
|
|
|
1344
1380
|
declare class FormConfigService {
|
|
@@ -1393,6 +1429,7 @@ declare class JsonConfigEditorComponent implements OnInit, OnDestroy {
|
|
|
1393
1429
|
diagnostics: EditorDiagnostic[];
|
|
1394
1430
|
private destroy$;
|
|
1395
1431
|
private jsonTextChanges$;
|
|
1432
|
+
private readonly i18n;
|
|
1396
1433
|
constructor(cdr: ChangeDetectorRef, configService: FormConfigService);
|
|
1397
1434
|
ngOnInit(): void;
|
|
1398
1435
|
ngOnDestroy(): void;
|
|
@@ -1412,6 +1449,9 @@ declare class JsonConfigEditorComponent implements OnInit, OnDestroy {
|
|
|
1412
1449
|
private updateValidationState;
|
|
1413
1450
|
insertHooksTemplate(): void;
|
|
1414
1451
|
enableReactiveValidation(): void;
|
|
1452
|
+
tx(key: string, fallback: string, params?: Record<string, string | number | boolean | null | undefined>): string;
|
|
1453
|
+
private resolveI18n;
|
|
1454
|
+
private interpolateFallback;
|
|
1415
1455
|
static ɵfac: i0.ɵɵFactoryDeclaration<JsonConfigEditorComponent, never>;
|
|
1416
1456
|
static ɵcmp: i0.ɵɵComponentDeclaration<JsonConfigEditorComponent, "form-json-config-editor", never, { "config": { "alias": "config"; "required": false; }; "document": { "alias": "document"; "required": false; }; }, { "configChange": "configChange"; "documentChange": "documentChange"; "validationChange": "validationChange"; "editorEvent": "editorEvent"; }, never, never, true, never>;
|
|
1417
1457
|
}
|
|
@@ -1448,6 +1488,12 @@ interface FormRuleDiagnostics {
|
|
|
1448
1488
|
runtimeOnlyReason?: string;
|
|
1449
1489
|
}
|
|
1450
1490
|
|
|
1491
|
+
type ConfigEditorTabKey = 'general' | 'schema' | 'layout' | 'hooks' | 'presentation' | 'behavior' | 'hints' | 'actions' | 'rules' | 'cascades' | 'messages' | 'navigation' | 'json';
|
|
1492
|
+
interface ConfigEditorTabOption {
|
|
1493
|
+
key: ConfigEditorTabKey;
|
|
1494
|
+
index: number;
|
|
1495
|
+
label: string;
|
|
1496
|
+
}
|
|
1451
1497
|
interface CommandRulePreviewModel {
|
|
1452
1498
|
state: 'ready' | 'invalid';
|
|
1453
1499
|
executionMode: 'preview-only';
|
|
@@ -1456,11 +1502,11 @@ interface CommandRulePreviewModel {
|
|
|
1456
1502
|
payload?: unknown;
|
|
1457
1503
|
payloadExpr?: string;
|
|
1458
1504
|
policy: {
|
|
1459
|
-
trigger: '
|
|
1505
|
+
trigger: NonNullable<PraxisEffectPolicy['trigger']>;
|
|
1460
1506
|
distinct: boolean;
|
|
1461
1507
|
distinctBy?: string;
|
|
1462
1508
|
runOnInitialEvaluation?: boolean;
|
|
1463
|
-
}
|
|
1509
|
+
} & Omit<PraxisEffectPolicy, 'trigger' | 'distinct' | 'distinctBy' | 'runOnInitialEvaluation'>;
|
|
1464
1510
|
diagnostics: string[];
|
|
1465
1511
|
}
|
|
1466
1512
|
declare class PraxisDynamicFormConfigEditor implements SettingsValueProvider, OnInit, OnDestroy {
|
|
@@ -1473,6 +1519,7 @@ declare class PraxisDynamicFormConfigEditor implements SettingsValueProvider, On
|
|
|
1473
1519
|
ruleBuilderConfig: RuleBuilderConfig;
|
|
1474
1520
|
ruleBuilderState?: RuleBuilderState;
|
|
1475
1521
|
currentRules: FormLayoutRule[];
|
|
1522
|
+
selectedConfigTabIndex: number;
|
|
1476
1523
|
selectedCommandRuleId: string;
|
|
1477
1524
|
commandRuleCondition: JsonLogicExpression | null;
|
|
1478
1525
|
commandRuleConditionJson: string;
|
|
@@ -1482,6 +1529,8 @@ declare class PraxisDynamicFormConfigEditor implements SettingsValueProvider, On
|
|
|
1482
1529
|
commandRuleDistinct: boolean;
|
|
1483
1530
|
commandRuleDistinctBy: string;
|
|
1484
1531
|
commandRuleRunOnInitialEvaluation: boolean;
|
|
1532
|
+
private commandRulePolicyTrigger;
|
|
1533
|
+
private commandRuleAdvancedPolicy;
|
|
1485
1534
|
commandRuleAuthoringError: string | null;
|
|
1486
1535
|
commandRulePayloadFieldErrors: Record<string, string>;
|
|
1487
1536
|
ruleDiagnostics: FormRuleDiagnostics[];
|
|
@@ -1507,10 +1556,10 @@ declare class PraxisDynamicFormConfigEditor implements SettingsValueProvider, On
|
|
|
1507
1556
|
private readonly editorMode;
|
|
1508
1557
|
isPresentationMode: boolean;
|
|
1509
1558
|
truncatePreview: boolean;
|
|
1510
|
-
previewItems: {
|
|
1559
|
+
previewItems: Array<{
|
|
1511
1560
|
label: string;
|
|
1512
1561
|
value: string;
|
|
1513
|
-
}
|
|
1562
|
+
}>;
|
|
1514
1563
|
presentationPrefs: {
|
|
1515
1564
|
labelPosition: 'above' | 'left';
|
|
1516
1565
|
labelFontSize?: number | null;
|
|
@@ -1523,6 +1572,12 @@ declare class PraxisDynamicFormConfigEditor implements SettingsValueProvider, On
|
|
|
1523
1572
|
};
|
|
1524
1573
|
/** Ensure hints object exists (normalized upstream) */
|
|
1525
1574
|
private ensureHints;
|
|
1575
|
+
get helpPresentationDraft(): Required<FormHelpPresentationConfig>;
|
|
1576
|
+
onHelpPresentationDisplayChange(display: FormHelpPresentationConfig['display']): void;
|
|
1577
|
+
onHelpPresentationInlineMaxLengthChange(inlineMaxLength: number | string | null): void;
|
|
1578
|
+
private updateHelpPresentation;
|
|
1579
|
+
getHelpPreferPopoverControlsText(): string;
|
|
1580
|
+
onHelpPreferPopoverControlsChange(value: string): void;
|
|
1526
1581
|
schemaPrefs: {
|
|
1527
1582
|
notifyIfOutdated: 'inline' | 'snackbar' | 'both' | 'none';
|
|
1528
1583
|
snoozeMs: number;
|
|
@@ -1538,13 +1593,19 @@ declare class PraxisDynamicFormConfigEditor implements SettingsValueProvider, On
|
|
|
1538
1593
|
private hasProcessedInitialRuleState;
|
|
1539
1594
|
private jsonEditorIsValid;
|
|
1540
1595
|
private globalActionValidationIssues;
|
|
1596
|
+
private readonly i18n;
|
|
1541
1597
|
readonly globalActionCatalog: GlobalActionCatalogEntry[];
|
|
1542
1598
|
isDirty$: BehaviorSubject<boolean>;
|
|
1543
1599
|
isValid$: BehaviorSubject<boolean>;
|
|
1544
1600
|
isBusy$: BehaviorSubject<boolean>;
|
|
1545
1601
|
private lastRulesSignature;
|
|
1602
|
+
private pendingRulePropertiesStateSignature;
|
|
1546
1603
|
private readonly DEBUG;
|
|
1547
1604
|
private debugLog;
|
|
1605
|
+
get configTabOptions(): ConfigEditorTabOption[];
|
|
1606
|
+
configTabLabel(key: ConfigEditorTabKey): string;
|
|
1607
|
+
private buildPresentationPreviewItems;
|
|
1608
|
+
getConfigTabIndex(key: ConfigEditorTabKey): number;
|
|
1548
1609
|
constructor(storage: AsyncConfigStorage, configService: FormConfigService, settingsPanel: SettingsPanelService, cdr: ChangeDetectorRef, globalActionCatalogSource?: ReadonlyArray<GlobalActionCatalogEntry[]>, injectedData?: any);
|
|
1549
1610
|
ngOnInit(): void;
|
|
1550
1611
|
reset(): void;
|
|
@@ -1571,6 +1632,7 @@ declare class PraxisDynamicFormConfigEditor implements SettingsValueProvider, On
|
|
|
1571
1632
|
applyCommandRule(): void;
|
|
1572
1633
|
deleteCommandRule(): void;
|
|
1573
1634
|
get commandRuleActionSchema(): _praxisui_core.GlobalActionUiSchema | undefined;
|
|
1635
|
+
get commandRuleSurfaceOpenPayload(): SurfaceOpenPayload;
|
|
1574
1636
|
shouldShowCommandActionField(field: GlobalActionField): boolean;
|
|
1575
1637
|
isCommandActionFieldRequired(field: GlobalActionField): boolean;
|
|
1576
1638
|
isCommandActionFieldMissing(field: GlobalActionField): boolean;
|
|
@@ -1579,12 +1641,15 @@ declare class PraxisDynamicFormConfigEditor implements SettingsValueProvider, On
|
|
|
1579
1641
|
get commandRulePreview(): CommandRulePreviewModel;
|
|
1580
1642
|
getCommandActionFieldValue(field: GlobalActionField): any;
|
|
1581
1643
|
onCommandActionFieldChange(field: GlobalActionField, value: any): void;
|
|
1644
|
+
onCommandSurfaceOpenPayloadChange(payload: SurfaceOpenPayload): void;
|
|
1582
1645
|
private initializeCommandRuleEditor;
|
|
1583
1646
|
private loadCommandRuleEditor;
|
|
1647
|
+
private buildCommandRulePolicy;
|
|
1584
1648
|
private updateCommandRules;
|
|
1585
1649
|
private parseCommandRuleCondition;
|
|
1586
1650
|
private parseOptionalJson;
|
|
1587
1651
|
private parseCommandPayloadObject;
|
|
1652
|
+
private getCommandRuleErrorMessage;
|
|
1588
1653
|
private collectCommandActionFieldValues;
|
|
1589
1654
|
private setCommandActionFieldError;
|
|
1590
1655
|
private clearCommandActionFieldError;
|
|
@@ -1596,6 +1661,8 @@ declare class PraxisDynamicFormConfigEditor implements SettingsValueProvider, On
|
|
|
1596
1661
|
getRuleStatusTone(diagnostic: FormRuleDiagnostics): 'ok' | 'warn' | 'error';
|
|
1597
1662
|
canAcceptPendingLlmRule(diagnostic: FormRuleDiagnostics): boolean;
|
|
1598
1663
|
canApplyRulePropertyFix(diagnostic: FormRuleDiagnostics): boolean;
|
|
1664
|
+
canOpenRuleJsonReview(diagnostic: FormRuleDiagnostics): boolean;
|
|
1665
|
+
openRuleJsonReview(ruleId: string): void;
|
|
1599
1666
|
applyRulePropertyFix(ruleId: string): void;
|
|
1600
1667
|
acceptPendingLlmRule(ruleId: string): void;
|
|
1601
1668
|
getRuleDiagnosticDetails(diagnostic: FormRuleDiagnostics): string[];
|
|
@@ -1641,6 +1708,9 @@ declare class PraxisDynamicFormConfigEditor implements SettingsValueProvider, On
|
|
|
1641
1708
|
private toPresentationSnapshot;
|
|
1642
1709
|
private toSchemaPrefsSnapshot;
|
|
1643
1710
|
private toBackConfigSnapshot;
|
|
1711
|
+
tx(key: string, fallback: string, params?: Record<string, string | number | boolean | null | undefined>): string;
|
|
1712
|
+
private resolveI18n;
|
|
1713
|
+
private interpolateFallback;
|
|
1644
1714
|
static ɵfac: i0.ɵɵFactoryDeclaration<PraxisDynamicFormConfigEditor, [null, null, null, null, { optional: true; }, { optional: true; }]>;
|
|
1645
1715
|
static ɵcmp: i0.ɵɵComponentDeclaration<PraxisDynamicFormConfigEditor, "praxis-dynamic-form-config-editor", never, {}, {}, never, never, true, never>;
|
|
1646
1716
|
}
|
|
@@ -1748,7 +1818,7 @@ declare class LayoutPrefsService {
|
|
|
1748
1818
|
static ɵprov: i0.ɵɵInjectableDeclaration<LayoutPrefsService>;
|
|
1749
1819
|
}
|
|
1750
1820
|
|
|
1751
|
-
type VisualBlockPresetId = 'text' | 'notice' | 'divider' | 'infoCard' | 'callout' | 'keyValueList' | 'recordSummary' | 'lookupCard' | 'disclosure' | 'emptyState';
|
|
1821
|
+
type VisualBlockPresetId = 'text' | 'notice' | 'divider' | 'infoCard' | 'callout' | 'keyValueList' | 'contractProof' | 'recordSummary' | 'lookupCard' | 'disclosure' | 'emptyState';
|
|
1752
1822
|
interface VisualBlockPreset {
|
|
1753
1823
|
id: VisualBlockPresetId;
|
|
1754
1824
|
labelKey: string;
|
|
@@ -1953,6 +2023,7 @@ declare class RowConfiguratorComponent implements OnChanges {
|
|
|
1953
2023
|
activeDropIndex: number | null;
|
|
1954
2024
|
protected readonly visualBlockPresets: readonly VisualBlockPreset[];
|
|
1955
2025
|
private readonly i18n;
|
|
2026
|
+
private readonly dialog;
|
|
1956
2027
|
private hoverTimer;
|
|
1957
2028
|
protected readonly breakpoints: Breakpoint[];
|
|
1958
2029
|
previewBreakpoint: Breakpoint;
|
|
@@ -2105,6 +2176,50 @@ declare class DomainRuleFormRulesService {
|
|
|
2105
2176
|
static ɵprov: i0.ɵɵInjectableDeclaration<DomainRuleFormRulesService>;
|
|
2106
2177
|
}
|
|
2107
2178
|
|
|
2179
|
+
declare class Ergadm00034CompactPresentationExampleComponent {
|
|
2180
|
+
private readonly dynamicLayout;
|
|
2181
|
+
readonly legacyFrequencyExample: _praxisui_dynamic_form.Ergadm00034CompactPresentationExample;
|
|
2182
|
+
readonly legacyFrequencyPresentationConfig: _praxisui_core.FormConfig;
|
|
2183
|
+
readonly legacyFrequencyInitialValue: Record<string, unknown>;
|
|
2184
|
+
readonly legacyFrequencyRows: readonly _praxisui_dynamic_form.Ergadm00034LegacyFrequencyRow[];
|
|
2185
|
+
readonly corporatePresentationExample: _praxisui_dynamic_form.CorporatePresentationExample;
|
|
2186
|
+
readonly corporatePresentationConfig: _praxisui_core.FormConfig;
|
|
2187
|
+
readonly corporatePresentationInitialValue: Record<string, unknown>;
|
|
2188
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<Ergadm00034CompactPresentationExampleComponent, never>;
|
|
2189
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<Ergadm00034CompactPresentationExampleComponent, "praxis-ergadm00034-compact-presentation-example", never, {}, {}, never, never, true, never>;
|
|
2190
|
+
}
|
|
2191
|
+
|
|
2192
|
+
interface Ergadm00034LegacyFrequencyRow {
|
|
2193
|
+
tipo: string;
|
|
2194
|
+
codigo: string;
|
|
2195
|
+
nome: string;
|
|
2196
|
+
preenchimento: string;
|
|
2197
|
+
marcador: string;
|
|
2198
|
+
selected?: boolean;
|
|
2199
|
+
}
|
|
2200
|
+
interface Ergadm00034CompactPresentationExample {
|
|
2201
|
+
readonly id: 'ergadm00034-compact-presentation';
|
|
2202
|
+
readonly title: string;
|
|
2203
|
+
readonly resourcePath: string;
|
|
2204
|
+
readonly layoutPreset: 'compactPresentation';
|
|
2205
|
+
readonly rows: readonly Ergadm00034LegacyFrequencyRow[];
|
|
2206
|
+
readonly tableConfig: TableConfig;
|
|
2207
|
+
readonly metadata: readonly FieldMetadata[];
|
|
2208
|
+
readonly initialValue: Record<string, unknown>;
|
|
2209
|
+
}
|
|
2210
|
+
interface CorporatePresentationExample {
|
|
2211
|
+
readonly id: 'corporate-presentation-format-gallery';
|
|
2212
|
+
readonly title: string;
|
|
2213
|
+
readonly resourcePath: string;
|
|
2214
|
+
readonly layoutPreset: 'compactPresentation';
|
|
2215
|
+
readonly metadata: readonly FieldMetadata[];
|
|
2216
|
+
readonly initialValue: Record<string, unknown>;
|
|
2217
|
+
}
|
|
2218
|
+
declare const ERGADM00034_COMPACT_PRESENTATION_EXAMPLE: Ergadm00034CompactPresentationExample;
|
|
2219
|
+
declare const CORPORATE_PRESENTATION_FORMAT_GALLERY: CorporatePresentationExample;
|
|
2220
|
+
declare function buildErgadm00034CompactPresentationConfig(layoutService: DynamicFormLayoutService): FormConfig;
|
|
2221
|
+
declare function buildCorporatePresentationFormatGalleryConfig(layoutService: DynamicFormLayoutService): FormConfig;
|
|
2222
|
+
|
|
2108
2223
|
declare function isRuleSatisfied(rule: FormLayoutRule, data: unknown): boolean;
|
|
2109
2224
|
/**
|
|
2110
2225
|
* Applies all visibility rules to the provided data and
|
|
@@ -2171,6 +2286,7 @@ declare class CanvasToolbarComponent {
|
|
|
2171
2286
|
/** Estado interno para animar o fechamento. */
|
|
2172
2287
|
closing: boolean;
|
|
2173
2288
|
private readonly closeAnimMs;
|
|
2289
|
+
private readonly i18n;
|
|
2174
2290
|
toggleReadonly: EventEmitter<void>;
|
|
2175
2291
|
toggleRequired: EventEmitter<void>;
|
|
2176
2292
|
toggleHidden: EventEmitter<void>;
|
|
@@ -2188,6 +2304,7 @@ declare class CanvasToolbarComponent {
|
|
|
2188
2304
|
onGlobalKeydown(ev: KeyboardEvent): void;
|
|
2189
2305
|
/** Inicia animação de saída e emite o evento ao final. */
|
|
2190
2306
|
triggerClose(): void;
|
|
2307
|
+
tx(key: string, fallback: string, params?: Record<string, string | number>): string;
|
|
2191
2308
|
static ɵfac: i0.ɵɵFactoryDeclaration<CanvasToolbarComponent, never>;
|
|
2192
2309
|
static ɵcmp: i0.ɵɵComponentDeclaration<CanvasToolbarComponent, "praxis-canvas-toolbar", never, { "selectedElement": { "alias": "selectedElement"; "required": false; }; }, { "editMetadata": "editMetadata"; "delete": "delete"; "moveUp": "moveUp"; "moveDown": "moveDown"; "selectPath": "selectPath"; "requestClose": "requestClose"; "toggleReadonly": "toggleReadonly"; "toggleRequired": "toggleRequired"; "toggleHidden": "toggleHidden"; "toggleDisabled": "toggleDisabled"; }, never, never, true, never>;
|
|
2193
2310
|
}
|
|
@@ -2345,6 +2462,7 @@ declare class RowEditorComponent implements OnInit, OnDestroy, SettingsValueProv
|
|
|
2345
2462
|
isBusy$: BehaviorSubject<boolean>;
|
|
2346
2463
|
private destroy$;
|
|
2347
2464
|
private initialValueSig;
|
|
2465
|
+
private readonly i18n;
|
|
2348
2466
|
constructor(fb: FormBuilder, data: {
|
|
2349
2467
|
row: EditableFormRow;
|
|
2350
2468
|
});
|
|
@@ -2353,10 +2471,12 @@ declare class RowEditorComponent implements OnInit, OnDestroy, SettingsValueProv
|
|
|
2353
2471
|
getSettingsValue(): any;
|
|
2354
2472
|
displayValue(value: number | null | undefined, fallback: string): string | number;
|
|
2355
2473
|
displayPxValue(value: number | null | undefined): string;
|
|
2474
|
+
visibilityStateLabel(bp: Breakpoint): string;
|
|
2356
2475
|
private setColumns;
|
|
2357
2476
|
applyPreset(preset: 'full' | 'half' | 'thirds' | 'thirdTwoThird' | 'twoThirdThird' | 'autoBalance'): void;
|
|
2358
2477
|
private resolveHiddenMode;
|
|
2359
2478
|
setHiddenMode(mode: 'none' | 'mobile' | 'desktop'): void;
|
|
2479
|
+
tx(key: string, fallback: string, params?: Record<string, string | number>): string;
|
|
2360
2480
|
static ɵfac: i0.ɵɵFactoryDeclaration<RowEditorComponent, never>;
|
|
2361
2481
|
static ɵcmp: i0.ɵɵComponentDeclaration<RowEditorComponent, "praxis-row-editor", never, {}, {}, never, never, true, never>;
|
|
2362
2482
|
}
|
|
@@ -2373,6 +2493,7 @@ declare class ColumnEditorComponent implements OnInit, OnDestroy, SettingsValueP
|
|
|
2373
2493
|
isBusy$: BehaviorSubject<boolean>;
|
|
2374
2494
|
private destroy$;
|
|
2375
2495
|
private _previewTimer;
|
|
2496
|
+
private readonly i18n;
|
|
2376
2497
|
constructor(fb: FormBuilder, data: {
|
|
2377
2498
|
column: FormColumn;
|
|
2378
2499
|
});
|
|
@@ -2396,6 +2517,7 @@ declare class ColumnEditorComponent implements OnInit, OnDestroy, SettingsValueP
|
|
|
2396
2517
|
resetResponsive(): void;
|
|
2397
2518
|
applyPreset(key: 'full' | 'half' | 'third' | 'twoThird' | 'centered' | 'narrowSidebar' | 'wideContent' | 'stackMobile' | 'hideMobile' | 'desktopOnly'): void;
|
|
2398
2519
|
toggleHiddenBp(bp: Breakpoint): void;
|
|
2520
|
+
tx(key: string, fallback: string, params?: Record<string, string | number>): string;
|
|
2399
2521
|
static ɵfac: i0.ɵɵFactoryDeclaration<ColumnEditorComponent, never>;
|
|
2400
2522
|
static ɵcmp: i0.ɵɵComponentDeclaration<ColumnEditorComponent, "praxis-column-editor", never, {}, {}, never, never, true, never>;
|
|
2401
2523
|
}
|
|
@@ -2634,5 +2756,5 @@ declare function buildDynamicFormRuleAuthoringContext(config: Pick<FormConfig, '
|
|
|
2634
2756
|
*/
|
|
2635
2757
|
declare const PRAXIS_DYNAMIC_FORM_AUTHORING_MANIFEST: ComponentAuthoringManifest;
|
|
2636
2758
|
|
|
2637
|
-
export { ActionsEditorComponent, CanvasStateService, CanvasToolbarComponent, ColumnEditorComponent, DomainRuleFormRulesService, DynamicFormLayoutService, FORM_AI_CAPABILITIES, FORM_COMPONENT_AI_CAPABILITIES, FieldConfiguratorComponent, FieldEditorComponent, FormConfigService, FormContextService, FormLayoutService, FormRulesService, JsonConfigEditorComponent, LayoutColorToken, LayoutEditorComponent, LayoutPrefsService, PRAXIS_DYNAMIC_FORM_AUTHORING_MANIFEST, PRAXIS_DYNAMIC_FORM_COMPONENT_METADATA, PRAXIS_FILTER_FORM_COMPONENT_METADATA, PraxisDynamicForm, PraxisDynamicFormConfigEditor, PraxisDynamicFormWidgetConfigEditor, PraxisFilterForm, PraxisFilterFormWidgetConfigEditor, PraxisFormActionsComponent, RowConfiguratorComponent, RowEditorComponent, SETTINGS_PANEL_DYNAMIC_FORM_PROVIDER, SectionEditorComponent, TASK_PRESETS, applyVisibilityRules, buildDynamicFormApplyPlan, buildDynamicFormRuleAuthoringContext, createDynamicFormAuthoringDocument, formLayoutRulesToBuilderState, getFormAiCatalog, getFormCapabilities, getFormEnum, isRuleSatisfied, normalizeDateArrays, normalizeDynamicFormAuthoringDocument, parseLegacyOrDynamicFormDocument, providePraxisDynamicFormMetadata, providePraxisFilterFormMetadata, provideSettingsPanelDynamicForm, ruleBuilderStateToFormLayoutRules, serializeDynamicFormAuthoringDocument, stripLegacyFieldMetadata, toCanonicalDynamicFormConfig, validateDynamicFormAuthoringDocument, validateDynamicFormAuthoringInput };
|
|
2638
|
-
export type { CanvasElement, CanvasElementType, CanvasPathPart, Capability$1 as Capability, CapabilityCatalog$1 as CapabilityCatalog, CapabilityCategory$1 as CapabilityCategory, DomainRuleFormRulesRequestOptions, DomainRuleMaterializedFormLayoutRule, DynamicFieldRenderErrorEvent, DynamicFormAllowedRuleProperties, DynamicFormApplyPlan, DynamicFormAuthoringDocument, DynamicFormBindings, DynamicFormConfigPatchChangeEvent, DynamicFormContextSnapshot, DynamicFormMode, DynamicFormPresentationSnapshot, DynamicFormProjectionContext, DynamicFormResolvedRuntimeContract, DynamicFormRuleAuthoringContext, DynamicFormRuleAuthoringField, DynamicFormRuleAuthoringTarget, DynamicFormRuleAuthoringTargetDetails, DynamicFormRuleAuthoringTargets, DynamicFormRuleAuthoringVisualBlockNode, DynamicFormRuleTargetType, DynamicFormRuntimeContext, DynamicFormRuntimeValueSource, DynamicFormSchemaPrefsSnapshot, DynamicFormValidationContext, EditorDiagnostic, EditorDocument, FieldPath, FieldPathContainer, FieldPathWithIndex, Capability as FormComponentCapability, CapabilityCatalog as FormComponentCapabilityCatalog, CapabilityCategory as FormComponentCapabilityCategory, ValueKind as FormComponentValueKind, FormConfigLike, IdPath, InsertLocalFieldOptions, InsertLocalFieldResult, JsonEditorEvent, JsonValidationResult, LayoutChange, LayoutResult, LocalFieldInsertionDiagnostic, LocalFieldInsertionDiagnosticCode, Operation, Path, PathWithIndex, PraxisDynamicFormDomainRulesOptions, PraxisDynamicFormWidgetEditorInputs, PraxisDynamicFormWidgetEditorValue, PraxisFilterFormWidgetEditorInputs, PraxisFilterFormWidgetEditorValue, PraxisFormActionEvent, RemovePolicy, RuleApplicationContext, RuleApplicationDiagnostic, RuleApplicationDiagnosticCode, RuleApplicationResult, RuleApplicationTargetIndex, RuleApplicationTargetType, ValidationReport, ValueKind$1 as ValueKind };
|
|
2759
|
+
export { ActionsEditorComponent, CORPORATE_PRESENTATION_FORMAT_GALLERY, CanvasStateService, CanvasToolbarComponent, ColumnEditorComponent, DomainRuleFormRulesService, DynamicFormLayoutService, ERGADM00034_COMPACT_PRESENTATION_EXAMPLE, Ergadm00034CompactPresentationExampleComponent, FORM_AI_CAPABILITIES, FORM_COMPONENT_AI_CAPABILITIES, FieldConfiguratorComponent, FieldEditorComponent, FormConfigService, FormContextService, FormLayoutService, FormRulesService, JsonConfigEditorComponent, LayoutColorToken, LayoutEditorComponent, LayoutPrefsService, PRAXIS_DYNAMIC_FORM_AUTHORING_MANIFEST, PRAXIS_DYNAMIC_FORM_COMPONENT_METADATA, PRAXIS_FILTER_FORM_COMPONENT_METADATA, PraxisDynamicForm, PraxisDynamicFormConfigEditor, PraxisDynamicFormWidgetConfigEditor, PraxisFilterForm, PraxisFilterFormWidgetConfigEditor, PraxisFormActionsComponent, RowConfiguratorComponent, RowEditorComponent, SETTINGS_PANEL_DYNAMIC_FORM_PROVIDER, SectionEditorComponent, TASK_PRESETS, applyVisibilityRules, buildCorporatePresentationFormatGalleryConfig, buildDynamicFormApplyPlan, buildDynamicFormRuleAuthoringContext, buildErgadm00034CompactPresentationConfig, createDynamicFormAuthoringDocument, formLayoutRulesToBuilderState, getFormAiCatalog, getFormCapabilities, getFormEnum, isRuleSatisfied, normalizeDateArrays, normalizeDynamicFormAuthoringDocument, parseLegacyOrDynamicFormDocument, providePraxisDynamicFormMetadata, providePraxisFilterFormMetadata, provideSettingsPanelDynamicForm, ruleBuilderStateToFormLayoutRules, serializeDynamicFormAuthoringDocument, stripLegacyFieldMetadata, toCanonicalDynamicFormConfig, validateDynamicFormAuthoringDocument, validateDynamicFormAuthoringInput };
|
|
2760
|
+
export type { CanvasElement, CanvasElementType, CanvasPathPart, Capability$1 as Capability, CapabilityCatalog$1 as CapabilityCatalog, CapabilityCategory$1 as CapabilityCategory, CorporatePresentationExample, DomainRuleFormRulesRequestOptions, DomainRuleMaterializedFormLayoutRule, DynamicFieldRenderErrorEvent, DynamicFormAllowedRuleProperties, DynamicFormApplyPlan, DynamicFormAuthoringDocument, DynamicFormBindings, DynamicFormConfigPatchChangeEvent, DynamicFormContextSnapshot, DynamicFormGeneratedLayoutPreset, DynamicFormMode, DynamicFormPresentationSnapshot, DynamicFormProjectionContext, DynamicFormResolvedRuntimeContract, DynamicFormRuleAuthoringContext, DynamicFormRuleAuthoringField, DynamicFormRuleAuthoringTarget, DynamicFormRuleAuthoringTargetDetails, DynamicFormRuleAuthoringTargets, DynamicFormRuleAuthoringVisualBlockNode, DynamicFormRuleTargetType, DynamicFormRuntimeContext, DynamicFormRuntimeValueSource, DynamicFormSchemaPrefsSnapshot, DynamicFormValidationContext, EditorDiagnostic, EditorDocument, Ergadm00034CompactPresentationExample, Ergadm00034LegacyFrequencyRow, FieldPath, FieldPathContainer, FieldPathWithIndex, Capability as FormComponentCapability, CapabilityCatalog as FormComponentCapabilityCatalog, CapabilityCategory as FormComponentCapabilityCategory, ValueKind as FormComponentValueKind, FormConfigLike, GenerateFormConfigFromMetadataOptions, IdPath, InsertLocalFieldOptions, InsertLocalFieldResult, JsonEditorEvent, JsonValidationResult, LayoutChange, LayoutResult, LocalFieldInsertionDiagnostic, LocalFieldInsertionDiagnosticCode, Operation, Path, PathWithIndex, PraxisDynamicFormDomainRulesOptions, PraxisDynamicFormWidgetEditorInputs, PraxisDynamicFormWidgetEditorValue, PraxisFilterFormWidgetEditorInputs, PraxisFilterFormWidgetEditorValue, PraxisFormActionEvent, RemovePolicy, RuleApplicationContext, RuleApplicationDiagnostic, RuleApplicationDiagnosticCode, RuleApplicationResult, RuleApplicationTargetIndex, RuleApplicationTargetType, ValidationReport, ValueKind$1 as ValueKind };
|