wagtail-enap-designsystem 1.2.1.113__py3-none-any.whl → 1.2.1.115__py3-none-any.whl

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.

Potentially problematic release.


This version of wagtail-enap-designsystem might be problematic. Click here for more details.

@@ -355,7 +355,6 @@
355
355
  -webkit-font-smoothing: antialiased;
356
356
  -moz-osx-font-smoothing: grayscale;
357
357
  display: -webkit-box;
358
- -webkit-line-clamp: 3;
359
358
  -webkit-box-orient: vertical;
360
359
  overflow: hidden;
361
360
  }
@@ -315,7 +315,7 @@
315
315
  -webkit-font-smoothing: antialiased;
316
316
  -moz-osx-font-smoothing: grayscale;
317
317
  display: -webkit-box;
318
- -webkit-line-clamp: 3;
318
+
319
319
  -webkit-box-orient: vertical;
320
320
  overflow: hidden;
321
321
  }
@@ -576,11 +576,11 @@
576
576
 
577
577
 
578
578
 
579
- {% elif block.block_type == 'estado_cidade_field' %}
579
+ <!-- {% elif block.block_type == 'estado_cidade_field' %}
580
580
  <div class="form-group estado-cidade-group" data-layout="{{ block.value.layout }}">
581
581
  <div class="estado-cidade-container {% if block.value.layout == 'horizontal' %}horizontal-layout{% else %}vertical-layout{% endif %}">
582
582
 
583
- <!-- CAMPO ESTADO -->
583
+
584
584
  <div class="estado-field-wrapper">
585
585
  <label for="{{ block.block_type }}_{{ block.id }}_estado">
586
586
  {{ block.value.estado_label }}
@@ -611,7 +611,7 @@
611
611
  </select>
612
612
  </div>
613
613
 
614
- <!-- CAMPO CIDADE -->
614
+
615
615
  <div class="cidade-field-wrapper">
616
616
  <label for="{{ block.block_type }}_{{ block.id }}_cidade">
617
617
  {{ block.value.cidade_label }}
@@ -633,7 +633,7 @@
633
633
  </select>
634
634
  </div>
635
635
  </div>
636
- </div>
636
+ </div> -->
637
637
 
638
638
 
639
639
 
