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.
Files changed (858) hide show
  1. wagtail_feathers-1.0/CHANGELOG.md +81 -0
  2. wagtail_feathers-1.0/LICENSE +29 -0
  3. wagtail_feathers-1.0/MANIFEST.in +28 -0
  4. wagtail_feathers-1.0/PKG-INFO +851 -0
  5. wagtail_feathers-1.0/README.md +814 -0
  6. wagtail_feathers-1.0/demo/README.md +118 -0
  7. wagtail_feathers-1.0/demo/manage.py +22 -0
  8. wagtail_feathers-1.0/demo/requirements.txt +6 -0
  9. wagtail_feathers-1.0/demo/settings.py +165 -0
  10. wagtail_feathers-1.0/demo/showcase/__init__.py +0 -0
  11. wagtail_feathers-1.0/demo/showcase/apps.py +6 -0
  12. wagtail_feathers-1.0/demo/showcase/management/__init__.py +0 -0
  13. wagtail_feathers-1.0/demo/showcase/management/commands/__init__.py +0 -0
  14. wagtail_feathers-1.0/demo/showcase/management/commands/setup_demo_data.py +124 -0
  15. wagtail_feathers-1.0/demo/showcase/migrations/0001_initial.py +150 -0
  16. wagtail_feathers-1.0/demo/showcase/migrations/0002_remove_articlepage_display_authors_and_more.py +47 -0
  17. wagtail_feathers-1.0/demo/showcase/migrations/__init__.py +0 -0
  18. wagtail_feathers-1.0/demo/showcase/models.py +282 -0
  19. wagtail_feathers-1.0/demo/showcase/viewsets.py +12 -0
  20. wagtail_feathers-1.0/demo/showcase/wagtail_hooks.py +7 -0
  21. wagtail_feathers-1.0/demo/themes/quantum/static/assets/stimulus-CZA9Too6.js +5 -0
  22. wagtail_feathers-1.0/demo/themes/quantum/static/css/admin.css +1 -0
  23. wagtail_feathers-1.0/demo/themes/quantum/static/css/main.css +1 -0
  24. wagtail_feathers-1.0/demo/themes/quantum/static/fonts/FiraCode-Regular.woff2 +0 -0
  25. wagtail_feathers-1.0/demo/themes/quantum/static/fonts/PublicSans-Black.woff2 +0 -0
  26. wagtail_feathers-1.0/demo/themes/quantum/static/fonts/PublicSans-BlackItalic.woff2 +0 -0
  27. wagtail_feathers-1.0/demo/themes/quantum/static/fonts/PublicSans-Bold.woff2 +0 -0
  28. wagtail_feathers-1.0/demo/themes/quantum/static/fonts/PublicSans-BoldItalic.woff2 +0 -0
  29. wagtail_feathers-1.0/demo/themes/quantum/static/fonts/PublicSans-Italic.woff2 +0 -0
  30. wagtail_feathers-1.0/demo/themes/quantum/static/fonts/PublicSans-Light.woff2 +0 -0
  31. wagtail_feathers-1.0/demo/themes/quantum/static/fonts/PublicSans-Regular.woff2 +0 -0
  32. wagtail_feathers-1.0/demo/themes/quantum/static/fonts/PublicSans-SemiBold.woff2 +0 -0
  33. wagtail_feathers-1.0/demo/themes/quantum/static/fonts/PublicSans-SemiBoldItalic.woff2 +0 -0
  34. wagtail_feathers-1.0/demo/themes/quantum/static/fonts/PublicSans-Thin.woff2 +0 -0
  35. wagtail_feathers-1.0/demo/themes/quantum/static/images/placeholder-image.webp +0 -0
  36. wagtail_feathers-1.0/demo/themes/quantum/static/js/main.js +5 -0
  37. wagtail_feathers-1.0/demo/themes/quantum/static/js/scrollspy.js +1 -0
  38. wagtail_feathers-1.0/demo/themes/quantum/static/js/stimulus_admin_feathers.js +1 -0
  39. wagtail_feathers-1.0/demo/themes/quantum/static/js/theme.js +1 -0
  40. wagtail_feathers-1.0/demo/themes/quantum/templates/400.html +45 -0
  41. wagtail_feathers-1.0/demo/themes/quantum/templates/403.html +45 -0
  42. wagtail_feathers-1.0/demo/themes/quantum/templates/404.html +49 -0
  43. wagtail_feathers-1.0/demo/themes/quantum/templates/500.html +47 -0
  44. wagtail_feathers-1.0/demo/themes/quantum/templates/base.html +56 -0
  45. wagtail_feathers-1.0/demo/themes/quantum/templates/base_content_page.html +15 -0
  46. wagtail_feathers-1.0/demo/themes/quantum/templates/base_page.html +10 -0
  47. wagtail_feathers-1.0/demo/themes/quantum/templates/components/_article_card.html +72 -0
  48. wagtail_feathers-1.0/demo/themes/quantum/templates/components/_locale_selector.html +47 -0
  49. wagtail_feathers-1.0/demo/themes/quantum/templates/components/_main_featured_article.html +78 -0
  50. wagtail_feathers-1.0/demo/themes/quantum/templates/components/_pagination.html +66 -0
  51. wagtail_feathers-1.0/demo/themes/quantum/templates/components/_secondary_featured_articles.html +79 -0
  52. wagtail_feathers-1.0/demo/themes/quantum/templates/components/_social_media_links.html +12 -0
  53. wagtail_feathers-1.0/demo/themes/quantum/templates/components/_theme_switcher.html +23 -0
  54. wagtail_feathers-1.0/demo/themes/quantum/templates/components/footer.html +107 -0
  55. wagtail_feathers-1.0/demo/themes/quantum/templates/components/header.html +101 -0
  56. wagtail_feathers-1.0/demo/themes/quantum/templates/includes/contact_addresses.html +35 -0
  57. wagtail_feathers-1.0/demo/themes/quantum/templates/pages/_article_list_item.html +0 -0
  58. wagtail_feathers-1.0/demo/themes/quantum/templates/pages/article_index_page.html +76 -0
  59. wagtail_feathers-1.0/demo/themes/quantum/templates/pages/article_page--christmas.html +62 -0
  60. wagtail_feathers-1.0/demo/themes/quantum/templates/pages/article_page--featured.html +62 -0
  61. wagtail_feathers-1.0/demo/themes/quantum/templates/pages/article_page.html +66 -0
  62. wagtail_feathers-1.0/demo/themes/quantum/templates/pages/form_page--newsletter.html +33 -0
  63. wagtail_feathers-1.0/demo/themes/quantum/templates/pages/form_page--newsletter_landing.html +36 -0
  64. wagtail_feathers-1.0/demo/themes/quantum/templates/pages/form_page.html +45 -0
  65. wagtail_feathers-1.0/demo/themes/quantum/templates/pages/form_page_landing.html +28 -0
  66. wagtail_feathers-1.0/demo/themes/quantum/templates/pages/home_page.html +47 -0
  67. wagtail_feathers-1.0/demo/themes/quantum/templates/pages/web_page--landing.html +19 -0
  68. wagtail_feathers-1.0/demo/themes/quantum/templates/pages/web_page--portfolio.html +27 -0
  69. wagtail_feathers-1.0/demo/themes/quantum/templates/pages/web_page.html +13 -0
  70. wagtail_feathers-1.0/demo/themes/quantum/templates/pages/welcome_page.html +52 -0
  71. wagtail_feathers-1.0/demo/themes/quantum/theme.json +75 -0
  72. wagtail_feathers-1.0/demo/urls.py +22 -0
  73. wagtail_feathers-1.0/demo/wsgi.py +11 -0
  74. wagtail_feathers-1.0/frontend/src/javascript/admin.js +16 -0
  75. wagtail_feathers-1.0/frontend/src/javascript/controllers/classifier-chooser-controller.js +288 -0
  76. wagtail_feathers-1.0/frontend/src/styles/_admin_blocks.css +98 -0
  77. wagtail_feathers-1.0/frontend/src/styles/_admin_classifiers.css +484 -0
  78. wagtail_feathers-1.0/frontend/src/styles/admin.css +66 -0
  79. wagtail_feathers-1.0/package-lock.json +1763 -0
  80. wagtail_feathers-1.0/package.json +14 -0
  81. wagtail_feathers-1.0/pyproject.toml +149 -0
  82. wagtail_feathers-1.0/src/.DS_Store +0 -0
  83. wagtail_feathers-1.0/src/wagtail_feathers/__init__.py +12 -0
  84. wagtail_feathers-1.0/src/wagtail_feathers/apps.py +9 -0
  85. wagtail_feathers-1.0/src/wagtail_feathers/blocks.py +1573 -0
  86. wagtail_feathers-1.0/src/wagtail_feathers/context_processors.py +52 -0
  87. wagtail_feathers-1.0/src/wagtail_feathers/factories.py +360 -0
  88. wagtail_feathers-1.0/src/wagtail_feathers/fields.py +39 -0
  89. wagtail_feathers-1.0/src/wagtail_feathers/filters.py +10 -0
  90. wagtail_feathers-1.0/src/wagtail_feathers/fixtures/sample_taxonomy.json +462 -0
  91. wagtail_feathers-1.0/src/wagtail_feathers/forms.py +101 -0
  92. wagtail_feathers-1.0/src/wagtail_feathers/helpers.py +65 -0
  93. wagtail_feathers-1.0/src/wagtail_feathers/management/__init__.py +0 -0
  94. wagtail_feathers-1.0/src/wagtail_feathers/management/commands/__init__.py +0 -0
  95. wagtail_feathers-1.0/src/wagtail_feathers/management/commands/create_sample_taxonomy.py +222 -0
  96. wagtail_feathers-1.0/src/wagtail_feathers/management/commands/manage_categories.py +177 -0
  97. wagtail_feathers-1.0/src/wagtail_feathers/management/commands/tailwind_source.py +14 -0
  98. wagtail_feathers-1.0/src/wagtail_feathers/management/commands/themes.py +256 -0
  99. wagtail_feathers-1.0/src/wagtail_feathers/middleware.py +37 -0
  100. wagtail_feathers-1.0/src/wagtail_feathers/migrations/0001_initial.py +552 -0
  101. wagtail_feathers-1.0/src/wagtail_feathers/migrations/0002_alter_featherbasepage_body.py +20 -0
  102. wagtail_feathers-1.0/src/wagtail_feathers/migrations/0003_alter_featherbasepage_body.py +20 -0
  103. wagtail_feathers-1.0/src/wagtail_feathers/migrations/0004_alter_flatmenu_slug_alter_footernavigation_slug_and_more.py +51 -0
  104. wagtail_feathers-1.0/src/wagtail_feathers/migrations/0005_alter_featherbasepage_body.py +19 -0
  105. wagtail_feathers-1.0/src/wagtail_feathers/migrations/0006_alter_sitesettings_words_per_minute.py +31 -0
  106. wagtail_feathers-1.0/src/wagtail_feathers/migrations/0007_alter_featherbasepage_body.py +19 -0
  107. wagtail_feathers-1.0/src/wagtail_feathers/migrations/0008_alter_featherbasepage_body.py +19 -0
  108. wagtail_feathers-1.0/src/wagtail_feathers/migrations/__init__.py +0 -0
  109. wagtail_feathers-1.0/src/wagtail_feathers/mixins.py +834 -0
  110. wagtail_feathers-1.0/src/wagtail_feathers/models/__init__.py +70 -0
  111. wagtail_feathers-1.0/src/wagtail_feathers/models/author.py +107 -0
  112. wagtail_feathers-1.0/src/wagtail_feathers/models/base.py +444 -0
  113. wagtail_feathers-1.0/src/wagtail_feathers/models/errors.py +82 -0
  114. wagtail_feathers-1.0/src/wagtail_feathers/models/faq.py +116 -0
  115. wagtail_feathers-1.0/src/wagtail_feathers/models/geographic.py +80 -0
  116. wagtail_feathers-1.0/src/wagtail_feathers/models/inline.py +73 -0
  117. wagtail_feathers-1.0/src/wagtail_feathers/models/navigation.py +374 -0
  118. wagtail_feathers-1.0/src/wagtail_feathers/models/person.py +110 -0
  119. wagtail_feathers-1.0/src/wagtail_feathers/models/settings.py +157 -0
  120. wagtail_feathers-1.0/src/wagtail_feathers/models/social.py +90 -0
  121. wagtail_feathers-1.0/src/wagtail_feathers/models/specialized_pages.py +282 -0
  122. wagtail_feathers-1.0/src/wagtail_feathers/models/taxonomy.py +777 -0
  123. wagtail_feathers-1.0/src/wagtail_feathers/models/utils.py +9 -0
  124. wagtail_feathers-1.0/src/wagtail_feathers/panels.py +25 -0
  125. wagtail_feathers-1.0/src/wagtail_feathers/static/.DS_Store +0 -0
  126. wagtail_feathers-1.0/src/wagtail_feathers/static/css/wagtail_feathers_admin.css +568 -0
  127. wagtail_feathers-1.0/src/wagtail_feathers/static/images/placeholder-image.webp +0 -0
  128. wagtail_feathers-1.0/src/wagtail_feathers/static/js/wagtail_feathers_admin.js +2679 -0
  129. wagtail_feathers-1.0/src/wagtail_feathers/struct_values.py +67 -0
  130. wagtail_feathers-1.0/src/wagtail_feathers/styles.py +10 -0
  131. wagtail_feathers-1.0/src/wagtail_feathers/templates/wagtail_feathers/admin/category_add_child.html +90 -0
  132. wagtail_feathers-1.0/src/wagtail_feathers/templates/wagtail_feathers/admin/category_move.html +90 -0
  133. wagtail_feathers-1.0/src/wagtail_feathers/templates/wagtail_feathers/admin/generic/chooser/classifier_chooser.html +92 -0
  134. wagtail_feathers-1.0/src/wagtail_feathers/templates/wagtail_feathers/blocks/_nested_navigation_link_block.html +21 -0
  135. wagtail_feathers-1.0/src/wagtail_feathers/templates/wagtail_feathers/blocks/card_block.html +44 -0
  136. wagtail_feathers-1.0/src/wagtail_feathers/templates/wagtail_feathers/blocks/card_section_block.html +21 -0
  137. wagtail_feathers-1.0/src/wagtail_feathers/templates/wagtail_feathers/blocks/cards_container_block.html +24 -0
  138. wagtail_feathers-1.0/src/wagtail_feathers/templates/wagtail_feathers/blocks/column_block.html +26 -0
  139. wagtail_feathers-1.0/src/wagtail_feathers/templates/wagtail_feathers/blocks/cta_block.html +140 -0
  140. wagtail_feathers-1.0/src/wagtail_feathers/templates/wagtail_feathers/blocks/embed_block.html +17 -0
  141. wagtail_feathers-1.0/src/wagtail_feathers/templates/wagtail_feathers/blocks/faq_section_embed_block.html +38 -0
  142. wagtail_feathers-1.0/src/wagtail_feathers/templates/wagtail_feathers/blocks/grid_block.html +13 -0
  143. wagtail_feathers-1.0/src/wagtail_feathers/templates/wagtail_feathers/blocks/header_image_block.html +28 -0
  144. wagtail_feathers-1.0/src/wagtail_feathers/templates/wagtail_feathers/blocks/heading_block.html +21 -0
  145. wagtail_feathers-1.0/src/wagtail_feathers/templates/wagtail_feathers/blocks/hero_block.html +116 -0
  146. wagtail_feathers-1.0/src/wagtail_feathers/templates/wagtail_feathers/blocks/html_grid_block.html +18 -0
  147. wagtail_feathers-1.0/src/wagtail_feathers/templates/wagtail_feathers/blocks/image_block.html +26 -0
  148. wagtail_feathers-1.0/src/wagtail_feathers/templates/wagtail_feathers/blocks/image_collection_gallery_block.html +117 -0
  149. wagtail_feathers-1.0/src/wagtail_feathers/templates/wagtail_feathers/blocks/image_grid_block.html +124 -0
  150. wagtail_feathers-1.0/src/wagtail_feathers/templates/wagtail_feathers/blocks/page_heading_block.html +6 -0
  151. wagtail_feathers-1.0/src/wagtail_feathers/templates/wagtail_feathers/blocks/paragraph_block.html +4 -0
  152. wagtail_feathers-1.0/src/wagtail_feathers/templates/wagtail_feathers/blocks/quote_block.html +12 -0
  153. wagtail_feathers-1.0/src/wagtail_feathers/templates/wagtail_feathers/blocks/submenu_divider_block.html +7 -0
  154. wagtail_feathers-1.0/src/wagtail_feathers/templates/wagtail_feathers/icons/outline/heroicon-academic-cap-outline.svg +3 -0
  155. wagtail_feathers-1.0/src/wagtail_feathers/templates/wagtail_feathers/icons/outline/heroicon-adjustments-horizontal-outline.svg +3 -0
  156. wagtail_feathers-1.0/src/wagtail_feathers/templates/wagtail_feathers/icons/outline/heroicon-adjustments-vertical-outline.svg +3 -0
  157. wagtail_feathers-1.0/src/wagtail_feathers/templates/wagtail_feathers/icons/outline/heroicon-archive-box-arrow-down-outline.svg +3 -0
  158. wagtail_feathers-1.0/src/wagtail_feathers/templates/wagtail_feathers/icons/outline/heroicon-archive-box-outline.svg +3 -0
  159. wagtail_feathers-1.0/src/wagtail_feathers/templates/wagtail_feathers/icons/outline/heroicon-archive-box-x-mark-outline.svg +3 -0
  160. wagtail_feathers-1.0/src/wagtail_feathers/templates/wagtail_feathers/icons/outline/heroicon-arrow-down-circle-outline.svg +3 -0
  161. wagtail_feathers-1.0/src/wagtail_feathers/templates/wagtail_feathers/icons/outline/heroicon-arrow-down-left-outline.svg +3 -0
  162. wagtail_feathers-1.0/src/wagtail_feathers/templates/wagtail_feathers/icons/outline/heroicon-arrow-down-on-square-outline.svg +3 -0
  163. wagtail_feathers-1.0/src/wagtail_feathers/templates/wagtail_feathers/icons/outline/heroicon-arrow-down-on-square-stack-outline.svg +3 -0
  164. wagtail_feathers-1.0/src/wagtail_feathers/templates/wagtail_feathers/icons/outline/heroicon-arrow-down-outline.svg +3 -0
  165. wagtail_feathers-1.0/src/wagtail_feathers/templates/wagtail_feathers/icons/outline/heroicon-arrow-down-right-outline.svg +3 -0
  166. wagtail_feathers-1.0/src/wagtail_feathers/templates/wagtail_feathers/icons/outline/heroicon-arrow-down-tray-outline.svg +3 -0
  167. wagtail_feathers-1.0/src/wagtail_feathers/templates/wagtail_feathers/icons/outline/heroicon-arrow-left-circle-outline.svg +3 -0
  168. wagtail_feathers-1.0/src/wagtail_feathers/templates/wagtail_feathers/icons/outline/heroicon-arrow-left-end-on-rectangle-outline.svg +3 -0
  169. wagtail_feathers-1.0/src/wagtail_feathers/templates/wagtail_feathers/icons/outline/heroicon-arrow-left-on-rectangle-outline.svg +3 -0
  170. wagtail_feathers-1.0/src/wagtail_feathers/templates/wagtail_feathers/icons/outline/heroicon-arrow-left-outline.svg +3 -0
  171. wagtail_feathers-1.0/src/wagtail_feathers/templates/wagtail_feathers/icons/outline/heroicon-arrow-left-start-on-rectangle-outline.svg +3 -0
  172. wagtail_feathers-1.0/src/wagtail_feathers/templates/wagtail_feathers/icons/outline/heroicon-arrow-long-down-outline.svg +3 -0
  173. wagtail_feathers-1.0/src/wagtail_feathers/templates/wagtail_feathers/icons/outline/heroicon-arrow-long-left-outline.svg +3 -0
  174. wagtail_feathers-1.0/src/wagtail_feathers/templates/wagtail_feathers/icons/outline/heroicon-arrow-long-right-outline.svg +3 -0
  175. wagtail_feathers-1.0/src/wagtail_feathers/templates/wagtail_feathers/icons/outline/heroicon-arrow-long-up-outline.svg +3 -0
  176. wagtail_feathers-1.0/src/wagtail_feathers/templates/wagtail_feathers/icons/outline/heroicon-arrow-path-outline.svg +3 -0
  177. wagtail_feathers-1.0/src/wagtail_feathers/templates/wagtail_feathers/icons/outline/heroicon-arrow-path-rounded-square-outline.svg +3 -0
  178. wagtail_feathers-1.0/src/wagtail_feathers/templates/wagtail_feathers/icons/outline/heroicon-arrow-right-circle-outline.svg +3 -0
  179. wagtail_feathers-1.0/src/wagtail_feathers/templates/wagtail_feathers/icons/outline/heroicon-arrow-right-end-on-rectangle-outline.svg +3 -0
  180. wagtail_feathers-1.0/src/wagtail_feathers/templates/wagtail_feathers/icons/outline/heroicon-arrow-right-on-rectangle-outline.svg +3 -0
  181. wagtail_feathers-1.0/src/wagtail_feathers/templates/wagtail_feathers/icons/outline/heroicon-arrow-right-outline.svg +3 -0
  182. wagtail_feathers-1.0/src/wagtail_feathers/templates/wagtail_feathers/icons/outline/heroicon-arrow-right-start-on-rectangle-outline.svg +3 -0
  183. wagtail_feathers-1.0/src/wagtail_feathers/templates/wagtail_feathers/icons/outline/heroicon-arrow-small-down-outline.svg +3 -0
  184. wagtail_feathers-1.0/src/wagtail_feathers/templates/wagtail_feathers/icons/outline/heroicon-arrow-small-left-outline.svg +3 -0
  185. wagtail_feathers-1.0/src/wagtail_feathers/templates/wagtail_feathers/icons/outline/heroicon-arrow-small-right-outline.svg +3 -0
  186. wagtail_feathers-1.0/src/wagtail_feathers/templates/wagtail_feathers/icons/outline/heroicon-arrow-small-up-outline.svg +3 -0
  187. wagtail_feathers-1.0/src/wagtail_feathers/templates/wagtail_feathers/icons/outline/heroicon-arrow-top-right-on-square-outline.svg +3 -0
  188. wagtail_feathers-1.0/src/wagtail_feathers/templates/wagtail_feathers/icons/outline/heroicon-arrow-trending-down-outline.svg +3 -0
  189. wagtail_feathers-1.0/src/wagtail_feathers/templates/wagtail_feathers/icons/outline/heroicon-arrow-trending-up-outline.svg +3 -0
  190. wagtail_feathers-1.0/src/wagtail_feathers/templates/wagtail_feathers/icons/outline/heroicon-arrow-turn-down-left-outline.svg +3 -0
  191. wagtail_feathers-1.0/src/wagtail_feathers/templates/wagtail_feathers/icons/outline/heroicon-arrow-turn-down-right-outline.svg +3 -0
  192. wagtail_feathers-1.0/src/wagtail_feathers/templates/wagtail_feathers/icons/outline/heroicon-arrow-turn-left-down-outline.svg +3 -0
  193. wagtail_feathers-1.0/src/wagtail_feathers/templates/wagtail_feathers/icons/outline/heroicon-arrow-turn-left-up-outline.svg +3 -0
  194. wagtail_feathers-1.0/src/wagtail_feathers/templates/wagtail_feathers/icons/outline/heroicon-arrow-turn-right-down-outline.svg +3 -0
  195. wagtail_feathers-1.0/src/wagtail_feathers/templates/wagtail_feathers/icons/outline/heroicon-arrow-turn-right-up-outline.svg +3 -0
  196. wagtail_feathers-1.0/src/wagtail_feathers/templates/wagtail_feathers/icons/outline/heroicon-arrow-turn-up-left-outline.svg +3 -0
  197. wagtail_feathers-1.0/src/wagtail_feathers/templates/wagtail_feathers/icons/outline/heroicon-arrow-turn-up-right-outline.svg +3 -0
  198. wagtail_feathers-1.0/src/wagtail_feathers/templates/wagtail_feathers/icons/outline/heroicon-arrow-up-circle-outline.svg +3 -0
  199. wagtail_feathers-1.0/src/wagtail_feathers/templates/wagtail_feathers/icons/outline/heroicon-arrow-up-left-outline.svg +3 -0
  200. wagtail_feathers-1.0/src/wagtail_feathers/templates/wagtail_feathers/icons/outline/heroicon-arrow-up-on-square-outline.svg +3 -0
  201. wagtail_feathers-1.0/src/wagtail_feathers/templates/wagtail_feathers/icons/outline/heroicon-arrow-up-on-square-stack-outline.svg +3 -0
  202. wagtail_feathers-1.0/src/wagtail_feathers/templates/wagtail_feathers/icons/outline/heroicon-arrow-up-outline.svg +3 -0
  203. wagtail_feathers-1.0/src/wagtail_feathers/templates/wagtail_feathers/icons/outline/heroicon-arrow-up-right-outline.svg +3 -0
  204. wagtail_feathers-1.0/src/wagtail_feathers/templates/wagtail_feathers/icons/outline/heroicon-arrow-up-tray-outline.svg +3 -0
  205. wagtail_feathers-1.0/src/wagtail_feathers/templates/wagtail_feathers/icons/outline/heroicon-arrow-uturn-down-outline.svg +3 -0
  206. wagtail_feathers-1.0/src/wagtail_feathers/templates/wagtail_feathers/icons/outline/heroicon-arrow-uturn-left-outline.svg +3 -0
  207. wagtail_feathers-1.0/src/wagtail_feathers/templates/wagtail_feathers/icons/outline/heroicon-arrow-uturn-right-outline.svg +3 -0
  208. wagtail_feathers-1.0/src/wagtail_feathers/templates/wagtail_feathers/icons/outline/heroicon-arrow-uturn-up-outline.svg +3 -0
  209. wagtail_feathers-1.0/src/wagtail_feathers/templates/wagtail_feathers/icons/outline/heroicon-arrows-pointing-in-outline.svg +3 -0
  210. wagtail_feathers-1.0/src/wagtail_feathers/templates/wagtail_feathers/icons/outline/heroicon-arrows-pointing-out-outline.svg +3 -0
  211. wagtail_feathers-1.0/src/wagtail_feathers/templates/wagtail_feathers/icons/outline/heroicon-arrows-right-left-outline.svg +3 -0
  212. wagtail_feathers-1.0/src/wagtail_feathers/templates/wagtail_feathers/icons/outline/heroicon-arrows-up-down-outline.svg +3 -0
  213. wagtail_feathers-1.0/src/wagtail_feathers/templates/wagtail_feathers/icons/outline/heroicon-at-symbol-outline.svg +3 -0
  214. wagtail_feathers-1.0/src/wagtail_feathers/templates/wagtail_feathers/icons/outline/heroicon-backspace-outline.svg +3 -0
  215. wagtail_feathers-1.0/src/wagtail_feathers/templates/wagtail_feathers/icons/outline/heroicon-backward-outline.svg +3 -0
  216. wagtail_feathers-1.0/src/wagtail_feathers/templates/wagtail_feathers/icons/outline/heroicon-banknotes-outline.svg +3 -0
  217. wagtail_feathers-1.0/src/wagtail_feathers/templates/wagtail_feathers/icons/outline/heroicon-bars-2-outline.svg +3 -0
  218. wagtail_feathers-1.0/src/wagtail_feathers/templates/wagtail_feathers/icons/outline/heroicon-bars-3-bottom-left-outline.svg +3 -0
  219. wagtail_feathers-1.0/src/wagtail_feathers/templates/wagtail_feathers/icons/outline/heroicon-bars-3-bottom-right-outline.svg +3 -0
  220. wagtail_feathers-1.0/src/wagtail_feathers/templates/wagtail_feathers/icons/outline/heroicon-bars-3-center-left-outline.svg +3 -0
  221. wagtail_feathers-1.0/src/wagtail_feathers/templates/wagtail_feathers/icons/outline/heroicon-bars-3-outline.svg +3 -0
  222. wagtail_feathers-1.0/src/wagtail_feathers/templates/wagtail_feathers/icons/outline/heroicon-bars-4-outline.svg +3 -0
  223. wagtail_feathers-1.0/src/wagtail_feathers/templates/wagtail_feathers/icons/outline/heroicon-bars-arrow-down-outline.svg +3 -0
  224. wagtail_feathers-1.0/src/wagtail_feathers/templates/wagtail_feathers/icons/outline/heroicon-bars-arrow-up-outline.svg +3 -0
  225. wagtail_feathers-1.0/src/wagtail_feathers/templates/wagtail_feathers/icons/outline/heroicon-battery-0-outline.svg +3 -0
  226. wagtail_feathers-1.0/src/wagtail_feathers/templates/wagtail_feathers/icons/outline/heroicon-battery-100-outline.svg +3 -0
  227. wagtail_feathers-1.0/src/wagtail_feathers/templates/wagtail_feathers/icons/outline/heroicon-battery-50-outline.svg +3 -0
  228. wagtail_feathers-1.0/src/wagtail_feathers/templates/wagtail_feathers/icons/outline/heroicon-beaker-outline.svg +3 -0
  229. wagtail_feathers-1.0/src/wagtail_feathers/templates/wagtail_feathers/icons/outline/heroicon-bell-alert-outline.svg +3 -0
  230. wagtail_feathers-1.0/src/wagtail_feathers/templates/wagtail_feathers/icons/outline/heroicon-bell-outline.svg +3 -0
  231. wagtail_feathers-1.0/src/wagtail_feathers/templates/wagtail_feathers/icons/outline/heroicon-bell-slash-outline.svg +3 -0
  232. wagtail_feathers-1.0/src/wagtail_feathers/templates/wagtail_feathers/icons/outline/heroicon-bell-snooze-outline.svg +3 -0
  233. wagtail_feathers-1.0/src/wagtail_feathers/templates/wagtail_feathers/icons/outline/heroicon-bold-outline.svg +3 -0
  234. wagtail_feathers-1.0/src/wagtail_feathers/templates/wagtail_feathers/icons/outline/heroicon-bolt-outline.svg +3 -0
  235. wagtail_feathers-1.0/src/wagtail_feathers/templates/wagtail_feathers/icons/outline/heroicon-bolt-slash-outline.svg +3 -0
  236. wagtail_feathers-1.0/src/wagtail_feathers/templates/wagtail_feathers/icons/outline/heroicon-book-open-outline.svg +3 -0
  237. wagtail_feathers-1.0/src/wagtail_feathers/templates/wagtail_feathers/icons/outline/heroicon-bookmark-outline.svg +3 -0
  238. wagtail_feathers-1.0/src/wagtail_feathers/templates/wagtail_feathers/icons/outline/heroicon-bookmark-slash-outline.svg +3 -0
  239. wagtail_feathers-1.0/src/wagtail_feathers/templates/wagtail_feathers/icons/outline/heroicon-bookmark-square-outline.svg +3 -0
  240. wagtail_feathers-1.0/src/wagtail_feathers/templates/wagtail_feathers/icons/outline/heroicon-briefcase-outline.svg +3 -0
  241. wagtail_feathers-1.0/src/wagtail_feathers/templates/wagtail_feathers/icons/outline/heroicon-bug-ant-outline.svg +3 -0
  242. wagtail_feathers-1.0/src/wagtail_feathers/templates/wagtail_feathers/icons/outline/heroicon-building-library-outline.svg +3 -0
  243. wagtail_feathers-1.0/src/wagtail_feathers/templates/wagtail_feathers/icons/outline/heroicon-building-office-2-outline.svg +3 -0
  244. wagtail_feathers-1.0/src/wagtail_feathers/templates/wagtail_feathers/icons/outline/heroicon-building-office-outline.svg +3 -0
  245. wagtail_feathers-1.0/src/wagtail_feathers/templates/wagtail_feathers/icons/outline/heroicon-building-storefront-outline.svg +3 -0
  246. wagtail_feathers-1.0/src/wagtail_feathers/templates/wagtail_feathers/icons/outline/heroicon-cake-outline.svg +3 -0
  247. wagtail_feathers-1.0/src/wagtail_feathers/templates/wagtail_feathers/icons/outline/heroicon-calculator-outline.svg +3 -0
  248. wagtail_feathers-1.0/src/wagtail_feathers/templates/wagtail_feathers/icons/outline/heroicon-calendar-date-range-outline.svg +3 -0
  249. wagtail_feathers-1.0/src/wagtail_feathers/templates/wagtail_feathers/icons/outline/heroicon-calendar-days-outline.svg +3 -0
  250. wagtail_feathers-1.0/src/wagtail_feathers/templates/wagtail_feathers/icons/outline/heroicon-calendar-outline.svg +3 -0
  251. wagtail_feathers-1.0/src/wagtail_feathers/templates/wagtail_feathers/icons/outline/heroicon-camera-outline.svg +4 -0
  252. wagtail_feathers-1.0/src/wagtail_feathers/templates/wagtail_feathers/icons/outline/heroicon-chart-bar-outline.svg +3 -0
  253. wagtail_feathers-1.0/src/wagtail_feathers/templates/wagtail_feathers/icons/outline/heroicon-chart-bar-square-outline.svg +3 -0
  254. wagtail_feathers-1.0/src/wagtail_feathers/templates/wagtail_feathers/icons/outline/heroicon-chart-pie-outline.svg +4 -0
  255. wagtail_feathers-1.0/src/wagtail_feathers/templates/wagtail_feathers/icons/outline/heroicon-chat-bubble-bottom-center-outline.svg +3 -0
  256. wagtail_feathers-1.0/src/wagtail_feathers/templates/wagtail_feathers/icons/outline/heroicon-chat-bubble-bottom-center-text-outline.svg +3 -0
  257. wagtail_feathers-1.0/src/wagtail_feathers/templates/wagtail_feathers/icons/outline/heroicon-chat-bubble-left-ellipsis-outline.svg +3 -0
  258. wagtail_feathers-1.0/src/wagtail_feathers/templates/wagtail_feathers/icons/outline/heroicon-chat-bubble-left-outline.svg +3 -0
  259. wagtail_feathers-1.0/src/wagtail_feathers/templates/wagtail_feathers/icons/outline/heroicon-chat-bubble-left-right-outline.svg +3 -0
  260. wagtail_feathers-1.0/src/wagtail_feathers/templates/wagtail_feathers/icons/outline/heroicon-chat-bubble-oval-left-ellipsis-outline.svg +3 -0
  261. wagtail_feathers-1.0/src/wagtail_feathers/templates/wagtail_feathers/icons/outline/heroicon-chat-bubble-oval-left-outline.svg +3 -0
  262. wagtail_feathers-1.0/src/wagtail_feathers/templates/wagtail_feathers/icons/outline/heroicon-check-badge-outline.svg +3 -0
  263. wagtail_feathers-1.0/src/wagtail_feathers/templates/wagtail_feathers/icons/outline/heroicon-check-circle-outline.svg +3 -0
  264. wagtail_feathers-1.0/src/wagtail_feathers/templates/wagtail_feathers/icons/outline/heroicon-check-outline.svg +3 -0
  265. wagtail_feathers-1.0/src/wagtail_feathers/templates/wagtail_feathers/icons/outline/heroicon-chevron-double-down-outline.svg +3 -0
  266. wagtail_feathers-1.0/src/wagtail_feathers/templates/wagtail_feathers/icons/outline/heroicon-chevron-double-left-outline.svg +3 -0
  267. wagtail_feathers-1.0/src/wagtail_feathers/templates/wagtail_feathers/icons/outline/heroicon-chevron-double-right-outline.svg +3 -0
  268. wagtail_feathers-1.0/src/wagtail_feathers/templates/wagtail_feathers/icons/outline/heroicon-chevron-double-up-outline.svg +4 -0
  269. wagtail_feathers-1.0/src/wagtail_feathers/templates/wagtail_feathers/icons/outline/heroicon-chevron-down-outline.svg +3 -0
  270. wagtail_feathers-1.0/src/wagtail_feathers/templates/wagtail_feathers/icons/outline/heroicon-chevron-left-outline.svg +3 -0
  271. wagtail_feathers-1.0/src/wagtail_feathers/templates/wagtail_feathers/icons/outline/heroicon-chevron-right-outline.svg +3 -0
  272. wagtail_feathers-1.0/src/wagtail_feathers/templates/wagtail_feathers/icons/outline/heroicon-chevron-up-down-outline.svg +3 -0
  273. wagtail_feathers-1.0/src/wagtail_feathers/templates/wagtail_feathers/icons/outline/heroicon-chevron-up-outline.svg +3 -0
  274. wagtail_feathers-1.0/src/wagtail_feathers/templates/wagtail_feathers/icons/outline/heroicon-circle-stack-outline.svg +3 -0
  275. wagtail_feathers-1.0/src/wagtail_feathers/templates/wagtail_feathers/icons/outline/heroicon-clipboard-document-check-outline.svg +3 -0
  276. wagtail_feathers-1.0/src/wagtail_feathers/templates/wagtail_feathers/icons/outline/heroicon-clipboard-document-list-outline.svg +3 -0
  277. wagtail_feathers-1.0/src/wagtail_feathers/templates/wagtail_feathers/icons/outline/heroicon-clipboard-document-outline.svg +3 -0
  278. wagtail_feathers-1.0/src/wagtail_feathers/templates/wagtail_feathers/icons/outline/heroicon-clipboard-outline.svg +3 -0
  279. wagtail_feathers-1.0/src/wagtail_feathers/templates/wagtail_feathers/icons/outline/heroicon-clock-outline.svg +3 -0
  280. wagtail_feathers-1.0/src/wagtail_feathers/templates/wagtail_feathers/icons/outline/heroicon-cloud-arrow-down-outline.svg +3 -0
  281. wagtail_feathers-1.0/src/wagtail_feathers/templates/wagtail_feathers/icons/outline/heroicon-cloud-arrow-up-outline.svg +3 -0
  282. wagtail_feathers-1.0/src/wagtail_feathers/templates/wagtail_feathers/icons/outline/heroicon-cloud-outline.svg +3 -0
  283. wagtail_feathers-1.0/src/wagtail_feathers/templates/wagtail_feathers/icons/outline/heroicon-code-bracket-outline.svg +3 -0
  284. wagtail_feathers-1.0/src/wagtail_feathers/templates/wagtail_feathers/icons/outline/heroicon-code-bracket-square-outline.svg +3 -0
  285. wagtail_feathers-1.0/src/wagtail_feathers/templates/wagtail_feathers/icons/outline/heroicon-cog-6-tooth-outline.svg +4 -0
  286. wagtail_feathers-1.0/src/wagtail_feathers/templates/wagtail_feathers/icons/outline/heroicon-cog-8-tooth-outline.svg +4 -0
  287. wagtail_feathers-1.0/src/wagtail_feathers/templates/wagtail_feathers/icons/outline/heroicon-cog-outline.svg +3 -0
  288. wagtail_feathers-1.0/src/wagtail_feathers/templates/wagtail_feathers/icons/outline/heroicon-command-line-outline.svg +3 -0
  289. wagtail_feathers-1.0/src/wagtail_feathers/templates/wagtail_feathers/icons/outline/heroicon-computer-desktop-outline.svg +3 -0
  290. wagtail_feathers-1.0/src/wagtail_feathers/templates/wagtail_feathers/icons/outline/heroicon-cpu-chip-outline.svg +3 -0
  291. wagtail_feathers-1.0/src/wagtail_feathers/templates/wagtail_feathers/icons/outline/heroicon-credit-card-outline.svg +3 -0
  292. wagtail_feathers-1.0/src/wagtail_feathers/templates/wagtail_feathers/icons/outline/heroicon-cube-outline.svg +3 -0
  293. wagtail_feathers-1.0/src/wagtail_feathers/templates/wagtail_feathers/icons/outline/heroicon-cube-transparent-outline.svg +3 -0
  294. wagtail_feathers-1.0/src/wagtail_feathers/templates/wagtail_feathers/icons/outline/heroicon-currency-bangladeshi-outline.svg +3 -0
  295. wagtail_feathers-1.0/src/wagtail_feathers/templates/wagtail_feathers/icons/outline/heroicon-currency-dollar-outline.svg +3 -0
  296. wagtail_feathers-1.0/src/wagtail_feathers/templates/wagtail_feathers/icons/outline/heroicon-currency-euro-outline.svg +3 -0
  297. wagtail_feathers-1.0/src/wagtail_feathers/templates/wagtail_feathers/icons/outline/heroicon-currency-pound-outline.svg +3 -0
  298. wagtail_feathers-1.0/src/wagtail_feathers/templates/wagtail_feathers/icons/outline/heroicon-currency-rupee-outline.svg +3 -0
  299. wagtail_feathers-1.0/src/wagtail_feathers/templates/wagtail_feathers/icons/outline/heroicon-currency-yen-outline.svg +3 -0
  300. wagtail_feathers-1.0/src/wagtail_feathers/templates/wagtail_feathers/icons/outline/heroicon-cursor-arrow-rays-outline.svg +3 -0
  301. wagtail_feathers-1.0/src/wagtail_feathers/templates/wagtail_feathers/icons/outline/heroicon-cursor-arrow-ripple-outline.svg +3 -0
  302. wagtail_feathers-1.0/src/wagtail_feathers/templates/wagtail_feathers/icons/outline/heroicon-device-phone-mobile-outline.svg +3 -0
  303. wagtail_feathers-1.0/src/wagtail_feathers/templates/wagtail_feathers/icons/outline/heroicon-device-tablet-outline.svg +3 -0
  304. wagtail_feathers-1.0/src/wagtail_feathers/templates/wagtail_feathers/icons/outline/heroicon-divide-outline.svg +3 -0
  305. wagtail_feathers-1.0/src/wagtail_feathers/templates/wagtail_feathers/icons/outline/heroicon-document-arrow-down-outline.svg +3 -0
  306. wagtail_feathers-1.0/src/wagtail_feathers/templates/wagtail_feathers/icons/outline/heroicon-document-arrow-up-outline.svg +3 -0
  307. wagtail_feathers-1.0/src/wagtail_feathers/templates/wagtail_feathers/icons/outline/heroicon-document-chart-bar-outline.svg +3 -0
  308. wagtail_feathers-1.0/src/wagtail_feathers/templates/wagtail_feathers/icons/outline/heroicon-document-check-outline.svg +3 -0
  309. wagtail_feathers-1.0/src/wagtail_feathers/templates/wagtail_feathers/icons/outline/heroicon-document-currency-bangladeshi-outline.svg +3 -0
  310. wagtail_feathers-1.0/src/wagtail_feathers/templates/wagtail_feathers/icons/outline/heroicon-document-currency-dollar-outline.svg +3 -0
  311. wagtail_feathers-1.0/src/wagtail_feathers/templates/wagtail_feathers/icons/outline/heroicon-document-currency-euro-outline.svg +3 -0
  312. wagtail_feathers-1.0/src/wagtail_feathers/templates/wagtail_feathers/icons/outline/heroicon-document-currency-pound-outline.svg +3 -0
  313. wagtail_feathers-1.0/src/wagtail_feathers/templates/wagtail_feathers/icons/outline/heroicon-document-currency-rupee-outline.svg +3 -0
  314. wagtail_feathers-1.0/src/wagtail_feathers/templates/wagtail_feathers/icons/outline/heroicon-document-currency-yen-outline.svg +3 -0
  315. wagtail_feathers-1.0/src/wagtail_feathers/templates/wagtail_feathers/icons/outline/heroicon-document-duplicate-outline.svg +3 -0
  316. wagtail_feathers-1.0/src/wagtail_feathers/templates/wagtail_feathers/icons/outline/heroicon-document-magnifying-glass-outline.svg +3 -0
  317. wagtail_feathers-1.0/src/wagtail_feathers/templates/wagtail_feathers/icons/outline/heroicon-document-minus-outline.svg +3 -0
  318. wagtail_feathers-1.0/src/wagtail_feathers/templates/wagtail_feathers/icons/outline/heroicon-document-outline.svg +3 -0
  319. wagtail_feathers-1.0/src/wagtail_feathers/templates/wagtail_feathers/icons/outline/heroicon-document-plus-outline.svg +3 -0
  320. wagtail_feathers-1.0/src/wagtail_feathers/templates/wagtail_feathers/icons/outline/heroicon-document-text-outline.svg +3 -0
  321. wagtail_feathers-1.0/src/wagtail_feathers/templates/wagtail_feathers/icons/outline/heroicon-ellipsis-horizontal-circle-outline.svg +3 -0
  322. wagtail_feathers-1.0/src/wagtail_feathers/templates/wagtail_feathers/icons/outline/heroicon-ellipsis-horizontal-outline.svg +3 -0
  323. wagtail_feathers-1.0/src/wagtail_feathers/templates/wagtail_feathers/icons/outline/heroicon-ellipsis-vertical-outline.svg +3 -0
  324. wagtail_feathers-1.0/src/wagtail_feathers/templates/wagtail_feathers/icons/outline/heroicon-envelope-open-outline.svg +3 -0
  325. wagtail_feathers-1.0/src/wagtail_feathers/templates/wagtail_feathers/icons/outline/heroicon-envelope-outline.svg +3 -0
  326. wagtail_feathers-1.0/src/wagtail_feathers/templates/wagtail_feathers/icons/outline/heroicon-equals-outline.svg +3 -0
  327. wagtail_feathers-1.0/src/wagtail_feathers/templates/wagtail_feathers/icons/outline/heroicon-exclamation-circle-outline.svg +3 -0
  328. wagtail_feathers-1.0/src/wagtail_feathers/templates/wagtail_feathers/icons/outline/heroicon-exclamation-triangle-outline.svg +3 -0
  329. wagtail_feathers-1.0/src/wagtail_feathers/templates/wagtail_feathers/icons/outline/heroicon-eye-dropper-outline.svg +3 -0
  330. wagtail_feathers-1.0/src/wagtail_feathers/templates/wagtail_feathers/icons/outline/heroicon-eye-outline.svg +4 -0
  331. wagtail_feathers-1.0/src/wagtail_feathers/templates/wagtail_feathers/icons/outline/heroicon-eye-slash-outline.svg +3 -0
  332. wagtail_feathers-1.0/src/wagtail_feathers/templates/wagtail_feathers/icons/outline/heroicon-face-frown-outline.svg +3 -0
  333. wagtail_feathers-1.0/src/wagtail_feathers/templates/wagtail_feathers/icons/outline/heroicon-face-smile-outline.svg +3 -0
  334. wagtail_feathers-1.0/src/wagtail_feathers/templates/wagtail_feathers/icons/outline/heroicon-film-outline.svg +3 -0
  335. wagtail_feathers-1.0/src/wagtail_feathers/templates/wagtail_feathers/icons/outline/heroicon-finger-print-outline.svg +3 -0
  336. wagtail_feathers-1.0/src/wagtail_feathers/templates/wagtail_feathers/icons/outline/heroicon-fire-outline.svg +4 -0
  337. wagtail_feathers-1.0/src/wagtail_feathers/templates/wagtail_feathers/icons/outline/heroicon-flag-outline.svg +3 -0
  338. wagtail_feathers-1.0/src/wagtail_feathers/templates/wagtail_feathers/icons/outline/heroicon-folder-arrow-down-outline.svg +3 -0
  339. wagtail_feathers-1.0/src/wagtail_feathers/templates/wagtail_feathers/icons/outline/heroicon-folder-minus-outline.svg +3 -0
  340. wagtail_feathers-1.0/src/wagtail_feathers/templates/wagtail_feathers/icons/outline/heroicon-folder-open-outline.svg +3 -0
  341. wagtail_feathers-1.0/src/wagtail_feathers/templates/wagtail_feathers/icons/outline/heroicon-folder-outline.svg +3 -0
  342. wagtail_feathers-1.0/src/wagtail_feathers/templates/wagtail_feathers/icons/outline/heroicon-folder-plus-outline.svg +3 -0
  343. wagtail_feathers-1.0/src/wagtail_feathers/templates/wagtail_feathers/icons/outline/heroicon-forward-outline.svg +3 -0
  344. wagtail_feathers-1.0/src/wagtail_feathers/templates/wagtail_feathers/icons/outline/heroicon-funnel-outline.svg +3 -0
  345. wagtail_feathers-1.0/src/wagtail_feathers/templates/wagtail_feathers/icons/outline/heroicon-gif-outline.svg +3 -0
  346. wagtail_feathers-1.0/src/wagtail_feathers/templates/wagtail_feathers/icons/outline/heroicon-gift-outline.svg +3 -0
  347. wagtail_feathers-1.0/src/wagtail_feathers/templates/wagtail_feathers/icons/outline/heroicon-gift-top-outline.svg +3 -0
  348. wagtail_feathers-1.0/src/wagtail_feathers/templates/wagtail_feathers/icons/outline/heroicon-globe-alt-outline.svg +3 -0
  349. wagtail_feathers-1.0/src/wagtail_feathers/templates/wagtail_feathers/icons/outline/heroicon-globe-americas-outline.svg +3 -0
  350. wagtail_feathers-1.0/src/wagtail_feathers/templates/wagtail_feathers/icons/outline/heroicon-globe-asia-australia-outline.svg +3 -0
  351. wagtail_feathers-1.0/src/wagtail_feathers/templates/wagtail_feathers/icons/outline/heroicon-globe-europe-africa-outline.svg +3 -0
  352. wagtail_feathers-1.0/src/wagtail_feathers/templates/wagtail_feathers/icons/outline/heroicon-h1-outline.svg +3 -0
  353. wagtail_feathers-1.0/src/wagtail_feathers/templates/wagtail_feathers/icons/outline/heroicon-h2-outline.svg +3 -0
  354. wagtail_feathers-1.0/src/wagtail_feathers/templates/wagtail_feathers/icons/outline/heroicon-h3-outline.svg +3 -0
  355. wagtail_feathers-1.0/src/wagtail_feathers/templates/wagtail_feathers/icons/outline/heroicon-hand-raised-outline.svg +3 -0
  356. wagtail_feathers-1.0/src/wagtail_feathers/templates/wagtail_feathers/icons/outline/heroicon-hand-thumb-down-outline.svg +3 -0
  357. wagtail_feathers-1.0/src/wagtail_feathers/templates/wagtail_feathers/icons/outline/heroicon-hand-thumb-up-outline.svg +3 -0
  358. wagtail_feathers-1.0/src/wagtail_feathers/templates/wagtail_feathers/icons/outline/heroicon-hashtag-outline.svg +3 -0
  359. wagtail_feathers-1.0/src/wagtail_feathers/templates/wagtail_feathers/icons/outline/heroicon-heart-outline.svg +3 -0
  360. wagtail_feathers-1.0/src/wagtail_feathers/templates/wagtail_feathers/icons/outline/heroicon-home-modern-outline.svg +3 -0
  361. wagtail_feathers-1.0/src/wagtail_feathers/templates/wagtail_feathers/icons/outline/heroicon-home-outline.svg +3 -0
  362. wagtail_feathers-1.0/src/wagtail_feathers/templates/wagtail_feathers/icons/outline/heroicon-identification-outline.svg +3 -0
  363. wagtail_feathers-1.0/src/wagtail_feathers/templates/wagtail_feathers/icons/outline/heroicon-inbox-arrow-down-outline.svg +3 -0
  364. wagtail_feathers-1.0/src/wagtail_feathers/templates/wagtail_feathers/icons/outline/heroicon-inbox-outline.svg +3 -0
  365. wagtail_feathers-1.0/src/wagtail_feathers/templates/wagtail_feathers/icons/outline/heroicon-inbox-stack-outline.svg +3 -0
  366. wagtail_feathers-1.0/src/wagtail_feathers/templates/wagtail_feathers/icons/outline/heroicon-information-circle-outline.svg +3 -0
  367. wagtail_feathers-1.0/src/wagtail_feathers/templates/wagtail_feathers/icons/outline/heroicon-italic-outline.svg +3 -0
  368. wagtail_feathers-1.0/src/wagtail_feathers/templates/wagtail_feathers/icons/outline/heroicon-key-outline.svg +3 -0
  369. wagtail_feathers-1.0/src/wagtail_feathers/templates/wagtail_feathers/icons/outline/heroicon-language-outline.svg +3 -0
  370. wagtail_feathers-1.0/src/wagtail_feathers/templates/wagtail_feathers/icons/outline/heroicon-lifebuoy-outline.svg +3 -0
  371. wagtail_feathers-1.0/src/wagtail_feathers/templates/wagtail_feathers/icons/outline/heroicon-light-bulb-outline.svg +3 -0
  372. wagtail_feathers-1.0/src/wagtail_feathers/templates/wagtail_feathers/icons/outline/heroicon-link-outline.svg +3 -0
  373. wagtail_feathers-1.0/src/wagtail_feathers/templates/wagtail_feathers/icons/outline/heroicon-link-slash-outline.svg +3 -0
  374. wagtail_feathers-1.0/src/wagtail_feathers/templates/wagtail_feathers/icons/outline/heroicon-list-bullet-outline.svg +3 -0
  375. wagtail_feathers-1.0/src/wagtail_feathers/templates/wagtail_feathers/icons/outline/heroicon-lock-closed-outline.svg +3 -0
  376. wagtail_feathers-1.0/src/wagtail_feathers/templates/wagtail_feathers/icons/outline/heroicon-lock-open-outline.svg +3 -0
  377. wagtail_feathers-1.0/src/wagtail_feathers/templates/wagtail_feathers/icons/outline/heroicon-magnifying-glass-circle-outline.svg +3 -0
  378. wagtail_feathers-1.0/src/wagtail_feathers/templates/wagtail_feathers/icons/outline/heroicon-magnifying-glass-minus-outline.svg +3 -0
  379. wagtail_feathers-1.0/src/wagtail_feathers/templates/wagtail_feathers/icons/outline/heroicon-magnifying-glass-outline.svg +3 -0
  380. wagtail_feathers-1.0/src/wagtail_feathers/templates/wagtail_feathers/icons/outline/heroicon-magnifying-glass-plus-outline.svg +3 -0
  381. wagtail_feathers-1.0/src/wagtail_feathers/templates/wagtail_feathers/icons/outline/heroicon-map-outline.svg +3 -0
  382. wagtail_feathers-1.0/src/wagtail_feathers/templates/wagtail_feathers/icons/outline/heroicon-map-pin-outline.svg +4 -0
  383. wagtail_feathers-1.0/src/wagtail_feathers/templates/wagtail_feathers/icons/outline/heroicon-megaphone-outline.svg +3 -0
  384. wagtail_feathers-1.0/src/wagtail_feathers/templates/wagtail_feathers/icons/outline/heroicon-microphone-outline.svg +3 -0
  385. wagtail_feathers-1.0/src/wagtail_feathers/templates/wagtail_feathers/icons/outline/heroicon-minus-circle-outline.svg +3 -0
  386. wagtail_feathers-1.0/src/wagtail_feathers/templates/wagtail_feathers/icons/outline/heroicon-minus-outline.svg +3 -0
  387. wagtail_feathers-1.0/src/wagtail_feathers/templates/wagtail_feathers/icons/outline/heroicon-minus-small-outline.svg +3 -0
  388. wagtail_feathers-1.0/src/wagtail_feathers/templates/wagtail_feathers/icons/outline/heroicon-moon-outline.svg +3 -0
  389. wagtail_feathers-1.0/src/wagtail_feathers/templates/wagtail_feathers/icons/outline/heroicon-musical-note-outline.svg +3 -0
  390. wagtail_feathers-1.0/src/wagtail_feathers/templates/wagtail_feathers/icons/outline/heroicon-newspaper-outline.svg +3 -0
  391. wagtail_feathers-1.0/src/wagtail_feathers/templates/wagtail_feathers/icons/outline/heroicon-no-symbol-outline.svg +3 -0
  392. wagtail_feathers-1.0/src/wagtail_feathers/templates/wagtail_feathers/icons/outline/heroicon-numbered-list-outline.svg +3 -0
  393. wagtail_feathers-1.0/src/wagtail_feathers/templates/wagtail_feathers/icons/outline/heroicon-paint-brush-outline.svg +3 -0
  394. wagtail_feathers-1.0/src/wagtail_feathers/templates/wagtail_feathers/icons/outline/heroicon-paper-airplane-outline.svg +3 -0
  395. wagtail_feathers-1.0/src/wagtail_feathers/templates/wagtail_feathers/icons/outline/heroicon-paper-clip-outline.svg +3 -0
  396. wagtail_feathers-1.0/src/wagtail_feathers/templates/wagtail_feathers/icons/outline/heroicon-pause-circle-outline.svg +3 -0
  397. wagtail_feathers-1.0/src/wagtail_feathers/templates/wagtail_feathers/icons/outline/heroicon-pause-outline.svg +3 -0
  398. wagtail_feathers-1.0/src/wagtail_feathers/templates/wagtail_feathers/icons/outline/heroicon-pencil-outline.svg +3 -0
  399. wagtail_feathers-1.0/src/wagtail_feathers/templates/wagtail_feathers/icons/outline/heroicon-pencil-square-outline.svg +3 -0
  400. wagtail_feathers-1.0/src/wagtail_feathers/templates/wagtail_feathers/icons/outline/heroicon-percent-badge-outline.svg +3 -0
  401. wagtail_feathers-1.0/src/wagtail_feathers/templates/wagtail_feathers/icons/outline/heroicon-phone-arrow-down-left-outline.svg +3 -0
  402. wagtail_feathers-1.0/src/wagtail_feathers/templates/wagtail_feathers/icons/outline/heroicon-phone-arrow-up-right-outline.svg +3 -0
  403. wagtail_feathers-1.0/src/wagtail_feathers/templates/wagtail_feathers/icons/outline/heroicon-phone-outline.svg +3 -0
  404. wagtail_feathers-1.0/src/wagtail_feathers/templates/wagtail_feathers/icons/outline/heroicon-phone-x-mark-outline.svg +3 -0
  405. wagtail_feathers-1.0/src/wagtail_feathers/templates/wagtail_feathers/icons/outline/heroicon-photo-outline.svg +3 -0
  406. wagtail_feathers-1.0/src/wagtail_feathers/templates/wagtail_feathers/icons/outline/heroicon-play-circle-outline.svg +4 -0
  407. wagtail_feathers-1.0/src/wagtail_feathers/templates/wagtail_feathers/icons/outline/heroicon-play-outline.svg +3 -0
  408. wagtail_feathers-1.0/src/wagtail_feathers/templates/wagtail_feathers/icons/outline/heroicon-play-pause-outline.svg +3 -0
  409. wagtail_feathers-1.0/src/wagtail_feathers/templates/wagtail_feathers/icons/outline/heroicon-plus-circle-outline.svg +3 -0
  410. wagtail_feathers-1.0/src/wagtail_feathers/templates/wagtail_feathers/icons/outline/heroicon-plus-outline.svg +3 -0
  411. wagtail_feathers-1.0/src/wagtail_feathers/templates/wagtail_feathers/icons/outline/heroicon-plus-small-outline.svg +3 -0
  412. wagtail_feathers-1.0/src/wagtail_feathers/templates/wagtail_feathers/icons/outline/heroicon-power-outline.svg +3 -0
  413. wagtail_feathers-1.0/src/wagtail_feathers/templates/wagtail_feathers/icons/outline/heroicon-presentation-chart-bar-outline.svg +3 -0
  414. wagtail_feathers-1.0/src/wagtail_feathers/templates/wagtail_feathers/icons/outline/heroicon-presentation-chart-line-outline.svg +3 -0
  415. wagtail_feathers-1.0/src/wagtail_feathers/templates/wagtail_feathers/icons/outline/heroicon-printer-outline.svg +3 -0
  416. wagtail_feathers-1.0/src/wagtail_feathers/templates/wagtail_feathers/icons/outline/heroicon-puzzle-piece-outline.svg +3 -0
  417. wagtail_feathers-1.0/src/wagtail_feathers/templates/wagtail_feathers/icons/outline/heroicon-qr-code-outline.svg +4 -0
  418. wagtail_feathers-1.0/src/wagtail_feathers/templates/wagtail_feathers/icons/outline/heroicon-question-mark-circle-outline.svg +3 -0
  419. wagtail_feathers-1.0/src/wagtail_feathers/templates/wagtail_feathers/icons/outline/heroicon-queue-list-outline.svg +3 -0
  420. wagtail_feathers-1.0/src/wagtail_feathers/templates/wagtail_feathers/icons/outline/heroicon-radio-outline.svg +3 -0
  421. wagtail_feathers-1.0/src/wagtail_feathers/templates/wagtail_feathers/icons/outline/heroicon-receipt-percent-outline.svg +3 -0
  422. wagtail_feathers-1.0/src/wagtail_feathers/templates/wagtail_feathers/icons/outline/heroicon-receipt-refund-outline.svg +3 -0
  423. wagtail_feathers-1.0/src/wagtail_feathers/templates/wagtail_feathers/icons/outline/heroicon-rectangle-group-outline.svg +3 -0
  424. wagtail_feathers-1.0/src/wagtail_feathers/templates/wagtail_feathers/icons/outline/heroicon-rectangle-stack-outline.svg +3 -0
  425. wagtail_feathers-1.0/src/wagtail_feathers/templates/wagtail_feathers/icons/outline/heroicon-rocket-launch-outline.svg +3 -0
  426. wagtail_feathers-1.0/src/wagtail_feathers/templates/wagtail_feathers/icons/outline/heroicon-rss-outline.svg +3 -0
  427. wagtail_feathers-1.0/src/wagtail_feathers/templates/wagtail_feathers/icons/outline/heroicon-scale-outline.svg +3 -0
  428. wagtail_feathers-1.0/src/wagtail_feathers/templates/wagtail_feathers/icons/outline/heroicon-scissors-outline.svg +3 -0
  429. wagtail_feathers-1.0/src/wagtail_feathers/templates/wagtail_feathers/icons/outline/heroicon-server-outline.svg +3 -0
  430. wagtail_feathers-1.0/src/wagtail_feathers/templates/wagtail_feathers/icons/outline/heroicon-server-stack-outline.svg +3 -0
  431. wagtail_feathers-1.0/src/wagtail_feathers/templates/wagtail_feathers/icons/outline/heroicon-share-outline.svg +3 -0
  432. wagtail_feathers-1.0/src/wagtail_feathers/templates/wagtail_feathers/icons/outline/heroicon-shield-check-outline.svg +3 -0
  433. wagtail_feathers-1.0/src/wagtail_feathers/templates/wagtail_feathers/icons/outline/heroicon-shield-exclamation-outline.svg +3 -0
  434. wagtail_feathers-1.0/src/wagtail_feathers/templates/wagtail_feathers/icons/outline/heroicon-shopping-bag-outline.svg +3 -0
  435. wagtail_feathers-1.0/src/wagtail_feathers/templates/wagtail_feathers/icons/outline/heroicon-shopping-cart-outline.svg +3 -0
  436. wagtail_feathers-1.0/src/wagtail_feathers/templates/wagtail_feathers/icons/outline/heroicon-signal-outline.svg +3 -0
  437. wagtail_feathers-1.0/src/wagtail_feathers/templates/wagtail_feathers/icons/outline/heroicon-signal-slash-outline.svg +3 -0
  438. wagtail_feathers-1.0/src/wagtail_feathers/templates/wagtail_feathers/icons/outline/heroicon-slash-outline.svg +3 -0
  439. wagtail_feathers-1.0/src/wagtail_feathers/templates/wagtail_feathers/icons/outline/heroicon-sparkles-outline.svg +3 -0
  440. wagtail_feathers-1.0/src/wagtail_feathers/templates/wagtail_feathers/icons/outline/heroicon-speaker-wave-outline.svg +3 -0
  441. wagtail_feathers-1.0/src/wagtail_feathers/templates/wagtail_feathers/icons/outline/heroicon-speaker-x-mark-outline.svg +3 -0
  442. wagtail_feathers-1.0/src/wagtail_feathers/templates/wagtail_feathers/icons/outline/heroicon-square-2-stack-outline.svg +3 -0
  443. wagtail_feathers-1.0/src/wagtail_feathers/templates/wagtail_feathers/icons/outline/heroicon-square-3-stack-3d-outline.svg +3 -0
  444. wagtail_feathers-1.0/src/wagtail_feathers/templates/wagtail_feathers/icons/outline/heroicon-squares-2x2-outline.svg +3 -0
  445. wagtail_feathers-1.0/src/wagtail_feathers/templates/wagtail_feathers/icons/outline/heroicon-squares-plus-outline.svg +3 -0
  446. wagtail_feathers-1.0/src/wagtail_feathers/templates/wagtail_feathers/icons/outline/heroicon-star-outline.svg +3 -0
  447. wagtail_feathers-1.0/src/wagtail_feathers/templates/wagtail_feathers/icons/outline/heroicon-stop-circle-outline.svg +4 -0
  448. wagtail_feathers-1.0/src/wagtail_feathers/templates/wagtail_feathers/icons/outline/heroicon-stop-outline.svg +3 -0
  449. wagtail_feathers-1.0/src/wagtail_feathers/templates/wagtail_feathers/icons/outline/heroicon-strikethrough-outline.svg +3 -0
  450. wagtail_feathers-1.0/src/wagtail_feathers/templates/wagtail_feathers/icons/outline/heroicon-sun-outline.svg +3 -0
  451. wagtail_feathers-1.0/src/wagtail_feathers/templates/wagtail_feathers/icons/outline/heroicon-swatch-outline.svg +3 -0
  452. wagtail_feathers-1.0/src/wagtail_feathers/templates/wagtail_feathers/icons/outline/heroicon-table-cells-outline.svg +3 -0
  453. wagtail_feathers-1.0/src/wagtail_feathers/templates/wagtail_feathers/icons/outline/heroicon-tag-outline.svg +4 -0
  454. wagtail_feathers-1.0/src/wagtail_feathers/templates/wagtail_feathers/icons/outline/heroicon-ticket-outline.svg +3 -0
  455. wagtail_feathers-1.0/src/wagtail_feathers/templates/wagtail_feathers/icons/outline/heroicon-trash-outline.svg +3 -0
  456. wagtail_feathers-1.0/src/wagtail_feathers/templates/wagtail_feathers/icons/outline/heroicon-trophy-outline.svg +3 -0
  457. wagtail_feathers-1.0/src/wagtail_feathers/templates/wagtail_feathers/icons/outline/heroicon-truck-outline.svg +3 -0
  458. wagtail_feathers-1.0/src/wagtail_feathers/templates/wagtail_feathers/icons/outline/heroicon-tv-outline.svg +3 -0
  459. wagtail_feathers-1.0/src/wagtail_feathers/templates/wagtail_feathers/icons/outline/heroicon-underline-outline.svg +3 -0
  460. wagtail_feathers-1.0/src/wagtail_feathers/templates/wagtail_feathers/icons/outline/heroicon-user-circle-outline.svg +3 -0
  461. wagtail_feathers-1.0/src/wagtail_feathers/templates/wagtail_feathers/icons/outline/heroicon-user-group-outline.svg +3 -0
  462. wagtail_feathers-1.0/src/wagtail_feathers/templates/wagtail_feathers/icons/outline/heroicon-user-minus-outline.svg +3 -0
  463. wagtail_feathers-1.0/src/wagtail_feathers/templates/wagtail_feathers/icons/outline/heroicon-user-outline.svg +3 -0
  464. wagtail_feathers-1.0/src/wagtail_feathers/templates/wagtail_feathers/icons/outline/heroicon-user-plus-outline.svg +3 -0
  465. wagtail_feathers-1.0/src/wagtail_feathers/templates/wagtail_feathers/icons/outline/heroicon-users-outline.svg +3 -0
  466. wagtail_feathers-1.0/src/wagtail_feathers/templates/wagtail_feathers/icons/outline/heroicon-variable-outline.svg +3 -0
  467. wagtail_feathers-1.0/src/wagtail_feathers/templates/wagtail_feathers/icons/outline/heroicon-video-camera-outline.svg +3 -0
  468. wagtail_feathers-1.0/src/wagtail_feathers/templates/wagtail_feathers/icons/outline/heroicon-video-camera-slash-outline.svg +3 -0
  469. wagtail_feathers-1.0/src/wagtail_feathers/templates/wagtail_feathers/icons/outline/heroicon-view-columns-outline.svg +3 -0
  470. wagtail_feathers-1.0/src/wagtail_feathers/templates/wagtail_feathers/icons/outline/heroicon-viewfinder-circle-outline.svg +3 -0
  471. wagtail_feathers-1.0/src/wagtail_feathers/templates/wagtail_feathers/icons/outline/heroicon-wallet-outline.svg +3 -0
  472. wagtail_feathers-1.0/src/wagtail_feathers/templates/wagtail_feathers/icons/outline/heroicon-wifi-outline.svg +3 -0
  473. wagtail_feathers-1.0/src/wagtail_feathers/templates/wagtail_feathers/icons/outline/heroicon-window-outline.svg +3 -0
  474. wagtail_feathers-1.0/src/wagtail_feathers/templates/wagtail_feathers/icons/outline/heroicon-wrench-outline.svg +4 -0
  475. wagtail_feathers-1.0/src/wagtail_feathers/templates/wagtail_feathers/icons/outline/heroicon-wrench-screwdriver-outline.svg +3 -0
  476. wagtail_feathers-1.0/src/wagtail_feathers/templates/wagtail_feathers/icons/outline/heroicon-x-circle-outline.svg +3 -0
  477. wagtail_feathers-1.0/src/wagtail_feathers/templates/wagtail_feathers/icons/outline/heroicon-x-mark-outline.svg +3 -0
  478. wagtail_feathers-1.0/src/wagtail_feathers/templates/wagtail_feathers/icons/solid/heroicon-academic-cap-solid.svg +5 -0
  479. wagtail_feathers-1.0/src/wagtail_feathers/templates/wagtail_feathers/icons/solid/heroicon-adjustments-horizontal-solid.svg +3 -0
  480. wagtail_feathers-1.0/src/wagtail_feathers/templates/wagtail_feathers/icons/solid/heroicon-adjustments-vertical-solid.svg +3 -0
  481. wagtail_feathers-1.0/src/wagtail_feathers/templates/wagtail_feathers/icons/solid/heroicon-archive-box-arrow-down-solid.svg +4 -0
  482. wagtail_feathers-1.0/src/wagtail_feathers/templates/wagtail_feathers/icons/solid/heroicon-archive-box-solid.svg +4 -0
  483. wagtail_feathers-1.0/src/wagtail_feathers/templates/wagtail_feathers/icons/solid/heroicon-archive-box-x-mark-solid.svg +4 -0
  484. wagtail_feathers-1.0/src/wagtail_feathers/templates/wagtail_feathers/icons/solid/heroicon-arrow-down-circle-solid.svg +3 -0
  485. wagtail_feathers-1.0/src/wagtail_feathers/templates/wagtail_feathers/icons/solid/heroicon-arrow-down-left-solid.svg +3 -0
  486. wagtail_feathers-1.0/src/wagtail_feathers/templates/wagtail_feathers/icons/solid/heroicon-arrow-down-on-square-solid.svg +3 -0
  487. wagtail_feathers-1.0/src/wagtail_feathers/templates/wagtail_feathers/icons/solid/heroicon-arrow-down-on-square-stack-solid.svg +4 -0
  488. wagtail_feathers-1.0/src/wagtail_feathers/templates/wagtail_feathers/icons/solid/heroicon-arrow-down-right-solid.svg +3 -0
  489. wagtail_feathers-1.0/src/wagtail_feathers/templates/wagtail_feathers/icons/solid/heroicon-arrow-down-solid.svg +3 -0
  490. wagtail_feathers-1.0/src/wagtail_feathers/templates/wagtail_feathers/icons/solid/heroicon-arrow-down-tray-solid.svg +3 -0
  491. wagtail_feathers-1.0/src/wagtail_feathers/templates/wagtail_feathers/icons/solid/heroicon-arrow-left-circle-solid.svg +3 -0
  492. wagtail_feathers-1.0/src/wagtail_feathers/templates/wagtail_feathers/icons/solid/heroicon-arrow-left-end-on-rectangle-solid.svg +3 -0
  493. wagtail_feathers-1.0/src/wagtail_feathers/templates/wagtail_feathers/icons/solid/heroicon-arrow-left-on-rectangle-solid.svg +3 -0
  494. wagtail_feathers-1.0/src/wagtail_feathers/templates/wagtail_feathers/icons/solid/heroicon-arrow-left-solid.svg +3 -0
  495. wagtail_feathers-1.0/src/wagtail_feathers/templates/wagtail_feathers/icons/solid/heroicon-arrow-left-start-on-rectangle-solid.svg +3 -0
  496. wagtail_feathers-1.0/src/wagtail_feathers/templates/wagtail_feathers/icons/solid/heroicon-arrow-long-down-solid.svg +3 -0
  497. wagtail_feathers-1.0/src/wagtail_feathers/templates/wagtail_feathers/icons/solid/heroicon-arrow-long-left-solid.svg +3 -0
  498. wagtail_feathers-1.0/src/wagtail_feathers/templates/wagtail_feathers/icons/solid/heroicon-arrow-long-right-solid.svg +3 -0
  499. wagtail_feathers-1.0/src/wagtail_feathers/templates/wagtail_feathers/icons/solid/heroicon-arrow-long-up-solid.svg +3 -0
  500. wagtail_feathers-1.0/src/wagtail_feathers/templates/wagtail_feathers/icons/solid/heroicon-arrow-path-rounded-square-solid.svg +3 -0
  501. wagtail_feathers-1.0/src/wagtail_feathers/templates/wagtail_feathers/icons/solid/heroicon-arrow-path-solid.svg +3 -0
  502. wagtail_feathers-1.0/src/wagtail_feathers/templates/wagtail_feathers/icons/solid/heroicon-arrow-right-circle-solid.svg +3 -0
  503. wagtail_feathers-1.0/src/wagtail_feathers/templates/wagtail_feathers/icons/solid/heroicon-arrow-right-end-on-rectangle-solid.svg +3 -0
  504. wagtail_feathers-1.0/src/wagtail_feathers/templates/wagtail_feathers/icons/solid/heroicon-arrow-right-on-rectangle-solid.svg +3 -0
  505. wagtail_feathers-1.0/src/wagtail_feathers/templates/wagtail_feathers/icons/solid/heroicon-arrow-right-solid.svg +3 -0
  506. wagtail_feathers-1.0/src/wagtail_feathers/templates/wagtail_feathers/icons/solid/heroicon-arrow-right-start-on-rectangle-solid.svg +3 -0
  507. wagtail_feathers-1.0/src/wagtail_feathers/templates/wagtail_feathers/icons/solid/heroicon-arrow-small-down-solid.svg +3 -0
  508. wagtail_feathers-1.0/src/wagtail_feathers/templates/wagtail_feathers/icons/solid/heroicon-arrow-small-left-solid.svg +3 -0
  509. wagtail_feathers-1.0/src/wagtail_feathers/templates/wagtail_feathers/icons/solid/heroicon-arrow-small-right-solid.svg +3 -0
  510. wagtail_feathers-1.0/src/wagtail_feathers/templates/wagtail_feathers/icons/solid/heroicon-arrow-small-up-solid.svg +3 -0
  511. wagtail_feathers-1.0/src/wagtail_feathers/templates/wagtail_feathers/icons/solid/heroicon-arrow-top-right-on-square-solid.svg +3 -0
  512. wagtail_feathers-1.0/src/wagtail_feathers/templates/wagtail_feathers/icons/solid/heroicon-arrow-trending-down-solid.svg +3 -0
  513. wagtail_feathers-1.0/src/wagtail_feathers/templates/wagtail_feathers/icons/solid/heroicon-arrow-trending-up-solid.svg +3 -0
  514. wagtail_feathers-1.0/src/wagtail_feathers/templates/wagtail_feathers/icons/solid/heroicon-arrow-turn-down-left-solid.svg +3 -0
  515. wagtail_feathers-1.0/src/wagtail_feathers/templates/wagtail_feathers/icons/solid/heroicon-arrow-turn-down-right-solid.svg +3 -0
  516. wagtail_feathers-1.0/src/wagtail_feathers/templates/wagtail_feathers/icons/solid/heroicon-arrow-turn-left-down-solid.svg +3 -0
  517. wagtail_feathers-1.0/src/wagtail_feathers/templates/wagtail_feathers/icons/solid/heroicon-arrow-turn-left-up-solid.svg +3 -0
  518. wagtail_feathers-1.0/src/wagtail_feathers/templates/wagtail_feathers/icons/solid/heroicon-arrow-turn-right-down-solid.svg +3 -0
  519. wagtail_feathers-1.0/src/wagtail_feathers/templates/wagtail_feathers/icons/solid/heroicon-arrow-turn-right-up-solid.svg +3 -0
  520. wagtail_feathers-1.0/src/wagtail_feathers/templates/wagtail_feathers/icons/solid/heroicon-arrow-turn-up-left-solid.svg +3 -0
  521. wagtail_feathers-1.0/src/wagtail_feathers/templates/wagtail_feathers/icons/solid/heroicon-arrow-turn-up-right-solid.svg +3 -0
  522. wagtail_feathers-1.0/src/wagtail_feathers/templates/wagtail_feathers/icons/solid/heroicon-arrow-up-circle-solid.svg +3 -0
  523. wagtail_feathers-1.0/src/wagtail_feathers/templates/wagtail_feathers/icons/solid/heroicon-arrow-up-left-solid.svg +3 -0
  524. wagtail_feathers-1.0/src/wagtail_feathers/templates/wagtail_feathers/icons/solid/heroicon-arrow-up-on-square-solid.svg +3 -0
  525. wagtail_feathers-1.0/src/wagtail_feathers/templates/wagtail_feathers/icons/solid/heroicon-arrow-up-on-square-stack-solid.svg +4 -0
  526. wagtail_feathers-1.0/src/wagtail_feathers/templates/wagtail_feathers/icons/solid/heroicon-arrow-up-right-solid.svg +3 -0
  527. wagtail_feathers-1.0/src/wagtail_feathers/templates/wagtail_feathers/icons/solid/heroicon-arrow-up-solid.svg +3 -0
  528. wagtail_feathers-1.0/src/wagtail_feathers/templates/wagtail_feathers/icons/solid/heroicon-arrow-up-tray-solid.svg +3 -0
  529. wagtail_feathers-1.0/src/wagtail_feathers/templates/wagtail_feathers/icons/solid/heroicon-arrow-uturn-down-solid.svg +3 -0
  530. wagtail_feathers-1.0/src/wagtail_feathers/templates/wagtail_feathers/icons/solid/heroicon-arrow-uturn-left-solid.svg +3 -0
  531. wagtail_feathers-1.0/src/wagtail_feathers/templates/wagtail_feathers/icons/solid/heroicon-arrow-uturn-right-solid.svg +3 -0
  532. wagtail_feathers-1.0/src/wagtail_feathers/templates/wagtail_feathers/icons/solid/heroicon-arrow-uturn-up-solid.svg +3 -0
  533. wagtail_feathers-1.0/src/wagtail_feathers/templates/wagtail_feathers/icons/solid/heroicon-arrows-pointing-in-solid.svg +3 -0
  534. wagtail_feathers-1.0/src/wagtail_feathers/templates/wagtail_feathers/icons/solid/heroicon-arrows-pointing-out-solid.svg +3 -0
  535. wagtail_feathers-1.0/src/wagtail_feathers/templates/wagtail_feathers/icons/solid/heroicon-arrows-right-left-solid.svg +3 -0
  536. wagtail_feathers-1.0/src/wagtail_feathers/templates/wagtail_feathers/icons/solid/heroicon-arrows-up-down-solid.svg +3 -0
  537. wagtail_feathers-1.0/src/wagtail_feathers/templates/wagtail_feathers/icons/solid/heroicon-at-symbol-solid.svg +3 -0
  538. wagtail_feathers-1.0/src/wagtail_feathers/templates/wagtail_feathers/icons/solid/heroicon-backspace-solid.svg +3 -0
  539. wagtail_feathers-1.0/src/wagtail_feathers/templates/wagtail_feathers/icons/solid/heroicon-backward-solid.svg +3 -0
  540. wagtail_feathers-1.0/src/wagtail_feathers/templates/wagtail_feathers/icons/solid/heroicon-banknotes-solid.svg +5 -0
  541. wagtail_feathers-1.0/src/wagtail_feathers/templates/wagtail_feathers/icons/solid/heroicon-bars-2-solid.svg +3 -0
  542. wagtail_feathers-1.0/src/wagtail_feathers/templates/wagtail_feathers/icons/solid/heroicon-bars-3-bottom-left-solid.svg +3 -0
  543. wagtail_feathers-1.0/src/wagtail_feathers/templates/wagtail_feathers/icons/solid/heroicon-bars-3-bottom-right-solid.svg +3 -0
  544. wagtail_feathers-1.0/src/wagtail_feathers/templates/wagtail_feathers/icons/solid/heroicon-bars-3-center-left-solid.svg +3 -0
  545. wagtail_feathers-1.0/src/wagtail_feathers/templates/wagtail_feathers/icons/solid/heroicon-bars-3-solid.svg +3 -0
  546. wagtail_feathers-1.0/src/wagtail_feathers/templates/wagtail_feathers/icons/solid/heroicon-bars-4-solid.svg +3 -0
  547. wagtail_feathers-1.0/src/wagtail_feathers/templates/wagtail_feathers/icons/solid/heroicon-bars-arrow-down-solid.svg +3 -0
  548. wagtail_feathers-1.0/src/wagtail_feathers/templates/wagtail_feathers/icons/solid/heroicon-bars-arrow-up-solid.svg +3 -0
  549. wagtail_feathers-1.0/src/wagtail_feathers/templates/wagtail_feathers/icons/solid/heroicon-battery-0-solid.svg +3 -0
  550. wagtail_feathers-1.0/src/wagtail_feathers/templates/wagtail_feathers/icons/solid/heroicon-battery-100-solid.svg +3 -0
  551. wagtail_feathers-1.0/src/wagtail_feathers/templates/wagtail_feathers/icons/solid/heroicon-battery-50-solid.svg +4 -0
  552. wagtail_feathers-1.0/src/wagtail_feathers/templates/wagtail_feathers/icons/solid/heroicon-beaker-solid.svg +3 -0
  553. wagtail_feathers-1.0/src/wagtail_feathers/templates/wagtail_feathers/icons/solid/heroicon-bell-alert-solid.svg +4 -0
  554. wagtail_feathers-1.0/src/wagtail_feathers/templates/wagtail_feathers/icons/solid/heroicon-bell-slash-solid.svg +4 -0
  555. wagtail_feathers-1.0/src/wagtail_feathers/templates/wagtail_feathers/icons/solid/heroicon-bell-snooze-solid.svg +3 -0
  556. wagtail_feathers-1.0/src/wagtail_feathers/templates/wagtail_feathers/icons/solid/heroicon-bell-solid.svg +3 -0
  557. wagtail_feathers-1.0/src/wagtail_feathers/templates/wagtail_feathers/icons/solid/heroicon-bold-solid.svg +3 -0
  558. wagtail_feathers-1.0/src/wagtail_feathers/templates/wagtail_feathers/icons/solid/heroicon-bolt-slash-solid.svg +3 -0
  559. wagtail_feathers-1.0/src/wagtail_feathers/templates/wagtail_feathers/icons/solid/heroicon-bolt-solid.svg +3 -0
  560. wagtail_feathers-1.0/src/wagtail_feathers/templates/wagtail_feathers/icons/solid/heroicon-book-open-solid.svg +3 -0
  561. wagtail_feathers-1.0/src/wagtail_feathers/templates/wagtail_feathers/icons/solid/heroicon-bookmark-slash-solid.svg +3 -0
  562. wagtail_feathers-1.0/src/wagtail_feathers/templates/wagtail_feathers/icons/solid/heroicon-bookmark-solid.svg +3 -0
  563. wagtail_feathers-1.0/src/wagtail_feathers/templates/wagtail_feathers/icons/solid/heroicon-bookmark-square-solid.svg +3 -0
  564. wagtail_feathers-1.0/src/wagtail_feathers/templates/wagtail_feathers/icons/solid/heroicon-briefcase-solid.svg +4 -0
  565. wagtail_feathers-1.0/src/wagtail_feathers/templates/wagtail_feathers/icons/solid/heroicon-bug-ant-solid.svg +3 -0
  566. wagtail_feathers-1.0/src/wagtail_feathers/templates/wagtail_feathers/icons/solid/heroicon-building-library-solid.svg +5 -0
  567. wagtail_feathers-1.0/src/wagtail_feathers/templates/wagtail_feathers/icons/solid/heroicon-building-office-2-solid.svg +3 -0
  568. wagtail_feathers-1.0/src/wagtail_feathers/templates/wagtail_feathers/icons/solid/heroicon-building-office-solid.svg +3 -0
  569. wagtail_feathers-1.0/src/wagtail_feathers/templates/wagtail_feathers/icons/solid/heroicon-building-storefront-solid.svg +4 -0
  570. wagtail_feathers-1.0/src/wagtail_feathers/templates/wagtail_feathers/icons/solid/heroicon-cake-solid.svg +3 -0
  571. wagtail_feathers-1.0/src/wagtail_feathers/templates/wagtail_feathers/icons/solid/heroicon-calculator-solid.svg +3 -0
  572. wagtail_feathers-1.0/src/wagtail_feathers/templates/wagtail_feathers/icons/solid/heroicon-calendar-date-range-solid.svg +4 -0
  573. wagtail_feathers-1.0/src/wagtail_feathers/templates/wagtail_feathers/icons/solid/heroicon-calendar-days-solid.svg +4 -0
  574. wagtail_feathers-1.0/src/wagtail_feathers/templates/wagtail_feathers/icons/solid/heroicon-calendar-solid.svg +3 -0
  575. wagtail_feathers-1.0/src/wagtail_feathers/templates/wagtail_feathers/icons/solid/heroicon-camera-solid.svg +4 -0
  576. wagtail_feathers-1.0/src/wagtail_feathers/templates/wagtail_feathers/icons/solid/heroicon-chart-bar-solid.svg +3 -0
  577. wagtail_feathers-1.0/src/wagtail_feathers/templates/wagtail_feathers/icons/solid/heroicon-chart-bar-square-solid.svg +3 -0
  578. wagtail_feathers-1.0/src/wagtail_feathers/templates/wagtail_feathers/icons/solid/heroicon-chart-pie-solid.svg +4 -0
  579. wagtail_feathers-1.0/src/wagtail_feathers/templates/wagtail_feathers/icons/solid/heroicon-chat-bubble-bottom-center-solid.svg +3 -0
  580. wagtail_feathers-1.0/src/wagtail_feathers/templates/wagtail_feathers/icons/solid/heroicon-chat-bubble-bottom-center-text-solid.svg +3 -0
  581. wagtail_feathers-1.0/src/wagtail_feathers/templates/wagtail_feathers/icons/solid/heroicon-chat-bubble-left-ellipsis-solid.svg +3 -0
  582. wagtail_feathers-1.0/src/wagtail_feathers/templates/wagtail_feathers/icons/solid/heroicon-chat-bubble-left-right-solid.svg +4 -0
  583. wagtail_feathers-1.0/src/wagtail_feathers/templates/wagtail_feathers/icons/solid/heroicon-chat-bubble-left-solid.svg +3 -0
  584. wagtail_feathers-1.0/src/wagtail_feathers/templates/wagtail_feathers/icons/solid/heroicon-chat-bubble-oval-left-ellipsis-solid.svg +3 -0
  585. wagtail_feathers-1.0/src/wagtail_feathers/templates/wagtail_feathers/icons/solid/heroicon-chat-bubble-oval-left-solid.svg +3 -0
  586. wagtail_feathers-1.0/src/wagtail_feathers/templates/wagtail_feathers/icons/solid/heroicon-check-badge-solid.svg +3 -0
  587. wagtail_feathers-1.0/src/wagtail_feathers/templates/wagtail_feathers/icons/solid/heroicon-check-circle-solid.svg +3 -0
  588. wagtail_feathers-1.0/src/wagtail_feathers/templates/wagtail_feathers/icons/solid/heroicon-check-solid.svg +3 -0
  589. wagtail_feathers-1.0/src/wagtail_feathers/templates/wagtail_feathers/icons/solid/heroicon-chevron-double-down-solid.svg +4 -0
  590. wagtail_feathers-1.0/src/wagtail_feathers/templates/wagtail_feathers/icons/solid/heroicon-chevron-double-left-solid.svg +4 -0
  591. wagtail_feathers-1.0/src/wagtail_feathers/templates/wagtail_feathers/icons/solid/heroicon-chevron-double-right-solid.svg +4 -0
  592. wagtail_feathers-1.0/src/wagtail_feathers/templates/wagtail_feathers/icons/solid/heroicon-chevron-double-up-solid.svg +4 -0
  593. wagtail_feathers-1.0/src/wagtail_feathers/templates/wagtail_feathers/icons/solid/heroicon-chevron-down-solid.svg +3 -0
  594. wagtail_feathers-1.0/src/wagtail_feathers/templates/wagtail_feathers/icons/solid/heroicon-chevron-left-solid.svg +3 -0
  595. wagtail_feathers-1.0/src/wagtail_feathers/templates/wagtail_feathers/icons/solid/heroicon-chevron-right-solid.svg +3 -0
  596. wagtail_feathers-1.0/src/wagtail_feathers/templates/wagtail_feathers/icons/solid/heroicon-chevron-up-down-solid.svg +3 -0
  597. wagtail_feathers-1.0/src/wagtail_feathers/templates/wagtail_feathers/icons/solid/heroicon-chevron-up-solid.svg +3 -0
  598. wagtail_feathers-1.0/src/wagtail_feathers/templates/wagtail_feathers/icons/solid/heroicon-circle-stack-solid.svg +6 -0
  599. wagtail_feathers-1.0/src/wagtail_feathers/templates/wagtail_feathers/icons/solid/heroicon-clipboard-document-check-solid.svg +4 -0
  600. wagtail_feathers-1.0/src/wagtail_feathers/templates/wagtail_feathers/icons/solid/heroicon-clipboard-document-list-solid.svg +4 -0
  601. wagtail_feathers-1.0/src/wagtail_feathers/templates/wagtail_feathers/icons/solid/heroicon-clipboard-document-solid.svg +5 -0
  602. wagtail_feathers-1.0/src/wagtail_feathers/templates/wagtail_feathers/icons/solid/heroicon-clipboard-solid.svg +3 -0
  603. wagtail_feathers-1.0/src/wagtail_feathers/templates/wagtail_feathers/icons/solid/heroicon-clock-solid.svg +3 -0
  604. wagtail_feathers-1.0/src/wagtail_feathers/templates/wagtail_feathers/icons/solid/heroicon-cloud-arrow-down-solid.svg +3 -0
  605. wagtail_feathers-1.0/src/wagtail_feathers/templates/wagtail_feathers/icons/solid/heroicon-cloud-arrow-up-solid.svg +3 -0
  606. wagtail_feathers-1.0/src/wagtail_feathers/templates/wagtail_feathers/icons/solid/heroicon-cloud-solid.svg +3 -0
  607. wagtail_feathers-1.0/src/wagtail_feathers/templates/wagtail_feathers/icons/solid/heroicon-code-bracket-solid.svg +3 -0
  608. wagtail_feathers-1.0/src/wagtail_feathers/templates/wagtail_feathers/icons/solid/heroicon-code-bracket-square-solid.svg +3 -0
  609. wagtail_feathers-1.0/src/wagtail_feathers/templates/wagtail_feathers/icons/solid/heroicon-cog-6-tooth-solid.svg +3 -0
  610. wagtail_feathers-1.0/src/wagtail_feathers/templates/wagtail_feathers/icons/solid/heroicon-cog-8-tooth-solid.svg +3 -0
  611. wagtail_feathers-1.0/src/wagtail_feathers/templates/wagtail_feathers/icons/solid/heroicon-cog-solid.svg +4 -0
  612. wagtail_feathers-1.0/src/wagtail_feathers/templates/wagtail_feathers/icons/solid/heroicon-command-line-solid.svg +3 -0
  613. wagtail_feathers-1.0/src/wagtail_feathers/templates/wagtail_feathers/icons/solid/heroicon-computer-desktop-solid.svg +3 -0
  614. wagtail_feathers-1.0/src/wagtail_feathers/templates/wagtail_feathers/icons/solid/heroicon-cpu-chip-solid.svg +4 -0
  615. wagtail_feathers-1.0/src/wagtail_feathers/templates/wagtail_feathers/icons/solid/heroicon-credit-card-solid.svg +4 -0
  616. wagtail_feathers-1.0/src/wagtail_feathers/templates/wagtail_feathers/icons/solid/heroicon-cube-solid.svg +3 -0
  617. wagtail_feathers-1.0/src/wagtail_feathers/templates/wagtail_feathers/icons/solid/heroicon-cube-transparent-solid.svg +3 -0
  618. wagtail_feathers-1.0/src/wagtail_feathers/templates/wagtail_feathers/icons/solid/heroicon-currency-bangladeshi-solid.svg +3 -0
  619. wagtail_feathers-1.0/src/wagtail_feathers/templates/wagtail_feathers/icons/solid/heroicon-currency-dollar-solid.svg +4 -0
  620. wagtail_feathers-1.0/src/wagtail_feathers/templates/wagtail_feathers/icons/solid/heroicon-currency-euro-solid.svg +3 -0
  621. wagtail_feathers-1.0/src/wagtail_feathers/templates/wagtail_feathers/icons/solid/heroicon-currency-pound-solid.svg +3 -0
  622. wagtail_feathers-1.0/src/wagtail_feathers/templates/wagtail_feathers/icons/solid/heroicon-currency-rupee-solid.svg +3 -0
  623. wagtail_feathers-1.0/src/wagtail_feathers/templates/wagtail_feathers/icons/solid/heroicon-currency-yen-solid.svg +3 -0
  624. wagtail_feathers-1.0/src/wagtail_feathers/templates/wagtail_feathers/icons/solid/heroicon-cursor-arrow-rays-solid.svg +3 -0
  625. wagtail_feathers-1.0/src/wagtail_feathers/templates/wagtail_feathers/icons/solid/heroicon-cursor-arrow-ripple-solid.svg +3 -0
  626. wagtail_feathers-1.0/src/wagtail_feathers/templates/wagtail_feathers/icons/solid/heroicon-device-phone-mobile-solid.svg +4 -0
  627. wagtail_feathers-1.0/src/wagtail_feathers/templates/wagtail_feathers/icons/solid/heroicon-device-tablet-solid.svg +4 -0
  628. wagtail_feathers-1.0/src/wagtail_feathers/templates/wagtail_feathers/icons/solid/heroicon-divide-solid.svg +3 -0
  629. wagtail_feathers-1.0/src/wagtail_feathers/templates/wagtail_feathers/icons/solid/heroicon-document-arrow-down-solid.svg +4 -0
  630. wagtail_feathers-1.0/src/wagtail_feathers/templates/wagtail_feathers/icons/solid/heroicon-document-arrow-up-solid.svg +4 -0
  631. wagtail_feathers-1.0/src/wagtail_feathers/templates/wagtail_feathers/icons/solid/heroicon-document-chart-bar-solid.svg +4 -0
  632. wagtail_feathers-1.0/src/wagtail_feathers/templates/wagtail_feathers/icons/solid/heroicon-document-check-solid.svg +4 -0
  633. wagtail_feathers-1.0/src/wagtail_feathers/templates/wagtail_feathers/icons/solid/heroicon-document-currency-bangladeshi-solid.svg +3 -0
  634. wagtail_feathers-1.0/src/wagtail_feathers/templates/wagtail_feathers/icons/solid/heroicon-document-currency-dollar-solid.svg +3 -0
  635. wagtail_feathers-1.0/src/wagtail_feathers/templates/wagtail_feathers/icons/solid/heroicon-document-currency-euro-solid.svg +4 -0
  636. wagtail_feathers-1.0/src/wagtail_feathers/templates/wagtail_feathers/icons/solid/heroicon-document-currency-pound-solid.svg +3 -0
  637. wagtail_feathers-1.0/src/wagtail_feathers/templates/wagtail_feathers/icons/solid/heroicon-document-currency-rupee-solid.svg +3 -0
  638. wagtail_feathers-1.0/src/wagtail_feathers/templates/wagtail_feathers/icons/solid/heroicon-document-currency-yen-solid.svg +3 -0
  639. wagtail_feathers-1.0/src/wagtail_feathers/templates/wagtail_feathers/icons/solid/heroicon-document-duplicate-solid.svg +4 -0
  640. wagtail_feathers-1.0/src/wagtail_feathers/templates/wagtail_feathers/icons/solid/heroicon-document-magnifying-glass-solid.svg +5 -0
  641. wagtail_feathers-1.0/src/wagtail_feathers/templates/wagtail_feathers/icons/solid/heroicon-document-minus-solid.svg +4 -0
  642. wagtail_feathers-1.0/src/wagtail_feathers/templates/wagtail_feathers/icons/solid/heroicon-document-plus-solid.svg +4 -0
  643. wagtail_feathers-1.0/src/wagtail_feathers/templates/wagtail_feathers/icons/solid/heroicon-document-solid.svg +4 -0
  644. wagtail_feathers-1.0/src/wagtail_feathers/templates/wagtail_feathers/icons/solid/heroicon-document-text-solid.svg +4 -0
  645. wagtail_feathers-1.0/src/wagtail_feathers/templates/wagtail_feathers/icons/solid/heroicon-ellipsis-horizontal-circle-solid.svg +3 -0
  646. wagtail_feathers-1.0/src/wagtail_feathers/templates/wagtail_feathers/icons/solid/heroicon-ellipsis-horizontal-solid.svg +3 -0
  647. wagtail_feathers-1.0/src/wagtail_feathers/templates/wagtail_feathers/icons/solid/heroicon-ellipsis-vertical-solid.svg +3 -0
  648. wagtail_feathers-1.0/src/wagtail_feathers/templates/wagtail_feathers/icons/solid/heroicon-envelope-open-solid.svg +4 -0
  649. wagtail_feathers-1.0/src/wagtail_feathers/templates/wagtail_feathers/icons/solid/heroicon-envelope-solid.svg +4 -0
  650. wagtail_feathers-1.0/src/wagtail_feathers/templates/wagtail_feathers/icons/solid/heroicon-equals-solid.svg +3 -0
  651. wagtail_feathers-1.0/src/wagtail_feathers/templates/wagtail_feathers/icons/solid/heroicon-exclamation-circle-solid.svg +3 -0
  652. wagtail_feathers-1.0/src/wagtail_feathers/templates/wagtail_feathers/icons/solid/heroicon-exclamation-triangle-solid.svg +3 -0
  653. wagtail_feathers-1.0/src/wagtail_feathers/templates/wagtail_feathers/icons/solid/heroicon-eye-dropper-solid.svg +3 -0
  654. wagtail_feathers-1.0/src/wagtail_feathers/templates/wagtail_feathers/icons/solid/heroicon-eye-slash-solid.svg +5 -0
  655. wagtail_feathers-1.0/src/wagtail_feathers/templates/wagtail_feathers/icons/solid/heroicon-eye-solid.svg +4 -0
  656. wagtail_feathers-1.0/src/wagtail_feathers/templates/wagtail_feathers/icons/solid/heroicon-face-frown-solid.svg +3 -0
  657. wagtail_feathers-1.0/src/wagtail_feathers/templates/wagtail_feathers/icons/solid/heroicon-face-smile-solid.svg +3 -0
  658. wagtail_feathers-1.0/src/wagtail_feathers/templates/wagtail_feathers/icons/solid/heroicon-film-solid.svg +3 -0
  659. wagtail_feathers-1.0/src/wagtail_feathers/templates/wagtail_feathers/icons/solid/heroicon-finger-print-solid.svg +3 -0
  660. wagtail_feathers-1.0/src/wagtail_feathers/templates/wagtail_feathers/icons/solid/heroicon-fire-solid.svg +3 -0
  661. wagtail_feathers-1.0/src/wagtail_feathers/templates/wagtail_feathers/icons/solid/heroicon-flag-solid.svg +3 -0
  662. wagtail_feathers-1.0/src/wagtail_feathers/templates/wagtail_feathers/icons/solid/heroicon-folder-arrow-down-solid.svg +3 -0
  663. wagtail_feathers-1.0/src/wagtail_feathers/templates/wagtail_feathers/icons/solid/heroicon-folder-minus-solid.svg +3 -0
  664. wagtail_feathers-1.0/src/wagtail_feathers/templates/wagtail_feathers/icons/solid/heroicon-folder-open-solid.svg +3 -0
  665. wagtail_feathers-1.0/src/wagtail_feathers/templates/wagtail_feathers/icons/solid/heroicon-folder-plus-solid.svg +3 -0
  666. wagtail_feathers-1.0/src/wagtail_feathers/templates/wagtail_feathers/icons/solid/heroicon-folder-solid.svg +3 -0
  667. wagtail_feathers-1.0/src/wagtail_feathers/templates/wagtail_feathers/icons/solid/heroicon-forward-solid.svg +3 -0
  668. wagtail_feathers-1.0/src/wagtail_feathers/templates/wagtail_feathers/icons/solid/heroicon-funnel-solid.svg +3 -0
  669. wagtail_feathers-1.0/src/wagtail_feathers/templates/wagtail_feathers/icons/solid/heroicon-gif-solid.svg +3 -0
  670. wagtail_feathers-1.0/src/wagtail_feathers/templates/wagtail_feathers/icons/solid/heroicon-gift-solid.svg +3 -0
  671. wagtail_feathers-1.0/src/wagtail_feathers/templates/wagtail_feathers/icons/solid/heroicon-gift-top-solid.svg +4 -0
  672. wagtail_feathers-1.0/src/wagtail_feathers/templates/wagtail_feathers/icons/solid/heroicon-globe-alt-solid.svg +3 -0
  673. wagtail_feathers-1.0/src/wagtail_feathers/templates/wagtail_feathers/icons/solid/heroicon-globe-americas-solid.svg +3 -0
  674. wagtail_feathers-1.0/src/wagtail_feathers/templates/wagtail_feathers/icons/solid/heroicon-globe-asia-australia-solid.svg +4 -0
  675. wagtail_feathers-1.0/src/wagtail_feathers/templates/wagtail_feathers/icons/solid/heroicon-globe-europe-africa-solid.svg +3 -0
  676. wagtail_feathers-1.0/src/wagtail_feathers/templates/wagtail_feathers/icons/solid/heroicon-h1-solid.svg +3 -0
  677. wagtail_feathers-1.0/src/wagtail_feathers/templates/wagtail_feathers/icons/solid/heroicon-h2-solid.svg +3 -0
  678. wagtail_feathers-1.0/src/wagtail_feathers/templates/wagtail_feathers/icons/solid/heroicon-h3-solid.svg +3 -0
  679. wagtail_feathers-1.0/src/wagtail_feathers/templates/wagtail_feathers/icons/solid/heroicon-hand-raised-solid.svg +3 -0
  680. wagtail_feathers-1.0/src/wagtail_feathers/templates/wagtail_feathers/icons/solid/heroicon-hand-thumb-down-solid.svg +3 -0
  681. wagtail_feathers-1.0/src/wagtail_feathers/templates/wagtail_feathers/icons/solid/heroicon-hand-thumb-up-solid.svg +3 -0
  682. wagtail_feathers-1.0/src/wagtail_feathers/templates/wagtail_feathers/icons/solid/heroicon-hashtag-solid.svg +3 -0
  683. wagtail_feathers-1.0/src/wagtail_feathers/templates/wagtail_feathers/icons/solid/heroicon-heart-solid.svg +3 -0
  684. wagtail_feathers-1.0/src/wagtail_feathers/templates/wagtail_feathers/icons/solid/heroicon-home-modern-solid.svg +4 -0
  685. wagtail_feathers-1.0/src/wagtail_feathers/templates/wagtail_feathers/icons/solid/heroicon-home-solid.svg +4 -0
  686. wagtail_feathers-1.0/src/wagtail_feathers/templates/wagtail_feathers/icons/solid/heroicon-identification-solid.svg +3 -0
  687. wagtail_feathers-1.0/src/wagtail_feathers/templates/wagtail_feathers/icons/solid/heroicon-inbox-arrow-down-solid.svg +4 -0
  688. wagtail_feathers-1.0/src/wagtail_feathers/templates/wagtail_feathers/icons/solid/heroicon-inbox-solid.svg +3 -0
  689. wagtail_feathers-1.0/src/wagtail_feathers/templates/wagtail_feathers/icons/solid/heroicon-inbox-stack-solid.svg +4 -0
  690. wagtail_feathers-1.0/src/wagtail_feathers/templates/wagtail_feathers/icons/solid/heroicon-information-circle-solid.svg +3 -0
  691. wagtail_feathers-1.0/src/wagtail_feathers/templates/wagtail_feathers/icons/solid/heroicon-italic-solid.svg +3 -0
  692. wagtail_feathers-1.0/src/wagtail_feathers/templates/wagtail_feathers/icons/solid/heroicon-key-solid.svg +3 -0
  693. wagtail_feathers-1.0/src/wagtail_feathers/templates/wagtail_feathers/icons/solid/heroicon-language-solid.svg +3 -0
  694. wagtail_feathers-1.0/src/wagtail_feathers/templates/wagtail_feathers/icons/solid/heroicon-lifebuoy-solid.svg +3 -0
  695. wagtail_feathers-1.0/src/wagtail_feathers/templates/wagtail_feathers/icons/solid/heroicon-light-bulb-solid.svg +4 -0
  696. wagtail_feathers-1.0/src/wagtail_feathers/templates/wagtail_feathers/icons/solid/heroicon-link-slash-solid.svg +3 -0
  697. wagtail_feathers-1.0/src/wagtail_feathers/templates/wagtail_feathers/icons/solid/heroicon-link-solid.svg +3 -0
  698. wagtail_feathers-1.0/src/wagtail_feathers/templates/wagtail_feathers/icons/solid/heroicon-list-bullet-solid.svg +3 -0
  699. wagtail_feathers-1.0/src/wagtail_feathers/templates/wagtail_feathers/icons/solid/heroicon-lock-closed-solid.svg +3 -0
  700. wagtail_feathers-1.0/src/wagtail_feathers/templates/wagtail_feathers/icons/solid/heroicon-lock-open-solid.svg +3 -0
  701. wagtail_feathers-1.0/src/wagtail_feathers/templates/wagtail_feathers/icons/solid/heroicon-magnifying-glass-circle-solid.svg +4 -0
  702. wagtail_feathers-1.0/src/wagtail_feathers/templates/wagtail_feathers/icons/solid/heroicon-magnifying-glass-minus-solid.svg +3 -0
  703. wagtail_feathers-1.0/src/wagtail_feathers/templates/wagtail_feathers/icons/solid/heroicon-magnifying-glass-plus-solid.svg +3 -0
  704. wagtail_feathers-1.0/src/wagtail_feathers/templates/wagtail_feathers/icons/solid/heroicon-magnifying-glass-solid.svg +3 -0
  705. wagtail_feathers-1.0/src/wagtail_feathers/templates/wagtail_feathers/icons/solid/heroicon-map-pin-solid.svg +3 -0
  706. wagtail_feathers-1.0/src/wagtail_feathers/templates/wagtail_feathers/icons/solid/heroicon-map-solid.svg +3 -0
  707. wagtail_feathers-1.0/src/wagtail_feathers/templates/wagtail_feathers/icons/solid/heroicon-megaphone-solid.svg +3 -0
  708. wagtail_feathers-1.0/src/wagtail_feathers/templates/wagtail_feathers/icons/solid/heroicon-microphone-solid.svg +4 -0
  709. wagtail_feathers-1.0/src/wagtail_feathers/templates/wagtail_feathers/icons/solid/heroicon-minus-circle-solid.svg +3 -0
  710. wagtail_feathers-1.0/src/wagtail_feathers/templates/wagtail_feathers/icons/solid/heroicon-minus-small-solid.svg +3 -0
  711. wagtail_feathers-1.0/src/wagtail_feathers/templates/wagtail_feathers/icons/solid/heroicon-minus-solid.svg +3 -0
  712. wagtail_feathers-1.0/src/wagtail_feathers/templates/wagtail_feathers/icons/solid/heroicon-moon-solid.svg +3 -0
  713. wagtail_feathers-1.0/src/wagtail_feathers/templates/wagtail_feathers/icons/solid/heroicon-musical-note-solid.svg +3 -0
  714. wagtail_feathers-1.0/src/wagtail_feathers/templates/wagtail_feathers/icons/solid/heroicon-newspaper-solid.svg +4 -0
  715. wagtail_feathers-1.0/src/wagtail_feathers/templates/wagtail_feathers/icons/solid/heroicon-no-symbol-solid.svg +3 -0
  716. wagtail_feathers-1.0/src/wagtail_feathers/templates/wagtail_feathers/icons/solid/heroicon-numbered-list-solid.svg +3 -0
  717. wagtail_feathers-1.0/src/wagtail_feathers/templates/wagtail_feathers/icons/solid/heroicon-paint-brush-solid.svg +3 -0
  718. wagtail_feathers-1.0/src/wagtail_feathers/templates/wagtail_feathers/icons/solid/heroicon-paper-airplane-solid.svg +3 -0
  719. wagtail_feathers-1.0/src/wagtail_feathers/templates/wagtail_feathers/icons/solid/heroicon-paper-clip-solid.svg +3 -0
  720. wagtail_feathers-1.0/src/wagtail_feathers/templates/wagtail_feathers/icons/solid/heroicon-pause-circle-solid.svg +3 -0
  721. wagtail_feathers-1.0/src/wagtail_feathers/templates/wagtail_feathers/icons/solid/heroicon-pause-solid.svg +3 -0
  722. wagtail_feathers-1.0/src/wagtail_feathers/templates/wagtail_feathers/icons/solid/heroicon-pencil-solid.svg +3 -0
  723. wagtail_feathers-1.0/src/wagtail_feathers/templates/wagtail_feathers/icons/solid/heroicon-pencil-square-solid.svg +4 -0
  724. wagtail_feathers-1.0/src/wagtail_feathers/templates/wagtail_feathers/icons/solid/heroicon-percent-badge-solid.svg +3 -0
  725. wagtail_feathers-1.0/src/wagtail_feathers/templates/wagtail_feathers/icons/solid/heroicon-phone-arrow-down-left-solid.svg +4 -0
  726. wagtail_feathers-1.0/src/wagtail_feathers/templates/wagtail_feathers/icons/solid/heroicon-phone-arrow-up-right-solid.svg +4 -0
  727. wagtail_feathers-1.0/src/wagtail_feathers/templates/wagtail_feathers/icons/solid/heroicon-phone-solid.svg +3 -0
  728. wagtail_feathers-1.0/src/wagtail_feathers/templates/wagtail_feathers/icons/solid/heroicon-phone-x-mark-solid.svg +3 -0
  729. wagtail_feathers-1.0/src/wagtail_feathers/templates/wagtail_feathers/icons/solid/heroicon-photo-solid.svg +3 -0
  730. wagtail_feathers-1.0/src/wagtail_feathers/templates/wagtail_feathers/icons/solid/heroicon-play-circle-solid.svg +3 -0
  731. wagtail_feathers-1.0/src/wagtail_feathers/templates/wagtail_feathers/icons/solid/heroicon-play-pause-solid.svg +3 -0
  732. wagtail_feathers-1.0/src/wagtail_feathers/templates/wagtail_feathers/icons/solid/heroicon-play-solid.svg +3 -0
  733. wagtail_feathers-1.0/src/wagtail_feathers/templates/wagtail_feathers/icons/solid/heroicon-plus-circle-solid.svg +3 -0
  734. wagtail_feathers-1.0/src/wagtail_feathers/templates/wagtail_feathers/icons/solid/heroicon-plus-small-solid.svg +3 -0
  735. wagtail_feathers-1.0/src/wagtail_feathers/templates/wagtail_feathers/icons/solid/heroicon-plus-solid.svg +3 -0
  736. wagtail_feathers-1.0/src/wagtail_feathers/templates/wagtail_feathers/icons/solid/heroicon-power-solid.svg +3 -0
  737. wagtail_feathers-1.0/src/wagtail_feathers/templates/wagtail_feathers/icons/solid/heroicon-presentation-chart-bar-solid.svg +3 -0
  738. wagtail_feathers-1.0/src/wagtail_feathers/templates/wagtail_feathers/icons/solid/heroicon-presentation-chart-line-solid.svg +3 -0
  739. wagtail_feathers-1.0/src/wagtail_feathers/templates/wagtail_feathers/icons/solid/heroicon-printer-solid.svg +3 -0
  740. wagtail_feathers-1.0/src/wagtail_feathers/templates/wagtail_feathers/icons/solid/heroicon-puzzle-piece-solid.svg +3 -0
  741. wagtail_feathers-1.0/src/wagtail_feathers/templates/wagtail_feathers/icons/solid/heroicon-qr-code-solid.svg +3 -0
  742. wagtail_feathers-1.0/src/wagtail_feathers/templates/wagtail_feathers/icons/solid/heroicon-question-mark-circle-solid.svg +3 -0
  743. wagtail_feathers-1.0/src/wagtail_feathers/templates/wagtail_feathers/icons/solid/heroicon-queue-list-solid.svg +3 -0
  744. wagtail_feathers-1.0/src/wagtail_feathers/templates/wagtail_feathers/icons/solid/heroicon-radio-solid.svg +3 -0
  745. wagtail_feathers-1.0/src/wagtail_feathers/templates/wagtail_feathers/icons/solid/heroicon-receipt-percent-solid.svg +3 -0
  746. wagtail_feathers-1.0/src/wagtail_feathers/templates/wagtail_feathers/icons/solid/heroicon-receipt-refund-solid.svg +3 -0
  747. wagtail_feathers-1.0/src/wagtail_feathers/templates/wagtail_feathers/icons/solid/heroicon-rectangle-group-solid.svg +3 -0
  748. wagtail_feathers-1.0/src/wagtail_feathers/templates/wagtail_feathers/icons/solid/heroicon-rectangle-stack-solid.svg +3 -0
  749. wagtail_feathers-1.0/src/wagtail_feathers/templates/wagtail_feathers/icons/solid/heroicon-rocket-launch-solid.svg +4 -0
  750. wagtail_feathers-1.0/src/wagtail_feathers/templates/wagtail_feathers/icons/solid/heroicon-rss-solid.svg +3 -0
  751. wagtail_feathers-1.0/src/wagtail_feathers/templates/wagtail_feathers/icons/solid/heroicon-scale-solid.svg +3 -0
  752. wagtail_feathers-1.0/src/wagtail_feathers/templates/wagtail_feathers/icons/solid/heroicon-scissors-solid.svg +4 -0
  753. wagtail_feathers-1.0/src/wagtail_feathers/templates/wagtail_feathers/icons/solid/heroicon-server-solid.svg +4 -0
  754. wagtail_feathers-1.0/src/wagtail_feathers/templates/wagtail_feathers/icons/solid/heroicon-server-stack-solid.svg +4 -0
  755. wagtail_feathers-1.0/src/wagtail_feathers/templates/wagtail_feathers/icons/solid/heroicon-share-solid.svg +3 -0
  756. wagtail_feathers-1.0/src/wagtail_feathers/templates/wagtail_feathers/icons/solid/heroicon-shield-check-solid.svg +3 -0
  757. wagtail_feathers-1.0/src/wagtail_feathers/templates/wagtail_feathers/icons/solid/heroicon-shield-exclamation-solid.svg +3 -0
  758. wagtail_feathers-1.0/src/wagtail_feathers/templates/wagtail_feathers/icons/solid/heroicon-shopping-bag-solid.svg +3 -0
  759. wagtail_feathers-1.0/src/wagtail_feathers/templates/wagtail_feathers/icons/solid/heroicon-shopping-cart-solid.svg +3 -0
  760. wagtail_feathers-1.0/src/wagtail_feathers/templates/wagtail_feathers/icons/solid/heroicon-signal-slash-solid.svg +3 -0
  761. wagtail_feathers-1.0/src/wagtail_feathers/templates/wagtail_feathers/icons/solid/heroicon-signal-solid.svg +3 -0
  762. wagtail_feathers-1.0/src/wagtail_feathers/templates/wagtail_feathers/icons/solid/heroicon-slash-solid.svg +3 -0
  763. wagtail_feathers-1.0/src/wagtail_feathers/templates/wagtail_feathers/icons/solid/heroicon-sparkles-solid.svg +3 -0
  764. wagtail_feathers-1.0/src/wagtail_feathers/templates/wagtail_feathers/icons/solid/heroicon-speaker-wave-solid.svg +4 -0
  765. wagtail_feathers-1.0/src/wagtail_feathers/templates/wagtail_feathers/icons/solid/heroicon-speaker-x-mark-solid.svg +3 -0
  766. wagtail_feathers-1.0/src/wagtail_feathers/templates/wagtail_feathers/icons/solid/heroicon-square-2-stack-solid.svg +4 -0
  767. wagtail_feathers-1.0/src/wagtail_feathers/templates/wagtail_feathers/icons/solid/heroicon-square-3-stack-3d-solid.svg +5 -0
  768. wagtail_feathers-1.0/src/wagtail_feathers/templates/wagtail_feathers/icons/solid/heroicon-squares-2x2-solid.svg +3 -0
  769. wagtail_feathers-1.0/src/wagtail_feathers/templates/wagtail_feathers/icons/solid/heroicon-squares-plus-solid.svg +3 -0
  770. wagtail_feathers-1.0/src/wagtail_feathers/templates/wagtail_feathers/icons/solid/heroicon-star-solid.svg +3 -0
  771. wagtail_feathers-1.0/src/wagtail_feathers/templates/wagtail_feathers/icons/solid/heroicon-stop-circle-solid.svg +3 -0
  772. wagtail_feathers-1.0/src/wagtail_feathers/templates/wagtail_feathers/icons/solid/heroicon-stop-solid.svg +3 -0
  773. wagtail_feathers-1.0/src/wagtail_feathers/templates/wagtail_feathers/icons/solid/heroicon-strikethrough-solid.svg +3 -0
  774. wagtail_feathers-1.0/src/wagtail_feathers/templates/wagtail_feathers/icons/solid/heroicon-sun-solid.svg +3 -0
  775. wagtail_feathers-1.0/src/wagtail_feathers/templates/wagtail_feathers/icons/solid/heroicon-swatch-solid.svg +4 -0
  776. wagtail_feathers-1.0/src/wagtail_feathers/templates/wagtail_feathers/icons/solid/heroicon-table-cells-solid.svg +3 -0
  777. wagtail_feathers-1.0/src/wagtail_feathers/templates/wagtail_feathers/icons/solid/heroicon-tag-solid.svg +3 -0
  778. wagtail_feathers-1.0/src/wagtail_feathers/templates/wagtail_feathers/icons/solid/heroicon-ticket-solid.svg +3 -0
  779. wagtail_feathers-1.0/src/wagtail_feathers/templates/wagtail_feathers/icons/solid/heroicon-trash-solid.svg +3 -0
  780. wagtail_feathers-1.0/src/wagtail_feathers/templates/wagtail_feathers/icons/solid/heroicon-trophy-solid.svg +3 -0
  781. wagtail_feathers-1.0/src/wagtail_feathers/templates/wagtail_feathers/icons/solid/heroicon-truck-solid.svg +5 -0
  782. wagtail_feathers-1.0/src/wagtail_feathers/templates/wagtail_feathers/icons/solid/heroicon-tv-solid.svg +4 -0
  783. wagtail_feathers-1.0/src/wagtail_feathers/templates/wagtail_feathers/icons/solid/heroicon-underline-solid.svg +3 -0
  784. wagtail_feathers-1.0/src/wagtail_feathers/templates/wagtail_feathers/icons/solid/heroicon-user-circle-solid.svg +3 -0
  785. wagtail_feathers-1.0/src/wagtail_feathers/templates/wagtail_feathers/icons/solid/heroicon-user-group-solid.svg +4 -0
  786. wagtail_feathers-1.0/src/wagtail_feathers/templates/wagtail_feathers/icons/solid/heroicon-user-minus-solid.svg +3 -0
  787. wagtail_feathers-1.0/src/wagtail_feathers/templates/wagtail_feathers/icons/solid/heroicon-user-plus-solid.svg +3 -0
  788. wagtail_feathers-1.0/src/wagtail_feathers/templates/wagtail_feathers/icons/solid/heroicon-user-solid.svg +3 -0
  789. wagtail_feathers-1.0/src/wagtail_feathers/templates/wagtail_feathers/icons/solid/heroicon-users-solid.svg +3 -0
  790. wagtail_feathers-1.0/src/wagtail_feathers/templates/wagtail_feathers/icons/solid/heroicon-variable-solid.svg +3 -0
  791. wagtail_feathers-1.0/src/wagtail_feathers/templates/wagtail_feathers/icons/solid/heroicon-video-camera-slash-solid.svg +3 -0
  792. wagtail_feathers-1.0/src/wagtail_feathers/templates/wagtail_feathers/icons/solid/heroicon-video-camera-solid.svg +3 -0
  793. wagtail_feathers-1.0/src/wagtail_feathers/templates/wagtail_feathers/icons/solid/heroicon-view-columns-solid.svg +3 -0
  794. wagtail_feathers-1.0/src/wagtail_feathers/templates/wagtail_feathers/icons/solid/heroicon-viewfinder-circle-solid.svg +3 -0
  795. wagtail_feathers-1.0/src/wagtail_feathers/templates/wagtail_feathers/icons/solid/heroicon-wallet-solid.svg +3 -0
  796. wagtail_feathers-1.0/src/wagtail_feathers/templates/wagtail_feathers/icons/solid/heroicon-wifi-solid.svg +3 -0
  797. wagtail_feathers-1.0/src/wagtail_feathers/templates/wagtail_feathers/icons/solid/heroicon-window-solid.svg +3 -0
  798. wagtail_feathers-1.0/src/wagtail_feathers/templates/wagtail_feathers/icons/solid/heroicon-wrench-screwdriver-solid.svg +5 -0
  799. wagtail_feathers-1.0/src/wagtail_feathers/templates/wagtail_feathers/icons/solid/heroicon-wrench-solid.svg +3 -0
  800. wagtail_feathers-1.0/src/wagtail_feathers/templates/wagtail_feathers/icons/solid/heroicon-x-circle-solid.svg +3 -0
  801. wagtail_feathers-1.0/src/wagtail_feathers/templates/wagtail_feathers/icons/solid/heroicon-x-mark-solid.svg +3 -0
  802. wagtail_feathers-1.0/src/wagtail_feathers/templates/wagtail_feathers/preview/static_embed_block.html +20 -0
  803. wagtail_feathers-1.0/src/wagtail_feathers/templates/wagtail_feathers/seo/meta.html +118 -0
  804. wagtail_feathers-1.0/src/wagtail_feathers/templates/wagtail_feathers/seo/structured_data.html +63 -0
  805. wagtail_feathers-1.0/src/wagtail_feathers/templates/wagtail_feathers/tags/reading_time_display.html +18 -0
  806. wagtail_feathers-1.0/src/wagtail_feathers/templates/wagtail_feathers/templatetags/_footer_text.html +0 -0
  807. wagtail_feathers-1.0/src/wagtail_feathers/templates/wagtail_feathers/templatetags/_mobile_menu_items.html +18 -0
  808. wagtail_feathers-1.0/src/wagtail_feathers/templates/wagtail_feathers/templatetags/_svg_icon.html +24 -0
  809. wagtail_feathers-1.0/src/wagtail_feathers/templates/wagtail_feathers/templatetags/_top_menu_items.html +31 -0
  810. wagtail_feathers-1.0/src/wagtail_feathers/templates/wagtail_feathers/templatetags/breadcrumbs.html +24 -0
  811. wagtail_feathers-1.0/src/wagtail_feathers/templates/wagtail_feathers/templatetags/category_breadcrumbs.html +161 -0
  812. wagtail_feathers-1.0/src/wagtail_feathers/templates/wagtail_feathers/templatetags/category_navigation.html +147 -0
  813. wagtail_feathers-1.0/src/wagtail_feathers/templates/wagtail_feathers/templatetags/category_tree.html +151 -0
  814. wagtail_feathers-1.0/src/wagtail_feathers/templates/wagtail_feathers/templatetags/social_media_links.html +49 -0
  815. wagtail_feathers-1.0/src/wagtail_feathers/templates/wagtail_feathers/widgets/checkbox_taxonomy.html +36 -0
  816. wagtail_feathers-1.0/src/wagtail_feathers/templatetags/__init__.py +0 -0
  817. wagtail_feathers-1.0/src/wagtail_feathers/templatetags/category_tags.py +162 -0
  818. wagtail_feathers-1.0/src/wagtail_feathers/templatetags/feathers_tags.py +67 -0
  819. wagtail_feathers-1.0/src/wagtail_feathers/templatetags/navigation_tags.py +175 -0
  820. wagtail_feathers-1.0/src/wagtail_feathers/templatetags/pagination_tags.py +10 -0
  821. wagtail_feathers-1.0/src/wagtail_feathers/templatetags/placeholder_tags.py +50 -0
  822. wagtail_feathers-1.0/src/wagtail_feathers/templatetags/querystring_tags.py +21 -0
  823. wagtail_feathers-1.0/src/wagtail_feathers/templatetags/reading_time_tags.py +232 -0
  824. wagtail_feathers-1.0/src/wagtail_feathers/templatetags/seo_tags.py +228 -0
  825. wagtail_feathers-1.0/src/wagtail_feathers/templatetags/social_tags.py +45 -0
  826. wagtail_feathers-1.0/src/wagtail_feathers/templatetags/svg_tags.py +122 -0
  827. wagtail_feathers-1.0/src/wagtail_feathers/templatetags/tocbot_tags.py +37 -0
  828. wagtail_feathers-1.0/src/wagtail_feathers/themes.py +745 -0
  829. wagtail_feathers-1.0/src/wagtail_feathers/utils/__init__.py +0 -0
  830. wagtail_feathers-1.0/src/wagtail_feathers/utils/query.py +19 -0
  831. wagtail_feathers-1.0/src/wagtail_feathers/version.py +45 -0
  832. wagtail_feathers-1.0/src/wagtail_feathers/views.py +70 -0
  833. wagtail_feathers-1.0/src/wagtail_feathers/viewsets/__init__.py +40 -0
  834. wagtail_feathers-1.0/src/wagtail_feathers/viewsets/author.py +12 -0
  835. wagtail_feathers-1.0/src/wagtail_feathers/viewsets/choosers.py +162 -0
  836. wagtail_feathers-1.0/src/wagtail_feathers/viewsets/components.py +24 -0
  837. wagtail_feathers-1.0/src/wagtail_feathers/viewsets/faq_chooser.py +9 -0
  838. wagtail_feathers-1.0/src/wagtail_feathers/viewsets/geographic.py +24 -0
  839. wagtail_feathers-1.0/src/wagtail_feathers/viewsets/navigation.py +71 -0
  840. wagtail_feathers-1.0/src/wagtail_feathers/viewsets/person.py +21 -0
  841. wagtail_feathers-1.0/src/wagtail_feathers/viewsets/social.py +13 -0
  842. wagtail_feathers-1.0/src/wagtail_feathers/viewsets/taxonomy.py +177 -0
  843. wagtail_feathers-1.0/src/wagtail_feathers/viewsets/viewset_groups.py +109 -0
  844. wagtail_feathers-1.0/src/wagtail_feathers/wagtail_hooks.py +271 -0
  845. wagtail_feathers-1.0/src/wagtail_feathers/widgets.py +3 -0
  846. wagtail_feathers-1.0/tests/__init__.py +0 -0
  847. wagtail_feathers-1.0/tests/conftest.py +22 -0
  848. wagtail_feathers-1.0/tests/settings.py +162 -0
  849. wagtail_feathers-1.0/tests/test_multisite_simple.py +184 -0
  850. wagtail_feathers-1.0/tests/test_multisite_themes.py +456 -0
  851. wagtail_feathers-1.0/tests/test_related_pages.py +115 -0
  852. wagtail_feathers-1.0/tests/test_struct_values.py +119 -0
  853. wagtail_feathers-1.0/tests/test_taxonomy.py +626 -0
  854. wagtail_feathers-1.0/tests/test_theme_integration.py +153 -0
  855. wagtail_feathers-1.0/tests/test_themes.py +707 -0
  856. wagtail_feathers-1.0/tests/urls.py +25 -0
  857. wagtail_feathers-1.0/tox.ini +54 -0
  858. 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