wagtail-feathers 1.0b1__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 (837) hide show
  1. wagtail_feathers-1.0b1/DEMO_ENHANCEMENT_PLAN.md +353 -0
  2. wagtail_feathers-1.0b1/DEVELOPMENT.md +222 -0
  3. wagtail_feathers-1.0b1/LICENSE +29 -0
  4. wagtail_feathers-1.0b1/MANIFEST.in +28 -0
  5. wagtail_feathers-1.0b1/PKG-INFO +798 -0
  6. wagtail_feathers-1.0b1/README.md +751 -0
  7. wagtail_feathers-1.0b1/demo/README.md +118 -0
  8. wagtail_feathers-1.0b1/demo/manage.py +22 -0
  9. wagtail_feathers-1.0b1/demo/requirements.txt +6 -0
  10. wagtail_feathers-1.0b1/demo/settings.py +162 -0
  11. wagtail_feathers-1.0b1/demo/showcase/__init__.py +0 -0
  12. wagtail_feathers-1.0b1/demo/showcase/apps.py +6 -0
  13. wagtail_feathers-1.0b1/demo/showcase/management/__init__.py +0 -0
  14. wagtail_feathers-1.0b1/demo/showcase/management/commands/__init__.py +0 -0
  15. wagtail_feathers-1.0b1/demo/showcase/management/commands/setup_demo_data.py +124 -0
  16. wagtail_feathers-1.0b1/demo/showcase/migrations/0001_initial.py +150 -0
  17. wagtail_feathers-1.0b1/demo/showcase/migrations/__init__.py +0 -0
  18. wagtail_feathers-1.0b1/demo/showcase/models.py +282 -0
  19. wagtail_feathers-1.0b1/demo/showcase/viewsets.py +12 -0
  20. wagtail_feathers-1.0b1/demo/showcase/wagtail_hooks.py +7 -0
  21. wagtail_feathers-1.0b1/demo/themes/quantum/static/assets/stimulus-CZA9Too6.js +5 -0
  22. wagtail_feathers-1.0b1/demo/themes/quantum/static/css/admin.css +1 -0
  23. wagtail_feathers-1.0b1/demo/themes/quantum/static/css/main.css +1 -0
  24. wagtail_feathers-1.0b1/demo/themes/quantum/static/fonts/FiraCode-Regular.woff2 +0 -0
  25. wagtail_feathers-1.0b1/demo/themes/quantum/static/fonts/PublicSans-Black.woff2 +0 -0
  26. wagtail_feathers-1.0b1/demo/themes/quantum/static/fonts/PublicSans-BlackItalic.woff2 +0 -0
  27. wagtail_feathers-1.0b1/demo/themes/quantum/static/fonts/PublicSans-Bold.woff2 +0 -0
  28. wagtail_feathers-1.0b1/demo/themes/quantum/static/fonts/PublicSans-BoldItalic.woff2 +0 -0
  29. wagtail_feathers-1.0b1/demo/themes/quantum/static/fonts/PublicSans-Italic.woff2 +0 -0
  30. wagtail_feathers-1.0b1/demo/themes/quantum/static/fonts/PublicSans-Light.woff2 +0 -0
  31. wagtail_feathers-1.0b1/demo/themes/quantum/static/fonts/PublicSans-Regular.woff2 +0 -0
  32. wagtail_feathers-1.0b1/demo/themes/quantum/static/fonts/PublicSans-SemiBold.woff2 +0 -0
  33. wagtail_feathers-1.0b1/demo/themes/quantum/static/fonts/PublicSans-SemiBoldItalic.woff2 +0 -0
  34. wagtail_feathers-1.0b1/demo/themes/quantum/static/fonts/PublicSans-Thin.woff2 +0 -0
  35. wagtail_feathers-1.0b1/demo/themes/quantum/static/images/placeholder-image.webp +0 -0
  36. wagtail_feathers-1.0b1/demo/themes/quantum/static/js/main.js +5 -0
  37. wagtail_feathers-1.0b1/demo/themes/quantum/static/js/scrollspy.js +1 -0
  38. wagtail_feathers-1.0b1/demo/themes/quantum/static/js/stimulus_admin_feathers.js +1 -0
  39. wagtail_feathers-1.0b1/demo/themes/quantum/static/js/theme.js +1 -0
  40. wagtail_feathers-1.0b1/demo/themes/quantum/templates/400.html +45 -0
  41. wagtail_feathers-1.0b1/demo/themes/quantum/templates/403.html +45 -0
  42. wagtail_feathers-1.0b1/demo/themes/quantum/templates/404.html +49 -0
  43. wagtail_feathers-1.0b1/demo/themes/quantum/templates/500.html +47 -0
  44. wagtail_feathers-1.0b1/demo/themes/quantum/templates/base.html +56 -0
  45. wagtail_feathers-1.0b1/demo/themes/quantum/templates/base_content_page.html +15 -0
  46. wagtail_feathers-1.0b1/demo/themes/quantum/templates/base_page.html +10 -0
  47. wagtail_feathers-1.0b1/demo/themes/quantum/templates/components/_article_card.html +72 -0
  48. wagtail_feathers-1.0b1/demo/themes/quantum/templates/components/_locale_selector.html +47 -0
  49. wagtail_feathers-1.0b1/demo/themes/quantum/templates/components/_main_featured_article.html +78 -0
  50. wagtail_feathers-1.0b1/demo/themes/quantum/templates/components/_pagination.html +66 -0
  51. wagtail_feathers-1.0b1/demo/themes/quantum/templates/components/_secondary_featured_articles.html +79 -0
  52. wagtail_feathers-1.0b1/demo/themes/quantum/templates/components/_social_media_links.html +12 -0
  53. wagtail_feathers-1.0b1/demo/themes/quantum/templates/components/_theme_switcher.html +23 -0
  54. wagtail_feathers-1.0b1/demo/themes/quantum/templates/components/footer.html +107 -0
  55. wagtail_feathers-1.0b1/demo/themes/quantum/templates/components/header.html +101 -0
  56. wagtail_feathers-1.0b1/demo/themes/quantum/templates/includes/contact_addresses.html +35 -0
  57. wagtail_feathers-1.0b1/demo/themes/quantum/templates/pages/_article_list_item.html +0 -0
  58. wagtail_feathers-1.0b1/demo/themes/quantum/templates/pages/article_index_page.html +76 -0
  59. wagtail_feathers-1.0b1/demo/themes/quantum/templates/pages/article_page--christmas.html +62 -0
  60. wagtail_feathers-1.0b1/demo/themes/quantum/templates/pages/article_page--featured.html +62 -0
  61. wagtail_feathers-1.0b1/demo/themes/quantum/templates/pages/article_page.html +66 -0
  62. wagtail_feathers-1.0b1/demo/themes/quantum/templates/pages/form_page--newsletter.html +33 -0
  63. wagtail_feathers-1.0b1/demo/themes/quantum/templates/pages/form_page--newsletter_landing.html +36 -0
  64. wagtail_feathers-1.0b1/demo/themes/quantum/templates/pages/form_page.html +45 -0
  65. wagtail_feathers-1.0b1/demo/themes/quantum/templates/pages/form_page_landing.html +28 -0
  66. wagtail_feathers-1.0b1/demo/themes/quantum/templates/pages/home_page.html +47 -0
  67. wagtail_feathers-1.0b1/demo/themes/quantum/templates/pages/web_page--landing.html +19 -0
  68. wagtail_feathers-1.0b1/demo/themes/quantum/templates/pages/web_page--portfolio.html +27 -0
  69. wagtail_feathers-1.0b1/demo/themes/quantum/templates/pages/web_page.html +13 -0
  70. wagtail_feathers-1.0b1/demo/themes/quantum/templates/pages/welcome_page.html +52 -0
  71. wagtail_feathers-1.0b1/demo/themes/quantum/theme.json +75 -0
  72. wagtail_feathers-1.0b1/demo/urls.py +22 -0
  73. wagtail_feathers-1.0b1/demo/wsgi.py +11 -0
  74. wagtail_feathers-1.0b1/pyproject.toml +149 -0
  75. wagtail_feathers-1.0b1/src/.DS_Store +0 -0
  76. wagtail_feathers-1.0b1/src/wagtail_feathers/__init__.py +7 -0
  77. wagtail_feathers-1.0b1/src/wagtail_feathers/apps.py +9 -0
  78. wagtail_feathers-1.0b1/src/wagtail_feathers/blocks.py +1214 -0
  79. wagtail_feathers-1.0b1/src/wagtail_feathers/context_processors.py +71 -0
  80. wagtail_feathers-1.0b1/src/wagtail_feathers/factories.py +360 -0
  81. wagtail_feathers-1.0b1/src/wagtail_feathers/fields.py +39 -0
  82. wagtail_feathers-1.0b1/src/wagtail_feathers/filters.py +10 -0
  83. wagtail_feathers-1.0b1/src/wagtail_feathers/fixtures/sample_taxonomy.json +462 -0
  84. wagtail_feathers-1.0b1/src/wagtail_feathers/forms.py +101 -0
  85. wagtail_feathers-1.0b1/src/wagtail_feathers/helpers.py +65 -0
  86. wagtail_feathers-1.0b1/src/wagtail_feathers/management/__init__.py +0 -0
  87. wagtail_feathers-1.0b1/src/wagtail_feathers/management/commands/__init__.py +0 -0
  88. wagtail_feathers-1.0b1/src/wagtail_feathers/management/commands/create_sample_taxonomy.py +222 -0
  89. wagtail_feathers-1.0b1/src/wagtail_feathers/management/commands/manage_categories.py +177 -0
  90. wagtail_feathers-1.0b1/src/wagtail_feathers/management/commands/themes.py +256 -0
  91. wagtail_feathers-1.0b1/src/wagtail_feathers/migrations/0001_initial.py +497 -0
  92. wagtail_feathers-1.0b1/src/wagtail_feathers/migrations/__init__.py +0 -0
  93. wagtail_feathers-1.0b1/src/wagtail_feathers/mixins.py +16 -0
  94. wagtail_feathers-1.0b1/src/wagtail_feathers/models/__init__.py +75 -0
  95. wagtail_feathers-1.0b1/src/wagtail_feathers/models/author.py +107 -0
  96. wagtail_feathers-1.0b1/src/wagtail_feathers/models/base.py +469 -0
  97. wagtail_feathers-1.0b1/src/wagtail_feathers/models/errors.py +82 -0
  98. wagtail_feathers-1.0b1/src/wagtail_feathers/models/faq.py +130 -0
  99. wagtail_feathers-1.0b1/src/wagtail_feathers/models/geographic.py +28 -0
  100. wagtail_feathers-1.0b1/src/wagtail_feathers/models/inline.py +80 -0
  101. wagtail_feathers-1.0b1/src/wagtail_feathers/models/navigation.py +343 -0
  102. wagtail_feathers-1.0b1/src/wagtail_feathers/models/person.py +110 -0
  103. wagtail_feathers-1.0b1/src/wagtail_feathers/models/reading_time.py +300 -0
  104. wagtail_feathers-1.0b1/src/wagtail_feathers/models/seo.py +405 -0
  105. wagtail_feathers-1.0b1/src/wagtail_feathers/models/settings.py +150 -0
  106. wagtail_feathers-1.0b1/src/wagtail_feathers/models/social.py +90 -0
  107. wagtail_feathers-1.0b1/src/wagtail_feathers/models/specialized_pages.py +270 -0
  108. wagtail_feathers-1.0b1/src/wagtail_feathers/models/taxonomy.py +724 -0
  109. wagtail_feathers-1.0b1/src/wagtail_feathers/models/utils.py +9 -0
  110. wagtail_feathers-1.0b1/src/wagtail_feathers/panels.py +65 -0
  111. wagtail_feathers-1.0b1/src/wagtail_feathers/static/.DS_Store +0 -0
  112. wagtail_feathers-1.0b1/src/wagtail_feathers/static/images/placeholder-image.webp +0 -0
  113. wagtail_feathers-1.0b1/src/wagtail_feathers/struct_values.py +67 -0
  114. wagtail_feathers-1.0b1/src/wagtail_feathers/templates/wagtail_feathers/admin/category_add_child.html +90 -0
  115. wagtail_feathers-1.0b1/src/wagtail_feathers/templates/wagtail_feathers/admin/category_move.html +90 -0
  116. wagtail_feathers-1.0b1/src/wagtail_feathers/templates/wagtail_feathers/admin/edit_handlers/enhanced_classifier_inline_panel.html +169 -0
  117. wagtail_feathers-1.0b1/src/wagtail_feathers/templates/wagtail_feathers/admin/edit_handlers/inline_panel.html +236 -0
  118. wagtail_feathers-1.0b1/src/wagtail_feathers/templates/wagtail_feathers/blocks/_nested_navigation_link_block.html +21 -0
  119. wagtail_feathers-1.0b1/src/wagtail_feathers/templates/wagtail_feathers/blocks/card_block.html +44 -0
  120. wagtail_feathers-1.0b1/src/wagtail_feathers/templates/wagtail_feathers/blocks/card_section_block.html +21 -0
  121. wagtail_feathers-1.0b1/src/wagtail_feathers/templates/wagtail_feathers/blocks/cards_container_block.html +34 -0
  122. wagtail_feathers-1.0b1/src/wagtail_feathers/templates/wagtail_feathers/blocks/cta_block.html +140 -0
  123. wagtail_feathers-1.0b1/src/wagtail_feathers/templates/wagtail_feathers/blocks/embed_block.html +17 -0
  124. wagtail_feathers-1.0b1/src/wagtail_feathers/templates/wagtail_feathers/blocks/header_image_block.html +28 -0
  125. wagtail_feathers-1.0b1/src/wagtail_feathers/templates/wagtail_feathers/blocks/heading_block.html +21 -0
  126. wagtail_feathers-1.0b1/src/wagtail_feathers/templates/wagtail_feathers/blocks/hero_block.html +116 -0
  127. wagtail_feathers-1.0b1/src/wagtail_feathers/templates/wagtail_feathers/blocks/image_block.html +22 -0
  128. wagtail_feathers-1.0b1/src/wagtail_feathers/templates/wagtail_feathers/blocks/image_collection_gallery_block.html +117 -0
  129. wagtail_feathers-1.0b1/src/wagtail_feathers/templates/wagtail_feathers/blocks/image_grid_block.html +124 -0
  130. wagtail_feathers-1.0b1/src/wagtail_feathers/templates/wagtail_feathers/blocks/page_heading_block.html +6 -0
  131. wagtail_feathers-1.0b1/src/wagtail_feathers/templates/wagtail_feathers/blocks/paragraph_block.html +4 -0
  132. wagtail_feathers-1.0b1/src/wagtail_feathers/templates/wagtail_feathers/blocks/quote_block.html +5 -0
  133. wagtail_feathers-1.0b1/src/wagtail_feathers/templates/wagtail_feathers/blocks/submenu_divider_block.html +7 -0
  134. wagtail_feathers-1.0b1/src/wagtail_feathers/templates/wagtail_feathers/icons/lucid/facebook.svg +14 -0
  135. wagtail_feathers-1.0b1/src/wagtail_feathers/templates/wagtail_feathers/icons/lucid/feather.svg +16 -0
  136. wagtail_feathers-1.0b1/src/wagtail_feathers/templates/wagtail_feathers/icons/lucid/instagram.svg +16 -0
  137. wagtail_feathers-1.0b1/src/wagtail_feathers/templates/wagtail_feathers/icons/lucid/linkedin.svg +16 -0
  138. wagtail_feathers-1.0b1/src/wagtail_feathers/templates/wagtail_feathers/icons/lucid/x.svg +15 -0
  139. wagtail_feathers-1.0b1/src/wagtail_feathers/templates/wagtail_feathers/icons/lucid/youtube.svg +15 -0
  140. wagtail_feathers-1.0b1/src/wagtail_feathers/templates/wagtail_feathers/icons/outline/heroicon-academic-cap-outline.svg +3 -0
  141. wagtail_feathers-1.0b1/src/wagtail_feathers/templates/wagtail_feathers/icons/outline/heroicon-adjustments-horizontal-outline.svg +3 -0
  142. wagtail_feathers-1.0b1/src/wagtail_feathers/templates/wagtail_feathers/icons/outline/heroicon-adjustments-vertical-outline.svg +3 -0
  143. wagtail_feathers-1.0b1/src/wagtail_feathers/templates/wagtail_feathers/icons/outline/heroicon-archive-box-arrow-down-outline.svg +3 -0
  144. wagtail_feathers-1.0b1/src/wagtail_feathers/templates/wagtail_feathers/icons/outline/heroicon-archive-box-outline.svg +3 -0
  145. wagtail_feathers-1.0b1/src/wagtail_feathers/templates/wagtail_feathers/icons/outline/heroicon-archive-box-x-mark-outline.svg +3 -0
  146. wagtail_feathers-1.0b1/src/wagtail_feathers/templates/wagtail_feathers/icons/outline/heroicon-arrow-down-circle-outline.svg +3 -0
  147. wagtail_feathers-1.0b1/src/wagtail_feathers/templates/wagtail_feathers/icons/outline/heroicon-arrow-down-left-outline.svg +3 -0
  148. wagtail_feathers-1.0b1/src/wagtail_feathers/templates/wagtail_feathers/icons/outline/heroicon-arrow-down-on-square-outline.svg +3 -0
  149. wagtail_feathers-1.0b1/src/wagtail_feathers/templates/wagtail_feathers/icons/outline/heroicon-arrow-down-on-square-stack-outline.svg +3 -0
  150. wagtail_feathers-1.0b1/src/wagtail_feathers/templates/wagtail_feathers/icons/outline/heroicon-arrow-down-outline.svg +3 -0
  151. wagtail_feathers-1.0b1/src/wagtail_feathers/templates/wagtail_feathers/icons/outline/heroicon-arrow-down-right-outline.svg +3 -0
  152. wagtail_feathers-1.0b1/src/wagtail_feathers/templates/wagtail_feathers/icons/outline/heroicon-arrow-down-tray-outline.svg +3 -0
  153. wagtail_feathers-1.0b1/src/wagtail_feathers/templates/wagtail_feathers/icons/outline/heroicon-arrow-left-circle-outline.svg +3 -0
  154. wagtail_feathers-1.0b1/src/wagtail_feathers/templates/wagtail_feathers/icons/outline/heroicon-arrow-left-end-on-rectangle-outline.svg +3 -0
  155. wagtail_feathers-1.0b1/src/wagtail_feathers/templates/wagtail_feathers/icons/outline/heroicon-arrow-left-on-rectangle-outline.svg +3 -0
  156. wagtail_feathers-1.0b1/src/wagtail_feathers/templates/wagtail_feathers/icons/outline/heroicon-arrow-left-outline.svg +3 -0
  157. wagtail_feathers-1.0b1/src/wagtail_feathers/templates/wagtail_feathers/icons/outline/heroicon-arrow-left-start-on-rectangle-outline.svg +3 -0
  158. wagtail_feathers-1.0b1/src/wagtail_feathers/templates/wagtail_feathers/icons/outline/heroicon-arrow-long-down-outline.svg +3 -0
  159. wagtail_feathers-1.0b1/src/wagtail_feathers/templates/wagtail_feathers/icons/outline/heroicon-arrow-long-left-outline.svg +3 -0
  160. wagtail_feathers-1.0b1/src/wagtail_feathers/templates/wagtail_feathers/icons/outline/heroicon-arrow-long-right-outline.svg +3 -0
  161. wagtail_feathers-1.0b1/src/wagtail_feathers/templates/wagtail_feathers/icons/outline/heroicon-arrow-long-up-outline.svg +3 -0
  162. wagtail_feathers-1.0b1/src/wagtail_feathers/templates/wagtail_feathers/icons/outline/heroicon-arrow-path-outline.svg +3 -0
  163. wagtail_feathers-1.0b1/src/wagtail_feathers/templates/wagtail_feathers/icons/outline/heroicon-arrow-path-rounded-square-outline.svg +3 -0
  164. wagtail_feathers-1.0b1/src/wagtail_feathers/templates/wagtail_feathers/icons/outline/heroicon-arrow-right-circle-outline.svg +3 -0
  165. wagtail_feathers-1.0b1/src/wagtail_feathers/templates/wagtail_feathers/icons/outline/heroicon-arrow-right-end-on-rectangle-outline.svg +3 -0
  166. wagtail_feathers-1.0b1/src/wagtail_feathers/templates/wagtail_feathers/icons/outline/heroicon-arrow-right-on-rectangle-outline.svg +3 -0
  167. wagtail_feathers-1.0b1/src/wagtail_feathers/templates/wagtail_feathers/icons/outline/heroicon-arrow-right-outline.svg +3 -0
  168. wagtail_feathers-1.0b1/src/wagtail_feathers/templates/wagtail_feathers/icons/outline/heroicon-arrow-right-start-on-rectangle-outline.svg +3 -0
  169. wagtail_feathers-1.0b1/src/wagtail_feathers/templates/wagtail_feathers/icons/outline/heroicon-arrow-small-down-outline.svg +3 -0
  170. wagtail_feathers-1.0b1/src/wagtail_feathers/templates/wagtail_feathers/icons/outline/heroicon-arrow-small-left-outline.svg +3 -0
  171. wagtail_feathers-1.0b1/src/wagtail_feathers/templates/wagtail_feathers/icons/outline/heroicon-arrow-small-right-outline.svg +3 -0
  172. wagtail_feathers-1.0b1/src/wagtail_feathers/templates/wagtail_feathers/icons/outline/heroicon-arrow-small-up-outline.svg +3 -0
  173. wagtail_feathers-1.0b1/src/wagtail_feathers/templates/wagtail_feathers/icons/outline/heroicon-arrow-top-right-on-square-outline.svg +3 -0
  174. wagtail_feathers-1.0b1/src/wagtail_feathers/templates/wagtail_feathers/icons/outline/heroicon-arrow-trending-down-outline.svg +3 -0
  175. wagtail_feathers-1.0b1/src/wagtail_feathers/templates/wagtail_feathers/icons/outline/heroicon-arrow-trending-up-outline.svg +3 -0
  176. wagtail_feathers-1.0b1/src/wagtail_feathers/templates/wagtail_feathers/icons/outline/heroicon-arrow-turn-down-left-outline.svg +3 -0
  177. wagtail_feathers-1.0b1/src/wagtail_feathers/templates/wagtail_feathers/icons/outline/heroicon-arrow-turn-down-right-outline.svg +3 -0
  178. wagtail_feathers-1.0b1/src/wagtail_feathers/templates/wagtail_feathers/icons/outline/heroicon-arrow-turn-left-down-outline.svg +3 -0
  179. wagtail_feathers-1.0b1/src/wagtail_feathers/templates/wagtail_feathers/icons/outline/heroicon-arrow-turn-left-up-outline.svg +3 -0
  180. wagtail_feathers-1.0b1/src/wagtail_feathers/templates/wagtail_feathers/icons/outline/heroicon-arrow-turn-right-down-outline.svg +3 -0
  181. wagtail_feathers-1.0b1/src/wagtail_feathers/templates/wagtail_feathers/icons/outline/heroicon-arrow-turn-right-up-outline.svg +3 -0
  182. wagtail_feathers-1.0b1/src/wagtail_feathers/templates/wagtail_feathers/icons/outline/heroicon-arrow-turn-up-left-outline.svg +3 -0
  183. wagtail_feathers-1.0b1/src/wagtail_feathers/templates/wagtail_feathers/icons/outline/heroicon-arrow-turn-up-right-outline.svg +3 -0
  184. wagtail_feathers-1.0b1/src/wagtail_feathers/templates/wagtail_feathers/icons/outline/heroicon-arrow-up-circle-outline.svg +3 -0
  185. wagtail_feathers-1.0b1/src/wagtail_feathers/templates/wagtail_feathers/icons/outline/heroicon-arrow-up-left-outline.svg +3 -0
  186. wagtail_feathers-1.0b1/src/wagtail_feathers/templates/wagtail_feathers/icons/outline/heroicon-arrow-up-on-square-outline.svg +3 -0
  187. wagtail_feathers-1.0b1/src/wagtail_feathers/templates/wagtail_feathers/icons/outline/heroicon-arrow-up-on-square-stack-outline.svg +3 -0
  188. wagtail_feathers-1.0b1/src/wagtail_feathers/templates/wagtail_feathers/icons/outline/heroicon-arrow-up-outline.svg +3 -0
  189. wagtail_feathers-1.0b1/src/wagtail_feathers/templates/wagtail_feathers/icons/outline/heroicon-arrow-up-right-outline.svg +3 -0
  190. wagtail_feathers-1.0b1/src/wagtail_feathers/templates/wagtail_feathers/icons/outline/heroicon-arrow-up-tray-outline.svg +3 -0
  191. wagtail_feathers-1.0b1/src/wagtail_feathers/templates/wagtail_feathers/icons/outline/heroicon-arrow-uturn-down-outline.svg +3 -0
  192. wagtail_feathers-1.0b1/src/wagtail_feathers/templates/wagtail_feathers/icons/outline/heroicon-arrow-uturn-left-outline.svg +3 -0
  193. wagtail_feathers-1.0b1/src/wagtail_feathers/templates/wagtail_feathers/icons/outline/heroicon-arrow-uturn-right-outline.svg +3 -0
  194. wagtail_feathers-1.0b1/src/wagtail_feathers/templates/wagtail_feathers/icons/outline/heroicon-arrow-uturn-up-outline.svg +3 -0
  195. wagtail_feathers-1.0b1/src/wagtail_feathers/templates/wagtail_feathers/icons/outline/heroicon-arrows-pointing-in-outline.svg +3 -0
  196. wagtail_feathers-1.0b1/src/wagtail_feathers/templates/wagtail_feathers/icons/outline/heroicon-arrows-pointing-out-outline.svg +3 -0
  197. wagtail_feathers-1.0b1/src/wagtail_feathers/templates/wagtail_feathers/icons/outline/heroicon-arrows-right-left-outline.svg +3 -0
  198. wagtail_feathers-1.0b1/src/wagtail_feathers/templates/wagtail_feathers/icons/outline/heroicon-arrows-up-down-outline.svg +3 -0
  199. wagtail_feathers-1.0b1/src/wagtail_feathers/templates/wagtail_feathers/icons/outline/heroicon-at-symbol-outline.svg +3 -0
  200. wagtail_feathers-1.0b1/src/wagtail_feathers/templates/wagtail_feathers/icons/outline/heroicon-backspace-outline.svg +3 -0
  201. wagtail_feathers-1.0b1/src/wagtail_feathers/templates/wagtail_feathers/icons/outline/heroicon-backward-outline.svg +3 -0
  202. wagtail_feathers-1.0b1/src/wagtail_feathers/templates/wagtail_feathers/icons/outline/heroicon-banknotes-outline.svg +3 -0
  203. wagtail_feathers-1.0b1/src/wagtail_feathers/templates/wagtail_feathers/icons/outline/heroicon-bars-2-outline.svg +3 -0
  204. wagtail_feathers-1.0b1/src/wagtail_feathers/templates/wagtail_feathers/icons/outline/heroicon-bars-3-bottom-left-outline.svg +3 -0
  205. wagtail_feathers-1.0b1/src/wagtail_feathers/templates/wagtail_feathers/icons/outline/heroicon-bars-3-bottom-right-outline.svg +3 -0
  206. wagtail_feathers-1.0b1/src/wagtail_feathers/templates/wagtail_feathers/icons/outline/heroicon-bars-3-center-left-outline.svg +3 -0
  207. wagtail_feathers-1.0b1/src/wagtail_feathers/templates/wagtail_feathers/icons/outline/heroicon-bars-3-outline.svg +3 -0
  208. wagtail_feathers-1.0b1/src/wagtail_feathers/templates/wagtail_feathers/icons/outline/heroicon-bars-4-outline.svg +3 -0
  209. wagtail_feathers-1.0b1/src/wagtail_feathers/templates/wagtail_feathers/icons/outline/heroicon-bars-arrow-down-outline.svg +3 -0
  210. wagtail_feathers-1.0b1/src/wagtail_feathers/templates/wagtail_feathers/icons/outline/heroicon-bars-arrow-up-outline.svg +3 -0
  211. wagtail_feathers-1.0b1/src/wagtail_feathers/templates/wagtail_feathers/icons/outline/heroicon-battery-0-outline.svg +3 -0
  212. wagtail_feathers-1.0b1/src/wagtail_feathers/templates/wagtail_feathers/icons/outline/heroicon-battery-100-outline.svg +3 -0
  213. wagtail_feathers-1.0b1/src/wagtail_feathers/templates/wagtail_feathers/icons/outline/heroicon-battery-50-outline.svg +3 -0
  214. wagtail_feathers-1.0b1/src/wagtail_feathers/templates/wagtail_feathers/icons/outline/heroicon-beaker-outline.svg +3 -0
  215. wagtail_feathers-1.0b1/src/wagtail_feathers/templates/wagtail_feathers/icons/outline/heroicon-bell-alert-outline.svg +3 -0
  216. wagtail_feathers-1.0b1/src/wagtail_feathers/templates/wagtail_feathers/icons/outline/heroicon-bell-outline.svg +3 -0
  217. wagtail_feathers-1.0b1/src/wagtail_feathers/templates/wagtail_feathers/icons/outline/heroicon-bell-slash-outline.svg +3 -0
  218. wagtail_feathers-1.0b1/src/wagtail_feathers/templates/wagtail_feathers/icons/outline/heroicon-bell-snooze-outline.svg +3 -0
  219. wagtail_feathers-1.0b1/src/wagtail_feathers/templates/wagtail_feathers/icons/outline/heroicon-bold-outline.svg +3 -0
  220. wagtail_feathers-1.0b1/src/wagtail_feathers/templates/wagtail_feathers/icons/outline/heroicon-bolt-outline.svg +3 -0
  221. wagtail_feathers-1.0b1/src/wagtail_feathers/templates/wagtail_feathers/icons/outline/heroicon-bolt-slash-outline.svg +3 -0
  222. wagtail_feathers-1.0b1/src/wagtail_feathers/templates/wagtail_feathers/icons/outline/heroicon-book-open-outline.svg +3 -0
  223. wagtail_feathers-1.0b1/src/wagtail_feathers/templates/wagtail_feathers/icons/outline/heroicon-bookmark-outline.svg +3 -0
  224. wagtail_feathers-1.0b1/src/wagtail_feathers/templates/wagtail_feathers/icons/outline/heroicon-bookmark-slash-outline.svg +3 -0
  225. wagtail_feathers-1.0b1/src/wagtail_feathers/templates/wagtail_feathers/icons/outline/heroicon-bookmark-square-outline.svg +3 -0
  226. wagtail_feathers-1.0b1/src/wagtail_feathers/templates/wagtail_feathers/icons/outline/heroicon-briefcase-outline.svg +3 -0
  227. wagtail_feathers-1.0b1/src/wagtail_feathers/templates/wagtail_feathers/icons/outline/heroicon-bug-ant-outline.svg +3 -0
  228. wagtail_feathers-1.0b1/src/wagtail_feathers/templates/wagtail_feathers/icons/outline/heroicon-building-library-outline.svg +3 -0
  229. wagtail_feathers-1.0b1/src/wagtail_feathers/templates/wagtail_feathers/icons/outline/heroicon-building-office-2-outline.svg +3 -0
  230. wagtail_feathers-1.0b1/src/wagtail_feathers/templates/wagtail_feathers/icons/outline/heroicon-building-office-outline.svg +3 -0
  231. wagtail_feathers-1.0b1/src/wagtail_feathers/templates/wagtail_feathers/icons/outline/heroicon-building-storefront-outline.svg +3 -0
  232. wagtail_feathers-1.0b1/src/wagtail_feathers/templates/wagtail_feathers/icons/outline/heroicon-cake-outline.svg +3 -0
  233. wagtail_feathers-1.0b1/src/wagtail_feathers/templates/wagtail_feathers/icons/outline/heroicon-calculator-outline.svg +3 -0
  234. wagtail_feathers-1.0b1/src/wagtail_feathers/templates/wagtail_feathers/icons/outline/heroicon-calendar-date-range-outline.svg +3 -0
  235. wagtail_feathers-1.0b1/src/wagtail_feathers/templates/wagtail_feathers/icons/outline/heroicon-calendar-days-outline.svg +3 -0
  236. wagtail_feathers-1.0b1/src/wagtail_feathers/templates/wagtail_feathers/icons/outline/heroicon-calendar-outline.svg +3 -0
  237. wagtail_feathers-1.0b1/src/wagtail_feathers/templates/wagtail_feathers/icons/outline/heroicon-camera-outline.svg +4 -0
  238. wagtail_feathers-1.0b1/src/wagtail_feathers/templates/wagtail_feathers/icons/outline/heroicon-chart-bar-outline.svg +3 -0
  239. wagtail_feathers-1.0b1/src/wagtail_feathers/templates/wagtail_feathers/icons/outline/heroicon-chart-bar-square-outline.svg +3 -0
  240. wagtail_feathers-1.0b1/src/wagtail_feathers/templates/wagtail_feathers/icons/outline/heroicon-chart-pie-outline.svg +4 -0
  241. wagtail_feathers-1.0b1/src/wagtail_feathers/templates/wagtail_feathers/icons/outline/heroicon-chat-bubble-bottom-center-outline.svg +3 -0
  242. wagtail_feathers-1.0b1/src/wagtail_feathers/templates/wagtail_feathers/icons/outline/heroicon-chat-bubble-bottom-center-text-outline.svg +3 -0
  243. wagtail_feathers-1.0b1/src/wagtail_feathers/templates/wagtail_feathers/icons/outline/heroicon-chat-bubble-left-ellipsis-outline.svg +3 -0
  244. wagtail_feathers-1.0b1/src/wagtail_feathers/templates/wagtail_feathers/icons/outline/heroicon-chat-bubble-left-outline.svg +3 -0
  245. wagtail_feathers-1.0b1/src/wagtail_feathers/templates/wagtail_feathers/icons/outline/heroicon-chat-bubble-left-right-outline.svg +3 -0
  246. wagtail_feathers-1.0b1/src/wagtail_feathers/templates/wagtail_feathers/icons/outline/heroicon-chat-bubble-oval-left-ellipsis-outline.svg +3 -0
  247. wagtail_feathers-1.0b1/src/wagtail_feathers/templates/wagtail_feathers/icons/outline/heroicon-chat-bubble-oval-left-outline.svg +3 -0
  248. wagtail_feathers-1.0b1/src/wagtail_feathers/templates/wagtail_feathers/icons/outline/heroicon-check-badge-outline.svg +3 -0
  249. wagtail_feathers-1.0b1/src/wagtail_feathers/templates/wagtail_feathers/icons/outline/heroicon-check-circle-outline.svg +3 -0
  250. wagtail_feathers-1.0b1/src/wagtail_feathers/templates/wagtail_feathers/icons/outline/heroicon-check-outline.svg +3 -0
  251. wagtail_feathers-1.0b1/src/wagtail_feathers/templates/wagtail_feathers/icons/outline/heroicon-chevron-double-down-outline.svg +3 -0
  252. wagtail_feathers-1.0b1/src/wagtail_feathers/templates/wagtail_feathers/icons/outline/heroicon-chevron-double-left-outline.svg +3 -0
  253. wagtail_feathers-1.0b1/src/wagtail_feathers/templates/wagtail_feathers/icons/outline/heroicon-chevron-double-right-outline.svg +3 -0
  254. wagtail_feathers-1.0b1/src/wagtail_feathers/templates/wagtail_feathers/icons/outline/heroicon-chevron-double-up-outline.svg +4 -0
  255. wagtail_feathers-1.0b1/src/wagtail_feathers/templates/wagtail_feathers/icons/outline/heroicon-chevron-down-outline.svg +3 -0
  256. wagtail_feathers-1.0b1/src/wagtail_feathers/templates/wagtail_feathers/icons/outline/heroicon-chevron-left-outline.svg +3 -0
  257. wagtail_feathers-1.0b1/src/wagtail_feathers/templates/wagtail_feathers/icons/outline/heroicon-chevron-right-outline.svg +3 -0
  258. wagtail_feathers-1.0b1/src/wagtail_feathers/templates/wagtail_feathers/icons/outline/heroicon-chevron-up-down-outline.svg +3 -0
  259. wagtail_feathers-1.0b1/src/wagtail_feathers/templates/wagtail_feathers/icons/outline/heroicon-chevron-up-outline.svg +3 -0
  260. wagtail_feathers-1.0b1/src/wagtail_feathers/templates/wagtail_feathers/icons/outline/heroicon-circle-stack-outline.svg +3 -0
  261. wagtail_feathers-1.0b1/src/wagtail_feathers/templates/wagtail_feathers/icons/outline/heroicon-clipboard-document-check-outline.svg +3 -0
  262. wagtail_feathers-1.0b1/src/wagtail_feathers/templates/wagtail_feathers/icons/outline/heroicon-clipboard-document-list-outline.svg +3 -0
  263. wagtail_feathers-1.0b1/src/wagtail_feathers/templates/wagtail_feathers/icons/outline/heroicon-clipboard-document-outline.svg +3 -0
  264. wagtail_feathers-1.0b1/src/wagtail_feathers/templates/wagtail_feathers/icons/outline/heroicon-clipboard-outline.svg +3 -0
  265. wagtail_feathers-1.0b1/src/wagtail_feathers/templates/wagtail_feathers/icons/outline/heroicon-clock-outline.svg +3 -0
  266. wagtail_feathers-1.0b1/src/wagtail_feathers/templates/wagtail_feathers/icons/outline/heroicon-cloud-arrow-down-outline.svg +3 -0
  267. wagtail_feathers-1.0b1/src/wagtail_feathers/templates/wagtail_feathers/icons/outline/heroicon-cloud-arrow-up-outline.svg +3 -0
  268. wagtail_feathers-1.0b1/src/wagtail_feathers/templates/wagtail_feathers/icons/outline/heroicon-cloud-outline.svg +3 -0
  269. wagtail_feathers-1.0b1/src/wagtail_feathers/templates/wagtail_feathers/icons/outline/heroicon-code-bracket-outline.svg +3 -0
  270. wagtail_feathers-1.0b1/src/wagtail_feathers/templates/wagtail_feathers/icons/outline/heroicon-code-bracket-square-outline.svg +3 -0
  271. wagtail_feathers-1.0b1/src/wagtail_feathers/templates/wagtail_feathers/icons/outline/heroicon-cog-6-tooth-outline.svg +4 -0
  272. wagtail_feathers-1.0b1/src/wagtail_feathers/templates/wagtail_feathers/icons/outline/heroicon-cog-8-tooth-outline.svg +4 -0
  273. wagtail_feathers-1.0b1/src/wagtail_feathers/templates/wagtail_feathers/icons/outline/heroicon-cog-outline.svg +3 -0
  274. wagtail_feathers-1.0b1/src/wagtail_feathers/templates/wagtail_feathers/icons/outline/heroicon-command-line-outline.svg +3 -0
  275. wagtail_feathers-1.0b1/src/wagtail_feathers/templates/wagtail_feathers/icons/outline/heroicon-computer-desktop-outline.svg +3 -0
  276. wagtail_feathers-1.0b1/src/wagtail_feathers/templates/wagtail_feathers/icons/outline/heroicon-cpu-chip-outline.svg +3 -0
  277. wagtail_feathers-1.0b1/src/wagtail_feathers/templates/wagtail_feathers/icons/outline/heroicon-credit-card-outline.svg +3 -0
  278. wagtail_feathers-1.0b1/src/wagtail_feathers/templates/wagtail_feathers/icons/outline/heroicon-cube-outline.svg +3 -0
  279. wagtail_feathers-1.0b1/src/wagtail_feathers/templates/wagtail_feathers/icons/outline/heroicon-cube-transparent-outline.svg +3 -0
  280. wagtail_feathers-1.0b1/src/wagtail_feathers/templates/wagtail_feathers/icons/outline/heroicon-currency-bangladeshi-outline.svg +3 -0
  281. wagtail_feathers-1.0b1/src/wagtail_feathers/templates/wagtail_feathers/icons/outline/heroicon-currency-dollar-outline.svg +3 -0
  282. wagtail_feathers-1.0b1/src/wagtail_feathers/templates/wagtail_feathers/icons/outline/heroicon-currency-euro-outline.svg +3 -0
  283. wagtail_feathers-1.0b1/src/wagtail_feathers/templates/wagtail_feathers/icons/outline/heroicon-currency-pound-outline.svg +3 -0
  284. wagtail_feathers-1.0b1/src/wagtail_feathers/templates/wagtail_feathers/icons/outline/heroicon-currency-rupee-outline.svg +3 -0
  285. wagtail_feathers-1.0b1/src/wagtail_feathers/templates/wagtail_feathers/icons/outline/heroicon-currency-yen-outline.svg +3 -0
  286. wagtail_feathers-1.0b1/src/wagtail_feathers/templates/wagtail_feathers/icons/outline/heroicon-cursor-arrow-rays-outline.svg +3 -0
  287. wagtail_feathers-1.0b1/src/wagtail_feathers/templates/wagtail_feathers/icons/outline/heroicon-cursor-arrow-ripple-outline.svg +3 -0
  288. wagtail_feathers-1.0b1/src/wagtail_feathers/templates/wagtail_feathers/icons/outline/heroicon-device-phone-mobile-outline.svg +3 -0
  289. wagtail_feathers-1.0b1/src/wagtail_feathers/templates/wagtail_feathers/icons/outline/heroicon-device-tablet-outline.svg +3 -0
  290. wagtail_feathers-1.0b1/src/wagtail_feathers/templates/wagtail_feathers/icons/outline/heroicon-divide-outline.svg +3 -0
  291. wagtail_feathers-1.0b1/src/wagtail_feathers/templates/wagtail_feathers/icons/outline/heroicon-document-arrow-down-outline.svg +3 -0
  292. wagtail_feathers-1.0b1/src/wagtail_feathers/templates/wagtail_feathers/icons/outline/heroicon-document-arrow-up-outline.svg +3 -0
  293. wagtail_feathers-1.0b1/src/wagtail_feathers/templates/wagtail_feathers/icons/outline/heroicon-document-chart-bar-outline.svg +3 -0
  294. wagtail_feathers-1.0b1/src/wagtail_feathers/templates/wagtail_feathers/icons/outline/heroicon-document-check-outline.svg +3 -0
  295. wagtail_feathers-1.0b1/src/wagtail_feathers/templates/wagtail_feathers/icons/outline/heroicon-document-currency-bangladeshi-outline.svg +3 -0
  296. wagtail_feathers-1.0b1/src/wagtail_feathers/templates/wagtail_feathers/icons/outline/heroicon-document-currency-dollar-outline.svg +3 -0
  297. wagtail_feathers-1.0b1/src/wagtail_feathers/templates/wagtail_feathers/icons/outline/heroicon-document-currency-euro-outline.svg +3 -0
  298. wagtail_feathers-1.0b1/src/wagtail_feathers/templates/wagtail_feathers/icons/outline/heroicon-document-currency-pound-outline.svg +3 -0
  299. wagtail_feathers-1.0b1/src/wagtail_feathers/templates/wagtail_feathers/icons/outline/heroicon-document-currency-rupee-outline.svg +3 -0
  300. wagtail_feathers-1.0b1/src/wagtail_feathers/templates/wagtail_feathers/icons/outline/heroicon-document-currency-yen-outline.svg +3 -0
  301. wagtail_feathers-1.0b1/src/wagtail_feathers/templates/wagtail_feathers/icons/outline/heroicon-document-duplicate-outline.svg +3 -0
  302. wagtail_feathers-1.0b1/src/wagtail_feathers/templates/wagtail_feathers/icons/outline/heroicon-document-magnifying-glass-outline.svg +3 -0
  303. wagtail_feathers-1.0b1/src/wagtail_feathers/templates/wagtail_feathers/icons/outline/heroicon-document-minus-outline.svg +3 -0
  304. wagtail_feathers-1.0b1/src/wagtail_feathers/templates/wagtail_feathers/icons/outline/heroicon-document-outline.svg +3 -0
  305. wagtail_feathers-1.0b1/src/wagtail_feathers/templates/wagtail_feathers/icons/outline/heroicon-document-plus-outline.svg +3 -0
  306. wagtail_feathers-1.0b1/src/wagtail_feathers/templates/wagtail_feathers/icons/outline/heroicon-document-text-outline.svg +3 -0
  307. wagtail_feathers-1.0b1/src/wagtail_feathers/templates/wagtail_feathers/icons/outline/heroicon-ellipsis-horizontal-circle-outline.svg +3 -0
  308. wagtail_feathers-1.0b1/src/wagtail_feathers/templates/wagtail_feathers/icons/outline/heroicon-ellipsis-horizontal-outline.svg +3 -0
  309. wagtail_feathers-1.0b1/src/wagtail_feathers/templates/wagtail_feathers/icons/outline/heroicon-ellipsis-vertical-outline.svg +3 -0
  310. wagtail_feathers-1.0b1/src/wagtail_feathers/templates/wagtail_feathers/icons/outline/heroicon-envelope-open-outline.svg +3 -0
  311. wagtail_feathers-1.0b1/src/wagtail_feathers/templates/wagtail_feathers/icons/outline/heroicon-envelope-outline.svg +3 -0
  312. wagtail_feathers-1.0b1/src/wagtail_feathers/templates/wagtail_feathers/icons/outline/heroicon-equals-outline.svg +3 -0
  313. wagtail_feathers-1.0b1/src/wagtail_feathers/templates/wagtail_feathers/icons/outline/heroicon-exclamation-circle-outline.svg +3 -0
  314. wagtail_feathers-1.0b1/src/wagtail_feathers/templates/wagtail_feathers/icons/outline/heroicon-exclamation-triangle-outline.svg +3 -0
  315. wagtail_feathers-1.0b1/src/wagtail_feathers/templates/wagtail_feathers/icons/outline/heroicon-eye-dropper-outline.svg +3 -0
  316. wagtail_feathers-1.0b1/src/wagtail_feathers/templates/wagtail_feathers/icons/outline/heroicon-eye-outline.svg +4 -0
  317. wagtail_feathers-1.0b1/src/wagtail_feathers/templates/wagtail_feathers/icons/outline/heroicon-eye-slash-outline.svg +3 -0
  318. wagtail_feathers-1.0b1/src/wagtail_feathers/templates/wagtail_feathers/icons/outline/heroicon-face-frown-outline.svg +3 -0
  319. wagtail_feathers-1.0b1/src/wagtail_feathers/templates/wagtail_feathers/icons/outline/heroicon-face-smile-outline.svg +3 -0
  320. wagtail_feathers-1.0b1/src/wagtail_feathers/templates/wagtail_feathers/icons/outline/heroicon-film-outline.svg +3 -0
  321. wagtail_feathers-1.0b1/src/wagtail_feathers/templates/wagtail_feathers/icons/outline/heroicon-finger-print-outline.svg +3 -0
  322. wagtail_feathers-1.0b1/src/wagtail_feathers/templates/wagtail_feathers/icons/outline/heroicon-fire-outline.svg +4 -0
  323. wagtail_feathers-1.0b1/src/wagtail_feathers/templates/wagtail_feathers/icons/outline/heroicon-flag-outline.svg +3 -0
  324. wagtail_feathers-1.0b1/src/wagtail_feathers/templates/wagtail_feathers/icons/outline/heroicon-folder-arrow-down-outline.svg +3 -0
  325. wagtail_feathers-1.0b1/src/wagtail_feathers/templates/wagtail_feathers/icons/outline/heroicon-folder-minus-outline.svg +3 -0
  326. wagtail_feathers-1.0b1/src/wagtail_feathers/templates/wagtail_feathers/icons/outline/heroicon-folder-open-outline.svg +3 -0
  327. wagtail_feathers-1.0b1/src/wagtail_feathers/templates/wagtail_feathers/icons/outline/heroicon-folder-outline.svg +3 -0
  328. wagtail_feathers-1.0b1/src/wagtail_feathers/templates/wagtail_feathers/icons/outline/heroicon-folder-plus-outline.svg +3 -0
  329. wagtail_feathers-1.0b1/src/wagtail_feathers/templates/wagtail_feathers/icons/outline/heroicon-forward-outline.svg +3 -0
  330. wagtail_feathers-1.0b1/src/wagtail_feathers/templates/wagtail_feathers/icons/outline/heroicon-funnel-outline.svg +3 -0
  331. wagtail_feathers-1.0b1/src/wagtail_feathers/templates/wagtail_feathers/icons/outline/heroicon-gif-outline.svg +3 -0
  332. wagtail_feathers-1.0b1/src/wagtail_feathers/templates/wagtail_feathers/icons/outline/heroicon-gift-outline.svg +3 -0
  333. wagtail_feathers-1.0b1/src/wagtail_feathers/templates/wagtail_feathers/icons/outline/heroicon-gift-top-outline.svg +3 -0
  334. wagtail_feathers-1.0b1/src/wagtail_feathers/templates/wagtail_feathers/icons/outline/heroicon-globe-alt-outline.svg +3 -0
  335. wagtail_feathers-1.0b1/src/wagtail_feathers/templates/wagtail_feathers/icons/outline/heroicon-globe-americas-outline.svg +3 -0
  336. wagtail_feathers-1.0b1/src/wagtail_feathers/templates/wagtail_feathers/icons/outline/heroicon-globe-asia-australia-outline.svg +3 -0
  337. wagtail_feathers-1.0b1/src/wagtail_feathers/templates/wagtail_feathers/icons/outline/heroicon-globe-europe-africa-outline.svg +3 -0
  338. wagtail_feathers-1.0b1/src/wagtail_feathers/templates/wagtail_feathers/icons/outline/heroicon-h1-outline.svg +3 -0
  339. wagtail_feathers-1.0b1/src/wagtail_feathers/templates/wagtail_feathers/icons/outline/heroicon-h2-outline.svg +3 -0
  340. wagtail_feathers-1.0b1/src/wagtail_feathers/templates/wagtail_feathers/icons/outline/heroicon-h3-outline.svg +3 -0
  341. wagtail_feathers-1.0b1/src/wagtail_feathers/templates/wagtail_feathers/icons/outline/heroicon-hand-raised-outline.svg +3 -0
  342. wagtail_feathers-1.0b1/src/wagtail_feathers/templates/wagtail_feathers/icons/outline/heroicon-hand-thumb-down-outline.svg +3 -0
  343. wagtail_feathers-1.0b1/src/wagtail_feathers/templates/wagtail_feathers/icons/outline/heroicon-hand-thumb-up-outline.svg +3 -0
  344. wagtail_feathers-1.0b1/src/wagtail_feathers/templates/wagtail_feathers/icons/outline/heroicon-hashtag-outline.svg +3 -0
  345. wagtail_feathers-1.0b1/src/wagtail_feathers/templates/wagtail_feathers/icons/outline/heroicon-heart-outline.svg +3 -0
  346. wagtail_feathers-1.0b1/src/wagtail_feathers/templates/wagtail_feathers/icons/outline/heroicon-home-modern-outline.svg +3 -0
  347. wagtail_feathers-1.0b1/src/wagtail_feathers/templates/wagtail_feathers/icons/outline/heroicon-home-outline.svg +3 -0
  348. wagtail_feathers-1.0b1/src/wagtail_feathers/templates/wagtail_feathers/icons/outline/heroicon-identification-outline.svg +3 -0
  349. wagtail_feathers-1.0b1/src/wagtail_feathers/templates/wagtail_feathers/icons/outline/heroicon-inbox-arrow-down-outline.svg +3 -0
  350. wagtail_feathers-1.0b1/src/wagtail_feathers/templates/wagtail_feathers/icons/outline/heroicon-inbox-outline.svg +3 -0
  351. wagtail_feathers-1.0b1/src/wagtail_feathers/templates/wagtail_feathers/icons/outline/heroicon-inbox-stack-outline.svg +3 -0
  352. wagtail_feathers-1.0b1/src/wagtail_feathers/templates/wagtail_feathers/icons/outline/heroicon-information-circle-outline.svg +3 -0
  353. wagtail_feathers-1.0b1/src/wagtail_feathers/templates/wagtail_feathers/icons/outline/heroicon-italic-outline.svg +3 -0
  354. wagtail_feathers-1.0b1/src/wagtail_feathers/templates/wagtail_feathers/icons/outline/heroicon-key-outline.svg +3 -0
  355. wagtail_feathers-1.0b1/src/wagtail_feathers/templates/wagtail_feathers/icons/outline/heroicon-language-outline.svg +3 -0
  356. wagtail_feathers-1.0b1/src/wagtail_feathers/templates/wagtail_feathers/icons/outline/heroicon-lifebuoy-outline.svg +3 -0
  357. wagtail_feathers-1.0b1/src/wagtail_feathers/templates/wagtail_feathers/icons/outline/heroicon-light-bulb-outline.svg +3 -0
  358. wagtail_feathers-1.0b1/src/wagtail_feathers/templates/wagtail_feathers/icons/outline/heroicon-link-outline.svg +3 -0
  359. wagtail_feathers-1.0b1/src/wagtail_feathers/templates/wagtail_feathers/icons/outline/heroicon-link-slash-outline.svg +3 -0
  360. wagtail_feathers-1.0b1/src/wagtail_feathers/templates/wagtail_feathers/icons/outline/heroicon-list-bullet-outline.svg +3 -0
  361. wagtail_feathers-1.0b1/src/wagtail_feathers/templates/wagtail_feathers/icons/outline/heroicon-lock-closed-outline.svg +3 -0
  362. wagtail_feathers-1.0b1/src/wagtail_feathers/templates/wagtail_feathers/icons/outline/heroicon-lock-open-outline.svg +3 -0
  363. wagtail_feathers-1.0b1/src/wagtail_feathers/templates/wagtail_feathers/icons/outline/heroicon-magnifying-glass-circle-outline.svg +3 -0
  364. wagtail_feathers-1.0b1/src/wagtail_feathers/templates/wagtail_feathers/icons/outline/heroicon-magnifying-glass-minus-outline.svg +3 -0
  365. wagtail_feathers-1.0b1/src/wagtail_feathers/templates/wagtail_feathers/icons/outline/heroicon-magnifying-glass-outline.svg +3 -0
  366. wagtail_feathers-1.0b1/src/wagtail_feathers/templates/wagtail_feathers/icons/outline/heroicon-magnifying-glass-plus-outline.svg +3 -0
  367. wagtail_feathers-1.0b1/src/wagtail_feathers/templates/wagtail_feathers/icons/outline/heroicon-map-outline.svg +3 -0
  368. wagtail_feathers-1.0b1/src/wagtail_feathers/templates/wagtail_feathers/icons/outline/heroicon-map-pin-outline.svg +4 -0
  369. wagtail_feathers-1.0b1/src/wagtail_feathers/templates/wagtail_feathers/icons/outline/heroicon-megaphone-outline.svg +3 -0
  370. wagtail_feathers-1.0b1/src/wagtail_feathers/templates/wagtail_feathers/icons/outline/heroicon-microphone-outline.svg +3 -0
  371. wagtail_feathers-1.0b1/src/wagtail_feathers/templates/wagtail_feathers/icons/outline/heroicon-minus-circle-outline.svg +3 -0
  372. wagtail_feathers-1.0b1/src/wagtail_feathers/templates/wagtail_feathers/icons/outline/heroicon-minus-outline.svg +3 -0
  373. wagtail_feathers-1.0b1/src/wagtail_feathers/templates/wagtail_feathers/icons/outline/heroicon-minus-small-outline.svg +3 -0
  374. wagtail_feathers-1.0b1/src/wagtail_feathers/templates/wagtail_feathers/icons/outline/heroicon-moon-outline.svg +3 -0
  375. wagtail_feathers-1.0b1/src/wagtail_feathers/templates/wagtail_feathers/icons/outline/heroicon-musical-note-outline.svg +3 -0
  376. wagtail_feathers-1.0b1/src/wagtail_feathers/templates/wagtail_feathers/icons/outline/heroicon-newspaper-outline.svg +3 -0
  377. wagtail_feathers-1.0b1/src/wagtail_feathers/templates/wagtail_feathers/icons/outline/heroicon-no-symbol-outline.svg +3 -0
  378. wagtail_feathers-1.0b1/src/wagtail_feathers/templates/wagtail_feathers/icons/outline/heroicon-numbered-list-outline.svg +3 -0
  379. wagtail_feathers-1.0b1/src/wagtail_feathers/templates/wagtail_feathers/icons/outline/heroicon-paint-brush-outline.svg +3 -0
  380. wagtail_feathers-1.0b1/src/wagtail_feathers/templates/wagtail_feathers/icons/outline/heroicon-paper-airplane-outline.svg +3 -0
  381. wagtail_feathers-1.0b1/src/wagtail_feathers/templates/wagtail_feathers/icons/outline/heroicon-paper-clip-outline.svg +3 -0
  382. wagtail_feathers-1.0b1/src/wagtail_feathers/templates/wagtail_feathers/icons/outline/heroicon-pause-circle-outline.svg +3 -0
  383. wagtail_feathers-1.0b1/src/wagtail_feathers/templates/wagtail_feathers/icons/outline/heroicon-pause-outline.svg +3 -0
  384. wagtail_feathers-1.0b1/src/wagtail_feathers/templates/wagtail_feathers/icons/outline/heroicon-pencil-outline.svg +3 -0
  385. wagtail_feathers-1.0b1/src/wagtail_feathers/templates/wagtail_feathers/icons/outline/heroicon-pencil-square-outline.svg +3 -0
  386. wagtail_feathers-1.0b1/src/wagtail_feathers/templates/wagtail_feathers/icons/outline/heroicon-percent-badge-outline.svg +3 -0
  387. wagtail_feathers-1.0b1/src/wagtail_feathers/templates/wagtail_feathers/icons/outline/heroicon-phone-arrow-down-left-outline.svg +3 -0
  388. wagtail_feathers-1.0b1/src/wagtail_feathers/templates/wagtail_feathers/icons/outline/heroicon-phone-arrow-up-right-outline.svg +3 -0
  389. wagtail_feathers-1.0b1/src/wagtail_feathers/templates/wagtail_feathers/icons/outline/heroicon-phone-outline.svg +3 -0
  390. wagtail_feathers-1.0b1/src/wagtail_feathers/templates/wagtail_feathers/icons/outline/heroicon-phone-x-mark-outline.svg +3 -0
  391. wagtail_feathers-1.0b1/src/wagtail_feathers/templates/wagtail_feathers/icons/outline/heroicon-photo-outline.svg +3 -0
  392. wagtail_feathers-1.0b1/src/wagtail_feathers/templates/wagtail_feathers/icons/outline/heroicon-play-circle-outline.svg +4 -0
  393. wagtail_feathers-1.0b1/src/wagtail_feathers/templates/wagtail_feathers/icons/outline/heroicon-play-outline.svg +3 -0
  394. wagtail_feathers-1.0b1/src/wagtail_feathers/templates/wagtail_feathers/icons/outline/heroicon-play-pause-outline.svg +3 -0
  395. wagtail_feathers-1.0b1/src/wagtail_feathers/templates/wagtail_feathers/icons/outline/heroicon-plus-circle-outline.svg +3 -0
  396. wagtail_feathers-1.0b1/src/wagtail_feathers/templates/wagtail_feathers/icons/outline/heroicon-plus-outline.svg +3 -0
  397. wagtail_feathers-1.0b1/src/wagtail_feathers/templates/wagtail_feathers/icons/outline/heroicon-plus-small-outline.svg +3 -0
  398. wagtail_feathers-1.0b1/src/wagtail_feathers/templates/wagtail_feathers/icons/outline/heroicon-power-outline.svg +3 -0
  399. wagtail_feathers-1.0b1/src/wagtail_feathers/templates/wagtail_feathers/icons/outline/heroicon-presentation-chart-bar-outline.svg +3 -0
  400. wagtail_feathers-1.0b1/src/wagtail_feathers/templates/wagtail_feathers/icons/outline/heroicon-presentation-chart-line-outline.svg +3 -0
  401. wagtail_feathers-1.0b1/src/wagtail_feathers/templates/wagtail_feathers/icons/outline/heroicon-printer-outline.svg +3 -0
  402. wagtail_feathers-1.0b1/src/wagtail_feathers/templates/wagtail_feathers/icons/outline/heroicon-puzzle-piece-outline.svg +3 -0
  403. wagtail_feathers-1.0b1/src/wagtail_feathers/templates/wagtail_feathers/icons/outline/heroicon-qr-code-outline.svg +4 -0
  404. wagtail_feathers-1.0b1/src/wagtail_feathers/templates/wagtail_feathers/icons/outline/heroicon-question-mark-circle-outline.svg +3 -0
  405. wagtail_feathers-1.0b1/src/wagtail_feathers/templates/wagtail_feathers/icons/outline/heroicon-queue-list-outline.svg +3 -0
  406. wagtail_feathers-1.0b1/src/wagtail_feathers/templates/wagtail_feathers/icons/outline/heroicon-radio-outline.svg +3 -0
  407. wagtail_feathers-1.0b1/src/wagtail_feathers/templates/wagtail_feathers/icons/outline/heroicon-receipt-percent-outline.svg +3 -0
  408. wagtail_feathers-1.0b1/src/wagtail_feathers/templates/wagtail_feathers/icons/outline/heroicon-receipt-refund-outline.svg +3 -0
  409. wagtail_feathers-1.0b1/src/wagtail_feathers/templates/wagtail_feathers/icons/outline/heroicon-rectangle-group-outline.svg +3 -0
  410. wagtail_feathers-1.0b1/src/wagtail_feathers/templates/wagtail_feathers/icons/outline/heroicon-rectangle-stack-outline.svg +3 -0
  411. wagtail_feathers-1.0b1/src/wagtail_feathers/templates/wagtail_feathers/icons/outline/heroicon-rocket-launch-outline.svg +3 -0
  412. wagtail_feathers-1.0b1/src/wagtail_feathers/templates/wagtail_feathers/icons/outline/heroicon-rss-outline.svg +3 -0
  413. wagtail_feathers-1.0b1/src/wagtail_feathers/templates/wagtail_feathers/icons/outline/heroicon-scale-outline.svg +3 -0
  414. wagtail_feathers-1.0b1/src/wagtail_feathers/templates/wagtail_feathers/icons/outline/heroicon-scissors-outline.svg +3 -0
  415. wagtail_feathers-1.0b1/src/wagtail_feathers/templates/wagtail_feathers/icons/outline/heroicon-server-outline.svg +3 -0
  416. wagtail_feathers-1.0b1/src/wagtail_feathers/templates/wagtail_feathers/icons/outline/heroicon-server-stack-outline.svg +3 -0
  417. wagtail_feathers-1.0b1/src/wagtail_feathers/templates/wagtail_feathers/icons/outline/heroicon-share-outline.svg +3 -0
  418. wagtail_feathers-1.0b1/src/wagtail_feathers/templates/wagtail_feathers/icons/outline/heroicon-shield-check-outline.svg +3 -0
  419. wagtail_feathers-1.0b1/src/wagtail_feathers/templates/wagtail_feathers/icons/outline/heroicon-shield-exclamation-outline.svg +3 -0
  420. wagtail_feathers-1.0b1/src/wagtail_feathers/templates/wagtail_feathers/icons/outline/heroicon-shopping-bag-outline.svg +3 -0
  421. wagtail_feathers-1.0b1/src/wagtail_feathers/templates/wagtail_feathers/icons/outline/heroicon-shopping-cart-outline.svg +3 -0
  422. wagtail_feathers-1.0b1/src/wagtail_feathers/templates/wagtail_feathers/icons/outline/heroicon-signal-outline.svg +3 -0
  423. wagtail_feathers-1.0b1/src/wagtail_feathers/templates/wagtail_feathers/icons/outline/heroicon-signal-slash-outline.svg +3 -0
  424. wagtail_feathers-1.0b1/src/wagtail_feathers/templates/wagtail_feathers/icons/outline/heroicon-slash-outline.svg +3 -0
  425. wagtail_feathers-1.0b1/src/wagtail_feathers/templates/wagtail_feathers/icons/outline/heroicon-sparkles-outline.svg +3 -0
  426. wagtail_feathers-1.0b1/src/wagtail_feathers/templates/wagtail_feathers/icons/outline/heroicon-speaker-wave-outline.svg +3 -0
  427. wagtail_feathers-1.0b1/src/wagtail_feathers/templates/wagtail_feathers/icons/outline/heroicon-speaker-x-mark-outline.svg +3 -0
  428. wagtail_feathers-1.0b1/src/wagtail_feathers/templates/wagtail_feathers/icons/outline/heroicon-square-2-stack-outline.svg +3 -0
  429. wagtail_feathers-1.0b1/src/wagtail_feathers/templates/wagtail_feathers/icons/outline/heroicon-square-3-stack-3d-outline.svg +3 -0
  430. wagtail_feathers-1.0b1/src/wagtail_feathers/templates/wagtail_feathers/icons/outline/heroicon-squares-2x2-outline.svg +3 -0
  431. wagtail_feathers-1.0b1/src/wagtail_feathers/templates/wagtail_feathers/icons/outline/heroicon-squares-plus-outline.svg +3 -0
  432. wagtail_feathers-1.0b1/src/wagtail_feathers/templates/wagtail_feathers/icons/outline/heroicon-star-outline.svg +3 -0
  433. wagtail_feathers-1.0b1/src/wagtail_feathers/templates/wagtail_feathers/icons/outline/heroicon-stop-circle-outline.svg +4 -0
  434. wagtail_feathers-1.0b1/src/wagtail_feathers/templates/wagtail_feathers/icons/outline/heroicon-stop-outline.svg +3 -0
  435. wagtail_feathers-1.0b1/src/wagtail_feathers/templates/wagtail_feathers/icons/outline/heroicon-strikethrough-outline.svg +3 -0
  436. wagtail_feathers-1.0b1/src/wagtail_feathers/templates/wagtail_feathers/icons/outline/heroicon-sun-outline.svg +3 -0
  437. wagtail_feathers-1.0b1/src/wagtail_feathers/templates/wagtail_feathers/icons/outline/heroicon-swatch-outline.svg +3 -0
  438. wagtail_feathers-1.0b1/src/wagtail_feathers/templates/wagtail_feathers/icons/outline/heroicon-table-cells-outline.svg +3 -0
  439. wagtail_feathers-1.0b1/src/wagtail_feathers/templates/wagtail_feathers/icons/outline/heroicon-tag-outline.svg +4 -0
  440. wagtail_feathers-1.0b1/src/wagtail_feathers/templates/wagtail_feathers/icons/outline/heroicon-ticket-outline.svg +3 -0
  441. wagtail_feathers-1.0b1/src/wagtail_feathers/templates/wagtail_feathers/icons/outline/heroicon-trash-outline.svg +3 -0
  442. wagtail_feathers-1.0b1/src/wagtail_feathers/templates/wagtail_feathers/icons/outline/heroicon-trophy-outline.svg +3 -0
  443. wagtail_feathers-1.0b1/src/wagtail_feathers/templates/wagtail_feathers/icons/outline/heroicon-truck-outline.svg +3 -0
  444. wagtail_feathers-1.0b1/src/wagtail_feathers/templates/wagtail_feathers/icons/outline/heroicon-tv-outline.svg +3 -0
  445. wagtail_feathers-1.0b1/src/wagtail_feathers/templates/wagtail_feathers/icons/outline/heroicon-underline-outline.svg +3 -0
  446. wagtail_feathers-1.0b1/src/wagtail_feathers/templates/wagtail_feathers/icons/outline/heroicon-user-circle-outline.svg +3 -0
  447. wagtail_feathers-1.0b1/src/wagtail_feathers/templates/wagtail_feathers/icons/outline/heroicon-user-group-outline.svg +3 -0
  448. wagtail_feathers-1.0b1/src/wagtail_feathers/templates/wagtail_feathers/icons/outline/heroicon-user-minus-outline.svg +3 -0
  449. wagtail_feathers-1.0b1/src/wagtail_feathers/templates/wagtail_feathers/icons/outline/heroicon-user-outline.svg +3 -0
  450. wagtail_feathers-1.0b1/src/wagtail_feathers/templates/wagtail_feathers/icons/outline/heroicon-user-plus-outline.svg +3 -0
  451. wagtail_feathers-1.0b1/src/wagtail_feathers/templates/wagtail_feathers/icons/outline/heroicon-users-outline.svg +3 -0
  452. wagtail_feathers-1.0b1/src/wagtail_feathers/templates/wagtail_feathers/icons/outline/heroicon-variable-outline.svg +3 -0
  453. wagtail_feathers-1.0b1/src/wagtail_feathers/templates/wagtail_feathers/icons/outline/heroicon-video-camera-outline.svg +3 -0
  454. wagtail_feathers-1.0b1/src/wagtail_feathers/templates/wagtail_feathers/icons/outline/heroicon-video-camera-slash-outline.svg +3 -0
  455. wagtail_feathers-1.0b1/src/wagtail_feathers/templates/wagtail_feathers/icons/outline/heroicon-view-columns-outline.svg +3 -0
  456. wagtail_feathers-1.0b1/src/wagtail_feathers/templates/wagtail_feathers/icons/outline/heroicon-viewfinder-circle-outline.svg +3 -0
  457. wagtail_feathers-1.0b1/src/wagtail_feathers/templates/wagtail_feathers/icons/outline/heroicon-wallet-outline.svg +3 -0
  458. wagtail_feathers-1.0b1/src/wagtail_feathers/templates/wagtail_feathers/icons/outline/heroicon-wifi-outline.svg +3 -0
  459. wagtail_feathers-1.0b1/src/wagtail_feathers/templates/wagtail_feathers/icons/outline/heroicon-window-outline.svg +3 -0
  460. wagtail_feathers-1.0b1/src/wagtail_feathers/templates/wagtail_feathers/icons/outline/heroicon-wrench-outline.svg +4 -0
  461. wagtail_feathers-1.0b1/src/wagtail_feathers/templates/wagtail_feathers/icons/outline/heroicon-wrench-screwdriver-outline.svg +3 -0
  462. wagtail_feathers-1.0b1/src/wagtail_feathers/templates/wagtail_feathers/icons/outline/heroicon-x-circle-outline.svg +3 -0
  463. wagtail_feathers-1.0b1/src/wagtail_feathers/templates/wagtail_feathers/icons/outline/heroicon-x-mark-outline.svg +3 -0
  464. wagtail_feathers-1.0b1/src/wagtail_feathers/templates/wagtail_feathers/icons/solid/heroicon-academic-cap-solid.svg +5 -0
  465. wagtail_feathers-1.0b1/src/wagtail_feathers/templates/wagtail_feathers/icons/solid/heroicon-adjustments-horizontal-solid.svg +3 -0
  466. wagtail_feathers-1.0b1/src/wagtail_feathers/templates/wagtail_feathers/icons/solid/heroicon-adjustments-vertical-solid.svg +3 -0
  467. wagtail_feathers-1.0b1/src/wagtail_feathers/templates/wagtail_feathers/icons/solid/heroicon-archive-box-arrow-down-solid.svg +4 -0
  468. wagtail_feathers-1.0b1/src/wagtail_feathers/templates/wagtail_feathers/icons/solid/heroicon-archive-box-solid.svg +4 -0
  469. wagtail_feathers-1.0b1/src/wagtail_feathers/templates/wagtail_feathers/icons/solid/heroicon-archive-box-x-mark-solid.svg +4 -0
  470. wagtail_feathers-1.0b1/src/wagtail_feathers/templates/wagtail_feathers/icons/solid/heroicon-arrow-down-circle-solid.svg +3 -0
  471. wagtail_feathers-1.0b1/src/wagtail_feathers/templates/wagtail_feathers/icons/solid/heroicon-arrow-down-left-solid.svg +3 -0
  472. wagtail_feathers-1.0b1/src/wagtail_feathers/templates/wagtail_feathers/icons/solid/heroicon-arrow-down-on-square-solid.svg +3 -0
  473. wagtail_feathers-1.0b1/src/wagtail_feathers/templates/wagtail_feathers/icons/solid/heroicon-arrow-down-on-square-stack-solid.svg +4 -0
  474. wagtail_feathers-1.0b1/src/wagtail_feathers/templates/wagtail_feathers/icons/solid/heroicon-arrow-down-right-solid.svg +3 -0
  475. wagtail_feathers-1.0b1/src/wagtail_feathers/templates/wagtail_feathers/icons/solid/heroicon-arrow-down-solid.svg +3 -0
  476. wagtail_feathers-1.0b1/src/wagtail_feathers/templates/wagtail_feathers/icons/solid/heroicon-arrow-down-tray-solid.svg +3 -0
  477. wagtail_feathers-1.0b1/src/wagtail_feathers/templates/wagtail_feathers/icons/solid/heroicon-arrow-left-circle-solid.svg +3 -0
  478. wagtail_feathers-1.0b1/src/wagtail_feathers/templates/wagtail_feathers/icons/solid/heroicon-arrow-left-end-on-rectangle-solid.svg +3 -0
  479. wagtail_feathers-1.0b1/src/wagtail_feathers/templates/wagtail_feathers/icons/solid/heroicon-arrow-left-on-rectangle-solid.svg +3 -0
  480. wagtail_feathers-1.0b1/src/wagtail_feathers/templates/wagtail_feathers/icons/solid/heroicon-arrow-left-solid.svg +3 -0
  481. wagtail_feathers-1.0b1/src/wagtail_feathers/templates/wagtail_feathers/icons/solid/heroicon-arrow-left-start-on-rectangle-solid.svg +3 -0
  482. wagtail_feathers-1.0b1/src/wagtail_feathers/templates/wagtail_feathers/icons/solid/heroicon-arrow-long-down-solid.svg +3 -0
  483. wagtail_feathers-1.0b1/src/wagtail_feathers/templates/wagtail_feathers/icons/solid/heroicon-arrow-long-left-solid.svg +3 -0
  484. wagtail_feathers-1.0b1/src/wagtail_feathers/templates/wagtail_feathers/icons/solid/heroicon-arrow-long-right-solid.svg +3 -0
  485. wagtail_feathers-1.0b1/src/wagtail_feathers/templates/wagtail_feathers/icons/solid/heroicon-arrow-long-up-solid.svg +3 -0
  486. wagtail_feathers-1.0b1/src/wagtail_feathers/templates/wagtail_feathers/icons/solid/heroicon-arrow-path-rounded-square-solid.svg +3 -0
  487. wagtail_feathers-1.0b1/src/wagtail_feathers/templates/wagtail_feathers/icons/solid/heroicon-arrow-path-solid.svg +3 -0
  488. wagtail_feathers-1.0b1/src/wagtail_feathers/templates/wagtail_feathers/icons/solid/heroicon-arrow-right-circle-solid.svg +3 -0
  489. wagtail_feathers-1.0b1/src/wagtail_feathers/templates/wagtail_feathers/icons/solid/heroicon-arrow-right-end-on-rectangle-solid.svg +3 -0
  490. wagtail_feathers-1.0b1/src/wagtail_feathers/templates/wagtail_feathers/icons/solid/heroicon-arrow-right-on-rectangle-solid.svg +3 -0
  491. wagtail_feathers-1.0b1/src/wagtail_feathers/templates/wagtail_feathers/icons/solid/heroicon-arrow-right-solid.svg +3 -0
  492. wagtail_feathers-1.0b1/src/wagtail_feathers/templates/wagtail_feathers/icons/solid/heroicon-arrow-right-start-on-rectangle-solid.svg +3 -0
  493. wagtail_feathers-1.0b1/src/wagtail_feathers/templates/wagtail_feathers/icons/solid/heroicon-arrow-small-down-solid.svg +3 -0
  494. wagtail_feathers-1.0b1/src/wagtail_feathers/templates/wagtail_feathers/icons/solid/heroicon-arrow-small-left-solid.svg +3 -0
  495. wagtail_feathers-1.0b1/src/wagtail_feathers/templates/wagtail_feathers/icons/solid/heroicon-arrow-small-right-solid.svg +3 -0
  496. wagtail_feathers-1.0b1/src/wagtail_feathers/templates/wagtail_feathers/icons/solid/heroicon-arrow-small-up-solid.svg +3 -0
  497. wagtail_feathers-1.0b1/src/wagtail_feathers/templates/wagtail_feathers/icons/solid/heroicon-arrow-top-right-on-square-solid.svg +3 -0
  498. wagtail_feathers-1.0b1/src/wagtail_feathers/templates/wagtail_feathers/icons/solid/heroicon-arrow-trending-down-solid.svg +3 -0
  499. wagtail_feathers-1.0b1/src/wagtail_feathers/templates/wagtail_feathers/icons/solid/heroicon-arrow-trending-up-solid.svg +3 -0
  500. wagtail_feathers-1.0b1/src/wagtail_feathers/templates/wagtail_feathers/icons/solid/heroicon-arrow-turn-down-left-solid.svg +3 -0
  501. wagtail_feathers-1.0b1/src/wagtail_feathers/templates/wagtail_feathers/icons/solid/heroicon-arrow-turn-down-right-solid.svg +3 -0
  502. wagtail_feathers-1.0b1/src/wagtail_feathers/templates/wagtail_feathers/icons/solid/heroicon-arrow-turn-left-down-solid.svg +3 -0
  503. wagtail_feathers-1.0b1/src/wagtail_feathers/templates/wagtail_feathers/icons/solid/heroicon-arrow-turn-left-up-solid.svg +3 -0
  504. wagtail_feathers-1.0b1/src/wagtail_feathers/templates/wagtail_feathers/icons/solid/heroicon-arrow-turn-right-down-solid.svg +3 -0
  505. wagtail_feathers-1.0b1/src/wagtail_feathers/templates/wagtail_feathers/icons/solid/heroicon-arrow-turn-right-up-solid.svg +3 -0
  506. wagtail_feathers-1.0b1/src/wagtail_feathers/templates/wagtail_feathers/icons/solid/heroicon-arrow-turn-up-left-solid.svg +3 -0
  507. wagtail_feathers-1.0b1/src/wagtail_feathers/templates/wagtail_feathers/icons/solid/heroicon-arrow-turn-up-right-solid.svg +3 -0
  508. wagtail_feathers-1.0b1/src/wagtail_feathers/templates/wagtail_feathers/icons/solid/heroicon-arrow-up-circle-solid.svg +3 -0
  509. wagtail_feathers-1.0b1/src/wagtail_feathers/templates/wagtail_feathers/icons/solid/heroicon-arrow-up-left-solid.svg +3 -0
  510. wagtail_feathers-1.0b1/src/wagtail_feathers/templates/wagtail_feathers/icons/solid/heroicon-arrow-up-on-square-solid.svg +3 -0
  511. wagtail_feathers-1.0b1/src/wagtail_feathers/templates/wagtail_feathers/icons/solid/heroicon-arrow-up-on-square-stack-solid.svg +4 -0
  512. wagtail_feathers-1.0b1/src/wagtail_feathers/templates/wagtail_feathers/icons/solid/heroicon-arrow-up-right-solid.svg +3 -0
  513. wagtail_feathers-1.0b1/src/wagtail_feathers/templates/wagtail_feathers/icons/solid/heroicon-arrow-up-solid.svg +3 -0
  514. wagtail_feathers-1.0b1/src/wagtail_feathers/templates/wagtail_feathers/icons/solid/heroicon-arrow-up-tray-solid.svg +3 -0
  515. wagtail_feathers-1.0b1/src/wagtail_feathers/templates/wagtail_feathers/icons/solid/heroicon-arrow-uturn-down-solid.svg +3 -0
  516. wagtail_feathers-1.0b1/src/wagtail_feathers/templates/wagtail_feathers/icons/solid/heroicon-arrow-uturn-left-solid.svg +3 -0
  517. wagtail_feathers-1.0b1/src/wagtail_feathers/templates/wagtail_feathers/icons/solid/heroicon-arrow-uturn-right-solid.svg +3 -0
  518. wagtail_feathers-1.0b1/src/wagtail_feathers/templates/wagtail_feathers/icons/solid/heroicon-arrow-uturn-up-solid.svg +3 -0
  519. wagtail_feathers-1.0b1/src/wagtail_feathers/templates/wagtail_feathers/icons/solid/heroicon-arrows-pointing-in-solid.svg +3 -0
  520. wagtail_feathers-1.0b1/src/wagtail_feathers/templates/wagtail_feathers/icons/solid/heroicon-arrows-pointing-out-solid.svg +3 -0
  521. wagtail_feathers-1.0b1/src/wagtail_feathers/templates/wagtail_feathers/icons/solid/heroicon-arrows-right-left-solid.svg +3 -0
  522. wagtail_feathers-1.0b1/src/wagtail_feathers/templates/wagtail_feathers/icons/solid/heroicon-arrows-up-down-solid.svg +3 -0
  523. wagtail_feathers-1.0b1/src/wagtail_feathers/templates/wagtail_feathers/icons/solid/heroicon-at-symbol-solid.svg +3 -0
  524. wagtail_feathers-1.0b1/src/wagtail_feathers/templates/wagtail_feathers/icons/solid/heroicon-backspace-solid.svg +3 -0
  525. wagtail_feathers-1.0b1/src/wagtail_feathers/templates/wagtail_feathers/icons/solid/heroicon-backward-solid.svg +3 -0
  526. wagtail_feathers-1.0b1/src/wagtail_feathers/templates/wagtail_feathers/icons/solid/heroicon-banknotes-solid.svg +5 -0
  527. wagtail_feathers-1.0b1/src/wagtail_feathers/templates/wagtail_feathers/icons/solid/heroicon-bars-2-solid.svg +3 -0
  528. wagtail_feathers-1.0b1/src/wagtail_feathers/templates/wagtail_feathers/icons/solid/heroicon-bars-3-bottom-left-solid.svg +3 -0
  529. wagtail_feathers-1.0b1/src/wagtail_feathers/templates/wagtail_feathers/icons/solid/heroicon-bars-3-bottom-right-solid.svg +3 -0
  530. wagtail_feathers-1.0b1/src/wagtail_feathers/templates/wagtail_feathers/icons/solid/heroicon-bars-3-center-left-solid.svg +3 -0
  531. wagtail_feathers-1.0b1/src/wagtail_feathers/templates/wagtail_feathers/icons/solid/heroicon-bars-3-solid.svg +3 -0
  532. wagtail_feathers-1.0b1/src/wagtail_feathers/templates/wagtail_feathers/icons/solid/heroicon-bars-4-solid.svg +3 -0
  533. wagtail_feathers-1.0b1/src/wagtail_feathers/templates/wagtail_feathers/icons/solid/heroicon-bars-arrow-down-solid.svg +3 -0
  534. wagtail_feathers-1.0b1/src/wagtail_feathers/templates/wagtail_feathers/icons/solid/heroicon-bars-arrow-up-solid.svg +3 -0
  535. wagtail_feathers-1.0b1/src/wagtail_feathers/templates/wagtail_feathers/icons/solid/heroicon-battery-0-solid.svg +3 -0
  536. wagtail_feathers-1.0b1/src/wagtail_feathers/templates/wagtail_feathers/icons/solid/heroicon-battery-100-solid.svg +3 -0
  537. wagtail_feathers-1.0b1/src/wagtail_feathers/templates/wagtail_feathers/icons/solid/heroicon-battery-50-solid.svg +4 -0
  538. wagtail_feathers-1.0b1/src/wagtail_feathers/templates/wagtail_feathers/icons/solid/heroicon-beaker-solid.svg +3 -0
  539. wagtail_feathers-1.0b1/src/wagtail_feathers/templates/wagtail_feathers/icons/solid/heroicon-bell-alert-solid.svg +4 -0
  540. wagtail_feathers-1.0b1/src/wagtail_feathers/templates/wagtail_feathers/icons/solid/heroicon-bell-slash-solid.svg +4 -0
  541. wagtail_feathers-1.0b1/src/wagtail_feathers/templates/wagtail_feathers/icons/solid/heroicon-bell-snooze-solid.svg +3 -0
  542. wagtail_feathers-1.0b1/src/wagtail_feathers/templates/wagtail_feathers/icons/solid/heroicon-bell-solid.svg +3 -0
  543. wagtail_feathers-1.0b1/src/wagtail_feathers/templates/wagtail_feathers/icons/solid/heroicon-bold-solid.svg +3 -0
  544. wagtail_feathers-1.0b1/src/wagtail_feathers/templates/wagtail_feathers/icons/solid/heroicon-bolt-slash-solid.svg +3 -0
  545. wagtail_feathers-1.0b1/src/wagtail_feathers/templates/wagtail_feathers/icons/solid/heroicon-bolt-solid.svg +3 -0
  546. wagtail_feathers-1.0b1/src/wagtail_feathers/templates/wagtail_feathers/icons/solid/heroicon-book-open-solid.svg +3 -0
  547. wagtail_feathers-1.0b1/src/wagtail_feathers/templates/wagtail_feathers/icons/solid/heroicon-bookmark-slash-solid.svg +3 -0
  548. wagtail_feathers-1.0b1/src/wagtail_feathers/templates/wagtail_feathers/icons/solid/heroicon-bookmark-solid.svg +3 -0
  549. wagtail_feathers-1.0b1/src/wagtail_feathers/templates/wagtail_feathers/icons/solid/heroicon-bookmark-square-solid.svg +3 -0
  550. wagtail_feathers-1.0b1/src/wagtail_feathers/templates/wagtail_feathers/icons/solid/heroicon-briefcase-solid.svg +4 -0
  551. wagtail_feathers-1.0b1/src/wagtail_feathers/templates/wagtail_feathers/icons/solid/heroicon-bug-ant-solid.svg +3 -0
  552. wagtail_feathers-1.0b1/src/wagtail_feathers/templates/wagtail_feathers/icons/solid/heroicon-building-library-solid.svg +5 -0
  553. wagtail_feathers-1.0b1/src/wagtail_feathers/templates/wagtail_feathers/icons/solid/heroicon-building-office-2-solid.svg +3 -0
  554. wagtail_feathers-1.0b1/src/wagtail_feathers/templates/wagtail_feathers/icons/solid/heroicon-building-office-solid.svg +3 -0
  555. wagtail_feathers-1.0b1/src/wagtail_feathers/templates/wagtail_feathers/icons/solid/heroicon-building-storefront-solid.svg +4 -0
  556. wagtail_feathers-1.0b1/src/wagtail_feathers/templates/wagtail_feathers/icons/solid/heroicon-cake-solid.svg +3 -0
  557. wagtail_feathers-1.0b1/src/wagtail_feathers/templates/wagtail_feathers/icons/solid/heroicon-calculator-solid.svg +3 -0
  558. wagtail_feathers-1.0b1/src/wagtail_feathers/templates/wagtail_feathers/icons/solid/heroicon-calendar-date-range-solid.svg +4 -0
  559. wagtail_feathers-1.0b1/src/wagtail_feathers/templates/wagtail_feathers/icons/solid/heroicon-calendar-days-solid.svg +4 -0
  560. wagtail_feathers-1.0b1/src/wagtail_feathers/templates/wagtail_feathers/icons/solid/heroicon-calendar-solid.svg +3 -0
  561. wagtail_feathers-1.0b1/src/wagtail_feathers/templates/wagtail_feathers/icons/solid/heroicon-camera-solid.svg +4 -0
  562. wagtail_feathers-1.0b1/src/wagtail_feathers/templates/wagtail_feathers/icons/solid/heroicon-chart-bar-solid.svg +3 -0
  563. wagtail_feathers-1.0b1/src/wagtail_feathers/templates/wagtail_feathers/icons/solid/heroicon-chart-bar-square-solid.svg +3 -0
  564. wagtail_feathers-1.0b1/src/wagtail_feathers/templates/wagtail_feathers/icons/solid/heroicon-chart-pie-solid.svg +4 -0
  565. wagtail_feathers-1.0b1/src/wagtail_feathers/templates/wagtail_feathers/icons/solid/heroicon-chat-bubble-bottom-center-solid.svg +3 -0
  566. wagtail_feathers-1.0b1/src/wagtail_feathers/templates/wagtail_feathers/icons/solid/heroicon-chat-bubble-bottom-center-text-solid.svg +3 -0
  567. wagtail_feathers-1.0b1/src/wagtail_feathers/templates/wagtail_feathers/icons/solid/heroicon-chat-bubble-left-ellipsis-solid.svg +3 -0
  568. wagtail_feathers-1.0b1/src/wagtail_feathers/templates/wagtail_feathers/icons/solid/heroicon-chat-bubble-left-right-solid.svg +4 -0
  569. wagtail_feathers-1.0b1/src/wagtail_feathers/templates/wagtail_feathers/icons/solid/heroicon-chat-bubble-left-solid.svg +3 -0
  570. wagtail_feathers-1.0b1/src/wagtail_feathers/templates/wagtail_feathers/icons/solid/heroicon-chat-bubble-oval-left-ellipsis-solid.svg +3 -0
  571. wagtail_feathers-1.0b1/src/wagtail_feathers/templates/wagtail_feathers/icons/solid/heroicon-chat-bubble-oval-left-solid.svg +3 -0
  572. wagtail_feathers-1.0b1/src/wagtail_feathers/templates/wagtail_feathers/icons/solid/heroicon-check-badge-solid.svg +3 -0
  573. wagtail_feathers-1.0b1/src/wagtail_feathers/templates/wagtail_feathers/icons/solid/heroicon-check-circle-solid.svg +3 -0
  574. wagtail_feathers-1.0b1/src/wagtail_feathers/templates/wagtail_feathers/icons/solid/heroicon-check-solid.svg +3 -0
  575. wagtail_feathers-1.0b1/src/wagtail_feathers/templates/wagtail_feathers/icons/solid/heroicon-chevron-double-down-solid.svg +4 -0
  576. wagtail_feathers-1.0b1/src/wagtail_feathers/templates/wagtail_feathers/icons/solid/heroicon-chevron-double-left-solid.svg +4 -0
  577. wagtail_feathers-1.0b1/src/wagtail_feathers/templates/wagtail_feathers/icons/solid/heroicon-chevron-double-right-solid.svg +4 -0
  578. wagtail_feathers-1.0b1/src/wagtail_feathers/templates/wagtail_feathers/icons/solid/heroicon-chevron-double-up-solid.svg +4 -0
  579. wagtail_feathers-1.0b1/src/wagtail_feathers/templates/wagtail_feathers/icons/solid/heroicon-chevron-down-solid.svg +3 -0
  580. wagtail_feathers-1.0b1/src/wagtail_feathers/templates/wagtail_feathers/icons/solid/heroicon-chevron-left-solid.svg +3 -0
  581. wagtail_feathers-1.0b1/src/wagtail_feathers/templates/wagtail_feathers/icons/solid/heroicon-chevron-right-solid.svg +3 -0
  582. wagtail_feathers-1.0b1/src/wagtail_feathers/templates/wagtail_feathers/icons/solid/heroicon-chevron-up-down-solid.svg +3 -0
  583. wagtail_feathers-1.0b1/src/wagtail_feathers/templates/wagtail_feathers/icons/solid/heroicon-chevron-up-solid.svg +3 -0
  584. wagtail_feathers-1.0b1/src/wagtail_feathers/templates/wagtail_feathers/icons/solid/heroicon-circle-stack-solid.svg +6 -0
  585. wagtail_feathers-1.0b1/src/wagtail_feathers/templates/wagtail_feathers/icons/solid/heroicon-clipboard-document-check-solid.svg +4 -0
  586. wagtail_feathers-1.0b1/src/wagtail_feathers/templates/wagtail_feathers/icons/solid/heroicon-clipboard-document-list-solid.svg +4 -0
  587. wagtail_feathers-1.0b1/src/wagtail_feathers/templates/wagtail_feathers/icons/solid/heroicon-clipboard-document-solid.svg +5 -0
  588. wagtail_feathers-1.0b1/src/wagtail_feathers/templates/wagtail_feathers/icons/solid/heroicon-clipboard-solid.svg +3 -0
  589. wagtail_feathers-1.0b1/src/wagtail_feathers/templates/wagtail_feathers/icons/solid/heroicon-clock-solid.svg +3 -0
  590. wagtail_feathers-1.0b1/src/wagtail_feathers/templates/wagtail_feathers/icons/solid/heroicon-cloud-arrow-down-solid.svg +3 -0
  591. wagtail_feathers-1.0b1/src/wagtail_feathers/templates/wagtail_feathers/icons/solid/heroicon-cloud-arrow-up-solid.svg +3 -0
  592. wagtail_feathers-1.0b1/src/wagtail_feathers/templates/wagtail_feathers/icons/solid/heroicon-cloud-solid.svg +3 -0
  593. wagtail_feathers-1.0b1/src/wagtail_feathers/templates/wagtail_feathers/icons/solid/heroicon-code-bracket-solid.svg +3 -0
  594. wagtail_feathers-1.0b1/src/wagtail_feathers/templates/wagtail_feathers/icons/solid/heroicon-code-bracket-square-solid.svg +3 -0
  595. wagtail_feathers-1.0b1/src/wagtail_feathers/templates/wagtail_feathers/icons/solid/heroicon-cog-6-tooth-solid.svg +3 -0
  596. wagtail_feathers-1.0b1/src/wagtail_feathers/templates/wagtail_feathers/icons/solid/heroicon-cog-8-tooth-solid.svg +3 -0
  597. wagtail_feathers-1.0b1/src/wagtail_feathers/templates/wagtail_feathers/icons/solid/heroicon-cog-solid.svg +4 -0
  598. wagtail_feathers-1.0b1/src/wagtail_feathers/templates/wagtail_feathers/icons/solid/heroicon-command-line-solid.svg +3 -0
  599. wagtail_feathers-1.0b1/src/wagtail_feathers/templates/wagtail_feathers/icons/solid/heroicon-computer-desktop-solid.svg +3 -0
  600. wagtail_feathers-1.0b1/src/wagtail_feathers/templates/wagtail_feathers/icons/solid/heroicon-cpu-chip-solid.svg +4 -0
  601. wagtail_feathers-1.0b1/src/wagtail_feathers/templates/wagtail_feathers/icons/solid/heroicon-credit-card-solid.svg +4 -0
  602. wagtail_feathers-1.0b1/src/wagtail_feathers/templates/wagtail_feathers/icons/solid/heroicon-cube-solid.svg +3 -0
  603. wagtail_feathers-1.0b1/src/wagtail_feathers/templates/wagtail_feathers/icons/solid/heroicon-cube-transparent-solid.svg +3 -0
  604. wagtail_feathers-1.0b1/src/wagtail_feathers/templates/wagtail_feathers/icons/solid/heroicon-currency-bangladeshi-solid.svg +3 -0
  605. wagtail_feathers-1.0b1/src/wagtail_feathers/templates/wagtail_feathers/icons/solid/heroicon-currency-dollar-solid.svg +4 -0
  606. wagtail_feathers-1.0b1/src/wagtail_feathers/templates/wagtail_feathers/icons/solid/heroicon-currency-euro-solid.svg +3 -0
  607. wagtail_feathers-1.0b1/src/wagtail_feathers/templates/wagtail_feathers/icons/solid/heroicon-currency-pound-solid.svg +3 -0
  608. wagtail_feathers-1.0b1/src/wagtail_feathers/templates/wagtail_feathers/icons/solid/heroicon-currency-rupee-solid.svg +3 -0
  609. wagtail_feathers-1.0b1/src/wagtail_feathers/templates/wagtail_feathers/icons/solid/heroicon-currency-yen-solid.svg +3 -0
  610. wagtail_feathers-1.0b1/src/wagtail_feathers/templates/wagtail_feathers/icons/solid/heroicon-cursor-arrow-rays-solid.svg +3 -0
  611. wagtail_feathers-1.0b1/src/wagtail_feathers/templates/wagtail_feathers/icons/solid/heroicon-cursor-arrow-ripple-solid.svg +3 -0
  612. wagtail_feathers-1.0b1/src/wagtail_feathers/templates/wagtail_feathers/icons/solid/heroicon-device-phone-mobile-solid.svg +4 -0
  613. wagtail_feathers-1.0b1/src/wagtail_feathers/templates/wagtail_feathers/icons/solid/heroicon-device-tablet-solid.svg +4 -0
  614. wagtail_feathers-1.0b1/src/wagtail_feathers/templates/wagtail_feathers/icons/solid/heroicon-divide-solid.svg +3 -0
  615. wagtail_feathers-1.0b1/src/wagtail_feathers/templates/wagtail_feathers/icons/solid/heroicon-document-arrow-down-solid.svg +4 -0
  616. wagtail_feathers-1.0b1/src/wagtail_feathers/templates/wagtail_feathers/icons/solid/heroicon-document-arrow-up-solid.svg +4 -0
  617. wagtail_feathers-1.0b1/src/wagtail_feathers/templates/wagtail_feathers/icons/solid/heroicon-document-chart-bar-solid.svg +4 -0
  618. wagtail_feathers-1.0b1/src/wagtail_feathers/templates/wagtail_feathers/icons/solid/heroicon-document-check-solid.svg +4 -0
  619. wagtail_feathers-1.0b1/src/wagtail_feathers/templates/wagtail_feathers/icons/solid/heroicon-document-currency-bangladeshi-solid.svg +3 -0
  620. wagtail_feathers-1.0b1/src/wagtail_feathers/templates/wagtail_feathers/icons/solid/heroicon-document-currency-dollar-solid.svg +3 -0
  621. wagtail_feathers-1.0b1/src/wagtail_feathers/templates/wagtail_feathers/icons/solid/heroicon-document-currency-euro-solid.svg +4 -0
  622. wagtail_feathers-1.0b1/src/wagtail_feathers/templates/wagtail_feathers/icons/solid/heroicon-document-currency-pound-solid.svg +3 -0
  623. wagtail_feathers-1.0b1/src/wagtail_feathers/templates/wagtail_feathers/icons/solid/heroicon-document-currency-rupee-solid.svg +3 -0
  624. wagtail_feathers-1.0b1/src/wagtail_feathers/templates/wagtail_feathers/icons/solid/heroicon-document-currency-yen-solid.svg +3 -0
  625. wagtail_feathers-1.0b1/src/wagtail_feathers/templates/wagtail_feathers/icons/solid/heroicon-document-duplicate-solid.svg +4 -0
  626. wagtail_feathers-1.0b1/src/wagtail_feathers/templates/wagtail_feathers/icons/solid/heroicon-document-magnifying-glass-solid.svg +5 -0
  627. wagtail_feathers-1.0b1/src/wagtail_feathers/templates/wagtail_feathers/icons/solid/heroicon-document-minus-solid.svg +4 -0
  628. wagtail_feathers-1.0b1/src/wagtail_feathers/templates/wagtail_feathers/icons/solid/heroicon-document-plus-solid.svg +4 -0
  629. wagtail_feathers-1.0b1/src/wagtail_feathers/templates/wagtail_feathers/icons/solid/heroicon-document-solid.svg +4 -0
  630. wagtail_feathers-1.0b1/src/wagtail_feathers/templates/wagtail_feathers/icons/solid/heroicon-document-text-solid.svg +4 -0
  631. wagtail_feathers-1.0b1/src/wagtail_feathers/templates/wagtail_feathers/icons/solid/heroicon-ellipsis-horizontal-circle-solid.svg +3 -0
  632. wagtail_feathers-1.0b1/src/wagtail_feathers/templates/wagtail_feathers/icons/solid/heroicon-ellipsis-horizontal-solid.svg +3 -0
  633. wagtail_feathers-1.0b1/src/wagtail_feathers/templates/wagtail_feathers/icons/solid/heroicon-ellipsis-vertical-solid.svg +3 -0
  634. wagtail_feathers-1.0b1/src/wagtail_feathers/templates/wagtail_feathers/icons/solid/heroicon-envelope-open-solid.svg +4 -0
  635. wagtail_feathers-1.0b1/src/wagtail_feathers/templates/wagtail_feathers/icons/solid/heroicon-envelope-solid.svg +4 -0
  636. wagtail_feathers-1.0b1/src/wagtail_feathers/templates/wagtail_feathers/icons/solid/heroicon-equals-solid.svg +3 -0
  637. wagtail_feathers-1.0b1/src/wagtail_feathers/templates/wagtail_feathers/icons/solid/heroicon-exclamation-circle-solid.svg +3 -0
  638. wagtail_feathers-1.0b1/src/wagtail_feathers/templates/wagtail_feathers/icons/solid/heroicon-exclamation-triangle-solid.svg +3 -0
  639. wagtail_feathers-1.0b1/src/wagtail_feathers/templates/wagtail_feathers/icons/solid/heroicon-eye-dropper-solid.svg +3 -0
  640. wagtail_feathers-1.0b1/src/wagtail_feathers/templates/wagtail_feathers/icons/solid/heroicon-eye-slash-solid.svg +5 -0
  641. wagtail_feathers-1.0b1/src/wagtail_feathers/templates/wagtail_feathers/icons/solid/heroicon-eye-solid.svg +4 -0
  642. wagtail_feathers-1.0b1/src/wagtail_feathers/templates/wagtail_feathers/icons/solid/heroicon-face-frown-solid.svg +3 -0
  643. wagtail_feathers-1.0b1/src/wagtail_feathers/templates/wagtail_feathers/icons/solid/heroicon-face-smile-solid.svg +3 -0
  644. wagtail_feathers-1.0b1/src/wagtail_feathers/templates/wagtail_feathers/icons/solid/heroicon-film-solid.svg +3 -0
  645. wagtail_feathers-1.0b1/src/wagtail_feathers/templates/wagtail_feathers/icons/solid/heroicon-finger-print-solid.svg +3 -0
  646. wagtail_feathers-1.0b1/src/wagtail_feathers/templates/wagtail_feathers/icons/solid/heroicon-fire-solid.svg +3 -0
  647. wagtail_feathers-1.0b1/src/wagtail_feathers/templates/wagtail_feathers/icons/solid/heroicon-flag-solid.svg +3 -0
  648. wagtail_feathers-1.0b1/src/wagtail_feathers/templates/wagtail_feathers/icons/solid/heroicon-folder-arrow-down-solid.svg +3 -0
  649. wagtail_feathers-1.0b1/src/wagtail_feathers/templates/wagtail_feathers/icons/solid/heroicon-folder-minus-solid.svg +3 -0
  650. wagtail_feathers-1.0b1/src/wagtail_feathers/templates/wagtail_feathers/icons/solid/heroicon-folder-open-solid.svg +3 -0
  651. wagtail_feathers-1.0b1/src/wagtail_feathers/templates/wagtail_feathers/icons/solid/heroicon-folder-plus-solid.svg +3 -0
  652. wagtail_feathers-1.0b1/src/wagtail_feathers/templates/wagtail_feathers/icons/solid/heroicon-folder-solid.svg +3 -0
  653. wagtail_feathers-1.0b1/src/wagtail_feathers/templates/wagtail_feathers/icons/solid/heroicon-forward-solid.svg +3 -0
  654. wagtail_feathers-1.0b1/src/wagtail_feathers/templates/wagtail_feathers/icons/solid/heroicon-funnel-solid.svg +3 -0
  655. wagtail_feathers-1.0b1/src/wagtail_feathers/templates/wagtail_feathers/icons/solid/heroicon-gif-solid.svg +3 -0
  656. wagtail_feathers-1.0b1/src/wagtail_feathers/templates/wagtail_feathers/icons/solid/heroicon-gift-solid.svg +3 -0
  657. wagtail_feathers-1.0b1/src/wagtail_feathers/templates/wagtail_feathers/icons/solid/heroicon-gift-top-solid.svg +4 -0
  658. wagtail_feathers-1.0b1/src/wagtail_feathers/templates/wagtail_feathers/icons/solid/heroicon-globe-alt-solid.svg +3 -0
  659. wagtail_feathers-1.0b1/src/wagtail_feathers/templates/wagtail_feathers/icons/solid/heroicon-globe-americas-solid.svg +3 -0
  660. wagtail_feathers-1.0b1/src/wagtail_feathers/templates/wagtail_feathers/icons/solid/heroicon-globe-asia-australia-solid.svg +4 -0
  661. wagtail_feathers-1.0b1/src/wagtail_feathers/templates/wagtail_feathers/icons/solid/heroicon-globe-europe-africa-solid.svg +3 -0
  662. wagtail_feathers-1.0b1/src/wagtail_feathers/templates/wagtail_feathers/icons/solid/heroicon-h1-solid.svg +3 -0
  663. wagtail_feathers-1.0b1/src/wagtail_feathers/templates/wagtail_feathers/icons/solid/heroicon-h2-solid.svg +3 -0
  664. wagtail_feathers-1.0b1/src/wagtail_feathers/templates/wagtail_feathers/icons/solid/heroicon-h3-solid.svg +3 -0
  665. wagtail_feathers-1.0b1/src/wagtail_feathers/templates/wagtail_feathers/icons/solid/heroicon-hand-raised-solid.svg +3 -0
  666. wagtail_feathers-1.0b1/src/wagtail_feathers/templates/wagtail_feathers/icons/solid/heroicon-hand-thumb-down-solid.svg +3 -0
  667. wagtail_feathers-1.0b1/src/wagtail_feathers/templates/wagtail_feathers/icons/solid/heroicon-hand-thumb-up-solid.svg +3 -0
  668. wagtail_feathers-1.0b1/src/wagtail_feathers/templates/wagtail_feathers/icons/solid/heroicon-hashtag-solid.svg +3 -0
  669. wagtail_feathers-1.0b1/src/wagtail_feathers/templates/wagtail_feathers/icons/solid/heroicon-heart-solid.svg +3 -0
  670. wagtail_feathers-1.0b1/src/wagtail_feathers/templates/wagtail_feathers/icons/solid/heroicon-home-modern-solid.svg +4 -0
  671. wagtail_feathers-1.0b1/src/wagtail_feathers/templates/wagtail_feathers/icons/solid/heroicon-home-solid.svg +4 -0
  672. wagtail_feathers-1.0b1/src/wagtail_feathers/templates/wagtail_feathers/icons/solid/heroicon-identification-solid.svg +3 -0
  673. wagtail_feathers-1.0b1/src/wagtail_feathers/templates/wagtail_feathers/icons/solid/heroicon-inbox-arrow-down-solid.svg +4 -0
  674. wagtail_feathers-1.0b1/src/wagtail_feathers/templates/wagtail_feathers/icons/solid/heroicon-inbox-solid.svg +3 -0
  675. wagtail_feathers-1.0b1/src/wagtail_feathers/templates/wagtail_feathers/icons/solid/heroicon-inbox-stack-solid.svg +4 -0
  676. wagtail_feathers-1.0b1/src/wagtail_feathers/templates/wagtail_feathers/icons/solid/heroicon-information-circle-solid.svg +3 -0
  677. wagtail_feathers-1.0b1/src/wagtail_feathers/templates/wagtail_feathers/icons/solid/heroicon-italic-solid.svg +3 -0
  678. wagtail_feathers-1.0b1/src/wagtail_feathers/templates/wagtail_feathers/icons/solid/heroicon-key-solid.svg +3 -0
  679. wagtail_feathers-1.0b1/src/wagtail_feathers/templates/wagtail_feathers/icons/solid/heroicon-language-solid.svg +3 -0
  680. wagtail_feathers-1.0b1/src/wagtail_feathers/templates/wagtail_feathers/icons/solid/heroicon-lifebuoy-solid.svg +3 -0
  681. wagtail_feathers-1.0b1/src/wagtail_feathers/templates/wagtail_feathers/icons/solid/heroicon-light-bulb-solid.svg +4 -0
  682. wagtail_feathers-1.0b1/src/wagtail_feathers/templates/wagtail_feathers/icons/solid/heroicon-link-slash-solid.svg +3 -0
  683. wagtail_feathers-1.0b1/src/wagtail_feathers/templates/wagtail_feathers/icons/solid/heroicon-link-solid.svg +3 -0
  684. wagtail_feathers-1.0b1/src/wagtail_feathers/templates/wagtail_feathers/icons/solid/heroicon-list-bullet-solid.svg +3 -0
  685. wagtail_feathers-1.0b1/src/wagtail_feathers/templates/wagtail_feathers/icons/solid/heroicon-lock-closed-solid.svg +3 -0
  686. wagtail_feathers-1.0b1/src/wagtail_feathers/templates/wagtail_feathers/icons/solid/heroicon-lock-open-solid.svg +3 -0
  687. wagtail_feathers-1.0b1/src/wagtail_feathers/templates/wagtail_feathers/icons/solid/heroicon-magnifying-glass-circle-solid.svg +4 -0
  688. wagtail_feathers-1.0b1/src/wagtail_feathers/templates/wagtail_feathers/icons/solid/heroicon-magnifying-glass-minus-solid.svg +3 -0
  689. wagtail_feathers-1.0b1/src/wagtail_feathers/templates/wagtail_feathers/icons/solid/heroicon-magnifying-glass-plus-solid.svg +3 -0
  690. wagtail_feathers-1.0b1/src/wagtail_feathers/templates/wagtail_feathers/icons/solid/heroicon-magnifying-glass-solid.svg +3 -0
  691. wagtail_feathers-1.0b1/src/wagtail_feathers/templates/wagtail_feathers/icons/solid/heroicon-map-pin-solid.svg +3 -0
  692. wagtail_feathers-1.0b1/src/wagtail_feathers/templates/wagtail_feathers/icons/solid/heroicon-map-solid.svg +3 -0
  693. wagtail_feathers-1.0b1/src/wagtail_feathers/templates/wagtail_feathers/icons/solid/heroicon-megaphone-solid.svg +3 -0
  694. wagtail_feathers-1.0b1/src/wagtail_feathers/templates/wagtail_feathers/icons/solid/heroicon-microphone-solid.svg +4 -0
  695. wagtail_feathers-1.0b1/src/wagtail_feathers/templates/wagtail_feathers/icons/solid/heroicon-minus-circle-solid.svg +3 -0
  696. wagtail_feathers-1.0b1/src/wagtail_feathers/templates/wagtail_feathers/icons/solid/heroicon-minus-small-solid.svg +3 -0
  697. wagtail_feathers-1.0b1/src/wagtail_feathers/templates/wagtail_feathers/icons/solid/heroicon-minus-solid.svg +3 -0
  698. wagtail_feathers-1.0b1/src/wagtail_feathers/templates/wagtail_feathers/icons/solid/heroicon-moon-solid.svg +3 -0
  699. wagtail_feathers-1.0b1/src/wagtail_feathers/templates/wagtail_feathers/icons/solid/heroicon-musical-note-solid.svg +3 -0
  700. wagtail_feathers-1.0b1/src/wagtail_feathers/templates/wagtail_feathers/icons/solid/heroicon-newspaper-solid.svg +4 -0
  701. wagtail_feathers-1.0b1/src/wagtail_feathers/templates/wagtail_feathers/icons/solid/heroicon-no-symbol-solid.svg +3 -0
  702. wagtail_feathers-1.0b1/src/wagtail_feathers/templates/wagtail_feathers/icons/solid/heroicon-numbered-list-solid.svg +3 -0
  703. wagtail_feathers-1.0b1/src/wagtail_feathers/templates/wagtail_feathers/icons/solid/heroicon-paint-brush-solid.svg +3 -0
  704. wagtail_feathers-1.0b1/src/wagtail_feathers/templates/wagtail_feathers/icons/solid/heroicon-paper-airplane-solid.svg +3 -0
  705. wagtail_feathers-1.0b1/src/wagtail_feathers/templates/wagtail_feathers/icons/solid/heroicon-paper-clip-solid.svg +3 -0
  706. wagtail_feathers-1.0b1/src/wagtail_feathers/templates/wagtail_feathers/icons/solid/heroicon-pause-circle-solid.svg +3 -0
  707. wagtail_feathers-1.0b1/src/wagtail_feathers/templates/wagtail_feathers/icons/solid/heroicon-pause-solid.svg +3 -0
  708. wagtail_feathers-1.0b1/src/wagtail_feathers/templates/wagtail_feathers/icons/solid/heroicon-pencil-solid.svg +3 -0
  709. wagtail_feathers-1.0b1/src/wagtail_feathers/templates/wagtail_feathers/icons/solid/heroicon-pencil-square-solid.svg +4 -0
  710. wagtail_feathers-1.0b1/src/wagtail_feathers/templates/wagtail_feathers/icons/solid/heroicon-percent-badge-solid.svg +3 -0
  711. wagtail_feathers-1.0b1/src/wagtail_feathers/templates/wagtail_feathers/icons/solid/heroicon-phone-arrow-down-left-solid.svg +4 -0
  712. wagtail_feathers-1.0b1/src/wagtail_feathers/templates/wagtail_feathers/icons/solid/heroicon-phone-arrow-up-right-solid.svg +4 -0
  713. wagtail_feathers-1.0b1/src/wagtail_feathers/templates/wagtail_feathers/icons/solid/heroicon-phone-solid.svg +3 -0
  714. wagtail_feathers-1.0b1/src/wagtail_feathers/templates/wagtail_feathers/icons/solid/heroicon-phone-x-mark-solid.svg +3 -0
  715. wagtail_feathers-1.0b1/src/wagtail_feathers/templates/wagtail_feathers/icons/solid/heroicon-photo-solid.svg +3 -0
  716. wagtail_feathers-1.0b1/src/wagtail_feathers/templates/wagtail_feathers/icons/solid/heroicon-play-circle-solid.svg +3 -0
  717. wagtail_feathers-1.0b1/src/wagtail_feathers/templates/wagtail_feathers/icons/solid/heroicon-play-pause-solid.svg +3 -0
  718. wagtail_feathers-1.0b1/src/wagtail_feathers/templates/wagtail_feathers/icons/solid/heroicon-play-solid.svg +3 -0
  719. wagtail_feathers-1.0b1/src/wagtail_feathers/templates/wagtail_feathers/icons/solid/heroicon-plus-circle-solid.svg +3 -0
  720. wagtail_feathers-1.0b1/src/wagtail_feathers/templates/wagtail_feathers/icons/solid/heroicon-plus-small-solid.svg +3 -0
  721. wagtail_feathers-1.0b1/src/wagtail_feathers/templates/wagtail_feathers/icons/solid/heroicon-plus-solid.svg +3 -0
  722. wagtail_feathers-1.0b1/src/wagtail_feathers/templates/wagtail_feathers/icons/solid/heroicon-power-solid.svg +3 -0
  723. wagtail_feathers-1.0b1/src/wagtail_feathers/templates/wagtail_feathers/icons/solid/heroicon-presentation-chart-bar-solid.svg +3 -0
  724. wagtail_feathers-1.0b1/src/wagtail_feathers/templates/wagtail_feathers/icons/solid/heroicon-presentation-chart-line-solid.svg +3 -0
  725. wagtail_feathers-1.0b1/src/wagtail_feathers/templates/wagtail_feathers/icons/solid/heroicon-printer-solid.svg +3 -0
  726. wagtail_feathers-1.0b1/src/wagtail_feathers/templates/wagtail_feathers/icons/solid/heroicon-puzzle-piece-solid.svg +3 -0
  727. wagtail_feathers-1.0b1/src/wagtail_feathers/templates/wagtail_feathers/icons/solid/heroicon-qr-code-solid.svg +3 -0
  728. wagtail_feathers-1.0b1/src/wagtail_feathers/templates/wagtail_feathers/icons/solid/heroicon-question-mark-circle-solid.svg +3 -0
  729. wagtail_feathers-1.0b1/src/wagtail_feathers/templates/wagtail_feathers/icons/solid/heroicon-queue-list-solid.svg +3 -0
  730. wagtail_feathers-1.0b1/src/wagtail_feathers/templates/wagtail_feathers/icons/solid/heroicon-radio-solid.svg +3 -0
  731. wagtail_feathers-1.0b1/src/wagtail_feathers/templates/wagtail_feathers/icons/solid/heroicon-receipt-percent-solid.svg +3 -0
  732. wagtail_feathers-1.0b1/src/wagtail_feathers/templates/wagtail_feathers/icons/solid/heroicon-receipt-refund-solid.svg +3 -0
  733. wagtail_feathers-1.0b1/src/wagtail_feathers/templates/wagtail_feathers/icons/solid/heroicon-rectangle-group-solid.svg +3 -0
  734. wagtail_feathers-1.0b1/src/wagtail_feathers/templates/wagtail_feathers/icons/solid/heroicon-rectangle-stack-solid.svg +3 -0
  735. wagtail_feathers-1.0b1/src/wagtail_feathers/templates/wagtail_feathers/icons/solid/heroicon-rocket-launch-solid.svg +4 -0
  736. wagtail_feathers-1.0b1/src/wagtail_feathers/templates/wagtail_feathers/icons/solid/heroicon-rss-solid.svg +3 -0
  737. wagtail_feathers-1.0b1/src/wagtail_feathers/templates/wagtail_feathers/icons/solid/heroicon-scale-solid.svg +3 -0
  738. wagtail_feathers-1.0b1/src/wagtail_feathers/templates/wagtail_feathers/icons/solid/heroicon-scissors-solid.svg +4 -0
  739. wagtail_feathers-1.0b1/src/wagtail_feathers/templates/wagtail_feathers/icons/solid/heroicon-server-solid.svg +4 -0
  740. wagtail_feathers-1.0b1/src/wagtail_feathers/templates/wagtail_feathers/icons/solid/heroicon-server-stack-solid.svg +4 -0
  741. wagtail_feathers-1.0b1/src/wagtail_feathers/templates/wagtail_feathers/icons/solid/heroicon-share-solid.svg +3 -0
  742. wagtail_feathers-1.0b1/src/wagtail_feathers/templates/wagtail_feathers/icons/solid/heroicon-shield-check-solid.svg +3 -0
  743. wagtail_feathers-1.0b1/src/wagtail_feathers/templates/wagtail_feathers/icons/solid/heroicon-shield-exclamation-solid.svg +3 -0
  744. wagtail_feathers-1.0b1/src/wagtail_feathers/templates/wagtail_feathers/icons/solid/heroicon-shopping-bag-solid.svg +3 -0
  745. wagtail_feathers-1.0b1/src/wagtail_feathers/templates/wagtail_feathers/icons/solid/heroicon-shopping-cart-solid.svg +3 -0
  746. wagtail_feathers-1.0b1/src/wagtail_feathers/templates/wagtail_feathers/icons/solid/heroicon-signal-slash-solid.svg +3 -0
  747. wagtail_feathers-1.0b1/src/wagtail_feathers/templates/wagtail_feathers/icons/solid/heroicon-signal-solid.svg +3 -0
  748. wagtail_feathers-1.0b1/src/wagtail_feathers/templates/wagtail_feathers/icons/solid/heroicon-slash-solid.svg +3 -0
  749. wagtail_feathers-1.0b1/src/wagtail_feathers/templates/wagtail_feathers/icons/solid/heroicon-sparkles-solid.svg +3 -0
  750. wagtail_feathers-1.0b1/src/wagtail_feathers/templates/wagtail_feathers/icons/solid/heroicon-speaker-wave-solid.svg +4 -0
  751. wagtail_feathers-1.0b1/src/wagtail_feathers/templates/wagtail_feathers/icons/solid/heroicon-speaker-x-mark-solid.svg +3 -0
  752. wagtail_feathers-1.0b1/src/wagtail_feathers/templates/wagtail_feathers/icons/solid/heroicon-square-2-stack-solid.svg +4 -0
  753. wagtail_feathers-1.0b1/src/wagtail_feathers/templates/wagtail_feathers/icons/solid/heroicon-square-3-stack-3d-solid.svg +5 -0
  754. wagtail_feathers-1.0b1/src/wagtail_feathers/templates/wagtail_feathers/icons/solid/heroicon-squares-2x2-solid.svg +3 -0
  755. wagtail_feathers-1.0b1/src/wagtail_feathers/templates/wagtail_feathers/icons/solid/heroicon-squares-plus-solid.svg +3 -0
  756. wagtail_feathers-1.0b1/src/wagtail_feathers/templates/wagtail_feathers/icons/solid/heroicon-star-solid.svg +3 -0
  757. wagtail_feathers-1.0b1/src/wagtail_feathers/templates/wagtail_feathers/icons/solid/heroicon-stop-circle-solid.svg +3 -0
  758. wagtail_feathers-1.0b1/src/wagtail_feathers/templates/wagtail_feathers/icons/solid/heroicon-stop-solid.svg +3 -0
  759. wagtail_feathers-1.0b1/src/wagtail_feathers/templates/wagtail_feathers/icons/solid/heroicon-strikethrough-solid.svg +3 -0
  760. wagtail_feathers-1.0b1/src/wagtail_feathers/templates/wagtail_feathers/icons/solid/heroicon-sun-solid.svg +3 -0
  761. wagtail_feathers-1.0b1/src/wagtail_feathers/templates/wagtail_feathers/icons/solid/heroicon-swatch-solid.svg +4 -0
  762. wagtail_feathers-1.0b1/src/wagtail_feathers/templates/wagtail_feathers/icons/solid/heroicon-table-cells-solid.svg +3 -0
  763. wagtail_feathers-1.0b1/src/wagtail_feathers/templates/wagtail_feathers/icons/solid/heroicon-tag-solid.svg +3 -0
  764. wagtail_feathers-1.0b1/src/wagtail_feathers/templates/wagtail_feathers/icons/solid/heroicon-ticket-solid.svg +3 -0
  765. wagtail_feathers-1.0b1/src/wagtail_feathers/templates/wagtail_feathers/icons/solid/heroicon-trash-solid.svg +3 -0
  766. wagtail_feathers-1.0b1/src/wagtail_feathers/templates/wagtail_feathers/icons/solid/heroicon-trophy-solid.svg +3 -0
  767. wagtail_feathers-1.0b1/src/wagtail_feathers/templates/wagtail_feathers/icons/solid/heroicon-truck-solid.svg +5 -0
  768. wagtail_feathers-1.0b1/src/wagtail_feathers/templates/wagtail_feathers/icons/solid/heroicon-tv-solid.svg +4 -0
  769. wagtail_feathers-1.0b1/src/wagtail_feathers/templates/wagtail_feathers/icons/solid/heroicon-underline-solid.svg +3 -0
  770. wagtail_feathers-1.0b1/src/wagtail_feathers/templates/wagtail_feathers/icons/solid/heroicon-user-circle-solid.svg +3 -0
  771. wagtail_feathers-1.0b1/src/wagtail_feathers/templates/wagtail_feathers/icons/solid/heroicon-user-group-solid.svg +4 -0
  772. wagtail_feathers-1.0b1/src/wagtail_feathers/templates/wagtail_feathers/icons/solid/heroicon-user-minus-solid.svg +3 -0
  773. wagtail_feathers-1.0b1/src/wagtail_feathers/templates/wagtail_feathers/icons/solid/heroicon-user-plus-solid.svg +3 -0
  774. wagtail_feathers-1.0b1/src/wagtail_feathers/templates/wagtail_feathers/icons/solid/heroicon-user-solid.svg +3 -0
  775. wagtail_feathers-1.0b1/src/wagtail_feathers/templates/wagtail_feathers/icons/solid/heroicon-users-solid.svg +3 -0
  776. wagtail_feathers-1.0b1/src/wagtail_feathers/templates/wagtail_feathers/icons/solid/heroicon-variable-solid.svg +3 -0
  777. wagtail_feathers-1.0b1/src/wagtail_feathers/templates/wagtail_feathers/icons/solid/heroicon-video-camera-slash-solid.svg +3 -0
  778. wagtail_feathers-1.0b1/src/wagtail_feathers/templates/wagtail_feathers/icons/solid/heroicon-video-camera-solid.svg +3 -0
  779. wagtail_feathers-1.0b1/src/wagtail_feathers/templates/wagtail_feathers/icons/solid/heroicon-view-columns-solid.svg +3 -0
  780. wagtail_feathers-1.0b1/src/wagtail_feathers/templates/wagtail_feathers/icons/solid/heroicon-viewfinder-circle-solid.svg +3 -0
  781. wagtail_feathers-1.0b1/src/wagtail_feathers/templates/wagtail_feathers/icons/solid/heroicon-wallet-solid.svg +3 -0
  782. wagtail_feathers-1.0b1/src/wagtail_feathers/templates/wagtail_feathers/icons/solid/heroicon-wifi-solid.svg +3 -0
  783. wagtail_feathers-1.0b1/src/wagtail_feathers/templates/wagtail_feathers/icons/solid/heroicon-window-solid.svg +3 -0
  784. wagtail_feathers-1.0b1/src/wagtail_feathers/templates/wagtail_feathers/icons/solid/heroicon-wrench-screwdriver-solid.svg +5 -0
  785. wagtail_feathers-1.0b1/src/wagtail_feathers/templates/wagtail_feathers/icons/solid/heroicon-wrench-solid.svg +3 -0
  786. wagtail_feathers-1.0b1/src/wagtail_feathers/templates/wagtail_feathers/icons/solid/heroicon-x-circle-solid.svg +3 -0
  787. wagtail_feathers-1.0b1/src/wagtail_feathers/templates/wagtail_feathers/icons/solid/heroicon-x-mark-solid.svg +3 -0
  788. wagtail_feathers-1.0b1/src/wagtail_feathers/templates/wagtail_feathers/preview/static_embed_block.html +20 -0
  789. wagtail_feathers-1.0b1/src/wagtail_feathers/templates/wagtail_feathers/seo/meta.html +118 -0
  790. wagtail_feathers-1.0b1/src/wagtail_feathers/templates/wagtail_feathers/seo/structured_data.html +63 -0
  791. wagtail_feathers-1.0b1/src/wagtail_feathers/templates/wagtail_feathers/tags/reading_time_display.html +18 -0
  792. wagtail_feathers-1.0b1/src/wagtail_feathers/templates/wagtail_feathers/templatetags/_footer_text.html +0 -0
  793. wagtail_feathers-1.0b1/src/wagtail_feathers/templates/wagtail_feathers/templatetags/_mobile_menu_items.html +25 -0
  794. wagtail_feathers-1.0b1/src/wagtail_feathers/templates/wagtail_feathers/templatetags/_svg_icon.html +24 -0
  795. wagtail_feathers-1.0b1/src/wagtail_feathers/templates/wagtail_feathers/templatetags/_top_menu_items.html +31 -0
  796. wagtail_feathers-1.0b1/src/wagtail_feathers/templates/wagtail_feathers/templatetags/breadcrumbs.html +24 -0
  797. wagtail_feathers-1.0b1/src/wagtail_feathers/templates/wagtail_feathers/templatetags/category_breadcrumbs.html +161 -0
  798. wagtail_feathers-1.0b1/src/wagtail_feathers/templates/wagtail_feathers/templatetags/category_navigation.html +147 -0
  799. wagtail_feathers-1.0b1/src/wagtail_feathers/templates/wagtail_feathers/templatetags/category_tree.html +151 -0
  800. wagtail_feathers-1.0b1/src/wagtail_feathers/templates/wagtail_feathers/templatetags/social_media_links.html +49 -0
  801. wagtail_feathers-1.0b1/src/wagtail_feathers/templates/wagtail_feathers/widgets/checkbox_taxonomy.html +36 -0
  802. wagtail_feathers-1.0b1/src/wagtail_feathers/templatetags/__init__.py +0 -0
  803. wagtail_feathers-1.0b1/src/wagtail_feathers/templatetags/category_tags.py +162 -0
  804. wagtail_feathers-1.0b1/src/wagtail_feathers/templatetags/feathers_tags.py +67 -0
  805. wagtail_feathers-1.0b1/src/wagtail_feathers/templatetags/navigation_tags.py +166 -0
  806. wagtail_feathers-1.0b1/src/wagtail_feathers/templatetags/pagination_tags.py +10 -0
  807. wagtail_feathers-1.0b1/src/wagtail_feathers/templatetags/placeholder_tags.py +50 -0
  808. wagtail_feathers-1.0b1/src/wagtail_feathers/templatetags/querystring_tags.py +21 -0
  809. wagtail_feathers-1.0b1/src/wagtail_feathers/templatetags/reading_time_tags.py +232 -0
  810. wagtail_feathers-1.0b1/src/wagtail_feathers/templatetags/seo_tags.py +228 -0
  811. wagtail_feathers-1.0b1/src/wagtail_feathers/templatetags/social_tags.py +45 -0
  812. wagtail_feathers-1.0b1/src/wagtail_feathers/templatetags/svg_tags.py +122 -0
  813. wagtail_feathers-1.0b1/src/wagtail_feathers/themes.py +663 -0
  814. wagtail_feathers-1.0b1/src/wagtail_feathers/utils/__init__.py +0 -0
  815. wagtail_feathers-1.0b1/src/wagtail_feathers/utils/query.py +19 -0
  816. wagtail_feathers-1.0b1/src/wagtail_feathers/version.py +45 -0
  817. wagtail_feathers-1.0b1/src/wagtail_feathers/views.py +70 -0
  818. wagtail_feathers-1.0b1/src/wagtail_feathers/viewsets/__init__.py +34 -0
  819. wagtail_feathers-1.0b1/src/wagtail_feathers/viewsets/author.py +12 -0
  820. wagtail_feathers-1.0b1/src/wagtail_feathers/viewsets/components.py +10 -0
  821. wagtail_feathers-1.0b1/src/wagtail_feathers/viewsets/navigation.py +69 -0
  822. wagtail_feathers-1.0b1/src/wagtail_feathers/viewsets/person.py +21 -0
  823. wagtail_feathers-1.0b1/src/wagtail_feathers/viewsets/social.py +12 -0
  824. wagtail_feathers-1.0b1/src/wagtail_feathers/viewsets/taxonomy.py +199 -0
  825. wagtail_feathers-1.0b1/src/wagtail_feathers/viewsets/viewset_groups.py +78 -0
  826. wagtail_feathers-1.0b1/src/wagtail_feathers/wagtail_hooks.py +266 -0
  827. wagtail_feathers-1.0b1/tests/__init__.py +0 -0
  828. wagtail_feathers-1.0b1/tests/conftest.py +29 -0
  829. wagtail_feathers-1.0b1/tests/settings.py +172 -0
  830. wagtail_feathers-1.0b1/tests/test_multisite_simple.py +174 -0
  831. wagtail_feathers-1.0b1/tests/test_multisite_themes.py +211 -0
  832. wagtail_feathers-1.0b1/tests/test_struct_values.py +119 -0
  833. wagtail_feathers-1.0b1/tests/test_taxonomy.py +615 -0
  834. wagtail_feathers-1.0b1/tests/test_theme_integration.py +147 -0
  835. wagtail_feathers-1.0b1/tests/test_themes.py +700 -0
  836. wagtail_feathers-1.0b1/tests/urls.py +25 -0
  837. wagtail_feathers-1.0b1/tox.ini +55 -0
