pageflow 17.1.0 → 17.2.0

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 (302) hide show
  1. checksums.yaml +4 -4
  2. data/CHANGELOG.md +319 -345
  3. data/README.md +3 -4
  4. data/admins/pageflow/accounts.rb +6 -6
  5. data/admins/pageflow/entry.rb +10 -8
  6. data/admins/pageflow/membership.rb +11 -11
  7. data/admins/pageflow/translations.rb +5 -5
  8. data/app/assets/images/pageflow/admin/icons/comment.svg +1 -0
  9. data/app/assets/javascripts/pageflow/dist/ui.js +1350 -630
  10. data/app/assets/javascripts/pageflow/editor/vendor.js +0 -1
  11. data/app/assets/javascripts/pageflow/ui.js +0 -1
  12. data/app/assets/stylesheets/pageflow/admin/entry_comments_indicator.scss +45 -0
  13. data/app/assets/stylesheets/pageflow/admin/permalink_input.scss +8 -1
  14. data/app/assets/stylesheets/pageflow/admin.scss +1 -0
  15. data/app/assets/stylesheets/pageflow/animations/spin.scss +9 -0
  16. data/app/assets/stylesheets/pageflow/animations.scss +1 -0
  17. data/app/assets/stylesheets/pageflow/editor/background_positioning.scss +21 -5
  18. data/app/assets/stylesheets/pageflow/editor/base.scss +9 -1
  19. data/app/assets/stylesheets/pageflow/editor/drop_down_button.scss +13 -1
  20. data/app/assets/stylesheets/pageflow/editor/edit_configuration_view.scss +5 -0
  21. data/app/assets/stylesheets/pageflow/editor/file_folders.scss +127 -0
  22. data/app/assets/stylesheets/pageflow/editor/file_meta_data.scss +0 -1
  23. data/app/assets/stylesheets/pageflow/editor/file_meta_data_overlay.scss +45 -0
  24. data/app/assets/stylesheets/pageflow/editor/file_preview.scss +138 -0
  25. data/app/assets/stylesheets/pageflow/editor/file_references.scss +68 -0
  26. data/app/assets/stylesheets/pageflow/editor/file_settings_dialog.scss +1 -1
  27. data/app/assets/stylesheets/pageflow/editor/file_stage_icons.scss +17 -0
  28. data/app/assets/stylesheets/pageflow/editor/file_stages.scss +25 -32
  29. data/app/assets/stylesheets/pageflow/editor/file_thumbnails.scss +31 -48
  30. data/app/assets/stylesheets/pageflow/editor/file_type_pills.scss +73 -0
  31. data/app/assets/stylesheets/pageflow/editor/files.scss +230 -50
  32. data/app/assets/stylesheets/pageflow/editor/filtered_files.scss +142 -14
  33. data/app/assets/stylesheets/pageflow/editor/folder_breadcrumb.scss +40 -0
  34. data/app/assets/stylesheets/pageflow/editor/info_box.scss +12 -0
  35. data/app/assets/stylesheets/pageflow/editor/inputs/edit_defaults_button.scss +15 -0
  36. data/app/assets/stylesheets/pageflow/editor/inputs.scss +1 -0
  37. data/app/assets/stylesheets/pageflow/editor/list.scss +88 -38
  38. data/app/assets/stylesheets/pageflow/editor/manage_files.scss +9 -0
  39. data/app/assets/stylesheets/pageflow/editor/menu.scss +14 -0
  40. data/app/assets/stylesheets/pageflow/editor/move_to_folder_dialog.scss +83 -0
  41. data/app/assets/stylesheets/pageflow/mixins/pageflow.scss +9 -5
  42. data/app/assets/stylesheets/pageflow/ui/color_picker.scss +230 -0
  43. data/app/assets/stylesheets/pageflow/ui/forms.scss +34 -4
  44. data/app/assets/stylesheets/pageflow/ui/functions.scss +12 -2
  45. data/app/assets/stylesheets/pageflow/ui/input/color_input.scss +9 -16
  46. data/app/assets/stylesheets/pageflow/ui/input/text_area_input.scss +15 -0
  47. data/app/assets/stylesheets/pageflow/ui/overrides.scss +8 -0
  48. data/app/assets/stylesheets/pageflow/ui/properties.scss +29 -0
  49. data/app/assets/stylesheets/pageflow/ui/tabs_view.scss +8 -3
  50. data/app/assets/stylesheets/pageflow/ui.scss +4 -2
  51. data/app/controllers/pageflow/editor/entries_controller.rb +1 -0
  52. data/app/controllers/pageflow/editor/file_folders_controller.rb +80 -0
  53. data/app/controllers/pageflow/editor/file_import_controller.rb +1 -0
  54. data/app/controllers/pageflow/editor/files_controller.rb +15 -6
  55. data/app/controllers/pageflow/editor/oembeds_controller.rb +21 -0
  56. data/app/controllers/pageflow/entries_controller.rb +17 -13
  57. data/app/controllers/pageflow/review/comment_thread_reads_controller.rb +30 -0
  58. data/app/controllers/pageflow/review/comment_threads_controller.rb +60 -0
  59. data/app/controllers/pageflow/review/comments_controller.rb +53 -0
  60. data/app/controllers/pageflow/revisions_controller.rb +4 -1
  61. data/app/helpers/pageflow/admin/entries_helper.rb +40 -0
  62. data/app/helpers/pageflow/admin/widgets_helper.rb +2 -2
  63. data/app/helpers/pageflow/common_entry_seed_helper.rb +5 -3
  64. data/app/helpers/pageflow/editor/config_helper.rb +3 -1
  65. data/app/helpers/pageflow/entries_helper.rb +24 -42
  66. data/app/helpers/pageflow/entry_json_seed_helper.rb +4 -4
  67. data/app/helpers/pageflow/public_i18n_helper.rb +9 -8
  68. data/app/helpers/pageflow/structured_data_helper.rb +4 -1
  69. data/app/helpers/pageflow/themes_helper.rb +1 -3
  70. data/app/helpers/pageflow/widgets_helper.rb +2 -1
  71. data/app/inputs/pageflow_permalink_input.rb +6 -2
  72. data/app/models/concerns/pageflow/auto_generated_perma_id.rb +11 -4
  73. data/app/models/concerns/pageflow/reusable_file.rb +1 -1
  74. data/app/models/concerns/pageflow/serialization_blacklist.rb +2 -4
  75. data/app/models/concerns/pageflow/translated_attributes.rb +101 -0
  76. data/app/models/concerns/pageflow/uploadable_file.rb +1 -1
  77. data/app/models/pageflow/comment.rb +30 -0
  78. data/app/models/pageflow/comment_thread.rb +65 -0
  79. data/app/models/pageflow/comment_thread_read.rb +22 -0
  80. data/app/models/pageflow/customized_theme.rb +3 -2
  81. data/app/models/pageflow/draft_entry.rb +20 -8
  82. data/app/models/pageflow/entry.rb +2 -0
  83. data/app/models/pageflow/entry_at_revision.rb +9 -1
  84. data/app/models/pageflow/entry_comment_summary.rb +114 -0
  85. data/app/models/pageflow/file_folder.rb +74 -0
  86. data/app/models/pageflow/file_reuse.rb +3 -2
  87. data/app/models/pageflow/file_usage.rb +8 -0
  88. data/app/models/pageflow/image_file.rb +24 -20
  89. data/app/models/pageflow/image_file_url_templates.rb +3 -3
  90. data/app/models/pageflow/legal_info.rb +38 -0
  91. data/app/models/pageflow/nested_revision_component_copy.rb +1 -1
  92. data/app/models/pageflow/permalink.rb +1 -0
  93. data/app/models/pageflow/revision.rb +6 -2
  94. data/app/models/pageflow/site.rb +10 -0
  95. data/app/models/pageflow/used_file.rb +8 -2
  96. data/app/models/pageflow/widget.rb +2 -2
  97. data/app/views/pageflow/audio_files/_audio_file.json.jbuilder +0 -1
  98. data/app/views/pageflow/editor/config/_seeds.json.jbuilder +4 -2
  99. data/app/views/pageflow/editor/entries/_entry.json.jbuilder +2 -1
  100. data/app/views/pageflow/editor/entries/seed.json.erb +1 -0
  101. data/app/views/pageflow/editor/file_folders/_file_folder.json.jbuilder +5 -0
  102. data/app/views/pageflow/editor/file_folders/create.json.jbuilder +1 -0
  103. data/app/views/pageflow/editor/file_folders/index.json.jbuilder +3 -0
  104. data/app/views/pageflow/editor/files/_file.json.jbuilder +2 -1
  105. data/app/views/pageflow/editor/image_files/_image_file.json.jbuilder +3 -0
  106. data/app/views/pageflow/editor/video_files/_video_file.json.jbuilder +3 -0
  107. data/app/views/pageflow/files/_file.json.jbuilder +2 -0
  108. data/app/views/pageflow/image_files/_image_file.json.jbuilder +0 -1
  109. data/app/views/pageflow/review/comment_threads/_comment_thread.json.jbuilder +20 -0
  110. data/app/views/pageflow/review/comment_threads/create.json.jbuilder +2 -0
  111. data/app/views/pageflow/review/comment_threads/index.json.jbuilder +13 -0
  112. data/app/views/pageflow/review/comments/_comment.json.jbuilder +13 -0
  113. data/app/views/pageflow/review/comments/create.json.jbuilder +1 -0
  114. data/app/views/pageflow/structured_data/_entry.json.jbuilder +2 -3
  115. data/app/views/pageflow/video_files/_video_file.json.jbuilder +0 -1
  116. data/config/locales/de.yml +152 -14
  117. data/config/locales/en.yml +150 -14
  118. data/config/routes.rb +14 -0
  119. data/db/migrate/20140418225525_setup_schema.rb +2 -2
  120. data/db/migrate/20251015000000_add_structured_data_type_name_to_revisions.rb +5 -0
  121. data/db/migrate/20251029142849_convert_legacy_social_embeds_to_unified_social_embed.rb +38 -0
  122. data/db/migrate/20251119083347_fix_main_storyline_positions.rb +16 -0
  123. data/db/migrate/20251119083348_ensure_scrolled_entries_have_excursion_storyline.rb +15 -0
  124. data/db/migrate/20260303000000_add_layout_version_to_revisions.rb +6 -0
  125. data/db/migrate/20260323000000_create_comment_threads_and_comments.rb +30 -0
  126. data/db/migrate/20260414000000_add_subject_range_to_comment_threads.rb +5 -0
  127. data/db/migrate/20260415000000_add_section_perma_id_to_comment_threads.rb +5 -0
  128. data/db/migrate/20260727000000_add_quote_to_comments.rb +5 -0
  129. data/db/migrate/20260728000000_create_file_folders.rb +17 -0
  130. data/db/migrate/20260805000000_add_attribute_translations_to_sites.rb +5 -0
  131. data/db/migrate/20260806000000_add_edited_at_to_comments.rb +5 -0
  132. data/db/migrate/20260810000000_create_pageflow_scrolled_lottie_files.rb +24 -0
  133. data/db/migrate/20260817000000_create_comment_thread_reads.rb +16 -0
  134. data/db/migrate/20260819000000_add_unread_comments_since_at_to_users.rb +18 -0
  135. data/entry_types/paged/app/assets/javascripts/pageflow_paged/dist/editor.js +8665 -3890
  136. data/entry_types/paged/app/assets/javascripts/pageflow_paged/dist/frontend.js +979 -3571
  137. data/entry_types/paged/app/assets/javascripts/pageflow_paged/dist/react-client.js +20199 -28120
  138. data/entry_types/paged/app/assets/javascripts/pageflow_paged/dist/react-server.js +18652 -26584
  139. data/entry_types/scrolled/app/assets/stylesheets/pageflow_scrolled/ui.scss +2 -0
  140. data/entry_types/scrolled/app/controllers/pageflow_scrolled/editor/content_elements_controller.rb +33 -3
  141. data/entry_types/scrolled/app/controllers/pageflow_scrolled/editor/sections_controller.rb +2 -3
  142. data/entry_types/scrolled/app/controllers/pageflow_scrolled/entries_controller.rb +21 -1
  143. data/entry_types/scrolled/app/helpers/pageflow_scrolled/cache_helper.rb +3 -3
  144. data/entry_types/scrolled/app/helpers/pageflow_scrolled/editor/entry_json_seed_helper.rb +7 -5
  145. data/entry_types/scrolled/app/helpers/pageflow_scrolled/editor/seed_html_helper.rb +5 -2
  146. data/entry_types/scrolled/app/helpers/pageflow_scrolled/entry_json_seed_helper.rb +13 -5
  147. data/entry_types/scrolled/app/helpers/pageflow_scrolled/i18n_helper.rb +28 -13
  148. data/entry_types/scrolled/app/helpers/pageflow_scrolled/packs_helper.rb +26 -11
  149. data/entry_types/scrolled/app/helpers/pageflow_scrolled/react_server_side_rendering_helper.rb +2 -2
  150. data/entry_types/scrolled/app/helpers/pageflow_scrolled/sprockets_helper.rb +16 -0
  151. data/entry_types/scrolled/app/helpers/pageflow_scrolled/themes_helper.rb +174 -3
  152. data/entry_types/scrolled/app/models/pageflow_scrolled/content_element.rb +49 -7
  153. data/entry_types/scrolled/app/models/pageflow_scrolled/lottie_file.rb +6 -0
  154. data/entry_types/scrolled/app/models/pageflow_scrolled/lottie_file_url_templates.rb +16 -0
  155. data/entry_types/scrolled/app/models/pageflow_scrolled/storyline.rb +1 -0
  156. data/entry_types/scrolled/app/views/pageflow_scrolled/entries/show.html.erb +13 -12
  157. data/entry_types/scrolled/app/views/pageflow_scrolled/entry_json_seed/_entry.json.jbuilder +30 -10
  158. data/entry_types/scrolled/app/views/pageflow_scrolled/entry_json_seed/_theme.json.jbuilder +9 -0
  159. data/entry_types/scrolled/app/views/pageflow_scrolled/favicons/_entry.html.erb +1 -1
  160. data/entry_types/scrolled/config/configuration_schemas/pageflow-scrolled.json +414 -0
  161. data/entry_types/scrolled/config/locales/de.yml +512 -65
  162. data/entry_types/scrolled/config/locales/en.yml +518 -52
  163. data/entry_types/scrolled/lib/pageflow_scrolled/additional_seed_data.rb +2 -2
  164. data/entry_types/scrolled/lib/pageflow_scrolled/configuration.rb +51 -6
  165. data/entry_types/scrolled/lib/pageflow_scrolled/configuration_schemas.rb +91 -0
  166. data/entry_types/scrolled/lib/pageflow_scrolled/engine.rb +2 -1
  167. data/entry_types/scrolled/lib/pageflow_scrolled/entry_file_reference_locations.rb +71 -0
  168. data/entry_types/scrolled/lib/pageflow_scrolled/entry_structured_data_types/faq_page.rb +58 -0
  169. data/entry_types/scrolled/lib/pageflow_scrolled/file_reference_locations.rb +69 -0
  170. data/entry_types/scrolled/lib/pageflow_scrolled/plugin.rb +205 -22
  171. data/entry_types/scrolled/lib/pageflow_scrolled/react_widget_type.rb +2 -4
  172. data/entry_types/scrolled/lib/pageflow_scrolled/seeds.rb +56 -36
  173. data/entry_types/scrolled/lib/pageflow_scrolled/theme_options_default_scale.rb +35 -0
  174. data/entry_types/scrolled/lib/pageflow_scrolled.rb +13 -0
  175. data/entry_types/scrolled/lib/tasks/pageflow_scrolled/storybook.rake +19 -1
  176. data/entry_types/scrolled/package/config/configurationSchemas.js +70 -0
  177. data/entry_types/scrolled/package/config/rollup/configurationSchemas.js +19 -0
  178. data/entry_types/scrolled/package/config/webpack.js +72 -0
  179. data/entry_types/scrolled/package/contentElements/hotspots-frontend.css +1 -1
  180. data/entry_types/scrolled/package/contentElements/hotspots-frontend.js +1181 -915
  181. data/entry_types/scrolled/package/contentElements/inlineBeforeAfter-frontend.css +1 -0
  182. data/entry_types/scrolled/package/contentElements/inlineBeforeAfter-frontend.js +219 -0
  183. data/entry_types/scrolled/package/contentElements/lottieAnimation-frontend.css +1 -0
  184. data/entry_types/scrolled/package/contentElements/lottieAnimation-frontend.js +244 -0
  185. data/entry_types/scrolled/package/contentElements/socialEmbed-frontend.css +1 -0
  186. data/entry_types/scrolled/package/contentElements/socialEmbed-frontend.js +823 -0
  187. data/entry_types/scrolled/package/contentElements/tikTokEmbed-frontend.js +71 -21
  188. data/entry_types/scrolled/package/contentElements/twitterEmbed-frontend.css +1 -0
  189. data/entry_types/scrolled/package/contentElements/twitterEmbed-frontend.js +277 -0
  190. data/entry_types/scrolled/package/contentElements/videoEmbed-frontend.css +1 -0
  191. data/entry_types/scrolled/package/contentElements/videoEmbed-frontend.js +244 -0
  192. data/entry_types/scrolled/package/contentElements-editor.js +1915 -1097
  193. data/entry_types/scrolled/package/contentElements-frontend.css +1 -1
  194. data/entry_types/scrolled/package/contentElements-frontend.js +3093 -1679
  195. data/entry_types/scrolled/package/editor.css +1 -0
  196. data/entry_types/scrolled/package/editor.js +8667 -4077
  197. data/entry_types/scrolled/package/entryState.js +1600 -0
  198. data/entry_types/scrolled/package/frontend/FloatingPortalRootProvider-20c600de.js +1979 -0
  199. data/entry_types/scrolled/package/frontend/FloatingPortalRootProvider-58189220.js +2538 -0
  200. data/entry_types/scrolled/package/frontend/{PhonePlatformContext-9f76033e.js → PhonePlatformContext-035a99fa.js} +7 -12
  201. data/entry_types/scrolled/package/frontend/PhonePlatformContext-9da43797.js +33 -0
  202. data/entry_types/scrolled/package/frontend/Placeholder.module-bf0966b4.js +5267 -0
  203. data/entry_types/scrolled/package/frontend/Placeholder.module-d22a9335.js +4180 -0
  204. data/entry_types/scrolled/package/frontend/ThemeIcon-ab834849.js +754 -0
  205. data/entry_types/scrolled/package/frontend/ThemeIcon-f6cb3a8f.js +773 -0
  206. data/entry_types/scrolled/package/frontend/{ToggleFullscreenCornerButton-788e9cdb.js → ToggleFullscreenCornerButton-30fd1124.js} +6 -6
  207. data/entry_types/scrolled/package/frontend/ToggleFullscreenCornerButton-61c25224.js +72 -0
  208. data/entry_types/scrolled/package/frontend/Viewer-1074fd59.js +147 -0
  209. data/entry_types/scrolled/package/frontend/Viewer-1482ca34.js +480 -0
  210. data/entry_types/scrolled/package/frontend/Viewer-70504231.js +210 -0
  211. data/entry_types/scrolled/package/frontend/{Viewer-0345ce57.js → Viewer-cc8d4072.js} +84 -92
  212. data/entry_types/scrolled/package/frontend/Wavesurfer-656e3c36.js +302 -0
  213. data/entry_types/scrolled/package/frontend/Wavesurfer-b753b838.js +385 -0
  214. data/entry_types/scrolled/package/frontend/commenting.css +1 -0
  215. data/entry_types/scrolled/package/frontend/extensions-167ae143.js +1455 -0
  216. data/entry_types/scrolled/package/frontend/extensions-2318f92b.js +5918 -0
  217. data/entry_types/scrolled/package/frontend/extensions-a461fd13.js +4890 -0
  218. data/entry_types/scrolled/package/frontend/extensions-c98269fd.js +1982 -0
  219. data/entry_types/scrolled/package/frontend/i18n-493cd2a6.js +93 -0
  220. data/entry_types/scrolled/package/frontend/i18n-e06cac14.js +100 -0
  221. data/entry_types/scrolled/package/frontend/{index-eb670c2f.js → index-2e5546f7.js} +36 -44
  222. data/entry_types/scrolled/package/frontend/index-de2b418d.js +130 -0
  223. data/entry_types/scrolled/package/frontend/index.css +1 -1
  224. data/entry_types/scrolled/package/frontend/index.js +1870 -875
  225. data/entry_types/scrolled/package/frontend/inlineEditing.css +1 -0
  226. data/entry_types/scrolled/package/frontend/useContentElementEditorState-a084912e.js +25 -0
  227. data/entry_types/scrolled/package/frontend/useDelayedBoolean-a387d85b.js +24 -0
  228. data/entry_types/scrolled/package/frontend/{usePhonePlatform-c2ba875d.js → usePhonePlatform-4ecb96d4.js} +1 -1
  229. data/entry_types/scrolled/package/frontend/usePhonePlatform-ce9ff08d.js +8 -0
  230. data/entry_types/scrolled/package/frontend-server.js +20 -209
  231. data/entry_types/scrolled/package/package.json +5 -3
  232. data/entry_types/scrolled/package/review.css +1 -0
  233. data/entry_types/scrolled/package/review.js +3306 -0
  234. data/entry_types/scrolled/package/testHelpers.js +836 -359
  235. data/entry_types/scrolled/package/widgets/consentBar.css +1 -1
  236. data/entry_types/scrolled/package/widgets/consentBar.js +269 -290
  237. data/entry_types/scrolled/package/widgets/defaultNavigation.css +2 -2
  238. data/entry_types/scrolled/package/widgets/defaultNavigation.js +911 -352
  239. data/entry_types/scrolled/package/widgets/excursionSheet.css +1 -1
  240. data/entry_types/scrolled/package/widgets/excursionSheet.js +87 -124
  241. data/entry_types/scrolled/package/widgets/iconInlineFileRights.css +1 -1
  242. data/entry_types/scrolled/package/widgets/iconInlineFileRights.js +62 -29
  243. data/entry_types/scrolled/package/widgets/iconScrollIndicator.js +32 -13
  244. data/entry_types/scrolled/package/widgets/mainStorylineSheet.css +1 -1
  245. data/entry_types/scrolled/package/widgets/mainStorylineSheet.js +56 -100
  246. data/entry_types/scrolled/package/widgets/textInlineFileRights.css +1 -1
  247. data/entry_types/scrolled/package/widgets/textInlineFileRights.js +33 -28
  248. data/entry_types/scrolled/package/widgets-server.js +1 -0
  249. data/entry_types/scrolled/spec/factories/lottie_files.rb +29 -0
  250. data/entry_types/scrolled/spec/fixtures/animation.lottie +0 -0
  251. data/entry_types/scrolled/spec/fixtures/font.woff +0 -0
  252. data/entry_types/scrolled/spec/fixtures/font.woff2 +0 -0
  253. data/lib/generators/pageflow/resque/resque_generator.rb +0 -2
  254. data/lib/pageflow/configuration.rb +49 -7
  255. data/lib/pageflow/deprecation.rb +19 -0
  256. data/lib/pageflow/engine.rb +1 -1
  257. data/lib/pageflow/entries_controller_env_helper.rb +32 -2
  258. data/lib/pageflow/entry_export_import/entry_serialization.rb +4 -4
  259. data/lib/pageflow/entry_export_import/page_type_versions.rb +2 -2
  260. data/lib/pageflow/entry_export_import/revision_serialization/import.rb +10 -0
  261. data/lib/pageflow/entry_export_import/revision_serialization.rb +3 -0
  262. data/lib/pageflow/entry_structured_data_types.rb +43 -0
  263. data/lib/pageflow/entry_type_configuration.rb +1 -0
  264. data/lib/pageflow/file_type.rb +2 -2
  265. data/lib/pageflow/file_types.rb +1 -1
  266. data/lib/pageflow/oembed_providers.rb +42 -0
  267. data/lib/pageflow/primary_domain_entry_redirect.rb +6 -0
  268. data/lib/pageflow/rails_version.rb +13 -2
  269. data/lib/pageflow/themes.rb +41 -0
  270. data/lib/pageflow/user_mixin.rb +12 -0
  271. data/lib/pageflow/version.rb +1 -1
  272. data/lib/pageflow.rb +1 -0
  273. data/package/config/eslint-rules/documented-in-toc.js +125 -0
  274. data/package/config/jest/index.js +0 -1
  275. data/package/config/webpack.js +0 -1
  276. data/package/config/webpack5.js +0 -1
  277. data/package/editor.js +4378 -1897
  278. data/package/frontend.js +647 -886
  279. data/package/package.json +2 -1
  280. data/package/review.js +384 -0
  281. data/package/testHelpers.js +248 -188
  282. data/package/ui.js +1346 -630
  283. data/package/vendor/stubs/wysihtml5.js +2 -0
  284. data/spec/factories/comment_thread_reads.rb +10 -0
  285. data/spec/factories/comment_threads.rb +10 -0
  286. data/spec/factories/comments.rb +9 -0
  287. data/spec/factories/file_folders.rb +8 -0
  288. data/spec/factories/published_entries.rb +2 -0
  289. metadata +188 -67
  290. data/app/assets/stylesheets/pageflow/editor/select_button.scss +0 -51
  291. data/entry_types/scrolled/app/helpers/pageflow_scrolled/generated_media_queries_helper.rb +0 -55
  292. data/entry_types/scrolled/package/frontend/FloatingPortalRootProvider-51914be7.js +0 -5439
  293. data/entry_types/scrolled/package/frontend/ThemeIcon-81f2f066.js +0 -1932
  294. data/entry_types/scrolled/package/frontend/Viewer-cdc549cc.js +0 -147
  295. data/entry_types/scrolled/package/frontend/Wavesurfer-1cdc3925.js +0 -313
  296. data/entry_types/scrolled/package/frontend/components-96660ffd.js +0 -3803
  297. data/entry_types/scrolled/package/frontend/inherits-539844a6.js +0 -99
  298. data/entry_types/scrolled/package/frontend/useContentElementEditorState-77fe6c79.js +0 -51
  299. data/entry_types/scrolled/package/widgets/excursionDialog.css +0 -1
  300. data/entry_types/scrolled/package/widgets/excursionDialog.js +0 -109
  301. data/lib/generators/pageflow/resque/templates/resque_enqueue_after_commit_patch.rb +0 -25
  302. data/package/vendor/jquery.minicolors.js +0 -1108
