wagtail-enap-designsystem 1.2.1.197__py3-none-any.whl → 1.2.1.199__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.

Files changed (20) hide show
  1. enap_designsystem/blocks/__init__.py +4 -1
  2. enap_designsystem/blocks/form.py +2 -2
  3. enap_designsystem/blocks/html_blocks.py +61 -0
  4. enap_designsystem/blocks/security.py +2 -1
  5. enap_designsystem/migrations/0469_alter_areaaluno_body_alter_cursoeadpage_curso_and_more.py +64758 -0
  6. enap_designsystem/migrations/0470_alter_areaaluno_body_alter_enapcomponentes_body_and_more.py +63570 -0
  7. enap_designsystem/migrations/0471_alter_areaaluno_body_alter_enapcomponentes_body_and_more.py +63574 -0
  8. enap_designsystem/migrations/0472_alter_areaaluno_body_alter_enapcomponentes_body_and_more.py +63566 -0
  9. enap_designsystem/migrations/0473_alter_areaaluno_body_alter_enapcomponentes_body_and_more.py +63406 -0
  10. enap_designsystem/migrations/0474_alter_areaaluno_body_alter_enapcomponentes_body_and_more.py +63570 -0
  11. enap_designsystem/static/enap_designsystem/blocks/carousel_responsive.css +5 -0
  12. enap_designsystem/templates/enap_designsystem/blocks/carousel_images.html +47 -0
  13. enap_designsystem/templates/enap_designsystem/form_templates/formulario_page.html +33 -7
  14. enap_designsystem/templates/enap_designsystem/pages/capsula_page.html +2 -2
  15. enap_designsystem/templates/enap_designsystem/pages/mini/cards.html +182 -0
  16. {wagtail_enap_designsystem-1.2.1.197.dist-info → wagtail_enap_designsystem-1.2.1.199.dist-info}/METADATA +1 -1
  17. {wagtail_enap_designsystem-1.2.1.197.dist-info → wagtail_enap_designsystem-1.2.1.199.dist-info}/RECORD +20 -13
  18. {wagtail_enap_designsystem-1.2.1.197.dist-info → wagtail_enap_designsystem-1.2.1.199.dist-info}/WHEEL +0 -0
  19. {wagtail_enap_designsystem-1.2.1.197.dist-info → wagtail_enap_designsystem-1.2.1.199.dist-info}/licenses/LICENSE +0 -0
  20. {wagtail_enap_designsystem-1.2.1.197.dist-info → wagtail_enap_designsystem-1.2.1.199.dist-info}/top_level.txt +0 -0
@@ -92,6 +92,11 @@
92
92
  text-align: right;
93
93
  }
94
94
 
95
+ .slide-additional-buttons {
96
+ display: flex;
97
+ gap: 10px;
98
+ }
99
+
95
100
  .carousel-responsivo__slide-title {
96
101
  font-size: 1.5rem;
97
102
  font-weight: 700;
@@ -64,6 +64,20 @@
64
64
  {{ slide.subtitulo|safe }}
65
65
  </div>
66
66
  {% endif %}
67
+ {% if slide.links %}
68
+ <div class="slide-additional-buttons">
69
+ {% for item in slide.links %}
70
+ <div class="debug-button-info">
71
+ <!-- Depuração simples -->
72
+ {{ item }}
73
+
74
+ </div>
75
+
76
+ <!-- Renderização tentativa -->
77
+
78
+ {% endfor %}
79
+ </div>
80
+ {% endif %}
67
81
 
68
82
  {% if slide.mostrar_botao and slide.texto_botao %}
69
83
  <div class="slide-button-wrapper">
@@ -137,6 +151,39 @@
137
151
  overflow: hidden;
138
152
  }
139
153
 
