wagtail-feathers 1.0__tar.gz
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.
- wagtail_feathers-1.0/CHANGELOG.md +81 -0
- wagtail_feathers-1.0/LICENSE +29 -0
- wagtail_feathers-1.0/MANIFEST.in +28 -0
- wagtail_feathers-1.0/PKG-INFO +851 -0
- wagtail_feathers-1.0/README.md +814 -0
- wagtail_feathers-1.0/demo/README.md +118 -0
- wagtail_feathers-1.0/demo/manage.py +22 -0
- wagtail_feathers-1.0/demo/requirements.txt +6 -0
- wagtail_feathers-1.0/demo/settings.py +165 -0
- wagtail_feathers-1.0/demo/showcase/__init__.py +0 -0
- wagtail_feathers-1.0/demo/showcase/apps.py +6 -0
- wagtail_feathers-1.0/demo/showcase/management/__init__.py +0 -0
- wagtail_feathers-1.0/demo/showcase/management/commands/__init__.py +0 -0
- wagtail_feathers-1.0/demo/showcase/management/commands/setup_demo_data.py +124 -0
- wagtail_feathers-1.0/demo/showcase/migrations/0001_initial.py +150 -0
- wagtail_feathers-1.0/demo/showcase/migrations/0002_remove_articlepage_display_authors_and_more.py +47 -0
- wagtail_feathers-1.0/demo/showcase/migrations/__init__.py +0 -0
- wagtail_feathers-1.0/demo/showcase/models.py +282 -0
- wagtail_feathers-1.0/demo/showcase/viewsets.py +12 -0
- wagtail_feathers-1.0/demo/showcase/wagtail_hooks.py +7 -0
- wagtail_feathers-1.0/demo/themes/quantum/static/assets/stimulus-CZA9Too6.js +5 -0
- wagtail_feathers-1.0/demo/themes/quantum/static/css/admin.css +1 -0
- wagtail_feathers-1.0/demo/themes/quantum/static/css/main.css +1 -0
- wagtail_feathers-1.0/demo/themes/quantum/static/fonts/FiraCode-Regular.woff2 +0 -0
- wagtail_feathers-1.0/demo/themes/quantum/static/fonts/PublicSans-Black.woff2 +0 -0
- wagtail_feathers-1.0/demo/themes/quantum/static/fonts/PublicSans-BlackItalic.woff2 +0 -0
- wagtail_feathers-1.0/demo/themes/quantum/static/fonts/PublicSans-Bold.woff2 +0 -0
- wagtail_feathers-1.0/demo/themes/quantum/static/fonts/PublicSans-BoldItalic.woff2 +0 -0
- wagtail_feathers-1.0/demo/themes/quantum/static/fonts/PublicSans-Italic.woff2 +0 -0
- wagtail_feathers-1.0/demo/themes/quantum/static/fonts/PublicSans-Light.woff2 +0 -0
- wagtail_feathers-1.0/demo/themes/quantum/static/fonts/PublicSans-Regular.woff2 +0 -0
- wagtail_feathers-1.0/demo/themes/quantum/static/fonts/PublicSans-SemiBold.woff2 +0 -0
- wagtail_feathers-1.0/demo/themes/quantum/static/fonts/PublicSans-SemiBoldItalic.woff2 +0 -0
- wagtail_feathers-1.0/demo/themes/quantum/static/fonts/PublicSans-Thin.woff2 +0 -0
- wagtail_feathers-1.0/demo/themes/quantum/static/images/placeholder-image.webp +0 -0
- wagtail_feathers-1.0/demo/themes/quantum/static/js/main.js +5 -0
- wagtail_feathers-1.0/demo/themes/quantum/static/js/scrollspy.js +1 -0
- wagtail_feathers-1.0/demo/themes/quantum/static/js/stimulus_admin_feathers.js +1 -0
- wagtail_feathers-1.0/demo/themes/quantum/static/js/theme.js +1 -0
- wagtail_feathers-1.0/demo/themes/quantum/templates/400.html +45 -0
- wagtail_feathers-1.0/demo/themes/quantum/templates/403.html +45 -0
- wagtail_feathers-1.0/demo/themes/quantum/templates/404.html +49 -0
- wagtail_feathers-1.0/demo/themes/quantum/templates/500.html +47 -0
- wagtail_feathers-1.0/demo/themes/quantum/templates/base.html +56 -0
- wagtail_feathers-1.0/demo/themes/quantum/templates/base_content_page.html +15 -0
- wagtail_feathers-1.0/demo/themes/quantum/templates/base_page.html +10 -0
- wagtail_feathers-1.0/demo/themes/quantum/templates/components/_article_card.html +72 -0
- wagtail_feathers-1.0/demo/themes/quantum/templates/components/_locale_selector.html +47 -0
- wagtail_feathers-1.0/demo/themes/quantum/templates/components/_main_featured_article.html +78 -0
- wagtail_feathers-1.0/demo/themes/quantum/templates/components/_pagination.html +66 -0
- wagtail_feathers-1.0/demo/themes/quantum/templates/components/_secondary_featured_articles.html +79 -0
- wagtail_feathers-1.0/demo/themes/quantum/templates/components/_social_media_links.html +12 -0
- wagtail_feathers-1.0/demo/themes/quantum/templates/components/_theme_switcher.html +23 -0
- wagtail_feathers-1.0/demo/themes/quantum/templates/components/footer.html +107 -0
- wagtail_feathers-1.0/demo/themes/quantum/templates/components/header.html +101 -0
- wagtail_feathers-1.0/demo/themes/quantum/templates/includes/contact_addresses.html +35 -0
- wagtail_feathers-1.0/demo/themes/quantum/templates/pages/_article_list_item.html +0 -0
- wagtail_feathers-1.0/demo/themes/quantum/templates/pages/article_index_page.html +76 -0
- wagtail_feathers-1.0/demo/themes/quantum/templates/pages/article_page--christmas.html +62 -0
- wagtail_feathers-1.0/demo/themes/quantum/templates/pages/article_page--featured.html +62 -0
- wagtail_feathers-1.0/demo/themes/quantum/templates/pages/article_page.html +66 -0
- wagtail_feathers-1.0/demo/themes/quantum/templates/pages/form_page--newsletter.html +33 -0
- wagtail_feathers-1.0/demo/themes/quantum/templates/pages/form_page--newsletter_landing.html +36 -0
- wagtail_feathers-1.0/demo/themes/quantum/templates/pages/form_page.html +45 -0
- wagtail_feathers-1.0/demo/themes/quantum/templates/pages/form_page_landing.html +28 -0
- wagtail_feathers-1.0/demo/themes/quantum/templates/pages/home_page.html +47 -0
- wagtail_feathers-1.0/demo/themes/quantum/templates/pages/web_page--landing.html +19 -0
- wagtail_feathers-1.0/demo/themes/quantum/templates/pages/web_page--portfolio.html +27 -0
- wagtail_feathers-1.0/demo/themes/quantum/templates/pages/web_page.html +13 -0
- wagtail_feathers-1.0/demo/themes/quantum/templates/pages/welcome_page.html +52 -0
- wagtail_feathers-1.0/demo/themes/quantum/theme.json +75 -0
- wagtail_feathers-1.0/demo/urls.py +22 -0
- wagtail_feathers-1.0/demo/wsgi.py +11 -0
- wagtail_feathers-1.0/frontend/src/javascript/admin.js +16 -0
- wagtail_feathers-1.0/frontend/src/javascript/controllers/classifier-chooser-controller.js +288 -0
- wagtail_feathers-1.0/frontend/src/styles/_admin_blocks.css +98 -0
- wagtail_feathers-1.0/frontend/src/styles/_admin_classifiers.css +484 -0
- wagtail_feathers-1.0/frontend/src/styles/admin.css +66 -0
- wagtail_feathers-1.0/package-lock.json +1763 -0
- wagtail_feathers-1.0/package.json +14 -0
- wagtail_feathers-1.0/pyproject.toml +149 -0
- wagtail_feathers-1.0/src/.DS_Store +0 -0
- wagtail_feathers-1.0/src/wagtail_feathers/__init__.py +12 -0
- wagtail_feathers-1.0/src/wagtail_feathers/apps.py +9 -0
- wagtail_feathers-1.0/src/wagtail_feathers/blocks.py +1573 -0
- wagtail_feathers-1.0/src/wagtail_feathers/context_processors.py +52 -0
- wagtail_feathers-1.0/src/wagtail_feathers/factories.py +360 -0
- wagtail_feathers-1.0/src/wagtail_feathers/fields.py +39 -0
- wagtail_feathers-1.0/src/wagtail_feathers/filters.py +10 -0
- wagtail_feathers-1.0/src/wagtail_feathers/fixtures/sample_taxonomy.json +462 -0
- wagtail_feathers-1.0/src/wagtail_feathers/forms.py +101 -0
- wagtail_feathers-1.0/src/wagtail_feathers/helpers.py +65 -0
- wagtail_feathers-1.0/src/wagtail_feathers/management/__init__.py +0 -0
- wagtail_feathers-1.0/src/wagtail_feathers/management/commands/__init__.py +0 -0
- wagtail_feathers-1.0/src/wagtail_feathers/management/commands/create_sample_taxonomy.py +222 -0
- wagtail_feathers-1.0/src/wagtail_feathers/management/commands/manage_categories.py +177 -0
- wagtail_feathers-1.0/src/wagtail_feathers/management/commands/tailwind_source.py +14 -0
- wagtail_feathers-1.0/src/wagtail_feathers/management/commands/themes.py +256 -0
- wagtail_feathers-1.0/src/wagtail_feathers/middleware.py +37 -0
- wagtail_feathers-1.0/src/wagtail_feathers/migrations/0001_initial.py +552 -0
- wagtail_feathers-1.0/src/wagtail_feathers/migrations/0002_alter_featherbasepage_body.py +20 -0
- wagtail_feathers-1.0/src/wagtail_feathers/migrations/0003_alter_featherbasepage_body.py +20 -0
- wagtail_feathers-1.0/src/wagtail_feathers/migrations/0004_alter_flatmenu_slug_alter_footernavigation_slug_and_more.py +51 -0
- wagtail_feathers-1.0/src/wagtail_feathers/migrations/0005_alter_featherbasepage_body.py +19 -0
- wagtail_feathers-1.0/src/wagtail_feathers/migrations/0006_alter_sitesettings_words_per_minute.py +31 -0
- wagtail_feathers-1.0/src/wagtail_feathers/migrations/0007_alter_featherbasepage_body.py +19 -0
- wagtail_feathers-1.0/src/wagtail_feathers/migrations/0008_alter_featherbasepage_body.py +19 -0
- wagtail_feathers-1.0/src/wagtail_feathers/migrations/__init__.py +0 -0
- wagtail_feathers-1.0/src/wagtail_feathers/mixins.py +834 -0
- wagtail_feathers-1.0/src/wagtail_feathers/models/__init__.py +70 -0
- wagtail_feathers-1.0/src/wagtail_feathers/models/author.py +107 -0
- wagtail_feathers-1.0/src/wagtail_feathers/models/base.py +444 -0
- wagtail_feathers-1.0/src/wagtail_feathers/models/errors.py +82 -0
- wagtail_feathers-1.0/src/wagtail_feathers/models/faq.py +116 -0
- wagtail_feathers-1.0/src/wagtail_feathers/models/geographic.py +80 -0
- wagtail_feathers-1.0/src/wagtail_feathers/models/inline.py +73 -0
- wagtail_feathers-1.0/src/wagtail_feathers/models/navigation.py +374 -0
- wagtail_feathers-1.0/src/wagtail_feathers/models/person.py +110 -0
- wagtail_feathers-1.0/src/wagtail_feathers/models/settings.py +157 -0
- wagtail_feathers-1.0/src/wagtail_feathers/models/social.py +90 -0
- wagtail_feathers-1.0/src/wagtail_feathers/models/specialized_pages.py +282 -0
- wagtail_feathers-1.0/src/wagtail_feathers/models/taxonomy.py +777 -0
- wagtail_feathers-1.0/src/wagtail_feathers/models/utils.py +9 -0
- wagtail_feathers-1.0/src/wagtail_feathers/panels.py +25 -0
- wagtail_feathers-1.0/src/wagtail_feathers/static/.DS_Store +0 -0
- wagtail_feathers-1.0/src/wagtail_feathers/static/css/wagtail_feathers_admin.css +568 -0
- wagtail_feathers-1.0/src/wagtail_feathers/static/images/placeholder-image.webp +0 -0
- wagtail_feathers-1.0/src/wagtail_feathers/static/js/wagtail_feathers_admin.js +2679 -0
- wagtail_feathers-1.0/src/wagtail_feathers/struct_values.py +67 -0
- wagtail_feathers-1.0/src/wagtail_feathers/styles.py +10 -0
- wagtail_feathers-1.0/src/wagtail_feathers/templates/wagtail_feathers/admin/category_add_child.html +90 -0
- wagtail_feathers-1.0/src/wagtail_feathers/templates/wagtail_feathers/admin/category_move.html +90 -0
- wagtail_feathers-1.0/src/wagtail_feathers/templates/wagtail_feathers/admin/generic/chooser/classifier_chooser.html +92 -0
- wagtail_feathers-1.0/src/wagtail_feathers/templates/wagtail_feathers/blocks/_nested_navigation_link_block.html +21 -0
- wagtail_feathers-1.0/src/wagtail_feathers/templates/wagtail_feathers/blocks/card_block.html +44 -0
- wagtail_feathers-1.0/src/wagtail_feathers/templates/wagtail_feathers/blocks/card_section_block.html +21 -0
- wagtail_feathers-1.0/src/wagtail_feathers/templates/wagtail_feathers/blocks/cards_container_block.html +24 -0
- wagtail_feathers-1.0/src/wagtail_feathers/templates/wagtail_feathers/blocks/column_block.html +26 -0
- wagtail_feathers-1.0/src/wagtail_feathers/templates/wagtail_feathers/blocks/cta_block.html +140 -0
- wagtail_feathers-1.0/src/wagtail_feathers/templates/wagtail_feathers/blocks/embed_block.html +17 -0
- wagtail_feathers-1.0/src/wagtail_feathers/templates/wagtail_feathers/blocks/faq_section_embed_block.html +38 -0
- wagtail_feathers-1.0/src/wagtail_feathers/templates/wagtail_feathers/blocks/grid_block.html +13 -0
- wagtail_feathers-1.0/src/wagtail_feathers/templates/wagtail_feathers/blocks/header_image_block.html +28 -0
- wagtail_feathers-1.0/src/wagtail_feathers/templates/wagtail_feathers/blocks/heading_block.html +21 -0
- wagtail_feathers-1.0/src/wagtail_feathers/templates/wagtail_feathers/blocks/hero_block.html +116 -0
- wagtail_feathers-1.0/src/wagtail_feathers/templates/wagtail_feathers/blocks/html_grid_block.html +18 -0
- wagtail_feathers-1.0/src/wagtail_feathers/templates/wagtail_feathers/blocks/image_block.html +26 -0
- wagtail_feathers-1.0/src/wagtail_feathers/templates/wagtail_feathers/blocks/image_collection_gallery_block.html +117 -0
- wagtail_feathers-1.0/src/wagtail_feathers/templates/wagtail_feathers/blocks/image_grid_block.html +124 -0
- wagtail_feathers-1.0/src/wagtail_feathers/templates/wagtail_feathers/blocks/page_heading_block.html +6 -0
- wagtail_feathers-1.0/src/wagtail_feathers/templates/wagtail_feathers/blocks/paragraph_block.html +4 -0
- wagtail_feathers-1.0/src/wagtail_feathers/templates/wagtail_feathers/blocks/quote_block.html +12 -0
- wagtail_feathers-1.0/src/wagtail_feathers/templates/wagtail_feathers/blocks/submenu_divider_block.html +7 -0
- wagtail_feathers-1.0/src/wagtail_feathers/templates/wagtail_feathers/icons/outline/heroicon-academic-cap-outline.svg +3 -0
- wagtail_feathers-1.0/src/wagtail_feathers/templates/wagtail_feathers/icons/outline/heroicon-adjustments-horizontal-outline.svg +3 -0
- wagtail_feathers-1.0/src/wagtail_feathers/templates/wagtail_feathers/icons/outline/heroicon-adjustments-vertical-outline.svg +3 -0
- wagtail_feathers-1.0/src/wagtail_feathers/templates/wagtail_feathers/icons/outline/heroicon-archive-box-arrow-down-outline.svg +3 -0
- wagtail_feathers-1.0/src/wagtail_feathers/templates/wagtail_feathers/icons/outline/heroicon-archive-box-outline.svg +3 -0
- wagtail_feathers-1.0/src/wagtail_feathers/templates/wagtail_feathers/icons/outline/heroicon-archive-box-x-mark-outline.svg +3 -0
- wagtail_feathers-1.0/src/wagtail_feathers/templates/wagtail_feathers/icons/outline/heroicon-arrow-down-circle-outline.svg +3 -0
- wagtail_feathers-1.0/src/wagtail_feathers/templates/wagtail_feathers/icons/outline/heroicon-arrow-down-left-outline.svg +3 -0
- wagtail_feathers-1.0/src/wagtail_feathers/templates/wagtail_feathers/icons/outline/heroicon-arrow-down-on-square-outline.svg +3 -0
- wagtail_feathers-1.0/src/wagtail_feathers/templates/wagtail_feathers/icons/outline/heroicon-arrow-down-on-square-stack-outline.svg +3 -0
- wagtail_feathers-1.0/src/wagtail_feathers/templates/wagtail_feathers/icons/outline/heroicon-arrow-down-outline.svg +3 -0
- wagtail_feathers-1.0/src/wagtail_feathers/templates/wagtail_feathers/icons/outline/heroicon-arrow-down-right-outline.svg +3 -0
- wagtail_feathers-1.0/src/wagtail_feathers/templates/wagtail_feathers/icons/outline/heroicon-arrow-down-tray-outline.svg +3 -0
- wagtail_feathers-1.0/src/wagtail_feathers/templates/wagtail_feathers/icons/outline/heroicon-arrow-left-circle-outline.svg +3 -0
- wagtail_feathers-1.0/src/wagtail_feathers/templates/wagtail_feathers/icons/outline/heroicon-arrow-left-end-on-rectangle-outline.svg +3 -0
- wagtail_feathers-1.0/src/wagtail_feathers/templates/wagtail_feathers/icons/outline/heroicon-arrow-left-on-rectangle-outline.svg +3 -0
- wagtail_feathers-1.0/src/wagtail_feathers/templates/wagtail_feathers/icons/outline/heroicon-arrow-left-outline.svg +3 -0
- wagtail_feathers-1.0/src/wagtail_feathers/templates/wagtail_feathers/icons/outline/heroicon-arrow-left-start-on-rectangle-outline.svg +3 -0
- wagtail_feathers-1.0/src/wagtail_feathers/templates/wagtail_feathers/icons/outline/heroicon-arrow-long-down-outline.svg +3 -0
- wagtail_feathers-1.0/src/wagtail_feathers/templates/wagtail_feathers/icons/outline/heroicon-arrow-long-left-outline.svg +3 -0
- wagtail_feathers-1.0/src/wagtail_feathers/templates/wagtail_feathers/icons/outline/heroicon-arrow-long-right-outline.svg +3 -0
- wagtail_feathers-1.0/src/wagtail_feathers/templates/wagtail_feathers/icons/outline/heroicon-arrow-long-up-outline.svg +3 -0
- wagtail_feathers-1.0/src/wagtail_feathers/templates/wagtail_feathers/icons/outline/heroicon-arrow-path-outline.svg +3 -0
- wagtail_feathers-1.0/src/wagtail_feathers/templates/wagtail_feathers/icons/outline/heroicon-arrow-path-rounded-square-outline.svg +3 -0
- wagtail_feathers-1.0/src/wagtail_feathers/templates/wagtail_feathers/icons/outline/heroicon-arrow-right-circle-outline.svg +3 -0
- wagtail_feathers-1.0/src/wagtail_feathers/templates/wagtail_feathers/icons/outline/heroicon-arrow-right-end-on-rectangle-outline.svg +3 -0
- wagtail_feathers-1.0/src/wagtail_feathers/templates/wagtail_feathers/icons/outline/heroicon-arrow-right-on-rectangle-outline.svg +3 -0
- wagtail_feathers-1.0/src/wagtail_feathers/templates/wagtail_feathers/icons/outline/heroicon-arrow-right-outline.svg +3 -0
- wagtail_feathers-1.0/src/wagtail_feathers/templates/wagtail_feathers/icons/outline/heroicon-arrow-right-start-on-rectangle-outline.svg +3 -0
- wagtail_feathers-1.0/src/wagtail_feathers/templates/wagtail_feathers/icons/outline/heroicon-arrow-small-down-outline.svg +3 -0
- wagtail_feathers-1.0/src/wagtail_feathers/templates/wagtail_feathers/icons/outline/heroicon-arrow-small-left-outline.svg +3 -0
- wagtail_feathers-1.0/src/wagtail_feathers/templates/wagtail_feathers/icons/outline/heroicon-arrow-small-right-outline.svg +3 -0
- wagtail_feathers-1.0/src/wagtail_feathers/templates/wagtail_feathers/icons/outline/heroicon-arrow-small-up-outline.svg +3 -0
- wagtail_feathers-1.0/src/wagtail_feathers/templates/wagtail_feathers/icons/outline/heroicon-arrow-top-right-on-square-outline.svg +3 -0
- wagtail_feathers-1.0/src/wagtail_feathers/templates/wagtail_feathers/icons/outline/heroicon-arrow-trending-down-outline.svg +3 -0
- wagtail_feathers-1.0/src/wagtail_feathers/templates/wagtail_feathers/icons/outline/heroicon-arrow-trending-up-outline.svg +3 -0
- wagtail_feathers-1.0/src/wagtail_feathers/templates/wagtail_feathers/icons/outline/heroicon-arrow-turn-down-left-outline.svg +3 -0
- wagtail_feathers-1.0/src/wagtail_feathers/templates/wagtail_feathers/icons/outline/heroicon-arrow-turn-down-right-outline.svg +3 -0
- wagtail_feathers-1.0/src/wagtail_feathers/templates/wagtail_feathers/icons/outline/heroicon-arrow-turn-left-down-outline.svg +3 -0
- wagtail_feathers-1.0/src/wagtail_feathers/templates/wagtail_feathers/icons/outline/heroicon-arrow-turn-left-up-outline.svg +3 -0
- wagtail_feathers-1.0/src/wagtail_feathers/templates/wagtail_feathers/icons/outline/heroicon-arrow-turn-right-down-outline.svg +3 -0
- wagtail_feathers-1.0/src/wagtail_feathers/templates/wagtail_feathers/icons/outline/heroicon-arrow-turn-right-up-outline.svg +3 -0
- wagtail_feathers-1.0/src/wagtail_feathers/templates/wagtail_feathers/icons/outline/heroicon-arrow-turn-up-left-outline.svg +3 -0
- wagtail_feathers-1.0/src/wagtail_feathers/templates/wagtail_feathers/icons/outline/heroicon-arrow-turn-up-right-outline.svg +3 -0
- wagtail_feathers-1.0/src/wagtail_feathers/templates/wagtail_feathers/icons/outline/heroicon-arrow-up-circle-outline.svg +3 -0
- wagtail_feathers-1.0/src/wagtail_feathers/templates/wagtail_feathers/icons/outline/heroicon-arrow-up-left-outline.svg +3 -0
- wagtail_feathers-1.0/src/wagtail_feathers/templates/wagtail_feathers/icons/outline/heroicon-arrow-up-on-square-outline.svg +3 -0
- wagtail_feathers-1.0/src/wagtail_feathers/templates/wagtail_feathers/icons/outline/heroicon-arrow-up-on-square-stack-outline.svg +3 -0
- wagtail_feathers-1.0/src/wagtail_feathers/templates/wagtail_feathers/icons/outline/heroicon-arrow-up-outline.svg +3 -0
- wagtail_feathers-1.0/src/wagtail_feathers/templates/wagtail_feathers/icons/outline/heroicon-arrow-up-right-outline.svg +3 -0
- wagtail_feathers-1.0/src/wagtail_feathers/templates/wagtail_feathers/icons/outline/heroicon-arrow-up-tray-outline.svg +3 -0
- wagtail_feathers-1.0/src/wagtail_feathers/templates/wagtail_feathers/icons/outline/heroicon-arrow-uturn-down-outline.svg +3 -0
- wagtail_feathers-1.0/src/wagtail_feathers/templates/wagtail_feathers/icons/outline/heroicon-arrow-uturn-left-outline.svg +3 -0
- wagtail_feathers-1.0/src/wagtail_feathers/templates/wagtail_feathers/icons/outline/heroicon-arrow-uturn-right-outline.svg +3 -0
- wagtail_feathers-1.0/src/wagtail_feathers/templates/wagtail_feathers/icons/outline/heroicon-arrow-uturn-up-outline.svg +3 -0
- wagtail_feathers-1.0/src/wagtail_feathers/templates/wagtail_feathers/icons/outline/heroicon-arrows-pointing-in-outline.svg +3 -0
- wagtail_feathers-1.0/src/wagtail_feathers/templates/wagtail_feathers/icons/outline/heroicon-arrows-pointing-out-outline.svg +3 -0
- wagtail_feathers-1.0/src/wagtail_feathers/templates/wagtail_feathers/icons/outline/heroicon-arrows-right-left-outline.svg +3 -0
- wagtail_feathers-1.0/src/wagtail_feathers/templates/wagtail_feathers/icons/outline/heroicon-arrows-up-down-outline.svg +3 -0
- wagtail_feathers-1.0/src/wagtail_feathers/templates/wagtail_feathers/icons/outline/heroicon-at-symbol-outline.svg +3 -0
- wagtail_feathers-1.0/src/wagtail_feathers/templates/wagtail_feathers/icons/outline/heroicon-backspace-outline.svg +3 -0
- wagtail_feathers-1.0/src/wagtail_feathers/templates/wagtail_feathers/icons/outline/heroicon-backward-outline.svg +3 -0
- wagtail_feathers-1.0/src/wagtail_feathers/templates/wagtail_feathers/icons/outline/heroicon-banknotes-outline.svg +3 -0
- wagtail_feathers-1.0/src/wagtail_feathers/templates/wagtail_feathers/icons/outline/heroicon-bars-2-outline.svg +3 -0
- wagtail_feathers-1.0/src/wagtail_feathers/templates/wagtail_feathers/icons/outline/heroicon-bars-3-bottom-left-outline.svg +3 -0
- wagtail_feathers-1.0/src/wagtail_feathers/templates/wagtail_feathers/icons/outline/heroicon-bars-3-bottom-right-outline.svg +3 -0
- wagtail_feathers-1.0/src/wagtail_feathers/templates/wagtail_feathers/icons/outline/heroicon-bars-3-center-left-outline.svg +3 -0
- wagtail_feathers-1.0/src/wagtail_feathers/templates/wagtail_feathers/icons/outline/heroicon-bars-3-outline.svg +3 -0
- wagtail_feathers-1.0/src/wagtail_feathers/templates/wagtail_feathers/icons/outline/heroicon-bars-4-outline.svg +3 -0
- wagtail_feathers-1.0/src/wagtail_feathers/templates/wagtail_feathers/icons/outline/heroicon-bars-arrow-down-outline.svg +3 -0
- wagtail_feathers-1.0/src/wagtail_feathers/templates/wagtail_feathers/icons/outline/heroicon-bars-arrow-up-outline.svg +3 -0
- wagtail_feathers-1.0/src/wagtail_feathers/templates/wagtail_feathers/icons/outline/heroicon-battery-0-outline.svg +3 -0
- wagtail_feathers-1.0/src/wagtail_feathers/templates/wagtail_feathers/icons/outline/heroicon-battery-100-outline.svg +3 -0
- wagtail_feathers-1.0/src/wagtail_feathers/templates/wagtail_feathers/icons/outline/heroicon-battery-50-outline.svg +3 -0
- wagtail_feathers-1.0/src/wagtail_feathers/templates/wagtail_feathers/icons/outline/heroicon-beaker-outline.svg +3 -0
- wagtail_feathers-1.0/src/wagtail_feathers/templates/wagtail_feathers/icons/outline/heroicon-bell-alert-outline.svg +3 -0
- wagtail_feathers-1.0/src/wagtail_feathers/templates/wagtail_feathers/icons/outline/heroicon-bell-outline.svg +3 -0
- wagtail_feathers-1.0/src/wagtail_feathers/templates/wagtail_feathers/icons/outline/heroicon-bell-slash-outline.svg +3 -0
- wagtail_feathers-1.0/src/wagtail_feathers/templates/wagtail_feathers/icons/outline/heroicon-bell-snooze-outline.svg +3 -0
- wagtail_feathers-1.0/src/wagtail_feathers/templates/wagtail_feathers/icons/outline/heroicon-bold-outline.svg +3 -0
- wagtail_feathers-1.0/src/wagtail_feathers/templates/wagtail_feathers/icons/outline/heroicon-bolt-outline.svg +3 -0
- wagtail_feathers-1.0/src/wagtail_feathers/templates/wagtail_feathers/icons/outline/heroicon-bolt-slash-outline.svg +3 -0
- wagtail_feathers-1.0/src/wagtail_feathers/templates/wagtail_feathers/icons/outline/heroicon-book-open-outline.svg +3 -0
- wagtail_feathers-1.0/src/wagtail_feathers/templates/wagtail_feathers/icons/outline/heroicon-bookmark-outline.svg +3 -0
- wagtail_feathers-1.0/src/wagtail_feathers/templates/wagtail_feathers/icons/outline/heroicon-bookmark-slash-outline.svg +3 -0
- wagtail_feathers-1.0/src/wagtail_feathers/templates/wagtail_feathers/icons/outline/heroicon-bookmark-square-outline.svg +3 -0
- wagtail_feathers-1.0/src/wagtail_feathers/templates/wagtail_feathers/icons/outline/heroicon-briefcase-outline.svg +3 -0
- wagtail_feathers-1.0/src/wagtail_feathers/templates/wagtail_feathers/icons/outline/heroicon-bug-ant-outline.svg +3 -0
- wagtail_feathers-1.0/src/wagtail_feathers/templates/wagtail_feathers/icons/outline/heroicon-building-library-outline.svg +3 -0
- wagtail_feathers-1.0/src/wagtail_feathers/templates/wagtail_feathers/icons/outline/heroicon-building-office-2-outline.svg +3 -0
- wagtail_feathers-1.0/src/wagtail_feathers/templates/wagtail_feathers/icons/outline/heroicon-building-office-outline.svg +3 -0
- wagtail_feathers-1.0/src/wagtail_feathers/templates/wagtail_feathers/icons/outline/heroicon-building-storefront-outline.svg +3 -0
- wagtail_feathers-1.0/src/wagtail_feathers/templates/wagtail_feathers/icons/outline/heroicon-cake-outline.svg +3 -0
- wagtail_feathers-1.0/src/wagtail_feathers/templates/wagtail_feathers/icons/outline/heroicon-calculator-outline.svg +3 -0
- wagtail_feathers-1.0/src/wagtail_feathers/templates/wagtail_feathers/icons/outline/heroicon-calendar-date-range-outline.svg +3 -0
- wagtail_feathers-1.0/src/wagtail_feathers/templates/wagtail_feathers/icons/outline/heroicon-calendar-days-outline.svg +3 -0
- wagtail_feathers-1.0/src/wagtail_feathers/templates/wagtail_feathers/icons/outline/heroicon-calendar-outline.svg +3 -0
- wagtail_feathers-1.0/src/wagtail_feathers/templates/wagtail_feathers/icons/outline/heroicon-camera-outline.svg +4 -0
- wagtail_feathers-1.0/src/wagtail_feathers/templates/wagtail_feathers/icons/outline/heroicon-chart-bar-outline.svg +3 -0
- wagtail_feathers-1.0/src/wagtail_feathers/templates/wagtail_feathers/icons/outline/heroicon-chart-bar-square-outline.svg +3 -0
- wagtail_feathers-1.0/src/wagtail_feathers/templates/wagtail_feathers/icons/outline/heroicon-chart-pie-outline.svg +4 -0
- wagtail_feathers-1.0/src/wagtail_feathers/templates/wagtail_feathers/icons/outline/heroicon-chat-bubble-bottom-center-outline.svg +3 -0
- wagtail_feathers-1.0/src/wagtail_feathers/templates/wagtail_feathers/icons/outline/heroicon-chat-bubble-bottom-center-text-outline.svg +3 -0
- wagtail_feathers-1.0/src/wagtail_feathers/templates/wagtail_feathers/icons/outline/heroicon-chat-bubble-left-ellipsis-outline.svg +3 -0
- wagtail_feathers-1.0/src/wagtail_feathers/templates/wagtail_feathers/icons/outline/heroicon-chat-bubble-left-outline.svg +3 -0
- wagtail_feathers-1.0/src/wagtail_feathers/templates/wagtail_feathers/icons/outline/heroicon-chat-bubble-left-right-outline.svg +3 -0
- wagtail_feathers-1.0/src/wagtail_feathers/templates/wagtail_feathers/icons/outline/heroicon-chat-bubble-oval-left-ellipsis-outline.svg +3 -0
- wagtail_feathers-1.0/src/wagtail_feathers/templates/wagtail_feathers/icons/outline/heroicon-chat-bubble-oval-left-outline.svg +3 -0
- wagtail_feathers-1.0/src/wagtail_feathers/templates/wagtail_feathers/icons/outline/heroicon-check-badge-outline.svg +3 -0
- wagtail_feathers-1.0/src/wagtail_feathers/templates/wagtail_feathers/icons/outline/heroicon-check-circle-outline.svg +3 -0
- wagtail_feathers-1.0/src/wagtail_feathers/templates/wagtail_feathers/icons/outline/heroicon-check-outline.svg +3 -0
- wagtail_feathers-1.0/src/wagtail_feathers/templates/wagtail_feathers/icons/outline/heroicon-chevron-double-down-outline.svg +3 -0
- wagtail_feathers-1.0/src/wagtail_feathers/templates/wagtail_feathers/icons/outline/heroicon-chevron-double-left-outline.svg +3 -0
- wagtail_feathers-1.0/src/wagtail_feathers/templates/wagtail_feathers/icons/outline/heroicon-chevron-double-right-outline.svg +3 -0
- wagtail_feathers-1.0/src/wagtail_feathers/templates/wagtail_feathers/icons/outline/heroicon-chevron-double-up-outline.svg +4 -0
- wagtail_feathers-1.0/src/wagtail_feathers/templates/wagtail_feathers/icons/outline/heroicon-chevron-down-outline.svg +3 -0
- wagtail_feathers-1.0/src/wagtail_feathers/templates/wagtail_feathers/icons/outline/heroicon-chevron-left-outline.svg +3 -0
- wagtail_feathers-1.0/src/wagtail_feathers/templates/wagtail_feathers/icons/outline/heroicon-chevron-right-outline.svg +3 -0
- wagtail_feathers-1.0/src/wagtail_feathers/templates/wagtail_feathers/icons/outline/heroicon-chevron-up-down-outline.svg +3 -0
- wagtail_feathers-1.0/src/wagtail_feathers/templates/wagtail_feathers/icons/outline/heroicon-chevron-up-outline.svg +3 -0
- wagtail_feathers-1.0/src/wagtail_feathers/templates/wagtail_feathers/icons/outline/heroicon-circle-stack-outline.svg +3 -0
- wagtail_feathers-1.0/src/wagtail_feathers/templates/wagtail_feathers/icons/outline/heroicon-clipboard-document-check-outline.svg +3 -0
- wagtail_feathers-1.0/src/wagtail_feathers/templates/wagtail_feathers/icons/outline/heroicon-clipboard-document-list-outline.svg +3 -0
- wagtail_feathers-1.0/src/wagtail_feathers/templates/wagtail_feathers/icons/outline/heroicon-clipboard-document-outline.svg +3 -0
- wagtail_feathers-1.0/src/wagtail_feathers/templates/wagtail_feathers/icons/outline/heroicon-clipboard-outline.svg +3 -0
- wagtail_feathers-1.0/src/wagtail_feathers/templates/wagtail_feathers/icons/outline/heroicon-clock-outline.svg +3 -0
- wagtail_feathers-1.0/src/wagtail_feathers/templates/wagtail_feathers/icons/outline/heroicon-cloud-arrow-down-outline.svg +3 -0
- wagtail_feathers-1.0/src/wagtail_feathers/templates/wagtail_feathers/icons/outline/heroicon-cloud-arrow-up-outline.svg +3 -0
- wagtail_feathers-1.0/src/wagtail_feathers/templates/wagtail_feathers/icons/outline/heroicon-cloud-outline.svg +3 -0
- wagtail_feathers-1.0/src/wagtail_feathers/templates/wagtail_feathers/icons/outline/heroicon-code-bracket-outline.svg +3 -0
- wagtail_feathers-1.0/src/wagtail_feathers/templates/wagtail_feathers/icons/outline/heroicon-code-bracket-square-outline.svg +3 -0
- wagtail_feathers-1.0/src/wagtail_feathers/templates/wagtail_feathers/icons/outline/heroicon-cog-6-tooth-outline.svg +4 -0
- wagtail_feathers-1.0/src/wagtail_feathers/templates/wagtail_feathers/icons/outline/heroicon-cog-8-tooth-outline.svg +4 -0
- wagtail_feathers-1.0/src/wagtail_feathers/templates/wagtail_feathers/icons/outline/heroicon-cog-outline.svg +3 -0
- wagtail_feathers-1.0/src/wagtail_feathers/templates/wagtail_feathers/icons/outline/heroicon-command-line-outline.svg +3 -0
- wagtail_feathers-1.0/src/wagtail_feathers/templates/wagtail_feathers/icons/outline/heroicon-computer-desktop-outline.svg +3 -0
- wagtail_feathers-1.0/src/wagtail_feathers/templates/wagtail_feathers/icons/outline/heroicon-cpu-chip-outline.svg +3 -0
- wagtail_feathers-1.0/src/wagtail_feathers/templates/wagtail_feathers/icons/outline/heroicon-credit-card-outline.svg +3 -0
- wagtail_feathers-1.0/src/wagtail_feathers/templates/wagtail_feathers/icons/outline/heroicon-cube-outline.svg +3 -0
- wagtail_feathers-1.0/src/wagtail_feathers/templates/wagtail_feathers/icons/outline/heroicon-cube-transparent-outline.svg +3 -0
- wagtail_feathers-1.0/src/wagtail_feathers/templates/wagtail_feathers/icons/outline/heroicon-currency-bangladeshi-outline.svg +3 -0
- wagtail_feathers-1.0/src/wagtail_feathers/templates/wagtail_feathers/icons/outline/heroicon-currency-dollar-outline.svg +3 -0
- wagtail_feathers-1.0/src/wagtail_feathers/templates/wagtail_feathers/icons/outline/heroicon-currency-euro-outline.svg +3 -0
- wagtail_feathers-1.0/src/wagtail_feathers/templates/wagtail_feathers/icons/outline/heroicon-currency-pound-outline.svg +3 -0
- wagtail_feathers-1.0/src/wagtail_feathers/templates/wagtail_feathers/icons/outline/heroicon-currency-rupee-outline.svg +3 -0
- wagtail_feathers-1.0/src/wagtail_feathers/templates/wagtail_feathers/icons/outline/heroicon-currency-yen-outline.svg +3 -0
- wagtail_feathers-1.0/src/wagtail_feathers/templates/wagtail_feathers/icons/outline/heroicon-cursor-arrow-rays-outline.svg +3 -0
- wagtail_feathers-1.0/src/wagtail_feathers/templates/wagtail_feathers/icons/outline/heroicon-cursor-arrow-ripple-outline.svg +3 -0
- wagtail_feathers-1.0/src/wagtail_feathers/templates/wagtail_feathers/icons/outline/heroicon-device-phone-mobile-outline.svg +3 -0
- wagtail_feathers-1.0/src/wagtail_feathers/templates/wagtail_feathers/icons/outline/heroicon-device-tablet-outline.svg +3 -0
- wagtail_feathers-1.0/src/wagtail_feathers/templates/wagtail_feathers/icons/outline/heroicon-divide-outline.svg +3 -0
- wagtail_feathers-1.0/src/wagtail_feathers/templates/wagtail_feathers/icons/outline/heroicon-document-arrow-down-outline.svg +3 -0
- wagtail_feathers-1.0/src/wagtail_feathers/templates/wagtail_feathers/icons/outline/heroicon-document-arrow-up-outline.svg +3 -0
- wagtail_feathers-1.0/src/wagtail_feathers/templates/wagtail_feathers/icons/outline/heroicon-document-chart-bar-outline.svg +3 -0
- wagtail_feathers-1.0/src/wagtail_feathers/templates/wagtail_feathers/icons/outline/heroicon-document-check-outline.svg +3 -0
- wagtail_feathers-1.0/src/wagtail_feathers/templates/wagtail_feathers/icons/outline/heroicon-document-currency-bangladeshi-outline.svg +3 -0
- wagtail_feathers-1.0/src/wagtail_feathers/templates/wagtail_feathers/icons/outline/heroicon-document-currency-dollar-outline.svg +3 -0
- wagtail_feathers-1.0/src/wagtail_feathers/templates/wagtail_feathers/icons/outline/heroicon-document-currency-euro-outline.svg +3 -0
- wagtail_feathers-1.0/src/wagtail_feathers/templates/wagtail_feathers/icons/outline/heroicon-document-currency-pound-outline.svg +3 -0
- wagtail_feathers-1.0/src/wagtail_feathers/templates/wagtail_feathers/icons/outline/heroicon-document-currency-rupee-outline.svg +3 -0
- wagtail_feathers-1.0/src/wagtail_feathers/templates/wagtail_feathers/icons/outline/heroicon-document-currency-yen-outline.svg +3 -0
- wagtail_feathers-1.0/src/wagtail_feathers/templates/wagtail_feathers/icons/outline/heroicon-document-duplicate-outline.svg +3 -0
- wagtail_feathers-1.0/src/wagtail_feathers/templates/wagtail_feathers/icons/outline/heroicon-document-magnifying-glass-outline.svg +3 -0
- wagtail_feathers-1.0/src/wagtail_feathers/templates/wagtail_feathers/icons/outline/heroicon-document-minus-outline.svg +3 -0
- wagtail_feathers-1.0/src/wagtail_feathers/templates/wagtail_feathers/icons/outline/heroicon-document-outline.svg +3 -0
- wagtail_feathers-1.0/src/wagtail_feathers/templates/wagtail_feathers/icons/outline/heroicon-document-plus-outline.svg +3 -0
- wagtail_feathers-1.0/src/wagtail_feathers/templates/wagtail_feathers/icons/outline/heroicon-document-text-outline.svg +3 -0
- wagtail_feathers-1.0/src/wagtail_feathers/templates/wagtail_feathers/icons/outline/heroicon-ellipsis-horizontal-circle-outline.svg +3 -0
- wagtail_feathers-1.0/src/wagtail_feathers/templates/wagtail_feathers/icons/outline/heroicon-ellipsis-horizontal-outline.svg +3 -0
- wagtail_feathers-1.0/src/wagtail_feathers/templates/wagtail_feathers/icons/outline/heroicon-ellipsis-vertical-outline.svg +3 -0
- wagtail_feathers-1.0/src/wagtail_feathers/templates/wagtail_feathers/icons/outline/heroicon-envelope-open-outline.svg +3 -0
- wagtail_feathers-1.0/src/wagtail_feathers/templates/wagtail_feathers/icons/outline/heroicon-envelope-outline.svg +3 -0
- wagtail_feathers-1.0/src/wagtail_feathers/templates/wagtail_feathers/icons/outline/heroicon-equals-outline.svg +3 -0
- wagtail_feathers-1.0/src/wagtail_feathers/templates/wagtail_feathers/icons/outline/heroicon-exclamation-circle-outline.svg +3 -0
- wagtail_feathers-1.0/src/wagtail_feathers/templates/wagtail_feathers/icons/outline/heroicon-exclamation-triangle-outline.svg +3 -0
- wagtail_feathers-1.0/src/wagtail_feathers/templates/wagtail_feathers/icons/outline/heroicon-eye-dropper-outline.svg +3 -0
- wagtail_feathers-1.0/src/wagtail_feathers/templates/wagtail_feathers/icons/outline/heroicon-eye-outline.svg +4 -0
- wagtail_feathers-1.0/src/wagtail_feathers/templates/wagtail_feathers/icons/outline/heroicon-eye-slash-outline.svg +3 -0
- wagtail_feathers-1.0/src/wagtail_feathers/templates/wagtail_feathers/icons/outline/heroicon-face-frown-outline.svg +3 -0
- wagtail_feathers-1.0/src/wagtail_feathers/templates/wagtail_feathers/icons/outline/heroicon-face-smile-outline.svg +3 -0
- wagtail_feathers-1.0/src/wagtail_feathers/templates/wagtail_feathers/icons/outline/heroicon-film-outline.svg +3 -0
- wagtail_feathers-1.0/src/wagtail_feathers/templates/wagtail_feathers/icons/outline/heroicon-finger-print-outline.svg +3 -0
- wagtail_feathers-1.0/src/wagtail_feathers/templates/wagtail_feathers/icons/outline/heroicon-fire-outline.svg +4 -0
- wagtail_feathers-1.0/src/wagtail_feathers/templates/wagtail_feathers/icons/outline/heroicon-flag-outline.svg +3 -0
- wagtail_feathers-1.0/src/wagtail_feathers/templates/wagtail_feathers/icons/outline/heroicon-folder-arrow-down-outline.svg +3 -0
- wagtail_feathers-1.0/src/wagtail_feathers/templates/wagtail_feathers/icons/outline/heroicon-folder-minus-outline.svg +3 -0
- wagtail_feathers-1.0/src/wagtail_feathers/templates/wagtail_feathers/icons/outline/heroicon-folder-open-outline.svg +3 -0
- wagtail_feathers-1.0/src/wagtail_feathers/templates/wagtail_feathers/icons/outline/heroicon-folder-outline.svg +3 -0
- wagtail_feathers-1.0/src/wagtail_feathers/templates/wagtail_feathers/icons/outline/heroicon-folder-plus-outline.svg +3 -0
- wagtail_feathers-1.0/src/wagtail_feathers/templates/wagtail_feathers/icons/outline/heroicon-forward-outline.svg +3 -0
- wagtail_feathers-1.0/src/wagtail_feathers/templates/wagtail_feathers/icons/outline/heroicon-funnel-outline.svg +3 -0
- wagtail_feathers-1.0/src/wagtail_feathers/templates/wagtail_feathers/icons/outline/heroicon-gif-outline.svg +3 -0
- wagtail_feathers-1.0/src/wagtail_feathers/templates/wagtail_feathers/icons/outline/heroicon-gift-outline.svg +3 -0
- wagtail_feathers-1.0/src/wagtail_feathers/templates/wagtail_feathers/icons/outline/heroicon-gift-top-outline.svg +3 -0
- wagtail_feathers-1.0/src/wagtail_feathers/templates/wagtail_feathers/icons/outline/heroicon-globe-alt-outline.svg +3 -0
- wagtail_feathers-1.0/src/wagtail_feathers/templates/wagtail_feathers/icons/outline/heroicon-globe-americas-outline.svg +3 -0
- wagtail_feathers-1.0/src/wagtail_feathers/templates/wagtail_feathers/icons/outline/heroicon-globe-asia-australia-outline.svg +3 -0
- wagtail_feathers-1.0/src/wagtail_feathers/templates/wagtail_feathers/icons/outline/heroicon-globe-europe-africa-outline.svg +3 -0
- wagtail_feathers-1.0/src/wagtail_feathers/templates/wagtail_feathers/icons/outline/heroicon-h1-outline.svg +3 -0
- wagtail_feathers-1.0/src/wagtail_feathers/templates/wagtail_feathers/icons/outline/heroicon-h2-outline.svg +3 -0
- wagtail_feathers-1.0/src/wagtail_feathers/templates/wagtail_feathers/icons/outline/heroicon-h3-outline.svg +3 -0
- wagtail_feathers-1.0/src/wagtail_feathers/templates/wagtail_feathers/icons/outline/heroicon-hand-raised-outline.svg +3 -0
- wagtail_feathers-1.0/src/wagtail_feathers/templates/wagtail_feathers/icons/outline/heroicon-hand-thumb-down-outline.svg +3 -0
- wagtail_feathers-1.0/src/wagtail_feathers/templates/wagtail_feathers/icons/outline/heroicon-hand-thumb-up-outline.svg +3 -0
- wagtail_feathers-1.0/src/wagtail_feathers/templates/wagtail_feathers/icons/outline/heroicon-hashtag-outline.svg +3 -0
- wagtail_feathers-1.0/src/wagtail_feathers/templates/wagtail_feathers/icons/outline/heroicon-heart-outline.svg +3 -0
- wagtail_feathers-1.0/src/wagtail_feathers/templates/wagtail_feathers/icons/outline/heroicon-home-modern-outline.svg +3 -0
- wagtail_feathers-1.0/src/wagtail_feathers/templates/wagtail_feathers/icons/outline/heroicon-home-outline.svg +3 -0
- wagtail_feathers-1.0/src/wagtail_feathers/templates/wagtail_feathers/icons/outline/heroicon-identification-outline.svg +3 -0
- wagtail_feathers-1.0/src/wagtail_feathers/templates/wagtail_feathers/icons/outline/heroicon-inbox-arrow-down-outline.svg +3 -0
- wagtail_feathers-1.0/src/wagtail_feathers/templates/wagtail_feathers/icons/outline/heroicon-inbox-outline.svg +3 -0
- wagtail_feathers-1.0/src/wagtail_feathers/templates/wagtail_feathers/icons/outline/heroicon-inbox-stack-outline.svg +3 -0
- wagtail_feathers-1.0/src/wagtail_feathers/templates/wagtail_feathers/icons/outline/heroicon-information-circle-outline.svg +3 -0
- wagtail_feathers-1.0/src/wagtail_feathers/templates/wagtail_feathers/icons/outline/heroicon-italic-outline.svg +3 -0
- wagtail_feathers-1.0/src/wagtail_feathers/templates/wagtail_feathers/icons/outline/heroicon-key-outline.svg +3 -0
- wagtail_feathers-1.0/src/wagtail_feathers/templates/wagtail_feathers/icons/outline/heroicon-language-outline.svg +3 -0
- wagtail_feathers-1.0/src/wagtail_feathers/templates/wagtail_feathers/icons/outline/heroicon-lifebuoy-outline.svg +3 -0
- wagtail_feathers-1.0/src/wagtail_feathers/templates/wagtail_feathers/icons/outline/heroicon-light-bulb-outline.svg +3 -0
- wagtail_feathers-1.0/src/wagtail_feathers/templates/wagtail_feathers/icons/outline/heroicon-link-outline.svg +3 -0
- wagtail_feathers-1.0/src/wagtail_feathers/templates/wagtail_feathers/icons/outline/heroicon-link-slash-outline.svg +3 -0
- wagtail_feathers-1.0/src/wagtail_feathers/templates/wagtail_feathers/icons/outline/heroicon-list-bullet-outline.svg +3 -0
- wagtail_feathers-1.0/src/wagtail_feathers/templates/wagtail_feathers/icons/outline/heroicon-lock-closed-outline.svg +3 -0
- wagtail_feathers-1.0/src/wagtail_feathers/templates/wagtail_feathers/icons/outline/heroicon-lock-open-outline.svg +3 -0
- wagtail_feathers-1.0/src/wagtail_feathers/templates/wagtail_feathers/icons/outline/heroicon-magnifying-glass-circle-outline.svg +3 -0
- wagtail_feathers-1.0/src/wagtail_feathers/templates/wagtail_feathers/icons/outline/heroicon-magnifying-glass-minus-outline.svg +3 -0
- wagtail_feathers-1.0/src/wagtail_feathers/templates/wagtail_feathers/icons/outline/heroicon-magnifying-glass-outline.svg +3 -0
- wagtail_feathers-1.0/src/wagtail_feathers/templates/wagtail_feathers/icons/outline/heroicon-magnifying-glass-plus-outline.svg +3 -0
- wagtail_feathers-1.0/src/wagtail_feathers/templates/wagtail_feathers/icons/outline/heroicon-map-outline.svg +3 -0
- wagtail_feathers-1.0/src/wagtail_feathers/templates/wagtail_feathers/icons/outline/heroicon-map-pin-outline.svg +4 -0
- wagtail_feathers-1.0/src/wagtail_feathers/templates/wagtail_feathers/icons/outline/heroicon-megaphone-outline.svg +3 -0
- wagtail_feathers-1.0/src/wagtail_feathers/templates/wagtail_feathers/icons/outline/heroicon-microphone-outline.svg +3 -0
- wagtail_feathers-1.0/src/wagtail_feathers/templates/wagtail_feathers/icons/outline/heroicon-minus-circle-outline.svg +3 -0
- wagtail_feathers-1.0/src/wagtail_feathers/templates/wagtail_feathers/icons/outline/heroicon-minus-outline.svg +3 -0
- wagtail_feathers-1.0/src/wagtail_feathers/templates/wagtail_feathers/icons/outline/heroicon-minus-small-outline.svg +3 -0
- wagtail_feathers-1.0/src/wagtail_feathers/templates/wagtail_feathers/icons/outline/heroicon-moon-outline.svg +3 -0
- wagtail_feathers-1.0/src/wagtail_feathers/templates/wagtail_feathers/icons/outline/heroicon-musical-note-outline.svg +3 -0
- wagtail_feathers-1.0/src/wagtail_feathers/templates/wagtail_feathers/icons/outline/heroicon-newspaper-outline.svg +3 -0
- wagtail_feathers-1.0/src/wagtail_feathers/templates/wagtail_feathers/icons/outline/heroicon-no-symbol-outline.svg +3 -0
- wagtail_feathers-1.0/src/wagtail_feathers/templates/wagtail_feathers/icons/outline/heroicon-numbered-list-outline.svg +3 -0
- wagtail_feathers-1.0/src/wagtail_feathers/templates/wagtail_feathers/icons/outline/heroicon-paint-brush-outline.svg +3 -0
- wagtail_feathers-1.0/src/wagtail_feathers/templates/wagtail_feathers/icons/outline/heroicon-paper-airplane-outline.svg +3 -0
- wagtail_feathers-1.0/src/wagtail_feathers/templates/wagtail_feathers/icons/outline/heroicon-paper-clip-outline.svg +3 -0
- wagtail_feathers-1.0/src/wagtail_feathers/templates/wagtail_feathers/icons/outline/heroicon-pause-circle-outline.svg +3 -0
- wagtail_feathers-1.0/src/wagtail_feathers/templates/wagtail_feathers/icons/outline/heroicon-pause-outline.svg +3 -0
- wagtail_feathers-1.0/src/wagtail_feathers/templates/wagtail_feathers/icons/outline/heroicon-pencil-outline.svg +3 -0
- wagtail_feathers-1.0/src/wagtail_feathers/templates/wagtail_feathers/icons/outline/heroicon-pencil-square-outline.svg +3 -0
- wagtail_feathers-1.0/src/wagtail_feathers/templates/wagtail_feathers/icons/outline/heroicon-percent-badge-outline.svg +3 -0
- wagtail_feathers-1.0/src/wagtail_feathers/templates/wagtail_feathers/icons/outline/heroicon-phone-arrow-down-left-outline.svg +3 -0
- wagtail_feathers-1.0/src/wagtail_feathers/templates/wagtail_feathers/icons/outline/heroicon-phone-arrow-up-right-outline.svg +3 -0
- wagtail_feathers-1.0/src/wagtail_feathers/templates/wagtail_feathers/icons/outline/heroicon-phone-outline.svg +3 -0
- wagtail_feathers-1.0/src/wagtail_feathers/templates/wagtail_feathers/icons/outline/heroicon-phone-x-mark-outline.svg +3 -0
- wagtail_feathers-1.0/src/wagtail_feathers/templates/wagtail_feathers/icons/outline/heroicon-photo-outline.svg +3 -0
- wagtail_feathers-1.0/src/wagtail_feathers/templates/wagtail_feathers/icons/outline/heroicon-play-circle-outline.svg +4 -0
- wagtail_feathers-1.0/src/wagtail_feathers/templates/wagtail_feathers/icons/outline/heroicon-play-outline.svg +3 -0
- wagtail_feathers-1.0/src/wagtail_feathers/templates/wagtail_feathers/icons/outline/heroicon-play-pause-outline.svg +3 -0
- wagtail_feathers-1.0/src/wagtail_feathers/templates/wagtail_feathers/icons/outline/heroicon-plus-circle-outline.svg +3 -0
- wagtail_feathers-1.0/src/wagtail_feathers/templates/wagtail_feathers/icons/outline/heroicon-plus-outline.svg +3 -0
- wagtail_feathers-1.0/src/wagtail_feathers/templates/wagtail_feathers/icons/outline/heroicon-plus-small-outline.svg +3 -0
- wagtail_feathers-1.0/src/wagtail_feathers/templates/wagtail_feathers/icons/outline/heroicon-power-outline.svg +3 -0
- wagtail_feathers-1.0/src/wagtail_feathers/templates/wagtail_feathers/icons/outline/heroicon-presentation-chart-bar-outline.svg +3 -0
- wagtail_feathers-1.0/src/wagtail_feathers/templates/wagtail_feathers/icons/outline/heroicon-presentation-chart-line-outline.svg +3 -0
- wagtail_feathers-1.0/src/wagtail_feathers/templates/wagtail_feathers/icons/outline/heroicon-printer-outline.svg +3 -0
- wagtail_feathers-1.0/src/wagtail_feathers/templates/wagtail_feathers/icons/outline/heroicon-puzzle-piece-outline.svg +3 -0
- wagtail_feathers-1.0/src/wagtail_feathers/templates/wagtail_feathers/icons/outline/heroicon-qr-code-outline.svg +4 -0
- wagtail_feathers-1.0/src/wagtail_feathers/templates/wagtail_feathers/icons/outline/heroicon-question-mark-circle-outline.svg +3 -0
- wagtail_feathers-1.0/src/wagtail_feathers/templates/wagtail_feathers/icons/outline/heroicon-queue-list-outline.svg +3 -0
- wagtail_feathers-1.0/src/wagtail_feathers/templates/wagtail_feathers/icons/outline/heroicon-radio-outline.svg +3 -0
- wagtail_feathers-1.0/src/wagtail_feathers/templates/wagtail_feathers/icons/outline/heroicon-receipt-percent-outline.svg +3 -0
- wagtail_feathers-1.0/src/wagtail_feathers/templates/wagtail_feathers/icons/outline/heroicon-receipt-refund-outline.svg +3 -0
- wagtail_feathers-1.0/src/wagtail_feathers/templates/wagtail_feathers/icons/outline/heroicon-rectangle-group-outline.svg +3 -0
- wagtail_feathers-1.0/src/wagtail_feathers/templates/wagtail_feathers/icons/outline/heroicon-rectangle-stack-outline.svg +3 -0
- wagtail_feathers-1.0/src/wagtail_feathers/templates/wagtail_feathers/icons/outline/heroicon-rocket-launch-outline.svg +3 -0
- wagtail_feathers-1.0/src/wagtail_feathers/templates/wagtail_feathers/icons/outline/heroicon-rss-outline.svg +3 -0
- wagtail_feathers-1.0/src/wagtail_feathers/templates/wagtail_feathers/icons/outline/heroicon-scale-outline.svg +3 -0
- wagtail_feathers-1.0/src/wagtail_feathers/templates/wagtail_feathers/icons/outline/heroicon-scissors-outline.svg +3 -0
- wagtail_feathers-1.0/src/wagtail_feathers/templates/wagtail_feathers/icons/outline/heroicon-server-outline.svg +3 -0
- wagtail_feathers-1.0/src/wagtail_feathers/templates/wagtail_feathers/icons/outline/heroicon-server-stack-outline.svg +3 -0
- wagtail_feathers-1.0/src/wagtail_feathers/templates/wagtail_feathers/icons/outline/heroicon-share-outline.svg +3 -0
- wagtail_feathers-1.0/src/wagtail_feathers/templates/wagtail_feathers/icons/outline/heroicon-shield-check-outline.svg +3 -0
- wagtail_feathers-1.0/src/wagtail_feathers/templates/wagtail_feathers/icons/outline/heroicon-shield-exclamation-outline.svg +3 -0
- wagtail_feathers-1.0/src/wagtail_feathers/templates/wagtail_feathers/icons/outline/heroicon-shopping-bag-outline.svg +3 -0
- wagtail_feathers-1.0/src/wagtail_feathers/templates/wagtail_feathers/icons/outline/heroicon-shopping-cart-outline.svg +3 -0
- wagtail_feathers-1.0/src/wagtail_feathers/templates/wagtail_feathers/icons/outline/heroicon-signal-outline.svg +3 -0
- wagtail_feathers-1.0/src/wagtail_feathers/templates/wagtail_feathers/icons/outline/heroicon-signal-slash-outline.svg +3 -0
- wagtail_feathers-1.0/src/wagtail_feathers/templates/wagtail_feathers/icons/outline/heroicon-slash-outline.svg +3 -0
- wagtail_feathers-1.0/src/wagtail_feathers/templates/wagtail_feathers/icons/outline/heroicon-sparkles-outline.svg +3 -0
- wagtail_feathers-1.0/src/wagtail_feathers/templates/wagtail_feathers/icons/outline/heroicon-speaker-wave-outline.svg +3 -0
- wagtail_feathers-1.0/src/wagtail_feathers/templates/wagtail_feathers/icons/outline/heroicon-speaker-x-mark-outline.svg +3 -0
- wagtail_feathers-1.0/src/wagtail_feathers/templates/wagtail_feathers/icons/outline/heroicon-square-2-stack-outline.svg +3 -0
- wagtail_feathers-1.0/src/wagtail_feathers/templates/wagtail_feathers/icons/outline/heroicon-square-3-stack-3d-outline.svg +3 -0
- wagtail_feathers-1.0/src/wagtail_feathers/templates/wagtail_feathers/icons/outline/heroicon-squares-2x2-outline.svg +3 -0
- wagtail_feathers-1.0/src/wagtail_feathers/templates/wagtail_feathers/icons/outline/heroicon-squares-plus-outline.svg +3 -0
- wagtail_feathers-1.0/src/wagtail_feathers/templates/wagtail_feathers/icons/outline/heroicon-star-outline.svg +3 -0
- wagtail_feathers-1.0/src/wagtail_feathers/templates/wagtail_feathers/icons/outline/heroicon-stop-circle-outline.svg +4 -0
- wagtail_feathers-1.0/src/wagtail_feathers/templates/wagtail_feathers/icons/outline/heroicon-stop-outline.svg +3 -0
- wagtail_feathers-1.0/src/wagtail_feathers/templates/wagtail_feathers/icons/outline/heroicon-strikethrough-outline.svg +3 -0
- wagtail_feathers-1.0/src/wagtail_feathers/templates/wagtail_feathers/icons/outline/heroicon-sun-outline.svg +3 -0
- wagtail_feathers-1.0/src/wagtail_feathers/templates/wagtail_feathers/icons/outline/heroicon-swatch-outline.svg +3 -0
- wagtail_feathers-1.0/src/wagtail_feathers/templates/wagtail_feathers/icons/outline/heroicon-table-cells-outline.svg +3 -0
- wagtail_feathers-1.0/src/wagtail_feathers/templates/wagtail_feathers/icons/outline/heroicon-tag-outline.svg +4 -0
- wagtail_feathers-1.0/src/wagtail_feathers/templates/wagtail_feathers/icons/outline/heroicon-ticket-outline.svg +3 -0
- wagtail_feathers-1.0/src/wagtail_feathers/templates/wagtail_feathers/icons/outline/heroicon-trash-outline.svg +3 -0
- wagtail_feathers-1.0/src/wagtail_feathers/templates/wagtail_feathers/icons/outline/heroicon-trophy-outline.svg +3 -0
- wagtail_feathers-1.0/src/wagtail_feathers/templates/wagtail_feathers/icons/outline/heroicon-truck-outline.svg +3 -0
- wagtail_feathers-1.0/src/wagtail_feathers/templates/wagtail_feathers/icons/outline/heroicon-tv-outline.svg +3 -0
- wagtail_feathers-1.0/src/wagtail_feathers/templates/wagtail_feathers/icons/outline/heroicon-underline-outline.svg +3 -0
- wagtail_feathers-1.0/src/wagtail_feathers/templates/wagtail_feathers/icons/outline/heroicon-user-circle-outline.svg +3 -0
- wagtail_feathers-1.0/src/wagtail_feathers/templates/wagtail_feathers/icons/outline/heroicon-user-group-outline.svg +3 -0
- wagtail_feathers-1.0/src/wagtail_feathers/templates/wagtail_feathers/icons/outline/heroicon-user-minus-outline.svg +3 -0
- wagtail_feathers-1.0/src/wagtail_feathers/templates/wagtail_feathers/icons/outline/heroicon-user-outline.svg +3 -0
- wagtail_feathers-1.0/src/wagtail_feathers/templates/wagtail_feathers/icons/outline/heroicon-user-plus-outline.svg +3 -0
- wagtail_feathers-1.0/src/wagtail_feathers/templates/wagtail_feathers/icons/outline/heroicon-users-outline.svg +3 -0
- wagtail_feathers-1.0/src/wagtail_feathers/templates/wagtail_feathers/icons/outline/heroicon-variable-outline.svg +3 -0
- wagtail_feathers-1.0/src/wagtail_feathers/templates/wagtail_feathers/icons/outline/heroicon-video-camera-outline.svg +3 -0
- wagtail_feathers-1.0/src/wagtail_feathers/templates/wagtail_feathers/icons/outline/heroicon-video-camera-slash-outline.svg +3 -0
- wagtail_feathers-1.0/src/wagtail_feathers/templates/wagtail_feathers/icons/outline/heroicon-view-columns-outline.svg +3 -0
- wagtail_feathers-1.0/src/wagtail_feathers/templates/wagtail_feathers/icons/outline/heroicon-viewfinder-circle-outline.svg +3 -0
- wagtail_feathers-1.0/src/wagtail_feathers/templates/wagtail_feathers/icons/outline/heroicon-wallet-outline.svg +3 -0
- wagtail_feathers-1.0/src/wagtail_feathers/templates/wagtail_feathers/icons/outline/heroicon-wifi-outline.svg +3 -0
- wagtail_feathers-1.0/src/wagtail_feathers/templates/wagtail_feathers/icons/outline/heroicon-window-outline.svg +3 -0
- wagtail_feathers-1.0/src/wagtail_feathers/templates/wagtail_feathers/icons/outline/heroicon-wrench-outline.svg +4 -0
- wagtail_feathers-1.0/src/wagtail_feathers/templates/wagtail_feathers/icons/outline/heroicon-wrench-screwdriver-outline.svg +3 -0
- wagtail_feathers-1.0/src/wagtail_feathers/templates/wagtail_feathers/icons/outline/heroicon-x-circle-outline.svg +3 -0
- wagtail_feathers-1.0/src/wagtail_feathers/templates/wagtail_feathers/icons/outline/heroicon-x-mark-outline.svg +3 -0
- wagtail_feathers-1.0/src/wagtail_feathers/templates/wagtail_feathers/icons/solid/heroicon-academic-cap-solid.svg +5 -0
- wagtail_feathers-1.0/src/wagtail_feathers/templates/wagtail_feathers/icons/solid/heroicon-adjustments-horizontal-solid.svg +3 -0
- wagtail_feathers-1.0/src/wagtail_feathers/templates/wagtail_feathers/icons/solid/heroicon-adjustments-vertical-solid.svg +3 -0
- wagtail_feathers-1.0/src/wagtail_feathers/templates/wagtail_feathers/icons/solid/heroicon-archive-box-arrow-down-solid.svg +4 -0
- wagtail_feathers-1.0/src/wagtail_feathers/templates/wagtail_feathers/icons/solid/heroicon-archive-box-solid.svg +4 -0
- wagtail_feathers-1.0/src/wagtail_feathers/templates/wagtail_feathers/icons/solid/heroicon-archive-box-x-mark-solid.svg +4 -0
- wagtail_feathers-1.0/src/wagtail_feathers/templates/wagtail_feathers/icons/solid/heroicon-arrow-down-circle-solid.svg +3 -0
- wagtail_feathers-1.0/src/wagtail_feathers/templates/wagtail_feathers/icons/solid/heroicon-arrow-down-left-solid.svg +3 -0
- wagtail_feathers-1.0/src/wagtail_feathers/templates/wagtail_feathers/icons/solid/heroicon-arrow-down-on-square-solid.svg +3 -0
- wagtail_feathers-1.0/src/wagtail_feathers/templates/wagtail_feathers/icons/solid/heroicon-arrow-down-on-square-stack-solid.svg +4 -0
- wagtail_feathers-1.0/src/wagtail_feathers/templates/wagtail_feathers/icons/solid/heroicon-arrow-down-right-solid.svg +3 -0
- wagtail_feathers-1.0/src/wagtail_feathers/templates/wagtail_feathers/icons/solid/heroicon-arrow-down-solid.svg +3 -0
- wagtail_feathers-1.0/src/wagtail_feathers/templates/wagtail_feathers/icons/solid/heroicon-arrow-down-tray-solid.svg +3 -0
- wagtail_feathers-1.0/src/wagtail_feathers/templates/wagtail_feathers/icons/solid/heroicon-arrow-left-circle-solid.svg +3 -0
- wagtail_feathers-1.0/src/wagtail_feathers/templates/wagtail_feathers/icons/solid/heroicon-arrow-left-end-on-rectangle-solid.svg +3 -0
- wagtail_feathers-1.0/src/wagtail_feathers/templates/wagtail_feathers/icons/solid/heroicon-arrow-left-on-rectangle-solid.svg +3 -0
- wagtail_feathers-1.0/src/wagtail_feathers/templates/wagtail_feathers/icons/solid/heroicon-arrow-left-solid.svg +3 -0
- wagtail_feathers-1.0/src/wagtail_feathers/templates/wagtail_feathers/icons/solid/heroicon-arrow-left-start-on-rectangle-solid.svg +3 -0
- wagtail_feathers-1.0/src/wagtail_feathers/templates/wagtail_feathers/icons/solid/heroicon-arrow-long-down-solid.svg +3 -0
- wagtail_feathers-1.0/src/wagtail_feathers/templates/wagtail_feathers/icons/solid/heroicon-arrow-long-left-solid.svg +3 -0
- wagtail_feathers-1.0/src/wagtail_feathers/templates/wagtail_feathers/icons/solid/heroicon-arrow-long-right-solid.svg +3 -0
- wagtail_feathers-1.0/src/wagtail_feathers/templates/wagtail_feathers/icons/solid/heroicon-arrow-long-up-solid.svg +3 -0
- wagtail_feathers-1.0/src/wagtail_feathers/templates/wagtail_feathers/icons/solid/heroicon-arrow-path-rounded-square-solid.svg +3 -0
- wagtail_feathers-1.0/src/wagtail_feathers/templates/wagtail_feathers/icons/solid/heroicon-arrow-path-solid.svg +3 -0
- wagtail_feathers-1.0/src/wagtail_feathers/templates/wagtail_feathers/icons/solid/heroicon-arrow-right-circle-solid.svg +3 -0
- wagtail_feathers-1.0/src/wagtail_feathers/templates/wagtail_feathers/icons/solid/heroicon-arrow-right-end-on-rectangle-solid.svg +3 -0
- wagtail_feathers-1.0/src/wagtail_feathers/templates/wagtail_feathers/icons/solid/heroicon-arrow-right-on-rectangle-solid.svg +3 -0
- wagtail_feathers-1.0/src/wagtail_feathers/templates/wagtail_feathers/icons/solid/heroicon-arrow-right-solid.svg +3 -0
- wagtail_feathers-1.0/src/wagtail_feathers/templates/wagtail_feathers/icons/solid/heroicon-arrow-right-start-on-rectangle-solid.svg +3 -0
- wagtail_feathers-1.0/src/wagtail_feathers/templates/wagtail_feathers/icons/solid/heroicon-arrow-small-down-solid.svg +3 -0
- wagtail_feathers-1.0/src/wagtail_feathers/templates/wagtail_feathers/icons/solid/heroicon-arrow-small-left-solid.svg +3 -0
- wagtail_feathers-1.0/src/wagtail_feathers/templates/wagtail_feathers/icons/solid/heroicon-arrow-small-right-solid.svg +3 -0
- wagtail_feathers-1.0/src/wagtail_feathers/templates/wagtail_feathers/icons/solid/heroicon-arrow-small-up-solid.svg +3 -0
- wagtail_feathers-1.0/src/wagtail_feathers/templates/wagtail_feathers/icons/solid/heroicon-arrow-top-right-on-square-solid.svg +3 -0
- wagtail_feathers-1.0/src/wagtail_feathers/templates/wagtail_feathers/icons/solid/heroicon-arrow-trending-down-solid.svg +3 -0
- wagtail_feathers-1.0/src/wagtail_feathers/templates/wagtail_feathers/icons/solid/heroicon-arrow-trending-up-solid.svg +3 -0
- wagtail_feathers-1.0/src/wagtail_feathers/templates/wagtail_feathers/icons/solid/heroicon-arrow-turn-down-left-solid.svg +3 -0
- wagtail_feathers-1.0/src/wagtail_feathers/templates/wagtail_feathers/icons/solid/heroicon-arrow-turn-down-right-solid.svg +3 -0
- wagtail_feathers-1.0/src/wagtail_feathers/templates/wagtail_feathers/icons/solid/heroicon-arrow-turn-left-down-solid.svg +3 -0
- wagtail_feathers-1.0/src/wagtail_feathers/templates/wagtail_feathers/icons/solid/heroicon-arrow-turn-left-up-solid.svg +3 -0
- wagtail_feathers-1.0/src/wagtail_feathers/templates/wagtail_feathers/icons/solid/heroicon-arrow-turn-right-down-solid.svg +3 -0
- wagtail_feathers-1.0/src/wagtail_feathers/templates/wagtail_feathers/icons/solid/heroicon-arrow-turn-right-up-solid.svg +3 -0
- wagtail_feathers-1.0/src/wagtail_feathers/templates/wagtail_feathers/icons/solid/heroicon-arrow-turn-up-left-solid.svg +3 -0
- wagtail_feathers-1.0/src/wagtail_feathers/templates/wagtail_feathers/icons/solid/heroicon-arrow-turn-up-right-solid.svg +3 -0
- wagtail_feathers-1.0/src/wagtail_feathers/templates/wagtail_feathers/icons/solid/heroicon-arrow-up-circle-solid.svg +3 -0
- wagtail_feathers-1.0/src/wagtail_feathers/templates/wagtail_feathers/icons/solid/heroicon-arrow-up-left-solid.svg +3 -0
- wagtail_feathers-1.0/src/wagtail_feathers/templates/wagtail_feathers/icons/solid/heroicon-arrow-up-on-square-solid.svg +3 -0
- wagtail_feathers-1.0/src/wagtail_feathers/templates/wagtail_feathers/icons/solid/heroicon-arrow-up-on-square-stack-solid.svg +4 -0
- wagtail_feathers-1.0/src/wagtail_feathers/templates/wagtail_feathers/icons/solid/heroicon-arrow-up-right-solid.svg +3 -0
- wagtail_feathers-1.0/src/wagtail_feathers/templates/wagtail_feathers/icons/solid/heroicon-arrow-up-solid.svg +3 -0
- wagtail_feathers-1.0/src/wagtail_feathers/templates/wagtail_feathers/icons/solid/heroicon-arrow-up-tray-solid.svg +3 -0
- wagtail_feathers-1.0/src/wagtail_feathers/templates/wagtail_feathers/icons/solid/heroicon-arrow-uturn-down-solid.svg +3 -0
- wagtail_feathers-1.0/src/wagtail_feathers/templates/wagtail_feathers/icons/solid/heroicon-arrow-uturn-left-solid.svg +3 -0
- wagtail_feathers-1.0/src/wagtail_feathers/templates/wagtail_feathers/icons/solid/heroicon-arrow-uturn-right-solid.svg +3 -0
- wagtail_feathers-1.0/src/wagtail_feathers/templates/wagtail_feathers/icons/solid/heroicon-arrow-uturn-up-solid.svg +3 -0
- wagtail_feathers-1.0/src/wagtail_feathers/templates/wagtail_feathers/icons/solid/heroicon-arrows-pointing-in-solid.svg +3 -0
- wagtail_feathers-1.0/src/wagtail_feathers/templates/wagtail_feathers/icons/solid/heroicon-arrows-pointing-out-solid.svg +3 -0
- wagtail_feathers-1.0/src/wagtail_feathers/templates/wagtail_feathers/icons/solid/heroicon-arrows-right-left-solid.svg +3 -0
- wagtail_feathers-1.0/src/wagtail_feathers/templates/wagtail_feathers/icons/solid/heroicon-arrows-up-down-solid.svg +3 -0
- wagtail_feathers-1.0/src/wagtail_feathers/templates/wagtail_feathers/icons/solid/heroicon-at-symbol-solid.svg +3 -0
- wagtail_feathers-1.0/src/wagtail_feathers/templates/wagtail_feathers/icons/solid/heroicon-backspace-solid.svg +3 -0
- wagtail_feathers-1.0/src/wagtail_feathers/templates/wagtail_feathers/icons/solid/heroicon-backward-solid.svg +3 -0
- wagtail_feathers-1.0/src/wagtail_feathers/templates/wagtail_feathers/icons/solid/heroicon-banknotes-solid.svg +5 -0
- wagtail_feathers-1.0/src/wagtail_feathers/templates/wagtail_feathers/icons/solid/heroicon-bars-2-solid.svg +3 -0
- wagtail_feathers-1.0/src/wagtail_feathers/templates/wagtail_feathers/icons/solid/heroicon-bars-3-bottom-left-solid.svg +3 -0
- wagtail_feathers-1.0/src/wagtail_feathers/templates/wagtail_feathers/icons/solid/heroicon-bars-3-bottom-right-solid.svg +3 -0
- wagtail_feathers-1.0/src/wagtail_feathers/templates/wagtail_feathers/icons/solid/heroicon-bars-3-center-left-solid.svg +3 -0
- wagtail_feathers-1.0/src/wagtail_feathers/templates/wagtail_feathers/icons/solid/heroicon-bars-3-solid.svg +3 -0
- wagtail_feathers-1.0/src/wagtail_feathers/templates/wagtail_feathers/icons/solid/heroicon-bars-4-solid.svg +3 -0
- wagtail_feathers-1.0/src/wagtail_feathers/templates/wagtail_feathers/icons/solid/heroicon-bars-arrow-down-solid.svg +3 -0
- wagtail_feathers-1.0/src/wagtail_feathers/templates/wagtail_feathers/icons/solid/heroicon-bars-arrow-up-solid.svg +3 -0
- wagtail_feathers-1.0/src/wagtail_feathers/templates/wagtail_feathers/icons/solid/heroicon-battery-0-solid.svg +3 -0
- wagtail_feathers-1.0/src/wagtail_feathers/templates/wagtail_feathers/icons/solid/heroicon-battery-100-solid.svg +3 -0
- wagtail_feathers-1.0/src/wagtail_feathers/templates/wagtail_feathers/icons/solid/heroicon-battery-50-solid.svg +4 -0
- wagtail_feathers-1.0/src/wagtail_feathers/templates/wagtail_feathers/icons/solid/heroicon-beaker-solid.svg +3 -0
- wagtail_feathers-1.0/src/wagtail_feathers/templates/wagtail_feathers/icons/solid/heroicon-bell-alert-solid.svg +4 -0
- wagtail_feathers-1.0/src/wagtail_feathers/templates/wagtail_feathers/icons/solid/heroicon-bell-slash-solid.svg +4 -0
- wagtail_feathers-1.0/src/wagtail_feathers/templates/wagtail_feathers/icons/solid/heroicon-bell-snooze-solid.svg +3 -0
- wagtail_feathers-1.0/src/wagtail_feathers/templates/wagtail_feathers/icons/solid/heroicon-bell-solid.svg +3 -0
- wagtail_feathers-1.0/src/wagtail_feathers/templates/wagtail_feathers/icons/solid/heroicon-bold-solid.svg +3 -0
- wagtail_feathers-1.0/src/wagtail_feathers/templates/wagtail_feathers/icons/solid/heroicon-bolt-slash-solid.svg +3 -0
- wagtail_feathers-1.0/src/wagtail_feathers/templates/wagtail_feathers/icons/solid/heroicon-bolt-solid.svg +3 -0
- wagtail_feathers-1.0/src/wagtail_feathers/templates/wagtail_feathers/icons/solid/heroicon-book-open-solid.svg +3 -0
- wagtail_feathers-1.0/src/wagtail_feathers/templates/wagtail_feathers/icons/solid/heroicon-bookmark-slash-solid.svg +3 -0
- wagtail_feathers-1.0/src/wagtail_feathers/templates/wagtail_feathers/icons/solid/heroicon-bookmark-solid.svg +3 -0
- wagtail_feathers-1.0/src/wagtail_feathers/templates/wagtail_feathers/icons/solid/heroicon-bookmark-square-solid.svg +3 -0
- wagtail_feathers-1.0/src/wagtail_feathers/templates/wagtail_feathers/icons/solid/heroicon-briefcase-solid.svg +4 -0
- wagtail_feathers-1.0/src/wagtail_feathers/templates/wagtail_feathers/icons/solid/heroicon-bug-ant-solid.svg +3 -0
- wagtail_feathers-1.0/src/wagtail_feathers/templates/wagtail_feathers/icons/solid/heroicon-building-library-solid.svg +5 -0
- wagtail_feathers-1.0/src/wagtail_feathers/templates/wagtail_feathers/icons/solid/heroicon-building-office-2-solid.svg +3 -0
- wagtail_feathers-1.0/src/wagtail_feathers/templates/wagtail_feathers/icons/solid/heroicon-building-office-solid.svg +3 -0
- wagtail_feathers-1.0/src/wagtail_feathers/templates/wagtail_feathers/icons/solid/heroicon-building-storefront-solid.svg +4 -0
- wagtail_feathers-1.0/src/wagtail_feathers/templates/wagtail_feathers/icons/solid/heroicon-cake-solid.svg +3 -0
- wagtail_feathers-1.0/src/wagtail_feathers/templates/wagtail_feathers/icons/solid/heroicon-calculator-solid.svg +3 -0
- wagtail_feathers-1.0/src/wagtail_feathers/templates/wagtail_feathers/icons/solid/heroicon-calendar-date-range-solid.svg +4 -0
- wagtail_feathers-1.0/src/wagtail_feathers/templates/wagtail_feathers/icons/solid/heroicon-calendar-days-solid.svg +4 -0
- wagtail_feathers-1.0/src/wagtail_feathers/templates/wagtail_feathers/icons/solid/heroicon-calendar-solid.svg +3 -0
- wagtail_feathers-1.0/src/wagtail_feathers/templates/wagtail_feathers/icons/solid/heroicon-camera-solid.svg +4 -0
- wagtail_feathers-1.0/src/wagtail_feathers/templates/wagtail_feathers/icons/solid/heroicon-chart-bar-solid.svg +3 -0
- wagtail_feathers-1.0/src/wagtail_feathers/templates/wagtail_feathers/icons/solid/heroicon-chart-bar-square-solid.svg +3 -0
- wagtail_feathers-1.0/src/wagtail_feathers/templates/wagtail_feathers/icons/solid/heroicon-chart-pie-solid.svg +4 -0
- wagtail_feathers-1.0/src/wagtail_feathers/templates/wagtail_feathers/icons/solid/heroicon-chat-bubble-bottom-center-solid.svg +3 -0
- wagtail_feathers-1.0/src/wagtail_feathers/templates/wagtail_feathers/icons/solid/heroicon-chat-bubble-bottom-center-text-solid.svg +3 -0
- wagtail_feathers-1.0/src/wagtail_feathers/templates/wagtail_feathers/icons/solid/heroicon-chat-bubble-left-ellipsis-solid.svg +3 -0
- wagtail_feathers-1.0/src/wagtail_feathers/templates/wagtail_feathers/icons/solid/heroicon-chat-bubble-left-right-solid.svg +4 -0
- wagtail_feathers-1.0/src/wagtail_feathers/templates/wagtail_feathers/icons/solid/heroicon-chat-bubble-left-solid.svg +3 -0
- wagtail_feathers-1.0/src/wagtail_feathers/templates/wagtail_feathers/icons/solid/heroicon-chat-bubble-oval-left-ellipsis-solid.svg +3 -0
- wagtail_feathers-1.0/src/wagtail_feathers/templates/wagtail_feathers/icons/solid/heroicon-chat-bubble-oval-left-solid.svg +3 -0
- wagtail_feathers-1.0/src/wagtail_feathers/templates/wagtail_feathers/icons/solid/heroicon-check-badge-solid.svg +3 -0
- wagtail_feathers-1.0/src/wagtail_feathers/templates/wagtail_feathers/icons/solid/heroicon-check-circle-solid.svg +3 -0
- wagtail_feathers-1.0/src/wagtail_feathers/templates/wagtail_feathers/icons/solid/heroicon-check-solid.svg +3 -0
- wagtail_feathers-1.0/src/wagtail_feathers/templates/wagtail_feathers/icons/solid/heroicon-chevron-double-down-solid.svg +4 -0
- wagtail_feathers-1.0/src/wagtail_feathers/templates/wagtail_feathers/icons/solid/heroicon-chevron-double-left-solid.svg +4 -0
- wagtail_feathers-1.0/src/wagtail_feathers/templates/wagtail_feathers/icons/solid/heroicon-chevron-double-right-solid.svg +4 -0
- wagtail_feathers-1.0/src/wagtail_feathers/templates/wagtail_feathers/icons/solid/heroicon-chevron-double-up-solid.svg +4 -0
- wagtail_feathers-1.0/src/wagtail_feathers/templates/wagtail_feathers/icons/solid/heroicon-chevron-down-solid.svg +3 -0
- wagtail_feathers-1.0/src/wagtail_feathers/templates/wagtail_feathers/icons/solid/heroicon-chevron-left-solid.svg +3 -0
- wagtail_feathers-1.0/src/wagtail_feathers/templates/wagtail_feathers/icons/solid/heroicon-chevron-right-solid.svg +3 -0
- wagtail_feathers-1.0/src/wagtail_feathers/templates/wagtail_feathers/icons/solid/heroicon-chevron-up-down-solid.svg +3 -0
- wagtail_feathers-1.0/src/wagtail_feathers/templates/wagtail_feathers/icons/solid/heroicon-chevron-up-solid.svg +3 -0
- wagtail_feathers-1.0/src/wagtail_feathers/templates/wagtail_feathers/icons/solid/heroicon-circle-stack-solid.svg +6 -0
- wagtail_feathers-1.0/src/wagtail_feathers/templates/wagtail_feathers/icons/solid/heroicon-clipboard-document-check-solid.svg +4 -0
- wagtail_feathers-1.0/src/wagtail_feathers/templates/wagtail_feathers/icons/solid/heroicon-clipboard-document-list-solid.svg +4 -0
- wagtail_feathers-1.0/src/wagtail_feathers/templates/wagtail_feathers/icons/solid/heroicon-clipboard-document-solid.svg +5 -0
- wagtail_feathers-1.0/src/wagtail_feathers/templates/wagtail_feathers/icons/solid/heroicon-clipboard-solid.svg +3 -0
- wagtail_feathers-1.0/src/wagtail_feathers/templates/wagtail_feathers/icons/solid/heroicon-clock-solid.svg +3 -0
- wagtail_feathers-1.0/src/wagtail_feathers/templates/wagtail_feathers/icons/solid/heroicon-cloud-arrow-down-solid.svg +3 -0
- wagtail_feathers-1.0/src/wagtail_feathers/templates/wagtail_feathers/icons/solid/heroicon-cloud-arrow-up-solid.svg +3 -0
- wagtail_feathers-1.0/src/wagtail_feathers/templates/wagtail_feathers/icons/solid/heroicon-cloud-solid.svg +3 -0
- wagtail_feathers-1.0/src/wagtail_feathers/templates/wagtail_feathers/icons/solid/heroicon-code-bracket-solid.svg +3 -0
- wagtail_feathers-1.0/src/wagtail_feathers/templates/wagtail_feathers/icons/solid/heroicon-code-bracket-square-solid.svg +3 -0
- wagtail_feathers-1.0/src/wagtail_feathers/templates/wagtail_feathers/icons/solid/heroicon-cog-6-tooth-solid.svg +3 -0
- wagtail_feathers-1.0/src/wagtail_feathers/templates/wagtail_feathers/icons/solid/heroicon-cog-8-tooth-solid.svg +3 -0
- wagtail_feathers-1.0/src/wagtail_feathers/templates/wagtail_feathers/icons/solid/heroicon-cog-solid.svg +4 -0
- wagtail_feathers-1.0/src/wagtail_feathers/templates/wagtail_feathers/icons/solid/heroicon-command-line-solid.svg +3 -0
- wagtail_feathers-1.0/src/wagtail_feathers/templates/wagtail_feathers/icons/solid/heroicon-computer-desktop-solid.svg +3 -0
- wagtail_feathers-1.0/src/wagtail_feathers/templates/wagtail_feathers/icons/solid/heroicon-cpu-chip-solid.svg +4 -0
- wagtail_feathers-1.0/src/wagtail_feathers/templates/wagtail_feathers/icons/solid/heroicon-credit-card-solid.svg +4 -0
- wagtail_feathers-1.0/src/wagtail_feathers/templates/wagtail_feathers/icons/solid/heroicon-cube-solid.svg +3 -0
- wagtail_feathers-1.0/src/wagtail_feathers/templates/wagtail_feathers/icons/solid/heroicon-cube-transparent-solid.svg +3 -0
- wagtail_feathers-1.0/src/wagtail_feathers/templates/wagtail_feathers/icons/solid/heroicon-currency-bangladeshi-solid.svg +3 -0
- wagtail_feathers-1.0/src/wagtail_feathers/templates/wagtail_feathers/icons/solid/heroicon-currency-dollar-solid.svg +4 -0
- wagtail_feathers-1.0/src/wagtail_feathers/templates/wagtail_feathers/icons/solid/heroicon-currency-euro-solid.svg +3 -0
- wagtail_feathers-1.0/src/wagtail_feathers/templates/wagtail_feathers/icons/solid/heroicon-currency-pound-solid.svg +3 -0
- wagtail_feathers-1.0/src/wagtail_feathers/templates/wagtail_feathers/icons/solid/heroicon-currency-rupee-solid.svg +3 -0
- wagtail_feathers-1.0/src/wagtail_feathers/templates/wagtail_feathers/icons/solid/heroicon-currency-yen-solid.svg +3 -0
- wagtail_feathers-1.0/src/wagtail_feathers/templates/wagtail_feathers/icons/solid/heroicon-cursor-arrow-rays-solid.svg +3 -0
- wagtail_feathers-1.0/src/wagtail_feathers/templates/wagtail_feathers/icons/solid/heroicon-cursor-arrow-ripple-solid.svg +3 -0
- wagtail_feathers-1.0/src/wagtail_feathers/templates/wagtail_feathers/icons/solid/heroicon-device-phone-mobile-solid.svg +4 -0
- wagtail_feathers-1.0/src/wagtail_feathers/templates/wagtail_feathers/icons/solid/heroicon-device-tablet-solid.svg +4 -0
- wagtail_feathers-1.0/src/wagtail_feathers/templates/wagtail_feathers/icons/solid/heroicon-divide-solid.svg +3 -0
- wagtail_feathers-1.0/src/wagtail_feathers/templates/wagtail_feathers/icons/solid/heroicon-document-arrow-down-solid.svg +4 -0
- wagtail_feathers-1.0/src/wagtail_feathers/templates/wagtail_feathers/icons/solid/heroicon-document-arrow-up-solid.svg +4 -0
- wagtail_feathers-1.0/src/wagtail_feathers/templates/wagtail_feathers/icons/solid/heroicon-document-chart-bar-solid.svg +4 -0
- wagtail_feathers-1.0/src/wagtail_feathers/templates/wagtail_feathers/icons/solid/heroicon-document-check-solid.svg +4 -0
- wagtail_feathers-1.0/src/wagtail_feathers/templates/wagtail_feathers/icons/solid/heroicon-document-currency-bangladeshi-solid.svg +3 -0
- wagtail_feathers-1.0/src/wagtail_feathers/templates/wagtail_feathers/icons/solid/heroicon-document-currency-dollar-solid.svg +3 -0
- wagtail_feathers-1.0/src/wagtail_feathers/templates/wagtail_feathers/icons/solid/heroicon-document-currency-euro-solid.svg +4 -0
- wagtail_feathers-1.0/src/wagtail_feathers/templates/wagtail_feathers/icons/solid/heroicon-document-currency-pound-solid.svg +3 -0
- wagtail_feathers-1.0/src/wagtail_feathers/templates/wagtail_feathers/icons/solid/heroicon-document-currency-rupee-solid.svg +3 -0
- wagtail_feathers-1.0/src/wagtail_feathers/templates/wagtail_feathers/icons/solid/heroicon-document-currency-yen-solid.svg +3 -0
- wagtail_feathers-1.0/src/wagtail_feathers/templates/wagtail_feathers/icons/solid/heroicon-document-duplicate-solid.svg +4 -0
- wagtail_feathers-1.0/src/wagtail_feathers/templates/wagtail_feathers/icons/solid/heroicon-document-magnifying-glass-solid.svg +5 -0
- wagtail_feathers-1.0/src/wagtail_feathers/templates/wagtail_feathers/icons/solid/heroicon-document-minus-solid.svg +4 -0
- wagtail_feathers-1.0/src/wagtail_feathers/templates/wagtail_feathers/icons/solid/heroicon-document-plus-solid.svg +4 -0
- wagtail_feathers-1.0/src/wagtail_feathers/templates/wagtail_feathers/icons/solid/heroicon-document-solid.svg +4 -0
- wagtail_feathers-1.0/src/wagtail_feathers/templates/wagtail_feathers/icons/solid/heroicon-document-text-solid.svg +4 -0
- wagtail_feathers-1.0/src/wagtail_feathers/templates/wagtail_feathers/icons/solid/heroicon-ellipsis-horizontal-circle-solid.svg +3 -0
- wagtail_feathers-1.0/src/wagtail_feathers/templates/wagtail_feathers/icons/solid/heroicon-ellipsis-horizontal-solid.svg +3 -0
- wagtail_feathers-1.0/src/wagtail_feathers/templates/wagtail_feathers/icons/solid/heroicon-ellipsis-vertical-solid.svg +3 -0
- wagtail_feathers-1.0/src/wagtail_feathers/templates/wagtail_feathers/icons/solid/heroicon-envelope-open-solid.svg +4 -0
- wagtail_feathers-1.0/src/wagtail_feathers/templates/wagtail_feathers/icons/solid/heroicon-envelope-solid.svg +4 -0
- wagtail_feathers-1.0/src/wagtail_feathers/templates/wagtail_feathers/icons/solid/heroicon-equals-solid.svg +3 -0
- wagtail_feathers-1.0/src/wagtail_feathers/templates/wagtail_feathers/icons/solid/heroicon-exclamation-circle-solid.svg +3 -0
- wagtail_feathers-1.0/src/wagtail_feathers/templates/wagtail_feathers/icons/solid/heroicon-exclamation-triangle-solid.svg +3 -0
- wagtail_feathers-1.0/src/wagtail_feathers/templates/wagtail_feathers/icons/solid/heroicon-eye-dropper-solid.svg +3 -0
- wagtail_feathers-1.0/src/wagtail_feathers/templates/wagtail_feathers/icons/solid/heroicon-eye-slash-solid.svg +5 -0
- wagtail_feathers-1.0/src/wagtail_feathers/templates/wagtail_feathers/icons/solid/heroicon-eye-solid.svg +4 -0
- wagtail_feathers-1.0/src/wagtail_feathers/templates/wagtail_feathers/icons/solid/heroicon-face-frown-solid.svg +3 -0
- wagtail_feathers-1.0/src/wagtail_feathers/templates/wagtail_feathers/icons/solid/heroicon-face-smile-solid.svg +3 -0
- wagtail_feathers-1.0/src/wagtail_feathers/templates/wagtail_feathers/icons/solid/heroicon-film-solid.svg +3 -0
- wagtail_feathers-1.0/src/wagtail_feathers/templates/wagtail_feathers/icons/solid/heroicon-finger-print-solid.svg +3 -0
- wagtail_feathers-1.0/src/wagtail_feathers/templates/wagtail_feathers/icons/solid/heroicon-fire-solid.svg +3 -0
- wagtail_feathers-1.0/src/wagtail_feathers/templates/wagtail_feathers/icons/solid/heroicon-flag-solid.svg +3 -0
- wagtail_feathers-1.0/src/wagtail_feathers/templates/wagtail_feathers/icons/solid/heroicon-folder-arrow-down-solid.svg +3 -0
- wagtail_feathers-1.0/src/wagtail_feathers/templates/wagtail_feathers/icons/solid/heroicon-folder-minus-solid.svg +3 -0
- wagtail_feathers-1.0/src/wagtail_feathers/templates/wagtail_feathers/icons/solid/heroicon-folder-open-solid.svg +3 -0
- wagtail_feathers-1.0/src/wagtail_feathers/templates/wagtail_feathers/icons/solid/heroicon-folder-plus-solid.svg +3 -0
- wagtail_feathers-1.0/src/wagtail_feathers/templates/wagtail_feathers/icons/solid/heroicon-folder-solid.svg +3 -0
- wagtail_feathers-1.0/src/wagtail_feathers/templates/wagtail_feathers/icons/solid/heroicon-forward-solid.svg +3 -0
- wagtail_feathers-1.0/src/wagtail_feathers/templates/wagtail_feathers/icons/solid/heroicon-funnel-solid.svg +3 -0
- wagtail_feathers-1.0/src/wagtail_feathers/templates/wagtail_feathers/icons/solid/heroicon-gif-solid.svg +3 -0
- wagtail_feathers-1.0/src/wagtail_feathers/templates/wagtail_feathers/icons/solid/heroicon-gift-solid.svg +3 -0
- wagtail_feathers-1.0/src/wagtail_feathers/templates/wagtail_feathers/icons/solid/heroicon-gift-top-solid.svg +4 -0
- wagtail_feathers-1.0/src/wagtail_feathers/templates/wagtail_feathers/icons/solid/heroicon-globe-alt-solid.svg +3 -0
- wagtail_feathers-1.0/src/wagtail_feathers/templates/wagtail_feathers/icons/solid/heroicon-globe-americas-solid.svg +3 -0
- wagtail_feathers-1.0/src/wagtail_feathers/templates/wagtail_feathers/icons/solid/heroicon-globe-asia-australia-solid.svg +4 -0
- wagtail_feathers-1.0/src/wagtail_feathers/templates/wagtail_feathers/icons/solid/heroicon-globe-europe-africa-solid.svg +3 -0
- wagtail_feathers-1.0/src/wagtail_feathers/templates/wagtail_feathers/icons/solid/heroicon-h1-solid.svg +3 -0
- wagtail_feathers-1.0/src/wagtail_feathers/templates/wagtail_feathers/icons/solid/heroicon-h2-solid.svg +3 -0
- wagtail_feathers-1.0/src/wagtail_feathers/templates/wagtail_feathers/icons/solid/heroicon-h3-solid.svg +3 -0
- wagtail_feathers-1.0/src/wagtail_feathers/templates/wagtail_feathers/icons/solid/heroicon-hand-raised-solid.svg +3 -0
- wagtail_feathers-1.0/src/wagtail_feathers/templates/wagtail_feathers/icons/solid/heroicon-hand-thumb-down-solid.svg +3 -0
- wagtail_feathers-1.0/src/wagtail_feathers/templates/wagtail_feathers/icons/solid/heroicon-hand-thumb-up-solid.svg +3 -0
- wagtail_feathers-1.0/src/wagtail_feathers/templates/wagtail_feathers/icons/solid/heroicon-hashtag-solid.svg +3 -0
- wagtail_feathers-1.0/src/wagtail_feathers/templates/wagtail_feathers/icons/solid/heroicon-heart-solid.svg +3 -0
- wagtail_feathers-1.0/src/wagtail_feathers/templates/wagtail_feathers/icons/solid/heroicon-home-modern-solid.svg +4 -0
- wagtail_feathers-1.0/src/wagtail_feathers/templates/wagtail_feathers/icons/solid/heroicon-home-solid.svg +4 -0
- wagtail_feathers-1.0/src/wagtail_feathers/templates/wagtail_feathers/icons/solid/heroicon-identification-solid.svg +3 -0
- wagtail_feathers-1.0/src/wagtail_feathers/templates/wagtail_feathers/icons/solid/heroicon-inbox-arrow-down-solid.svg +4 -0
- wagtail_feathers-1.0/src/wagtail_feathers/templates/wagtail_feathers/icons/solid/heroicon-inbox-solid.svg +3 -0
- wagtail_feathers-1.0/src/wagtail_feathers/templates/wagtail_feathers/icons/solid/heroicon-inbox-stack-solid.svg +4 -0
- wagtail_feathers-1.0/src/wagtail_feathers/templates/wagtail_feathers/icons/solid/heroicon-information-circle-solid.svg +3 -0
- wagtail_feathers-1.0/src/wagtail_feathers/templates/wagtail_feathers/icons/solid/heroicon-italic-solid.svg +3 -0
- wagtail_feathers-1.0/src/wagtail_feathers/templates/wagtail_feathers/icons/solid/heroicon-key-solid.svg +3 -0
- wagtail_feathers-1.0/src/wagtail_feathers/templates/wagtail_feathers/icons/solid/heroicon-language-solid.svg +3 -0
- wagtail_feathers-1.0/src/wagtail_feathers/templates/wagtail_feathers/icons/solid/heroicon-lifebuoy-solid.svg +3 -0
- wagtail_feathers-1.0/src/wagtail_feathers/templates/wagtail_feathers/icons/solid/heroicon-light-bulb-solid.svg +4 -0
- wagtail_feathers-1.0/src/wagtail_feathers/templates/wagtail_feathers/icons/solid/heroicon-link-slash-solid.svg +3 -0
- wagtail_feathers-1.0/src/wagtail_feathers/templates/wagtail_feathers/icons/solid/heroicon-link-solid.svg +3 -0
- wagtail_feathers-1.0/src/wagtail_feathers/templates/wagtail_feathers/icons/solid/heroicon-list-bullet-solid.svg +3 -0
- wagtail_feathers-1.0/src/wagtail_feathers/templates/wagtail_feathers/icons/solid/heroicon-lock-closed-solid.svg +3 -0
- wagtail_feathers-1.0/src/wagtail_feathers/templates/wagtail_feathers/icons/solid/heroicon-lock-open-solid.svg +3 -0
- wagtail_feathers-1.0/src/wagtail_feathers/templates/wagtail_feathers/icons/solid/heroicon-magnifying-glass-circle-solid.svg +4 -0
- wagtail_feathers-1.0/src/wagtail_feathers/templates/wagtail_feathers/icons/solid/heroicon-magnifying-glass-minus-solid.svg +3 -0
- wagtail_feathers-1.0/src/wagtail_feathers/templates/wagtail_feathers/icons/solid/heroicon-magnifying-glass-plus-solid.svg +3 -0
- wagtail_feathers-1.0/src/wagtail_feathers/templates/wagtail_feathers/icons/solid/heroicon-magnifying-glass-solid.svg +3 -0
- wagtail_feathers-1.0/src/wagtail_feathers/templates/wagtail_feathers/icons/solid/heroicon-map-pin-solid.svg +3 -0
- wagtail_feathers-1.0/src/wagtail_feathers/templates/wagtail_feathers/icons/solid/heroicon-map-solid.svg +3 -0
- wagtail_feathers-1.0/src/wagtail_feathers/templates/wagtail_feathers/icons/solid/heroicon-megaphone-solid.svg +3 -0
- wagtail_feathers-1.0/src/wagtail_feathers/templates/wagtail_feathers/icons/solid/heroicon-microphone-solid.svg +4 -0
- wagtail_feathers-1.0/src/wagtail_feathers/templates/wagtail_feathers/icons/solid/heroicon-minus-circle-solid.svg +3 -0
- wagtail_feathers-1.0/src/wagtail_feathers/templates/wagtail_feathers/icons/solid/heroicon-minus-small-solid.svg +3 -0
- wagtail_feathers-1.0/src/wagtail_feathers/templates/wagtail_feathers/icons/solid/heroicon-minus-solid.svg +3 -0
- wagtail_feathers-1.0/src/wagtail_feathers/templates/wagtail_feathers/icons/solid/heroicon-moon-solid.svg +3 -0
- wagtail_feathers-1.0/src/wagtail_feathers/templates/wagtail_feathers/icons/solid/heroicon-musical-note-solid.svg +3 -0
- wagtail_feathers-1.0/src/wagtail_feathers/templates/wagtail_feathers/icons/solid/heroicon-newspaper-solid.svg +4 -0
- wagtail_feathers-1.0/src/wagtail_feathers/templates/wagtail_feathers/icons/solid/heroicon-no-symbol-solid.svg +3 -0
- wagtail_feathers-1.0/src/wagtail_feathers/templates/wagtail_feathers/icons/solid/heroicon-numbered-list-solid.svg +3 -0
- wagtail_feathers-1.0/src/wagtail_feathers/templates/wagtail_feathers/icons/solid/heroicon-paint-brush-solid.svg +3 -0
- wagtail_feathers-1.0/src/wagtail_feathers/templates/wagtail_feathers/icons/solid/heroicon-paper-airplane-solid.svg +3 -0
- wagtail_feathers-1.0/src/wagtail_feathers/templates/wagtail_feathers/icons/solid/heroicon-paper-clip-solid.svg +3 -0
- wagtail_feathers-1.0/src/wagtail_feathers/templates/wagtail_feathers/icons/solid/heroicon-pause-circle-solid.svg +3 -0
- wagtail_feathers-1.0/src/wagtail_feathers/templates/wagtail_feathers/icons/solid/heroicon-pause-solid.svg +3 -0
- wagtail_feathers-1.0/src/wagtail_feathers/templates/wagtail_feathers/icons/solid/heroicon-pencil-solid.svg +3 -0
- wagtail_feathers-1.0/src/wagtail_feathers/templates/wagtail_feathers/icons/solid/heroicon-pencil-square-solid.svg +4 -0
- wagtail_feathers-1.0/src/wagtail_feathers/templates/wagtail_feathers/icons/solid/heroicon-percent-badge-solid.svg +3 -0
- wagtail_feathers-1.0/src/wagtail_feathers/templates/wagtail_feathers/icons/solid/heroicon-phone-arrow-down-left-solid.svg +4 -0
- wagtail_feathers-1.0/src/wagtail_feathers/templates/wagtail_feathers/icons/solid/heroicon-phone-arrow-up-right-solid.svg +4 -0
- wagtail_feathers-1.0/src/wagtail_feathers/templates/wagtail_feathers/icons/solid/heroicon-phone-solid.svg +3 -0
- wagtail_feathers-1.0/src/wagtail_feathers/templates/wagtail_feathers/icons/solid/heroicon-phone-x-mark-solid.svg +3 -0
- wagtail_feathers-1.0/src/wagtail_feathers/templates/wagtail_feathers/icons/solid/heroicon-photo-solid.svg +3 -0
- wagtail_feathers-1.0/src/wagtail_feathers/templates/wagtail_feathers/icons/solid/heroicon-play-circle-solid.svg +3 -0
- wagtail_feathers-1.0/src/wagtail_feathers/templates/wagtail_feathers/icons/solid/heroicon-play-pause-solid.svg +3 -0
- wagtail_feathers-1.0/src/wagtail_feathers/templates/wagtail_feathers/icons/solid/heroicon-play-solid.svg +3 -0
- wagtail_feathers-1.0/src/wagtail_feathers/templates/wagtail_feathers/icons/solid/heroicon-plus-circle-solid.svg +3 -0
- wagtail_feathers-1.0/src/wagtail_feathers/templates/wagtail_feathers/icons/solid/heroicon-plus-small-solid.svg +3 -0
- wagtail_feathers-1.0/src/wagtail_feathers/templates/wagtail_feathers/icons/solid/heroicon-plus-solid.svg +3 -0
- wagtail_feathers-1.0/src/wagtail_feathers/templates/wagtail_feathers/icons/solid/heroicon-power-solid.svg +3 -0
- wagtail_feathers-1.0/src/wagtail_feathers/templates/wagtail_feathers/icons/solid/heroicon-presentation-chart-bar-solid.svg +3 -0
- wagtail_feathers-1.0/src/wagtail_feathers/templates/wagtail_feathers/icons/solid/heroicon-presentation-chart-line-solid.svg +3 -0
- wagtail_feathers-1.0/src/wagtail_feathers/templates/wagtail_feathers/icons/solid/heroicon-printer-solid.svg +3 -0
- wagtail_feathers-1.0/src/wagtail_feathers/templates/wagtail_feathers/icons/solid/heroicon-puzzle-piece-solid.svg +3 -0
- wagtail_feathers-1.0/src/wagtail_feathers/templates/wagtail_feathers/icons/solid/heroicon-qr-code-solid.svg +3 -0
- wagtail_feathers-1.0/src/wagtail_feathers/templates/wagtail_feathers/icons/solid/heroicon-question-mark-circle-solid.svg +3 -0
- wagtail_feathers-1.0/src/wagtail_feathers/templates/wagtail_feathers/icons/solid/heroicon-queue-list-solid.svg +3 -0
- wagtail_feathers-1.0/src/wagtail_feathers/templates/wagtail_feathers/icons/solid/heroicon-radio-solid.svg +3 -0
- wagtail_feathers-1.0/src/wagtail_feathers/templates/wagtail_feathers/icons/solid/heroicon-receipt-percent-solid.svg +3 -0
- wagtail_feathers-1.0/src/wagtail_feathers/templates/wagtail_feathers/icons/solid/heroicon-receipt-refund-solid.svg +3 -0
- wagtail_feathers-1.0/src/wagtail_feathers/templates/wagtail_feathers/icons/solid/heroicon-rectangle-group-solid.svg +3 -0
- wagtail_feathers-1.0/src/wagtail_feathers/templates/wagtail_feathers/icons/solid/heroicon-rectangle-stack-solid.svg +3 -0
- wagtail_feathers-1.0/src/wagtail_feathers/templates/wagtail_feathers/icons/solid/heroicon-rocket-launch-solid.svg +4 -0
- wagtail_feathers-1.0/src/wagtail_feathers/templates/wagtail_feathers/icons/solid/heroicon-rss-solid.svg +3 -0
- wagtail_feathers-1.0/src/wagtail_feathers/templates/wagtail_feathers/icons/solid/heroicon-scale-solid.svg +3 -0
- wagtail_feathers-1.0/src/wagtail_feathers/templates/wagtail_feathers/icons/solid/heroicon-scissors-solid.svg +4 -0
- wagtail_feathers-1.0/src/wagtail_feathers/templates/wagtail_feathers/icons/solid/heroicon-server-solid.svg +4 -0
- wagtail_feathers-1.0/src/wagtail_feathers/templates/wagtail_feathers/icons/solid/heroicon-server-stack-solid.svg +4 -0
- wagtail_feathers-1.0/src/wagtail_feathers/templates/wagtail_feathers/icons/solid/heroicon-share-solid.svg +3 -0
- wagtail_feathers-1.0/src/wagtail_feathers/templates/wagtail_feathers/icons/solid/heroicon-shield-check-solid.svg +3 -0
- wagtail_feathers-1.0/src/wagtail_feathers/templates/wagtail_feathers/icons/solid/heroicon-shield-exclamation-solid.svg +3 -0
- wagtail_feathers-1.0/src/wagtail_feathers/templates/wagtail_feathers/icons/solid/heroicon-shopping-bag-solid.svg +3 -0
- wagtail_feathers-1.0/src/wagtail_feathers/templates/wagtail_feathers/icons/solid/heroicon-shopping-cart-solid.svg +3 -0
- wagtail_feathers-1.0/src/wagtail_feathers/templates/wagtail_feathers/icons/solid/heroicon-signal-slash-solid.svg +3 -0
- wagtail_feathers-1.0/src/wagtail_feathers/templates/wagtail_feathers/icons/solid/heroicon-signal-solid.svg +3 -0
- wagtail_feathers-1.0/src/wagtail_feathers/templates/wagtail_feathers/icons/solid/heroicon-slash-solid.svg +3 -0
- wagtail_feathers-1.0/src/wagtail_feathers/templates/wagtail_feathers/icons/solid/heroicon-sparkles-solid.svg +3 -0
- wagtail_feathers-1.0/src/wagtail_feathers/templates/wagtail_feathers/icons/solid/heroicon-speaker-wave-solid.svg +4 -0
- wagtail_feathers-1.0/src/wagtail_feathers/templates/wagtail_feathers/icons/solid/heroicon-speaker-x-mark-solid.svg +3 -0
- wagtail_feathers-1.0/src/wagtail_feathers/templates/wagtail_feathers/icons/solid/heroicon-square-2-stack-solid.svg +4 -0
- wagtail_feathers-1.0/src/wagtail_feathers/templates/wagtail_feathers/icons/solid/heroicon-square-3-stack-3d-solid.svg +5 -0
- wagtail_feathers-1.0/src/wagtail_feathers/templates/wagtail_feathers/icons/solid/heroicon-squares-2x2-solid.svg +3 -0
- wagtail_feathers-1.0/src/wagtail_feathers/templates/wagtail_feathers/icons/solid/heroicon-squares-plus-solid.svg +3 -0
- wagtail_feathers-1.0/src/wagtail_feathers/templates/wagtail_feathers/icons/solid/heroicon-star-solid.svg +3 -0
- wagtail_feathers-1.0/src/wagtail_feathers/templates/wagtail_feathers/icons/solid/heroicon-stop-circle-solid.svg +3 -0
- wagtail_feathers-1.0/src/wagtail_feathers/templates/wagtail_feathers/icons/solid/heroicon-stop-solid.svg +3 -0
- wagtail_feathers-1.0/src/wagtail_feathers/templates/wagtail_feathers/icons/solid/heroicon-strikethrough-solid.svg +3 -0
- wagtail_feathers-1.0/src/wagtail_feathers/templates/wagtail_feathers/icons/solid/heroicon-sun-solid.svg +3 -0
- wagtail_feathers-1.0/src/wagtail_feathers/templates/wagtail_feathers/icons/solid/heroicon-swatch-solid.svg +4 -0
- wagtail_feathers-1.0/src/wagtail_feathers/templates/wagtail_feathers/icons/solid/heroicon-table-cells-solid.svg +3 -0
- wagtail_feathers-1.0/src/wagtail_feathers/templates/wagtail_feathers/icons/solid/heroicon-tag-solid.svg +3 -0
- wagtail_feathers-1.0/src/wagtail_feathers/templates/wagtail_feathers/icons/solid/heroicon-ticket-solid.svg +3 -0
- wagtail_feathers-1.0/src/wagtail_feathers/templates/wagtail_feathers/icons/solid/heroicon-trash-solid.svg +3 -0
- wagtail_feathers-1.0/src/wagtail_feathers/templates/wagtail_feathers/icons/solid/heroicon-trophy-solid.svg +3 -0
- wagtail_feathers-1.0/src/wagtail_feathers/templates/wagtail_feathers/icons/solid/heroicon-truck-solid.svg +5 -0
- wagtail_feathers-1.0/src/wagtail_feathers/templates/wagtail_feathers/icons/solid/heroicon-tv-solid.svg +4 -0
- wagtail_feathers-1.0/src/wagtail_feathers/templates/wagtail_feathers/icons/solid/heroicon-underline-solid.svg +3 -0
- wagtail_feathers-1.0/src/wagtail_feathers/templates/wagtail_feathers/icons/solid/heroicon-user-circle-solid.svg +3 -0
- wagtail_feathers-1.0/src/wagtail_feathers/templates/wagtail_feathers/icons/solid/heroicon-user-group-solid.svg +4 -0
- wagtail_feathers-1.0/src/wagtail_feathers/templates/wagtail_feathers/icons/solid/heroicon-user-minus-solid.svg +3 -0
- wagtail_feathers-1.0/src/wagtail_feathers/templates/wagtail_feathers/icons/solid/heroicon-user-plus-solid.svg +3 -0
- wagtail_feathers-1.0/src/wagtail_feathers/templates/wagtail_feathers/icons/solid/heroicon-user-solid.svg +3 -0
- wagtail_feathers-1.0/src/wagtail_feathers/templates/wagtail_feathers/icons/solid/heroicon-users-solid.svg +3 -0
- wagtail_feathers-1.0/src/wagtail_feathers/templates/wagtail_feathers/icons/solid/heroicon-variable-solid.svg +3 -0
- wagtail_feathers-1.0/src/wagtail_feathers/templates/wagtail_feathers/icons/solid/heroicon-video-camera-slash-solid.svg +3 -0
- wagtail_feathers-1.0/src/wagtail_feathers/templates/wagtail_feathers/icons/solid/heroicon-video-camera-solid.svg +3 -0
- wagtail_feathers-1.0/src/wagtail_feathers/templates/wagtail_feathers/icons/solid/heroicon-view-columns-solid.svg +3 -0
- wagtail_feathers-1.0/src/wagtail_feathers/templates/wagtail_feathers/icons/solid/heroicon-viewfinder-circle-solid.svg +3 -0
- wagtail_feathers-1.0/src/wagtail_feathers/templates/wagtail_feathers/icons/solid/heroicon-wallet-solid.svg +3 -0
- wagtail_feathers-1.0/src/wagtail_feathers/templates/wagtail_feathers/icons/solid/heroicon-wifi-solid.svg +3 -0
- wagtail_feathers-1.0/src/wagtail_feathers/templates/wagtail_feathers/icons/solid/heroicon-window-solid.svg +3 -0
- wagtail_feathers-1.0/src/wagtail_feathers/templates/wagtail_feathers/icons/solid/heroicon-wrench-screwdriver-solid.svg +5 -0
- wagtail_feathers-1.0/src/wagtail_feathers/templates/wagtail_feathers/icons/solid/heroicon-wrench-solid.svg +3 -0
- wagtail_feathers-1.0/src/wagtail_feathers/templates/wagtail_feathers/icons/solid/heroicon-x-circle-solid.svg +3 -0
- wagtail_feathers-1.0/src/wagtail_feathers/templates/wagtail_feathers/icons/solid/heroicon-x-mark-solid.svg +3 -0
- wagtail_feathers-1.0/src/wagtail_feathers/templates/wagtail_feathers/preview/static_embed_block.html +20 -0
- wagtail_feathers-1.0/src/wagtail_feathers/templates/wagtail_feathers/seo/meta.html +118 -0
- wagtail_feathers-1.0/src/wagtail_feathers/templates/wagtail_feathers/seo/structured_data.html +63 -0
- wagtail_feathers-1.0/src/wagtail_feathers/templates/wagtail_feathers/tags/reading_time_display.html +18 -0
- wagtail_feathers-1.0/src/wagtail_feathers/templates/wagtail_feathers/templatetags/_footer_text.html +0 -0
- wagtail_feathers-1.0/src/wagtail_feathers/templates/wagtail_feathers/templatetags/_mobile_menu_items.html +18 -0
- wagtail_feathers-1.0/src/wagtail_feathers/templates/wagtail_feathers/templatetags/_svg_icon.html +24 -0
- wagtail_feathers-1.0/src/wagtail_feathers/templates/wagtail_feathers/templatetags/_top_menu_items.html +31 -0
- wagtail_feathers-1.0/src/wagtail_feathers/templates/wagtail_feathers/templatetags/breadcrumbs.html +24 -0
- wagtail_feathers-1.0/src/wagtail_feathers/templates/wagtail_feathers/templatetags/category_breadcrumbs.html +161 -0
- wagtail_feathers-1.0/src/wagtail_feathers/templates/wagtail_feathers/templatetags/category_navigation.html +147 -0
- wagtail_feathers-1.0/src/wagtail_feathers/templates/wagtail_feathers/templatetags/category_tree.html +151 -0
- wagtail_feathers-1.0/src/wagtail_feathers/templates/wagtail_feathers/templatetags/social_media_links.html +49 -0
- wagtail_feathers-1.0/src/wagtail_feathers/templates/wagtail_feathers/widgets/checkbox_taxonomy.html +36 -0
- wagtail_feathers-1.0/src/wagtail_feathers/templatetags/__init__.py +0 -0
- wagtail_feathers-1.0/src/wagtail_feathers/templatetags/category_tags.py +162 -0
- wagtail_feathers-1.0/src/wagtail_feathers/templatetags/feathers_tags.py +67 -0
- wagtail_feathers-1.0/src/wagtail_feathers/templatetags/navigation_tags.py +175 -0
- wagtail_feathers-1.0/src/wagtail_feathers/templatetags/pagination_tags.py +10 -0
- wagtail_feathers-1.0/src/wagtail_feathers/templatetags/placeholder_tags.py +50 -0
- wagtail_feathers-1.0/src/wagtail_feathers/templatetags/querystring_tags.py +21 -0
- wagtail_feathers-1.0/src/wagtail_feathers/templatetags/reading_time_tags.py +232 -0
- wagtail_feathers-1.0/src/wagtail_feathers/templatetags/seo_tags.py +228 -0
- wagtail_feathers-1.0/src/wagtail_feathers/templatetags/social_tags.py +45 -0
- wagtail_feathers-1.0/src/wagtail_feathers/templatetags/svg_tags.py +122 -0
- wagtail_feathers-1.0/src/wagtail_feathers/templatetags/tocbot_tags.py +37 -0
- wagtail_feathers-1.0/src/wagtail_feathers/themes.py +745 -0
- wagtail_feathers-1.0/src/wagtail_feathers/utils/__init__.py +0 -0
- wagtail_feathers-1.0/src/wagtail_feathers/utils/query.py +19 -0
- wagtail_feathers-1.0/src/wagtail_feathers/version.py +45 -0
- wagtail_feathers-1.0/src/wagtail_feathers/views.py +70 -0
- wagtail_feathers-1.0/src/wagtail_feathers/viewsets/__init__.py +40 -0
- wagtail_feathers-1.0/src/wagtail_feathers/viewsets/author.py +12 -0
- wagtail_feathers-1.0/src/wagtail_feathers/viewsets/choosers.py +162 -0
- wagtail_feathers-1.0/src/wagtail_feathers/viewsets/components.py +24 -0
- wagtail_feathers-1.0/src/wagtail_feathers/viewsets/faq_chooser.py +9 -0
- wagtail_feathers-1.0/src/wagtail_feathers/viewsets/geographic.py +24 -0
- wagtail_feathers-1.0/src/wagtail_feathers/viewsets/navigation.py +71 -0
- wagtail_feathers-1.0/src/wagtail_feathers/viewsets/person.py +21 -0
- wagtail_feathers-1.0/src/wagtail_feathers/viewsets/social.py +13 -0
- wagtail_feathers-1.0/src/wagtail_feathers/viewsets/taxonomy.py +177 -0
- wagtail_feathers-1.0/src/wagtail_feathers/viewsets/viewset_groups.py +109 -0
- wagtail_feathers-1.0/src/wagtail_feathers/wagtail_hooks.py +271 -0
- wagtail_feathers-1.0/src/wagtail_feathers/widgets.py +3 -0
- wagtail_feathers-1.0/tests/__init__.py +0 -0
- wagtail_feathers-1.0/tests/conftest.py +22 -0
- wagtail_feathers-1.0/tests/settings.py +162 -0
- wagtail_feathers-1.0/tests/test_multisite_simple.py +184 -0
- wagtail_feathers-1.0/tests/test_multisite_themes.py +456 -0
- wagtail_feathers-1.0/tests/test_related_pages.py +115 -0
- wagtail_feathers-1.0/tests/test_struct_values.py +119 -0
- wagtail_feathers-1.0/tests/test_taxonomy.py +626 -0
- wagtail_feathers-1.0/tests/test_theme_integration.py +153 -0
- wagtail_feathers-1.0/tests/test_themes.py +707 -0
- wagtail_feathers-1.0/tests/urls.py +25 -0
- wagtail_feathers-1.0/tox.ini +54 -0
- wagtail_feathers-1.0/vite.config.mjs +42 -0
|
@@ -0,0 +1,81 @@
|
|
|
1
|
+
# Changelog
|
|
2
|
+
|
|
3
|
+
## v1.0.0
|
|
4
|
+
|
|
5
|
+
First stable release. Cumulative changes across the 1.0 beta/rc series are recorded in the entries below.
|
|
6
|
+
|
|
7
|
+
### Changes
|
|
8
|
+
|
|
9
|
+
- **`cards_container_block.html`**: the container heading now renders as a plain `<h2>` (gaining a `sr-only` class when `sr_only_label` is set) instead of delegating to the shared `heading2_block.html` partial — decoupling the cards-container heading from the heading2 block's theme-variant and large-spacing styling. Downstream projects that relied on that styling for this heading should override `cards_container_block.html`.
|
|
10
|
+
|
|
11
|
+
## v1.0.0rc6
|
|
12
|
+
|
|
13
|
+
### Bug Fixes
|
|
14
|
+
|
|
15
|
+
- **`BaseBlock` theme-panel ordering**: editors saw the Theme settings panel at the *end* of every `BaseBlock` StructBlock (e.g. just before children on `CardsContainerBlock`, at the very bottom on leaf blocks with only class-declared fields). Root cause was upstream in Wagtail's own `BaseStructBlock.__init__` (`wagtail/blocks/struct_block.py:253`): it snapshots `self.meta.form_layout = self.get_form_layout()` *before* the previous `BaseBlock.__init__` did its `OrderedDict` reorder of `self.child_blocks`. The snapshot used the pre-reorder order, the Telepath admin adapter reads `form_layout`, so the runtime reorder was invisible to the form. Replaced the runtime reorder with a `get_form_layout()` override that returns `BlockGroup([theme, …content…, nested BlockGroup(template_variant)])` — a single source of truth using Wagtail's documented `form_layout` API. No data migration is required; existing saved StructValues are unaffected.
|
|
16
|
+
|
|
17
|
+
### Improvements
|
|
18
|
+
|
|
19
|
+
- **Block-level `template_variant`**: any `BaseBlock` subclass whose `Meta.template` has on-disk variant siblings now exposes a `template_variant` field, rendered inside a collapsed **Template variant** panel at the bottom of the admin form. Choices are discovered from disk by scanning the active theme(s) for `<base_template>--*.html` siblings of the block's `Meta.template`; if no siblings exist, the field is **not** injected at all (so blocks without variants stay clean — no empty single-choice dropdown). When a variant is selected, `Block.get_template()` returns `[<base>--<variant>.html, <base>.html]` so Django's template loader tries the variant first and silently falls back to the default if the variant file isn't on disk. Mirrors the existing page-level `template_variant` pattern (`models/specialized_pages.py:73,108-125,147`) — same naming convention (`<basename>--<variant>.html`), same fallback semantics. **Decoupled from `theme.theme_variant`**: theme variants remain cosmetic-styling concerns keyed off `theme.json`; template variants are structural/DOM concerns keyed off filenames. Two orthogonal axes, two independent dropdowns. Implementation note: the panel is a nested `BlockGroup` in the layout's `children` (not the top-level `settings=`), because Wagtail's admin JS only renders a visible toggle for the settings group when the parent StructBlock is wrapped in a `<section data-panel>` — which doesn't happen for non-collapsible StructBlocks inside a StreamField.
|
|
20
|
+
- **New `TemplateVariantChooserBlock` class** — public, importable from `wagtail_feathers.blocks`. Auto-instantiated by `BaseBlock` but can also be added manually to any `StructBlock`. Disk discovery is exposed as the public `TemplateVariantChooserBlock.discover_variants(base_template)` static method so callers can probe variants outside the block constructor.
|
|
21
|
+
|
|
22
|
+
### Downstream migration note
|
|
23
|
+
|
|
24
|
+
`makemigrations` will detect a `block_lookup` shape change on every model whose StreamFields reference a `BaseBlock` subclass (because `template_variant` is now a new child of `BaseBlock`). One-time noisy migration per downstream project; no DB column changes — it's a StreamField field-order snapshot.
|
|
25
|
+
|
|
26
|
+
## v1.0.0rc5
|
|
27
|
+
|
|
28
|
+
### Improvements
|
|
29
|
+
|
|
30
|
+
- **`ImageBlock`**: added a `fit` field (`cover` / `contain`, default `cover`). The default keeps the existing editorial behaviour — images are server-side cropped via `fill-…` and rendered into a 16:9 frame with `aspect-video object-cover`. Selecting **Contain — fit without cropping** switches the block to a `max-…` render with `block mx-auto h-auto max-w-full max-h-[640px] w-auto`, preserving the natural aspect ratio. Use this for logos, diagrams, or any image where cropping would lose meaning. The field is a StreamField sub-block addition, so no Django migration is required; existing `image_block` entries deserialize with `fit="cover"` and render identically to before. Projects that override `wagtail_feathers/blocks/image_block.html` should branch on `self.fit` to pick between cover and contain rendering.
|
|
31
|
+
|
|
32
|
+
## v1.0.0rc4
|
|
33
|
+
|
|
34
|
+
### Improvements
|
|
35
|
+
|
|
36
|
+
- **`CardBlock`**: added an optional `icon` field that stores a Heroicon slug (e.g. `"shield-check-solid"`). When set, downstream templates can render it via `{% svg_icon name="heroicons-{{ value.icon }}" %}` above the heading instead of using the `image` field. Existing `CardBlock` instances are unaffected (the field is optional). Projects that override `card_block.html` should branch on `value.icon` to pick between icon-style and image-style cards.
|
|
37
|
+
- **`{% breadcrumbs %}` templatetag** (`navigation_tags`): added a `min_depth` parameter (default `2`, preserves prior behavior of hiding the trail on the home page only). Set `{% breadcrumbs min_depth=3 %}` to also suppress the redundant `Home / Section` trail on direct children of home — useful for themes that consider single-step breadcrumbs visual noise. The condition is `self.depth <= min_depth`, using Wagtail's tree-depth convention (root=1, home=2, top-level sections=3, …).
|
|
38
|
+
|
|
39
|
+
### Bug Fixes
|
|
40
|
+
|
|
41
|
+
- **`CardsContainerBlock`**: fixed a structural bug where the block's `content` StreamBlock accepted `heading` and `columns` sub-blocks instead of `CardBlock` instances, making it impossible to actually add cards to a card grid. The buggy subclass `__init__` was passing config fields (`heading`, `columns`) through `local_blocks`, which `BaseContainerBlock` then incorrectly wrapped into the `content` StreamBlock — also masking the class's own `content_streamblocks = [("card", CardBlock())]` declaration. The `__init__` override has been removed; `heading` (now optional, overriding the inherited required=True) and `columns` are declared as struct-level fields, and `BaseContainerBlock` correctly assembles the `content` StreamBlock from `content_streamblocks`. The fix preserves caller-side extensibility (`CardsContainerBlock(local_blocks=[("featured", FeaturedCardBlock())])` still works to substitute a custom card type).
|
|
42
|
+
- **`cards_container_block.html` template**: removed dead first half that referenced the non-existent `value.cards` attribute. The template now renders only `value.content` (the cards StreamBlock) under a `.cards-container` / `.cards-grid` wrapper.
|
|
43
|
+
|
|
44
|
+
## v1.0.0rc3
|
|
45
|
+
|
|
46
|
+
### Breaking
|
|
47
|
+
|
|
48
|
+
- Bumped minimum Python to **3.12**, Wagtail to **7.4 LTS**, and Django to **5.2** (Django 6.x supported). Python 3.11 and Wagtail 6.x are no longer supported. Test matrix runs on Python 3.12 / 3.13 / 3.14.
|
|
49
|
+
|
|
50
|
+
### Improvements
|
|
51
|
+
|
|
52
|
+
- Per-site theming now resolves correctly at the template loader and static finder layer. New `wagtail_feathers.middleware.theme_site_middleware` (sync + async) binds the current request's Wagtail `Site` to a `contextvars.ContextVar` so themes resolve per-request. Public helpers `get_current_site`, `set_current_site`, and `use_site` are available from `wagtail_feathers.themes` for management commands, scripts, and tests. **Action required:** add `wagtail_feathers.middleware.theme_site_middleware` to `MIDDLEWARE`.
|
|
53
|
+
- `get_active_theme_info()` now accepts a `site` argument and is cached in Django's default cache (per-site key) instead of a process-wide `lru_cache`. Cache is invalidated automatically when `SiteSettings.active_theme` changes.
|
|
54
|
+
- New `wagtail_feathers.themes.ThemeAwareCachedLoader`: drop-in subclass of Django's `cached.Loader` that keys cache entries by `(site_id, template_name)`. Use it in place of `cached.Loader` if you wrap our template loader, otherwise stock caching would serve one site's theme template to another.
|
|
55
|
+
- Admin template-variant discovery (`FeatherBasePage.get_available_template_variants`, `FormBasePage.get_available_template_variants`) now unions variants across every installed theme via the new `ThemeRegistry.get_all_theme_template_dirs()`, so the editor exposes variants from all sites' themes, not just the default site's.
|
|
56
|
+
|
|
57
|
+
### Bug Fixes
|
|
58
|
+
|
|
59
|
+
- Fixed silent multi-site theming bug: `TemplateLoader.get_dirs()` and `ThemeAwareFileSystemFinder.get_theme_locations()` always resolved through the default site regardless of which site the request belonged to. They now read the current site from the new context variable populated by `theme_site_middleware`.
|
|
60
|
+
|
|
61
|
+
## v1.0.0rc2
|
|
62
|
+
|
|
63
|
+
### Improvements
|
|
64
|
+
|
|
65
|
+
- Rewrote viewsets `__init__.py` with lazy `__getattr__` pattern
|
|
66
|
+
- Refactored viewsets with `LocaleAwareMixin`
|
|
67
|
+
- Use `LocaleColumn` instead of `'locale'` in viewsets
|
|
68
|
+
- wagtail-localize now auto-discovers the FAQ `ChooserBlock` as a FK to a `TranslatableMixin` model
|
|
69
|
+
- Reading time feature now uses language-specific reading speeds to align with wagtail admin content metrics
|
|
70
|
+
|
|
71
|
+
### Bug Fixes
|
|
72
|
+
|
|
73
|
+
- Fixed navigation unique constraint to be localized
|
|
74
|
+
- Navigation slugs are now synchronized fields with wagtail-localize
|
|
75
|
+
- `FormBasePage` slug is now a sync field with wagtail-localize
|
|
76
|
+
|
|
77
|
+
### Internal
|
|
78
|
+
|
|
79
|
+
- Refactored test suite
|
|
80
|
+
- Updated theme integration tests
|
|
81
|
+
- Updated and added new migration files
|
|
@@ -0,0 +1,29 @@
|
|
|
1
|
+
BSD 3-Clause License
|
|
2
|
+
|
|
3
|
+
Copyright (c) 2025, Maxime Decooman
|
|
4
|
+
All rights reserved.
|
|
5
|
+
|
|
6
|
+
Redistribution and use in source and binary forms, with or without
|
|
7
|
+
modification, are permitted provided that the following conditions are met:
|
|
8
|
+
|
|
9
|
+
1. Redistributions of source code must retain the above copyright notice, this
|
|
10
|
+
list of conditions and the following disclaimer.
|
|
11
|
+
|
|
12
|
+
2. Redistributions in binary form must reproduce the above copyright notice,
|
|
13
|
+
this list of conditions and the following disclaimer in the documentation
|
|
14
|
+
and/or other materials provided with the distribution.
|
|
15
|
+
|
|
16
|
+
3. Neither the name of the copyright holder nor the names of its
|
|
17
|
+
contributors may be used to endorse or promote products derived from
|
|
18
|
+
this software without specific prior written permission.
|
|
19
|
+
|
|
20
|
+
THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS"
|
|
21
|
+
AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
|
|
22
|
+
IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
|
|
23
|
+
DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE
|
|
24
|
+
FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
|
|
25
|
+
DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR
|
|
26
|
+
SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER
|
|
27
|
+
CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY,
|
|
28
|
+
OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
|
|
29
|
+
OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
|
|
@@ -0,0 +1,28 @@
|
|
|
1
|
+
# Include important package files
|
|
2
|
+
include README.md
|
|
3
|
+
include LICENSE
|
|
4
|
+
include pyproject.toml
|
|
5
|
+
include tox.ini
|
|
6
|
+
|
|
7
|
+
# Include source code
|
|
8
|
+
recursive-include src/wagtail_feathers *.py
|
|
9
|
+
recursive-include src/wagtail_feathers *.html
|
|
10
|
+
recursive-include src/wagtail_feathers *.json
|
|
11
|
+
recursive-include src/wagtail_feathers *.txt
|
|
12
|
+
|
|
13
|
+
# Include templates and static files if any
|
|
14
|
+
recursive-include src/wagtail_feathers/templates *
|
|
15
|
+
recursive-include src/wagtail_feathers/static *
|
|
16
|
+
|
|
17
|
+
# Exclude unnecessary files
|
|
18
|
+
global-exclude *.pyc
|
|
19
|
+
global-exclude *.pyo
|
|
20
|
+
global-exclude *.pyd
|
|
21
|
+
global-exclude __pycache__
|
|
22
|
+
global-exclude .DS_Store
|
|
23
|
+
global-exclude *.so
|
|
24
|
+
global-exclude *.log
|
|
25
|
+
|
|
26
|
+
# Exclude test logs and cache
|
|
27
|
+
recursive-exclude src/wagtail_feathers/tests/logs *
|
|
28
|
+
prune src/wagtail_feathers/tests/logs
|