@hed-hog/lms 0.0.330 → 0.0.338
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/dist/class-group/class-group.controller.d.ts +3 -3
- package/dist/class-group/class-group.service.d.ts +3 -3
- package/dist/course/course.service.d.ts.map +1 -1
- package/dist/course/course.service.js +12 -20
- package/dist/course/course.service.js.map +1 -1
- package/dist/enterprise/enterprise.controller.d.ts +72 -0
- package/dist/enterprise/enterprise.controller.d.ts.map +1 -1
- package/dist/enterprise/enterprise.controller.js +10 -0
- package/dist/enterprise/enterprise.controller.js.map +1 -1
- package/dist/enterprise/enterprise.service.d.ts +78 -0
- package/dist/enterprise/enterprise.service.d.ts.map +1 -1
- package/dist/enterprise/enterprise.service.js +413 -40
- package/dist/enterprise/enterprise.service.js.map +1 -1
- package/dist/enterprise/training/training-admin.controller.d.ts +6 -3
- package/dist/enterprise/training/training-admin.controller.d.ts.map +1 -1
- package/dist/enterprise/training/training-admin.controller.js +10 -6
- package/dist/enterprise/training/training-admin.controller.js.map +1 -1
- package/dist/enterprise/training/training-admin.service.d.ts +8 -2
- package/dist/enterprise/training/training-admin.service.d.ts.map +1 -1
- package/dist/enterprise/training/training-admin.service.js +108 -52
- package/dist/enterprise/training/training-admin.service.js.map +1 -1
- package/dist/enterprise/training/training-viewer.controller.d.ts +3 -0
- package/dist/enterprise/training/training-viewer.controller.d.ts.map +1 -1
- package/dist/evaluation/evaluation.controller.d.ts +4 -4
- package/dist/evaluation/evaluation.service.d.ts +4 -4
- package/dist/instructor/dto/create-instructor-skill.dto.d.ts +0 -4
- package/dist/instructor/dto/create-instructor-skill.dto.d.ts.map +1 -1
- package/dist/instructor/dto/create-instructor-skill.dto.js +0 -21
- package/dist/instructor/dto/create-instructor-skill.dto.js.map +1 -1
- package/dist/instructor/dto/update-instructor-skill.dto.d.ts +0 -4
- package/dist/instructor/dto/update-instructor-skill.dto.d.ts.map +1 -1
- package/dist/instructor/dto/update-instructor-skill.dto.js +0 -22
- package/dist/instructor/dto/update-instructor-skill.dto.js.map +1 -1
- package/dist/instructor/instructor-skill.controller.d.ts +4 -4
- package/dist/instructor/instructor-skill.service.d.ts +4 -7
- package/dist/instructor/instructor-skill.service.d.ts.map +1 -1
- package/dist/instructor/instructor-skill.service.js +2 -89
- package/dist/instructor/instructor-skill.service.js.map +1 -1
- package/dist/instructor/instructor.controller.d.ts +20 -0
- package/dist/instructor/instructor.controller.d.ts.map +1 -1
- package/dist/instructor/instructor.controller.js +19 -0
- package/dist/instructor/instructor.controller.js.map +1 -1
- package/dist/instructor/instructor.service.d.ts +25 -0
- package/dist/instructor/instructor.service.d.ts.map +1 -1
- package/dist/instructor/instructor.service.js +70 -18
- package/dist/instructor/instructor.service.js.map +1 -1
- package/dist/lms.module.d.ts.map +1 -1
- package/dist/lms.module.js.map +1 -1
- package/hedhog/data/route.yaml +23 -1
- package/hedhog/frontend/app/_components/class-form-sheet.tsx.ejs +42 -24
- package/hedhog/frontend/app/_components/create-lms-instructor-sheet.tsx.ejs +591 -0
- package/hedhog/frontend/app/certificates/issued/page.tsx.ejs +6 -1
- package/hedhog/frontend/app/certificates/models/page.tsx.ejs +7 -2
- package/hedhog/frontend/app/classes/[id]/page.tsx.ejs +17 -17
- package/hedhog/frontend/app/classes/page.tsx.ejs +6 -1
- package/hedhog/frontend/app/courses/[id]/_components/CourseClassificationCard.tsx.ejs +3 -33
- package/hedhog/frontend/app/courses/[id]/_components/CourseContentCard.tsx.ejs +9 -9
- package/hedhog/frontend/app/courses/[id]/_components/CourseMainInfoCard.tsx.ejs +109 -0
- package/hedhog/frontend/app/courses/[id]/_components/CourseMultiEntityPicker.tsx.ejs +42 -15
- package/hedhog/frontend/app/courses/[id]/_components/CourseRelationsCard.tsx.ejs +76 -81
- package/hedhog/frontend/app/courses/[id]/_components/CourseSummaryCard.tsx.ejs +60 -0
- package/hedhog/frontend/app/courses/[id]/page.tsx.ejs +3 -3
- package/hedhog/frontend/app/courses/[id]/structure/_components/course-scheduled-classes-tab.tsx.ejs +406 -0
- package/hedhog/frontend/app/courses/[id]/structure/_components/course-tree-dnd.tsx.ejs +1 -1
- package/hedhog/frontend/app/courses/[id]/structure/_components/course-tree.tsx.ejs +134 -0
- package/hedhog/frontend/app/courses/[id]/structure/_components/detail-course.tsx.ejs +113 -0
- package/hedhog/frontend/app/courses/[id]/structure/_components/detail-lesson.tsx.ejs +314 -0
- package/hedhog/frontend/app/courses/[id]/structure/_components/detail-session.tsx.ejs +174 -0
- package/hedhog/frontend/app/courses/[id]/structure/_components/editor-course.tsx.ejs +242 -33
- package/hedhog/frontend/app/courses/[id]/structure/_components/editor-lesson.tsx.ejs +228 -152
- package/hedhog/frontend/app/courses/[id]/structure/_components/mock-data.ts.ejs +185 -0
- package/hedhog/frontend/app/courses/[id]/structure/_components/shortcuts-help.tsx.ejs +71 -31
- package/hedhog/frontend/app/courses/page.tsx.ejs +6 -1
- package/hedhog/frontend/app/enterprise/[id]/page.tsx.ejs +37 -41
- package/hedhog/frontend/app/enterprise/_components/enterprise-activity-timeline.tsx.ejs +87 -0
- package/hedhog/frontend/app/enterprise/_components/enterprise-admin-create-sheet.tsx.ejs +4 -0
- package/hedhog/frontend/app/enterprise/_components/enterprise-administrators-tab.tsx.ejs +31 -5
- package/hedhog/frontend/app/enterprise/_components/enterprise-classes-tab.tsx.ejs +79 -20
- package/hedhog/frontend/app/enterprise/_components/enterprise-company-identity-card.tsx.ejs +11 -2
- package/hedhog/frontend/app/enterprise/_components/enterprise-course-edit-sheet.tsx.ejs +201 -0
- package/hedhog/frontend/app/enterprise/_components/enterprise-courses-tab.tsx.ejs +55 -24
- package/hedhog/frontend/app/enterprise/_components/enterprise-detail-sheet.tsx.ejs +430 -296
- package/hedhog/frontend/app/enterprise/_components/enterprise-mocks.ts.ejs +277 -0
- package/hedhog/frontend/app/enterprise/_components/enterprise-overview-analytics.tsx.ejs +205 -0
- package/hedhog/frontend/app/enterprise/_components/enterprise-person-edit-sheet.tsx.ejs +97 -0
- package/hedhog/frontend/app/enterprise/_components/enterprise-sheet.tsx.ejs +82 -57
- package/hedhog/frontend/app/enterprise/_components/enterprise-student-create-sheet.tsx.ejs +4 -0
- package/hedhog/frontend/app/enterprise/_components/enterprise-students-tab.tsx.ejs +60 -22
- package/hedhog/frontend/app/enterprise/_components/enterprise-types.ts.ejs +54 -0
- package/hedhog/frontend/app/enterprise/_components/enterprise-user-create-sheet.tsx.ejs +211 -0
- package/hedhog/frontend/app/enterprise/page.tsx.ejs +39 -7
- package/hedhog/frontend/app/evaluations/_components/evaluation-topic-form-sheet.tsx.ejs +1 -1
- package/hedhog/frontend/app/exams/[id]/questions/page.tsx.ejs +6 -1
- package/hedhog/frontend/app/exams/page.tsx.ejs +12 -3
- package/hedhog/frontend/app/instructor-skills/page.tsx.ejs +51 -104
- package/hedhog/frontend/app/instructors/_components/instructor-form-sheet.tsx.ejs +712 -427
- package/hedhog/frontend/app/instructors/page.tsx.ejs +77 -53
- package/hedhog/frontend/app/paths/page.tsx.ejs +14 -5
- package/hedhog/frontend/app/reports/courses/page.tsx.ejs +5 -5
- package/hedhog/frontend/app/reports/dashboard/page.tsx.ejs +8 -8
- package/hedhog/frontend/app/reports/evaluations/page.tsx.ejs +6 -1
- package/hedhog/frontend/app/reports/page.tsx.ejs +7 -7
- package/hedhog/frontend/app/reports/students/page.tsx.ejs +6 -6
- package/hedhog/frontend/app/training/page.tsx.ejs +8 -3
- package/hedhog/frontend/messages/en.json +394 -55
- package/hedhog/frontend/messages/pt.json +389 -48
- package/hedhog/frontend/widgets/active-classes-kpi.tsx.ejs +1 -1
- package/hedhog/frontend/widgets/active-courses-kpi.tsx.ejs +1 -1
- package/hedhog/frontend/widgets/approval-rate-kpi.tsx.ejs +1 -1
- package/hedhog/frontend/widgets/class-calendar.tsx.ejs +2 -2
- package/hedhog/frontend/widgets/completion-rate-kpi.tsx.ejs +1 -1
- package/hedhog/frontend/widgets/issued-certificates-kpi.tsx.ejs +1 -1
- package/hedhog/frontend/widgets/total-students-kpi.tsx.ejs +1 -1
- package/hedhog/table/enterprise_student_license_event.yaml +30 -0
- package/hedhog/table/instructor_qualification.yaml +1 -1
- package/hedhog/table/instructor_skill.yaml +0 -11
- package/package.json +8 -8
- package/src/course/course.service.ts +12 -24
- package/src/enterprise/enterprise.controller.ts +5 -0
- package/src/enterprise/enterprise.service.ts +507 -29
- package/src/enterprise/training/training-admin.controller.ts +4 -0
- package/src/enterprise/training/training-admin.service.ts +115 -51
- package/src/instructor/dto/create-instructor-skill.dto.ts +0 -17
- package/src/instructor/dto/update-instructor-skill.dto.ts +0 -18
- package/src/instructor/instructor-skill.service.ts +2 -97
- package/src/instructor/instructor.controller.ts +16 -0
- package/src/instructor/instructor.service.ts +85 -10
- package/src/lms.module.ts +1 -0
|
@@ -732,6 +732,36 @@
|
|
|
732
732
|
"footer": "Atalhos são desativados quando o foco está em inputs, exceto Ctrl+S, Ctrl+F e Ctrl+/ que funcionam em qualquer contexto.",
|
|
733
733
|
"triggerTitle": "Atalhos de teclado (Ctrl+/)",
|
|
734
734
|
"triggerLabel": "Atalhos",
|
|
735
|
+
"groups": {
|
|
736
|
+
"navigation": {
|
|
737
|
+
"heading": "Navegação",
|
|
738
|
+
"items": {
|
|
739
|
+
"navigate": "Navegar entre itens",
|
|
740
|
+
"expand": "Expandir sessão selecionada",
|
|
741
|
+
"collapse": "Recolher sessão / ir para pai",
|
|
742
|
+
"focusEditor": "Focar primeiro campo do editor"
|
|
743
|
+
}
|
|
744
|
+
},
|
|
745
|
+
"actions": {
|
|
746
|
+
"heading": "Ações",
|
|
747
|
+
"items": {
|
|
748
|
+
"savePanel": "Salvar formulário do painel",
|
|
749
|
+
"createItem": "Criar nova sessão ou aula",
|
|
750
|
+
"copyItem": "Copiar item selecionado",
|
|
751
|
+
"pasteItem": "Colar no contexto atual",
|
|
752
|
+
"duplicateItem": "Duplicar item",
|
|
753
|
+
"deleteItems": "Excluir item(ns) selecionado(s)"
|
|
754
|
+
}
|
|
755
|
+
},
|
|
756
|
+
"search": {
|
|
757
|
+
"heading": "Busca e Interface",
|
|
758
|
+
"items": {
|
|
759
|
+
"focusSearch": "Focar campo de busca",
|
|
760
|
+
"openHelp": "Abrir ajuda de atalhos",
|
|
761
|
+
"clearState": "Limpar busca / seleção / foco"
|
|
762
|
+
}
|
|
763
|
+
}
|
|
764
|
+
},
|
|
735
765
|
"deleteTitle": "Excluir {label}?",
|
|
736
766
|
"deleteDescription": "Esta ação não pode ser desfeita.",
|
|
737
767
|
"items": "itens",
|
|
@@ -942,6 +972,73 @@
|
|
|
942
972
|
"providers": {
|
|
943
973
|
"custom": "Personalizado"
|
|
944
974
|
},
|
|
975
|
+
"questionEditor": {
|
|
976
|
+
"identification": "Identificação",
|
|
977
|
+
"publication": "Publicação",
|
|
978
|
+
"productionStatus": "Status de produção",
|
|
979
|
+
"visibility": "Visibilidade",
|
|
980
|
+
"restricted": "Restrito",
|
|
981
|
+
"addInstructor": "Adicionar instrutor...",
|
|
982
|
+
"searchInstructor": "Buscar instrutor...",
|
|
983
|
+
"noInstructorsAvailable": "Nenhum instrutor disponível",
|
|
984
|
+
"instructorEntity": "Instrutor",
|
|
985
|
+
"removeInstructor": "Remover {name}",
|
|
986
|
+
"uploading": "Enviando...",
|
|
987
|
+
"dropFile": "Solte o arquivo aqui",
|
|
988
|
+
"clickToSelect": "ou clique para selecionar",
|
|
989
|
+
"noLinkedResources": "Nenhum recurso vinculado.",
|
|
990
|
+
"openInNewTab": "Abrir {name} em nova aba",
|
|
991
|
+
"downloadResource": "Baixar {name}",
|
|
992
|
+
"removeResource": "Remover {name}",
|
|
993
|
+
"resourceUploadFailed": "{count} arquivo(s) não puderam ser enviados",
|
|
994
|
+
"resourceRemoveError": "Erro ao remover arquivo",
|
|
995
|
+
"resourceDownloadSoon": "Download de {name} em breve",
|
|
996
|
+
"newQuestion": "Nova questão",
|
|
997
|
+
"editQuestion": "Editar questão",
|
|
998
|
+
"selectQuestion": "Selecionar questão...",
|
|
999
|
+
"searchQuestion": "Buscar questão...",
|
|
1000
|
+
"noQuestionsFound": "Nenhuma questão encontrada",
|
|
1001
|
+
"questionEntity": "Questão",
|
|
1002
|
+
"pointsSuffix": "pt",
|
|
1003
|
+
"statement": "Enunciado",
|
|
1004
|
+
"type": "Tipo",
|
|
1005
|
+
"points": "Pontuação",
|
|
1006
|
+
"alternatives": "Alternativas",
|
|
1007
|
+
"add": "Adicionar",
|
|
1008
|
+
"dragAlternative": "Arrastar alternativa",
|
|
1009
|
+
"alternativeTextPlaceholder": "Texto da alternativa...",
|
|
1010
|
+
"markAsIncorrect": "Marcar como incorreta",
|
|
1011
|
+
"markAsCorrect": "Marcar como correta",
|
|
1012
|
+
"removeAlternative": "Remover alternativa",
|
|
1013
|
+
"correctAnswer": "Resposta correta",
|
|
1014
|
+
"blanks": "Lacunas",
|
|
1015
|
+
"blankLabel": "Lacuna {count}",
|
|
1016
|
+
"removeBlank": "Remover lacuna",
|
|
1017
|
+
"correctAnswerPlaceholder": "Resposta correta",
|
|
1018
|
+
"alternativesPlaceholder": "Alternativas separadas por vírgula (opcional)",
|
|
1019
|
+
"matchingPairs": "Pares de associação",
|
|
1020
|
+
"left": "Esquerda",
|
|
1021
|
+
"right": "Direita",
|
|
1022
|
+
"removePair": "Remover par",
|
|
1023
|
+
"essayHelp": "Questão dissertativa — o aluno responderá em texto livre.",
|
|
1024
|
+
"saveChanges": "Salvar alterações",
|
|
1025
|
+
"createQuestion": "Criar questão",
|
|
1026
|
+
"created": "Questão criada",
|
|
1027
|
+
"updated": "Questão atualizada",
|
|
1028
|
+
"validation": {
|
|
1029
|
+
"codeRequired": "Código obrigatório",
|
|
1030
|
+
"titleRequired": "Título obrigatório",
|
|
1031
|
+
"statementRequired": "Enunciado obrigatório",
|
|
1032
|
+
"correctAnswerRequired": "Selecione pelo menos uma resposta correta"
|
|
1033
|
+
},
|
|
1034
|
+
"types": {
|
|
1035
|
+
"multipleChoice": "Múltipla escolha",
|
|
1036
|
+
"trueFalse": "Verdadeiro / Falso",
|
|
1037
|
+
"essay": "Dissertativa",
|
|
1038
|
+
"fillBlank": "Lacuna",
|
|
1039
|
+
"matching": "Associação"
|
|
1040
|
+
}
|
|
1041
|
+
},
|
|
945
1042
|
"mockExams": {
|
|
946
1043
|
"hooksBasic": "Avaliação: Hooks Básicos",
|
|
947
1044
|
"hooksAdvanced": "Avaliação: Hooks Avançados",
|
|
@@ -1154,6 +1251,16 @@
|
|
|
1154
1251
|
"description": "Em minutos",
|
|
1155
1252
|
"required": true
|
|
1156
1253
|
},
|
|
1254
|
+
"primaryColor": {
|
|
1255
|
+
"label": "Cor Primária",
|
|
1256
|
+
"placeholder": "#1D4ED8",
|
|
1257
|
+
"required": true
|
|
1258
|
+
},
|
|
1259
|
+
"secondaryColor": {
|
|
1260
|
+
"label": "Cor Secundária",
|
|
1261
|
+
"placeholder": "#111827",
|
|
1262
|
+
"required": true
|
|
1263
|
+
},
|
|
1157
1264
|
"status": {
|
|
1158
1265
|
"label": "Status",
|
|
1159
1266
|
"placeholder": "Selecione o status",
|
|
@@ -1434,7 +1541,7 @@
|
|
|
1434
1541
|
"placeholder": "Full Stack Developer",
|
|
1435
1542
|
"required": true
|
|
1436
1543
|
},
|
|
1437
|
-
"
|
|
1544
|
+
"description": {
|
|
1438
1545
|
"label": "Descrição",
|
|
1439
1546
|
"placeholder": "Descreva a formação...",
|
|
1440
1547
|
"required": true
|
|
@@ -1461,6 +1568,16 @@
|
|
|
1461
1568
|
"label": "Pré-requisitos",
|
|
1462
1569
|
"placeholder": "Ex: JavaScript básico"
|
|
1463
1570
|
},
|
|
1571
|
+
"primaryColor": {
|
|
1572
|
+
"label": "Cor Primária",
|
|
1573
|
+
"placeholder": "#1D4ED8",
|
|
1574
|
+
"required": true
|
|
1575
|
+
},
|
|
1576
|
+
"secondaryColor": {
|
|
1577
|
+
"label": "Cor Secundária",
|
|
1578
|
+
"placeholder": "#111827",
|
|
1579
|
+
"required": true
|
|
1580
|
+
},
|
|
1464
1581
|
"cursos": {
|
|
1465
1582
|
"label": "Cursos da Trilha",
|
|
1466
1583
|
"description": "Selecione os cursos para a trilha",
|
|
@@ -1502,7 +1619,7 @@
|
|
|
1502
1619
|
"label": "Nome",
|
|
1503
1620
|
"placeholder": "Ex: React para Iniciantes"
|
|
1504
1621
|
},
|
|
1505
|
-
"
|
|
1622
|
+
"description": {
|
|
1506
1623
|
"label": "Descrição",
|
|
1507
1624
|
"placeholder": "Descreva o conteúdo do curso..."
|
|
1508
1625
|
},
|
|
@@ -2389,7 +2506,7 @@
|
|
|
2389
2506
|
},
|
|
2390
2507
|
"placeholders": {
|
|
2391
2508
|
"name": "Ex.: Certificado Corporativo",
|
|
2392
|
-
"description": "Breve
|
|
2509
|
+
"description": "Breve descrição para identificar o template"
|
|
2393
2510
|
},
|
|
2394
2511
|
"status": {
|
|
2395
2512
|
"draft": "Rascunho",
|
|
@@ -2767,6 +2884,16 @@
|
|
|
2767
2884
|
"classSaveError": "Não foi possível salvar a turma.",
|
|
2768
2885
|
"classDeleteError": "Não foi possível excluir a turma."
|
|
2769
2886
|
},
|
|
2887
|
+
"sheet": {
|
|
2888
|
+
"lessonForm": {
|
|
2889
|
+
"createInstructor": "Cadastrar professor",
|
|
2890
|
+
"createInstructorTitle": "Cadastrar Professor",
|
|
2891
|
+
"createInstructorDescription": "Crie um novo professor para selecionar nesta aula.",
|
|
2892
|
+
"createInstructorSubmit": "Cadastrar",
|
|
2893
|
+
"createInstructorSuccess": "Professor cadastrado com sucesso.",
|
|
2894
|
+
"createInstructorError": "Não foi possível cadastrar o professor."
|
|
2895
|
+
}
|
|
2896
|
+
},
|
|
2770
2897
|
"DetailPage": {
|
|
2771
2898
|
"breadcrumbs": {
|
|
2772
2899
|
"home": "Home",
|
|
@@ -2776,7 +2903,36 @@
|
|
|
2776
2903
|
},
|
|
2777
2904
|
"actions": {
|
|
2778
2905
|
"viewCourse": "Ver Curso",
|
|
2779
|
-
"newLesson": "Nova Aula"
|
|
2906
|
+
"newLesson": "Nova Aula",
|
|
2907
|
+
"editClass": "Editar turma"
|
|
2908
|
+
},
|
|
2909
|
+
"kpis": {
|
|
2910
|
+
"enrolledStudents": {
|
|
2911
|
+
"label": "Alunos Matriculados",
|
|
2912
|
+
"sub": "de {vagas} vagas"
|
|
2913
|
+
},
|
|
2914
|
+
"occupancyRate": {
|
|
2915
|
+
"label": "Taxa de Ocupação",
|
|
2916
|
+
"subFree": "{count} vagas livres",
|
|
2917
|
+
"subFull": "Lotada"
|
|
2918
|
+
},
|
|
2919
|
+
"nextClass": "Próxima Aula",
|
|
2920
|
+
"noClass": "Sem aula",
|
|
2921
|
+
"createNext": "Crie a próxima aula",
|
|
2922
|
+
"calendar": "Calendário",
|
|
2923
|
+
"completed": "{count} concluída(s)",
|
|
2924
|
+
"avgAttendance": {
|
|
2925
|
+
"label": "Presença Média",
|
|
2926
|
+
"sub": "frequência geral"
|
|
2927
|
+
},
|
|
2928
|
+
"completedLessons": {
|
|
2929
|
+
"label": "Aulas Realizadas",
|
|
2930
|
+
"sub": "de {total} total"
|
|
2931
|
+
}
|
|
2932
|
+
},
|
|
2933
|
+
"links": {
|
|
2934
|
+
"studyRefPlaceholder": "Ex: Referência de estudo",
|
|
2935
|
+
"lessonSlidesPlaceholder": "Ex: Slides da aula"
|
|
2780
2936
|
},
|
|
2781
2937
|
"calendar": {
|
|
2782
2938
|
"today": "Hoje",
|
|
@@ -3011,25 +3167,6 @@
|
|
|
3011
3167
|
"save": "Salvar Presença"
|
|
3012
3168
|
}
|
|
3013
3169
|
},
|
|
3014
|
-
"kpis": {
|
|
3015
|
-
"enrolledStudents": {
|
|
3016
|
-
"label": "Alunos Matriculados",
|
|
3017
|
-
"sub": "de {vagas} vagas"
|
|
3018
|
-
},
|
|
3019
|
-
"occupancyRate": {
|
|
3020
|
-
"label": "Taxa de Ocupação",
|
|
3021
|
-
"subFree": "{count} vagas livres",
|
|
3022
|
-
"subFull": "Lotada"
|
|
3023
|
-
},
|
|
3024
|
-
"avgAttendance": {
|
|
3025
|
-
"label": "Presença Média",
|
|
3026
|
-
"sub": "frequência geral"
|
|
3027
|
-
},
|
|
3028
|
-
"completedLessons": {
|
|
3029
|
-
"label": "Aulas Realizadas",
|
|
3030
|
-
"sub": "de {total} total"
|
|
3031
|
-
}
|
|
3032
|
-
},
|
|
3033
3170
|
"quickCreate": {
|
|
3034
3171
|
"title": "Nova Aula",
|
|
3035
3172
|
"titlePlaceholder": "Título da aula",
|
|
@@ -3112,6 +3249,18 @@
|
|
|
3112
3249
|
"lessonRemovedSuccess": "Aula removida com sucesso.",
|
|
3113
3250
|
"classCourseNotFound": "Não foi possível localizar o curso desta turma."
|
|
3114
3251
|
}
|
|
3252
|
+
},
|
|
3253
|
+
"components": {
|
|
3254
|
+
"entityPicker": {
|
|
3255
|
+
"courses": {
|
|
3256
|
+
"empty": "Nenhum curso encontrado.",
|
|
3257
|
+
"loading": "Carregando cursos..."
|
|
3258
|
+
},
|
|
3259
|
+
"instructors": {
|
|
3260
|
+
"empty": "Nenhum professor encontrado.",
|
|
3261
|
+
"loading": "Carregando professores..."
|
|
3262
|
+
}
|
|
3263
|
+
}
|
|
3115
3264
|
}
|
|
3116
3265
|
},
|
|
3117
3266
|
"EvaluationTopicsPage": {
|
|
@@ -3403,13 +3552,158 @@
|
|
|
3403
3552
|
"studentRemoveError": "Falha ao remover aluno."
|
|
3404
3553
|
},
|
|
3405
3554
|
"form": {
|
|
3555
|
+
"title": {
|
|
3556
|
+
"create": "Criar Novo Curso",
|
|
3557
|
+
"edit": "Editar Curso"
|
|
3558
|
+
},
|
|
3559
|
+
"description": {
|
|
3560
|
+
"create": "Preencha os dados para criar um novo curso. Após criar, você será redirecionado para a página do curso.",
|
|
3561
|
+
"edit": "Atualize as informações do curso abaixo."
|
|
3562
|
+
},
|
|
3563
|
+
"fields": {
|
|
3564
|
+
"internalName": {
|
|
3565
|
+
"label": "Nome Interno",
|
|
3566
|
+
"placeholder": "Ex: React Avançado",
|
|
3567
|
+
"description": "Nome interno do curso para uso administrativo"
|
|
3568
|
+
},
|
|
3569
|
+
"slug": {
|
|
3570
|
+
"label": "Slug",
|
|
3571
|
+
"placeholder": "Ex: react-avancado",
|
|
3572
|
+
"description": "Identificador único na URL (letras minúsculas, números e hífens)"
|
|
3573
|
+
},
|
|
3574
|
+
"commercialTitle": {
|
|
3575
|
+
"label": "Título Comercial",
|
|
3576
|
+
"placeholder": "Ex: React Avançado"
|
|
3577
|
+
},
|
|
3578
|
+
"description": {
|
|
3579
|
+
"label": "Descrição",
|
|
3580
|
+
"placeholder": "Descreva o conteúdo e objetivos do curso..."
|
|
3581
|
+
},
|
|
3582
|
+
"level": {
|
|
3583
|
+
"label": "Nível",
|
|
3584
|
+
"placeholder": "Selecione"
|
|
3585
|
+
},
|
|
3586
|
+
"status": {
|
|
3587
|
+
"label": "Status",
|
|
3588
|
+
"placeholder": "Selecione"
|
|
3589
|
+
},
|
|
3590
|
+
"categories": {
|
|
3591
|
+
"label": "Categorias",
|
|
3592
|
+
"description": "Selecione uma ou mais categorias",
|
|
3593
|
+
"createAction": "Criar categoria",
|
|
3594
|
+
"selectPlaceholder": "Selecione uma categoria",
|
|
3595
|
+
"removeAction": "Remover categoria",
|
|
3596
|
+
"searchPlaceholder": "Digite para buscar categoria...",
|
|
3597
|
+
"noResults": "Nenhuma categoria encontrada",
|
|
3598
|
+
"selectedCount": "categoria(s) selecionada(s)"
|
|
3599
|
+
},
|
|
3600
|
+
"primaryColor": {
|
|
3601
|
+
"label": "Cor Primária",
|
|
3602
|
+
"placeholder": "#1D4ED8"
|
|
3603
|
+
},
|
|
3604
|
+
"secondaryColor": {
|
|
3605
|
+
"label": "Cor Secundária",
|
|
3606
|
+
"placeholder": "#111827"
|
|
3607
|
+
},
|
|
3608
|
+
"logo": {
|
|
3609
|
+
"label": "Logo do Curso",
|
|
3610
|
+
"alt": "Logo do curso",
|
|
3611
|
+
"upload": "Carregar logo",
|
|
3612
|
+
"replace": "Substituir logo",
|
|
3613
|
+
"remove": "Remover",
|
|
3614
|
+
"description": "Imagem opcional para identificar o curso"
|
|
3615
|
+
}
|
|
3616
|
+
},
|
|
3617
|
+
"validation": {
|
|
3618
|
+
"internalNameMinLength": "Nome interno deve ter pelo menos 3 caracteres",
|
|
3619
|
+
"slugPattern": "Slug deve conter apenas letras minúsculas, números e hífens"
|
|
3620
|
+
},
|
|
3621
|
+
"actions": {
|
|
3622
|
+
"cancel": "Cancelar",
|
|
3623
|
+
"save": "Salvar Alterações",
|
|
3624
|
+
"create": "Criar Curso"
|
|
3625
|
+
},
|
|
3406
3626
|
"toasts": {
|
|
3407
3627
|
"courseCreated": "Curso criado com sucesso! Redirecionando...",
|
|
3408
3628
|
"courseCreateError": "Não foi possível criar o curso."
|
|
3409
3629
|
}
|
|
3630
|
+
},
|
|
3631
|
+
"levels": {
|
|
3632
|
+
"beginner": "Iniciante",
|
|
3633
|
+
"intermediate": "Intermediário",
|
|
3634
|
+
"advanced": "Avançado"
|
|
3635
|
+
},
|
|
3636
|
+
"status": {
|
|
3637
|
+
"active": "Ativo",
|
|
3638
|
+
"inactive": "Inativo",
|
|
3639
|
+
"draft": "Rascunho",
|
|
3640
|
+
"archived": "Arquivado"
|
|
3410
3641
|
}
|
|
3411
3642
|
},
|
|
3412
3643
|
"InstructorsPage": {
|
|
3644
|
+
"breadcrumbs": {
|
|
3645
|
+
"home": "Home",
|
|
3646
|
+
"lms": "LMS",
|
|
3647
|
+
"instructors": "Instrutores"
|
|
3648
|
+
},
|
|
3649
|
+
"header": {
|
|
3650
|
+
"title": "Instrutores",
|
|
3651
|
+
"description": "Gerencie os perfis de instrutores da plataforma."
|
|
3652
|
+
},
|
|
3653
|
+
"kpis": {
|
|
3654
|
+
"total": "Total de instrutores",
|
|
3655
|
+
"active": "Ativos",
|
|
3656
|
+
"inactive": "Inativos"
|
|
3657
|
+
},
|
|
3658
|
+
"search": {
|
|
3659
|
+
"placeholder": "Buscar por nome ou e-mail..."
|
|
3660
|
+
},
|
|
3661
|
+
"filters": {
|
|
3662
|
+
"statusPlaceholder": "Filtrar por status",
|
|
3663
|
+
"allStatuses": "Todos os status",
|
|
3664
|
+
"qualificationPlaceholder": "Filtrar por qualificação",
|
|
3665
|
+
"allQualifications": "Todas as qualificações"
|
|
3666
|
+
},
|
|
3667
|
+
"viewMode": {
|
|
3668
|
+
"label": "Visualização",
|
|
3669
|
+
"ariaLabel": "Modo de visualização",
|
|
3670
|
+
"table": "Tabela",
|
|
3671
|
+
"tableAriaLabel": "Tabela",
|
|
3672
|
+
"cards": "Cards",
|
|
3673
|
+
"cardsAriaLabel": "Cards"
|
|
3674
|
+
},
|
|
3675
|
+
"table": {
|
|
3676
|
+
"instructor": "Instrutor",
|
|
3677
|
+
"email": "E-mail",
|
|
3678
|
+
"phone": "Telefone",
|
|
3679
|
+
"qualifications": "Qualificações",
|
|
3680
|
+
"skills": "Skills",
|
|
3681
|
+
"hourlyRate": "Valor/hora",
|
|
3682
|
+
"training": "Training",
|
|
3683
|
+
"status": "Status"
|
|
3684
|
+
},
|
|
3685
|
+
"emptyState": {
|
|
3686
|
+
"title": "Nenhum instrutor encontrado",
|
|
3687
|
+
"description": "Crie um novo instrutor ou ajuste os filtros de busca."
|
|
3688
|
+
},
|
|
3689
|
+
"qualificationLabels": {
|
|
3690
|
+
"courseLessons": "Aulas de curso",
|
|
3691
|
+
"classSessions": "Sessões de turma"
|
|
3692
|
+
},
|
|
3693
|
+
"actions": {
|
|
3694
|
+
"edit": "Editar",
|
|
3695
|
+
"delete": "Excluir",
|
|
3696
|
+
"cancel": "Cancelar",
|
|
3697
|
+
"deleting": "Excluindo..."
|
|
3698
|
+
},
|
|
3699
|
+
"training": {
|
|
3700
|
+
"active": "Ativo",
|
|
3701
|
+
"disabled": "Desabilitado"
|
|
3702
|
+
},
|
|
3703
|
+
"deleteDialog": {
|
|
3704
|
+
"title": "Excluir instrutor",
|
|
3705
|
+
"description": "Tem certeza que deseja excluir o instrutor {name}? Esta ação não pode ser desfeita."
|
|
3706
|
+
},
|
|
3413
3707
|
"messages": {
|
|
3414
3708
|
"instructorRemovedSuccess": "Instrutor removido com sucesso.",
|
|
3415
3709
|
"instructorRemoveError": "Erro ao remover instrutor. Tente novamente."
|
|
@@ -3426,6 +3720,7 @@
|
|
|
3426
3720
|
"fields": {
|
|
3427
3721
|
"person": "Pessoa",
|
|
3428
3722
|
"personRequired": "Selecione uma pessoa",
|
|
3723
|
+
"qualificationsRequired": "Selecione pelo menos uma qualificação",
|
|
3429
3724
|
"searchPerson": "Buscar ou selecionar pessoa...",
|
|
3430
3725
|
"editPerson": "Editar cadastro da pessoa",
|
|
3431
3726
|
"status": "Status",
|
|
@@ -3440,6 +3735,35 @@
|
|
|
3440
3735
|
"noUserLinked": "Nenhum usuário vinculado a este cadastro. Vincule um usuário para habilitar.",
|
|
3441
3736
|
"qualifications": "Qualificações"
|
|
3442
3737
|
},
|
|
3738
|
+
"qualificationDescriptions": {
|
|
3739
|
+
"courseLessons": "Pode atuar em aulas gravadas e estrutura de curso.",
|
|
3740
|
+
"classSessions": "Pode atuar em contextos ao vivo e turmas."
|
|
3741
|
+
},
|
|
3742
|
+
"classStatuses": {
|
|
3743
|
+
"inProgress": "Em andamento",
|
|
3744
|
+
"upcoming": "Futuro",
|
|
3745
|
+
"completed": "Concluído",
|
|
3746
|
+
"cancelled": "Cancelado"
|
|
3747
|
+
},
|
|
3748
|
+
"classes": {
|
|
3749
|
+
"emptyTitle": "Nenhuma turma encontrada",
|
|
3750
|
+
"emptyDescription": "Este instrutor ainda não está vinculado a nenhuma turma.",
|
|
3751
|
+
"searchPlaceholder": "Buscar turma por nome, código ou curso...",
|
|
3752
|
+
"statusFilterPlaceholder": "Filtrar por status",
|
|
3753
|
+
"allStatuses": "Todos os status",
|
|
3754
|
+
"start": "Início:",
|
|
3755
|
+
"end": "Fim:",
|
|
3756
|
+
"students": "{count} aluno(s)",
|
|
3757
|
+
"studentsOfCapacity": "{count} / {total} aluno(s)",
|
|
3758
|
+
"actions": {
|
|
3759
|
+
"editAriaLabel": "Editar turma",
|
|
3760
|
+
"openAriaLabel": "Abrir página da turma"
|
|
3761
|
+
}
|
|
3762
|
+
},
|
|
3763
|
+
"evaluations": {
|
|
3764
|
+
"comingSoonTitle": "Avaliações — funcionalidade em breve",
|
|
3765
|
+
"comingSoonDescription": "Em breve você poderá visualizar as avaliações recebidas pelos alunos."
|
|
3766
|
+
},
|
|
3443
3767
|
"skills": {
|
|
3444
3768
|
"title": "Gerenciar Skills",
|
|
3445
3769
|
"description": "Gerencie as skills associadas a este instrutor.",
|
|
@@ -3448,11 +3772,19 @@
|
|
|
3448
3772
|
"noSkills": "Nenhuma skill disponível",
|
|
3449
3773
|
"newSkill": "Nova skill",
|
|
3450
3774
|
"newSkillDescription": "Cadastre uma nova skill para vincular ao instrutor.",
|
|
3451
|
-
"removeSkill": "Remover skill {skill}"
|
|
3775
|
+
"removeSkill": "Remover skill {skill}",
|
|
3776
|
+
"createFields": {
|
|
3777
|
+
"name": "Nome",
|
|
3778
|
+
"namePlaceholder": "Ex: JavaScript",
|
|
3779
|
+
"slug": "Slug (opcional)",
|
|
3780
|
+
"slugPlaceholder": "Ex: javascript"
|
|
3781
|
+
}
|
|
3452
3782
|
},
|
|
3453
3783
|
"buttons": {
|
|
3454
3784
|
"cancel": "Cancelar",
|
|
3455
|
-
"save": "Salvar alterações"
|
|
3785
|
+
"save": "Salvar alterações",
|
|
3786
|
+
"create": "Criar instrutor",
|
|
3787
|
+
"saveSkills": "Salvar skills"
|
|
3456
3788
|
},
|
|
3457
3789
|
"toasts": {
|
|
3458
3790
|
"skillsSaved": "Skills atualizadas com sucesso.",
|
|
@@ -3476,23 +3808,17 @@
|
|
|
3476
3808
|
"current": "Skills de Instrutor"
|
|
3477
3809
|
},
|
|
3478
3810
|
"filters": {
|
|
3479
|
-
"searchPlaceholder": "Buscar por slug
|
|
3811
|
+
"searchPlaceholder": "Buscar por slug..."
|
|
3480
3812
|
},
|
|
3481
3813
|
"table": {
|
|
3482
3814
|
"slug": "Slug",
|
|
3483
|
-
"namePt": "Nome (PT)",
|
|
3484
|
-
"nameEn": "Nome (EN)",
|
|
3485
3815
|
"status": "Status"
|
|
3486
3816
|
},
|
|
3487
3817
|
"form": {
|
|
3488
3818
|
"slug": "Slug",
|
|
3489
3819
|
"slugPlaceholder": "ex.: javascript, react-js",
|
|
3490
|
-
"namePt": "Nome (PT)",
|
|
3491
|
-
"namePtPlaceholder": "Nome em português",
|
|
3492
|
-
"nameEn": "Nome (EN)",
|
|
3493
|
-
"nameEnPlaceholder": "Nome em inglês (opcional)",
|
|
3494
3820
|
"status": "Status",
|
|
3495
|
-
"statusPlaceholder": "Selecione
|
|
3821
|
+
"statusPlaceholder": "Selecione um status",
|
|
3496
3822
|
"validation": {
|
|
3497
3823
|
"required": "Obrigatório",
|
|
3498
3824
|
"max100": "Máximo 100 caracteres",
|
|
@@ -3567,8 +3893,18 @@
|
|
|
3567
3893
|
"contractedClasses": {
|
|
3568
3894
|
"label": "Turmas",
|
|
3569
3895
|
"description": "Turmas contratadas"
|
|
3896
|
+
},
|
|
3897
|
+
"users": {
|
|
3898
|
+
"label": "Usuários",
|
|
3899
|
+
"description": "Total de usuários vinculados"
|
|
3570
3900
|
}
|
|
3571
3901
|
},
|
|
3902
|
+
"status": {
|
|
3903
|
+
"active": "Ativo",
|
|
3904
|
+
"trial": "Avaliação",
|
|
3905
|
+
"inactive": "Inativo",
|
|
3906
|
+
"suspended": "Suspenso"
|
|
3907
|
+
},
|
|
3572
3908
|
"tabs": {
|
|
3573
3909
|
"overview": "Visão Geral",
|
|
3574
3910
|
"users": "Usuários",
|
|
@@ -3577,12 +3913,27 @@
|
|
|
3577
3913
|
"billing": "Faturamento",
|
|
3578
3914
|
"students": "Alunos",
|
|
3579
3915
|
"administrators": "Administradores",
|
|
3580
|
-
"empresa": "Empresa"
|
|
3916
|
+
"empresa": "Empresa",
|
|
3917
|
+
"crm": "CRM"
|
|
3581
3918
|
},
|
|
3582
3919
|
"overview": {
|
|
3583
3920
|
"accountInfo": "Informações da Conta",
|
|
3584
3921
|
"contactDetails": "Dados de Contato",
|
|
3585
|
-
"crmAccount": "Conta CRM"
|
|
3922
|
+
"crmAccount": "Conta CRM",
|
|
3923
|
+
"slug": "Slug:",
|
|
3924
|
+
"created": "Criado:",
|
|
3925
|
+
"updated": "Atualizado:",
|
|
3926
|
+
"portalEnabled": "Portal habilitado"
|
|
3927
|
+
},
|
|
3928
|
+
"crm": {
|
|
3929
|
+
"noLinked": "Nenhuma conta CRM vinculada",
|
|
3930
|
+
"noLinkedDesc": "Esta conta enterprise ainda não está associada a uma conta comercial do CRM. Vincule uma para manter ambos os registros sincronizados.",
|
|
3931
|
+
"linkButton": "Vincular conta CRM",
|
|
3932
|
+
"openButton": "Abrir no CRM",
|
|
3933
|
+
"accountRef": "Conta CRM #{id}",
|
|
3934
|
+
"accountNameLabel": "Nome da conta",
|
|
3935
|
+
"crmIdLabel": "ID do CRM",
|
|
3936
|
+
"readNote": "Os dados são lidos do CRM. Use Abrir no CRM para gerenciar a conta comercial diretamente."
|
|
3586
3937
|
},
|
|
3587
3938
|
"users": {
|
|
3588
3939
|
"title": "Usuários Matriculados",
|
|
@@ -3680,7 +4031,8 @@
|
|
|
3680
4031
|
},
|
|
3681
4032
|
"actions": {
|
|
3682
4033
|
"create": "Criar nova turma",
|
|
3683
|
-
"add": "Adicionar"
|
|
4034
|
+
"add": "Adicionar",
|
|
4035
|
+
"edit": "Editar"
|
|
3684
4036
|
},
|
|
3685
4037
|
"empty": {
|
|
3686
4038
|
"title": "Nenhuma turma encontrada.",
|
|
@@ -3688,6 +4040,7 @@
|
|
|
3688
4040
|
},
|
|
3689
4041
|
"table": {
|
|
3690
4042
|
"class": "Turma",
|
|
4043
|
+
"instructor": "Instrutor",
|
|
3691
4044
|
"status": "Status",
|
|
3692
4045
|
"period": "Período",
|
|
3693
4046
|
"capacity": "Capacidade"
|
|
@@ -3699,18 +4052,6 @@
|
|
|
3699
4052
|
}
|
|
3700
4053
|
}
|
|
3701
4054
|
},
|
|
3702
|
-
"components": {
|
|
3703
|
-
"entityPicker": {
|
|
3704
|
-
"courses": {
|
|
3705
|
-
"empty": "Nenhum curso encontrado.",
|
|
3706
|
-
"loading": "Carregando cursos..."
|
|
3707
|
-
},
|
|
3708
|
-
"instructors": {
|
|
3709
|
-
"empty": "Nenhum professor encontrado.",
|
|
3710
|
-
"loading": "Carregando professores..."
|
|
3711
|
-
}
|
|
3712
|
-
}
|
|
3713
|
-
},
|
|
3714
4055
|
"courseStructure": {
|
|
3715
4056
|
"contextMenu": {
|
|
3716
4057
|
"expandedAll": "Tudo expandido",
|
|
@@ -43,7 +43,7 @@ export default function ActiveClassesKpi({ widget, onRemove }: Props) {
|
|
|
43
43
|
onRemove={onRemove}
|
|
44
44
|
>
|
|
45
45
|
<Card className="h-full overflow-hidden border-border/70">
|
|
46
|
-
<div className="h-1 w-full bg-
|
|
46
|
+
<div className="h-1 w-full bg-linear-to-r from-emerald-500/60 via-emerald-400/30 to-transparent" />
|
|
47
47
|
<CardContent className="flex h-full flex-col justify-between p-5">
|
|
48
48
|
<div className="flex items-start justify-between gap-2">
|
|
49
49
|
<p className="text-sm font-medium text-muted-foreground">
|
|
@@ -43,7 +43,7 @@ export default function ActiveCoursesKpi({ widget, onRemove }: Props) {
|
|
|
43
43
|
onRemove={onRemove}
|
|
44
44
|
>
|
|
45
45
|
<Card className="h-full overflow-hidden border-border/70">
|
|
46
|
-
<div className="h-1 w-full bg-
|
|
46
|
+
<div className="h-1 w-full bg-linear-to-r from-sky-500/60 via-blue-500/30 to-transparent" />
|
|
47
47
|
<CardContent className="flex h-full flex-col justify-between p-5">
|
|
48
48
|
<div className="flex items-start justify-between gap-2">
|
|
49
49
|
<p className="text-sm font-medium text-muted-foreground">
|
|
@@ -50,7 +50,7 @@ export default function ApprovalRateKpi({ widget, onRemove }: Props) {
|
|
|
50
50
|
onRemove={onRemove}
|
|
51
51
|
>
|
|
52
52
|
<Card className="h-full overflow-hidden border-border/70">
|
|
53
|
-
<div className="h-1 w-full bg-
|
|
53
|
+
<div className="h-1 w-full bg-linear-to-r from-rose-500/60 via-rose-400/30 to-transparent" />
|
|
54
54
|
<CardContent className="flex h-full flex-col justify-between p-5">
|
|
55
55
|
<div className="flex items-start justify-between gap-2">
|
|
56
56
|
<p className="text-sm font-medium text-muted-foreground">
|
|
@@ -395,11 +395,11 @@ export default function ClassCalendar({ widget, onRemove }: Props) {
|
|
|
395
395
|
<div className="space-y-4 px-4">
|
|
396
396
|
<h4 className="text-sm font-semibold text-foreground">{t('sheet.classInfo')}</h4>
|
|
397
397
|
<div className="grid grid-cols-2 gap-3">
|
|
398
|
-
<div className="rounded-lg border bg-
|
|
398
|
+
<div className="rounded-lg border bg-linear-to-br from-blue-50/50 to-blue-100/30 p-3 text-center">
|
|
399
399
|
<p className="text-2xl font-bold text-blue-700">{selectedEvent.resource.matriculados}</p>
|
|
400
400
|
<p className="text-xs text-muted-foreground">{t('sheet.enrolledStudents')}</p>
|
|
401
401
|
</div>
|
|
402
|
-
<div className="rounded-lg border bg-
|
|
402
|
+
<div className="rounded-lg border bg-linear-to-br from-emerald-50/50 to-emerald-100/30 p-3 text-center">
|
|
403
403
|
<p className="text-2xl font-bold text-emerald-700">{selectedEvent.resource.vagas - selectedEvent.resource.matriculados}</p>
|
|
404
404
|
<p className="text-xs text-muted-foreground">{t('sheet.availableSeats')}</p>
|
|
405
405
|
</div>
|
|
@@ -50,7 +50,7 @@ export default function CompletionRateKpi({ widget, onRemove }: Props) {
|
|
|
50
50
|
onRemove={onRemove}
|
|
51
51
|
>
|
|
52
52
|
<Card className="h-full overflow-hidden border-border/70">
|
|
53
|
-
<div className="h-1 w-full bg-
|
|
53
|
+
<div className="h-1 w-full bg-linear-to-r from-pink-500/60 via-pink-400/30 to-transparent" />
|
|
54
54
|
<CardContent className="flex h-full flex-col justify-between p-5">
|
|
55
55
|
<div className="flex items-start justify-between gap-2">
|
|
56
56
|
<p className="text-sm font-medium text-muted-foreground">
|
|
@@ -43,7 +43,7 @@ export default function IssuedCertificatesKpi({ widget, onRemove }: Props) {
|
|
|
43
43
|
onRemove={onRemove}
|
|
44
44
|
>
|
|
45
45
|
<Card className="h-full overflow-hidden border-border/70">
|
|
46
|
-
<div className="h-1 w-full bg-
|
|
46
|
+
<div className="h-1 w-full bg-linear-to-r from-amber-500/60 via-yellow-400/30 to-transparent" />
|
|
47
47
|
<CardContent className="flex h-full flex-col justify-between p-5">
|
|
48
48
|
<div className="flex items-start justify-between gap-2">
|
|
49
49
|
<p className="text-sm font-medium text-muted-foreground">
|