@praxisui/core 1.0.0-beta.62 → 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',
@@ -9510,6 +9710,57 @@ const EMPLOYEE_ONBOARDING_EDITORIAL_SOLUTION = {
9510
9710
  problemType: 'employee-onboarding',
9511
9711
  title: 'Employee Onboarding',
9512
9712
  description: 'Solução editorial para admissão, pré-boarding e coleta inicial de dados de colaboradores com narrativa corporativa.',
9713
+ presentation: {
9714
+ layout: {
9715
+ orientation: 'horizontal',
9716
+ density: 'comfortable',
9717
+ shellVariant: 'corporate-wizard',
9718
+ maxWidth: '980px',
9719
+ responsive: {
9720
+ mobileOrientation: 'vertical',
9721
+ collapseStepperBelow: '768px',
9722
+ },
9723
+ },
9724
+ theme: {
9725
+ color: {
9726
+ pageBackground: '#f7f4ee',
9727
+ surfacePrimary: '#ffffff',
9728
+ surfaceSecondary: '#ffffff',
9729
+ border: '#dde3ef',
9730
+ textPrimary: '#24324a',
9731
+ textSecondary: '#7b8aa0',
9732
+ accent: '#264a8a',
9733
+ accentContrast: '#ffffff',
9734
+ success: '#35b37e',
9735
+ warning: '#d39a1a',
9736
+ danger: '#c84b4b',
9737
+ stepCompleted: '#35b37e',
9738
+ stepActive: '#264a8a',
9739
+ stepPending: '#eef1f7',
9740
+ connector: '#8fd8c0',
9741
+ ctaPrimary: '#264a8a',
9742
+ ctaPrimaryText: '#ffffff',
9743
+ },
9744
+ radius: {
9745
+ shell: '28px',
9746
+ card: '22px',
9747
+ button: '14px',
9748
+ step: '999px',
9749
+ },
9750
+ shadow: {
9751
+ shell: '0 24px 60px rgba(25, 42, 70, 0.10)',
9752
+ card: '0 10px 30px rgba(25, 42, 70, 0.06)',
9753
+ },
9754
+ },
9755
+ stepper: {
9756
+ visible: true,
9757
+ orientation: 'horizontal',
9758
+ variant: 'icon-label',
9759
+ showConnectors: true,
9760
+ connectorStyle: 'solid',
9761
+ allowStepJump: false,
9762
+ },
9763
+ },
9513
9764
  contextContract: [
9514
9765
  { key: 'company.name', type: 'string', required: true },
9515
9766
  { key: 'company.hrEmail', type: 'string' },
@@ -9526,43 +9777,86 @@ const EMPLOYEE_ONBOARDING_EDITORIAL_SOLUTION = {
9526
9777
  {
9527
9778
  stepId: 'welcome',
9528
9779
  label: 'Boas-vindas',
9780
+ kind: 'intro',
9781
+ icon: { name: 'auto_awesome' },
9782
+ visual: {
9783
+ variant: 'hero-card',
9784
+ textAlign: 'center',
9785
+ emphasis: 'high',
9786
+ },
9529
9787
  blocks: [
9530
9788
  {
9531
- blockId: 'onboarding:hero',
9532
- kind: 'hero',
9533
- title: 'Boas-vindas ao processo de',
9534
- titleAccent: 'onboarding',
9789
+ blockId: 'onboarding:intro',
9790
+ kind: 'introHero',
9791
+ title: 'Bem-vindo à equipe',
9535
9792
  subtitle: 'Template corporativo',
9536
- description: 'Base para admissão, conferência cadastral, preferências de trabalho e aceite de políticas internas.',
9537
- surface: 'card',
9538
- tone: 'institutional',
9539
- },
9540
- {
9541
- blockId: 'onboarding:summary',
9542
- kind: 'richText',
9543
- title: 'O que será coletado',
9544
- subtitle: 'Resumo do fluxo',
9545
- contentFormat: 'markdown',
9546
- content: '- dados pessoais e de contato\n- preferências operacionais iniciais\n- anexos e termos obrigatórios',
9547
- tone: 'muted',
9548
- surface: 'plain',
9793
+ description: 'Estrutura editorial reutilizável para recepção, cadastro inicial, preferências operacionais e confirmação final.',
9794
+ icon: { name: 'sparkles' },
9795
+ align: 'center',
9796
+ primaryAction: {
9797
+ label: 'Iniciar onboarding',
9798
+ actionId: 'next-step',
9799
+ appearance: 'primary',
9800
+ icon: { name: 'arrow_forward' },
9801
+ },
9802
+ highlightItems: [
9803
+ {
9804
+ id: 'setup',
9805
+ title: 'Setup preparado',
9806
+ description: 'Os dados desta jornada alimentam o provisionamento inicial.',
9807
+ icon: { name: 'shield' },
9808
+ },
9809
+ {
9810
+ id: 'team',
9811
+ title: 'Integração guiada',
9812
+ description: 'O fluxo orienta o colaborador até a preparação operacional.',
9813
+ icon: { name: 'group' },
9814
+ },
9815
+ {
9816
+ id: 'start',
9817
+ title: 'Primeiro dia pronto',
9818
+ description: 'As escolhas ficam disponíveis na revisão final.',
9819
+ icon: { name: 'rocket_launch' },
9820
+ },
9821
+ ],
9549
9822
  },
9550
9823
  {
9551
- blockId: 'onboarding:timeline',
9552
- kind: 'timelineSteps',
9553
- title: 'Como funciona a jornada',
9554
- steps: [
9555
- { id: 'identity', label: 'Identificação', description: 'Cadastro inicial e dados pessoais.' },
9556
- { id: 'operations', label: 'Preparação operacional', description: 'Equipamentos, endereço e preferências.' },
9557
- { id: 'confirmation', label: 'Confirmação', description: 'Revisão final e aceite interno.' },
9824
+ blockId: 'onboarding:highlights',
9825
+ kind: 'infoCards',
9826
+ title: 'O que você resolve aqui',
9827
+ items: [
9828
+ {
9829
+ id: 'identity-highlight',
9830
+ title: 'Identificação',
9831
+ description: 'Cadastro inicial, contatos e dados básicos.',
9832
+ icon: 'badge',
9833
+ },
9834
+ {
9835
+ id: 'operations-highlight',
9836
+ title: 'Operação inicial',
9837
+ description: 'Equipamentos, modelo de trabalho e observações.',
9838
+ icon: 'tune',
9839
+ },
9840
+ {
9841
+ id: 'confirmation-highlight',
9842
+ title: 'Confirmação',
9843
+ description: 'Resumo final antes do encerramento da jornada.',
9844
+ icon: 'task_alt',
9845
+ },
9558
9846
  ],
9559
- surface: 'card',
9560
9847
  },
9561
9848
  ],
9562
9849
  },
9563
9850
  {
9564
9851
  stepId: 'identity',
9565
9852
  label: 'Identificação',
9853
+ kind: 'form',
9854
+ icon: { name: 'person' },
9855
+ visual: {
9856
+ variant: 'form-card',
9857
+ surface: 'elevated',
9858
+ columns: 2,
9859
+ },
9566
9860
  blocks: [
9567
9861
  {
9568
9862
  blockId: 'identity-form',
@@ -9576,14 +9870,32 @@ const EMPLOYEE_ONBOARDING_EDITORIAL_SOLUTION = {
9576
9870
  {
9577
9871
  stepId: 'operations',
9578
9872
  label: 'Operação inicial',
9873
+ kind: 'mixed',
9874
+ icon: { name: 'tune' },
9875
+ visual: {
9876
+ variant: 'selection-grid',
9877
+ surface: 'elevated',
9878
+ columns: 2,
9879
+ },
9579
9880
  blocks: [
9580
9881
  {
9581
- blockId: 'operations:notice',
9582
- kind: 'legalNotice',
9583
- title: 'Uso interno',
9584
- content: 'As informações deste fluxo são usadas exclusivamente para cadastro interno, provisionamento e comunicação de onboarding.',
9585
- tone: 'default',
9586
- surface: 'plain',
9882
+ blockId: 'operations:equipment',
9883
+ kind: 'selectionCards',
9884
+ title: 'Equipamentos iniciais',
9885
+ description: 'Selecione os itens mais relevantes para o setup do colaborador.',
9886
+ field: 'selectedEquipment',
9887
+ selectionMode: 'multiple',
9888
+ columns: 2,
9889
+ style: {
9890
+ iconPosition: 'top',
9891
+ variant: 'accent',
9892
+ },
9893
+ items: [
9894
+ { id: 'notebook', label: 'Notebook', value: 'NOTEBOOK', icon: { name: 'laptop_mac' } },
9895
+ { id: 'monitor', label: 'Monitor externo', value: 'MONITOR', icon: { name: 'desktop_windows' } },
9896
+ { id: 'headset', label: 'Headset', value: 'HEADSET', icon: { name: 'headset_mic' } },
9897
+ { id: 'badge', label: 'Cracha de acesso', value: 'BADGE', icon: { name: 'badge' } },
9898
+ ],
9587
9899
  },
9588
9900
  {
9589
9901
  blockId: 'operations-form',
@@ -9597,22 +9909,42 @@ const EMPLOYEE_ONBOARDING_EDITORIAL_SOLUTION = {
9597
9909
  {
9598
9910
  stepId: 'confirmation',
9599
9911
  label: 'Confirmação',
9912
+ kind: 'review',
9913
+ icon: { name: 'task_alt' },
9914
+ visual: {
9915
+ variant: 'review-sections',
9916
+ surface: 'soft',
9917
+ },
9600
9918
  blocks: [
9601
9919
  {
9602
- blockId: 'onboarding:review-summary',
9603
- kind: 'reviewSummary',
9604
- title: 'Checklist final do onboarding',
9605
- fields: [
9606
- { key: 'fullName', label: 'Nome completo', valuePath: 'formData.fullName', fallback: '-' },
9607
- { key: 'corporateEmail', label: 'E-mail corporativo', valuePath: 'formData.corporateEmail', fallback: '-' },
9608
- { key: 'workModel', label: 'Modelo de trabalho', valuePath: 'formData.workModel', fallback: '-' },
9609
- ],
9610
- checklist: [
9611
- 'Os dados pessoais foram revisados.',
9612
- 'As necessidades operacionais foram registradas.',
9613
- 'O aceite de privacidade foi confirmado.',
9920
+ blockId: 'onboarding:review-sections',
9921
+ kind: 'reviewSections',
9922
+ title: 'Resumo final do onboarding',
9923
+ description: 'Revise os dados antes de concluir a preparação inicial.',
9924
+ sections: [
9925
+ {
9926
+ id: 'review-identity',
9927
+ title: 'Identificação',
9928
+ icon: { name: 'person' },
9929
+ fields: [
9930
+ { key: 'fullName', label: 'Nome completo', valuePath: 'formData.fullName' },
9931
+ { key: 'corporateEmail', label: 'E-mail corporativo', valuePath: 'formData.corporateEmail' },
9932
+ { key: 'phoneNumber', label: 'Telefone', valuePath: 'formData.phoneNumber', hideWhenEmpty: true },
9933
+ { key: 'workModel', label: 'Modelo de trabalho', valuePath: 'formData.workModel' },
9934
+ ],
9935
+ },
9936
+ {
9937
+ id: 'review-operations',
9938
+ title: 'Operação inicial',
9939
+ icon: { name: 'tune' },
9940
+ fields: [
9941
+ { key: 'selectedEquipment', label: 'Equipamentos', valuePath: 'formData.selectedEquipment', hideWhenEmpty: true },
9942
+ { key: 'needsEquipment', label: 'Necessita envio de equipamento', valuePath: 'formData.needsEquipment', hideWhenEmpty: true },
9943
+ { key: 'shippingAddress', label: 'Endereco para envio', valuePath: 'formData.shippingAddress', hideWhenEmpty: true },
9944
+ { key: 'accessibilityNotes', label: 'Observacoes adicionais', valuePath: 'formData.accessibilityNotes', hideWhenEmpty: true },
9945
+ ],
9946
+ },
9614
9947
  ],
9615
- surface: 'card',
9616
9948
  },
9617
9949
  ],
9618
9950
  },
@@ -9624,6 +9956,277 @@ const EMPLOYEE_ONBOARDING_EDITORIAL_SOLUTION = {
9624
9956
  tags: ['employee', 'onboarding', 'hr', 'documents'],
9625
9957
  owner: 'praxis-core',
9626
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
+ })();
9627
10230
  const PRIVACY_CONSENT_EDITORIAL_SOLUTION = {
9628
10231
  solutionId: 'privacy-consent',
9629
10232
  version: '1.0.0',
@@ -9744,6 +10347,7 @@ const PRIVACY_CONSENT_EDITORIAL_SOLUTION = {
9744
10347
  const EDITORIAL_SOLUTION_CATALOG = [
9745
10348
  EVENT_REGISTRATION_EDITORIAL_SOLUTION,
9746
10349
  EMPLOYEE_ONBOARDING_EDITORIAL_SOLUTION,
10350
+ EMPLOYEE_ONBOARDING_GUIDED_EDITORIAL_SOLUTION,
9747
10351
  PRIVACY_CONSENT_EDITORIAL_SOLUTION,
9748
10352
  ];
9749
10353
  function getEditorialSolutionCatalog() {
@@ -16978,5 +17582,5 @@ function provideHookWhitelist(allowed) {
16978
17582
  * Generated bundle index. Do not edit.
16979
17583
  */
16980
17584
 
16981
- 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 };
16982
17586
  //# sourceMappingURL=praxisui-core.mjs.map