@praxisui/core 1.0.0-beta.61 → 1.0.0-beta.63

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;
@@ -6975,6 +7177,8 @@ interface FormConfig {
6975
7177
  formBlocksBefore?: WidgetDefinition[];
6976
7178
  /** Editorial or semantic widgets rendered after the form sections and before the primary action area. */
6977
7179
  formBlocksBeforeActions?: WidgetDefinition[];
7180
+ /** Controls whether `formBlocksBeforeActions` render inside the last section or after all sections. */
7181
+ formBlocksBeforeActionsPlacement?: 'insideLastSection' | 'afterSections';
6978
7182
  /** Editorial or semantic widgets rendered after the form sections/actions. */
6979
7183
  formBlocksAfter?: WidgetDefinition[];
6980
7184
  /** Shared context used to resolve editorial widget bindings inside the form host. */
@@ -7044,6 +7248,8 @@ interface FormConfigMetadata {
7044
7248
  tenant?: string;
7045
7249
  locale?: string;
7046
7250
  };
7251
+ /** Optional provenance for configs materialized from EditorialFormTemplate. */
7252
+ template?: EditorialFormTemplateReference;
7047
7253
  /** User customizations log */
7048
7254
  customizations?: CustomizationLog[];
7049
7255
  }
@@ -7121,6 +7327,13 @@ declare function syncWithServerMetadata(localConfig: FormConfig, serverMetadata:
7121
7327
  */
7122
7328
  declare function convertFormLayoutToConfig(formLayout: any): FormConfig;
7123
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
+
7124
7337
  interface FormValueChangeEvent {
7125
7338
  formData: any;
7126
7339
  changedField?: string;
@@ -7210,6 +7423,491 @@ interface RulePropertyDefinition {
7210
7423
  type RulePropertySchema = Record<'field' | 'section' | 'action' | 'row' | 'column', RulePropertyDefinition[]>;
7211
7424
  declare const RULE_PROPERTY_SCHEMA: RulePropertySchema;
7212
7425
 
7426
+ type EditorialOrientation = 'horizontal' | 'vertical';
7427
+ type EditorialDensity = 'compact' | 'comfortable' | 'relaxed';
7428
+ type EditorialPresentationShellVariant = 'corporate-wizard' | 'sidebar-journey' | 'compact-form' | 'editorial-rich' | 'compliance-flow';
7429
+ type EditorialSurfaceVariant = 'flat' | 'outlined' | 'elevated' | 'soft';
7430
+ type EditorialStepperVariant = 'simple' | 'icon' | 'icon-label' | 'rich';
7431
+ type EditorialConnectorStyle = 'solid' | 'dashed' | 'soft';
7432
+ interface EditorialIconSpec {
7433
+ name: string;
7434
+ family?: 'material' | 'praxis' | 'custom';
7435
+ size?: string;
7436
+ color?: string;
7437
+ }
7438
+ interface EditorialLayoutSpacing {
7439
+ pagePadding?: string;
7440
+ shellPadding?: string;
7441
+ sectionGap?: string;
7442
+ blockGap?: string;
7443
+ actionGap?: string;
7444
+ }
7445
+ interface EditorialResponsiveLayoutConfig {
7446
+ mobileOrientation?: EditorialOrientation;
7447
+ tabletOrientation?: EditorialOrientation;
7448
+ collapseStepperBelow?: string;
7449
+ }
7450
+ interface EditorialLayoutConfig {
7451
+ orientation?: EditorialOrientation;
7452
+ density?: EditorialDensity;
7453
+ shellVariant?: EditorialPresentationShellVariant;
7454
+ maxWidth?: string;
7455
+ contentAlign?: 'start' | 'center' | 'stretch';
7456
+ spacing?: EditorialLayoutSpacing;
7457
+ responsive?: EditorialResponsiveLayoutConfig;
7458
+ }
7459
+ interface EditorialThemeColorTokens {
7460
+ pageBackground?: string;
7461
+ surfacePrimary?: string;
7462
+ surfaceSecondary?: string;
7463
+ border?: string;
7464
+ textPrimary?: string;
7465
+ textSecondary?: string;
7466
+ accent?: string;
7467
+ accentContrast?: string;
7468
+ success?: string;
7469
+ warning?: string;
7470
+ danger?: string;
7471
+ muted?: string;
7472
+ stepActive?: string;
7473
+ stepCompleted?: string;
7474
+ stepPending?: string;
7475
+ stepBlocked?: string;
7476
+ connector?: string;
7477
+ ctaPrimary?: string;
7478
+ ctaPrimaryText?: string;
7479
+ ctaSecondary?: string;
7480
+ ctaSecondaryText?: string;
7481
+ }
7482
+ interface EditorialThemeRadiusTokens {
7483
+ shell?: string;
7484
+ card?: string;
7485
+ button?: string;
7486
+ field?: string;
7487
+ step?: string;
7488
+ }
7489
+ interface EditorialThemeShadowTokens {
7490
+ shell?: string;
7491
+ card?: string;
7492
+ floating?: string;
7493
+ }
7494
+ interface EditorialThemeBorderWidthTokens {
7495
+ shell?: string;
7496
+ card?: string;
7497
+ field?: string;
7498
+ activeStep?: string;
7499
+ }
7500
+ interface EditorialThemeTypographyTokens {
7501
+ titleFontFamily?: string;
7502
+ bodyFontFamily?: string;
7503
+ titleWeight?: number | string;
7504
+ bodyWeight?: number | string;
7505
+ heroTitleSize?: string;
7506
+ stepTitleSize?: string;
7507
+ bodySize?: string;
7508
+ captionSize?: string;
7509
+ }
7510
+ interface EditorialThemeTokens {
7511
+ color?: EditorialThemeColorTokens;
7512
+ radius?: EditorialThemeRadiusTokens;
7513
+ shadow?: EditorialThemeShadowTokens;
7514
+ borderWidth?: EditorialThemeBorderWidthTokens;
7515
+ typography?: EditorialThemeTypographyTokens;
7516
+ }
7517
+ interface EditorialStepperConfig {
7518
+ visible?: boolean;
7519
+ orientation?: EditorialOrientation;
7520
+ variant?: EditorialStepperVariant;
7521
+ size?: 'sm' | 'md' | 'lg';
7522
+ showLabels?: boolean;
7523
+ showDescriptions?: boolean;
7524
+ showConnectors?: boolean;
7525
+ connectorStyle?: EditorialConnectorStyle;
7526
+ align?: 'start' | 'center' | 'space-between';
7527
+ allowStepJump?: boolean;
7528
+ }
7529
+ interface EditorialMotionConfig {
7530
+ preset?: 'none' | 'subtle' | 'smooth' | 'expressive';
7531
+ stepTransition?: {
7532
+ type?: 'fade' | 'slide' | 'scale' | 'fade-slide';
7533
+ durationMs?: number;
7534
+ easing?: string;
7535
+ };
7536
+ stagger?: {
7537
+ enabled?: boolean;
7538
+ itemDelayMs?: number;
7539
+ };
7540
+ }
7541
+ interface EditorialWizardPresentation {
7542
+ layout?: EditorialLayoutConfig;
7543
+ theme?: EditorialThemeTokens;
7544
+ stepper?: EditorialStepperConfig;
7545
+ motion?: EditorialMotionConfig;
7546
+ }
7547
+
7548
+ interface EditorialPresentationalVisibilityRule {
7549
+ when?: string;
7550
+ equals?: unknown;
7551
+ notEquals?: unknown;
7552
+ exists?: boolean;
7553
+ }
7554
+ interface EditorialPresentationalBlockBase {
7555
+ title?: string;
7556
+ subtitle?: string;
7557
+ description?: string;
7558
+ analyticsId?: string;
7559
+ visibility?: EditorialPresentationalVisibilityRule[];
7560
+ tags?: string[];
7561
+ }
7562
+ interface EditorialPresentationalAction {
7563
+ label: string;
7564
+ actionId: string;
7565
+ appearance?: 'primary' | 'secondary';
7566
+ icon?: EditorialIconSpec;
7567
+ }
7568
+ interface EditorialIntroHeroHighlightItem {
7569
+ id: string;
7570
+ title: string;
7571
+ description?: string;
7572
+ icon?: EditorialIconSpec;
7573
+ }
7574
+ interface EditorialIntroHeroBlock extends EditorialPresentationalBlockBase {
7575
+ blockId: string;
7576
+ kind: 'introHero';
7577
+ title: string;
7578
+ icon?: EditorialIconSpec;
7579
+ align?: 'left' | 'center';
7580
+ highlightItems?: EditorialIntroHeroHighlightItem[];
7581
+ surface?: EditorialSurfaceVariant;
7582
+ primaryAction?: EditorialPresentationalAction;
7583
+ secondaryAction?: EditorialPresentationalAction;
7584
+ }
7585
+ interface EditorialSelectionCardItem {
7586
+ id: string;
7587
+ label: string;
7588
+ description?: string;
7589
+ value: string;
7590
+ icon?: EditorialIconSpec;
7591
+ tone?: 'default' | 'accent' | 'muted';
7592
+ disabled?: boolean;
7593
+ }
7594
+ interface EditorialSelectionCardsBlock extends EditorialPresentationalBlockBase {
7595
+ blockId: string;
7596
+ kind: 'selectionCards';
7597
+ field: string;
7598
+ selectionMode: 'single' | 'multiple';
7599
+ columns?: 1 | 2 | 3 | 4;
7600
+ items: EditorialSelectionCardItem[];
7601
+ style?: {
7602
+ surface?: EditorialSurfaceVariant;
7603
+ showCheckmark?: boolean;
7604
+ iconPosition?: 'top' | 'left';
7605
+ variant?: 'default' | 'accent' | 'outline';
7606
+ };
7607
+ }
7608
+ interface EditorialReviewSectionField {
7609
+ key: string;
7610
+ label: string;
7611
+ valuePath: string;
7612
+ format?: 'text' | 'date' | 'email' | 'phone' | 'boolean' | 'list';
7613
+ hideWhenEmpty?: boolean;
7614
+ }
7615
+ interface EditorialReviewSection {
7616
+ id: string;
7617
+ title: string;
7618
+ icon?: EditorialIconSpec;
7619
+ fields: EditorialReviewSectionField[];
7620
+ }
7621
+ interface EditorialReviewSectionsBlock extends EditorialPresentationalBlockBase {
7622
+ blockId: string;
7623
+ kind: 'reviewSections';
7624
+ sections: EditorialReviewSection[];
7625
+ surface?: EditorialSurfaceVariant;
7626
+ }
7627
+ interface EditorialSuccessPanelBlock extends EditorialPresentationalBlockBase {
7628
+ blockId: string;
7629
+ kind: 'successPanel';
7630
+ title: string;
7631
+ icon?: EditorialIconSpec;
7632
+ nextSteps?: string[];
7633
+ surface?: EditorialSurfaceVariant;
7634
+ tone?: 'success' | 'accent' | 'neutral';
7635
+ secondaryMessage?: string;
7636
+ primaryAction?: EditorialPresentationalAction;
7637
+ }
7638
+
7639
+ type EditorialBlockKind = 'introHero' | 'hero' | 'richText' | 'legalNotice' | 'policyList' | 'timelineSteps' | 'reviewSummary' | 'reviewSections' | 'dataCollection' | 'selectionCards' | 'contextSummary' | 'infoCards' | 'faqAccordion' | 'successPanel' | 'customWidget' | 'footerLinks';
7640
+ type EditorialBlockTone = 'default' | 'institutional' | 'highlight' | 'muted' | 'warning' | 'success' | 'danger';
7641
+ type EditorialBlockSurface = 'plain' | 'card' | 'section' | 'divider' | 'banner' | 'aside';
7642
+ interface EditorialBlockVisibilityRule {
7643
+ when?: string;
7644
+ equals?: unknown;
7645
+ notEquals?: unknown;
7646
+ exists?: boolean;
7647
+ }
7648
+ interface EditorialBlockBase {
7649
+ blockId: string;
7650
+ kind: EditorialBlockKind;
7651
+ title?: string;
7652
+ subtitle?: string;
7653
+ description?: string;
7654
+ tone?: EditorialBlockTone;
7655
+ surface?: EditorialBlockSurface;
7656
+ analyticsId?: string;
7657
+ visibility?: EditorialBlockVisibilityRule[];
7658
+ tags?: string[];
7659
+ }
7660
+ interface EditorialLinkItem {
7661
+ id?: string;
7662
+ label: string;
7663
+ href: string;
7664
+ target?: '_self' | '_blank';
7665
+ external?: boolean;
7666
+ description?: string;
7667
+ }
7668
+ interface EditorialMetaItem {
7669
+ label: string;
7670
+ value: string;
7671
+ }
7672
+ interface EditorialHeroBlock extends EditorialBlockBase {
7673
+ kind: 'hero';
7674
+ brandText?: string;
7675
+ titleAccent?: string;
7676
+ badges?: Array<{
7677
+ label: string;
7678
+ tone?: EditorialBlockTone;
7679
+ }>;
7680
+ metaItems?: EditorialMetaItem[];
7681
+ ctas?: Array<{
7682
+ id: string;
7683
+ label: string;
7684
+ appearance?: 'primary' | 'secondary' | 'text';
7685
+ }>;
7686
+ imageUrl?: string;
7687
+ imageAlt?: string;
7688
+ }
7689
+ interface EditorialRichTextBlock extends EditorialBlockBase {
7690
+ kind: 'richText' | 'legalNotice';
7691
+ content: string;
7692
+ contentFormat?: 'plain' | 'markdown';
7693
+ icon?: string;
7694
+ links?: EditorialLinkItem[];
7695
+ }
7696
+ interface EditorialPolicyItem {
7697
+ id: string;
7698
+ title: string;
7699
+ summary?: string;
7700
+ required?: boolean;
7701
+ href?: string;
7702
+ version?: string;
7703
+ evidenceKey?: string;
7704
+ }
7705
+ interface EditorialPolicyListBlock extends EditorialBlockBase {
7706
+ kind: 'policyList';
7707
+ items: EditorialPolicyItem[];
7708
+ actionLabel?: string;
7709
+ actionId?: string;
7710
+ }
7711
+ interface EditorialTimelineStep {
7712
+ id: string;
7713
+ label: string;
7714
+ description?: string;
7715
+ status?: 'pending' | 'current' | 'completed';
7716
+ meta?: string;
7717
+ }
7718
+ interface EditorialTimelineStepsBlock extends EditorialBlockBase {
7719
+ kind: 'timelineSteps';
7720
+ steps: EditorialTimelineStep[];
7721
+ }
7722
+ interface EditorialReviewField {
7723
+ key: string;
7724
+ label: string;
7725
+ valuePath?: string;
7726
+ fallback?: string;
7727
+ emphasize?: boolean;
7728
+ }
7729
+ interface EditorialReviewSummaryBlock extends EditorialBlockBase {
7730
+ kind: 'reviewSummary';
7731
+ fields: EditorialReviewField[];
7732
+ checklist?: string[];
7733
+ }
7734
+ interface EditorialDataCollectionBlock extends EditorialBlockBase {
7735
+ kind: 'dataCollection';
7736
+ formBlockId: string;
7737
+ formConfig?: FormConfig;
7738
+ formConfigRef?: string;
7739
+ }
7740
+ interface EditorialContextSummaryBlock extends EditorialBlockBase {
7741
+ kind: 'contextSummary';
7742
+ contextPath?: string;
7743
+ fields: EditorialReviewField[];
7744
+ actionId?: string;
7745
+ actionLabel?: string;
7746
+ }
7747
+ interface EditorialInfoCardItem {
7748
+ id: string;
7749
+ title: string;
7750
+ description?: string;
7751
+ icon?: string;
7752
+ }
7753
+ interface EditorialInfoCardsBlock extends EditorialBlockBase {
7754
+ kind: 'infoCards';
7755
+ items: EditorialInfoCardItem[];
7756
+ }
7757
+ interface EditorialFaqItem {
7758
+ id: string;
7759
+ question: string;
7760
+ answer: string;
7761
+ }
7762
+ interface EditorialFaqAccordionBlock extends EditorialBlockBase {
7763
+ kind: 'faqAccordion';
7764
+ items: EditorialFaqItem[];
7765
+ }
7766
+ interface EditorialCustomWidgetBlock extends EditorialBlockBase {
7767
+ kind: 'customWidget' | 'footerLinks';
7768
+ widget: WidgetDefinition;
7769
+ }
7770
+ type EditorialBlock = EditorialIntroHeroBlock | EditorialHeroBlock | EditorialRichTextBlock | EditorialPolicyListBlock | EditorialTimelineStepsBlock | EditorialReviewSummaryBlock | EditorialReviewSectionsBlock | EditorialDataCollectionBlock | EditorialSelectionCardsBlock | EditorialContextSummaryBlock | EditorialInfoCardsBlock | EditorialFaqAccordionBlock | EditorialSuccessPanelBlock | EditorialCustomWidgetBlock;
7771
+
7772
+ type EditorialProblemType = 'event-registration' | 'employee-onboarding' | 'privacy-consent' | 'document-intake' | 'eligibility-screening' | 'application-review' | (string & {});
7773
+ type EditorialShellVariant = 'plain' | 'card' | 'page' | 'split' | 'wizard' | 'immersive';
7774
+ interface EditorialThemePreset {
7775
+ themeId: string;
7776
+ label: string;
7777
+ description?: string;
7778
+ shellVariant: EditorialShellVariant;
7779
+ maxWidth?: string | number;
7780
+ pageSpacing?: string | number;
7781
+ background?: string;
7782
+ surfaceVariant?: string;
7783
+ tokens?: Record<string, string | number | boolean>;
7784
+ }
7785
+ interface EditorialCompliancePreset {
7786
+ presetId: string;
7787
+ label: string;
7788
+ description?: string;
7789
+ problemTypes?: EditorialProblemType[];
7790
+ requiredContextKeys?: string[];
7791
+ blocks?: EditorialBlock[];
7792
+ requiredEvidenceKeys?: string[];
7793
+ requiredAcceptances?: string[];
7794
+ }
7795
+ interface EditorialSolutionPreset {
7796
+ presetId: string;
7797
+ label: string;
7798
+ description?: string;
7799
+ problemType: EditorialProblemType;
7800
+ themePresetId?: string;
7801
+ compliancePresetIds?: string[];
7802
+ recommendedBlocks?: EditorialBlock[];
7803
+ dataBlockOrder?: string[];
7804
+ tags?: string[];
7805
+ }
7806
+
7807
+ type EditorialStepKind = 'intro' | 'form' | 'selection' | 'mixed' | 'review' | 'confirmation';
7808
+ type EditorialStepVisualVariant = 'hero-card' | 'form-card' | 'selection-grid' | 'review-sections' | 'success-panel';
7809
+ interface EditorialStepVisualConfig {
7810
+ variant?: EditorialStepVisualVariant;
7811
+ surface?: EditorialSurfaceVariant;
7812
+ textAlign?: 'left' | 'center';
7813
+ emphasis?: 'low' | 'medium' | 'high';
7814
+ columns?: 1 | 2 | 3 | 4;
7815
+ showHeaderDivider?: boolean;
7816
+ showStepCounter?: boolean;
7817
+ accentIcon?: EditorialIconSpec;
7818
+ }
7819
+
7820
+ interface EditorialContextFieldContract {
7821
+ key: string;
7822
+ type?: 'string' | 'number' | 'boolean' | 'date' | 'datetime' | 'array' | 'object' | 'unknown';
7823
+ required?: boolean;
7824
+ description?: string;
7825
+ example?: unknown;
7826
+ }
7827
+ interface EditorialJourneyStep {
7828
+ stepId: string;
7829
+ label: string;
7830
+ description?: string;
7831
+ kind?: EditorialStepKind;
7832
+ icon?: EditorialIconSpec;
7833
+ visual?: EditorialStepVisualConfig;
7834
+ optional?: boolean;
7835
+ editableFromReview?: boolean;
7836
+ blocks: EditorialBlock[];
7837
+ }
7838
+ interface EditorialJourney {
7839
+ journeyId: string;
7840
+ label: string;
7841
+ description?: string;
7842
+ steps: EditorialJourneyStep[];
7843
+ }
7844
+ interface EditorialSolutionDefinition {
7845
+ solutionId: string;
7846
+ version: string;
7847
+ problemType: EditorialProblemType;
7848
+ title: string;
7849
+ description?: string;
7850
+ presentation?: EditorialWizardPresentation;
7851
+ contextContract?: EditorialContextFieldContract[];
7852
+ journeys: EditorialJourney[];
7853
+ themePresets?: EditorialThemePreset[];
7854
+ compliancePresets?: EditorialCompliancePreset[];
7855
+ tags?: string[];
7856
+ owner?: string;
7857
+ }
7858
+
7859
+ interface EditorialTemplateRef {
7860
+ templateId: string;
7861
+ version: string;
7862
+ title?: string;
7863
+ problemType?: EditorialProblemType;
7864
+ }
7865
+ interface EditorialBlockOverride {
7866
+ blockId: string;
7867
+ operation: 'replace' | 'remove' | 'insertBefore' | 'insertAfter' | 'append';
7868
+ referenceBlockId?: string;
7869
+ value?: EditorialBlock;
7870
+ }
7871
+ interface EditorialJourneyOverride {
7872
+ journeyId: string;
7873
+ stepOverrides?: Array<{
7874
+ stepId: string;
7875
+ blockOverrides?: EditorialBlockOverride[];
7876
+ }>;
7877
+ }
7878
+ interface EditorialTemplateInstanceOverrides {
7879
+ themePresetId?: string;
7880
+ compliancePresetIds?: string[];
7881
+ contextPatch?: Record<string, unknown>;
7882
+ journeyOverrides?: EditorialJourneyOverride[];
7883
+ runtimeFormConfigs?: Record<string, FormConfig>;
7884
+ }
7885
+ interface EditorialTemplateInstance {
7886
+ instanceId: string;
7887
+ template: EditorialTemplateRef;
7888
+ context: Record<string, unknown>;
7889
+ selectedThemePreset?: EditorialThemePreset;
7890
+ selectedCompliancePresets?: EditorialCompliancePreset[];
7891
+ journeys: EditorialJourney[];
7892
+ overrides?: EditorialTemplateInstanceOverrides;
7893
+ materializedAt?: Date;
7894
+ lastAppliedVersion?: string;
7895
+ compatibilityFormConfigs?: Record<string, FormConfig>;
7896
+ }
7897
+
7898
+ declare const EDITORIAL_THEME_PRESETS: EditorialThemePreset[];
7899
+ declare const EDITORIAL_COMPLIANCE_PRESETS: EditorialCompliancePreset[];
7900
+ declare const EDITORIAL_SOLUTION_PRESETS: EditorialSolutionPreset[];
7901
+ declare const EVENT_REGISTRATION_EDITORIAL_SOLUTION: EditorialSolutionDefinition;
7902
+ declare const EMPLOYEE_ONBOARDING_EDITORIAL_SOLUTION: EditorialSolutionDefinition;
7903
+ declare const PRIVACY_CONSENT_EDITORIAL_SOLUTION: EditorialSolutionDefinition;
7904
+ declare const EDITORIAL_SOLUTION_CATALOG: EditorialSolutionDefinition[];
7905
+ declare function getEditorialSolutionCatalog(): EditorialSolutionDefinition[];
7906
+ declare function getEditorialSolutionById(solutionId: string): EditorialSolutionDefinition | undefined;
7907
+ declare function getEditorialThemePresetById(themeId: string): EditorialThemePreset | undefined;
7908
+ declare function getEditorialCompliancePresetById(presetId: string): EditorialCompliancePreset | undefined;
7909
+ declare function getEditorialSolutionPresetById(presetId: string): EditorialSolutionPreset | undefined;
7910
+
7213
7911
  type WidgetShellActionPlacement = 'header' | 'window';
7214
7912
  interface WidgetShellAction {
7215
7913
  /** Unique action id used for tracking and default emit name. */
@@ -8011,6 +8709,7 @@ declare function isAllowedEditorialHref(href: unknown): href is string;
8011
8709
  declare function normalizeEditorialLink(link: EditorialLinkDefinition): EditorialLinkDefinition | null;
8012
8710
 
8013
8711
  type FooterLinksLayout = 'inline' | 'stacked';
8712
+ type FooterLinksAppearance = 'divider' | 'plain' | 'surface';
8014
8713
  declare class PraxisFooterLinksComponent {
8015
8714
  instanceId?: string;
8016
8715
  analyticsId?: string;
@@ -8019,15 +8718,17 @@ declare class PraxisFooterLinksComponent {
8019
8718
  secondaryText?: string;
8020
8719
  links: EditorialLinkDefinition[];
8021
8720
  layout: FooterLinksLayout;
8721
+ appearance: FooterLinksAppearance;
8022
8722
  get normalizedLinks(): EditorialLinkDefinition[];
8023
8723
  static ɵfac: i0.ɵɵFactoryDeclaration<PraxisFooterLinksComponent, never>;
8024
- 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>;
8724
+ 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>;
8025
8725
  }
8026
8726
 
8027
8727
  declare const PRAXIS_FOOTER_LINKS_METADATA: ComponentDocMeta;
8028
8728
  declare function providePraxisFooterLinksMetadata(): Provider;
8029
8729
 
8030
8730
  type HeroBannerVariant = 'default' | 'event' | 'institutional';
8731
+ type HeroBannerAppearance = 'card' | 'flat';
8031
8732
  type HeroBadgeTone = 'default' | 'highlight' | 'muted' | 'warning';
8032
8733
  interface HeroBadge {
8033
8734
  label: string;
@@ -8049,14 +8750,18 @@ declare class PraxisHeroBannerComponent {
8049
8750
  badges: HeroBadge[];
8050
8751
  metaItems: HeroMetaItem[];
8051
8752
  variant: HeroBannerVariant;
8753
+ appearance: HeroBannerAppearance;
8754
+ brandText?: string;
8755
+ titleAccent?: string;
8052
8756
  static ɵfac: i0.ɵɵFactoryDeclaration<PraxisHeroBannerComponent, never>;
8053
- 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>;
8757
+ 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>;
8054
8758
  }
8055
8759
 
8056
8760
  declare const PRAXIS_HERO_BANNER_METADATA: ComponentDocMeta;
8057
8761
  declare function providePraxisHeroBannerMetadata(): Provider;
8058
8762
 
8059
8763
  type LegalNoticeSeverity = 'info' | 'warning' | 'muted';
8764
+ type LegalNoticeAppearance = 'card' | 'plain';
8060
8765
  declare class PraxisLegalNoticeComponent {
8061
8766
  instanceId?: string;
8062
8767
  analyticsId?: string;
@@ -8066,18 +8771,20 @@ declare class PraxisLegalNoticeComponent {
8066
8771
  contentFormat: EditorialContentFormat;
8067
8772
  content: string;
8068
8773
  severity: LegalNoticeSeverity;
8774
+ appearance: LegalNoticeAppearance;
8069
8775
  links: EditorialLinkDefinition[];
8070
8776
  get normalizedLinks(): EditorialLinkDefinition[];
8071
8777
  get resolvedIcon(): string;
8072
8778
  get resolvedVariant(): 'default' | 'emphasis' | 'subtle';
8073
8779
  static ɵfac: i0.ɵɵFactoryDeclaration<PraxisLegalNoticeComponent, never>;
8074
- 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>;
8780
+ 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>;
8075
8781
  }
8076
8782
 
8077
8783
  declare const PRAXIS_LEGAL_NOTICE_METADATA: ComponentDocMeta;
8078
8784
  declare function providePraxisLegalNoticeMetadata(): Provider;
8079
8785
 
8080
8786
  type RichTextVariant = 'default' | 'emphasis' | 'subtle';
8787
+ type RichTextAppearance = 'card' | 'plain';
8081
8788
  declare class PraxisRichTextBlockComponent {
8082
8789
  private readonly sanitizer;
8083
8790
  instanceId?: string;
@@ -8087,11 +8794,12 @@ declare class PraxisRichTextBlockComponent {
8087
8794
  subtitle?: string;
8088
8795
  icon?: string;
8089
8796
  variant: RichTextVariant;
8797
+ appearance: RichTextAppearance;
8090
8798
  contentFormat: EditorialContentFormat;
8091
8799
  content: string;
8092
8800
  get renderedContent(): string;
8093
8801
  static ɵfac: i0.ɵɵFactoryDeclaration<PraxisRichTextBlockComponent, never>;
8094
- 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>;
8802
+ 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>;
8095
8803
  }
8096
8804
 
8097
8805
  declare const PRAXIS_RICH_TEXT_BLOCK_METADATA: ComponentDocMeta;
@@ -8104,12 +8812,14 @@ interface UserContextSummaryField {
8104
8812
  fallback?: string;
8105
8813
  }
8106
8814
  type UserContextSource = 'context' | 'static';
8815
+ type UserContextSummaryAppearance = 'card' | 'plain';
8107
8816
  declare class PraxisUserContextSummaryComponent {
8108
8817
  instanceId?: string;
8109
8818
  analyticsId?: string;
8110
8819
  ariaLabel?: string;
8111
8820
  title?: string;
8112
8821
  subtitle?: string;
8822
+ appearance: UserContextSummaryAppearance;
8113
8823
  source: UserContextSource;
8114
8824
  context: Record<string, unknown> | null;
8115
8825
  fields: UserContextSummaryField[];
@@ -8125,7 +8835,7 @@ declare class PraxisUserContextSummaryComponent {
8125
8835
  emitAction(): void;
8126
8836
  private resolveFieldValue;
8127
8837
  static ɵfac: i0.ɵɵFactoryDeclaration<PraxisUserContextSummaryComponent, never>;
8128
- 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>;
8838
+ 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>;
8129
8839
  }
8130
8840
 
8131
8841
  declare const PRAXIS_USER_CONTEXT_SUMMARY_METADATA: ComponentDocMeta;
@@ -8792,5 +9502,5 @@ declare function provideFormHookPresets(presets: Array<FormHookPreset>): Provide
8792
9502
  /** Register a whitelist of allowed hook ids/patterns. */
8793
9503
  declare function provideHookWhitelist(allowed: Array<string | RegExp>): Provider[];
8794
9504
 
8795
- 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 };
8796
- 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 };
9505
+ 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 };
9506
+ 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, EditorialConnectorStyle, EditorialContentFormat, EditorialContextFieldContract, EditorialContextSummaryBlock, EditorialCustomWidgetBlock, EditorialDataCollectionBlock, EditorialDensity, EditorialFaqAccordionBlock, EditorialFaqItem, EditorialFormCompliancePreset, EditorialFormShellPreset, EditorialFormTemplate, EditorialFormTemplateBuildOptions, EditorialFormTemplateContextField, EditorialFormTemplateDefaults, EditorialFormTemplateLayoutPreset, EditorialFormTemplateMetadata, EditorialFormTemplateReference, EditorialHeroBlock, EditorialIconSpec, EditorialInfoCardItem, EditorialInfoCardsBlock, EditorialIntroHeroBlock, EditorialIntroHeroHighlightItem, EditorialJourney, EditorialJourneyOverride, EditorialJourneyStep, EditorialLayoutConfig, EditorialLayoutSpacing, EditorialLinkDefinition, EditorialLinkItem, EditorialMetaItem, EditorialMotionConfig, EditorialOrientation, EditorialPolicyItem, EditorialPolicyListBlock, EditorialPresentationShellVariant, EditorialPresentationalAction, EditorialPresentationalVisibilityRule, EditorialProblemType, EditorialResponsiveLayoutConfig, EditorialReviewField, EditorialReviewSection, EditorialReviewSectionField, EditorialReviewSectionsBlock, EditorialReviewSummaryBlock, EditorialRichTextBlock, EditorialSelectionCardItem, EditorialSelectionCardsBlock, EditorialShellVariant, EditorialSolutionDefinition, EditorialSolutionPreset, EditorialStepKind, EditorialStepVisualConfig, EditorialStepVisualVariant, EditorialStepperConfig, EditorialStepperVariant, EditorialSuccessPanelBlock, EditorialSurfaceVariant, EditorialTemplateInstance, EditorialTemplateInstanceOverrides, EditorialTemplateRef, EditorialTemplateSource, EditorialThemeBorderWidthTokens, EditorialThemeColorTokens, EditorialThemePreset, EditorialThemeRadiusTokens, EditorialThemeShadowTokens, EditorialThemeTokens, EditorialThemeTypographyTokens, EditorialTimelineStep, EditorialTimelineStepsBlock, EditorialWidgetAppearance, EditorialWidgetDefinition, EditorialWidgetInputs, EditorialWizardPresentation, 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 };