@@ -0,0 +1,353 @@
1
+ # Wagtail Feathers Demo Enhancement Plan
2
+
3
+ ## Current Demo Status Analysis (Updated: July 28, 2025)
4
+
5
+ ### ✅ Phase 1 COMPLETED - Content Structure
6
+ - **Enhanced Page Models**: `HomePage`, `ArticlePage`, `ArticleIndexPage`, `AuthorPage`, `FAQPage`, `ContactPage`
7
+ - **Taxonomy System**: 19 categories, 7 classifier groups, 59 classifiers with full hierarchy
8
+ - **Author System**: 4 author types, 4 person groups, 5 people with relationships
9
+ - **Admin Interface**: ArticlePageListingViewSet, proper admin access, sample content
10
+ - **Site Configuration**: Proper HomePage setup, site configuration, superuser (admin/admin123)
11
+ - **Template Fixes**: Removed invalid template tags, fixed theme compatibility
12
+
13
+ **Demo Coverage: ~30% (up from <5%)**
14
+
15
+ ### 🔄 Remaining Features to Implement
16
+
17
+ ## Core Models & Features Not Demonstrated
18
+
19
+ ### 1. **Taxonomy System** ✅ COMPLETED
20
+ - `Category` - 19 categories in hierarchical tree (Technology, Business, Science, Arts, Education)
21
+ - `Classifier` & `ClassifierGroup` - 7 groups with 59 classifiers
22
+ - `PageCategory` & `PageClassifier` - Articles properly tagged
23
+ - Admin category management via wagtail-feathers admin
24
+
25
+ ### 2. **Author System** ✅ COMPLETED
26
+ - `AuthorType` - 4 types: Lead Author, Co-Author, Reviewer, Editor
27
+ - `PageAuthor` - Articles linked to authors with relationships
28
+ - `Person` & `PersonGroup` - 5 people in 4 groups (Technical Writers, Researchers, etc.)
29
+ - Author pages and profiles functional
30
+
31
+ ### 3. **Navigation System** 🧭
32
+ **Missing in Demo:**
33
+ - `Menu`, `MenuItem`, `FlatMenu`, `NestedMenu` - Dynamic navigation
34
+ - `Footer`, `FooterNavigation` - Footer menu management
35
+
36
+ **Should Demonstrate:**
37
+ - Dynamic main navigation
38
+ - Multi-level dropdown menus
39
+ - Footer navigation sections
40
+ - Admin menu management interface
41
+
42
+ ### 4. **Social Media Integration** 📱
43
+ **Missing in Demo:**
44
+ - `SocialMediaLink` & `SocialMediaSettings` - Social media management
45
+ - Social sharing functionality
46
+
47
+ **Should Demonstrate:**
48
+ - Site-wide social media links
49
+ - Social sharing buttons on articles
50
+ - Author social media profiles
51
+
52
+ ### 5. **Geographic Features** 🌍
53
+ **Missing in Demo:**
54
+ - `PageCountry` - Geographic tagging of content
55
+
56
+ **Should Demonstrate:**
57
+ - Country-specific content filtering
58
+ - Geographic content organization
59
+
60
+ ### 6. **FAQ System** ❓
61
+ **Missing in Demo:**
62
+ - `FAQ` & `FAQCategory` - FAQ management
63
+ - `FAQBasePage` - Specialized FAQ pages
64
+
65
+ **Should Demonstrate:**
66
+ - FAQ categories and items
67
+ - FAQ page with search/filtering
68
+ - Embedded FAQ sections in other pages
69
+
70
+ ### 7. **Form System** 📝
71
+ **Missing in Demo:**
72
+ - `FormBasePage` - Enhanced form pages with theme support
73
+
74
+ **Should Demonstrate:**
75
+ - Contact forms
76
+ - Newsletter signup
77
+ - Custom form fields and styling
78
+
79
+ ### 8. **Rich Block System** 🧱
80
+ **Missing in Demo:**
81
+ - Most StreamField blocks from `blocks.py`
82
+ - Theme-aware components
83
+
84
+ **Should Demonstrate:**
85
+ - Hero sections with call-to-actions
86
+ - Card grids and sections
87
+ - Image galleries and grids
88
+ - Quote blocks with variants
89
+ - Call-to-action sections
90
+ - FAQ embed blocks
91
+ - Nested navigation menus
92
+
93
+ ### 9. **SEO & Metadata** 🔍
94
+ **Missing in Demo:**
95
+ - `SeoMixin` advanced features
96
+ - Structured data implementation
97
+ - Social media meta tags
98
+
99
+ **Should Demonstrate:**
100
+ - Custom meta descriptions
101
+ - Open Graph tags
102
+ - Twitter Cards
103
+ - Structured data for articles
104
+
105
+ ### 10. **Reading Time & Content Features** ⏱️
106
+ **Missing in Demo:**
107
+ - `ReadingTimeMixin` functionality
108
+ - Content analysis features
109
+
110
+ **Should Demonstrate:**
111
+ - Article reading time calculation
112
+ - Content statistics display
113
+
114
+ ### 11. **Related Content** 🔗
115
+ **Missing in Demo:**
116
+ - `RelatedPage`, `RelatedDocument`, `RelatedExternalLink`
117
+ - Content relationships
118
+
119
+ **Should Demonstrate:**
120
+ - Related articles sidebar
121
+ - Document attachments
122
+ - External resource links
123
+
124
+ ### 12. **Error Pages** ⚠️
125
+ **Missing in Demo:**
126
+ - `ErrorPage` model usage
127
+ - Custom error page templates
128
+
129
+ **Should Demonstrate:**
130
+ - Custom 404, 403, 500 error pages
131
+ - Themed error page variants
132
+
133
+ ### 13. **Management Commands** 🔧
134
+ **Missing in Demo:**
135
+ - Theme management commands
136
+ - Category management commands
137
+ - Sample data creation commands
138
+
139
+ **Should Demonstrate:**
140
+ - Sample data generation workflow
141
+ - Theme switching via command line
142
+ - Category tree management
143
+
144
+ ### 14. **Admin Viewsets** ⚙️
145
+ **Missing in Demo:**
146
+ - Admin customizations via viewsets
147
+ - Enhanced admin interfaces
148
+
149
+ **Should Demonstrate:**
150
+ - Category management interface
151
+ - Author management interface
152
+ - Navigation menu builder
153
+ - Social media settings
154
+
155
+ ## Comprehensive Demo Enhancement Plan
156
+
157
+ ### ✅ Phase 1: Content Structure COMPLETED
158
+ 1. **Enhanced Page Models** ✅
159
+ - `HomePage` with proper WebBasePage inheritance and site configuration
160
+ - `ArticlePage` with excerpts, featured images, taxonomy/author relationships
161
+ - `ArticleIndexPage` with optimized queries and pagination
162
+ - `AuthorPage` with profiles, bio, contact info
163
+ - `FAQPage` and `ContactPage` with FormBasePage features
164
+
165
+ 2. **Taxonomy Implementation** ✅
166
+ - 19 categories across 5 main branches (Technology, Business, Science, Arts, Education)
167
+ - 59 classifiers in 7 groups (Subject/Attribute types)
168
+ - Articles properly categorized and classified
169
+ - Management command for creating sample taxonomy data
170
+
171
+ 3. **Author System** ✅
172
+ - 5 author profiles with bios and group memberships
173
+ - 4 author types and 4 person groups
174
+ - Multi-author support via PageAuthor relationships
175
+ - Author pages and detail views functional
176
+
177
+ 4. **Admin Interface** ✅
178
+ - ArticlePageListingViewSet for admin menu access
179
+ - All models accessible via enhanced admin
180
+ - Sample content with realistic data
181
+ - Superuser account (admin/admin123)
182
+
183
+ ### Phase 2: Navigation & Structure (High Priority)
184
+ 1. **Dynamic Navigation**
185
+ - Implement main navigation menu
186
+ - Add multi-level dropdown menus
187
+ - Create footer navigation sections
188
+ - Add breadcrumb navigation
189
+
190
+ 2. **Content Blocks**
191
+ - Implement hero sections on homepage
192
+ - Add card grids for featured content
193
+ - Create call-to-action sections
194
+ - Add image galleries and quote blocks
195
+
196
+ ### Phase 3: Advanced Features (Medium Priority)
197
+ 1. **Social Integration**
198
+ - Add social media links to site settings
199
+ - Implement social sharing on articles
200
+ - Add author social media profiles
201
+
202
+ 2. **FAQ System**
203
+ - Create FAQ categories and items
204
+ - Build comprehensive FAQ page
205
+ - Add FAQ embed blocks to other pages
206
+
207
+ 3. **Forms & Contact**
208
+ - Enhanced contact form with validation
209
+ - Newsletter signup functionality
210
+ - Form success pages with theme variants
211
+
212
+ ### Phase 4: Content & Polish (Medium Priority)
213
+ 1. **SEO Enhancement**
214
+ - Implement advanced SEO features
215
+ - Add structured data for articles
216
+ - Optimize meta tags and social sharing
217
+
218
+ 2. **Content Features**
219
+ - Add reading time to articles
220
+ - Implement related content sections
221
+ - Add document attachments to articles
222
+
223
+ ### Phase 5: Admin & Management (Low Priority)
224
+ 1. **Admin Enhancements**
225
+ - Configure all admin viewsets
226
+ - Add category management interface
227
+ - Implement menu builder interface
228
+
229
+ 2. **Sample Data & Commands**
230
+ - Create comprehensive sample data command
231
+ - Add data fixtures for realistic content
232
+ - Document management command usage
233
+
234
+ ## Implementation Strategy
235
+
236
+ ### New Demo Models Needed
237
+ ```python
238
+ # demo/showcase/models.py additions
239
+
240
+ class EnhancedArticlePage(FeatherBasePage):
241
+ """Comprehensive article demonstrating all features"""
242
+ # Add all FeatherBasePage features
243
+ # Include author relationships
244
+ # Add category/classifier relationships
245
+ # Implement related content
246
+ # Add social sharing
247
+
248
+ class AuthorPage(FeatherBasePage):
249
+ """Author profile pages"""
250
+ # Author bio, image, social links
251
+ # List of author's articles
252
+ # Contact information
253
+
254
+ class FAQPage(FAQBasePage):
255
+ """FAQ page with categories and search"""
256
+ # Implement FAQ categories
257
+ # Add search functionality
258
+ # Include theme variants
259
+
260
+ class ContactPage(FormBasePage):
261
+ """Contact form with enhanced features"""
262
+ # Multiple form types
263
+ # Success page variants
264
+ # Email notifications
265
+
266
+ class CategoryIndexPage(FeatherBasePage):
267
+ """Category-based content listing"""
268
+ # Filter by categories
269
+ # Show category hierarchy
270
+ # Pagination and sorting
271
+ ```
272
+
273
+ ### StreamField Enhancements
274
+ - Add comprehensive StreamField blocks to all pages
275
+ - Implement theme-aware block variants
276
+ - Create reusable content sections
277
+ - Add interactive elements
278
+
279
+ ### Admin Configuration
280
+ - Configure all viewsets for enhanced admin
281
+ - Add custom admin panels
282
+ - Implement bulk operations
283
+ - Add admin documentation
284
+
285
+ ### Theme Enhancements
286
+ - Extend quantum theme with all block templates
287
+ - Add theme variants for all components
288
+ - Implement responsive design patterns
289
+ - Add accessibility features
290
+
291
+ ### Sample Data Creation
292
+ - Create realistic content for all models
293
+ - Add sample images and media
294
+ - Generate category hierarchies
295
+ - Create author profiles with content
296
+
297
+ ## Expected Outcomes
298
+
299
+ After implementation, the demo will showcase:
300
+ - ✅ **Complete Feature Coverage**: Every wagtail-feathers feature demonstrated
301
+ - ✅ **Real-world Usage**: Practical implementation examples
302
+ - ✅ **Admin Interface**: Full admin functionality displayed
303
+ - ✅ **Theme System**: Complete theme variant usage
304
+ - ✅ **Content Relationships**: All model relationships working
305
+ - ✅ **SEO & Performance**: Optimized content structure
306
+ - ✅ **User Experience**: Intuitive navigation and content discovery
307
+ - ✅ **Developer Reference**: Clear implementation patterns
308
+
309
+ ## Session Restart Information
310
+
311
+ ### Key Files to Review
312
+ - `src/wagtail_feathers/models/__init__.py` - All available models
313
+ - `src/wagtail_feathers/blocks.py` - StreamField blocks (1200+ lines)
314
+ - `src/wagtail_feathers/viewsets/__init__.py` - Admin viewsets
315
+ - `demo/showcase/models.py` - Current demo models (minimal)
316
+
317
+ ### Implementation Priority
318
+ 1. **High**: Models, blocks, navigation, taxonomy
319
+ 2. **Medium**: Social, FAQ, SEO, forms
320
+ 3. **Low**: Admin polish, management commands
321
+
322
+ ### Testing Strategy
323
+ - Create sample data via management commands
324
+ - Test all admin interfaces
325
+ - Verify theme variants work correctly
326
+ - Check responsive design and accessibility
327
+
328
+ ---
329
+
330
+ ## Implementation Status Update (July 28, 2025)
331
+
332
+ ### ✅ **Completed Work**
333
+ - **Phase 1**: Content Structure - 100% Complete
334
+ - **Demo Coverage**: Improved from <5% to ~30% of wagtail-feathers features
335
+ - **Site Status**: Fully functional at http://localhost:8000/
336
+ - **Admin Access**: Working admin interface with ArticlePageListingViewSet
337
+ - **Sample Content**: 3 articles, complete taxonomy, 5 authors with relationships
338
+ - **Template Issues**: Fixed invalid template tags, removed colead_tags references
339
+
340
+ ### 🔄 **Next Priorities**
341
+ 1. **Phase 2**: Navigation & Structure (Dynamic menus, content blocks)
342
+ 2. **Phase 3**: Advanced Features (Social integration, enhanced FAQ)
343
+ 3. **Phase 4**: Content & Polish (SEO, reading time, related content)
344
+ 4. **Phase 5**: Admin & Management (Enhanced viewsets, bulk operations)
345
+
346
+ ### 🎯 **Remaining Work**
347
+ - **70% of planned features** still to be implemented
348
+ - **StreamField Blocks**: Hero sections, cards, galleries, quotes, CTAs
349
+ - **Navigation System**: Dynamic menus, footer navigation, breadcrumbs
350
+ - **Social Integration**: Social media links, sharing buttons
351
+ - **Advanced Features**: FAQ embed blocks, enhanced forms, SEO optimization
352
+
353
+ *Updated plan roadmap for continuing comprehensive wagtail-feathers demo development.*
@@ -0,0 +1,222 @@
1
+ # Development Guide for Wagtail Feathers
2
+
3
+ ## Setup Development Environment
4
+
5
+ ### 1. Clone and Install
6
+ ```bash
7
+ git clone https://github.com/softquantum/wagtail-feathers.git
8
+ cd wagtail-feathers
9
+
10
+ # Install in development mode with all dev dependencies
11
+ pip install -e ".[dev]"
12
+ ```
13
+
14
+ ### 2. Run Tests
15
+ ```bash
16
+ # Run all tests
17
+ pytest
18
+
19
+ # Run with coverage
20
+ pytest --cov=wagtail_feathers --cov-report=html
21
+
22
+ # Run specific test files
23
+ pytest src/wagtail_feathers/tests/test_themes.py
24
+ ```
25
+
26
+ ### 3. Use Tox for Multi-Environment Testing
27
+ ```bash
28
+ # Run tests across all supported Python/Django/Wagtail combinations
29
+ tox
30
+
31
+ # Run only linting
32
+ tox -e lint
33
+
34
+ # Run only formatting
35
+ tox -e format
36
+
37
+ # Run coverage
38
+ tox -e coverage
39
+ ```
40
+
41
+ ## Package Management with Flit
42
+
43
+ ### Building the Package
44
+ ```bash
45
+ # Install flit if not already installed
46
+ pip install flit
47
+
48
+ # Build the package
49
+ flit build
50
+
51
+ # Check what files will be included
52
+ flit build --check
53
+ ```
54
+
55
+ ### Publishing to PyPI
56
+ ```bash
57
+ # Publish to Test PyPI first
58
+ flit publish --repository testpypi
59
+
60
+ # Publish to PyPI
61
+ flit publish
62
+ ```
63
+
64
+ ### Installing from Local Build
65
+ ```bash
66
+ # Install in development mode
67
+ flit install --symlink
68
+
69
+ # Install normally
70
+ flit install
71
+ ```
72
+
73
+ ## Code Quality
74
+
75
+ ### Linting and Formatting
76
+ ```bash
77
+ # Check code style
78
+ ruff check src/
79
+
80
+ # Fix auto-fixable issues
81
+ ruff check --fix src/
82
+
83
+ # Format code
84
+ ruff format src/
85
+
86
+ # Check formatting without applying
87
+ ruff format --check src/
88
+ ```
89
+
90
+ ### Pre-commit Hooks (Optional)
91
+ ```bash
92
+ # Install pre-commit
93
+ pip install pre-commit
94
+
95
+ # Create .pre-commit-config.yaml
96
+ cat > .pre-commit-config.yaml << EOF
97
+ repos:
98
+ - repo: https://github.com/astral-sh/ruff-pre-commit
99
+ rev: v0.1.0
100
+ hooks:
101
+ - id: ruff
102
+ args: [--fix, --exit-non-zero-on-fix]
103
+ - id: ruff-format
104
+ EOF
105
+
106
+ # Install hooks
107
+ pre-commit install
108
+ ```
109
+
110
+ ## Testing Strategy
111
+
112
+ ### Test Structure
113
+ - `src/wagtail_feathers/tests/` contains all tests
114
+ - Tests are organized by functionality (themes, models, etc.)
115
+ - Uses pytest with Django integration
116
+ - Includes factories for test data generation
117
+
118
+ ### Writing Tests
119
+ ```python
120
+ import pytest
121
+ from wagtail_feathers.models import FeatherBasePage
122
+
123
+ @pytest.mark.django_db
124
+ def test_feather_base_page_creation():
125
+ page = FeatherBasePage(title="Test Page")
126
+ assert page.title == "Test Page"
127
+ ```
128
+
129
+ ### Test Settings
130
+ The package includes a dedicated test settings file at:
131
+ `src/wagtail_feathers/tests/settings.py`
132
+
133
+ This provides a minimal Django/Wagtail setup for testing.
134
+
135
+ ## Version Management
136
+
137
+ Version is managed in `src/wagtail_feathers/__init__.py`:
138
+
139
+ ```python
140
+ __version__ = "0.1.0"
141
+ ```
142
+
143
+ Flit automatically reads this for package metadata.
144
+
145
+ ## Documentation
146
+
147
+ ### Updating README
148
+ The main README.md should be kept up-to-date with:
149
+ - Feature descriptions
150
+ - Installation instructions
151
+ - Usage examples
152
+ - API documentation
153
+
154
+ ### Docstrings
155
+ Follow Google-style docstrings:
156
+
157
+ ```python
158
+ def my_function(param1: str, param2: int) -> bool:
159
+ """Short description of the function.
160
+
161
+ Longer description if needed.
162
+
163
+ Args:
164
+ param1: Description of parameter 1.
165
+ param2: Description of parameter 2.
166
+
167
+ Returns:
168
+ Description of return value.
169
+
170
+ Raises:
171
+ ValueError: When parameter is invalid.
172
+ """
173
+ pass
174
+ ```
175
+
176
+ ## Release Process
177
+
178
+ 1. **Update Version**: Increment version in `__init__.py`
179
+ 2. **Update Changelog**: Document changes in README or CHANGELOG
180
+ 3. **Run Tests**: Ensure all tests pass across environments
181
+ 4. **Build Package**: `flit build`
182
+ 5. **Test Install**: Install and test in clean environment
183
+ 6. **Publish**: `flit publish` (to testpypi first, then pypi)
184
+ 7. **Tag Release**: Create git tag for the version
185
+ 8. **Update Documentation**: Ensure docs reflect new version
186
+
187
+ ## Contributing
188
+
189
+ When contributing:
190
+
191
+ 1. Fork the repository
192
+ 2. Create a feature branch
193
+ 3. Write tests for new functionality
194
+ 4. Ensure all tests pass
195
+ 5. Follow code style guidelines
196
+ 6. Update documentation as needed
197
+ 7. Submit a pull request
198
+
199
+ ## Local Development Tips
200
+
201
+ ### Working with the Parent Project
202
+ When developing wagtail_feathers within the project:
203
+
204
+ ```bash
205
+ # Link local development version
206
+ pip uninstall wagtail-feathers
207
+ pip install -e /path/to/wagtail_feathers
208
+
209
+ # Or use pip's editable install
210
+ pip install -e ../wagtail_feathers
211
+ ```
212
+
213
+ ### Database Migrations
214
+ For testing database changes:
215
+
216
+ ```bash
217
+ # Create test migrations
218
+ python -m pytest src/wagtail_feathers/tests/ --create-db
219
+
220
+ # Or run with Django management command
221
+ DJANGO_SETTINGS_MODULE=wagtail_feathers.tests.settings python -m django makemigrations wagtail_feathers
222
+ ```
@@ -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