wagtail-enap-designsystem 1.2.1.170__py3-none-any.whl → 1.2.1.172__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 (21) hide show
  1. enap_designsystem/blocks/content_blocks.py +2 -0
  2. enap_designsystem/blocks/html_blocks.py +4 -1
  3. enap_designsystem/migrations/0441_perguntaquiz_quizrotapage_alter_areaaluno_body_and_more.py +56121 -0
  4. enap_designsystem/migrations/0442_remove_perguntaquiz_page_delete_opcaoresposta_and_more.py +26 -0
  5. enap_designsystem/migrations/0443_capsulaindexpage_footer_capsulaindexpage_navbar_and_more.py +56029 -0
  6. enap_designsystem/migrations/0444_alter_areaaluno_body_alter_cursoeadpage_curso_and_more.py +70304 -0
  7. enap_designsystem/models.py +208 -2
  8. enap_designsystem/static/enap_designsystem/blocks/capsulas.css +0 -1
  9. enap_designsystem/static/enap_designsystem/blocks/cards.css +1 -0
  10. enap_designsystem/templates/enap_designsystem/blocks/card_block.html +158 -1
  11. enap_designsystem/templates/enap_designsystem/blocks/section_block.html +5 -5
  12. enap_designsystem/templates/enap_designsystem/pages/capsula_index_page.html +137 -128
  13. enap_designsystem/templates/enap_designsystem/pages/capsula_page.html +135 -276
  14. enap_designsystem/templates/enap_designsystem/pages/page_search.html +1 -1
  15. enap_designsystem/templates/enap_designsystem/pages/quiz_rota_page.html +922 -0
  16. enap_designsystem/templates/enap_designsystem/semana_inovacao/blocks_menu_navigation.html +6 -2
  17. {wagtail_enap_designsystem-1.2.1.170.dist-info → wagtail_enap_designsystem-1.2.1.172.dist-info}/METADATA +1 -1
  18. {wagtail_enap_designsystem-1.2.1.170.dist-info → wagtail_enap_designsystem-1.2.1.172.dist-info}/RECORD +21 -16
  19. {wagtail_enap_designsystem-1.2.1.170.dist-info → wagtail_enap_designsystem-1.2.1.172.dist-info}/WHEEL +0 -0
  20. {wagtail_enap_designsystem-1.2.1.170.dist-info → wagtail_enap_designsystem-1.2.1.172.dist-info}/licenses/LICENSE +0 -0
  21. {wagtail_enap_designsystem-1.2.1.170.dist-info → wagtail_enap_designsystem-1.2.1.172.dist-info}/top_level.txt +0 -0
@@ -159,6 +159,8 @@ class EnapCardBlock(blocks.StructBlock):
159
159
  ('card-bgimage', 'Tipo BG Image'),
160
160
  ('card-horizontal', 'Tipo Horizontal'),
161
161
  ('card-horizontal-reverse', 'Tipo Horizontal Invertido'),
162
+ ('card-info-white', 'Informativo white'),
163
+ ('card-info-dark', 'Informativo dark'),
162
164
 
163
165
  ],
164
166
  default='card-primary',
@@ -155,7 +155,10 @@ FONTAWESOME_ICON_CHOICES = [
155
155
  ('fa-solid fa-thumbs-up', 'Like'),
156
156
  ('fa-solid fa-rocket', 'Foguete'),
157
157
  ('fa-solid fa-lightbulb', 'Lâmpada'),
158
- ('fa-solid fa-target', 'Alvo'),
158
+ ('fa-solid fa-bullseye', 'Alvo'),
159
+ ('fa-solid fa-route', 'Rota'),
160
+ ('fa-solid fa-message', 'Mensagem'),
161
+ ('fa-solid fa-globe', 'Globo'),
159
162
  ]
160
163
 
161
164
  class ButtonBlock(ButtonMixin, BaseLinkBlock):