@praxisui/core 1.0.0-beta.60 → 1.0.0-beta.62

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/index.d.ts CHANGED
@@ -100,6 +100,10 @@ interface FieldDefinition {
100
100
  width?: number | string;
101
101
  isFlex?: boolean;
102
102
  displayOrientation?: string;
103
+ selectionMode?: 'boolean' | 'single' | 'multiple';
104
+ variant?: string;
105
+ density?: 'compact' | 'comfortable' | 'spacious';
106
+ layout?: 'horizontal' | 'vertical';
103
107
  disabled?: boolean;
104
108
  readOnly?: boolean;
105
109
  multiple?: boolean;
@@ -2321,11 +2325,18 @@ interface GlobalCacheConfig {
2321
2325
  */
2322
2326
  disableSchemaCache?: boolean;
2323
2327
  }
2328
+ interface GlobalI18nConfig {
2329
+ locale?: string;
2330
+ fallbackLocale?: string;
2331
+ dictionaries?: Record<string, Record<string, string>>;
2332
+ namespaces?: Record<string, Record<string, Record<string, string>>>;
2333
+ }
2324
2334
  interface GlobalConfig {
2325
2335
  crud?: GlobalCrudConfig;
2326
2336
  dynamicFields?: GlobalDynamicFieldsConfig;
2327
2337
  table?: GlobalTableConfig;
2328
2338
  dialog?: GlobalDialogConfig;
2339
+ i18n?: GlobalI18nConfig;
2329
2340
  /** Dynamic routes registered at runtime (host-resolved). */
2330
2341
  routes?: {
2331
2342
  dynamic?: Array<{
@@ -2381,6 +2392,7 @@ declare class GlobalConfigService {
2381
2392
  getDynamicFields(): GlobalConfig['dynamicFields'];
2382
2393
  getTable(): GlobalConfig['table'];
2383
2394
  getDialog(): GlobalConfig['dialog'];
2395
+ getI18n(): GlobalConfig['i18n'];
2384
2396
  /** Set current tenant (affects storage key). Pass undefined to clear. */
2385
2397
  setTenant(tenantId?: string): void;
2386
2398
  /** Get current tenant id (if any). */
@@ -3677,6 +3689,19 @@ interface FieldMetadata extends ComponentMetadata {
3677
3689
  name: string;
3678
3690
  /** Display label for the field */
3679
3691
  label: string;
3692
+ /**
3693
+ * Indicates that `label` was generated automatically by infrastructure code
3694
+ * such as schema mappers, instead of being authored explicitly by metadata.
3695
+ *
3696
+ * This flag is optional and defaults to `false` when omitted, preserving
3697
+ * backward compatibility for existing serialized metadata and host contracts.
3698
+ *
3699
+ * Intended use:
3700
+ * - allow authoring/runtime layers to distinguish domain text from fallback UI
3701
+ * - support governance checks that require explicit labels in enterprise flows
3702
+ * - avoid relying on implicit casts such as `(fieldMetadata as any)`
3703
+ */
3704
+ labelAutoGenerated?: boolean;
3680
3705
  /** Field control type for component resolution */
3681
3706
  controlType: FieldControlType;
3682
3707
  /** Data type for processing and validation */
@@ -3703,6 +3728,10 @@ interface FieldMetadata extends ComponentMetadata {
3703
3728
  hint?: string;
3704
3729
  /** Tooltip text on hover */
3705
3730
  tooltip?: string;
3731
+ /** Semantic selection mode for boolean/single/multiple choice controls */
3732
+ selectionMode?: 'boolean' | 'single' | 'multiple';
3733
+ /** Visual variant used by controls with more than one supported presentation */
3734
+ variant?: string;
3706
3735
  /** Comprehensive validation rules */
3707
3736
  validators?: ValidatorOptions;
3708
3737
  /** When to validate field changes */
@@ -4701,6 +4730,12 @@ interface MaterialSelectionListMetadata extends FieldMetadata {
4701
4730
  */
4702
4731
  interface MaterialCheckboxMetadata extends FieldMetadata {
4703
4732
  controlType: typeof FieldControlType.CHECKBOX;
4733
+ /** Semantic selection mode for the checkbox runtime */
4734
+ selectionMode?: 'boolean' | 'multiple';
4735
+ /** Visual treatment of the checkbox field */
4736
+ variant?: 'default' | 'consent' | 'compact' | 'tiles';
4737
+ /** Spacing density for checkbox layouts */
4738
+ density?: 'compact' | 'comfortable' | 'spacious';
4704
4739
  /** Checkbox options for group selection */
4705
4740
  checkboxOptions?: Array<{
4706
4741
  value: any;
@@ -4737,6 +4772,13 @@ interface MaterialCheckboxMetadata extends FieldMetadata {
4737
4772
  linkUrl?: string;
4738
4773
  /** Link target (_blank or _self) */
4739
4774
  linkTarget?: '_blank' | '_self';
4775
+ /** Rich links rendered in boolean/consent layouts */
4776
+ links?: Array<{
4777
+ label: string;
4778
+ href: string;
4779
+ target?: '_blank' | '_self';
4780
+ rel?: string;
4781
+ }>;
4740
4782
  }
4741
4783
  /**
4742
4784
  * Specialized metadata for Material Radio Button components.
@@ -4746,6 +4788,12 @@ interface MaterialCheckboxMetadata extends FieldMetadata {
4746
4788
  */
4747
4789
  interface MaterialRadioMetadata extends FieldMetadata {
4748
4790
  controlType: typeof FieldControlType.RADIO;
4791
+ /** Semantic selection mode for the radio runtime */
4792
+ selectionMode?: 'single';
4793
+ /** Visual treatment of the radio group */
4794
+ variant?: 'default' | 'compact' | 'tiles';
4795
+ /** Spacing density for radio layouts */
4796
+ density?: 'compact' | 'comfortable' | 'spacious';
4749
4797
  /** Radio button options */
4750
4798
  radioOptions?: Array<{
4751
4799
  value: any;
@@ -6453,6 +6501,42 @@ declare function provideGlobalConfigSeed(seed: Partial<GlobalConfig>): Provider;
6453
6501
  declare function provideRemoteGlobalConfig(url: string): Provider;
6454
6502
  declare function providePraxisGlobalConfigBootstrap(options?: PraxisGlobalConfigBootstrapOptions): Provider[];
6455
6503
 
6504
+ type PraxisLocale = string;
6505
+ interface PraxisTranslationParams {
6506
+ [key: string]: string | number | boolean | null | undefined;
6507
+ }
6508
+ interface PraxisI18nMessageDescriptor {
6509
+ key?: string;
6510
+ text?: string;
6511
+ params?: PraxisTranslationParams;
6512
+ }
6513
+ type PraxisTextValue = string | PraxisI18nMessageDescriptor;
6514
+ interface PraxisI18nDictionary {
6515
+ [key: string]: string;
6516
+ }
6517
+ interface PraxisI18nNamespaceDictionary {
6518
+ [locale: string]: PraxisI18nDictionary;
6519
+ }
6520
+ interface PraxisI18nNamespaceConfig {
6521
+ [namespace: string]: PraxisI18nNamespaceDictionary;
6522
+ }
6523
+ interface PraxisI18nConfig {
6524
+ locale?: PraxisLocale;
6525
+ fallbackLocale?: PraxisLocale;
6526
+ dictionaries?: Record<PraxisLocale, PraxisI18nDictionary>;
6527
+ namespaces?: PraxisI18nNamespaceConfig;
6528
+ }
6529
+ interface PraxisI18nTranslator {
6530
+ translate(key: string, params?: PraxisTranslationParams, fallback?: string): string;
6531
+ }
6532
+
6533
+ declare const PRAXIS_I18N_CONFIG: InjectionToken<Partial<PraxisI18nConfig>>;
6534
+ declare const PRAXIS_I18N_TRANSLATOR: InjectionToken<PraxisI18nTranslator>;
6535
+
6536
+ declare function providePraxisI18nConfig(config: Partial<PraxisI18nConfig>): Provider;
6537
+ declare const providePraxisI18n: typeof providePraxisI18nConfig;
6538
+ declare function providePraxisI18nTranslator(translator: PraxisI18nTranslator): Provider;
6539
+
6456
6540
  type PraxisGlobalActionsOptions = {
6457
6541
  dialog?: boolean | GlobalDialogService;
6458
6542
  toast?: boolean | GlobalToastService;
@@ -6542,6 +6626,30 @@ declare const DYNAMIC_PAGE_CONFIG_EDITOR: InjectionToken<Type<any>>;
6542
6626
 
6543
6627
  declare const PRAXIS_LOADING_CTX: HttpContextToken<LoadingContext | null>;
6544
6628
 
6629
+ declare class PraxisI18nService {
6630
+ private readonly configs;
6631
+ private readonly translator;
6632
+ private readonly globalConfig;
6633
+ private readonly bootstrapOptions;
6634
+ constructor(configs: Array<Partial<PraxisI18nConfig>> | Partial<PraxisI18nConfig> | null, translator: PraxisI18nTranslator | null);
6635
+ getLocale(): string;
6636
+ getFallbackLocale(): string;
6637
+ t(key: string, params?: PraxisTranslationParams, fallback?: string, namespace?: string): string;
6638
+ resolve(message: PraxisTextValue | null | undefined, fallback?: string, namespace?: string): string;
6639
+ formatDate(value: Date | string | number, options?: Intl.DateTimeFormatOptions): string;
6640
+ formatNumber(value: number, options?: Intl.NumberFormatOptions): string;
6641
+ formatCurrency(value: number, currency: string, options?: Intl.NumberFormatOptions): string;
6642
+ private getConfig;
6643
+ private lookup;
6644
+ private translateExternally;
6645
+ private stringifyInvalidValue;
6646
+ static ɵfac: i0.ɵɵFactoryDeclaration<PraxisI18nService, [{ optional: true; }, { optional: true; }]>;
6647
+ static ɵprov: i0.ɵɵInjectableDeclaration<PraxisI18nService>;
6648
+ }
6649
+
6650
+ declare function interpolatePraxisTranslation(template: string, params?: PraxisTranslationParams): string;
6651
+ declare function mergePraxisI18nConfigs(...configs: Array<Partial<PraxisI18nConfig> | null | undefined>): PraxisI18nConfig;
6652
+
6545
6653
  interface MaterialTimeTrackShift {
6546
6654
  id?: string;
6547
6655
  label?: string;
@@ -6887,6 +6995,94 @@ interface FormLayout {
6887
6995
  formRules?: FormLayoutRule[];
6888
6996
  }
6889
6997
 
6998
+ type EditorialTemplateSource = 'catalog' | 'tenant' | 'host' | 'generated' | 'imported';
6999
+ interface EditorialFormTemplateContextField {
7000
+ key: string;
7001
+ type?: 'string' | 'number' | 'boolean' | 'date' | 'datetime' | 'array' | 'object' | 'unknown';
7002
+ required?: boolean;
7003
+ description?: string;
7004
+ example?: unknown;
7005
+ }
7006
+ interface EditorialFormShellPreset {
7007
+ shellVariant?: 'card' | 'page' | 'split' | 'wizard' | 'plain';
7008
+ maxWidth?: string | number;
7009
+ pageSpacing?: string | number;
7010
+ background?: string;
7011
+ surfaceVariant?: string;
7012
+ }
7013
+ interface EditorialFormCompliancePreset {
7014
+ id: string;
7015
+ label?: string;
7016
+ description?: string;
7017
+ }
7018
+ interface EditorialFormTemplateMetadata {
7019
+ title: string;
7020
+ description?: string;
7021
+ category?: string;
7022
+ tags?: string[];
7023
+ source?: EditorialTemplateSource;
7024
+ owner?: string;
7025
+ }
7026
+ interface EditorialFormTemplateLayoutPreset {
7027
+ formBlocksBefore?: WidgetDefinition[];
7028
+ formBlocksBeforeActions?: WidgetDefinition[];
7029
+ formBlocksBeforeActionsPlacement?: 'insideLastSection' | 'afterSections';
7030
+ formBlocksAfter?: WidgetDefinition[];
7031
+ sections?: FormSection[];
7032
+ actions?: FormActionsLayout;
7033
+ }
7034
+ interface EditorialFormTemplateDefaults {
7035
+ editorialContext?: Record<string, unknown>;
7036
+ fieldMetadata?: FieldMetadata[];
7037
+ behavior?: FormBehaviorLayout;
7038
+ api?: FormApiLayout;
7039
+ messages?: FormMessagesLayout;
7040
+ formRules?: FormLayoutRule[];
7041
+ hooks?: FormHooksLayout;
7042
+ hints?: FormModeHints;
7043
+ }
7044
+ /**
7045
+ * Template opt-in for editorial/corporate form authoring.
7046
+ *
7047
+ * Important:
7048
+ * - this does NOT replace FormConfig;
7049
+ * - runtime can continue consuming plain FormConfig;
7050
+ * - hosts may materialize a template into FormConfig before passing it to the form.
7051
+ */
7052
+ interface EditorialFormTemplate {
7053
+ templateId: string;
7054
+ version: string;
7055
+ metadata: EditorialFormTemplateMetadata;
7056
+ shell?: EditorialFormShellPreset;
7057
+ compliancePresets?: EditorialFormCompliancePreset[];
7058
+ contextSchema?: EditorialFormTemplateContextField[];
7059
+ layout?: EditorialFormTemplateLayoutPreset;
7060
+ defaults?: EditorialFormTemplateDefaults;
7061
+ }
7062
+ interface EditorialFormTemplateReference {
7063
+ templateId: string;
7064
+ version: string;
7065
+ title?: string;
7066
+ category?: string;
7067
+ source?: EditorialTemplateSource;
7068
+ appliedAt?: Date;
7069
+ mode?: 'template' | 'template+override';
7070
+ }
7071
+ interface EditorialFormTemplateBuildOptions {
7072
+ overrides?: Partial<FormConfig>;
7073
+ metadata?: Partial<FormConfigMetadata>;
7074
+ }
7075
+ /**
7076
+ * Materializes a concrete FormConfig from a reusable editorial template.
7077
+ *
7078
+ * Merge rules:
7079
+ * - template defaults provide the base structure
7080
+ * - explicit overrides always win
7081
+ * - collections are replaced, not concatenated, unless omitted in overrides
7082
+ * - template provenance is recorded under config.metadata.template
7083
+ */
7084
+ declare function buildFormConfigFromEditorialTemplate(template: EditorialFormTemplate, options?: EditorialFormTemplateBuildOptions): FormConfig;
7085
+
6890
7086
  type Breakpoint = 'xs' | 'sm' | 'md' | 'lg' | 'xl';
6891
7087
  interface ColumnSpan {
6892
7088
  xs?: number;
@@ -6942,6 +7138,12 @@ interface FormRow {
6942
7138
  interface FormSection {
6943
7139
  id: string;
6944
7140
  title?: string;
7141
+ /** Visual appearance preset for the section container/header. */
7142
+ appearance?: 'card' | 'plain' | 'step';
7143
+ /** Optional compact step badge/kicker displayed before the title. */
7144
+ stepLabel?: string;
7145
+ /** Optional inline styles applied to the section container. */
7146
+ styles?: Record<string, string | number>;
6945
7147
  /** Optional icon name (Material Icons ligature or SVG name) */
6946
7148
  icon?: string;
6947
7149
  description?: string;
@@ -6973,6 +7175,10 @@ interface FormConfig {
6973
7175
  sections: FormSection[];
6974
7176
  /** Editorial or semantic widgets rendered before the form sections/actions. */
6975
7177
  formBlocksBefore?: WidgetDefinition[];
7178
+ /** Editorial or semantic widgets rendered after the form sections and before the primary action area. */
7179
+ formBlocksBeforeActions?: WidgetDefinition[];
7180
+ /** Controls whether `formBlocksBeforeActions` render inside the last section or after all sections. */
7181
+ formBlocksBeforeActionsPlacement?: 'insideLastSection' | 'afterSections';
6976
7182
  /** Editorial or semantic widgets rendered after the form sections/actions. */
6977
7183
  formBlocksAfter?: WidgetDefinition[];
6978
7184
  /** Shared context used to resolve editorial widget bindings inside the form host. */
@@ -7042,6 +7248,8 @@ interface FormConfigMetadata {
7042
7248
  tenant?: string;
7043
7249
  locale?: string;
7044
7250
  };
7251
+ /** Optional provenance for configs materialized from EditorialFormTemplate. */
7252
+ template?: EditorialFormTemplateReference;
7045
7253
  /** User customizations log */
7046
7254
  customizations?: CustomizationLog[];
7047
7255
  }
@@ -7119,6 +7327,13 @@ declare function syncWithServerMetadata(localConfig: FormConfig, serverMetadata:
7119
7327
  */
7120
7328
  declare function convertFormLayoutToConfig(formLayout: any): FormConfig;
7121
7329
 
7330
+ declare const EVENT_REGISTRATION_EDITORIAL_TEMPLATE: EditorialFormTemplate;
7331
+ declare const EMPLOYEE_ONBOARDING_EDITORIAL_TEMPLATE: EditorialFormTemplate;
7332
+ declare const PRIVACY_CONSENT_EDITORIAL_TEMPLATE: EditorialFormTemplate;
7333
+ declare const EDITORIAL_FORM_TEMPLATE_CATALOG: EditorialFormTemplate[];
7334
+ declare function getEditorialFormTemplateCatalog(): EditorialFormTemplate[];
7335
+ declare function getEditorialFormTemplateById(templateId: string): EditorialFormTemplate | undefined;
7336
+
7122
7337
  interface FormValueChangeEvent {
7123
7338
  formData: any;
7124
7339
  changedField?: string;
@@ -7208,6 +7423,259 @@ interface RulePropertyDefinition {
7208
7423
  type RulePropertySchema = Record<'field' | 'section' | 'action' | 'row' | 'column', RulePropertyDefinition[]>;
7209
7424
  declare const RULE_PROPERTY_SCHEMA: RulePropertySchema;
7210
7425
 
7426
+ type EditorialBlockKind = 'hero' | 'richText' | 'legalNotice' | 'policyList' | 'timelineSteps' | 'reviewSummary' | 'dataCollection' | 'contextSummary' | 'infoCards' | 'faqAccordion' | 'customWidget' | 'footerLinks';
7427
+ type EditorialBlockTone = 'default' | 'institutional' | 'highlight' | 'muted' | 'warning' | 'success' | 'danger';
7428
+ type EditorialBlockSurface = 'plain' | 'card' | 'section' | 'divider' | 'banner' | 'aside';
7429
+ interface EditorialBlockVisibilityRule {
7430
+ when?: string;
7431
+ equals?: unknown;
7432
+ notEquals?: unknown;
7433
+ exists?: boolean;
7434
+ }
7435
+ interface EditorialBlockBase {
7436
+ blockId: string;
7437
+ kind: EditorialBlockKind;
7438
+ title?: string;
7439
+ subtitle?: string;
7440
+ description?: string;
7441
+ tone?: EditorialBlockTone;
7442
+ surface?: EditorialBlockSurface;
7443
+ analyticsId?: string;
7444
+ visibility?: EditorialBlockVisibilityRule[];
7445
+ tags?: string[];
7446
+ }
7447
+ interface EditorialLinkItem {
7448
+ id?: string;
7449
+ label: string;
7450
+ href: string;
7451
+ target?: '_self' | '_blank';
7452
+ external?: boolean;
7453
+ description?: string;
7454
+ }
7455
+ interface EditorialMetaItem {
7456
+ label: string;
7457
+ value: string;
7458
+ }
7459
+ interface EditorialHeroBlock extends EditorialBlockBase {
7460
+ kind: 'hero';
7461
+ brandText?: string;
7462
+ titleAccent?: string;
7463
+ badges?: Array<{
7464
+ label: string;
7465
+ tone?: EditorialBlockTone;
7466
+ }>;
7467
+ metaItems?: EditorialMetaItem[];
7468
+ ctas?: Array<{
7469
+ id: string;
7470
+ label: string;
7471
+ appearance?: 'primary' | 'secondary' | 'text';
7472
+ }>;
7473
+ imageUrl?: string;
7474
+ imageAlt?: string;
7475
+ }
7476
+ interface EditorialRichTextBlock extends EditorialBlockBase {
7477
+ kind: 'richText' | 'legalNotice';
7478
+ content: string;
7479
+ contentFormat?: 'plain' | 'markdown';
7480
+ icon?: string;
7481
+ links?: EditorialLinkItem[];
7482
+ }
7483
+ interface EditorialPolicyItem {
7484
+ id: string;
7485
+ title: string;
7486
+ summary?: string;
7487
+ required?: boolean;
7488
+ href?: string;
7489
+ version?: string;
7490
+ evidenceKey?: string;
7491
+ }
7492
+ interface EditorialPolicyListBlock extends EditorialBlockBase {
7493
+ kind: 'policyList';
7494
+ items: EditorialPolicyItem[];
7495
+ actionLabel?: string;
7496
+ actionId?: string;
7497
+ }
7498
+ interface EditorialTimelineStep {
7499
+ id: string;
7500
+ label: string;
7501
+ description?: string;
7502
+ status?: 'pending' | 'current' | 'completed';
7503
+ meta?: string;
7504
+ }
7505
+ interface EditorialTimelineStepsBlock extends EditorialBlockBase {
7506
+ kind: 'timelineSteps';
7507
+ steps: EditorialTimelineStep[];
7508
+ }
7509
+ interface EditorialReviewField {
7510
+ key: string;
7511
+ label: string;
7512
+ valuePath?: string;
7513
+ fallback?: string;
7514
+ emphasize?: boolean;
7515
+ }
7516
+ interface EditorialReviewSummaryBlock extends EditorialBlockBase {
7517
+ kind: 'reviewSummary';
7518
+ fields: EditorialReviewField[];
7519
+ checklist?: string[];
7520
+ }
7521
+ interface EditorialDataCollectionBlock extends EditorialBlockBase {
7522
+ kind: 'dataCollection';
7523
+ formBlockId: string;
7524
+ formConfig?: FormConfig;
7525
+ formConfigRef?: string;
7526
+ }
7527
+ interface EditorialContextSummaryBlock extends EditorialBlockBase {
7528
+ kind: 'contextSummary';
7529
+ contextPath?: string;
7530
+ fields: EditorialReviewField[];
7531
+ actionId?: string;
7532
+ actionLabel?: string;
7533
+ }
7534
+ interface EditorialInfoCardItem {
7535
+ id: string;
7536
+ title: string;
7537
+ description?: string;
7538
+ icon?: string;
7539
+ }
7540
+ interface EditorialInfoCardsBlock extends EditorialBlockBase {
7541
+ kind: 'infoCards';
7542
+ items: EditorialInfoCardItem[];
7543
+ }
7544
+ interface EditorialFaqItem {
7545
+ id: string;
7546
+ question: string;
7547
+ answer: string;
7548
+ }
7549
+ interface EditorialFaqAccordionBlock extends EditorialBlockBase {
7550
+ kind: 'faqAccordion';
7551
+ items: EditorialFaqItem[];
7552
+ }
7553
+ interface EditorialCustomWidgetBlock extends EditorialBlockBase {
7554
+ kind: 'customWidget' | 'footerLinks';
7555
+ widget: WidgetDefinition;
7556
+ }
7557
+ type EditorialBlock = EditorialHeroBlock | EditorialRichTextBlock | EditorialPolicyListBlock | EditorialTimelineStepsBlock | EditorialReviewSummaryBlock | EditorialDataCollectionBlock | EditorialContextSummaryBlock | EditorialInfoCardsBlock | EditorialFaqAccordionBlock | EditorialCustomWidgetBlock;
7558
+
7559
+ type EditorialProblemType = 'event-registration' | 'employee-onboarding' | 'privacy-consent' | 'document-intake' | 'eligibility-screening' | 'application-review' | (string & {});
7560
+ type EditorialShellVariant = 'plain' | 'card' | 'page' | 'split' | 'wizard' | 'immersive';
7561
+ interface EditorialThemePreset {
7562
+ themeId: string;
7563
+ label: string;
7564
+ description?: string;
7565
+ shellVariant: EditorialShellVariant;
7566
+ maxWidth?: string | number;
7567
+ pageSpacing?: string | number;
7568
+ background?: string;
7569
+ surfaceVariant?: string;
7570
+ tokens?: Record<string, string | number | boolean>;
7571
+ }
7572
+ interface EditorialCompliancePreset {
7573
+ presetId: string;
7574
+ label: string;
7575
+ description?: string;
7576
+ problemTypes?: EditorialProblemType[];
7577
+ requiredContextKeys?: string[];
7578
+ blocks?: EditorialBlock[];
7579
+ requiredEvidenceKeys?: string[];
7580
+ requiredAcceptances?: string[];
7581
+ }
7582
+ interface EditorialSolutionPreset {
7583
+ presetId: string;
7584
+ label: string;
7585
+ description?: string;
7586
+ problemType: EditorialProblemType;
7587
+ themePresetId?: string;
7588
+ compliancePresetIds?: string[];
7589
+ recommendedBlocks?: EditorialBlock[];
7590
+ dataBlockOrder?: string[];
7591
+ tags?: string[];
7592
+ }
7593
+
7594
+ interface EditorialContextFieldContract {
7595
+ key: string;
7596
+ type?: 'string' | 'number' | 'boolean' | 'date' | 'datetime' | 'array' | 'object' | 'unknown';
7597
+ required?: boolean;
7598
+ description?: string;
7599
+ example?: unknown;
7600
+ }
7601
+ interface EditorialJourneyStep {
7602
+ stepId: string;
7603
+ label: string;
7604
+ description?: string;
7605
+ blocks: EditorialBlock[];
7606
+ }
7607
+ interface EditorialJourney {
7608
+ journeyId: string;
7609
+ label: string;
7610
+ description?: string;
7611
+ steps: EditorialJourneyStep[];
7612
+ }
7613
+ interface EditorialSolutionDefinition {
7614
+ solutionId: string;
7615
+ version: string;
7616
+ problemType: EditorialProblemType;
7617
+ title: string;
7618
+ description?: string;
7619
+ contextContract?: EditorialContextFieldContract[];
7620
+ journeys: EditorialJourney[];
7621
+ themePresets?: EditorialThemePreset[];
7622
+ compliancePresets?: EditorialCompliancePreset[];
7623
+ tags?: string[];
7624
+ owner?: string;
7625
+ }
7626
+
7627
+ interface EditorialTemplateRef {
7628
+ templateId: string;
7629
+ version: string;
7630
+ title?: string;
7631
+ problemType?: EditorialProblemType;
7632
+ }
7633
+ interface EditorialBlockOverride {
7634
+ blockId: string;
7635
+ operation: 'replace' | 'remove' | 'insertBefore' | 'insertAfter' | 'append';
7636
+ referenceBlockId?: string;
7637
+ value?: EditorialBlock;
7638
+ }
7639
+ interface EditorialJourneyOverride {
7640
+ journeyId: string;
7641
+ stepOverrides?: Array<{
7642
+ stepId: string;
7643
+ blockOverrides?: EditorialBlockOverride[];
7644
+ }>;
7645
+ }
7646
+ interface EditorialTemplateInstanceOverrides {
7647
+ themePresetId?: string;
7648
+ compliancePresetIds?: string[];
7649
+ contextPatch?: Record<string, unknown>;
7650
+ journeyOverrides?: EditorialJourneyOverride[];
7651
+ runtimeFormConfigs?: Record<string, FormConfig>;
7652
+ }
7653
+ interface EditorialTemplateInstance {
7654
+ instanceId: string;
7655
+ template: EditorialTemplateRef;
7656
+ context: Record<string, unknown>;
7657
+ selectedThemePreset?: EditorialThemePreset;
7658
+ selectedCompliancePresets?: EditorialCompliancePreset[];
7659
+ journeys: EditorialJourney[];
7660
+ overrides?: EditorialTemplateInstanceOverrides;
7661
+ materializedAt?: Date;
7662
+ lastAppliedVersion?: string;
7663
+ compatibilityFormConfigs?: Record<string, FormConfig>;
7664
+ }
7665
+
7666
+ declare const EDITORIAL_THEME_PRESETS: EditorialThemePreset[];
7667
+ declare const EDITORIAL_COMPLIANCE_PRESETS: EditorialCompliancePreset[];
7668
+ declare const EDITORIAL_SOLUTION_PRESETS: EditorialSolutionPreset[];
7669
+ declare const EVENT_REGISTRATION_EDITORIAL_SOLUTION: EditorialSolutionDefinition;
7670
+ declare const EMPLOYEE_ONBOARDING_EDITORIAL_SOLUTION: EditorialSolutionDefinition;
7671
+ declare const PRIVACY_CONSENT_EDITORIAL_SOLUTION: EditorialSolutionDefinition;
7672
+ declare const EDITORIAL_SOLUTION_CATALOG: EditorialSolutionDefinition[];
7673
+ declare function getEditorialSolutionCatalog(): EditorialSolutionDefinition[];
7674
+ declare function getEditorialSolutionById(solutionId: string): EditorialSolutionDefinition | undefined;
7675
+ declare function getEditorialThemePresetById(themeId: string): EditorialThemePreset | undefined;
7676
+ declare function getEditorialCompliancePresetById(presetId: string): EditorialCompliancePreset | undefined;
7677
+ declare function getEditorialSolutionPresetById(presetId: string): EditorialSolutionPreset | undefined;
7678
+
7211
7679
  type WidgetShellActionPlacement = 'header' | 'window';
7212
7680
  interface WidgetShellAction {
7213
7681
  /** Unique action id used for tracking and default emit name. */
@@ -8009,6 +8477,7 @@ declare function isAllowedEditorialHref(href: unknown): href is string;
8009
8477
  declare function normalizeEditorialLink(link: EditorialLinkDefinition): EditorialLinkDefinition | null;
8010
8478
 
8011
8479
  type FooterLinksLayout = 'inline' | 'stacked';
8480
+ type FooterLinksAppearance = 'divider' | 'plain' | 'surface';
8012
8481
  declare class PraxisFooterLinksComponent {
8013
8482
  instanceId?: string;
8014
8483
  analyticsId?: string;
@@ -8017,15 +8486,17 @@ declare class PraxisFooterLinksComponent {
8017
8486
  secondaryText?: string;
8018
8487
  links: EditorialLinkDefinition[];
8019
8488
  layout: FooterLinksLayout;
8489
+ appearance: FooterLinksAppearance;
8020
8490
  get normalizedLinks(): EditorialLinkDefinition[];
8021
8491
  static ɵfac: i0.ɵɵFactoryDeclaration<PraxisFooterLinksComponent, never>;
8022
- static ɵcmp: i0.ɵɵComponentDeclaration<PraxisFooterLinksComponent, "praxis-footer-links", never, { "instanceId": { "alias": "instanceId"; "required": false; }; "analyticsId": { "alias": "analyticsId"; "required": false; }; "ariaLabel": { "alias": "ariaLabel"; "required": false; }; "brandText": { "alias": "brandText"; "required": false; }; "secondaryText": { "alias": "secondaryText"; "required": false; }; "links": { "alias": "links"; "required": false; }; "layout": { "alias": "layout"; "required": false; }; }, {}, never, never, true, never>;
8492
+ static ɵcmp: i0.ɵɵComponentDeclaration<PraxisFooterLinksComponent, "praxis-footer-links", never, { "instanceId": { "alias": "instanceId"; "required": false; }; "analyticsId": { "alias": "analyticsId"; "required": false; }; "ariaLabel": { "alias": "ariaLabel"; "required": false; }; "brandText": { "alias": "brandText"; "required": false; }; "secondaryText": { "alias": "secondaryText"; "required": false; }; "links": { "alias": "links"; "required": false; }; "layout": { "alias": "layout"; "required": false; }; "appearance": { "alias": "appearance"; "required": false; }; }, {}, never, never, true, never>;
8023
8493
  }
8024
8494
 
8025
8495
  declare const PRAXIS_FOOTER_LINKS_METADATA: ComponentDocMeta;
8026
8496
  declare function providePraxisFooterLinksMetadata(): Provider;
8027
8497
 
8028
8498
  type HeroBannerVariant = 'default' | 'event' | 'institutional';
8499
+ type HeroBannerAppearance = 'card' | 'flat';
8029
8500
  type HeroBadgeTone = 'default' | 'highlight' | 'muted' | 'warning';
8030
8501
  interface HeroBadge {
8031
8502
  label: string;
@@ -8047,14 +8518,18 @@ declare class PraxisHeroBannerComponent {
8047
8518
  badges: HeroBadge[];
8048
8519
  metaItems: HeroMetaItem[];
8049
8520
  variant: HeroBannerVariant;
8521
+ appearance: HeroBannerAppearance;
8522
+ brandText?: string;
8523
+ titleAccent?: string;
8050
8524
  static ɵfac: i0.ɵɵFactoryDeclaration<PraxisHeroBannerComponent, never>;
8051
- static ɵcmp: i0.ɵɵComponentDeclaration<PraxisHeroBannerComponent, "praxis-hero-banner", never, { "instanceId": { "alias": "instanceId"; "required": false; }; "analyticsId": { "alias": "analyticsId"; "required": false; }; "ariaLabel": { "alias": "ariaLabel"; "required": false; }; "title": { "alias": "title"; "required": false; }; "subtitle": { "alias": "subtitle"; "required": false; }; "description": { "alias": "description"; "required": false; }; "imageUrl": { "alias": "imageUrl"; "required": false; }; "imageAlt": { "alias": "imageAlt"; "required": false; }; "badges": { "alias": "badges"; "required": false; }; "metaItems": { "alias": "metaItems"; "required": false; }; "variant": { "alias": "variant"; "required": false; }; }, {}, never, never, true, never>;
8525
+ static ɵcmp: i0.ɵɵComponentDeclaration<PraxisHeroBannerComponent, "praxis-hero-banner", never, { "instanceId": { "alias": "instanceId"; "required": false; }; "analyticsId": { "alias": "analyticsId"; "required": false; }; "ariaLabel": { "alias": "ariaLabel"; "required": false; }; "title": { "alias": "title"; "required": false; }; "subtitle": { "alias": "subtitle"; "required": false; }; "description": { "alias": "description"; "required": false; }; "imageUrl": { "alias": "imageUrl"; "required": false; }; "imageAlt": { "alias": "imageAlt"; "required": false; }; "badges": { "alias": "badges"; "required": false; }; "metaItems": { "alias": "metaItems"; "required": false; }; "variant": { "alias": "variant"; "required": false; }; "appearance": { "alias": "appearance"; "required": false; }; "brandText": { "alias": "brandText"; "required": false; }; "titleAccent": { "alias": "titleAccent"; "required": false; }; }, {}, never, never, true, never>;
8052
8526
  }
8053
8527
 
8054
8528
  declare const PRAXIS_HERO_BANNER_METADATA: ComponentDocMeta;
8055
8529
  declare function providePraxisHeroBannerMetadata(): Provider;
8056
8530
 
8057
8531
  type LegalNoticeSeverity = 'info' | 'warning' | 'muted';
8532
+ type LegalNoticeAppearance = 'card' | 'plain';
8058
8533
  declare class PraxisLegalNoticeComponent {
8059
8534
  instanceId?: string;
8060
8535
  analyticsId?: string;
@@ -8064,18 +8539,20 @@ declare class PraxisLegalNoticeComponent {
8064
8539
  contentFormat: EditorialContentFormat;
8065
8540
  content: string;
8066
8541
  severity: LegalNoticeSeverity;
8542
+ appearance: LegalNoticeAppearance;
8067
8543
  links: EditorialLinkDefinition[];
8068
8544
  get normalizedLinks(): EditorialLinkDefinition[];
8069
8545
  get resolvedIcon(): string;
8070
8546
  get resolvedVariant(): 'default' | 'emphasis' | 'subtle';
8071
8547
  static ɵfac: i0.ɵɵFactoryDeclaration<PraxisLegalNoticeComponent, never>;
8072
- static ɵcmp: i0.ɵɵComponentDeclaration<PraxisLegalNoticeComponent, "praxis-legal-notice", never, { "instanceId": { "alias": "instanceId"; "required": false; }; "analyticsId": { "alias": "analyticsId"; "required": false; }; "ariaLabel": { "alias": "ariaLabel"; "required": false; }; "title": { "alias": "title"; "required": false; }; "subtitle": { "alias": "subtitle"; "required": false; }; "contentFormat": { "alias": "contentFormat"; "required": false; }; "content": { "alias": "content"; "required": false; }; "severity": { "alias": "severity"; "required": false; }; "links": { "alias": "links"; "required": false; }; }, {}, never, never, true, never>;
8548
+ static ɵcmp: i0.ɵɵComponentDeclaration<PraxisLegalNoticeComponent, "praxis-legal-notice", never, { "instanceId": { "alias": "instanceId"; "required": false; }; "analyticsId": { "alias": "analyticsId"; "required": false; }; "ariaLabel": { "alias": "ariaLabel"; "required": false; }; "title": { "alias": "title"; "required": false; }; "subtitle": { "alias": "subtitle"; "required": false; }; "contentFormat": { "alias": "contentFormat"; "required": false; }; "content": { "alias": "content"; "required": false; }; "severity": { "alias": "severity"; "required": false; }; "appearance": { "alias": "appearance"; "required": false; }; "links": { "alias": "links"; "required": false; }; }, {}, never, never, true, never>;
8073
8549
  }
8074
8550
 
8075
8551
  declare const PRAXIS_LEGAL_NOTICE_METADATA: ComponentDocMeta;
8076
8552
  declare function providePraxisLegalNoticeMetadata(): Provider;
8077
8553
 
8078
8554
  type RichTextVariant = 'default' | 'emphasis' | 'subtle';
8555
+ type RichTextAppearance = 'card' | 'plain';
8079
8556
  declare class PraxisRichTextBlockComponent {
8080
8557
  private readonly sanitizer;
8081
8558
  instanceId?: string;
@@ -8085,11 +8562,12 @@ declare class PraxisRichTextBlockComponent {
8085
8562
  subtitle?: string;
8086
8563
  icon?: string;
8087
8564
  variant: RichTextVariant;
8565
+ appearance: RichTextAppearance;
8088
8566
  contentFormat: EditorialContentFormat;
8089
8567
  content: string;
8090
8568
  get renderedContent(): string;
8091
8569
  static ɵfac: i0.ɵɵFactoryDeclaration<PraxisRichTextBlockComponent, never>;
8092
- static ɵcmp: i0.ɵɵComponentDeclaration<PraxisRichTextBlockComponent, "praxis-rich-text-block", never, { "instanceId": { "alias": "instanceId"; "required": false; }; "analyticsId": { "alias": "analyticsId"; "required": false; }; "ariaLabel": { "alias": "ariaLabel"; "required": false; }; "title": { "alias": "title"; "required": false; }; "subtitle": { "alias": "subtitle"; "required": false; }; "icon": { "alias": "icon"; "required": false; }; "variant": { "alias": "variant"; "required": false; }; "contentFormat": { "alias": "contentFormat"; "required": false; }; "content": { "alias": "content"; "required": false; }; }, {}, never, never, true, never>;
8570
+ static ɵcmp: i0.ɵɵComponentDeclaration<PraxisRichTextBlockComponent, "praxis-rich-text-block", never, { "instanceId": { "alias": "instanceId"; "required": false; }; "analyticsId": { "alias": "analyticsId"; "required": false; }; "ariaLabel": { "alias": "ariaLabel"; "required": false; }; "title": { "alias": "title"; "required": false; }; "subtitle": { "alias": "subtitle"; "required": false; }; "icon": { "alias": "icon"; "required": false; }; "variant": { "alias": "variant"; "required": false; }; "appearance": { "alias": "appearance"; "required": false; }; "contentFormat": { "alias": "contentFormat"; "required": false; }; "content": { "alias": "content"; "required": false; }; }, {}, never, never, true, never>;
8093
8571
  }
8094
8572
 
8095
8573
  declare const PRAXIS_RICH_TEXT_BLOCK_METADATA: ComponentDocMeta;
@@ -8102,12 +8580,14 @@ interface UserContextSummaryField {
8102
8580
  fallback?: string;
8103
8581
  }
8104
8582
  type UserContextSource = 'context' | 'static';
8583
+ type UserContextSummaryAppearance = 'card' | 'plain';
8105
8584
  declare class PraxisUserContextSummaryComponent {
8106
8585
  instanceId?: string;
8107
8586
  analyticsId?: string;
8108
8587
  ariaLabel?: string;
8109
8588
  title?: string;
8110
8589
  subtitle?: string;
8590
+ appearance: UserContextSummaryAppearance;
8111
8591
  source: UserContextSource;
8112
8592
  context: Record<string, unknown> | null;
8113
8593
  fields: UserContextSummaryField[];
@@ -8123,7 +8603,7 @@ declare class PraxisUserContextSummaryComponent {
8123
8603
  emitAction(): void;
8124
8604
  private resolveFieldValue;
8125
8605
  static ɵfac: i0.ɵɵFactoryDeclaration<PraxisUserContextSummaryComponent, never>;
8126
- static ɵcmp: i0.ɵɵComponentDeclaration<PraxisUserContextSummaryComponent, "praxis-user-context-summary", never, { "instanceId": { "alias": "instanceId"; "required": false; }; "analyticsId": { "alias": "analyticsId"; "required": false; }; "ariaLabel": { "alias": "ariaLabel"; "required": false; }; "title": { "alias": "title"; "required": false; }; "subtitle": { "alias": "subtitle"; "required": false; }; "source": { "alias": "source"; "required": false; }; "context": { "alias": "context"; "required": false; }; "fields": { "alias": "fields"; "required": false; }; "actionId": { "alias": "actionId"; "required": false; }; "actionLabel": { "alias": "actionLabel"; "required": false; }; }, { "actionTriggered": "actionTriggered"; }, never, never, true, never>;
8606
+ static ɵcmp: i0.ɵɵComponentDeclaration<PraxisUserContextSummaryComponent, "praxis-user-context-summary", never, { "instanceId": { "alias": "instanceId"; "required": false; }; "analyticsId": { "alias": "analyticsId"; "required": false; }; "ariaLabel": { "alias": "ariaLabel"; "required": false; }; "title": { "alias": "title"; "required": false; }; "subtitle": { "alias": "subtitle"; "required": false; }; "appearance": { "alias": "appearance"; "required": false; }; "source": { "alias": "source"; "required": false; }; "context": { "alias": "context"; "required": false; }; "fields": { "alias": "fields"; "required": false; }; "actionId": { "alias": "actionId"; "required": false; }; "actionLabel": { "alias": "actionLabel"; "required": false; }; }, { "actionTriggered": "actionTriggered"; }, never, never, true, never>;
8127
8607
  }
8128
8608
 
8129
8609
  declare const PRAXIS_USER_CONTEXT_SUMMARY_METADATA: ComponentDocMeta;
@@ -8790,5 +9270,5 @@ declare function provideFormHookPresets(presets: Array<FormHookPreset>): Provide
8790
9270
  /** Register a whitelist of allowed hook ids/patterns. */
8791
9271
  declare function provideHookWhitelist(allowed: Array<string | RegExp>): Provider[];
8792
9272
 
8793
- export { API_CONFIG_STORAGE_OPTIONS, API_URL, ASYNC_CONFIG_STORAGE, AllowedFileTypes, ApiConfigStorage, ApiEndpoint, BUILTIN_SHELL_PRESETS, CONFIG_STORAGE, CONNECTION_STORAGE, ComponentKeyService, ComponentMetadataRegistry, ConnectionManagerService, ConsoleLoggerSink, DEFAULT_FIELD_SELECTOR_CONTROL_TYPE_MAP, DEFAULT_TABLE_CONFIG, DYNAMIC_PAGE_AI_CAPABILITIES, DYNAMIC_PAGE_COMPONENT_CONTEXT_PACK, DYNAMIC_PAGE_CONFIG_EDITOR, DYNAMIC_PAGE_SHELL_EDITOR, DefaultLoadingRenderer, DeferredAsyncConfigStorage, DynamicFormService, DynamicGridPageComponent, DynamicWidgetLoaderDirective, DynamicWidgetPageComponent, EDITORIAL_ALLOWED_CONTENT_FORMATS, EDITORIAL_EXTERNAL_LINK_REL, EDITORIAL_HTML_ENABLED, EDITORIAL_MARKDOWN_IMAGES_ENABLED, EDITORIAL_WIDGET_CONVENTION_INPUTS, EDITORIAL_WIDGET_TAG, EmptyStateCardComponent, ErrorMessageService, FIELD_METADATA_CAPABILITIES, FIELD_SELECTOR_REGISTRY_BASE, FIELD_SELECTOR_REGISTRY_DISABLE_DEFAULTS, FIELD_SELECTOR_REGISTRY_OVERRIDES, FORM_HOOKS, FORM_HOOKS_PRESETS, FORM_HOOKS_WHITELIST, FORM_HOOK_RESOLVERS, FieldControlType, FieldDataType, FieldSelectorRegistry, FormHooksRegistry, GLOBAL_ACTION_CATALOG$1 as GLOBAL_ACTION_CATALOG, GLOBAL_ACTION_HANDLERS, GLOBAL_ACTION_CATALOG as GLOBAL_ACTION_SPEC_CATALOG, GLOBAL_ACTION_UI_SCHEMAS, GLOBAL_ANALYTICS_SERVICE, GLOBAL_API_CLIENT, GLOBAL_CONFIG, GLOBAL_DIALOG_SERVICE, GLOBAL_ROUTE_GUARD_RESOLVER, GLOBAL_TOAST_SERVICE, GenericCrudService, GlobalActionService, GlobalConfigService, INLINE_FILTER_ALIAS_TOKENS, INLINE_FILTER_ALIAS_TOKEN_TO_BASE_CONTROL_TYPE, INLINE_FILTER_ALIAS_TOKEN_TO_CONTROL_TYPE, INLINE_FILTER_CONTROL_TYPES, INLINE_FILTER_CONTROL_TYPE_SET, INLINE_FILTER_CONTROL_TYPE_VALUES, IconPickerService, IconPosition, IconSize, LOGGER_LEVEL_BY_ENV, LOGGER_LEVEL_PRIORITY, LoadingOrchestrator, LocalConnectionStorage, LocalStorageAsyncAdapter, LocalStorageCacheAdapter, LocalStorageConfigService, LoggerService, LoggerThrottleTracker, LoggerWarnOnceTracker, MemoryCacheAdapter, NumericFormat, OVERLAY_DECIDER_DEBUG, OVERLAY_DECISION_MATRIX, ObservabilityDashboardService, OverlayDeciderService, PRAXIS_CORPORATE_SENSITIVE_KEYS, PRAXIS_DEFAULT_OBSERVABILITY_ALERT_RULES, PRAXIS_DYNAMIC_PAGE_COMPONENT_METADATA, PRAXIS_FOOTER_LINKS_METADATA, PRAXIS_GLOBAL_ACTION_CATALOG, PRAXIS_GLOBAL_CONFIG_BOOTSTRAP_OPTIONS, PRAXIS_GLOBAL_CONFIG_BOOTSTRAP_READY, PRAXIS_GLOBAL_CONFIG_TENANT_RESOLVER, PRAXIS_HERO_BANNER_METADATA, PRAXIS_LEGAL_NOTICE_METADATA, PRAXIS_LOADING_CTX, PRAXIS_LOADING_RENDERER, PRAXIS_LOGGER_CONFIG, PRAXIS_LOGGER_SINKS, PRAXIS_OBSERVABILITY_DASHBOARD_OPTIONS, PRAXIS_RICH_TEXT_BLOCK_METADATA, PRAXIS_TELEMETRY_TRANSPORT, PRAXIS_USER_CONTEXT_SUMMARY_METADATA, PraxisCore, PraxisFooterLinksComponent, PraxisGlobalErrorHandler, PraxisHeroBannerComponent, PraxisIconDirective, PraxisIconPickerComponent, PraxisLegalNoticeComponent, PraxisLoadingInterceptor, PraxisRichTextBlockComponent, PraxisUserContextSummaryComponent, RULE_PROPERTY_SCHEMA, RemoteConfigStorage, ResourceQuickConnectComponent, SCHEMA_VIEWER_CONTEXT, SETTINGS_PANEL_BRIDGE, SETTINGS_PANEL_DATA, STEPPER_CONFIG_EDITOR, SchemaMetadataClient, SchemaNormalizerService, SchemaViewerComponent, TABLE_CONFIG_EDITOR, TableConfigService, TelemetryLoggerSink, TelemetryService, ValidationPattern, WidgetShellComponent, applyLocalCustomizations$1 as applyLocalCustomizations, applyLocalCustomizations as applyLocalFormCustomizations, buildAngularValidators, buildApiUrl, buildBaseColumnFromDef, buildBaseFormField, buildHeaders, buildPageKey, buildSchemaId, buildValidatorsFromValidatorOptions, cancelIfCpfInvalidHook, clampRange, cloneTableConfig, cnpjAlphaValidator, collapseWhitespace, composeHeadersWithVersion, conditionalAsyncValidator, convertFormLayoutToConfig, createCorporateLoggerConfig, createCorporateObservabilityOptions, createCpfCnpjValidator, createDefaultFormConfig, createDefaultTableConfig, createEmptyFormConfig, createPersistedPage, customAsyncValidatorFn, customValidatorFn, debounceAsyncValidator, deepMerge, ensureIds, ensureNoConflictsHookFactory, ensurePageIds, extractNormalizedError, fetchWithETag, fileTypeValidator, fillUndefined, generateId, getDefaultFormHints, getEssentialConfig, getFieldMetadataCapabilities, getGlobalActionCatalog, getGlobalActionUiSchema, getReferencedFieldMetadata, getTextTransformer, isAllowedEditorialContentFormat, isAllowedEditorialHref, isCssTextTransform, isEditorialComponentMeta, isInlineFilterControlType, isRangeValidForFilter, isTableConfigV2, isValidFormConfig, isValidTableConfig, legacyCnpjValidator, legacyCpfValidator, logOnErrorHook, mapFieldDefinitionToMetadata, mapFieldDefinitionsToMetadata, matchFieldValidator, maxFileSizeValidator, mergeFieldMetadata, mergeTableConfigs, migrateFormLayoutRule, minWordsValidator, normalizeControlTypeKey, normalizeControlTypeToken, normalizeEditorialLink, normalizeEnd, normalizeFieldConstraints, normalizeFormConfig, normalizeFormMetadata, normalizePath, normalizeStart, normalizeUnknownError, notifySuccessHook, parseJsonResponseOrEmpty, praxisLoadingInterceptorFn, prefillFromContextHook, provideDefaultFormHooks, provideFieldSelectorRegistryBase, provideFieldSelectorRegistryOverride, provideFieldSelectorRegistryRuntime, provideFormHookPresets, provideFormHooks, provideGlobalActionCatalog, provideGlobalActionHandler, provideGlobalConfig, provideGlobalConfigReady, provideGlobalConfigSeed, provideGlobalConfigTenant, provideHookResolvers, provideHookWhitelist, provideOverlayDecisionMatrix, providePraxisAnalyticsGlobalActions, providePraxisDynamicPageMetadata, providePraxisFooterLinksMetadata, providePraxisGlobalActionCatalog, providePraxisGlobalActions, providePraxisGlobalConfigBootstrap, providePraxisHeroBannerMetadata, providePraxisHttpLoading, providePraxisLegalNoticeMetadata, providePraxisLoadingDefaults, providePraxisLogging, providePraxisRichTextBlockMetadata, providePraxisToastGlobalActions, providePraxisUserContextSummaryMetadata, provideRemoteGlobalConfig, reconcileFilterConfig, reconcileFormConfig, reconcileTableConfig, removeDiacritics, reportTelemetryHookFactory, requiredCheckedValidator, resolveBuiltinPresets, resolveControlTypeAlias, resolveHidden, resolveInlineFilterAliasToBaseControlType, resolveInlineFilterControlTypeAlias, resolveLoggerConfig, resolveObservabilityOptions, resolveOffset, resolveOrder, resolveSpan, slugify, stripMasksHook, syncWithServerMetadata, toCamel, toCapitalize, toKebab, toPascal, toSentenceCase, toSnake, toTitleCase, trim, uniqueAsyncValidator, urlValidator, withMessage, withPraxisHttpLoading };
8794
- export type { AccessibilityConfig, ActionDefinition, ActionMessagesConfig, AiCapability, AiCapabilityCatalog, AiCapabilityCategory, AiCapabilityCategoryMap, AiConcept, AiConceptPack, AiValueKind, AnimationConfig, AnnouncementConfig, ApiConfigStorageOptions, ApiUrlConfig, ApiUrlEntry, AsyncConfigStorage, BackConfig, BaseMaterialInputMetadata, BatchDeleteOptions, BatchDeleteProgress, BatchDeleteResult, BorderConfig, Breakpoint, BuiltValidators, BulkAction, BulkActionsConfig, CacheAdapter, CacheConfig, CacheEntry, Capability$1 as Capability, CapabilityCatalog$1 as CapabilityCatalog, CapabilityCategory$1 as CapabilityCategory, ColorConfig, ColumnAlign, ColumnDefinition, ColumnHidden, ColumnOffset, ColumnOrder, ColumnSpan, ComponentActionParam, ComponentContextAction, ComponentContextOption, ComponentContextOptionMode, ComponentContextOptionsByPathEntry, ComponentContextPack, ComponentDocMeta, ComponentKeyParams, ComponentMergePatch, ComponentMetadata, ConfigMetadata, ConfigStorage, ConfirmationConfig, ConnectionConfigV1, ConnectionStorage, ContextAction, ContextActionsConfig, BackConfig as CoreBackConfig, CoreFieldMetadata, CrudOperationOptions, CsvExportConfig, CurrencyLocaleConfig, CursorPage, CursorRequest, CustomizationLog, DataConfig, DataTransformation, DataValidationConfig, DateRangePreset, DateRangeValue, DateTimeLocaleConfig, DebounceConfig, DeviceKind, DraggingConfig, Capability as DynamicPageCapability, CapabilityCatalog as DynamicPageCapabilityCatalog, CapabilityCategory as DynamicPageCapabilityCategory, ValueKind as DynamicPageValueKind, EditorialComponentDocMeta, EditorialContentFormat, EditorialLinkDefinition, EditorialWidgetAppearance, EditorialWidgetDefinition, EditorialWidgetInputs, ElevationConfig, EmptyAction, EmptyStateConfig, EndpointConfig, EnhancedValidationConfig, ExcelExportConfig, ExcelStylingConfig, ExportConfig, ExportFormat, ExportMessagesConfig, ExportTemplate, FetchWithEtagParams, FetchWithEtagResult, FieldConflict, FieldDefinition, FieldMetadata, FieldModification, FieldOption, FieldSelectorRegistryMap, FieldsetLayout, FilterOptions, FilteringConfig, FooterLinksLayout, FormActionButton, FormActionConfirmationEvent, FormActionsLayout, FormApiLayout, FormBehaviorLayout, FormColumn, FormConfig, FormConfigMetadata, FormConfigState, FormCustomActionEvent, FormEntityEvent, FormHook, FormHookContext, FormHookDeclaration, FormHookDeclarationLite, FormHookOutcome, FormHookPreset, FormHookPresetMatch, FormHookStage, FormHookStatus, FormHooksLayout, FormInitializationError, FormLayout, FormLayoutRule, FormMessagesLayout, FormMetadataLayout, FormModeHints, FormOpenMode, FormReadyEvent, FormRow, FormRowLayout, FormRuleTargetType, FormSection, FormSubmitEvent, FormValidationEvent, FormValueChangeEvent, FormattingLocaleConfig, GeneralExportConfig, GetSchemaParams, GlobalActionCatalogEntry, GlobalActionContext, GlobalActionField, GlobalActionFieldOption, GlobalActionFieldType, GlobalActionHandler, GlobalActionHandlerEntry, GlobalActionId, GlobalActionParam, GlobalActionResult, GlobalActionSpec, GlobalActionUiSchema, GlobalAiConfig, GlobalAiEmbeddingConfig, GlobalAiProvider, GlobalAnalyticsService, GlobalApiClient, GlobalCacheConfig, GlobalConfig, GlobalCrudActionDefaults, GlobalCrudConfig, GlobalCrudDefaults, GlobalDialogAction, GlobalDialogAnimation, GlobalDialogAriaRole, GlobalDialogConfig, GlobalDialogConfigEntry, GlobalDialogPosition, GlobalDialogService, GlobalDialogStyles, GlobalDynamicFieldsAsyncSelectConfig, GlobalDynamicFieldsCascadeConfig, GlobalDynamicFieldsConfig, GlobalRouteGuardResolver, GlobalTableConfig, GlobalToastService, GridItemLayout, GridPageDefinition, GridPageDefinitionWithIds, GridWidgetInstance, HeroBadge, HeroBadgeTone, HeroBannerVariant, HeroMetaItem, HookResolver, InlineFilterControlType, InlineRangeDistributionBin, InlineRangeDistributionConfig, InteractionConfig, JsonExportConfig, KeyboardAccessibilityConfig, LazyLoadingConfig, LegacyTableConfig, LegalNoticeSeverity, LoadingConfig, LoadingContext, LoadingPhase$1 as LoadingPhase, LoadingScope, LoadingState, LoadingPhase as LoadingStatePhase, LocalizationConfig, LocateRequest, LoggerConfig, LoggerContext, LoggerEvent, LoggerLevel, LoggerLogOptions, LoggerNormalizedError, LoggerPIIConfig, LoggerSink, LoggerTelemetryPayload, LoggerThrottleConfig, MarginConfig, MaterialAutocompleteMetadata, MaterialButtonMetadata, MaterialButtonToggleMetadata, MaterialCheckboxMetadata, MaterialChipsMetadata, MaterialColorInputMetadata, MaterialColorPickerMetadata, MaterialCpfCnpjMetadata, MaterialCurrencyMetadata, MaterialDateInputMetadata, MaterialDateRangeMetadata, MaterialDatepickerMetadata, MaterialDatetimeLocalInputMetadata, MaterialDesignConfig, MaterialEmailInputMetadata, MaterialEmailMetadata, MaterialInputMetadata, MaterialMonthInputMetadata, MaterialMultiSelectTreeMetadata, MaterialNumericMetadata, MaterialPasswordMetadata, MaterialPhoneMetadata, MaterialPriceRangeMetadata, MaterialRadioMetadata, MaterialRangeSliderMetadata, MaterialRatingMetadata, MaterialSearchInputMetadata, MaterialSelectMetadata, MaterialSelectionListMetadata, MaterialSliderMetadata, MaterialTextareaMetadata, MaterialTimeInputMetadata, MaterialTimeRangeMetadata, MaterialTimeTrackShift, MaterialTimepickerMetadata, MaterialToggleMetadata, MaterialTransferListMetadata, MaterialTreeNode, MaterialTreeSelectMetadata, MaterialUrlInputMetadata, MaterialWeekInputMetadata, MaterialYearInputMetadata, MemoryConfig, MessageTemplate, MessagesConfig, NestedFieldsetLayout, NormalizedError, NumberLocaleConfig, ObservabilityAlert, ObservabilityAlertGroupBy, ObservabilityAlertRule, ObservabilityAlertSeverity, ObservabilityCountBucket, ObservabilityDashboardOptions, ObservabilityIngestInput, ObservabilityMetricsSnapshot, OptionDTO, OverlayDecider, OverlayDecision, OverlayDecisionContext, OverlayDecisionMatrix, OverlayPattern, OverlayRange, OverlayRule, OverlayRuleMatch, OverlayThresholds, Page, PageIdentity, PageableRequest, PaginationConfig, PartialFieldMetadata, PdfExportConfig, PerformanceConfig, PersistedPageConfig, PersistedWidgetInstance, PlainObject, PluginConfig, PollingConfig, PraxisAnalyticsOptions, PraxisAuthContext, PraxisGlobalActionsOptions, PraxisGlobalConfigBootstrapOptions, PraxisHttpLoadingOptions, PraxisLoadingRenderer, PraxisLoggingEnvironment, PraxisLoggingOptions, PraxisToastOptions, PriceRangeValue, RangeSliderInlineTexts, RangeSliderQuickPreset, RangeSliderQuickPresetLabels, RangeSliderValue, RenderingConfig, ResizingConfig, ResolvePresetOptions, ResponsiveConfig, RichTextVariant, RowAction, RowActionsConfig, RulePropertyDefinition, RulePropertySchema, RulePropertyType, RunHooksResult, SchemaIdParams, SchemaMetaInfo, SchemaViewerContext, SelectionConfig, SerializableFieldMetadata, SettingsPanelBridge, SettingsPanelOpenContent, SettingsPanelOpenOptions, SettingsPanelRef, SettingsValueProvider, SortingConfig, SpacingConfig, StateMessagesConfig, SyncConfig, SyncResult, TableActionsConfig, TableAppearanceConfig, TableBehaviorConfig, TableConfig, TableConfigV2 as TableConfigModern, TableConfigState, TableConfigV2, TableExpansionConfig, TableLocalDataModeConfig, TelemetryEvent, TelemetryLoggerSinkOptions, TelemetryTransport, TextTransformApply, TextTransformName, ThemeConfig, ToolbarAction, ToolbarConfig, ToolbarFilterConfig, ToolbarLayoutConfig, ToolbarSettingsConfig, TypographyConfig, UserContextSource, UserContextSummaryField, ValidationContext, ValidationError, ValidationMessagesConfig, ValidationResult, ValidationRule, ValidatorFunction, ValidatorOptions, ValueKind$1 as ValueKind, VirtualizationConfig, WidgetConnection, WidgetDefinition, WidgetInstance, WidgetPageDefinition, WidgetPageLayout, WidgetPageOrientation, WidgetShellAction, WidgetShellActionEvent, WidgetShellActionPlacement, WidgetShellConfig, WidgetShellWindowActions };
9273
+ export { API_CONFIG_STORAGE_OPTIONS, API_URL, ASYNC_CONFIG_STORAGE, AllowedFileTypes, ApiConfigStorage, ApiEndpoint, BUILTIN_SHELL_PRESETS, CONFIG_STORAGE, CONNECTION_STORAGE, ComponentKeyService, ComponentMetadataRegistry, ConnectionManagerService, ConsoleLoggerSink, DEFAULT_FIELD_SELECTOR_CONTROL_TYPE_MAP, DEFAULT_TABLE_CONFIG, DYNAMIC_PAGE_AI_CAPABILITIES, DYNAMIC_PAGE_COMPONENT_CONTEXT_PACK, DYNAMIC_PAGE_CONFIG_EDITOR, DYNAMIC_PAGE_SHELL_EDITOR, DefaultLoadingRenderer, DeferredAsyncConfigStorage, DynamicFormService, DynamicGridPageComponent, DynamicWidgetLoaderDirective, DynamicWidgetPageComponent, EDITORIAL_ALLOWED_CONTENT_FORMATS, EDITORIAL_COMPLIANCE_PRESETS, EDITORIAL_EXTERNAL_LINK_REL, EDITORIAL_FORM_TEMPLATE_CATALOG, EDITORIAL_HTML_ENABLED, EDITORIAL_MARKDOWN_IMAGES_ENABLED, EDITORIAL_SOLUTION_CATALOG, EDITORIAL_SOLUTION_PRESETS, EDITORIAL_THEME_PRESETS, EDITORIAL_WIDGET_CONVENTION_INPUTS, EDITORIAL_WIDGET_TAG, EMPLOYEE_ONBOARDING_EDITORIAL_SOLUTION, EMPLOYEE_ONBOARDING_EDITORIAL_TEMPLATE, EVENT_REGISTRATION_EDITORIAL_SOLUTION, EVENT_REGISTRATION_EDITORIAL_TEMPLATE, EmptyStateCardComponent, ErrorMessageService, FIELD_METADATA_CAPABILITIES, FIELD_SELECTOR_REGISTRY_BASE, FIELD_SELECTOR_REGISTRY_DISABLE_DEFAULTS, FIELD_SELECTOR_REGISTRY_OVERRIDES, FORM_HOOKS, FORM_HOOKS_PRESETS, FORM_HOOKS_WHITELIST, FORM_HOOK_RESOLVERS, FieldControlType, FieldDataType, FieldSelectorRegistry, FormHooksRegistry, GLOBAL_ACTION_CATALOG$1 as GLOBAL_ACTION_CATALOG, GLOBAL_ACTION_HANDLERS, GLOBAL_ACTION_CATALOG as GLOBAL_ACTION_SPEC_CATALOG, GLOBAL_ACTION_UI_SCHEMAS, GLOBAL_ANALYTICS_SERVICE, GLOBAL_API_CLIENT, GLOBAL_CONFIG, GLOBAL_DIALOG_SERVICE, GLOBAL_ROUTE_GUARD_RESOLVER, GLOBAL_TOAST_SERVICE, GenericCrudService, GlobalActionService, GlobalConfigService, INLINE_FILTER_ALIAS_TOKENS, INLINE_FILTER_ALIAS_TOKEN_TO_BASE_CONTROL_TYPE, INLINE_FILTER_ALIAS_TOKEN_TO_CONTROL_TYPE, INLINE_FILTER_CONTROL_TYPES, INLINE_FILTER_CONTROL_TYPE_SET, INLINE_FILTER_CONTROL_TYPE_VALUES, IconPickerService, IconPosition, IconSize, LOGGER_LEVEL_BY_ENV, LOGGER_LEVEL_PRIORITY, LoadingOrchestrator, LocalConnectionStorage, LocalStorageAsyncAdapter, LocalStorageCacheAdapter, LocalStorageConfigService, LoggerService, LoggerThrottleTracker, LoggerWarnOnceTracker, MemoryCacheAdapter, NumericFormat, OVERLAY_DECIDER_DEBUG, OVERLAY_DECISION_MATRIX, ObservabilityDashboardService, OverlayDeciderService, PRAXIS_CORPORATE_SENSITIVE_KEYS, PRAXIS_DEFAULT_OBSERVABILITY_ALERT_RULES, PRAXIS_DYNAMIC_PAGE_COMPONENT_METADATA, PRAXIS_FOOTER_LINKS_METADATA, PRAXIS_GLOBAL_ACTION_CATALOG, PRAXIS_GLOBAL_CONFIG_BOOTSTRAP_OPTIONS, PRAXIS_GLOBAL_CONFIG_BOOTSTRAP_READY, PRAXIS_GLOBAL_CONFIG_TENANT_RESOLVER, PRAXIS_HERO_BANNER_METADATA, PRAXIS_I18N_CONFIG, PRAXIS_I18N_TRANSLATOR, PRAXIS_LEGAL_NOTICE_METADATA, PRAXIS_LOADING_CTX, PRAXIS_LOADING_RENDERER, PRAXIS_LOGGER_CONFIG, PRAXIS_LOGGER_SINKS, PRAXIS_OBSERVABILITY_DASHBOARD_OPTIONS, PRAXIS_RICH_TEXT_BLOCK_METADATA, PRAXIS_TELEMETRY_TRANSPORT, PRAXIS_USER_CONTEXT_SUMMARY_METADATA, PRIVACY_CONSENT_EDITORIAL_SOLUTION, PRIVACY_CONSENT_EDITORIAL_TEMPLATE, PraxisCore, PraxisFooterLinksComponent, PraxisGlobalErrorHandler, PraxisHeroBannerComponent, PraxisI18nService, PraxisIconDirective, PraxisIconPickerComponent, PraxisLegalNoticeComponent, PraxisLoadingInterceptor, PraxisRichTextBlockComponent, PraxisUserContextSummaryComponent, RULE_PROPERTY_SCHEMA, RemoteConfigStorage, ResourceQuickConnectComponent, SCHEMA_VIEWER_CONTEXT, SETTINGS_PANEL_BRIDGE, SETTINGS_PANEL_DATA, STEPPER_CONFIG_EDITOR, SchemaMetadataClient, SchemaNormalizerService, SchemaViewerComponent, TABLE_CONFIG_EDITOR, TableConfigService, TelemetryLoggerSink, TelemetryService, ValidationPattern, WidgetShellComponent, applyLocalCustomizations$1 as applyLocalCustomizations, applyLocalCustomizations as applyLocalFormCustomizations, buildAngularValidators, buildApiUrl, buildBaseColumnFromDef, buildBaseFormField, buildFormConfigFromEditorialTemplate, buildHeaders, buildPageKey, buildSchemaId, buildValidatorsFromValidatorOptions, cancelIfCpfInvalidHook, clampRange, cloneTableConfig, cnpjAlphaValidator, collapseWhitespace, composeHeadersWithVersion, conditionalAsyncValidator, convertFormLayoutToConfig, createCorporateLoggerConfig, createCorporateObservabilityOptions, createCpfCnpjValidator, createDefaultFormConfig, createDefaultTableConfig, createEmptyFormConfig, createPersistedPage, customAsyncValidatorFn, customValidatorFn, debounceAsyncValidator, deepMerge, ensureIds, ensureNoConflictsHookFactory, ensurePageIds, extractNormalizedError, fetchWithETag, fileTypeValidator, fillUndefined, generateId, getDefaultFormHints, getEditorialCompliancePresetById, getEditorialFormTemplateById, getEditorialFormTemplateCatalog, getEditorialSolutionById, getEditorialSolutionCatalog, getEditorialSolutionPresetById, getEditorialThemePresetById, getEssentialConfig, getFieldMetadataCapabilities, getGlobalActionCatalog, getGlobalActionUiSchema, getReferencedFieldMetadata, getTextTransformer, interpolatePraxisTranslation, isAllowedEditorialContentFormat, isAllowedEditorialHref, isCssTextTransform, isEditorialComponentMeta, isInlineFilterControlType, isRangeValidForFilter, isTableConfigV2, isValidFormConfig, isValidTableConfig, legacyCnpjValidator, legacyCpfValidator, logOnErrorHook, mapFieldDefinitionToMetadata, mapFieldDefinitionsToMetadata, matchFieldValidator, maxFileSizeValidator, mergeFieldMetadata, mergePraxisI18nConfigs, mergeTableConfigs, migrateFormLayoutRule, minWordsValidator, normalizeControlTypeKey, normalizeControlTypeToken, normalizeEditorialLink, normalizeEnd, normalizeFieldConstraints, normalizeFormConfig, normalizeFormMetadata, normalizePath, normalizeStart, normalizeUnknownError, notifySuccessHook, parseJsonResponseOrEmpty, praxisLoadingInterceptorFn, prefillFromContextHook, provideDefaultFormHooks, provideFieldSelectorRegistryBase, provideFieldSelectorRegistryOverride, provideFieldSelectorRegistryRuntime, provideFormHookPresets, provideFormHooks, provideGlobalActionCatalog, provideGlobalActionHandler, provideGlobalConfig, provideGlobalConfigReady, provideGlobalConfigSeed, provideGlobalConfigTenant, provideHookResolvers, provideHookWhitelist, provideOverlayDecisionMatrix, providePraxisAnalyticsGlobalActions, providePraxisDynamicPageMetadata, providePraxisFooterLinksMetadata, providePraxisGlobalActionCatalog, providePraxisGlobalActions, providePraxisGlobalConfigBootstrap, providePraxisHeroBannerMetadata, providePraxisHttpLoading, providePraxisI18n, providePraxisI18nConfig, providePraxisI18nTranslator, providePraxisLegalNoticeMetadata, providePraxisLoadingDefaults, providePraxisLogging, providePraxisRichTextBlockMetadata, providePraxisToastGlobalActions, providePraxisUserContextSummaryMetadata, provideRemoteGlobalConfig, reconcileFilterConfig, reconcileFormConfig, reconcileTableConfig, removeDiacritics, reportTelemetryHookFactory, requiredCheckedValidator, resolveBuiltinPresets, resolveControlTypeAlias, resolveHidden, resolveInlineFilterAliasToBaseControlType, resolveInlineFilterControlTypeAlias, resolveLoggerConfig, resolveObservabilityOptions, resolveOffset, resolveOrder, resolveSpan, slugify, stripMasksHook, syncWithServerMetadata, toCamel, toCapitalize, toKebab, toPascal, toSentenceCase, toSnake, toTitleCase, trim, uniqueAsyncValidator, urlValidator, withMessage, withPraxisHttpLoading };
9274
+ export type { AccessibilityConfig, ActionDefinition, ActionMessagesConfig, AiCapability, AiCapabilityCatalog, AiCapabilityCategory, AiCapabilityCategoryMap, AiConcept, AiConceptPack, AiValueKind, AnimationConfig, AnnouncementConfig, ApiConfigStorageOptions, ApiUrlConfig, ApiUrlEntry, AsyncConfigStorage, BackConfig, BaseMaterialInputMetadata, BatchDeleteOptions, BatchDeleteProgress, BatchDeleteResult, BorderConfig, Breakpoint, BuiltValidators, BulkAction, BulkActionsConfig, CacheAdapter, CacheConfig, CacheEntry, Capability$1 as Capability, CapabilityCatalog$1 as CapabilityCatalog, CapabilityCategory$1 as CapabilityCategory, ColorConfig, ColumnAlign, ColumnDefinition, ColumnHidden, ColumnOffset, ColumnOrder, ColumnSpan, ComponentActionParam, ComponentContextAction, ComponentContextOption, ComponentContextOptionMode, ComponentContextOptionsByPathEntry, ComponentContextPack, ComponentDocMeta, ComponentKeyParams, ComponentMergePatch, ComponentMetadata, ConfigMetadata, ConfigStorage, ConfirmationConfig, ConnectionConfigV1, ConnectionStorage, ContextAction, ContextActionsConfig, BackConfig as CoreBackConfig, CoreFieldMetadata, CrudOperationOptions, CsvExportConfig, CurrencyLocaleConfig, CursorPage, CursorRequest, CustomizationLog, DataConfig, DataTransformation, DataValidationConfig, DateRangePreset, DateRangeValue, DateTimeLocaleConfig, DebounceConfig, DeviceKind, DraggingConfig, Capability as DynamicPageCapability, CapabilityCatalog as DynamicPageCapabilityCatalog, CapabilityCategory as DynamicPageCapabilityCategory, ValueKind as DynamicPageValueKind, EditorialBlock, EditorialBlockBase, EditorialBlockKind, EditorialBlockOverride, EditorialBlockSurface, EditorialBlockTone, EditorialBlockVisibilityRule, EditorialCompliancePreset, EditorialComponentDocMeta, EditorialContentFormat, EditorialContextFieldContract, EditorialContextSummaryBlock, EditorialCustomWidgetBlock, EditorialDataCollectionBlock, EditorialFaqAccordionBlock, EditorialFaqItem, EditorialFormCompliancePreset, EditorialFormShellPreset, EditorialFormTemplate, EditorialFormTemplateBuildOptions, EditorialFormTemplateContextField, EditorialFormTemplateDefaults, EditorialFormTemplateLayoutPreset, EditorialFormTemplateMetadata, EditorialFormTemplateReference, EditorialHeroBlock, EditorialInfoCardItem, EditorialInfoCardsBlock, EditorialJourney, EditorialJourneyOverride, EditorialJourneyStep, EditorialLinkDefinition, EditorialLinkItem, EditorialMetaItem, EditorialPolicyItem, EditorialPolicyListBlock, EditorialProblemType, EditorialReviewField, EditorialReviewSummaryBlock, EditorialRichTextBlock, EditorialShellVariant, EditorialSolutionDefinition, EditorialSolutionPreset, EditorialTemplateInstance, EditorialTemplateInstanceOverrides, EditorialTemplateRef, EditorialTemplateSource, EditorialThemePreset, EditorialTimelineStep, EditorialTimelineStepsBlock, EditorialWidgetAppearance, EditorialWidgetDefinition, EditorialWidgetInputs, ElevationConfig, EmptyAction, EmptyStateConfig, EndpointConfig, EnhancedValidationConfig, ExcelExportConfig, ExcelStylingConfig, ExportConfig, ExportFormat, ExportMessagesConfig, ExportTemplate, FetchWithEtagParams, FetchWithEtagResult, FieldConflict, FieldDefinition, FieldMetadata, FieldModification, FieldOption, FieldSelectorRegistryMap, FieldsetLayout, FilterOptions, FilteringConfig, FooterLinksAppearance, FooterLinksLayout, FormActionButton, FormActionConfirmationEvent, FormActionsLayout, FormApiLayout, FormBehaviorLayout, FormColumn, FormConfig, FormConfigMetadata, FormConfigState, FormCustomActionEvent, FormEntityEvent, FormHook, FormHookContext, FormHookDeclaration, FormHookDeclarationLite, FormHookOutcome, FormHookPreset, FormHookPresetMatch, FormHookStage, FormHookStatus, FormHooksLayout, FormInitializationError, FormLayout, FormLayoutRule, FormMessagesLayout, FormMetadataLayout, FormModeHints, FormOpenMode, FormReadyEvent, FormRow, FormRowLayout, FormRuleTargetType, FormSection, FormSubmitEvent, FormValidationEvent, FormValueChangeEvent, FormattingLocaleConfig, GeneralExportConfig, GetSchemaParams, GlobalActionCatalogEntry, GlobalActionContext, GlobalActionField, GlobalActionFieldOption, GlobalActionFieldType, GlobalActionHandler, GlobalActionHandlerEntry, GlobalActionId, GlobalActionParam, GlobalActionResult, GlobalActionSpec, GlobalActionUiSchema, GlobalAiConfig, GlobalAiEmbeddingConfig, GlobalAiProvider, GlobalAnalyticsService, GlobalApiClient, GlobalCacheConfig, GlobalConfig, GlobalCrudActionDefaults, GlobalCrudConfig, GlobalCrudDefaults, GlobalDialogAction, GlobalDialogAnimation, GlobalDialogAriaRole, GlobalDialogConfig, GlobalDialogConfigEntry, GlobalDialogPosition, GlobalDialogService, GlobalDialogStyles, GlobalDynamicFieldsAsyncSelectConfig, GlobalDynamicFieldsCascadeConfig, GlobalDynamicFieldsConfig, GlobalI18nConfig, GlobalRouteGuardResolver, GlobalTableConfig, GlobalToastService, GridItemLayout, GridPageDefinition, GridPageDefinitionWithIds, GridWidgetInstance, HeroBadge, HeroBadgeTone, HeroBannerAppearance, HeroBannerVariant, HeroMetaItem, HookResolver, InlineFilterControlType, InlineRangeDistributionBin, InlineRangeDistributionConfig, InteractionConfig, JsonExportConfig, KeyboardAccessibilityConfig, LazyLoadingConfig, LegacyTableConfig, LegalNoticeAppearance, LegalNoticeSeverity, LoadingConfig, LoadingContext, LoadingPhase$1 as LoadingPhase, LoadingScope, LoadingState, LoadingPhase as LoadingStatePhase, LocalizationConfig, LocateRequest, LoggerConfig, LoggerContext, LoggerEvent, LoggerLevel, LoggerLogOptions, LoggerNormalizedError, LoggerPIIConfig, LoggerSink, LoggerTelemetryPayload, LoggerThrottleConfig, MarginConfig, MaterialAutocompleteMetadata, MaterialButtonMetadata, MaterialButtonToggleMetadata, MaterialCheckboxMetadata, MaterialChipsMetadata, MaterialColorInputMetadata, MaterialColorPickerMetadata, MaterialCpfCnpjMetadata, MaterialCurrencyMetadata, MaterialDateInputMetadata, MaterialDateRangeMetadata, MaterialDatepickerMetadata, MaterialDatetimeLocalInputMetadata, MaterialDesignConfig, MaterialEmailInputMetadata, MaterialEmailMetadata, MaterialInputMetadata, MaterialMonthInputMetadata, MaterialMultiSelectTreeMetadata, MaterialNumericMetadata, MaterialPasswordMetadata, MaterialPhoneMetadata, MaterialPriceRangeMetadata, MaterialRadioMetadata, MaterialRangeSliderMetadata, MaterialRatingMetadata, MaterialSearchInputMetadata, MaterialSelectMetadata, MaterialSelectionListMetadata, MaterialSliderMetadata, MaterialTextareaMetadata, MaterialTimeInputMetadata, MaterialTimeRangeMetadata, MaterialTimeTrackShift, MaterialTimepickerMetadata, MaterialToggleMetadata, MaterialTransferListMetadata, MaterialTreeNode, MaterialTreeSelectMetadata, MaterialUrlInputMetadata, MaterialWeekInputMetadata, MaterialYearInputMetadata, MemoryConfig, MessageTemplate, MessagesConfig, NestedFieldsetLayout, NormalizedError, NumberLocaleConfig, ObservabilityAlert, ObservabilityAlertGroupBy, ObservabilityAlertRule, ObservabilityAlertSeverity, ObservabilityCountBucket, ObservabilityDashboardOptions, ObservabilityIngestInput, ObservabilityMetricsSnapshot, OptionDTO, OverlayDecider, OverlayDecision, OverlayDecisionContext, OverlayDecisionMatrix, OverlayPattern, OverlayRange, OverlayRule, OverlayRuleMatch, OverlayThresholds, Page, PageIdentity, PageableRequest, PaginationConfig, PartialFieldMetadata, PdfExportConfig, PerformanceConfig, PersistedPageConfig, PersistedWidgetInstance, PlainObject, PluginConfig, PollingConfig, PraxisAnalyticsOptions, PraxisAuthContext, PraxisGlobalActionsOptions, PraxisGlobalConfigBootstrapOptions, PraxisHttpLoadingOptions, PraxisI18nConfig, PraxisI18nDictionary, PraxisI18nMessageDescriptor, PraxisI18nNamespaceConfig, PraxisI18nNamespaceDictionary, PraxisI18nTranslator, PraxisLoadingRenderer, PraxisLocale, PraxisLoggingEnvironment, PraxisLoggingOptions, PraxisTextValue, PraxisToastOptions, PraxisTranslationParams, PriceRangeValue, RangeSliderInlineTexts, RangeSliderQuickPreset, RangeSliderQuickPresetLabels, RangeSliderValue, RenderingConfig, ResizingConfig, ResolvePresetOptions, ResponsiveConfig, RichTextAppearance, RichTextVariant, RowAction, RowActionsConfig, RulePropertyDefinition, RulePropertySchema, RulePropertyType, RunHooksResult, SchemaIdParams, SchemaMetaInfo, SchemaViewerContext, SelectionConfig, SerializableFieldMetadata, SettingsPanelBridge, SettingsPanelOpenContent, SettingsPanelOpenOptions, SettingsPanelRef, SettingsValueProvider, SortingConfig, SpacingConfig, StateMessagesConfig, SyncConfig, SyncResult, TableActionsConfig, TableAppearanceConfig, TableBehaviorConfig, TableConfig, TableConfigV2 as TableConfigModern, TableConfigState, TableConfigV2, TableExpansionConfig, TableLocalDataModeConfig, TelemetryEvent, TelemetryLoggerSinkOptions, TelemetryTransport, TextTransformApply, TextTransformName, ThemeConfig, ToolbarAction, ToolbarConfig, ToolbarFilterConfig, ToolbarLayoutConfig, ToolbarSettingsConfig, TypographyConfig, UserContextSource, UserContextSummaryAppearance, UserContextSummaryField, ValidationContext, ValidationError, ValidationMessagesConfig, ValidationResult, ValidationRule, ValidatorFunction, ValidatorOptions, ValueKind$1 as ValueKind, VirtualizationConfig, WidgetConnection, WidgetDefinition, WidgetInstance, WidgetPageDefinition, WidgetPageLayout, WidgetPageOrientation, WidgetShellAction, WidgetShellActionEvent, WidgetShellActionPlacement, WidgetShellConfig, WidgetShellWindowActions };