data/CHANGELOG.md CHANGED
@@ -1,397 +1,371 @@
1
1
  # CHANGELOG
2
2
 
3
- ### Version 17.1.0
3
+ ### Version 17.2.0
4
4
 
5
- 2025-09-17
5
+ 2026-09-11
6
6
 
7
- [Compare changes](https://github.com/codevise/pageflow/compare/17-0-stable...v17.1.0)
7
+ [Compare changes](https://github.com/codevise/pageflow/compare/17-1-stable...v17.2.0)
8
8
 
9
9
  #### Core
10
10
 
11
11
  ##### Published Entry
12
12
 
13
- - Redirect after permalink change
14
- ([#2146](https://github.com/codevise/pageflow/pull/2146))
15
- - Site root entry support with redirect and password protection
16
- ([#2251](https://github.com/codevise/pageflow/pull/2251),
17
- [#2255](https://github.com/codevise/pageflow/pull/2255),
18
- [#2256](https://github.com/codevise/pageflow/pull/2256))
19
- - Custom 404 pages
20
- ([#2244](https://github.com/codevise/pageflow/pull/2244))
21
- - Entry translations/hreflang alternate links
22
- ([#2059](https://github.com/codevise/pageflow/pull/2059))
23
- - Allow registering additional headers for published entries
24
- ([#2112](https://github.com/codevise/pageflow/pull/2112))
25
- - Always use jpg for social share images
26
- ([#2118](https://github.com/codevise/pageflow/pull/2118))
27
- - Allow opening external privacy settings via privacy link
28
- ([#2120](https://github.com/codevise/pageflow/pull/2120),
29
- [#2130](https://github.com/codevise/pageflow/pull/2130))
30
- - Replace mentions of Twitter with X
31
- ([#2111](https://github.com/codevise/pageflow/pull/2111))
13
+ - Support regional locales via i18n fallback chain
14
+ ([#2416](https://github.com/codevise/pageflow/pull/2416),
15
+ [#2417](https://github.com/codevise/pageflow/pull/2417))
16
+ - Bug fix: Clear stale permalink redirect on slug change
17
+ ([#2403](https://github.com/codevise/pageflow/pull/2403))
32
18
 
33
19
  ##### Admin
34
20
 
35
- - Create default permalink directory for new sites
36
- ([#2105](https://github.com/codevise/pageflow/pull/2105))
37
- - Make user admin attributes table extensible
38
- ([#2087](https://github.com/codevise/pageflow/pull/2087))
39
- - Add config option to redirect to editor after entry create
40
- ([#2085](https://github.com/codevise/pageflow/pull/2085))
41
- - Create configuration option for specifying a translator url
42
- ([#2153](https://github.com/codevise/pageflow/pull/2153))
21
+ - Persist selected folder when creating entries
22
+ ([#2366](https://github.com/codevise/pageflow/pull/2366))
23
+ - Break permalink input but not inside base url
24
+ ([#2328](https://github.com/codevise/pageflow/pull/2328))
43
25
 
44
26
  ##### Editor
45
27
 
46
- - File management improvements with enhanced views and display names
47
- ([#2270](https://github.com/codevise/pageflow/pull/2270),
48
- [#2273](https://github.com/codevise/pageflow/pull/2273),
49
- [#2274](https://github.com/codevise/pageflow/pull/2274),
50
- [#2275](https://github.com/codevise/pageflow/pull/2275))
51
- - Auto-orient images when determining dimensions
52
- ([#2113](https://github.com/codevise/pageflow/pull/2113))
28
+ - File management improvements with folders and bulk deletion
29
+ ([#2465](https://github.com/codevise/pageflow/pull/2465),
30
+ [#2466](https://github.com/codevise/pageflow/pull/2466),
31
+ [#2467](https://github.com/codevise/pageflow/pull/2467),
32
+ [#2471](https://github.com/codevise/pageflow/pull/2471),
33
+ [#2475](https://github.com/codevise/pageflow/pull/2475))
34
+ - Debounce auto save for rapid config changes
35
+ ([#2365](https://github.com/codevise/pageflow/pull/2365))
36
+ - Make TabsView implement tabslist role
37
+ ([#2297](https://github.com/codevise/pageflow/pull/2297))
38
+ - Bug fix: Restore support for creating generated files without file name
39
+ ([#2293](https://github.com/codevise/pageflow/pull/2293))
53
40
 
54
41
  ##### JavaScript API
55
42
 
56
- - Export and extend ColorSelectInputView
57
- ([#2198](https://github.com/codevise/pageflow/pull/2198))
58
- - Add editor API to add additional appearance inputs
59
- ([#2197](https://github.com/codevise/pageflow/pull/2197))
60
- - Improve media events
61
- ([#2070](https://github.com/codevise/pageflow/pull/2070),
62
- [#2071](https://github.com/codevise/pageflow/pull/2071))
63
- - Pass entry model to additional editor initializers
64
- ([#2082](https://github.com/codevise/pageflow/pull/2082))
43
+ - Trigger seeking/seeked media events
44
+ ([#2413](https://github.com/codevise/pageflow/pull/2413))
45
+ - Allow disabling text area dynamically
46
+ ([#2326](https://github.com/codevise/pageflow/pull/2326))
65
47
 
66
48
  ##### Rails Engine
67
49
 
68
- - Clean up permalinks when deleting entries
69
- ([#2257](https://github.com/codevise/pageflow/pull/2257))
70
- - Perma ID counter and revision component bulk copy
71
- ([#2267](https://github.com/codevise/pageflow/pull/2267))
72
- - Allow entry specific public_entry_url_options
73
- ([#2213](https://github.com/codevise/pageflow/pull/2213))
74
- - Require react-rails version that is compatible with Shakapacker
75
- ([#2276](https://github.com/codevise/pageflow/pull/2276))
76
- - Support entry type specific editor translations for file types
77
- ([#2261](https://github.com/codevise/pageflow/pull/2261))
78
- - Invoke hook when entry is created via admin
79
- ([#2078](https://github.com/codevise/pageflow/pull/2078))
80
- - Extend version range to allow Resque 2
81
- ([#2054](https://github.com/codevise/pageflow/pull/2054))
50
+ - Support Rails 7.2, 8.0 and 8.1
51
+ ([#2288](https://github.com/codevise/pageflow/pull/2288),
52
+ [#2291](https://github.com/codevise/pageflow/pull/2291),
53
+ [#2485](https://github.com/codevise/pageflow/pull/2485),
54
+ [#2486](https://github.com/codevise/pageflow/pull/2486))
55
+ - Support for translated site attributes
56
+ ([#2458](https://github.com/codevise/pageflow/pull/2458),
57
+ [#2464](https://github.com/codevise/pageflow/pull/2464))
58
+ - Allow redirecting additional cnames to primary
59
+ ([#2383](https://github.com/codevise/pageflow/pull/2383))
60
+ - Allow public_entry_redirect in feature blocks
61
+ ([#2334](https://github.com/codevise/pageflow/pull/2334))
62
+ - Stop patching Resque to enqueue after transactions in install generator
63
+ ([#2292](https://github.com/codevise/pageflow/pull/2292))
64
+
65
+ ##### Test Helpers
66
+
67
+ - Add useFakeFeatures test helper
68
+ ([#2434](https://github.com/codevise/pageflow/pull/2434))
82
69
 
83
70
  ##### Internal
84
71
 
85
- - Fix publishing entry feature spec
86
- ([#2171](https://github.com/codevise/pageflow/pull/2171))
87
- - Align DraftEntry#create_file! spec with real usage
88
- ([#2269](https://github.com/codevise/pageflow/pull/2269))
89
- - Replace custom json_response helper with include_json matcher
90
- ([#2268](https://github.com/codevise/pageflow/pull/2268))
91
- - Merge translations
92
- ([#2266](https://github.com/codevise/pageflow/pull/2266))
93
- - Fix Rubocop offenses
94
- ([#2258](https://github.com/codevise/pageflow/pull/2258),
95
- [#2283](https://github.com/codevise/pageflow/pull/2283))
96
- - Fix eslint setup
97
- ([#2248](https://github.com/codevise/pageflow/pull/2248))
98
- - Do not depend in src icons in install generator
99
- ([#2260](https://github.com/codevise/pageflow/pull/2260))
100
- - Upgrade cache action to v4
101
- ([#2210](https://github.com/codevise/pageflow/pull/2210))
102
- - Upgrade development dependencies
103
- ([#2079](https://github.com/codevise/pageflow/pull/2079),
104
- [#2074](https://github.com/codevise/pageflow/pull/2074),
105
- [#2073](https://github.com/codevise/pageflow/pull/2073),
106
- [#2072](https://github.com/codevise/pageflow/pull/2072),
107
- [#2068](https://github.com/codevise/pageflow/pull/2068),
108
- [#2067](https://github.com/codevise/pageflow/pull/2067),
109
- [#2062](https://github.com/codevise/pageflow/pull/2062),
110
- [#2061](https://github.com/codevise/pageflow/pull/2061),
111
- [#2053](https://github.com/codevise/pageflow/pull/2053),
112
- [#1888](https://github.com/codevise/pageflow/pull/1888),
113
- [#1782](https://github.com/codevise/pageflow/pull/1782))
114
- - Remove unused Devise helpers
115
- ([#2086](https://github.com/codevise/pageflow/pull/2086))
116
- - Vendor and fix wysihtml
117
- ([#2165](https://github.com/codevise/pageflow/pull/2165))
118
- - Remove redundant pageflow namespaces in admin
119
- ([#2162](https://github.com/codevise/pageflow/pull/2162))
120
-
121
- #### Paged Entry Type
122
-
123
- ##### Internal
124
-
125
- - Explicitly require regnerator runtime
126
- ([#2076](https://github.com/codevise/pageflow/pull/2076))
127
- - Build pageflow-paged-react with Rollup
128
- ([#2060](https://github.com/codevise/pageflow/pull/2060))
72
+ - Speed up CI with pre-built Docker image
73
+ ([#2397](https://github.com/codevise/pageflow/pull/2397))
74
+ - Make CI lint checks block on errors and warnings
75
+ ([#2387](https://github.com/codevise/pageflow/pull/2387),
76
+ [#2405](https://github.com/codevise/pageflow/pull/2405))
77
+ - Enforce documentation.yml toc coverage via ESLint
78
+ ([#2435](https://github.com/codevise/pageflow/pull/2435))
79
+ - Unify helpers to test Backbone views with dom testing library
80
+ ([#2295](https://github.com/codevise/pageflow/pull/2295))
81
+ - Use Ruby 3.4 and Node 22 in GitHub actions
82
+ ([#2319](https://github.com/codevise/pageflow/pull/2319))
83
+ - Use polling for rollup watch mode
84
+ ([#2400](https://github.com/codevise/pageflow/pull/2400))
85
+ - Update set-output syntax in GitHub actions
86
+ ([#2307](https://github.com/codevise/pageflow/pull/2307))
87
+ - Pin connection_pool < 3
88
+ ([#2330](https://github.com/codevise/pageflow/pull/2330))
89
+ - Bug fix: Only render homepage entry for HTML requests
90
+ ([#2432](https://github.com/codevise/pageflow/pull/2432))
129
91
 
130
92
  #### Scrolled Entry Type
131
93
 
132
- ##### Manual Update Step
133
-
134
- - Support dark variant for widgets
135
- ([#2178](https://github.com/codevise/pageflow/pull/2178))
94
+ ##### Manual Update Steps
136
95
 
137
- Adapt themes to define colors via theme properties. You can use the
138
- [updated theme
139
- template](https://github.com/codevise/pageflow/pull/2178/files#diff-46b8b3195805f176a870a38aba142f219c3aba8167ede5a1627dd741648046e6)
140
- from the install generator as a reference.
96
+ - Social embed content element
97
+ ([#2312](https://github.com/codevise/pageflow/pull/2312))
141
98
 
142
99
  ##### Published Entry
143
100
 
144
- - Workaround Chrome auto zoom animation bug
145
- ([#2132](https://github.com/codevise/pageflow/pull/2132))
146
- - Prevent blurry background videos
147
- ([#2249](https://github.com/codevise/pageflow/pull/2249))
148
- - Exclude ogg audio source on mobile Safari
149
- ([#2238](https://github.com/codevise/pageflow/pull/2238))
150
- - Figure caption variants and text inline rights backdrops
151
- ([#2168](https://github.com/codevise/pageflow/pull/2168))
152
- - Honor user's reduced motion preference for backdrop animations
153
- ([#2125](https://github.com/codevise/pageflow/pull/2125))
154
- - Cutoff modes
155
- ([#2115](https://github.com/codevise/pageflow/pull/2115),
156
- [#2117](https://github.com/codevise/pageflow/pull/2117))
157
- - Improve text inline file rights
158
- ([#2102](https://github.com/codevise/pageflow/pull/2102))
159
- - Increase max length of alt texts to 5000
160
- ([#2206](https://github.com/codevise/pageflow/pull/2206))
161
- - Add full width in phone layout option
162
- ([#2195](https://github.com/codevise/pageflow/pull/2195))
163
- - Allow aligning narrow inline elements horizontally
164
- ([#2284](https://github.com/codevise/pageflow/pull/2284),
165
- [#2285](https://github.com/codevise/pageflow/pull/2285))
166
- - Optimize display in Google Discover
167
- ([#2145](https://github.com/codevise/pageflow/pull/2145))
168
- - Fix indentation of justified lists in center ragged sections
169
- ([#2214](https://github.com/codevise/pageflow/pull/2214),
170
- [#2215](https://github.com/codevise/pageflow/pull/2215))
171
- - Prevent last section from extending beyond footer
172
- ([#2177](https://github.com/codevise/pageflow/pull/2177))
173
- - Prevent tall stand-alone elements from breaking layout
174
- ([#2208](https://github.com/codevise/pageflow/pull/2208))
175
- - Bug fix: Add workaround for video scaling issue in iOS 17 below 17.4
176
- ([#2090](https://github.com/codevise/pageflow/pull/2090))
177
- - Bug fix: Fix image gallery scrolling in editor on Safari
178
- ([#2088](https://github.com/codevise/pageflow/pull/2088))
179
- - Bug fix: Prevent gap in background with parallax effect
180
- ([#2056](https://github.com/codevise/pageflow/pull/2056))
181
- - Experimental support for backdrop content elements
182
- ([#2093](https://github.com/codevise/pageflow/pull/2093))
183
- - Experimental support for excursion chapters
184
- ([#2231](https://github.com/codevise/pageflow/pull/2231))
101
+ - Excursions
102
+ ([#2289](https://github.com/codevise/pageflow/pull/2289),
103
+ [#2298](https://github.com/codevise/pageflow/pull/2298),
104
+ [#2305](https://github.com/codevise/pageflow/pull/2305),
105
+ [#2314](https://github.com/codevise/pageflow/pull/2314),
106
+ [#2321](https://github.com/codevise/pageflow/pull/2321),
107
+ [#2329](https://github.com/codevise/pageflow/pull/2329))
108
+ - Reduce and defer JavaScript payload
109
+ ([#2445](https://github.com/codevise/pageflow/pull/2445),
110
+ [#2446](https://github.com/codevise/pageflow/pull/2446),
111
+ [#2447](https://github.com/codevise/pageflow/pull/2447),
112
+ [#2448](https://github.com/codevise/pageflow/pull/2448))
113
+ - Inline file rights improvements
114
+ ([#2478](https://github.com/codevise/pageflow/pull/2478),
115
+ [#2482](https://github.com/codevise/pageflow/pull/2482))
116
+ - Outline/shadow element decorations and video element crop/rounded corners
117
+ ([#2378](https://github.com/codevise/pageflow/pull/2378),
118
+ [#2380](https://github.com/codevise/pageflow/pull/2380))
119
+ - Split appearance
120
+ ([#2370](https://github.com/codevise/pageflow/pull/2370),
121
+ [#2371](https://github.com/codevise/pageflow/pull/2371),
122
+ [#2374](https://github.com/codevise/pageflow/pull/2374))
123
+ - Link buttons
124
+ ([#2299](https://github.com/codevise/pageflow/pull/2299),
125
+ [#2315](https://github.com/codevise/pageflow/pull/2315))
126
+ - Add responsive image srcset support
127
+ ([#2367](https://github.com/codevise/pageflow/pull/2367))
128
+ - Improve accessibility of tooltips and player controls
129
+ ([#2290](https://github.com/codevise/pageflow/pull/2290),
130
+ [#2308](https://github.com/codevise/pageflow/pull/2308),
131
+ [#2317](https://github.com/codevise/pageflow/pull/2317))
132
+ - Allow configuring gradient shadow color
133
+ ([#2452](https://github.com/codevise/pageflow/pull/2452))
134
+ - Add option to position first backdrop below nav bar
135
+ ([#2352](https://github.com/codevise/pageflow/pull/2352))
136
+ - Improve sticky position
137
+ ([#2477](https://github.com/codevise/pageflow/pull/2477))
138
+ - Scroll margin
139
+ ([#2376](https://github.com/codevise/pageflow/pull/2376))
140
+ - Allow using FAQPage strucured data type for entries
141
+ ([#2306](https://github.com/codevise/pageflow/pull/2306))
142
+ - Opt in improvements
143
+ ([#2323](https://github.com/codevise/pageflow/pull/2323),
144
+ [#2369](https://github.com/codevise/pageflow/pull/2369))
145
+ - Add target top to external links in embed mode
146
+ ([#2331](https://github.com/codevise/pageflow/pull/2331))
147
+ - Apply width restriction per item in TwoColumn
148
+ ([#2384](https://github.com/codevise/pageflow/pull/2384))
149
+ - Prevent sub/sup from stretching line height
150
+ ([#2454](https://github.com/codevise/pageflow/pull/2454))
151
+ - Load CSS custom property definitions globally
152
+ ([#2373](https://github.com/codevise/pageflow/pull/2373))
153
+ - Do not enable scroll indicator widget by default if feature is enabled
154
+ ([#2294](https://github.com/codevise/pageflow/pull/2294))
155
+ - Remove experimental frontend
156
+ ([#2390](https://github.com/codevise/pageflow/pull/2390))
157
+ - Bug fix: Scroll to section when navigating via URL hash
158
+ ([#2301](https://github.com/codevise/pageflow/pull/2301),
159
+ [#2353](https://github.com/codevise/pageflow/pull/2353))
160
+ - Bug fix: Fix default text tracks on iOS
161
+ ([#2300](https://github.com/codevise/pageflow/pull/2300))
162
+ - Bug fix: Do not pause background video when clicking in section margin
163
+ ([#2296](https://github.com/codevise/pageflow/pull/2296))
185
164
 
186
165
  ##### Editor
187
166
 
188
- - Reorder chapters mode
189
- ([#2150](https://github.com/codevise/pageflow/pull/2150))
190
- - Add undo/redo to inline editable texts
191
- ([#2163](https://github.com/codevise/pageflow/pull/2163))
192
- - Add sub and sup marks to editable text
193
- ([#2141](https://github.com/codevise/pageflow/pull/2141))
194
- - Add context menu item to copy section
195
- ([#2278](https://github.com/codevise/pageflow/pull/2278))
196
- - Fix flickering when sorting sections after returning to the outline
197
- ([#2152](https://github.com/codevise/pageflow/pull/2152))
198
- - Fix drag image of dragged section in Safari
199
- ([#2154](https://github.com/codevise/pageflow/pull/2154))
200
- - Prevent text from overlapping list item edit button
201
- ([#2172](https://github.com/codevise/pageflow/pull/2172))
202
- - Do not show cutoff mode indicator on newly created sections
203
- ([#2174](https://github.com/codevise/pageflow/pull/2174))
204
- - Reset checkbox with undefined value when disabled binding changes
205
- ([#2264](https://github.com/codevise/pageflow/pull/2264))
206
- - Make link preview align of editable link configurable
207
- ([#2218](https://github.com/codevise/pageflow/pull/2218))
208
- - Prevent error when deleting content element with transient state
209
- ([#2200](https://github.com/codevise/pageflow/pull/2200))
210
- - Do not switch to section settings when adding section
211
- ([#2080](https://github.com/codevise/pageflow/pull/2080))
212
- - Improve editable link component
213
- ([#2129](https://github.com/codevise/pageflow/pull/2129))
214
- - Do not sync non-react widgets to scrolled state in editor
215
- ([#2119](https://github.com/codevise/pageflow/pull/2119))
216
- - Allow hiding sections outside of editor
217
- ([#2116](https://github.com/codevise/pageflow/pull/2116))
218
- - Update Datawrapper create chart URL
219
- ([#2227](https://github.com/codevise/pageflow/pull/2227))
220
- - Hide caption variants select if only one item
221
- ([#2181](https://github.com/codevise/pageflow/pull/2181))
167
+ - Custom section paddings and content element margins
168
+ ([#2335](https://github.com/codevise/pageflow/pull/2335),
169
+ [#2336](https://github.com/codevise/pageflow/pull/2336),
170
+ [#2337](https://github.com/codevise/pageflow/pull/2337),
171
+ [#2338](https://github.com/codevise/pageflow/pull/2338),
172
+ [#2340](https://github.com/codevise/pageflow/pull/2340),
173
+ [#2341](https://github.com/codevise/pageflow/pull/2341),
174
+ [#2344](https://github.com/codevise/pageflow/pull/2344),
175
+ [#2361](https://github.com/codevise/pageflow/pull/2361),
176
+ [#2364](https://github.com/codevise/pageflow/pull/2364))
177
+ - Editing excursions
178
+ ([#2318](https://github.com/codevise/pageflow/pull/2318),
179
+ [#2320](https://github.com/codevise/pageflow/pull/2320),
180
+ [#2322](https://github.com/codevise/pageflow/pull/2322),
181
+ [#2345](https://github.com/codevise/pageflow/pull/2345),
182
+ [#2349](https://github.com/codevise/pageflow/pull/2349))
183
+ - Entry and content element defaults
184
+ ([#2342](https://github.com/codevise/pageflow/pull/2342),
185
+ [#2350](https://github.com/codevise/pageflow/pull/2350),
186
+ [#2451](https://github.com/codevise/pageflow/pull/2451))
187
+ - Actions menus
188
+ ([#2346](https://github.com/codevise/pageflow/pull/2346),
189
+ [#2347](https://github.com/codevise/pageflow/pull/2347),
190
+ [#2348](https://github.com/codevise/pageflow/pull/2348))
191
+ - Motif improvements
192
+ ([#2339](https://github.com/codevise/pageflow/pull/2339),
193
+ [#2343](https://github.com/codevise/pageflow/pull/2343))
194
+ - Show in file list where files are referenced in configurations
195
+ ([#2483](https://github.com/codevise/pageflow/pull/2483))
196
+ - Make UI design tokens available in preview
197
+ ([#2393](https://github.com/codevise/pageflow/pull/2393))
198
+ - Support floating strategy and named portals for editable links
199
+ ([#2358](https://github.com/codevise/pageflow/pull/2358))
200
+ - Support visibility and disabled bindings in sub views
201
+ ([#2357](https://github.com/codevise/pageflow/pull/2357))
202
+ - Increase max length of link urls
203
+ ([#2324](https://github.com/codevise/pageflow/pull/2324))
204
+ - Ensure preview text is visible in typography select
205
+ ([#2381](https://github.com/codevise/pageflow/pull/2381))
206
+ - Fix inline image collapse when file is not ready
207
+ ([#2379](https://github.com/codevise/pageflow/pull/2379))
208
+ - Fix text block selection rect on window resize
209
+ ([#2377](https://github.com/codevise/pageflow/pull/2377))
210
+ - Fix add button hiding in style list
211
+ ([#2363](https://github.com/codevise/pageflow/pull/2363))
212
+ - Fix editor crash for widgets disabled in editor
213
+ ([#2449](https://github.com/codevise/pageflow/pull/2449))
214
+ - Bug fix: Leave content element route after delete
215
+ ([#2484](https://github.com/codevise/pageflow/pull/2484))
216
+ - Bug fix: Prevent duplicate listeners in editor preview controller
217
+ ([#2372](https://github.com/codevise/pageflow/pull/2372))
218
+ - Bug fix: Fix Slate error when deselecting text in Chrome
219
+ ([#2354](https://github.com/codevise/pageflow/pull/2354))
220
+ - Bug fix: Improve section intersection observer
221
+ ([#2333](https://github.com/codevise/pageflow/pull/2333))
222
+
223
+ ##### Review
224
+
225
+ - Comments in preview and editor
226
+ ([#2392](https://github.com/codevise/pageflow/pull/2392),
227
+ [#2394](https://github.com/codevise/pageflow/pull/2394),
228
+ [#2395](https://github.com/codevise/pageflow/pull/2395),
229
+ [#2396](https://github.com/codevise/pageflow/pull/2396),
230
+ [#2398](https://github.com/codevise/pageflow/pull/2398),
231
+ [#2401](https://github.com/codevise/pageflow/pull/2401),
232
+ [#2409](https://github.com/codevise/pageflow/pull/2409),
233
+ [#2410](https://github.com/codevise/pageflow/pull/2410),
234
+ [#2411](https://github.com/codevise/pageflow/pull/2411),
235
+ [#2412](https://github.com/codevise/pageflow/pull/2412),
236
+ [#2414](https://github.com/codevise/pageflow/pull/2414),
237
+ [#2415](https://github.com/codevise/pageflow/pull/2415),
238
+ [#2418](https://github.com/codevise/pageflow/pull/2418),
239
+ [#2419](https://github.com/codevise/pageflow/pull/2419),
240
+ [#2420](https://github.com/codevise/pageflow/pull/2420),
241
+ [#2421](https://github.com/codevise/pageflow/pull/2421),
242
+ [#2423](https://github.com/codevise/pageflow/pull/2423),
243
+ [#2438](https://github.com/codevise/pageflow/pull/2438),
244
+ [#2439](https://github.com/codevise/pageflow/pull/2439),
245
+ [#2440](https://github.com/codevise/pageflow/pull/2440),
246
+ [#2453](https://github.com/codevise/pageflow/pull/2453),
247
+ [#2460](https://github.com/codevise/pageflow/pull/2460),
248
+ [#2476](https://github.com/codevise/pageflow/pull/2476))
249
+ - Resolving comments
250
+ ([#2399](https://github.com/codevise/pageflow/pull/2399))
251
+ - Unread comments
252
+ ([#2474](https://github.com/codevise/pageflow/pull/2474))
253
+ - Editing comments and drafts
254
+ ([#2457](https://github.com/codevise/pageflow/pull/2457),
255
+ [#2462](https://github.com/codevise/pageflow/pull/2462))
256
+ - Preserve the wording each comment refers to
257
+ ([#2456](https://github.com/codevise/pageflow/pull/2456))
258
+ - Allow hiding commenting UI
259
+ ([#2441](https://github.com/codevise/pageflow/pull/2441),
260
+ [#2479](https://github.com/codevise/pageflow/pull/2479))
261
+ - Remember collapsed state of comment toolbar
262
+ ([#2463](https://github.com/codevise/pageflow/pull/2463))
222
263
 
223
264
  ##### Widgets
224
265
 
225
- - Add scroll indicator widget
226
- ([#2202](https://github.com/codevise/pageflow/pull/2202))
227
- - Allow overriding navigation bar logo settings via prop
228
- ([#2176](https://github.com/codevise/pageflow/pull/2176))
229
- - Allow hiding chapters in navigation
230
- ([#2207](https://github.com/codevise/pageflow/pull/2207))
231
- - Support opening logo url in same tab
232
- ([#2201](https://github.com/codevise/pageflow/pull/2201))
233
- - Add translations menu to default navigation bar
234
- ([#2075](https://github.com/codevise/pageflow/pull/2075),
235
- [#2108](https://github.com/codevise/pageflow/pull/2108))
236
- - Add Bluesky and Threads to sharing menu
237
- ([#2233](https://github.com/codevise/pageflow/pull/2233))
238
- - Allow extending default navigation with custom components
239
- ([#2126](https://github.com/codevise/pageflow/pull/2126),
240
- [#2121](https://github.com/codevise/pageflow/pull/2121))
241
- - Fix chapter scroller issue on Chrome 126 on OS X
242
- ([#2122](https://github.com/codevise/pageflow/pull/2122))
266
+ - Extend last section backdrop behind footer
267
+ ([#2327](https://github.com/codevise/pageflow/pull/2327))
268
+ - Allow rendering DefaultNavigation with custom Menu
269
+ ([#2311](https://github.com/codevise/pageflow/pull/2311))
270
+ - Do not display scroll indicator on top of consent bar
271
+ ([#2325](https://github.com/codevise/pageflow/pull/2325))
243
272
 
244
273
  ##### Content Elements
245
274
 
246
- - Hotspots content element with pan/zoom mode and tooltips
247
- ([#2106](https://github.com/codevise/pageflow/pull/2106),
248
- [#2131](https://github.com/codevise/pageflow/pull/2131),
249
- [#2133](https://github.com/codevise/pageflow/pull/2133),
250
- [#2135](https://github.com/codevise/pageflow/pull/2135),
251
- [#2136](https://github.com/codevise/pageflow/pull/2136),
252
- [#2137](https://github.com/codevise/pageflow/pull/2137),
253
- [#2138](https://github.com/codevise/pageflow/pull/2138),
254
- [#2139](https://github.com/codevise/pageflow/pull/2139),
255
- [#2140](https://github.com/codevise/pageflow/pull/2140),
256
- [#2142](https://github.com/codevise/pageflow/pull/2142),
257
- [#2143](https://github.com/codevise/pageflow/pull/2143),
258
- [#2156](https://github.com/codevise/pageflow/pull/2156),
259
- [#2170](https://github.com/codevise/pageflow/pull/2170),
260
- [#2180](https://github.com/codevise/pageflow/pull/2180),
261
- [#2212](https://github.com/codevise/pageflow/pull/2212))
262
- - Info table content element with color customization and responsive layouts
263
- ([#2182](https://github.com/codevise/pageflow/pull/2182),
264
- [#2185](https://github.com/codevise/pageflow/pull/2185),
265
- [#2187](https://github.com/codevise/pageflow/pull/2187),
266
- [#2189](https://github.com/codevise/pageflow/pull/2189),
267
- [#2192](https://github.com/codevise/pageflow/pull/2192),
268
- [#2193](https://github.com/codevise/pageflow/pull/2193),
269
- [#2205](https://github.com/codevise/pageflow/pull/2205),
270
- [#2281](https://github.com/codevise/pageflow/pull/2281),
271
- [#2282](https://github.com/codevise/pageflow/pull/2282))
272
- - Teaser list enhancements with text positioning, scaling, and scroller mode
273
- ([#2188](https://github.com/codevise/pageflow/pull/2188),
274
- [#2220](https://github.com/codevise/pageflow/pull/2220),
275
- [#2221](https://github.com/codevise/pageflow/pull/2221),
276
- [#2222](https://github.com/codevise/pageflow/pull/2222),
277
- [#2223](https://github.com/codevise/pageflow/pull/2223),
278
- [#2224](https://github.com/codevise/pageflow/pull/2224),
279
- [#2226](https://github.com/codevise/pageflow/pull/2226),
280
- [#2240](https://github.com/codevise/pageflow/pull/2240),
281
- [#2242](https://github.com/codevise/pageflow/pull/2242),
282
- [#2263](https://github.com/codevise/pageflow/pull/2263),
283
- [#2265](https://github.com/codevise/pageflow/pull/2265),
284
- [#2173](https://github.com/codevise/pageflow/pull/2173),
285
- [#2184](https://github.com/codevise/pageflow/pull/2184),
286
- [#2280](https://github.com/codevise/pageflow/pull/2280))
287
- - Content element position "side"
288
- ([#2186](https://github.com/codevise/pageflow/pull/2186))
289
- - Pagination and portrait images for image galleries
290
- ([#2217](https://github.com/codevise/pageflow/pull/2217))
291
- - Add option to hide image gallery peeks
292
- ([#2216](https://github.com/codevise/pageflow/pull/2216))
293
- - Make VR Image aspect ratio configurable with portrait override
294
- ([#2243](https://github.com/codevise/pageflow/pull/2243))
295
- - Add option to resize iframe embed based on message sent from embed
296
- ([#2203](https://github.com/codevise/pageflow/pull/2203))
297
- - Allow disabling thousands separators in counter
298
- ([#2211](https://github.com/codevise/pageflow/pull/2211))
299
- - Support justified text align inside text blocks
300
- ([#2179](https://github.com/codevise/pageflow/pull/2179))
301
- - Add TikTok content element
302
- ([#2095](https://github.com/codevise/pageflow/pull/2095))
303
- - Make sound disclaimer texts configurable
304
- ([#2194](https://github.com/codevise/pageflow/pull/2194))
275
+ - Lottie animation content element
276
+ ([#2468](https://github.com/codevise/pageflow/pull/2468),
277
+ [#2469](https://github.com/codevise/pageflow/pull/2469),
278
+ [#2472](https://github.com/codevise/pageflow/pull/2472),
279
+ [#2473](https://github.com/codevise/pageflow/pull/2473),
280
+ [#2480](https://github.com/codevise/pageflow/pull/2480),
281
+ [#2481](https://github.com/codevise/pageflow/pull/2481))
282
+ - Counter improvements
283
+ ([#2302](https://github.com/codevise/pageflow/pull/2302),
284
+ [#2355](https://github.com/codevise/pageflow/pull/2355),
285
+ [#2356](https://github.com/codevise/pageflow/pull/2356))
286
+ - External link list improvements
287
+ ([#2362](https://github.com/codevise/pageflow/pull/2362),
288
+ [#2404](https://github.com/codevise/pageflow/pull/2404),
289
+ [#2407](https://github.com/codevise/pageflow/pull/2407),
290
+ [#2408](https://github.com/codevise/pageflow/pull/2408))
291
+ - Teaser list improvements
292
+ ([#2313](https://github.com/codevise/pageflow/pull/2313),
293
+ [#2316](https://github.com/codevise/pageflow/pull/2316))
294
+ - Waveform improvements
295
+ ([#2359](https://github.com/codevise/pageflow/pull/2359),
296
+ [#2360](https://github.com/codevise/pageflow/pull/2360))
297
+ - Add fullscreen option to inline video
298
+ ([#2455](https://github.com/codevise/pageflow/pull/2455))
299
+ - Allow autoplaying inline videos only if entry is unmuted
300
+ ([#2303](https://github.com/codevise/pageflow/pull/2303))
301
+ - Improve closing hotspot tooltips
302
+ ([#2332](https://github.com/codevise/pageflow/pull/2332))
303
+ - Do not apply max-width to dynamically resized iframes
304
+ ([#2375](https://github.com/codevise/pageflow/pull/2375))
305
+ - Increase iframe source url max length
306
+ ([#2368](https://github.com/codevise/pageflow/pull/2368))
307
+ - Bug fix: Fix line breaks in info table cells
308
+ ([#2309](https://github.com/codevise/pageflow/pull/2309))
305
309
 
306
310
  ##### Themes
307
311
 
308
- - Typography enhancements with sizing options and text effects
309
- ([#2191](https://github.com/codevise/pageflow/pull/2191),
310
- [#2204](https://github.com/codevise/pageflow/pull/2204),
311
- [#2225](https://github.com/codevise/pageflow/pull/2225))
312
- - Use theme icons for default navigation scroll buttons
313
- ([#2127](https://github.com/codevise/pageflow/pull/2127))
314
- - Add theme properties for default navigation bar buttons
315
- ([#2134](https://github.com/codevise/pageflow/pull/2134))
316
- - Improve support for theme icons
317
- ([#2159](https://github.com/codevise/pageflow/pull/2159))
318
- - Make custom icon directory name configurable via theme options
319
- ([#2160](https://github.com/codevise/pageflow/pull/2160))
320
- - Support referencing theme assets from shared theme directory
321
- ([#2161](https://github.com/codevise/pageflow/pull/2161))
322
- - Add theme option to display caption above
323
- ([#2250](https://github.com/codevise/pageflow/pull/2250))
324
- - Rounded circle image modifier styles
325
- ([#2247](https://github.com/codevise/pageflow/pull/2247))
326
- - Section paddings
327
- ([#2246](https://github.com/codevise/pageflow/pull/2246))
328
- - Content element margins
329
- ([#2245](https://github.com/codevise/pageflow/pull/2245))
330
- - Theme aspect ratios
331
- ([#2241](https://github.com/codevise/pageflow/pull/2241))
332
- - Allow scaling backdrop to cover section instead of viewport
333
- ([#2239](https://github.com/codevise/pageflow/pull/2239))
334
- - Make content margin configurable for narrow sections
335
- ([#2235](https://github.com/codevise/pageflow/pull/2235))
336
- - Backdrop decoration effects
337
- ([#2234](https://github.com/codevise/pageflow/pull/2234))
338
- - Let themes change content margin
339
- ([#2232](https://github.com/codevise/pageflow/pull/2232))
340
- - Allow setting different border radius for full width elements
341
- ([#2230](https://github.com/codevise/pageflow/pull/2230))
342
- - Custom card and palette colors
343
- ([#2229](https://github.com/codevise/pageflow/pull/2229))
344
- - Fix typo in hyphens none rule
345
- ([#2219](https://github.com/codevise/pageflow/pull/2219))
346
- - Let themes opt out of fit viewport logic
347
- ([#2262](https://github.com/codevise/pageflow/pull/2262))
348
- - Allow including additional theme customization files in seed data
349
- ([#2209](https://github.com/codevise/pageflow/pull/2209))
350
- - Pass PublishedEntry when transforming theme customization overrides
351
- ([#2196](https://github.com/codevise/pageflow/pull/2196))
352
- - Add scopes for light and dark content
353
- ([#2199](https://github.com/codevise/pageflow/pull/2199))
354
- - Ignore text nodes with types
355
- ([#2287](https://github.com/codevise/pageflow/pull/2287))
356
- - Ignore empty palette color
357
- ([#2286](https://github.com/codevise/pageflow/pull/2286))
358
- - Add typography classes for external links
359
- ([#2124](https://github.com/codevise/pageflow/pull/2124))
360
- - Also apply quote mark font family to text block quotes
361
- ([#2123](https://github.com/codevise/pageflow/pull/2123))
362
- - External links improvements
363
- ([#2110](https://github.com/codevise/pageflow/pull/2110))
364
- - Accent color palettes for default navigation
365
- ([#2104](https://github.com/codevise/pageflow/pull/2104))
366
- - Add typography classes for different sizes of quote element
367
- ([#2097](https://github.com/codevise/pageflow/pull/2097))
368
- - Add theme property for image gallery scroll button size
369
- ([#2089](https://github.com/codevise/pageflow/pull/2089))
370
- - Additional theme options and properties
371
- ([#2077](https://github.com/codevise/pageflow/pull/2077))
372
- - Fix hanging quote position in center-ragged layout
373
- ([#2057](https://github.com/codevise/pageflow/pull/2057))
374
- - Add theme property to customize logo height in default navigation
375
- ([#2055](https://github.com/codevise/pageflow/pull/2055))
312
+ - Theme presets background colors
313
+ ([#2437](https://github.com/codevise/pageflow/pull/2437))
314
+ - Theme specific decoration effects
315
+ ([#2424](https://github.com/codevise/pageflow/pull/2424))
316
+ - Allow theming figure caption padding, border and corners
317
+ ([#2470](https://github.com/codevise/pageflow/pull/2470))
318
+ - Theme options for big play button and hotspots pager buttons
319
+ ([#2304](https://github.com/codevise/pageflow/pull/2304))
320
+ - Support size-based typography for counters
321
+ ([#2351](https://github.com/codevise/pageflow/pull/2351))
322
+
323
+ ##### JavaScript API
324
+
325
+ - Improve media events
326
+ ([#2382](https://github.com/codevise/pageflow/pull/2382),
327
+ [#2450](https://github.com/codevise/pageflow/pull/2450))
328
+ - Support custom error boundaries for content elements
329
+ ([#2310](https://github.com/codevise/pageflow/pull/2310))
376
330
 
377
331
  ##### Rails Engine
378
332
 
379
- - Include missing JS file from scrolled package in gem
380
- ([#2277](https://github.com/codevise/pageflow/pull/2277))
381
- - Add classnames as dependency of pageflow-scrolled
382
- ([#2259](https://github.com/codevise/pageflow/pull/2259))
383
- - Pass real request object to additional seed callable
384
- ([#2128](https://github.com/codevise/pageflow/pull/2128))
385
- - Add if and unless options to additional packs
386
- ([#2084](https://github.com/codevise/pageflow/pull/2084))
387
- - Allow registering additional editor packs with stylesheets
388
- ([#2083](https://github.com/codevise/pageflow/pull/2083))
333
+ - Support declaring and preloading font faces in theme options
334
+ ([#2459](https://github.com/codevise/pageflow/pull/2459),
335
+ [#2461](https://github.com/codevise/pageflow/pull/2461))
336
+ - Let widgets contribute frontend packs
337
+ ([#2442](https://github.com/codevise/pageflow/pull/2442),
338
+ [#2443](https://github.com/codevise/pageflow/pull/2443),
339
+ [#2444](https://github.com/codevise/pageflow/pull/2444))
389
340
 
390
341
  ##### Internal
391
342
 
392
- - Upgrade to Storybook 7
393
- ([#2066](https://github.com/codevise/pageflow/pull/2066))
343
+ - Turn inline editing decorators into general extensions API
344
+ ([#2389](https://github.com/codevise/pageflow/pull/2389),
345
+ [#2391](https://github.com/codevise/pageflow/pull/2391),
346
+ [#2429](https://github.com/codevise/pageflow/pull/2429),
347
+ [#2430](https://github.com/codevise/pageflow/pull/2430),
348
+ [#2431](https://github.com/codevise/pageflow/pull/2431))
349
+ - Storybook workflow improvements
350
+ ([#2402](https://github.com/codevise/pageflow/pull/2402),
351
+ [#2422](https://github.com/codevise/pageflow/pull/2422),
352
+ [#2433](https://github.com/codevise/pageflow/pull/2433))
353
+ - Feature specs for editable text and commenting
354
+ ([#2426](https://github.com/codevise/pageflow/pull/2426),
355
+ [#2427](https://github.com/codevise/pageflow/pull/2427),
356
+ [#2428](https://github.com/codevise/pageflow/pull/2428))
357
+ - Improve consistency of scrolled's Jest test suite and document rules
358
+ ([#2436](https://github.com/codevise/pageflow/pull/2436))
359
+ - Bundle entryState as a separate package export
360
+ ([#2406](https://github.com/codevise/pageflow/pull/2406))
361
+ - Run specs without rebuilding packages
362
+ ([#2385](https://github.com/codevise/pageflow/pull/2385),
363
+ [#2386](https://github.com/codevise/pageflow/pull/2386))
364
+ - Align commenting loading
365
+ ([#2425](https://github.com/codevise/pageflow/pull/2425))
366
+ - Rename widget_scope to entry_mode in template
367
+ ([#2388](https://github.com/codevise/pageflow/pull/2388))
394
368
 
395
369
  See
396
- [17-0-stable branch](https://github.com/codevise/pageflow/blob/17-0-stable/CHANGELOG.md)
370
+ [17-1-stable branch](https://github.com/codevise/pageflow/blob/17-1-stable/CHANGELOG.md)
397
371
  for previous changes.