@@ -912,49 +912,49 @@ document.addEventListener('DOMContentLoaded', function() {
912
912
 
913
913
 
914
914
 
915
- document.addEventListener('DOMContentLoaded', function() {
916
- // Dados dos estados passados pelo Django
917
- const estadosCidades = {{ estados_cidades|safe }};
915
+ // document.addEventListener('DOMContentLoaded', function() {
916
+ // // Dados dos estados passados pelo Django
917
+ // const estadosCidades = {{ estados_cidades|safe }};
918
918
 
919
- // Selectors
920
- const estadoSelect = document.getElementById('{{ block.block_type }}_{{ block.id }}_estado');
921
- const cidadeSelect = document.getElementById('{{ block.block_type }}_{{ block.id }}_cidade');
919
+ // // Selectors
920
+ // const estadoSelect = document.getElementById('{{ block.block_type }}_{{ block.id }}_estado');
921
+ // const cidadeSelect = document.getElementById('{{ block.block_type }}_{{ block.id }}_cidade');
922
922
 
923
- if (!estadoSelect || !cidadeSelect) return;
923
+ // if (!estadoSelect || !cidadeSelect) return;
924
924
 
925
- // Quando o estado mudar
926
- estadoSelect.addEventListener('change', function() {
927
- const uf = this.value;
928
- const cidadeTarget = this.getAttribute('data-cidade-target');
929
- const cidadeSelectElement = document.getElementById(cidadeTarget);
925
+ // // Quando o estado mudar
926
+ // estadoSelect.addEventListener('change', function() {
927
+ // const uf = this.value;
928
+ // const cidadeTarget = this.getAttribute('data-cidade-target');
929
+ // const cidadeSelectElement = document.getElementById(cidadeTarget);
930
930
 
931
- if (!cidadeSelectElement) return;
931
+ // if (!cidadeSelectElement) return;
932
932
 
933
- // Limpar as cidades
934
- cidadeSelectElement.innerHTML = '<option value="">Selecione a cidade...</option>';
935
- cidadeSelectElement.disabled = !uf;
933
+ // // Limpar as cidades
934
+ // cidadeSelectElement.innerHTML = '<option value="">Selecione a cidade...</option>';
935
+ // cidadeSelectElement.disabled = !uf;
936
936
 
937
- if (uf && estadosCidades[uf]) {
938
- const cidades = estadosCidades[uf].cidades || [];
937
+ // if (uf && estadosCidades[uf]) {
938
+ // const cidades = estadosCidades[uf].cidades || [];
939
939
 
940
- // Adicionar cidades
941
- cidades.forEach(cidade => {
942
- const option = document.createElement('option');
943
- option.value = cidade;
944
- option.textContent = cidade;
945
- cidadeSelectElement.appendChild(option);
946
- });
940
+ // // Adicionar cidades
941
+ // cidades.forEach(cidade => {
942
+ // const option = document.createElement('option');
943
+ // option.value = cidade;
944
+ // option.textContent = cidade;
945
+ // cidadeSelectElement.appendChild(option);
946
+ // });
947
947
 
948
- cidadeSelectElement.disabled = false;
949
- console.log(`🏛️ Estado ${uf} selecionado: ${cidades.length} cidades carregadas`);
950
- } else {
951
- // Se não houver cidades (ou o estado foi desmarcado), desabilita a seleção de cidades
952
- cidadeSelectElement.disabled = true;
953
- }
954
- });
948
+ // cidadeSelectElement.disabled = false;
949
+ // console.log(`🏛️ Estado ${uf} selecionado: ${cidades.length} cidades carregadas`);
950
+ // } else {
951
+ // // Se não houver cidades (ou o estado foi desmarcado), desabilita a seleção de cidades
952
+ // cidadeSelectElement.disabled = true;
953
+ // }
954
+ // });
955
955
 
956
- console.log('🏛️🏙️ Sistema Estado + Cidade inicializado');
957
- });
956
+ // console.log('🏛️🏙️ Sistema Estado + Cidade inicializado');
957
+ // });
958
958
 
959
959
 
960
960
  </script>
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: wagtail-enap-designsystem
3
- Version: 1.2.1.113
3
+ Version: 1.2.1.115
4
4
  Summary: Módulo de componentes utilizado nos portais ENAP, desenvolvido com Wagtail + CodeRedCMS
5
5
  Author: Renan Campos
6
6
  Author-email: renan.oliveira@enap.gov.br
@@ -459,9 +459,9 @@ enap_designsystem/static/enap_designsystem/blocks/feature-img-texts.css,sha256=a
459
459
  enap_designsystem/static/enap_designsystem/blocks/feature_course.css,sha256=YIXEPbPrB9hZF9j9Z57kJd5UvI2i4JS0H-j5NysMHbM,1642
460
460
  enap_designsystem/static/enap_designsystem/blocks/feature_estrutura.css,sha256=X4slzgrlaKa_pQ3S53RkaMkf7_GTUqRUKcAP2S9ZRiw,2171
461
461
  enap_designsystem/static/enap_designsystem/blocks/feature_estrutura.js,sha256=OJ5-aE6SHEhdDfEjG6rRx_PrzgeAXu1wWMoBvkAaYXA,986
462
- enap_designsystem/static/enap_designsystem/blocks/feature_list_block.css,sha256=NEE-0cC-YZiNYKgDs-oA4K7g5CIEBtlbE56TnsP9hJ4,10715
462
+ enap_designsystem/static/enap_designsystem/blocks/feature_list_block.css,sha256=qcXrOSkBouve15i9yRr4w0LbGPqOtYAuQwm1vKlKccE,10688
463
463
  enap_designsystem/static/enap_designsystem/blocks/feature_processo_seletivo.css,sha256=t5QAUxMRgi4DP2UlOLJO36LBhwdvjVcyoOz347tZ70A,2067
464
- enap_designsystem/static/enap_designsystem/blocks/feature_with_links_block.css,sha256=7TecclCh9idLt4D-tAkC7UkDYS2_-8o0mw_imPjtZVI,9733
464
+ enap_designsystem/static/enap_designsystem/blocks/feature_with_links_block.css,sha256=plwETwnOBnyvMcpXomVVX03X2xRAqK2lhKurPi_zPV0,9711
465
465
  enap_designsystem/static/enap_designsystem/blocks/footer.css,sha256=z1zEkPvzPBmZsLZfhsnr8S73SfcRAEIVqlAVbGFmdeA,2080
466
466
  enap_designsystem/static/enap_designsystem/blocks/form_contato.css,sha256=CYxng-ntfnXGSXf3AY0WEEDLo3K7p27V70HsYXymCrA,7119
467
467
  enap_designsystem/static/enap_designsystem/blocks/form_template.css,sha256=Rpdt6e1ruUgrtorI3-kOcpH8QcbrIbHJVD2kv6pQTu8,3015
@@ -721,7 +721,7 @@ enap_designsystem/templates/enap_designsystem/form_templates/welcome_page.html,s
721
721
  enap_designsystem/templates/enap_designsystem/includes/chatbot_global.html,sha256=CO7wXrGx1l_icY8vb9OdrILCUXEFBomJPPxQz_e9hq4,12308
722
722
  enap_designsystem/templates/enap_designsystem/includes/cookie_banner.html,sha256=vyrvj1W_haSA4oKmQiyjFpjoTFqjPSZfz3u5nfr-P2g,10871
723
723
  enap_designsystem/templates/enap_designsystem/includes/footer.html,sha256=qsDmN413A_NNOhRFZz1Uxym1j5UPVhEDuRRDLTgRMPA,4063
724
- enap_designsystem/templates/enap_designsystem/includes/form_field.html,sha256=ANPuL8JnN8f43OdUqT1mF-_XMVvICBPeWcaErZcrye4,40378
724
+ enap_designsystem/templates/enap_designsystem/includes/form_field.html,sha256=B19SZzXQg-blqcv2F4D5aATru7U-OQyvJ7BSBrM9QuQ,40415
725
725
  enap_designsystem/templates/enap_designsystem/pages/404.html,sha256=yibkQlRTOZdyOVsDcNdqXjzmQwVq3QH5ztf0gNtbt58,2885
726
726
  enap_designsystem/templates/enap_designsystem/pages/area_aluno.html,sha256=lpHBVsnuZ0kARnH10xfFBPldABAvLGNMnVuvPACP3FU,15783
727
727
  enap_designsystem/templates/enap_designsystem/pages/article_index_page.html,sha256=6VjJ3_EroEPCidFCW5gBDzvbi81UcFX9lGpbc4j6r9U,11482
@@ -807,8 +807,8 @@ enap_designsystem/utils/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG
807
807
  enap_designsystem/utils/decorators.py,sha256=aq6SbLn0LcH2rfE3ZFit8jkD7pSx9fLVBUUwVB747hg,335
808
808
  enap_designsystem/utils/services.py,sha256=6dG5jLSbwH49jpZV9ZNpWlaZqI49gTlwlr1vaerxdiU,5824
809
809
  enap_designsystem/utils/sso.py,sha256=vjAuoYgoLeQAa_dkkyQ6-LmHvKMaVCxizNFpe5y3iUA,1145
810
- wagtail_enap_designsystem-1.2.1.113.dist-info/licenses/LICENSE,sha256=Btzdu2kIoMbdSp6OyCLupB1aRgpTCJ_szMimgEnpkkE,1056
811
- wagtail_enap_designsystem-1.2.1.113.dist-info/METADATA,sha256=isb0PVBAphzUJ0a_Mds05jgt4A2TaBmSX4fEJ4oEwrc,3651
812
- wagtail_enap_designsystem-1.2.1.113.dist-info/WHEEL,sha256=_zCd3N1l69ArxyTb8rzEoP9TpbYXkqRFSNOD5OuxnTs,91
813
- wagtail_enap_designsystem-1.2.1.113.dist-info/top_level.txt,sha256=RSFgMASxoA-hVftm5i4Qd0rArlX4Dq08lLv5G4sYD-g,18
814
- wagtail_enap_designsystem-1.2.1.113.dist-info/RECORD,,
810
+ wagtail_enap_designsystem-1.2.1.115.dist-info/licenses/LICENSE,sha256=Btzdu2kIoMbdSp6OyCLupB1aRgpTCJ_szMimgEnpkkE,1056
811
+ wagtail_enap_designsystem-1.2.1.115.dist-info/METADATA,sha256=Yohkf7gnmzYb6EHnzBEhFLyoaf2sUDfyKuoWoGiMhzA,3651
812
+ wagtail_enap_designsystem-1.2.1.115.dist-info/WHEEL,sha256=_zCd3N1l69ArxyTb8rzEoP9TpbYXkqRFSNOD5OuxnTs,91
813
+ wagtail_enap_designsystem-1.2.1.115.dist-info/top_level.txt,sha256=RSFgMASxoA-hVftm5i4Qd0rArlX4Dq08lLv5G4sYD-g,18
814
+ wagtail_enap_designsystem-1.2.1.115.dist-info/RECORD,,