@praxisui/core 1.0.0-beta.62 → 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/fesm2022/praxisui-core.mjs +176 -44
- package/fesm2022/praxisui-core.mjs.map +1 -1
- package/index.d.ts +235 -3
- package/package.json +1 -1
package/index.d.ts
CHANGED
|
@@ -7423,7 +7423,220 @@ interface RulePropertyDefinition {
|
|
|
7423
7423
|
type RulePropertySchema = Record<'field' | 'section' | 'action' | 'row' | 'column', RulePropertyDefinition[]>;
|
|
7424
7424
|
declare const RULE_PROPERTY_SCHEMA: RulePropertySchema;
|
|
7425
7425
|
|
|
7426
|
-
type
|
|
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';
|
|
7427
7640
|
type EditorialBlockTone = 'default' | 'institutional' | 'highlight' | 'muted' | 'warning' | 'success' | 'danger';
|
|
7428
7641
|
type EditorialBlockSurface = 'plain' | 'card' | 'section' | 'divider' | 'banner' | 'aside';
|
|
7429
7642
|
interface EditorialBlockVisibilityRule {
|
|
@@ -7554,7 +7767,7 @@ interface EditorialCustomWidgetBlock extends EditorialBlockBase {
|
|
|
7554
7767
|
kind: 'customWidget' | 'footerLinks';
|
|
7555
7768
|
widget: WidgetDefinition;
|
|
7556
7769
|
}
|
|
7557
|
-
type EditorialBlock = EditorialHeroBlock | EditorialRichTextBlock | EditorialPolicyListBlock | EditorialTimelineStepsBlock | EditorialReviewSummaryBlock | EditorialDataCollectionBlock | EditorialContextSummaryBlock | EditorialInfoCardsBlock | EditorialFaqAccordionBlock | EditorialCustomWidgetBlock;
|
|
7770
|
+
type EditorialBlock = EditorialIntroHeroBlock | EditorialHeroBlock | EditorialRichTextBlock | EditorialPolicyListBlock | EditorialTimelineStepsBlock | EditorialReviewSummaryBlock | EditorialReviewSectionsBlock | EditorialDataCollectionBlock | EditorialSelectionCardsBlock | EditorialContextSummaryBlock | EditorialInfoCardsBlock | EditorialFaqAccordionBlock | EditorialSuccessPanelBlock | EditorialCustomWidgetBlock;
|
|
7558
7771
|
|
|
7559
7772
|
type EditorialProblemType = 'event-registration' | 'employee-onboarding' | 'privacy-consent' | 'document-intake' | 'eligibility-screening' | 'application-review' | (string & {});
|
|
7560
7773
|
type EditorialShellVariant = 'plain' | 'card' | 'page' | 'split' | 'wizard' | 'immersive';
|
|
@@ -7591,6 +7804,19 @@ interface EditorialSolutionPreset {
|
|
|
7591
7804
|
tags?: string[];
|
|
7592
7805
|
}
|
|
7593
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
|
+
|
|
7594
7820
|
interface EditorialContextFieldContract {
|
|
7595
7821
|
key: string;
|
|
7596
7822
|
type?: 'string' | 'number' | 'boolean' | 'date' | 'datetime' | 'array' | 'object' | 'unknown';
|
|
@@ -7602,6 +7828,11 @@ interface EditorialJourneyStep {
|
|
|
7602
7828
|
stepId: string;
|
|
7603
7829
|
label: string;
|
|
7604
7830
|
description?: string;
|
|
7831
|
+
kind?: EditorialStepKind;
|
|
7832
|
+
icon?: EditorialIconSpec;
|
|
7833
|
+
visual?: EditorialStepVisualConfig;
|
|
7834
|
+
optional?: boolean;
|
|
7835
|
+
editableFromReview?: boolean;
|
|
7605
7836
|
blocks: EditorialBlock[];
|
|
7606
7837
|
}
|
|
7607
7838
|
interface EditorialJourney {
|
|
@@ -7616,6 +7847,7 @@ interface EditorialSolutionDefinition {
|
|
|
7616
7847
|
problemType: EditorialProblemType;
|
|
7617
7848
|
title: string;
|
|
7618
7849
|
description?: string;
|
|
7850
|
+
presentation?: EditorialWizardPresentation;
|
|
7619
7851
|
contextContract?: EditorialContextFieldContract[];
|
|
7620
7852
|
journeys: EditorialJourney[];
|
|
7621
7853
|
themePresets?: EditorialThemePreset[];
|
|
@@ -9271,4 +9503,4 @@ declare function provideFormHookPresets(presets: Array<FormHookPreset>): Provide
|
|
|
9271
9503
|
declare function provideHookWhitelist(allowed: Array<string | RegExp>): Provider[];
|
|
9272
9504
|
|
|
9273
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 };
|
|
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 };
|
|
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 };
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@praxisui/core",
|
|
3
|
-
"version": "1.0.0-beta.
|
|
3
|
+
"version": "1.0.0-beta.63",
|
|
4
4
|
"description": "Core library for Praxis UI Workspace: types, tokens, services and utilities shared across @praxisui/* packages.",
|
|
5
5
|
"peerDependencies": {
|
|
6
6
|
"@angular/common": "^20.0.0",
|