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

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.
@@ -8953,6 +8953,186 @@ const EMPLOYEE_ONBOARDING_EDITORIAL_TEMPLATE = {
8953
8953
  ],
8954
8954
  },
8955
8955
  };
8956
+ const EMPLOYEE_ONBOARDING_GUIDED_EDITORIAL_TEMPLATE = {
8957
+ templateId: 'employee-onboarding-guided',
8958
+ version: '1.0.0',
8959
+ metadata: {
8960
+ title: 'Employee Onboarding Guided',
8961
+ description: 'Template editorial guiado para onboarding com identificação enriquecida, preparação operacional e actions orientadas por etapa.',
8962
+ category: 'onboarding',
8963
+ tags: ['employee', 'onboarding', 'hr', 'guided', 'wizard'],
8964
+ source: 'catalog',
8965
+ owner: 'praxis-core',
8966
+ },
8967
+ shell: {
8968
+ shellVariant: 'wizard',
8969
+ maxWidth: '1120px',
8970
+ pageSpacing: '20px',
8971
+ },
8972
+ compliancePresets: [
8973
+ { id: 'privacy-consent', label: 'Privacy Consent' },
8974
+ { id: 'employment-documents', label: 'Employment Documents' },
8975
+ ],
8976
+ contextSchema: [
8977
+ { key: 'company.name', type: 'string', required: true },
8978
+ { key: 'company.hrEmail', type: 'string' },
8979
+ { key: 'manager.name', type: 'string' },
8980
+ ],
8981
+ layout: {
8982
+ sections: [
8983
+ {
8984
+ id: 'identity',
8985
+ appearance: 'step',
8986
+ stepLabel: '1',
8987
+ title: 'Identificação',
8988
+ description: 'Preencha seus dados para que possamos configurar seu acesso.',
8989
+ rows: [
8990
+ {
8991
+ id: 'identity-row-1',
8992
+ columns: [{ id: 'identity-col-name', fields: ['fullName'] }],
8993
+ },
8994
+ {
8995
+ id: 'identity-row-2',
8996
+ columns: [
8997
+ { id: 'identity-col-email', fields: ['corporateEmail'] },
8998
+ { id: 'identity-col-phone', fields: ['phoneNumber'] },
8999
+ ],
9000
+ },
9001
+ {
9002
+ id: 'identity-row-3',
9003
+ columns: [
9004
+ { id: 'identity-col-department', fields: ['department'] },
9005
+ { id: 'identity-col-role', fields: ['role'] },
9006
+ ],
9007
+ },
9008
+ {
9009
+ id: 'identity-row-4',
9010
+ columns: [{ id: 'identity-col-start-date', fields: ['startDate'] }],
9011
+ },
9012
+ ],
9013
+ },
9014
+ {
9015
+ id: 'operations',
9016
+ appearance: 'step',
9017
+ stepLabel: '2',
9018
+ title: 'Operação inicial',
9019
+ description: 'Configure os recursos necessários para o primeiro dia.',
9020
+ rows: [
9021
+ {
9022
+ id: 'operations-row-1',
9023
+ columns: [{ id: 'operations-col-work-model', fields: ['workModel'] }],
9024
+ },
9025
+ {
9026
+ id: 'operations-row-2',
9027
+ columns: [
9028
+ { id: 'operations-col-observations', fields: ['accessibilityNotes'] },
9029
+ ],
9030
+ },
9031
+ {
9032
+ id: 'operations-row-3',
9033
+ columns: [{ id: 'operations-col-privacy', fields: ['privacyConsent'] }],
9034
+ },
9035
+ ],
9036
+ },
9037
+ ],
9038
+ formBlocksBefore: [],
9039
+ formBlocksBeforeActions: [],
9040
+ formBlocksAfter: [],
9041
+ actions: {
9042
+ placement: 'afterSections',
9043
+ position: 'split',
9044
+ orientation: 'horizontal',
9045
+ spacing: 'normal',
9046
+ submit: {
9047
+ visible: true,
9048
+ label: 'Próximo',
9049
+ type: 'submit',
9050
+ color: 'primary',
9051
+ variant: 'raised',
9052
+ size: 'large',
9053
+ },
9054
+ cancel: {
9055
+ visible: true,
9056
+ label: 'Voltar',
9057
+ type: 'button',
9058
+ color: 'basic',
9059
+ variant: 'stroked',
9060
+ size: 'small',
9061
+ },
9062
+ reset: {
9063
+ visible: false,
9064
+ label: 'Limpar',
9065
+ type: 'reset',
9066
+ color: 'basic',
9067
+ variant: 'stroked',
9068
+ },
9069
+ },
9070
+ },
9071
+ defaults: {
9072
+ fieldMetadata: [
9073
+ { name: 'fullName', label: 'Nome completo *', controlType: 'input', required: true },
9074
+ { name: 'corporateEmail', label: 'E-mail corporativo *', controlType: 'email', required: true },
9075
+ { name: 'phoneNumber', label: 'Telefone', controlType: 'input' },
9076
+ {
9077
+ name: 'department',
9078
+ label: 'Departamento *',
9079
+ controlType: 'select',
9080
+ required: true,
9081
+ options: [
9082
+ { text: 'Design', value: 'Design' },
9083
+ { text: 'Engenharia', value: 'Engenharia' },
9084
+ { text: 'Produto', value: 'Produto' },
9085
+ { text: 'People Operations', value: 'People Operations' },
9086
+ ],
9087
+ },
9088
+ {
9089
+ name: 'role',
9090
+ label: 'Cargo *',
9091
+ controlType: 'select',
9092
+ required: true,
9093
+ options: [
9094
+ { text: 'Product Designer', value: 'Product Designer' },
9095
+ { text: 'Frontend Engineer', value: 'Frontend Engineer' },
9096
+ { text: 'People Partner', value: 'People Partner' },
9097
+ { text: 'Product Manager', value: 'Product Manager' },
9098
+ ],
9099
+ },
9100
+ {
9101
+ name: 'startDate',
9102
+ label: 'Data de início',
9103
+ controlType: 'date',
9104
+ required: true,
9105
+ },
9106
+ {
9107
+ name: 'workModel',
9108
+ label: 'Modelo de trabalho',
9109
+ controlType: 'radio',
9110
+ required: true,
9111
+ selectionMode: 'single',
9112
+ options: [
9113
+ { text: 'Presencial', value: 'Presencial' },
9114
+ { text: 'Remoto', value: 'Remoto' },
9115
+ { text: 'Híbrido', value: 'Híbrido' },
9116
+ ],
9117
+ },
9118
+ {
9119
+ name: 'accessibilityNotes',
9120
+ label: 'Observações adicionais',
9121
+ controlType: 'textarea',
9122
+ },
9123
+ {
9124
+ name: 'privacyConsent',
9125
+ label: 'Confirmo ciência sobre o tratamento dos meus dados no processo de onboarding.',
9126
+ controlType: 'checkbox',
9127
+ selectionMode: 'boolean',
9128
+ variant: 'consent',
9129
+ density: 'comfortable',
9130
+ required: true,
9131
+ requiredChecked: true,
9132
+ },
9133
+ ],
9134
+ },
9135
+ };
8956
9136
  const PRIVACY_CONSENT_EDITORIAL_TEMPLATE = {
8957
9137
  templateId: 'privacy-consent',
8958
9138
  version: '1.0.0',
@@ -9074,6 +9254,7 @@ const PRIVACY_CONSENT_EDITORIAL_TEMPLATE = {
9074
9254
  const EDITORIAL_FORM_TEMPLATE_CATALOG = [
9075
9255
  EVENT_REGISTRATION_EDITORIAL_TEMPLATE,
9076
9256
  EMPLOYEE_ONBOARDING_EDITORIAL_TEMPLATE,
9257
+ EMPLOYEE_ONBOARDING_GUIDED_EDITORIAL_TEMPLATE,
9077
9258
  PRIVACY_CONSENT_EDITORIAL_TEMPLATE,
9078
9259
  ];
9079
9260
  function getEditorialFormTemplateCatalog() {
@@ -9294,6 +9475,15 @@ const EDITORIAL_THEME_PRESETS = [
9294
9475
  pageSpacing: '24px',
9295
9476
  surfaceVariant: 'corporate',
9296
9477
  },
9478
+ {
9479
+ themeId: 'guided-onboarding',
9480
+ label: 'Guided Onboarding',
9481
+ description: 'Tema editorial para onboarding guiado com welcome hero, stepper protagonista e conclusão orientada.',
9482
+ shellVariant: 'wizard',
9483
+ maxWidth: '1120px',
9484
+ pageSpacing: '20px',
9485
+ surfaceVariant: 'corporate',
9486
+ },
9297
9487
  {
9298
9488
  themeId: 'compliance-plain',
9299
9489
  label: 'Compliance Plain',
@@ -9361,6 +9551,16 @@ const EDITORIAL_SOLUTION_PRESETS = [
9361
9551
  dataBlockOrder: ['identity-form', 'operations-form'],
9362
9552
  tags: ['hr', 'onboarding', 'corporate'],
9363
9553
  },
9554
+ {
9555
+ presetId: 'preset:employee-onboarding:guided',
9556
+ label: 'Employee Onboarding Guided',
9557
+ description: 'Variante guiada inspirada no onboarding validado, com welcome hero, seleção operacional e etapa final dedicada.',
9558
+ problemType: 'employee-onboarding',
9559
+ themePresetId: 'guided-onboarding',
9560
+ compliancePresetIds: ['privacy-consent', 'employment-documents'],
9561
+ dataBlockOrder: ['identity-form', 'operations-form'],
9562
+ tags: ['hr', 'onboarding', 'guided', 'wizard'],
9563
+ },
9364
9564
  {
9365
9565
  presetId: 'preset:privacy-consent:default',
9366
9566
  label: 'Privacy Consent Default',
@@ -9756,6 +9956,277 @@ const EMPLOYEE_ONBOARDING_EDITORIAL_SOLUTION = {
9756
9956
  tags: ['employee', 'onboarding', 'hr', 'documents'],
9757
9957
  owner: 'praxis-core',
9758
9958
  };
9959
+ const EMPLOYEE_ONBOARDING_GUIDED_EDITORIAL_SOLUTION = (() => {
9960
+ const solution = structuredClone(EMPLOYEE_ONBOARDING_EDITORIAL_SOLUTION);
9961
+ const journey = solution.journeys[0];
9962
+ solution.solutionId = 'employee-onboarding-guided';
9963
+ solution.title = 'Employee Onboarding Guided';
9964
+ solution.description =
9965
+ 'Variante editorial guiada de onboarding com welcome hero, coleta em duas etapas, revisão final e conclusão dedicada.';
9966
+ solution.presentation = {
9967
+ layout: {
9968
+ orientation: 'horizontal',
9969
+ density: 'relaxed',
9970
+ shellVariant: 'compact-form',
9971
+ maxWidth: '1120px',
9972
+ responsive: {
9973
+ mobileOrientation: 'vertical',
9974
+ collapseStepperBelow: '860px',
9975
+ },
9976
+ spacing: {
9977
+ pagePadding: '0px',
9978
+ shellPadding: '0px',
9979
+ sectionGap: '20px',
9980
+ blockGap: '20px',
9981
+ actionGap: '14px',
9982
+ },
9983
+ },
9984
+ theme: {
9985
+ color: {
9986
+ pageBackground: '#f7f2ea',
9987
+ surfacePrimary: '#ffffff',
9988
+ surfaceSecondary: '#f6f1e8',
9989
+ border: '#e7dece',
9990
+ textPrimary: '#22324f',
9991
+ textSecondary: '#7283a1',
9992
+ accent: '#2c4d90',
9993
+ accentContrast: '#ffffff',
9994
+ success: '#34b681',
9995
+ warning: '#d39a1a',
9996
+ danger: '#c84b4b',
9997
+ stepActive: '#2c4d90',
9998
+ stepCompleted: '#34b681',
9999
+ stepPending: '#eeece7',
10000
+ connector: '#7ed4b4',
10001
+ ctaPrimary: '#2c4d90',
10002
+ ctaPrimaryText: '#ffffff',
10003
+ },
10004
+ radius: {
10005
+ shell: '28px',
10006
+ card: '22px',
10007
+ button: '16px',
10008
+ field: '16px',
10009
+ step: '999px',
10010
+ },
10011
+ shadow: {
10012
+ shell: '0 26px 54px rgba(30, 44, 72, 0.08)',
10013
+ card: '0 16px 36px rgba(30, 44, 72, 0.08)',
10014
+ floating: '0 18px 42px rgba(44, 77, 144, 0.18)',
10015
+ },
10016
+ borderWidth: {
10017
+ shell: '1px',
10018
+ card: '1px',
10019
+ field: '1px',
10020
+ activeStep: '2px',
10021
+ },
10022
+ typography: {
10023
+ titleFontFamily: 'Georgia, Times New Roman, serif',
10024
+ bodyFontFamily: 'Segoe UI, Arial, sans-serif',
10025
+ titleWeight: 700,
10026
+ bodyWeight: 500,
10027
+ heroTitleSize: '3.25rem',
10028
+ stepTitleSize: '2.2rem',
10029
+ bodySize: '1rem',
10030
+ captionSize: '0.9rem',
10031
+ },
10032
+ },
10033
+ stepper: {
10034
+ visible: true,
10035
+ orientation: 'horizontal',
10036
+ variant: 'icon-label',
10037
+ size: 'lg',
10038
+ align: 'space-between',
10039
+ showLabels: true,
10040
+ showDescriptions: false,
10041
+ showConnectors: true,
10042
+ connectorStyle: 'solid',
10043
+ allowStepJump: false,
10044
+ },
10045
+ };
10046
+ solution.themePresets = EDITORIAL_THEME_PRESETS.filter((preset) => ['corporate-wizard', 'guided-onboarding'].includes(preset.themeId));
10047
+ solution.tags = ['employee', 'onboarding', 'hr', 'guided', 'wizard'];
10048
+ if (!journey) {
10049
+ return solution;
10050
+ }
10051
+ journey.label = 'Onboarding guiado';
10052
+ journey.description =
10053
+ 'Jornada editorial guiada da chegada do colaborador até a preparação operacional e confirmação final.';
10054
+ journey.steps = [
10055
+ {
10056
+ stepId: 'welcome',
10057
+ label: 'Boas-vindas',
10058
+ kind: 'intro',
10059
+ icon: { name: 'auto_awesome' },
10060
+ visual: {
10061
+ variant: 'hero-card',
10062
+ surface: 'soft',
10063
+ },
10064
+ blocks: [
10065
+ {
10066
+ blockId: 'guided:welcome-hero',
10067
+ kind: 'introHero',
10068
+ align: 'center',
10069
+ title: 'Bem-vindo à equipe!',
10070
+ subtitle: 'Estamos muito felizes em tê-lo conosco. Vamos preparar tudo para que sua jornada comece da melhor forma possível.',
10071
+ description: 'Este processo leva apenas alguns minutos e vai garantir que você tenha acesso ao que precisa desde o primeiro dia.',
10072
+ icon: {
10073
+ name: 'auto_awesome',
10074
+ },
10075
+ highlightItems: [
10076
+ {
10077
+ id: 'guided-welcome-access',
10078
+ title: 'Acesso seguro configurado',
10079
+ icon: { name: 'verified_user' },
10080
+ },
10081
+ {
10082
+ id: 'guided-welcome-team',
10083
+ title: 'Integração com a equipe',
10084
+ icon: { name: 'groups' },
10085
+ },
10086
+ {
10087
+ id: 'guided-welcome-ready',
10088
+ title: 'Pronto para começar',
10089
+ icon: { name: 'rocket_launch' },
10090
+ },
10091
+ ],
10092
+ primaryAction: {
10093
+ label: 'Começar onboarding',
10094
+ actionId: 'next-step',
10095
+ appearance: 'primary',
10096
+ icon: { name: 'arrow_forward' },
10097
+ },
10098
+ },
10099
+ ],
10100
+ },
10101
+ {
10102
+ stepId: 'identity',
10103
+ label: 'Identificação',
10104
+ kind: 'form',
10105
+ icon: { name: 'person' },
10106
+ visual: {
10107
+ variant: 'form-card',
10108
+ surface: 'elevated',
10109
+ columns: 2,
10110
+ },
10111
+ blocks: [
10112
+ {
10113
+ blockId: 'identity-form',
10114
+ kind: 'dataCollection',
10115
+ title: 'Identificação',
10116
+ description: 'Preencha seus dados para que possamos configurar seu acesso.',
10117
+ formBlockId: 'identity-form',
10118
+ surface: 'plain',
10119
+ },
10120
+ ],
10121
+ },
10122
+ {
10123
+ stepId: 'operations',
10124
+ label: 'Operação inicial',
10125
+ kind: 'mixed',
10126
+ icon: { name: 'tune' },
10127
+ visual: {
10128
+ variant: 'selection-grid',
10129
+ surface: 'elevated',
10130
+ columns: 2,
10131
+ },
10132
+ blocks: [
10133
+ {
10134
+ blockId: 'guided:operations-equipment',
10135
+ kind: 'selectionCards',
10136
+ title: 'Equipamentos necessários',
10137
+ field: 'selectedEquipment',
10138
+ selectionMode: 'multiple',
10139
+ columns: 2,
10140
+ style: {
10141
+ iconPosition: 'top',
10142
+ variant: 'accent',
10143
+ },
10144
+ items: [
10145
+ { id: 'notebook', label: 'Notebook', value: 'NOTEBOOK', icon: { name: 'laptop_mac' } },
10146
+ { id: 'monitor', label: 'Monitor externo', value: 'MONITOR', icon: { name: 'desktop_windows' } },
10147
+ { id: 'headset', label: 'Headset', value: 'HEADSET', icon: { name: 'headset_mic' } },
10148
+ { id: 'badge', label: 'Crachá de acesso', value: 'BADGE', icon: { name: 'badge' } },
10149
+ ],
10150
+ },
10151
+ {
10152
+ blockId: 'operations-form',
10153
+ kind: 'dataCollection',
10154
+ title: 'Operação inicial',
10155
+ description: 'Configure os recursos necessários para o primeiro dia.',
10156
+ formBlockId: 'operations-form',
10157
+ surface: 'plain',
10158
+ },
10159
+ ],
10160
+ },
10161
+ {
10162
+ stepId: 'confirmation',
10163
+ label: 'Confirmação',
10164
+ kind: 'review',
10165
+ icon: { name: 'task_alt' },
10166
+ visual: {
10167
+ variant: 'review-sections',
10168
+ surface: 'soft',
10169
+ },
10170
+ blocks: [
10171
+ {
10172
+ blockId: 'guided:review',
10173
+ kind: 'reviewSections',
10174
+ title: 'Confirmação',
10175
+ description: 'Revise suas informações antes de finalizar.',
10176
+ sections: [
10177
+ {
10178
+ id: 'review-identity',
10179
+ title: 'Identificação',
10180
+ icon: { name: 'person' },
10181
+ fields: [
10182
+ { key: 'fullName', label: 'Nome', valuePath: 'formData.fullName' },
10183
+ { key: 'corporateEmail', label: 'E-mail', valuePath: 'formData.corporateEmail', format: 'email' },
10184
+ { key: 'phoneNumber', label: 'Telefone', valuePath: 'formData.phoneNumber', hideWhenEmpty: true, format: 'phone' },
10185
+ { key: 'department', label: 'Departamento', valuePath: 'formData.department' },
10186
+ { key: 'role', label: 'Cargo', valuePath: 'formData.role' },
10187
+ { key: 'startDate', label: 'Início', valuePath: 'formData.startDate', format: 'date' },
10188
+ ],
10189
+ },
10190
+ {
10191
+ id: 'review-operations',
10192
+ title: 'Operação inicial',
10193
+ icon: { name: 'tune' },
10194
+ fields: [
10195
+ { key: 'selectedEquipment', label: 'Equipamentos', valuePath: 'formData.selectedEquipment' },
10196
+ { key: 'workModel', label: 'Modelo', valuePath: 'formData.workModel' },
10197
+ { key: 'accessibilityNotes', label: 'Observações', valuePath: 'formData.accessibilityNotes', hideWhenEmpty: true },
10198
+ { key: 'privacyConsent', label: 'Consentimento', valuePath: 'formData.privacyConsent', format: 'boolean' },
10199
+ ],
10200
+ },
10201
+ ],
10202
+ },
10203
+ ],
10204
+ },
10205
+ {
10206
+ stepId: 'success',
10207
+ label: 'Tudo pronto',
10208
+ kind: 'confirmation',
10209
+ icon: { name: 'celebration' },
10210
+ visual: {
10211
+ variant: 'success-panel',
10212
+ textAlign: 'center',
10213
+ emphasis: 'high',
10214
+ },
10215
+ blocks: [
10216
+ {
10217
+ blockId: 'guided:success',
10218
+ kind: 'successPanel',
10219
+ title: 'Tudo pronto!',
10220
+ description: 'Seu onboarding foi concluído com sucesso. Nossa equipe já está preparando tudo para o seu primeiro dia.',
10221
+ secondaryMessage: 'Você receberá um e-mail com os próximos passos.',
10222
+ tone: 'success',
10223
+ icon: { name: 'celebration' },
10224
+ },
10225
+ ],
10226
+ },
10227
+ ];
10228
+ return solution;
10229
+ })();
9759
10230
  const PRIVACY_CONSENT_EDITORIAL_SOLUTION = {
9760
10231
  solutionId: 'privacy-consent',
9761
10232
  version: '1.0.0',
@@ -9876,6 +10347,7 @@ const PRIVACY_CONSENT_EDITORIAL_SOLUTION = {
9876
10347
  const EDITORIAL_SOLUTION_CATALOG = [
9877
10348
  EVENT_REGISTRATION_EDITORIAL_SOLUTION,
9878
10349
  EMPLOYEE_ONBOARDING_EDITORIAL_SOLUTION,
10350
+ EMPLOYEE_ONBOARDING_GUIDED_EDITORIAL_SOLUTION,
9879
10351
  PRIVACY_CONSENT_EDITORIAL_SOLUTION,
9880
10352
  ];
9881
10353
  function getEditorialSolutionCatalog() {
@@ -17110,5 +17582,5 @@ function provideHookWhitelist(allowed) {
17110
17582
  * Generated bundle index. Do not edit.
17111
17583
  */
17112
17584
 
17113
- 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$2 as applyLocalCustomizations, applyLocalCustomizations$1 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 };
17585
+ 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, EMPLOYEE_ONBOARDING_GUIDED_EDITORIAL_SOLUTION, EMPLOYEE_ONBOARDING_GUIDED_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$2 as applyLocalCustomizations, applyLocalCustomizations$1 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 };
17114
17586
  //# sourceMappingURL=praxisui-core.mjs.map