154
+ /* Adicione isso dentro da tag <style> no final do arquivo */
155
+ .slide-additional-buttons {
156
+ display: flex;
157
+ flex-wrap: wrap;
158
+ gap: 10px;
159
+ margin-bottom: 15px;
160
+ }
161
+
162
+ /* Alinhamento conforme posição do conteúdo */
163
+ .centro .slide-additional-buttons {
164
+ justify-content: center;
165
+ }
166
+
167
+ .esquerda .slide-additional-buttons {
168
+ justify-content: flex-start;
169
+ }
170
+
171
+ .direita .slide-additional-buttons {
172
+ justify-content: flex-end;
173
+ }
174
+
175
+ .inferior-centro .slide-additional-buttons {
176
+ justify-content: center;
177
+ }
178
+
179
+ .inferior-esquerda .slide-additional-buttons {
180
+ justify-content: flex-start;
181
+ }
182
+
183
+ .inferior-direita .slide-additional-buttons {
184
+ justify-content: flex-end;
185
+ }
186
+
140
187
  @media (max-width: 768px) {
141
188
  .enap-carousel {
142
189
  height: var(--altura-mobile);
@@ -2091,17 +2091,29 @@ function getFileIcon(filename) {
2091
2091
  function cleanInput(input, originalValue) {
2092
2092
  let cleanValue = originalValue;
2093
2093
 
2094
- // 1. Primeiro remover caracteres especiais
2094
+ // 1. Identificar o tipo de campo
2095
2095
  const fieldName = (input.name || input.id || '').toLowerCase();
2096
2096
  const isEmailField = fieldName.includes('email') || input.type === 'email';
2097
+ const isTextareaField = input.tagName.toLowerCase() === 'textarea' || fieldName.includes('textarea_field');
2097
2098
 
2099
+ // 2. Aplicar limpeza específica para cada tipo de campo
2098
2100
  if (isEmailField) {
2101
+ // Para campos de email, permitir @ e pontos
2099
2102
  cleanValue = originalValue.replace(/[^a-zA-Z0-9@.\-_]/g, '');
2103
+ } else if (isTextareaField) {
2104
+ // Para campos textarea, permitir mais caracteres, mas remover scripts e código malicioso
2105
+ // Remover tags <script>, <iframe>, javascript: etc.
2106
+ cleanValue = originalValue
2107
+ .replace(/<script[\s\S]*?<\/script>/gi, '') // Remove tags script
2108
+ .replace(/<iframe[\s\S]*?<\/iframe>/gi, '') // Remove tags iframe
2109
+ .replace(/javascript:/gi, '') // Remove javascript:
2110
+ .replace(/on\w+\s*=/gi, ''); // Remove manipuladores de eventos onclick, onload, etc.
2100
2111
  } else {
2112
+ // Para outros campos de texto, manter a limpeza original
2101
2113
  cleanValue = originalValue.replace(/[^a-zA-Z0-9À-ÿ\s.\-]/g, '');
2102
2114
  }
2103
2115
 
2104
- // 2. Depois verificar comandos SQL
2116
+ // 3. Verificar comandos SQL para TODOS os tipos de campos
2105
2117
  const sqlCheck = containsSqlCommands(cleanValue);
2106
2118
  if (sqlCheck.found) {
2107
2119
  // Remover a palavra SQL encontrada
@@ -2180,25 +2192,39 @@ function getFileIcon(filename) {
2180
2192
  const value = input.value.trim();
2181
2193
  if (!value) return;
2182
2194
 
2183
- // Verificar caracteres proibidos
2184
- const prohibitedChars = /['";\\<>]/;
2195
+ const isTextarea = input.tagName.toLowerCase() === 'textarea' ||
2196
+ (input.name || '').toLowerCase().includes('textarea_field');
2197
+
2198
+ // Verificação de conteúdo malicioso
2199
+ let hasProhibitedContent = false;
2200
+
2201
+ if (isTextarea) {
2202
+ // Para textareas, verificar JavaScript malicioso
2203
+ hasProhibitedContent = /<script|<iframe|javascript:|on\w+\s*=/i.test(value);
2204
+ } else {
2205
+ // Para outros campos, verificação mais rigorosa
2206
+ hasProhibitedContent = /['";\\<>]/i.test(value);
2207
+ }
2208
+
2209
+ // Verificação de comandos SQL para todos os campos
2185
2210
  const sqlCheck = containsSqlCommands(value);
2186
2211
 
2187
- if (prohibitedChars.test(value) || sqlCheck.found) {
2212
+ if (hasProhibitedContent || sqlCheck.found) {
2188
2213
  console.warn('⚠️ Conteúdo proibido:', {
2189
2214
  campo: input.name,
2190
2215
  valor: value,
2191
2216
  sql: sqlCheck.found ? sqlCheck.command : 'não',
2192
- caracteres: prohibitedChars.test(value)
2217
+ caracteres: hasProhibitedContent
2193
2218
  });
2194
2219
 
2195
2220
  hasProhibited = true;
2196
2221
  input.style.borderColor = 'red';
2197
2222
  input.style.backgroundColor = '#ffe6e6';
2198
2223
 
2199
- if (!hasProhibited) {
2224
+ if (!input.hasBeenFocused) {
2200
2225
  input.focus();
2201
2226
  input.scrollIntoView({ behavior: 'smooth', block: 'center' });
2227
+ input.hasBeenFocused = true;
2202
2228
  }
2203
2229
  }
2204
2230
  });
@@ -267,8 +267,8 @@
267
267
  </div>
268
268
  </div>
269
269
 
270
- {% if page.metodo_verificacao_cards %}
271
- {% for grid_block in metodo_verificacao_cards %}
270
+ {% if page.quando_utilizar_cards %}
271
+ {% for grid_block in page.quando_utilizar_cards %}
272
272
  {% include_block grid_block %}
273
273
  {% endfor %}
274
274
  {% endif %}
@@ -0,0 +1,182 @@
1
+ <div class="enap-card-index-block">
2
+ {% if capsulas_relacionadas %}
3
+ <div class="cards-grid">
4
+ {% for capsula in capsulas_relacionadas %}
5
+ <div class="capsula-card">
6
+ <div class="capsula-icon">
7
+ <span class="icon-book">
8
+ <svg viewBox="0 0 24 24" width="40" height="40" fill="#008080">
9
+ <path d="M12 2C6.48 2 2 6.48 2 12s4.48 10 10 10 10-4.48 10-10S17.52 2 12 2zm0 18c-4.41 0-8-3.59-8-8s3.59-8 8-8 8 3.59 8 8-3.59 8-8 8zm-1-13h2v6h-2zm0 8h2v2h-2z"></path>
10
+ </svg>
11
+ </span>
12
+ </div>
13
+
14
+ <h3 class="capsula-title">{{ capsula.title }}</h3>
15
+
16
+ <div class="capsula-description">
17
+ {% if capsula.specific.resumo_card %}
18
+ {{ capsula.specific.resumo_card }}
19
+ {% else %}
20
+ {{ capsula.specific.o_que_e_resumo|striptags|truncatewords:30 }}
21
+ {% endif %}
22
+ </div>
23
+
24
+ <div class="capsula-tags">
25
+ {% if capsula.specific.tipos_deficiencia %}
26
+ {% for tipo in capsula.specific.tipos_deficiencia %}
27
+ <span class="tag tag-tipo-deficiencia">
28
+ <span class="tag-icon">
29
+ <!-- Ícone baseado no tipo -->
30
+ {% if tipo == 'visual' %}
31
+ <svg viewBox="0 0 24 24" width="16" height="16"><circle cx="12" cy="12" r="10" stroke="#008080" fill="none" stroke-width="2"/></svg>
32
+ {% endif %}
33
+ </span>
34
+ {{ tipo|title }}
35
+ </span>
36
+ {% endfor %}
37
+ {% endif %}
38
+
39
+ {% if capsula.specific.tipos_recurso %}
40
+ {% for tipo in capsula.specific.tipos_recurso %}
41
+ <span class="tag tag-tipo-recurso">{{ tipo|title }}</span>
42
+ {% endfor %}
43
+ {% endif %}
44
+ </div>
45
+
46
+ <div class="capsula-priority">
47
+ <span class="priority-icon {% if capsula.specific.prioridade == 'obrigatorio' %}priority-mandatory{% else %}priority-recommended{% endif %}">
48
+ <svg viewBox="0 0 24 24" width="16" height="16"><circle cx="12" cy="12" r="10" fill="{% if capsula.specific.prioridade == 'obrigatorio' %}#ff5555{% else %}#008080{% endif %}"/></svg>
49
+ </span>
50
+ <span class="priority-text">{{ capsula.specific.get_prioridade_display }}</span>
51
+ </div>
52
+
53
+ <a href="{{ capsula.url }}" class="capsula-access-button">
54
+ Acessar Cápsula
55
+ </a>
56
+ </div>
57
+ {% endfor %}
58
+ </div>
59
+ {% else %}
60
+ <p>Nenhum conteúdo disponível</p>
61
+ {% endif %}
62
+ </div>
63
+
64
+ <style>
65
+ .enap-card-index-block .cards-grid {
66
+ display: grid;
67
+ grid-template-columns: repeat(3, 1fr);
68
+ gap: 20px;
69
+ margin: 20px 0;
70
+ }
71
+
72
+ @media (max-width: 992px) {
73
+ .enap-card-index-block .cards-grid {
74
+ grid-template-columns: repeat(2, 1fr);
75
+ }
76
+ }
77
+
78
+ @media (max-width: 576px) {
79
+ .enap-card-index-block .cards-grid {
80
+ grid-template-columns: 1fr;
81
+ }
82
+ }
83
+
84
+ .capsula-card {
85
+ background: white;
86
+ border-radius: 8px;
87
+ box-shadow: 0 2px 10px rgba(0,0,0,0.1);
88
+ padding: 20px;
89
+ display: flex;
90
+ flex-direction: column;
91
+ height: 100%;
92
+ transition: transform 0.2s, box-shadow 0.2s;
93
+ }
94
+
95
+ .capsula-card:hover {
96
+ transform: translateY(-3px);
97
+ box-shadow: 0 4px 15px rgba(0,0,0,0.15);
98
+ }
99
+
100
+ .capsula-icon {
101
+ color: #008080;
102
+ margin-bottom: 15px;
103
+ }
104
+
105
+ .capsula-title {
106
+ font-size: 1.3rem;
107
+ margin-bottom: 15px;
108
+ color: #333;
109
+ font-weight: 600;
110
+ }
111
+
112
+ .capsula-description {
113
+ color: #666;
114
+ margin-bottom: 15px;
115
+ flex-grow: 1;
116
+ font-size: 0.9rem;
117
+ line-height: 1.5;
118
+ }
119
+
120
+ .capsula-tags {
121
+ display: flex;
122
+ flex-wrap: wrap;
123
+ gap: 8px;
124
+ margin-bottom: 15px;
125
+ }
126
+
127
+ .tag {
128
+ display: inline-flex;
129
+ align-items: center;
130
+ background-color: #f0f0f0;
131
+ color: #555;
132
+ font-size: 0.75rem;
133
+ padding: 3px 8px;
134
+ border-radius: 12px;
135
+ }
136
+
137
+ .tag-icon {
138
+ margin-right: 4px;
139
+ display: inline-flex;
140
+ }
141
+
142
+ .capsula-priority {
143
+ display: flex;
144
+ align-items: center;
145
+ margin-bottom: 20px;
146
+ }
147
+
148
+ .priority-icon {
149
+ margin-right: 5px;
150
+ }
151
+
152
+ .priority-mandatory {
153
+ color: #ff5555;
154
+ }
155
+
156
+ .priority-recommended {
157
+ color: #008080;
158
+ }
159
+
160
+ .priority-text {
161
+ font-size: 0.8rem;
162
+ font-weight: 600;
163
+ }
164
+
165
+ .capsula-access-button {
166
+ background-color: #005555;
167
+ color: white;
168
+ border: none;
169
+ padding: 10px 15px;
170
+ border-radius: 4px;
171
+ font-weight: 600;
172
+ text-align: center;
173
+ text-decoration: none;
174
+ transition: background-color 0.2s;
175
+ display: block;
176
+ }
177
+
178
+ .capsula-access-button:hover {
179
+ background-color: #003333;
180
+ text-decoration: none;
181
+ }
182
+ </style>
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: wagtail-enap-designsystem
3
- Version: 1.2.1.197
3
+ Version: 1.2.1.199
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
@@ -7,14 +7,14 @@ enap_designsystem/signals.py,sha256=oaHpZms4Dkc97ql-55Q0QxU7-45jwg2Y1XoRDOJ45tc,
7
7
  enap_designsystem/urls.py,sha256=EJ52w-55BysQU5pTZR4ltMtZM7aSKyjZdnQDGFipDXY,2219
8
8
  enap_designsystem/views.py,sha256=7C-juv7sLLDiF8UfZthzbA0lkH1yIYVqiYZK-76lKCk,78334
9
9
  enap_designsystem/wagtail_hooks.py,sha256=0SU5gtFY_9JFRqTKG6QsU8Hzh1qwZvmIydbaw6rlMA4,76939
10
- enap_designsystem/blocks/__init__.py,sha256=jtlNAEIsIo_KipwQcUMVQuR4vdt4AjrLjag6CFURD6E,39527
10
+ enap_designsystem/blocks/__init__.py,sha256=q-rTROWyR_DNBBs2vPnrSVZkq5_v9VvWmoAEmKb6bj0,39627
11
11
  enap_designsystem/blocks/base_blocks.py,sha256=ZuqVWn4PEAvD3pKM1ST7wjo4lwv98ooen_rs15rRJbg,10866
12
12
  enap_designsystem/blocks/chatbot_blocks.py,sha256=YeCznrXMbFa9MP9vjdTYl53ZhKsywkGOXvFK2bwcqW0,1133
13
13
  enap_designsystem/blocks/content_blocks.py,sha256=X8Ldf6eMRhjhIYxC2rLssb151r2iFFFQ8XxwPpBbjyI,17282
14
- enap_designsystem/blocks/form.py,sha256=rQ_KfMgafbA7NSBGneUsregEhphKCxfNh4rG8s6FEWI,90007
15
- enap_designsystem/blocks/html_blocks.py,sha256=YE8xNA8HQ5iavP_UIlJrhwIUpgtfVMQTP3XVk2dg4J0,281986
14
+ enap_designsystem/blocks/form.py,sha256=fVohUAc1JWJZkFiEuc7ar3HTje-lqUj_n0Qcmxv7luU,89937
15
+ enap_designsystem/blocks/html_blocks.py,sha256=GWMBpuDndPyiwciyBQedYBM75t_bZ-6CRFWrKc-erGk,283652
16
16
  enap_designsystem/blocks/layout_blocks.py,sha256=qND7aUna3VL3PK7sAKE7PiPfSvahMwHK_lZoKUkudeo,23461
17
- enap_designsystem/blocks/security.py,sha256=cOdLix8cOkjV-Ef-NMjrVid0e3u5uxGNPZk8S7J-rr0,2178
17
+ enap_designsystem/blocks/security.py,sha256=WysHpW0HtZoQTGy9YilYrgtWxUcMinq9vN8KkJxJ7KI,2191
18
18
  enap_designsystem/blocks/semana_blocks.py,sha256=AfaxJQmStvFkw6yrPeKyZurC6jzCxWxyzmdny_pret0,70929
19
19
  enap_designsystem/blocks/semana_inovacao.py,sha256=iPwsYG4oIZIIGR9zyu7bCTuVGn-E8-28KjPnI-SNIAs,47038
20
20
  enap_designsystem/middleware/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
@@ -506,6 +506,12 @@ enap_designsystem/migrations/0465_alter_areaaluno_body_alter_cursoeadpage_curso_
506
506
  enap_designsystem/migrations/0466_carouselresponsivo_largura_container.py,sha256=6cltCx3D0oZO_h3DNIRbouZAAToOkQcvleYAC7-Ze6M,816
507
507
  enap_designsystem/migrations/0467_alter_areaaluno_body_alter_cursoeadpage_curso_and_more.py,sha256=3KzChbL7mDiZfUClD8dyOh4v4iauOolXkogLmIzhnBM,4041749
508
508
  enap_designsystem/migrations/0468_alter_areaaluno_body_alter_cursoeadpage_curso_and_more.py,sha256=0hVCHkhjoI7QaIZZr4deFs1Qjj3GV_VG3W1GOpqWmQk,4033175
509
+ enap_designsystem/migrations/0469_alter_areaaluno_body_alter_cursoeadpage_curso_and_more.py,sha256=9dgl_uhE_F7RGa4wdlk_-wjt4k5_tWeJdesPYG-OmzA,3128754
510
+ enap_designsystem/migrations/0470_alter_areaaluno_body_alter_enapcomponentes_body_and_more.py,sha256=LLgc03RxO3ilfIwR2RlWsvniVX00BQkhYVkIo5_QcP4,3068560
511
+ enap_designsystem/migrations/0471_alter_areaaluno_body_alter_enapcomponentes_body_and_more.py,sha256=ORJGrinR7RpjukLIwZpVGqtCRAE8W1miyfTnP-LAZjk,3068730
512
+ enap_designsystem/migrations/0472_alter_areaaluno_body_alter_enapcomponentes_body_and_more.py,sha256=duHECTHQjCP_zjgz11yeuf0t3Ymg9LBB6NxNQ4OCSB4,3068286
513
+ enap_designsystem/migrations/0473_alter_areaaluno_body_alter_enapcomponentes_body_and_more.py,sha256=NpNAX_Bl-E-Kvk59o-hVxzehvzgLw2EHXsRQVWIrWqg,3061134
514
+ enap_designsystem/migrations/0474_alter_areaaluno_body_alter_enapcomponentes_body_and_more.py,sha256=-wXgnM-Jj0ye5wBlIEQnYOoegcHK5ZR6b89UXppbYwo,3068478
509
515
  enap_designsystem/migrations/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
510
516
  enap_designsystem/search_backends/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
511
517
  enap_designsystem/search_backends/custom_elasticsearch.py,sha256=LeQT0_dJmNMTY7l3jOJ_7mJ9-2X0oXVqvxRiXEA0qGY,988
@@ -539,7 +545,7 @@ enap_designsystem/static/enap_designsystem/blocks/cards_titles.css,sha256=6Vg1sK
539
545
  enap_designsystem/static/enap_designsystem/blocks/carousel.css,sha256=POZx1jeppReDfqejVRNxnzCXiZ_5J9setJ827T5aPCk,2755
540
546
  enap_designsystem/static/enap_designsystem/blocks/carousel_bggreen.css,sha256=ksslVUsraQWId7TTVerrX3zd66v_nXBFaCgdLGaP28s,12850
541
547
  enap_designsystem/static/enap_designsystem/blocks/carousel_images.css,sha256=Ld475eZdT2_zwSOS-EBKejze2RP9CuWI5r_hQ93TioU,5307
542
- enap_designsystem/static/enap_designsystem/blocks/carousel_responsive.css,sha256=dBUOq4yOD9NLpcq8H7roMs4XZoZ_HURVI9fkK1_vxjo,9392
548
+ enap_designsystem/static/enap_designsystem/blocks/carousel_responsive.css,sha256=dazIIRfCMNtloiB54MCs7c8rmYEtV3qphqwHWZOirmk,9457
543
549
  enap_designsystem/static/enap_designsystem/blocks/carousel_responsivo_snippet.css,sha256=qPbGbUJCDVVnsu79wNW4Mf2BGkjd0eEsGxvBe3g-ztM,5650
544
550
  enap_designsystem/static/enap_designsystem/blocks/cartao_destacado.css,sha256=tXCoiijxoYdFbE2b988MqnFiJBKmPhzt7ZFJ42l3eIw,2362
545
551
  enap_designsystem/static/enap_designsystem/blocks/citizen_server_block.css,sha256=wEKpMXGrkBai1N8fQdEaj_dSEzLa7tbt_ww0dUUzvsA,5362
@@ -719,7 +725,7 @@ enap_designsystem/templates/enap_designsystem/blocks/cards_section.html,sha256=j
719
725
  enap_designsystem/templates/enap_designsystem/blocks/cards_titles.html,sha256=HaZsfL4NcviMGaDFYoYdxeM5LXJ2ogmZL244W8DI2NI,10445
720
726
  enap_designsystem/templates/enap_designsystem/blocks/carousel.html,sha256=QAs_DfF8FAecD8bjHoVThBUGhSZJUL0g2s3pbHx-hr4,12929
721
727
  enap_designsystem/templates/enap_designsystem/blocks/carousel_bggreen.html,sha256=gVzBQ4lzSLVEvCQiIqQgqziu7QY49zOVSSsWh9D1wug,28069
722
- enap_designsystem/templates/enap_designsystem/blocks/carousel_images.html,sha256=0QXlix-B9JSsPKAjYGXHyFiSwDCrhmzsAHHpIGJB2cg,11433
728
+ enap_designsystem/templates/enap_designsystem/blocks/carousel_images.html,sha256=e2yRKsf6C1r-9JL4FjyWa88Y8UiA22A24I0BM_uafMs,13095
723
729
  enap_designsystem/templates/enap_designsystem/blocks/carousel_responsive.html,sha256=-ADa8CP9B6MuIg2YDSai_NJ9443UdKy5EOda9TFhomY,13911
724
730
  enap_designsystem/templates/enap_designsystem/blocks/carousel_responsive_slide.html,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
725
731
  enap_designsystem/templates/enap_designsystem/blocks/carousel_responsivo_snippet.html,sha256=poc_DMakPS6KMkRYPUOOPGKMSumPo8VypYVVz9VGl30,19246
@@ -834,7 +840,7 @@ enap_designsystem/templates/enap_designsystem/blocks/suap/apisuap_courses_block.
834
840
  enap_designsystem/templates/enap_designsystem/blocks/suap/suap_courses_block.html,sha256=_7AC4WBH4qCXmwlKqnRLbPeUnAopLGeKUIrd6FYcvps,16036
835
841
  enap_designsystem/templates/enap_designsystem/blocks/suap/suap_events_block.html,sha256=mL2DFQeAuDIx_GyCoEURKmME-Mmd-zQ_NZkO7YW9Z2k,20182
836
842
  enap_designsystem/templates/enap_designsystem/form_templates/form_report.html,sha256=WXf4HgNQY0M6zZ-tERqf01mHbGflqWXT96RaJYjCxFA,16081
837
- enap_designsystem/templates/enap_designsystem/form_templates/formulario_page.html,sha256=kDdB_pSFU5_Z4Kh81oSyItDs6xy6U88rJFTfFv91ld0,64367
843
+ enap_designsystem/templates/enap_designsystem/form_templates/formulario_page.html,sha256=eu0GY3if-UgyklcdnCSiaU6mxBZGsPIjr8aVuhu_DoI,65974
838
844
  enap_designsystem/templates/enap_designsystem/form_templates/formulario_page_landing.html,sha256=2dVaFwunBrHsq0b3rP1buEFxO6hfplFH3-GoUuyLJPo,7598
839
845
  enap_designsystem/templates/enap_designsystem/form_templates/formulario_page_success.html,sha256=jFE9GYRxy19ha37pVvucEVYDKTeU56Nav2Fd3phqmZ4,9363
840
846
  enap_designsystem/templates/enap_designsystem/form_templates/home_page.html,sha256=BYV5TV6xp0uY3SWtNsAf8p-aDqPiHfM8j4pWbqTUV2M,42329
@@ -848,7 +854,7 @@ enap_designsystem/templates/enap_designsystem/pages/404.html,sha256=v_vUTG27_ohx
848
854
  enap_designsystem/templates/enap_designsystem/pages/area_aluno.html,sha256=aWDmOE3Ti0Ct-ztxh7tcgIDGvdij7Heq5gzMyHLjjR0,15775
849
855
  enap_designsystem/templates/enap_designsystem/pages/article_index_page.html,sha256=6VjJ3_EroEPCidFCW5gBDzvbi81UcFX9lGpbc4j6r9U,11482
850
856
  enap_designsystem/templates/enap_designsystem/pages/capsula_index_page.html,sha256=HV79lVbrtis8GcQ72oHuygJNeaP8ZMmTFkGNNQaWhyo,18507
851
- enap_designsystem/templates/enap_designsystem/pages/capsula_page.html,sha256=xdITMDUBBeoygdtREbL1ORUd0TPd8_Ir2t97c-foePs,37273
857
+ enap_designsystem/templates/enap_designsystem/pages/capsula_page.html,sha256=s4JI9Gf6-QzcDGV2INh5QiShkdVCyaVCVAlKnWzJZN4,37272
852
858
  enap_designsystem/templates/enap_designsystem/pages/carta_servico.html,sha256=Fi0nIa1PF2PO7hjzccT64a5IaxUOimPjVn4BM2RJAcU,69181
853
859
  enap_designsystem/templates/enap_designsystem/pages/curso_ead.html,sha256=54JDGkkJ8_zzPQ8-focy44x-6DOTRNoW8hgtO3JbsmQ,3521
854
860
  enap_designsystem/templates/enap_designsystem/pages/durante_evento.html,sha256=cp5Z9KHmNvj5nAMVuUJWxu6lPqjs5GRP8raASp5Tw6U,9876
@@ -875,6 +881,7 @@ enap_designsystem/templates/enap_designsystem/pages/article/enap_noticias_index.
875
881
  enap_designsystem/templates/enap_designsystem/pages/article/enap_revista.html,sha256=Q1TcsbLm39Z7QVc-0fYHL5pNxH8MAQiTSpI7KKtDzgg,7879
876
882
  enap_designsystem/templates/enap_designsystem/pages/article/joomla/enap_noticia_importada.html,sha256=xIe9UORdwJ9o-9epUyf6u5RGQARMOFf3ifxz9-FLupY,3912
877
883
  enap_designsystem/templates/enap_designsystem/pages/mini/article_page.mini.html,sha256=KGOnPN1iXNg1I8xIkSELoDGqgNG6qBzxyYiibKx6xPo,761
884
+ enap_designsystem/templates/enap_designsystem/pages/mini/cards.html,sha256=MOlGgZNHy7Zy5FpLtywwcjD7yeNIivUTOeGk1jBCl8I,5892
878
885
  enap_designsystem/templates/enap_designsystem/pages/mini/dropdown-holofote_blocks.html,sha256=kJqC4PCoXFFbUaa_XFUp6883rSeRd-EmCcwRMFjc3qs,2627
879
886
  enap_designsystem/templates/enap_designsystem/pages/mini/eventos.html,sha256=8H3umZa5Bc2mkNWEWYNFVAHekAubZf_T6Gczsd1AFX4,21248
880
887
  enap_designsystem/templates/enap_designsystem/semana_inovacao/atividade_block.html,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
@@ -934,8 +941,8 @@ enap_designsystem/utils/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG
934
941
  enap_designsystem/utils/decorators.py,sha256=aq6SbLn0LcH2rfE3ZFit8jkD7pSx9fLVBUUwVB747hg,335
935
942
  enap_designsystem/utils/services.py,sha256=6dG5jLSbwH49jpZV9ZNpWlaZqI49gTlwlr1vaerxdiU,5824
936
943
  enap_designsystem/utils/sso.py,sha256=vjAuoYgoLeQAa_dkkyQ6-LmHvKMaVCxizNFpe5y3iUA,1145
937
- wagtail_enap_designsystem-1.2.1.197.dist-info/licenses/LICENSE,sha256=Btzdu2kIoMbdSp6OyCLupB1aRgpTCJ_szMimgEnpkkE,1056
938
- wagtail_enap_designsystem-1.2.1.197.dist-info/METADATA,sha256=jG3qmGYb67pVJdRwrgZUddsSL01qshapx5nXSdoaQJ8,3651
939
- wagtail_enap_designsystem-1.2.1.197.dist-info/WHEEL,sha256=_zCd3N1l69ArxyTb8rzEoP9TpbYXkqRFSNOD5OuxnTs,91
940
- wagtail_enap_designsystem-1.2.1.197.dist-info/top_level.txt,sha256=RSFgMASxoA-hVftm5i4Qd0rArlX4Dq08lLv5G4sYD-g,18
941
- wagtail_enap_designsystem-1.2.1.197.dist-info/RECORD,,
944
+ wagtail_enap_designsystem-1.2.1.199.dist-info/licenses/LICENSE,sha256=Btzdu2kIoMbdSp6OyCLupB1aRgpTCJ_szMimgEnpkkE,1056
945
+ wagtail_enap_designsystem-1.2.1.199.dist-info/METADATA,sha256=V3M1A8KrZzW0rFLn532RDQYRr5uU0vCILfA97RHPYOs,3651
946
+ wagtail_enap_designsystem-1.2.1.199.dist-info/WHEEL,sha256=_zCd3N1l69ArxyTb8rzEoP9TpbYXkqRFSNOD5OuxnTs,91
947
+ wagtail_enap_designsystem-1.2.1.199.dist-info/top_level.txt,sha256=RSFgMASxoA-hVftm5i4Qd0rArlX4Dq08lLv5G4sYD-g,18
948
+ wagtail_enap_designsystem-1.2.1.199.dist-info/RECORD,,