@wordpress/editor 14.45.0 → 14.45.2-next.v.202605131006.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 (623) hide show
  1. package/CHANGELOG.md +6 -0
  2. package/README.md +12 -0
  3. package/build/components/collab-sidebar/index.cjs +42 -25
  4. package/build/components/collab-sidebar/index.cjs.map +2 -2
  5. package/build/components/collab-sidebar/note-thread.cjs +19 -9
  6. package/build/components/collab-sidebar/note-thread.cjs.map +2 -2
  7. package/build/components/collab-sidebar/notes.cjs +8 -6
  8. package/build/components/collab-sidebar/notes.cjs.map +2 -2
  9. package/build/components/collab-sidebar/utils.cjs +24 -9
  10. package/build/components/collab-sidebar/utils.cjs.map +2 -2
  11. package/build/components/collaborators-presence/index.cjs +0 -10
  12. package/build/components/collaborators-presence/index.cjs.map +3 -3
  13. package/build/components/collaborators-presence/list.cjs +0 -10
  14. package/build/components/collaborators-presence/list.cjs.map +3 -3
  15. package/build/components/post-last-revision/index.cjs +5 -0
  16. package/build/components/post-last-revision/index.cjs.map +2 -2
  17. package/build/components/post-publish-panel/index.cjs +112 -124
  18. package/build/components/post-publish-panel/index.cjs.map +3 -3
  19. package/build/components/post-revisions-preview/block-diff.cjs +91 -23
  20. package/build/components/post-revisions-preview/block-diff.cjs.map +2 -2
  21. package/build/components/post-revisions-preview/diff-markers.cjs +3 -2
  22. package/build/components/post-revisions-preview/diff-markers.cjs.map +2 -2
  23. package/build/components/post-revisions-preview/revisions-slider.cjs +98 -50
  24. package/build/components/post-revisions-preview/revisions-slider.cjs.map +2 -2
  25. package/build/store/private-actions.cjs +21 -0
  26. package/build/store/private-actions.cjs.map +2 -2
  27. package/build/store/private-selectors.cjs +93 -42
  28. package/build/store/private-selectors.cjs.map +2 -2
  29. package/build/store/reducer.cjs +15 -0
  30. package/build/store/reducer.cjs.map +2 -2
  31. package/build/store/selectors.cjs.map +2 -2
  32. package/build-module/components/collab-sidebar/index.mjs +42 -25
  33. package/build-module/components/collab-sidebar/index.mjs.map +2 -2
  34. package/build-module/components/collab-sidebar/note-thread.mjs +24 -10
  35. package/build-module/components/collab-sidebar/note-thread.mjs.map +2 -2
  36. package/build-module/components/collab-sidebar/notes.mjs +8 -6
  37. package/build-module/components/collab-sidebar/notes.mjs.map +2 -2
  38. package/build-module/components/collab-sidebar/utils.mjs +22 -8
  39. package/build-module/components/collab-sidebar/utils.mjs.map +2 -2
  40. package/build-module/components/collaborators-presence/index.mjs +0 -10
  41. package/build-module/components/collaborators-presence/index.mjs.map +3 -3
  42. package/build-module/components/collaborators-presence/list.mjs +0 -10
  43. package/build-module/components/collaborators-presence/list.mjs.map +3 -3
  44. package/build-module/components/post-last-revision/index.mjs +5 -0
  45. package/build-module/components/post-last-revision/index.mjs.map +2 -2
  46. package/build-module/components/post-publish-panel/index.mjs +120 -129
  47. package/build-module/components/post-publish-panel/index.mjs.map +2 -2
  48. package/build-module/components/post-revisions-preview/block-diff.mjs +91 -23
  49. package/build-module/components/post-revisions-preview/block-diff.mjs.map +2 -2
  50. package/build-module/components/post-revisions-preview/diff-markers.mjs +3 -2
  51. package/build-module/components/post-revisions-preview/diff-markers.mjs.map +2 -2
  52. package/build-module/components/post-revisions-preview/revisions-slider.mjs +101 -53
  53. package/build-module/components/post-revisions-preview/revisions-slider.mjs.map +2 -2
  54. package/build-module/store/private-actions.mjs +20 -0
  55. package/build-module/store/private-actions.mjs.map +2 -2
  56. package/build-module/store/private-selectors.mjs +95 -43
  57. package/build-module/store/private-selectors.mjs.map +2 -2
  58. package/build-module/store/reducer.mjs +14 -0
  59. package/build-module/store/reducer.mjs.map +2 -2
  60. package/build-module/store/selectors.mjs.map +2 -2
  61. package/build-style/style-rtl.css +398 -33
  62. package/build-style/style.css +398 -33
  63. package/build-types/bindings/api.d.ts +1 -1
  64. package/build-types/bindings/api.d.ts.map +1 -1
  65. package/build-types/bindings/pattern-overrides.d.ts +8 -5
  66. package/build-types/bindings/pattern-overrides.d.ts.map +1 -1
  67. package/build-types/bindings/post-data.d.ts +8 -5
  68. package/build-types/bindings/post-data.d.ts.map +1 -1
  69. package/build-types/bindings/post-meta.d.ts +10 -7
  70. package/build-types/bindings/post-meta.d.ts.map +1 -1
  71. package/build-types/bindings/term-data.d.ts +9 -6
  72. package/build-types/bindings/term-data.d.ts.map +1 -1
  73. package/build-types/components/autocompleters/index.d.ts +2 -2
  74. package/build-types/components/autocompleters/index.d.ts.map +1 -1
  75. package/build-types/components/autocompleters/link.d.ts +6 -10
  76. package/build-types/components/autocompleters/link.d.ts.map +1 -1
  77. package/build-types/components/autocompleters/user.d.ts +7 -12
  78. package/build-types/components/autocompleters/user.d.ts.map +1 -1
  79. package/build-types/components/autosave-monitor/index.d.ts +28 -4
  80. package/build-types/components/autosave-monitor/index.d.ts.map +1 -1
  81. package/build-types/components/block-removal-warnings/index.d.ts +3 -0
  82. package/build-types/components/block-removal-warnings/index.d.ts.map +1 -1
  83. package/build-types/components/block-settings-menu/plugin-block-settings-menu-item.d.ts +7 -7
  84. package/build-types/components/block-settings-menu/plugin-block-settings-menu-item.d.ts.map +1 -1
  85. package/build-types/components/block-visibility/index.d.ts.map +1 -1
  86. package/build-types/components/blog-title/index.d.ts.map +1 -1
  87. package/build-types/components/character-count/index.d.ts.map +1 -1
  88. package/build-types/components/collab-sidebar/add-note-menu-item.d.ts +2 -2
  89. package/build-types/components/collab-sidebar/add-note-menu-item.d.ts.map +1 -1
  90. package/build-types/components/collab-sidebar/add-note.d.ts +2 -2
  91. package/build-types/components/collab-sidebar/add-note.d.ts.map +1 -1
  92. package/build-types/components/collab-sidebar/board-store.d.ts +1 -1
  93. package/build-types/components/collab-sidebar/board-store.d.ts.map +1 -1
  94. package/build-types/components/collab-sidebar/constants.d.ts +3 -3
  95. package/build-types/components/collab-sidebar/constants.d.ts.map +1 -1
  96. package/build-types/components/collab-sidebar/floating-container.d.ts +3 -3
  97. package/build-types/components/collab-sidebar/floating-container.d.ts.map +1 -1
  98. package/build-types/components/collab-sidebar/hooks.d.ts +7 -7
  99. package/build-types/components/collab-sidebar/hooks.d.ts.map +1 -1
  100. package/build-types/components/collab-sidebar/index.d.ts.map +1 -1
  101. package/build-types/components/collab-sidebar/note-byline.d.ts +2 -2
  102. package/build-types/components/collab-sidebar/note-byline.d.ts.map +1 -1
  103. package/build-types/components/collab-sidebar/note-card.d.ts +3 -3
  104. package/build-types/components/collab-sidebar/note-card.d.ts.map +1 -1
  105. package/build-types/components/collab-sidebar/note-form.d.ts +4 -4
  106. package/build-types/components/collab-sidebar/note-form.d.ts.map +1 -1
  107. package/build-types/components/collab-sidebar/note-indicator-toolbar.d.ts +2 -2
  108. package/build-types/components/collab-sidebar/note-indicator-toolbar.d.ts.map +1 -1
  109. package/build-types/components/collab-sidebar/note-thread.d.ts +5 -5
  110. package/build-types/components/collab-sidebar/note-thread.d.ts.map +1 -1
  111. package/build-types/components/collab-sidebar/note.d.ts +4 -4
  112. package/build-types/components/collab-sidebar/note.d.ts.map +1 -1
  113. package/build-types/components/collab-sidebar/notes.d.ts +2 -2
  114. package/build-types/components/collab-sidebar/notes.d.ts.map +1 -1
  115. package/build-types/components/collab-sidebar/utils.d.ts +17 -24
  116. package/build-types/components/collab-sidebar/utils.d.ts.map +1 -1
  117. package/build-types/components/collaborators-overlay/cursor-dom-utils.d.ts.map +1 -1
  118. package/build-types/components/collaborators-overlay/cursor-registry.d.ts.map +1 -1
  119. package/build-types/components/collaborators-overlay/index.d.ts +4 -1
  120. package/build-types/components/collaborators-overlay/index.d.ts.map +1 -1
  121. package/build-types/components/collaborators-overlay/overlay.d.ts +1 -1
  122. package/build-types/components/collaborators-overlay/overlay.d.ts.map +1 -1
  123. package/build-types/components/collaborators-presence/avatar/component.d.ts.map +1 -1
  124. package/build-types/components/collaborators-presence/avatar-group/component.d.ts.map +1 -1
  125. package/build-types/components/collaborators-presence/index.d.ts +1 -2
  126. package/build-types/components/collaborators-presence/index.d.ts.map +1 -1
  127. package/build-types/components/collaborators-presence/list.d.ts +1 -2
  128. package/build-types/components/collaborators-presence/list.d.ts.map +1 -1
  129. package/build-types/components/collapsible-block-toolbar/index.d.ts.map +1 -1
  130. package/build-types/components/commands/index.d.ts.map +1 -1
  131. package/build-types/components/deprecated.d.ts +82 -53
  132. package/build-types/components/deprecated.d.ts.map +1 -1
  133. package/build-types/components/document-bar/index.d.ts +3 -3
  134. package/build-types/components/document-bar/index.d.ts.map +1 -1
  135. package/build-types/components/document-bar/useEditedSectionDetails.d.ts.map +1 -1
  136. package/build-types/components/document-outline/check.d.ts +2 -2
  137. package/build-types/components/document-outline/check.d.ts.map +1 -1
  138. package/build-types/components/document-outline/index.d.ts +2 -2
  139. package/build-types/components/document-outline/index.d.ts.map +1 -1
  140. package/build-types/components/document-outline/item.d.ts +5 -5
  141. package/build-types/components/document-outline/item.d.ts.map +1 -1
  142. package/build-types/components/document-tools/index.d.ts +1 -1
  143. package/build-types/components/document-tools/index.d.ts.map +1 -1
  144. package/build-types/components/editor/index.d.ts +7 -7
  145. package/build-types/components/editor/index.d.ts.map +1 -1
  146. package/build-types/components/editor-history/redo.d.ts +11 -2
  147. package/build-types/components/editor-history/redo.d.ts.map +1 -1
  148. package/build-types/components/editor-history/undo.d.ts +11 -2
  149. package/build-types/components/editor-history/undo.d.ts.map +1 -1
  150. package/build-types/components/editor-interface/index.d.ts +5 -5
  151. package/build-types/components/editor-interface/index.d.ts.map +1 -1
  152. package/build-types/components/editor-notices/index.d.ts +1 -1
  153. package/build-types/components/editor-notices/index.d.ts.map +1 -1
  154. package/build-types/components/editor-snackbars/index.d.ts.map +1 -1
  155. package/build-types/components/entities-saved-states/entity-record-item.d.ts +1 -1
  156. package/build-types/components/entities-saved-states/entity-record-item.d.ts.map +1 -1
  157. package/build-types/components/entities-saved-states/entity-type-list.d.ts +2 -2
  158. package/build-types/components/entities-saved-states/entity-type-list.d.ts.map +1 -1
  159. package/build-types/components/entities-saved-states/hooks/use-is-dirty.d.ts +10 -1
  160. package/build-types/components/entities-saved-states/hooks/use-is-dirty.d.ts.map +1 -1
  161. package/build-types/components/entities-saved-states/index.d.ts +4 -4
  162. package/build-types/components/entities-saved-states/index.d.ts.map +1 -1
  163. package/build-types/components/error-boundary/index.d.ts +18 -8
  164. package/build-types/components/error-boundary/index.d.ts.map +1 -1
  165. package/build-types/components/global-keyboard-shortcuts/index.d.ts.map +1 -1
  166. package/build-types/components/global-keyboard-shortcuts/register-shortcuts.d.ts +1 -1
  167. package/build-types/components/global-keyboard-shortcuts/register-shortcuts.d.ts.map +1 -1
  168. package/build-types/components/global-styles/block-link.d.ts +1 -1
  169. package/build-types/components/global-styles/block-link.d.ts.map +1 -1
  170. package/build-types/components/global-styles/header.d.ts +2 -2
  171. package/build-types/components/global-styles/header.d.ts.map +1 -1
  172. package/build-types/components/global-styles/hooks.d.ts +3 -3
  173. package/build-types/components/global-styles/hooks.d.ts.map +1 -1
  174. package/build-types/components/global-styles/index.d.ts +3 -3
  175. package/build-types/components/global-styles/index.d.ts.map +1 -1
  176. package/build-types/components/global-styles/menu.d.ts +2 -2
  177. package/build-types/components/global-styles/menu.d.ts.map +1 -1
  178. package/build-types/components/global-styles-provider/index.d.ts +1 -1
  179. package/build-types/components/global-styles-provider/index.d.ts.map +1 -1
  180. package/build-types/components/global-styles-renderer/index.d.ts +1 -1
  181. package/build-types/components/global-styles-renderer/index.d.ts.map +1 -1
  182. package/build-types/components/global-styles-sidebar/default-sidebar.d.ts +6 -6
  183. package/build-types/components/global-styles-sidebar/default-sidebar.d.ts.map +1 -1
  184. package/build-types/components/global-styles-sidebar/index.d.ts.map +1 -1
  185. package/build-types/components/global-styles-sidebar/welcome-guide-image.d.ts +1 -1
  186. package/build-types/components/global-styles-sidebar/welcome-guide-image.d.ts.map +1 -1
  187. package/build-types/components/global-styles-sidebar/welcome-guide.d.ts.map +1 -1
  188. package/build-types/components/header/back-button.d.ts +3 -3
  189. package/build-types/components/header/back-button.d.ts.map +1 -1
  190. package/build-types/components/header/header-skeleton.d.ts +5 -5
  191. package/build-types/components/header/header-skeleton.d.ts.map +1 -1
  192. package/build-types/components/header/index.d.ts +2 -2
  193. package/build-types/components/header/index.d.ts.map +1 -1
  194. package/build-types/components/index.d.ts +94 -91
  195. package/build-types/components/index.d.ts.map +1 -1
  196. package/build-types/components/inserter-sidebar/index.d.ts.map +1 -1
  197. package/build-types/components/keyboard-shortcut-help-modal/config.d.ts +3 -3
  198. package/build-types/components/keyboard-shortcut-help-modal/config.d.ts.map +1 -1
  199. package/build-types/components/keyboard-shortcut-help-modal/dynamic-shortcut.d.ts +1 -1
  200. package/build-types/components/keyboard-shortcut-help-modal/dynamic-shortcut.d.ts.map +1 -1
  201. package/build-types/components/keyboard-shortcut-help-modal/index.d.ts +1 -1
  202. package/build-types/components/keyboard-shortcut-help-modal/index.d.ts.map +1 -1
  203. package/build-types/components/keyboard-shortcut-help-modal/shortcut.d.ts +3 -3
  204. package/build-types/components/keyboard-shortcut-help-modal/shortcut.d.ts.map +1 -1
  205. package/build-types/components/list-view-sidebar/index.d.ts.map +1 -1
  206. package/build-types/components/list-view-sidebar/list-view-outline.d.ts.map +1 -1
  207. package/build-types/components/local-autosave-monitor/index.d.ts +12 -0
  208. package/build-types/components/local-autosave-monitor/index.d.ts.map +1 -1
  209. package/build-types/components/media/index.d.ts +2 -2
  210. package/build-types/components/media/index.d.ts.map +1 -1
  211. package/build-types/components/media/media-editor-modal.d.ts.map +1 -1
  212. package/build-types/components/media/metadata-panel.d.ts.map +1 -1
  213. package/build-types/components/media/preview.d.ts.map +1 -1
  214. package/build-types/components/media-categories/index.d.ts +11 -4
  215. package/build-types/components/media-categories/index.d.ts.map +1 -1
  216. package/build-types/components/mode-switcher/index.d.ts +1 -1
  217. package/build-types/components/mode-switcher/index.d.ts.map +1 -1
  218. package/build-types/components/more-menu/copy-content-menu-item.d.ts.map +1 -1
  219. package/build-types/components/more-menu/index.d.ts.map +1 -1
  220. package/build-types/components/more-menu/tools-more-menu-group.d.ts +2 -2
  221. package/build-types/components/more-menu/tools-more-menu-group.d.ts.map +1 -1
  222. package/build-types/components/more-menu/view-more-menu-group.d.ts +2 -2
  223. package/build-types/components/more-menu/view-more-menu-group.d.ts.map +1 -1
  224. package/build-types/components/page-attributes/check.d.ts +3 -3
  225. package/build-types/components/page-attributes/check.d.ts.map +1 -1
  226. package/build-types/components/page-attributes/order.d.ts +1 -1
  227. package/build-types/components/page-attributes/order.d.ts.map +1 -1
  228. package/build-types/components/page-attributes/panel.d.ts +1 -1
  229. package/build-types/components/page-attributes/panel.d.ts.map +1 -1
  230. package/build-types/components/page-attributes/parent.d.ts +3 -3
  231. package/build-types/components/page-attributes/parent.d.ts.map +1 -1
  232. package/build-types/components/pattern-duplicate-modal/index.d.ts +1 -1
  233. package/build-types/components/pattern-duplicate-modal/index.d.ts.map +1 -1
  234. package/build-types/components/pattern-overrides-panel/index.d.ts.map +1 -1
  235. package/build-types/components/pattern-rename-modal/index.d.ts +1 -1
  236. package/build-types/components/pattern-rename-modal/index.d.ts.map +1 -1
  237. package/build-types/components/plugin-document-setting-panel/index.d.ts +8 -61
  238. package/build-types/components/plugin-document-setting-panel/index.d.ts.map +1 -1
  239. package/build-types/components/plugin-more-menu-item/index.d.ts +5 -5
  240. package/build-types/components/plugin-more-menu-item/index.d.ts.map +1 -1
  241. package/build-types/components/plugin-post-publish-panel/index.d.ts +9 -40
  242. package/build-types/components/plugin-post-publish-panel/index.d.ts.map +1 -1
  243. package/build-types/components/plugin-post-status-info/index.d.ts +6 -47
  244. package/build-types/components/plugin-post-status-info/index.d.ts.map +1 -1
  245. package/build-types/components/plugin-pre-publish-panel/index.d.ts +9 -43
  246. package/build-types/components/plugin-pre-publish-panel/index.d.ts.map +1 -1
  247. package/build-types/components/plugin-preview-menu-item/index.d.ts +5 -5
  248. package/build-types/components/plugin-preview-menu-item/index.d.ts.map +1 -1
  249. package/build-types/components/plugin-sidebar/index.d.ts +4 -4
  250. package/build-types/components/plugin-sidebar/index.d.ts.map +1 -1
  251. package/build-types/components/plugin-sidebar-more-menu-item/index.d.ts +3 -3
  252. package/build-types/components/plugin-sidebar-more-menu-item/index.d.ts.map +1 -1
  253. package/build-types/components/post-actions/actions.d.ts +3 -3
  254. package/build-types/components/post-actions/actions.d.ts.map +1 -1
  255. package/build-types/components/post-actions/index.d.ts +4 -4
  256. package/build-types/components/post-actions/index.d.ts.map +1 -1
  257. package/build-types/components/post-actions/set-as-homepage.d.ts +2 -2
  258. package/build-types/components/post-actions/set-as-homepage.d.ts.map +1 -1
  259. package/build-types/components/post-actions/set-as-posts-page.d.ts +2 -2
  260. package/build-types/components/post-actions/set-as-posts-page.d.ts.map +1 -1
  261. package/build-types/components/post-author/check.d.ts +2 -2
  262. package/build-types/components/post-author/check.d.ts.map +1 -1
  263. package/build-types/components/post-author/combobox.d.ts.map +1 -1
  264. package/build-types/components/post-author/constants.d.ts +10 -8
  265. package/build-types/components/post-author/constants.d.ts.map +1 -1
  266. package/build-types/components/post-author/hook.d.ts +1 -1
  267. package/build-types/components/post-author/hook.d.ts.map +1 -1
  268. package/build-types/components/post-author/index.d.ts +2 -2
  269. package/build-types/components/post-author/index.d.ts.map +1 -1
  270. package/build-types/components/post-author/panel.d.ts +1 -1
  271. package/build-types/components/post-author/panel.d.ts.map +1 -1
  272. package/build-types/components/post-author/select.d.ts.map +1 -1
  273. package/build-types/components/post-card-panel/index.d.ts +7 -7
  274. package/build-types/components/post-card-panel/index.d.ts.map +1 -1
  275. package/build-types/components/post-comments/index.d.ts +6 -1
  276. package/build-types/components/post-comments/index.d.ts.map +1 -1
  277. package/build-types/components/post-content-information/index.d.ts +1 -1
  278. package/build-types/components/post-content-information/index.d.ts.map +1 -1
  279. package/build-types/components/post-discussion/panel.d.ts +1 -1
  280. package/build-types/components/post-discussion/panel.d.ts.map +1 -1
  281. package/build-types/components/post-excerpt/check.d.ts +3 -3
  282. package/build-types/components/post-excerpt/check.d.ts.map +1 -1
  283. package/build-types/components/post-excerpt/index.d.ts +3 -3
  284. package/build-types/components/post-excerpt/index.d.ts.map +1 -1
  285. package/build-types/components/post-excerpt/panel.d.ts +2 -2
  286. package/build-types/components/post-excerpt/panel.d.ts.map +1 -1
  287. package/build-types/components/post-excerpt/plugin.d.ts +6 -43
  288. package/build-types/components/post-excerpt/plugin.d.ts.map +1 -1
  289. package/build-types/components/post-featured-image/check.d.ts +3 -3
  290. package/build-types/components/post-featured-image/check.d.ts.map +1 -1
  291. package/build-types/components/post-featured-image/index.d.ts +15 -0
  292. package/build-types/components/post-featured-image/index.d.ts.map +1 -1
  293. package/build-types/components/post-featured-image/panel.d.ts +1 -1
  294. package/build-types/components/post-featured-image/panel.d.ts.map +1 -1
  295. package/build-types/components/post-fields/index.d.ts +1 -1
  296. package/build-types/components/post-fields/index.d.ts.map +1 -1
  297. package/build-types/components/post-format/check.d.ts +2 -2
  298. package/build-types/components/post-format/check.d.ts.map +1 -1
  299. package/build-types/components/post-format/index.d.ts +12 -12
  300. package/build-types/components/post-format/index.d.ts.map +1 -1
  301. package/build-types/components/post-format/panel.d.ts +2 -2
  302. package/build-types/components/post-format/panel.d.ts.map +1 -1
  303. package/build-types/components/post-last-edited-panel/index.d.ts.map +1 -1
  304. package/build-types/components/post-last-revision/check.d.ts +3 -3
  305. package/build-types/components/post-last-revision/check.d.ts.map +1 -1
  306. package/build-types/components/post-last-revision/index.d.ts +3 -3
  307. package/build-types/components/post-last-revision/index.d.ts.map +1 -1
  308. package/build-types/components/post-last-revision/panel.d.ts +2 -2
  309. package/build-types/components/post-last-revision/panel.d.ts.map +1 -1
  310. package/build-types/components/post-locked-modal/index.d.ts +11 -5
  311. package/build-types/components/post-locked-modal/index.d.ts.map +1 -1
  312. package/build-types/components/post-panel-row/index.d.ts +1 -1
  313. package/build-types/components/post-panel-row/index.d.ts.map +1 -1
  314. package/build-types/components/post-panel-section/index.d.ts +2 -2
  315. package/build-types/components/post-panel-section/index.d.ts.map +1 -1
  316. package/build-types/components/post-pending-status/check.d.ts +3 -3
  317. package/build-types/components/post-pending-status/check.d.ts.map +1 -1
  318. package/build-types/components/post-pending-status/index.d.ts +1 -1
  319. package/build-types/components/post-pending-status/index.d.ts.map +1 -1
  320. package/build-types/components/post-pingbacks/index.d.ts +7 -1
  321. package/build-types/components/post-pingbacks/index.d.ts.map +1 -1
  322. package/build-types/components/post-preview-button/index.d.ts +2 -2
  323. package/build-types/components/post-preview-button/index.d.ts.map +1 -1
  324. package/build-types/components/post-publish-button/index.d.ts +5 -5
  325. package/build-types/components/post-publish-button/index.d.ts.map +1 -1
  326. package/build-types/components/post-publish-button/label.d.ts.map +1 -1
  327. package/build-types/components/post-publish-button/post-publish-button-or-toggle.d.ts +1 -1
  328. package/build-types/components/post-publish-button/post-publish-button-or-toggle.d.ts.map +1 -1
  329. package/build-types/components/post-publish-panel/index.d.ts +17 -13
  330. package/build-types/components/post-publish-panel/index.d.ts.map +1 -1
  331. package/build-types/components/post-publish-panel/maybe-category-panel.d.ts +1 -1
  332. package/build-types/components/post-publish-panel/maybe-category-panel.d.ts.map +1 -1
  333. package/build-types/components/post-publish-panel/maybe-post-format-panel.d.ts.map +1 -1
  334. package/build-types/components/post-publish-panel/maybe-tags-panel.d.ts +1 -1
  335. package/build-types/components/post-publish-panel/maybe-tags-panel.d.ts.map +1 -1
  336. package/build-types/components/post-publish-panel/maybe-upload-media.d.ts.map +1 -1
  337. package/build-types/components/post-publish-panel/media-util.d.ts +2 -2
  338. package/build-types/components/post-publish-panel/media-util.d.ts.map +1 -1
  339. package/build-types/components/post-publish-panel/postpublish.d.ts +2 -2
  340. package/build-types/components/post-publish-panel/postpublish.d.ts.map +1 -1
  341. package/build-types/components/post-publish-panel/prepublish.d.ts +1 -1
  342. package/build-types/components/post-publish-panel/prepublish.d.ts.map +1 -1
  343. package/build-types/components/post-revisions-panel/index.d.ts.map +1 -1
  344. package/build-types/components/post-revisions-preview/block-diff.d.ts +1 -1
  345. package/build-types/components/post-revisions-preview/block-diff.d.ts.map +1 -1
  346. package/build-types/components/post-revisions-preview/diff-format-types.d.ts +2 -2
  347. package/build-types/components/post-revisions-preview/diff-format-types.d.ts.map +1 -1
  348. package/build-types/components/post-revisions-preview/diff-markers.d.ts +1 -1
  349. package/build-types/components/post-revisions-preview/diff-markers.d.ts.map +1 -1
  350. package/build-types/components/post-revisions-preview/index.d.ts +2 -2
  351. package/build-types/components/post-revisions-preview/index.d.ts.map +1 -1
  352. package/build-types/components/post-revisions-preview/preserve-client-ids.d.ts +1 -1
  353. package/build-types/components/post-revisions-preview/preserve-client-ids.d.ts.map +1 -1
  354. package/build-types/components/post-revisions-preview/revisions-canvas.d.ts +1 -1
  355. package/build-types/components/post-revisions-preview/revisions-canvas.d.ts.map +1 -1
  356. package/build-types/components/post-revisions-preview/revisions-header.d.ts +2 -2
  357. package/build-types/components/post-revisions-preview/revisions-header.d.ts.map +1 -1
  358. package/build-types/components/post-revisions-preview/revisions-slider.d.ts +3 -3
  359. package/build-types/components/post-revisions-preview/revisions-slider.d.ts.map +1 -1
  360. package/build-types/components/post-saved-state/index.d.ts +1 -1
  361. package/build-types/components/post-saved-state/index.d.ts.map +1 -1
  362. package/build-types/components/post-schedule/check.d.ts +2 -2
  363. package/build-types/components/post-schedule/check.d.ts.map +1 -1
  364. package/build-types/components/post-schedule/index.d.ts +3 -3
  365. package/build-types/components/post-schedule/index.d.ts.map +1 -1
  366. package/build-types/components/post-schedule/label.d.ts +4 -4
  367. package/build-types/components/post-schedule/label.d.ts.map +1 -1
  368. package/build-types/components/post-schedule/panel.d.ts +1 -1
  369. package/build-types/components/post-schedule/panel.d.ts.map +1 -1
  370. package/build-types/components/post-status/index.d.ts +2 -2
  371. package/build-types/components/post-status/index.d.ts.map +1 -1
  372. package/build-types/components/post-sticky/check.d.ts +2 -2
  373. package/build-types/components/post-sticky/check.d.ts.map +1 -1
  374. package/build-types/components/post-sticky/index.d.ts +1 -1
  375. package/build-types/components/post-sticky/index.d.ts.map +1 -1
  376. package/build-types/components/post-sticky/panel.d.ts +1 -1
  377. package/build-types/components/post-sticky/panel.d.ts.map +1 -1
  378. package/build-types/components/post-switch-to-draft-button/index.d.ts +1 -1
  379. package/build-types/components/post-switch-to-draft-button/index.d.ts.map +1 -1
  380. package/build-types/components/post-sync-status/index.d.ts +1 -1
  381. package/build-types/components/post-sync-status/index.d.ts.map +1 -1
  382. package/build-types/components/post-taxonomies/check.d.ts +2 -2
  383. package/build-types/components/post-taxonomies/check.d.ts.map +1 -1
  384. package/build-types/components/post-taxonomies/flat-term-selector.d.ts +4 -4
  385. package/build-types/components/post-taxonomies/flat-term-selector.d.ts.map +1 -1
  386. package/build-types/components/post-taxonomies/hierarchical-term-selector.d.ts +6 -6
  387. package/build-types/components/post-taxonomies/hierarchical-term-selector.d.ts.map +1 -1
  388. package/build-types/components/post-taxonomies/index.d.ts +9 -1
  389. package/build-types/components/post-taxonomies/index.d.ts.map +1 -1
  390. package/build-types/components/post-taxonomies/most-used-terms.d.ts.map +1 -1
  391. package/build-types/components/post-taxonomies/panel.d.ts +1 -1
  392. package/build-types/components/post-taxonomies/panel.d.ts.map +1 -1
  393. package/build-types/components/post-template/block-theme.d.ts.map +1 -1
  394. package/build-types/components/post-template/classic-theme.d.ts +8 -1
  395. package/build-types/components/post-template/classic-theme.d.ts.map +1 -1
  396. package/build-types/components/post-template/create-new-template-modal.d.ts.map +1 -1
  397. package/build-types/components/post-template/create-new-template.d.ts.map +1 -1
  398. package/build-types/components/post-template/hooks.d.ts +5 -5
  399. package/build-types/components/post-template/hooks.d.ts.map +1 -1
  400. package/build-types/components/post-template/panel.d.ts +1 -1
  401. package/build-types/components/post-template/panel.d.ts.map +1 -1
  402. package/build-types/components/post-template/reset-default-template.d.ts.map +1 -1
  403. package/build-types/components/post-template/swap-template-button.d.ts +1 -1
  404. package/build-types/components/post-template/swap-template-button.d.ts.map +1 -1
  405. package/build-types/components/post-text-editor/index.d.ts +1 -1
  406. package/build-types/components/post-text-editor/index.d.ts.map +1 -1
  407. package/build-types/components/post-title/constants.d.ts +2 -2
  408. package/build-types/components/post-title/constants.d.ts.map +1 -1
  409. package/build-types/components/post-title/index.d.ts +9 -1
  410. package/build-types/components/post-title/index.d.ts.map +1 -1
  411. package/build-types/components/post-title/post-title-raw.d.ts +1 -1
  412. package/build-types/components/post-title/use-post-title-focus.d.ts.map +1 -1
  413. package/build-types/components/post-title/use-post-title.d.ts.map +1 -1
  414. package/build-types/components/post-transform-panel/hooks.d.ts +1 -1
  415. package/build-types/components/post-transform-panel/hooks.d.ts.map +1 -1
  416. package/build-types/components/post-transform-panel/index.d.ts.map +1 -1
  417. package/build-types/components/post-trash/check.d.ts +2 -2
  418. package/build-types/components/post-trash/check.d.ts.map +1 -1
  419. package/build-types/components/post-trash/index.d.ts +1 -1
  420. package/build-types/components/post-trash/index.d.ts.map +1 -1
  421. package/build-types/components/post-type-support-check/index.d.ts +3 -3
  422. package/build-types/components/post-type-support-check/index.d.ts.map +1 -1
  423. package/build-types/components/post-url/check.d.ts +2 -2
  424. package/build-types/components/post-url/check.d.ts.map +1 -1
  425. package/build-types/components/post-url/index.d.ts +1 -1
  426. package/build-types/components/post-url/index.d.ts.map +1 -1
  427. package/build-types/components/post-url/label.d.ts +2 -2
  428. package/build-types/components/post-url/label.d.ts.map +1 -1
  429. package/build-types/components/post-url/panel.d.ts +1 -1
  430. package/build-types/components/post-url/panel.d.ts.map +1 -1
  431. package/build-types/components/post-view-link/index.d.ts.map +1 -1
  432. package/build-types/components/post-visibility/check.d.ts +1 -1
  433. package/build-types/components/post-visibility/check.d.ts.map +1 -1
  434. package/build-types/components/post-visibility/index.d.ts +1 -1
  435. package/build-types/components/post-visibility/index.d.ts.map +1 -1
  436. package/build-types/components/post-visibility/label.d.ts +1 -1
  437. package/build-types/components/post-visibility/label.d.ts.map +1 -1
  438. package/build-types/components/post-visibility/utils.d.ts +1 -1
  439. package/build-types/components/post-visibility/utils.d.ts.map +1 -1
  440. package/build-types/components/posts-per-page/index.d.ts.map +1 -1
  441. package/build-types/components/preferences-modal/enable-panel.d.ts.map +1 -1
  442. package/build-types/components/preferences-modal/enable-plugin-document-setting-panel.d.ts +4 -5
  443. package/build-types/components/preferences-modal/enable-plugin-document-setting-panel.d.ts.map +1 -1
  444. package/build-types/components/preferences-modal/enable-publish-sidebar.d.ts.map +1 -1
  445. package/build-types/components/preferences-modal/index.d.ts +3 -0
  446. package/build-types/components/preferences-modal/index.d.ts.map +1 -1
  447. package/build-types/components/preview-dropdown/index.d.ts +1 -1
  448. package/build-types/components/preview-dropdown/index.d.ts.map +1 -1
  449. package/build-types/components/provider/disable-non-page-content-blocks.d.ts.map +1 -1
  450. package/build-types/components/provider/index.d.ts +33 -33
  451. package/build-types/components/provider/index.d.ts.map +1 -1
  452. package/build-types/components/provider/navigation-block-editing-mode.d.ts.map +1 -1
  453. package/build-types/components/provider/use-auto-switch-editor-sidebars.d.ts +1 -1
  454. package/build-types/components/provider/use-auto-switch-editor-sidebars.d.ts.map +1 -1
  455. package/build-types/components/provider/use-block-editor-settings.d.ts +1 -1
  456. package/build-types/components/provider/use-block-editor-settings.d.ts.map +1 -1
  457. package/build-types/components/provider/use-hide-blocks-from-inserter.d.ts +1 -1
  458. package/build-types/components/provider/use-hide-blocks-from-inserter.d.ts.map +1 -1
  459. package/build-types/components/provider/use-post-content-block-types.d.ts.map +1 -1
  460. package/build-types/components/provider/use-revision-blocks.d.ts +1 -1
  461. package/build-types/components/provider/use-revision-blocks.d.ts.map +1 -1
  462. package/build-types/components/provider/use-upload-save-lock.d.ts.map +1 -1
  463. package/build-types/components/provider/with-registry-provider.d.ts +1 -1
  464. package/build-types/components/provider/with-registry-provider.d.ts.map +1 -1
  465. package/build-types/components/resizable-editor/index.d.ts +2 -2
  466. package/build-types/components/resizable-editor/index.d.ts.map +1 -1
  467. package/build-types/components/resizable-editor/resize-handle.d.ts.map +1 -1
  468. package/build-types/components/revision-author-panel/index.d.ts.map +1 -1
  469. package/build-types/components/revision-block-diff/index.d.ts.map +1 -1
  470. package/build-types/components/revision-created-panel/index.d.ts.map +1 -1
  471. package/build-types/components/revision-diff-panel/index.d.ts.map +1 -1
  472. package/build-types/components/revision-fields-diff/index.d.ts.map +1 -1
  473. package/build-types/components/save-publish-panels/index.d.ts +7 -7
  474. package/build-types/components/save-publish-panels/index.d.ts.map +1 -1
  475. package/build-types/components/sidebar/constants.d.ts +4 -4
  476. package/build-types/components/sidebar/constants.d.ts.map +1 -1
  477. package/build-types/components/sidebar/dataform-post-summary.d.ts.map +1 -1
  478. package/build-types/components/sidebar/header.d.ts +1 -1
  479. package/build-types/components/sidebar/index.d.ts +3 -3
  480. package/build-types/components/sidebar/index.d.ts.map +1 -1
  481. package/build-types/components/sidebar/post-revision-summary.d.ts.map +1 -1
  482. package/build-types/components/sidebar/post-summary.d.ts.map +1 -1
  483. package/build-types/components/site-discussion/index.d.ts.map +1 -1
  484. package/build-types/components/start-page-options/index.d.ts +1 -1
  485. package/build-types/components/start-page-options/index.d.ts.map +1 -1
  486. package/build-types/components/start-template-options/index.d.ts.map +1 -1
  487. package/build-types/components/style-book/categories.d.ts +3 -0
  488. package/build-types/components/style-book/categories.d.ts.map +1 -1
  489. package/build-types/components/style-book/color-examples.d.ts.map +1 -1
  490. package/build-types/components/style-book/duotone-examples.d.ts.map +1 -1
  491. package/build-types/components/style-book/index.d.ts +19 -8
  492. package/build-types/components/style-book/index.d.ts.map +1 -1
  493. package/build-types/components/styles-canvas/index.d.ts +2 -2
  494. package/build-types/components/styles-canvas/index.d.ts.map +1 -1
  495. package/build-types/components/styles-canvas/revisions.d.ts +1 -1
  496. package/build-types/components/styles-canvas/style-book.d.ts +1 -1
  497. package/build-types/components/table-of-contents/index.d.ts +11 -1
  498. package/build-types/components/table-of-contents/index.d.ts.map +1 -1
  499. package/build-types/components/table-of-contents/panel.d.ts +1 -1
  500. package/build-types/components/table-of-contents/panel.d.ts.map +1 -1
  501. package/build-types/components/template-actions-panel/block-theme-content.d.ts.map +1 -1
  502. package/build-types/components/template-actions-panel/classic-theme-content.d.ts.map +1 -1
  503. package/build-types/components/template-actions-panel/index.d.ts.map +1 -1
  504. package/build-types/components/template-content-panel/index.d.ts.map +1 -1
  505. package/build-types/components/template-part-content-panel/index.d.ts.map +1 -1
  506. package/build-types/components/template-part-menu-items/convert-to-regular.d.ts.map +1 -1
  507. package/build-types/components/template-part-menu-items/convert-to-template-part.d.ts +1 -1
  508. package/build-types/components/template-part-menu-items/convert-to-template-part.d.ts.map +1 -1
  509. package/build-types/components/template-part-menu-items/index.d.ts.map +1 -1
  510. package/build-types/components/template-validation-notice/index.d.ts.map +1 -1
  511. package/build-types/components/text-editor/index.d.ts.map +1 -1
  512. package/build-types/components/theme-support-check/index.d.ts +2 -2
  513. package/build-types/components/theme-support-check/index.d.ts.map +1 -1
  514. package/build-types/components/time-to-read/index.d.ts +1 -1
  515. package/build-types/components/time-to-read/index.d.ts.map +1 -1
  516. package/build-types/components/unsaved-changes-warning/index.d.ts +1 -1
  517. package/build-types/components/unsaved-changes-warning/index.d.ts.map +1 -1
  518. package/build-types/components/visual-editor/edit-template-blocks-notification.d.ts +1 -1
  519. package/build-types/components/visual-editor/edit-template-blocks-notification.d.ts.map +1 -1
  520. package/build-types/components/visual-editor/index.d.ts +4 -4
  521. package/build-types/components/visual-editor/index.d.ts.map +1 -1
  522. package/build-types/components/visual-editor/use-edit-content-only-section-exit.d.ts +1 -1
  523. package/build-types/components/visual-editor/use-edit-content-only-section-exit.d.ts.map +1 -1
  524. package/build-types/components/visual-editor/use-padding-appender.d.ts +1 -1
  525. package/build-types/components/visual-editor/use-padding-appender.d.ts.map +1 -1
  526. package/build-types/components/visual-editor/use-select-nearest-editable-block.d.ts +1 -1
  527. package/build-types/components/visual-editor/use-select-nearest-editable-block.d.ts.map +1 -1
  528. package/build-types/components/visual-editor/use-zoom-out-mode-exit.d.ts +1 -1
  529. package/build-types/components/visual-editor/use-zoom-out-mode-exit.d.ts.map +1 -1
  530. package/build-types/components/word-count/index.d.ts +1 -1
  531. package/build-types/components/word-count/index.d.ts.map +1 -1
  532. package/build-types/components/zoom-out-toggle/index.d.ts +3 -3
  533. package/build-types/components/zoom-out-toggle/index.d.ts.map +1 -1
  534. package/build-types/dataviews/api.d.ts +6 -6
  535. package/build-types/dataviews/api.d.ts.map +1 -1
  536. package/build-types/dataviews/fields/content-preview/index.d.ts.map +1 -1
  537. package/build-types/dataviews/store/private-actions.d.ts +5 -5
  538. package/build-types/dataviews/store/private-actions.d.ts.map +1 -1
  539. package/build-types/dataviews/store/reducer.d.ts +2 -2
  540. package/build-types/dataviews/store/reducer.d.ts.map +1 -1
  541. package/build-types/hooks/custom-sources-backwards-compatibility.d.ts +3 -9
  542. package/build-types/hooks/custom-sources-backwards-compatibility.d.ts.map +1 -1
  543. package/build-types/hooks/index.d.ts +10 -1
  544. package/build-types/hooks/index.d.ts.map +1 -1
  545. package/build-types/hooks/pattern-overrides.d.ts +1 -1
  546. package/build-types/hooks/pattern-overrides.d.ts.map +1 -1
  547. package/build-types/hooks/use-global-styles-output.d.ts +2 -2
  548. package/build-types/hooks/use-global-styles-output.d.ts.map +1 -1
  549. package/build-types/index.d.ts +10 -5
  550. package/build-types/index.d.ts.map +1 -1
  551. package/build-types/lock-unlock.d.ts +1 -2
  552. package/build-types/lock-unlock.d.ts.map +1 -1
  553. package/build-types/private-apis.d.ts +1 -1
  554. package/build-types/private-apis.d.ts.map +1 -1
  555. package/build-types/store/actions.d.ts +330 -116
  556. package/build-types/store/actions.d.ts.map +1 -1
  557. package/build-types/store/constants.d.ts.map +1 -1
  558. package/build-types/store/defaults.d.ts +1 -1
  559. package/build-types/store/defaults.d.ts.map +1 -1
  560. package/build-types/store/index.d.ts +77 -9
  561. package/build-types/store/index.d.ts.map +1 -1
  562. package/build-types/store/local-autosave.d.ts +3 -3
  563. package/build-types/store/local-autosave.d.ts.map +1 -1
  564. package/build-types/store/private-actions.d.ts +106 -46
  565. package/build-types/store/private-actions.d.ts.map +1 -1
  566. package/build-types/store/private-selectors.d.ts +96 -68
  567. package/build-types/store/private-selectors.d.ts.map +1 -1
  568. package/build-types/store/reducer.d.ts +47 -52
  569. package/build-types/store/reducer.d.ts.map +1 -1
  570. package/build-types/store/selectors.d.ts +422 -429
  571. package/build-types/store/selectors.d.ts.map +1 -1
  572. package/build-types/store/utils/is-template-revertable.d.ts.map +1 -1
  573. package/build-types/store/utils/notice-builder.d.ts +3 -3
  574. package/build-types/store/utils/notice-builder.d.ts.map +1 -1
  575. package/build-types/utils/get-item-title.d.ts +1 -1
  576. package/build-types/utils/get-item-title.d.ts.map +1 -1
  577. package/build-types/utils/get-template-info.d.ts +11 -4
  578. package/build-types/utils/get-template-info.d.ts.map +1 -1
  579. package/build-types/utils/get-template-part-icon.d.ts +1 -1
  580. package/build-types/utils/get-template-part-icon.d.ts.map +1 -1
  581. package/build-types/utils/index.d.ts +6 -3
  582. package/build-types/utils/index.d.ts.map +1 -1
  583. package/build-types/utils/media-finalize/index.d.ts.map +1 -1
  584. package/build-types/utils/media-sideload/index.d.ts +1 -1
  585. package/build-types/utils/media-sideload/index.d.ts.map +1 -1
  586. package/build-types/utils/media-upload/index.d.ts +1 -1
  587. package/build-types/utils/media-upload/index.d.ts.map +1 -1
  588. package/build-types/utils/media-upload/on-success.d.ts.map +1 -1
  589. package/build-types/utils/pageTypeBadge.d.ts.map +1 -1
  590. package/build-types/utils/search-templates.d.ts +1 -1
  591. package/build-types/utils/search-templates.d.ts.map +1 -1
  592. package/build-types/utils/set-nested-value.d.ts.map +1 -1
  593. package/build-types/utils/terms.d.ts +19 -4
  594. package/build-types/utils/terms.d.ts.map +1 -1
  595. package/build-types/utils/url.d.ts +1 -1
  596. package/build-types/utils/url.d.ts.map +1 -1
  597. package/package.json +48 -48
  598. package/src/components/block-visibility/style.scss +2 -2
  599. package/src/components/collab-sidebar/index.js +48 -36
  600. package/src/components/collab-sidebar/note-thread.js +28 -10
  601. package/src/components/collab-sidebar/notes.js +9 -6
  602. package/src/components/collab-sidebar/style.scss +4 -0
  603. package/src/components/collab-sidebar/utils.js +41 -14
  604. package/src/components/collaborators-presence/index.tsx +0 -2
  605. package/src/components/collaborators-presence/list.tsx +0 -2
  606. package/src/components/post-last-revision/index.js +5 -0
  607. package/src/components/post-publish-panel/index.js +149 -156
  608. package/src/components/post-publish-panel/test/__snapshots__/index.js.snap +11 -26
  609. package/src/components/post-publish-panel/test/index.js +41 -23
  610. package/src/components/post-revisions-preview/block-diff.js +165 -41
  611. package/src/components/post-revisions-preview/diff-markers.js +12 -9
  612. package/src/components/post-revisions-preview/revisions-slider.js +130 -71
  613. package/src/components/post-revisions-preview/style.scss +3 -3
  614. package/src/components/post-revisions-preview/test/block-diff.js +133 -4
  615. package/src/components/post-template/style.scss +1 -1
  616. package/src/components/start-page-options/style.scss +2 -2
  617. package/src/components/start-template-options/style.scss +2 -2
  618. package/src/store/private-actions.js +34 -0
  619. package/src/store/private-selectors.js +127 -51
  620. package/src/store/reducer.js +21 -0
  621. package/src/store/selectors.js +6 -0
  622. package/src/store/test/private-selectors.js +107 -1
  623. package/src/style.scss +2 -0
@@ -1 +1 @@
1
- {"version":3,"file":"selectors.d.ts","sourceRoot":"","sources":["../../src/store/selectors.js"],"names":[],"mappings":"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"}
1
+ {"version":3,"file":"selectors.d.ts","sourceRoot":"","sources":["../../src/store/selectors.js"],"names":[],"mappings":"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"}
@@ -1 +1 @@
1
- {"version":3,"file":"is-template-revertable.d.ts","sourceRoot":"","sources":["../../../src/store/utils/is-template-revertable.js"],"names":[],"mappings":"AAOA;;;;;GAKG;AACH,qEAHW,MAAM,GACL,OAAO,CAYlB"}
1
+ {"version":3,"file":"is-template-revertable.d.ts","sourceRoot":"","sources":["../../../src/store/utils/is-template-revertable.js"],"names":[],"mappings":"AAOA;;;;;GAKG;AACH,MAAM,CAAC,OAAO,UAAU,oBAAoB,CAAE,sBAAsB,QAAA,GAFxD,OAAO,CAYlB"}
@@ -6,7 +6,7 @@
6
6
  * @return {Array} Arguments for dispatch. An empty array signals no
7
7
  * notification should be sent.
8
8
  */
9
- export function getNotificationArgumentsForSaveSuccess(data: Object): any[];
9
+ export declare function getNotificationArgumentsForSaveSuccess(data: Object): any[];
10
10
  /**
11
11
  * Builds the fail notification arguments for dispatch.
12
12
  *
@@ -15,7 +15,7 @@ export function getNotificationArgumentsForSaveSuccess(data: Object): any[];
15
15
  * @return {Array} Arguments for dispatch. An empty array signals no
16
16
  * notification should be sent.
17
17
  */
18
- export function getNotificationArgumentsForSaveFail(data: Object): any[];
18
+ export declare function getNotificationArgumentsForSaveFail(data: Object): any[];
19
19
  /**
20
20
  * Builds the trash fail notification arguments for dispatch.
21
21
  *
@@ -23,5 +23,5 @@ export function getNotificationArgumentsForSaveFail(data: Object): any[];
23
23
  *
24
24
  * @return {Array} Arguments for dispatch.
25
25
  */
26
- export function getNotificationArgumentsForTrashFail(data: Object): any[];
26
+ export declare function getNotificationArgumentsForTrashFail(data: Object): any[];
27
27
  //# sourceMappingURL=notice-builder.d.ts.map
@@ -1 +1 @@
1
- {"version":3,"file":"notice-builder.d.ts","sourceRoot":"","sources":["../../../src/store/utils/notice-builder.js"],"names":[],"mappings":"AAUA;;;;;;;GAOG;AACH,6DALW,MAAM,SAmEhB;AAED;;;;;;;GAOG;AACH,0DALW,MAAM,SA+DhB;AAED;;;;;;GAMG;AACH,2DAJW,MAAM,SAahB"}
1
+ {"version":3,"file":"notice-builder.d.ts","sourceRoot":"","sources":["../../../src/store/utils/notice-builder.js"],"names":[],"mappings":"AAUA;;;;;;;GAOG;AACH,wBAAgB,sCAAsC,CAAE,IAAI,QAAA,SA8D3D;AAED;;;;;;;GAOG;AACH,wBAAgB,mCAAmC,CAAE,IAAI,QAAA,SA0DxD;AAED;;;;;;GAMG;AACH,wBAAgB,oCAAoC,CAAE,IAAI,QAAA,SASzD"}
@@ -6,5 +6,5 @@
6
6
  * @param {Object} item The post item.
7
7
  * @return {string} The title of the item, or an empty string if the title is not found.
8
8
  */
9
- export function getItemTitle(item: Object): string;
9
+ export declare function getItemTitle(item: Object): string;
10
10
  //# sourceMappingURL=get-item-title.d.ts.map
@@ -1 +1 @@
1
- {"version":3,"file":"get-item-title.d.ts","sourceRoot":"","sources":["../../src/utils/get-item-title.js"],"names":[],"mappings":"AAKA;;;;;;;GAOG;AACH,mCAHW,MAAM,GACL,MAAM,CAajB"}
1
+ {"version":3,"file":"get-item-title.d.ts","sourceRoot":"","sources":["../../src/utils/get-item-title.js"],"names":[],"mappings":"AAKA;;;;;;;GAOG;AACH,wBAAgB,YAAY,CAAE,IAAI,QAAA,GAFtB,MAAM,CAajB"}
@@ -1,6 +1,13 @@
1
- export function getTemplateInfo(params: {
2
- templateTypes: any[];
3
- templateAreas?: any[] | undefined;
1
+ /**
2
+ * Helper function to retrieve the corresponding template info for a given template.
3
+ * @param {Object} params
4
+ * @param {Array} params.templateTypes
5
+ * @param {Array} [params.templateAreas]
6
+ * @param {Object} params.template
7
+ */
8
+ export declare const getTemplateInfo: (params: {
9
+ templateTypes: Array;
10
+ templateAreas?: Array;
4
11
  template: Object;
5
- }): {};
12
+ }) => {};
6
13
  //# sourceMappingURL=get-template-info.d.ts.map
@@ -1 +1 @@
1
- {"version":3,"file":"get-template-info.d.ts","sourceRoot":"","sources":["../../src/utils/get-template-info.js"],"names":[],"mappings":"AAiBO,wCAJJ;IAAuB,aAAa;IACZ,aAAa;IACd,QAAQ,EAAvB,MAAM;CAChB,MAmCA"}
1
+ {"version":3,"file":"get-template-info.d.ts","sourceRoot":"","sources":["../../src/utils/get-template-info.js"],"names":[],"mappings":"AAUA;;;;;;GAMG;AACH,eAAO,MAAM,eAAe,WAJzB;IAAuB,aAAa,EAA5B,KAAK,CACb;IAAwB,aAAa,AAArC,CACA,EADQ,KAAK,CACb;IAAuB,QAAQ,EAAvB,MAAM,CAChB;CAAA,OAmCA,CAAC"}
@@ -5,5 +5,5 @@
5
5
  *
6
6
  * @return {Object} The corresponding icon.
7
7
  */
8
- export function getTemplatePartIcon(areaOrIconName: string): Object;
8
+ export declare function getTemplatePartIcon(areaOrIconName: string): Object;
9
9
  //# sourceMappingURL=get-template-part-icon.d.ts.map
@@ -1 +1 @@
1
- {"version":3,"file":"get-template-part-icon.d.ts","sourceRoot":"","sources":["../../src/utils/get-template-part-icon.js"],"names":[],"mappings":"AAWA;;;;;;GAMG;AACH,oDAJW,MAAM,GAEL,MAAM,CAajB"}
1
+ {"version":3,"file":"get-template-part-icon.d.ts","sourceRoot":"","sources":["../../src/utils/get-template-part-icon.js"],"names":[],"mappings":"AAWA;;;;;;GAMG;AACH,wBAAgB,mBAAmB,CAAE,cAAc,EAJxC,MAIwC,GAFvC,MAAM,CAajB"}
@@ -1,5 +1,8 @@
1
- export { mediaUpload };
2
- export { cleanForSlug } from "./url.js";
3
- export { getTemplatePartIcon } from "./get-template-part-icon";
1
+ /**
2
+ * Internal dependencies
3
+ */
4
4
  import mediaUpload from './media-upload';
5
+ export { mediaUpload };
6
+ export { cleanForSlug } from './url.js';
7
+ export { getTemplatePartIcon } from './get-template-part-icon';
5
8
  //# sourceMappingURL=index.d.ts.map
@@ -1 +1 @@
1
- {"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../src/utils/index.js"],"names":[],"mappings":";;;wBAGwB,gBAAgB"}
1
+ {"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../src/utils/index.js"],"names":[],"mappings":"AAAA;;GAEG;AACH,OAAO,WAAW,MAAM,gBAAgB,CAAC;AAEzC,OAAO,EAAE,WAAW,EAAE,CAAC;AACvB,OAAO,EAAE,YAAY,EAAE,MAAM,UAAU,CAAC;AACxC,OAAO,EAAE,mBAAmB,EAAE,MAAM,0BAA0B,CAAC"}
@@ -1 +1 @@
1
- {"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../../src/utils/media-finalize/index.js"],"names":[],"mappings":"AAKA,gFAMC"}
1
+ {"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../../src/utils/media-finalize/index.js"],"names":[],"mappings":"AAKA,wBAA8B,aAAa,CAAE,EAAE,KAAA,EAAE,QAAQ,QAAK,iBAM7D"}
@@ -1,3 +1,3 @@
1
- export default mediaSideload;
2
1
  declare const mediaSideload: any;
2
+ export default mediaSideload;
3
3
  //# sourceMappingURL=index.d.ts.map
@@ -1 +1 @@
1
- {"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../../src/utils/media-sideload/index.js"],"names":[],"mappings":""}
1
+ {"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../../src/utils/media-sideload/index.js"],"names":[],"mappings":"AAUA,QAAA,MAAuB,aAAa,KAA0B,CAAC;eAEhD,aAAa"}
@@ -12,7 +12,7 @@
12
12
  * @param {Function} $0.onSuccess Function called after the final representation of the file is available.
13
13
  * @param {boolean} $0.multiple Whether to allow multiple files to be uploaded.
14
14
  */
15
- export default function mediaUpload({ additionalData, allowedTypes, filesList, maxUploadFileSize, onError, onFileChange, onSuccess, multiple, }: {
15
+ export default function mediaUpload({ additionalData, allowedTypes, filesList, maxUploadFileSize, onError, onFileChange, onSuccess, multiple }: {
16
16
  additionalData: Object | null;
17
17
  allowedTypes: string;
18
18
  filesList: any[];
@@ -1 +1 @@
1
- {"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../../src/utils/media-upload/index.js"],"names":[],"mappings":"AAoBA;;;;;;;;;;;;;GAaG;AACH,iJATG;IAAqB,cAAc,EAA1B,MAAM,OAAA;IACM,YAAY,EAAzB,MAAM;IACO,SAAS;IACT,iBAAiB,EAA7B,MAAM,OAAA;IACM,OAAO;IACP,YAAY;IACZ,SAAS;IACT,QAAQ,EAArB,OAAO;CACjB,QA2FA"}
1
+ {"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../../src/utils/media-upload/index.js"],"names":[],"mappings":"AAoBA;;;;;;;;;;;;;GAaG;AACH,MAAM,CAAC,OAAO,UAAU,WAAW,CAAE,EACpC,cAAmB,EACnB,YAAY,EACZ,SAAS,EACT,iBAAiB,EACjB,OAAc,EACd,YAAY,EACZ,SAAS,EACT,QAAe,EACf,EAlBE;IAAqB,cAAc,EAA3B,aAAO,CACf;IAAqB,YAAY,EAAzB,MAAM,CACd;IAAqB,SAAS,QAC9B;IAAqB,iBAAiB,EAA7B,MAAM,OAAA,CACf;IAAqB,OAAO,WAC5B;IAAqB,YAAY,WACjC;IAAqB,SAAS,WAC9B;IAAqB,QAAQ,EAArB,OAAO,CACjB;CAUA,QAiFA"}
@@ -1 +1 @@
1
- {"version":3,"file":"on-success.d.ts","sourceRoot":"","sources":["../../../src/utils/media-upload/on-success.js"],"names":[],"mappings":"AAMA;;;;;;GAMG;AACH,0DAFW,MAAM,EAAE,QAsBlB"}
1
+ {"version":3,"file":"on-success.d.ts","sourceRoot":"","sources":["../../../src/utils/media-upload/on-success.js"],"names":[],"mappings":"AAMA;;;;;;GAMG;AACH,MAAM,CAAC,OAAO,UAAU,oBAAoB,CAAE,WAAW,EAF9C,QAE8C,QAoBxD"}
@@ -1 +1 @@
1
- {"version":3,"file":"pageTypeBadge.d.ts","sourceRoot":"","sources":["../../src/utils/pageTypeBadge.js"],"names":[],"mappings":"AAOA;;;;GAIG;AACH,iDAFW,MAAM,GAAC,MAAM,2HA2BvB"}
1
+ {"version":3,"file":"pageTypeBadge.d.ts","sourceRoot":"","sources":["../../src/utils/pageTypeBadge.js"],"names":[],"mappings":"AAOA;;;;GAIG;AACH,MAAM,CAAC,OAAO,UAAU,gBAAgB,CAAE,MAAM,EAFrC,MAAM,GAAC,MAE8B,2HAyB/C"}
@@ -6,5 +6,5 @@
6
6
  *
7
7
  * @return {Array} Filtered template list.
8
8
  */
9
- export function searchTemplates(templates?: any[], searchValue?: string): any[];
9
+ export declare function searchTemplates(templates?: any[], searchValue?: string): any[];
10
10
  //# sourceMappingURL=search-templates.d.ts.map
@@ -1 +1 @@
1
- {"version":3,"file":"search-templates.d.ts","sourceRoot":"","sources":["../../src/utils/search-templates.js"],"names":[],"mappings":"AAuDA;;;;;;;GAOG;AACH,iEAJW,MAAM,SAiBhB"}
1
+ {"version":3,"file":"search-templates.d.ts","sourceRoot":"","sources":["../../src/utils/search-templates.js"],"names":[],"mappings":"AAuDA;;;;;;;GAOG;AACH,wBAAgB,eAAe,CAAE,SAAS,QAAK,EAAE,WAAW,GAJjD,MAIsD,SAahE"}
@@ -1 +1 @@
1
- {"version":3,"file":"set-nested-value.d.ts","sourceRoot":"","sources":["../../src/utils/set-nested-value.js"],"names":[],"mappings":"AAAA;;;;;;;;;;;;;;;;;GAiBG;AACH,+CAJW,MAAM,sBAEN,GAAC,UAsBX"}
1
+ {"version":3,"file":"set-nested-value.d.ts","sourceRoot":"","sources":["../../src/utils/set-nested-value.js"],"names":[],"mappings":"AAAA;;;;;;;;;;;;;;;;;GAiBG;AACH,MAAM,CAAC,OAAO,UAAU,cAAc,CAAE,MAAM,QAAA,EAAE,IAAI,OAAA,EAAE,KAAK,EAFhD,GAEgD,UAoB1D"}
@@ -5,8 +5,23 @@
5
5
  *
6
6
  * @return {Array} Array of terms in tree format.
7
7
  */
8
- export function buildTermsTree(flatTerms: any[]): any[];
9
- export function unescapeString(arg: any): string;
10
- export function unescapeTerm(term: Object): Object;
11
- export function unescapeTerms(terms: Object[]): Object[];
8
+ export declare function buildTermsTree(flatTerms: any[]): any[];
9
+ export declare const unescapeString: (arg: any) => string;
10
+ /**
11
+ * Returns a term object with name unescaped.
12
+ *
13
+ * @param {Object} term The term object to unescape.
14
+ *
15
+ * @return {Object} Term object with name property unescaped.
16
+ */
17
+ export declare const unescapeTerm: (term: Object) => Object;
18
+ /**
19
+ * Returns an array of term objects with names unescaped.
20
+ * The unescape of each term is performed using the unescapeTerm function.
21
+ *
22
+ * @param {Object[]} terms Array of term objects to unescape.
23
+ *
24
+ * @return {Object[]} Array of term objects unescaped.
25
+ */
26
+ export declare const unescapeTerms: (terms: Object[]) => Object[];
12
27
  //# sourceMappingURL=terms.d.ts.map
@@ -1 +1 @@
1
- {"version":3,"file":"terms.d.ts","sourceRoot":"","sources":["../../src/utils/terms.js"],"names":[],"mappings":"AAKA;;;;;;GAMG;AACH,wDA4CC;AAEM,iDAEN;AASM,mCAJI,MAAM,GAEL,MAAM,CAOjB;AAUM,qCAJI,MAAM,EAAE,GAEP,MAAM,EAAE,CAInB"}
1
+ {"version":3,"file":"terms.d.ts","sourceRoot":"","sources":["../../src/utils/terms.js"],"names":[],"mappings":"AAKA;;;;;;GAMG;AACH,wBAAgB,cAAc,CAAE,SAAS,OAAA,SA4CxC;AAED,eAAO,MAAM,cAAc,sBAE1B,CAAC;AAEF;;;;;;GAMG;AACH,eAAO,MAAM,YAAY,SAJd,MAAM,KAEL,MAOX,CAAC;AAEF;;;;;;;GAOG;AACH,eAAO,MAAM,aAAa,UAJf,MAAM,EAAE,KAEP,MAAM,EAIjB,CAAC"}
@@ -14,5 +14,5 @@
14
14
  *
15
15
  * @return {string} Processed string
16
16
  */
17
- export function cleanForSlug(string: string): string;
17
+ export declare function cleanForSlug(string: string): string;
18
18
  //# sourceMappingURL=url.d.ts.map
@@ -1 +1 @@
1
- {"version":3,"file":"url.d.ts","sourceRoot":"","sources":["../../src/utils/url.js"],"names":[],"mappings":"AAMA;;;;;;;;;;;;;;;GAeG;AACH,qCAJW,MAAM,GAEL,MAAM,CASjB"}
1
+ {"version":3,"file":"url.d.ts","sourceRoot":"","sources":["../../src/utils/url.js"],"names":[],"mappings":"AAMA;;;;;;;;;;;;;;;GAeG;AACH,wBAAgB,YAAY,CAAE,MAAM,EAJzB,MAIyB,GAFxB,MAAM,CASjB"}
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@wordpress/editor",
3
- "version": "14.45.0",
3
+ "version": "14.45.2-next.v.202605131006.0+2a3d07cab",
4
4
  "description": "Enhanced block editor for WordPress posts.",
5
5
  "author": "The WordPress Contributors",
6
6
  "license": "GPL-2.0-or-later",
@@ -60,61 +60,61 @@
60
60
  "build-module/bindings/**"
61
61
  ],
62
62
  "dependencies": {
63
- "@wordpress/a11y": "^4.45.0",
64
- "@wordpress/api-fetch": "^7.45.0",
65
- "@wordpress/base-styles": "^7.0.0",
66
- "@wordpress/blob": "^4.45.0",
67
- "@wordpress/block-editor": "^15.18.0",
68
- "@wordpress/block-serialization-default-parser": "^5.45.0",
69
- "@wordpress/blocks": "^15.18.0",
70
- "@wordpress/commands": "^1.45.0",
71
- "@wordpress/components": "^33.0.0",
72
- "@wordpress/compose": "^7.45.0",
73
- "@wordpress/core-data": "^7.45.0",
74
- "@wordpress/data": "^10.45.0",
75
- "@wordpress/dataviews": "^14.2.0",
76
- "@wordpress/date": "^5.45.0",
77
- "@wordpress/deprecated": "^4.45.0",
78
- "@wordpress/dom": "^4.45.0",
79
- "@wordpress/element": "^6.45.0",
80
- "@wordpress/fields": "^0.37.0",
81
- "@wordpress/global-styles-engine": "^1.12.0",
82
- "@wordpress/global-styles-ui": "^1.12.0",
83
- "@wordpress/hooks": "^4.45.0",
84
- "@wordpress/html-entities": "^4.45.0",
85
- "@wordpress/i18n": "^6.18.0",
86
- "@wordpress/icons": "^13.0.0",
87
- "@wordpress/interface": "^9.30.0",
88
- "@wordpress/keyboard-shortcuts": "^5.45.0",
89
- "@wordpress/keycodes": "^4.45.0",
90
- "@wordpress/media-editor": "^0.8.0",
91
- "@wordpress/media-fields": "^0.10.0",
92
- "@wordpress/media-utils": "^5.45.0",
93
- "@wordpress/notices": "^5.45.0",
94
- "@wordpress/patterns": "^2.45.0",
95
- "@wordpress/plugins": "^7.45.0",
96
- "@wordpress/preferences": "^4.45.0",
97
- "@wordpress/private-apis": "^1.45.0",
98
- "@wordpress/reusable-blocks": "^5.45.0",
99
- "@wordpress/rich-text": "^7.45.0",
100
- "@wordpress/server-side-render": "^6.21.0",
101
- "@wordpress/ui": "^0.12.0",
102
- "@wordpress/upload-media": "^0.30.0",
103
- "@wordpress/url": "^4.45.0",
104
- "@wordpress/views": "^1.12.0",
105
- "@wordpress/warning": "^3.45.0",
106
- "@wordpress/wordcount": "^4.45.0",
63
+ "@wordpress/a11y": "^4.45.1-next.v.202605131006.0+2a3d07cab",
64
+ "@wordpress/api-fetch": "^7.45.1-next.v.202605131006.0+2a3d07cab",
65
+ "@wordpress/base-styles": "^8.0.1-next.v.202605131006.0+2a3d07cab",
66
+ "@wordpress/blob": "^4.45.1-next.v.202605131006.0+2a3d07cab",
67
+ "@wordpress/block-editor": "^15.19.1-next.v.202605131006.0+2a3d07cab",
68
+ "@wordpress/block-serialization-default-parser": "^5.45.1-next.v.202605131006.0+2a3d07cab",
69
+ "@wordpress/blocks": "^15.18.1-next.v.202605131006.0+2a3d07cab",
70
+ "@wordpress/commands": "^1.45.1-next.v.202605131006.0+2a3d07cab",
71
+ "@wordpress/components": "^33.1.1-next.v.202605131006.0+2a3d07cab",
72
+ "@wordpress/compose": "^7.45.1-next.v.202605131006.0+2a3d07cab",
73
+ "@wordpress/core-data": "^7.45.1-next.v.202605131006.0+2a3d07cab",
74
+ "@wordpress/data": "^10.45.1-next.v.202605131006.0+2a3d07cab",
75
+ "@wordpress/dataviews": "^14.2.1-next.v.202605131006.0+2a3d07cab",
76
+ "@wordpress/date": "^5.45.1-next.v.202605131006.0+2a3d07cab",
77
+ "@wordpress/deprecated": "^4.45.1-next.v.202605131006.0+2a3d07cab",
78
+ "@wordpress/dom": "^4.45.1-next.v.202605131006.0+2a3d07cab",
79
+ "@wordpress/element": "^6.45.1-next.v.202605131006.0+2a3d07cab",
80
+ "@wordpress/fields": "^0.37.1-next.v.202605131006.0+2a3d07cab",
81
+ "@wordpress/global-styles-engine": "^1.12.1-next.v.202605131006.0+2a3d07cab",
82
+ "@wordpress/global-styles-ui": "^1.12.1-next.v.202605131006.0+2a3d07cab",
83
+ "@wordpress/hooks": "^4.45.1-next.v.202605131006.0+2a3d07cab",
84
+ "@wordpress/html-entities": "^4.45.1-next.v.202605131006.0+2a3d07cab",
85
+ "@wordpress/i18n": "^6.18.1-next.v.202605131006.0+2a3d07cab",
86
+ "@wordpress/icons": "^13.0.1-next.v.202605131006.0+2a3d07cab",
87
+ "@wordpress/interface": "^9.30.1-next.v.202605131006.0+2a3d07cab",
88
+ "@wordpress/keyboard-shortcuts": "^5.45.1-next.v.202605131006.0+2a3d07cab",
89
+ "@wordpress/keycodes": "^4.45.1-next.v.202605131006.0+2a3d07cab",
90
+ "@wordpress/media-editor": "^0.8.1-next.v.202605131006.0+2a3d07cab",
91
+ "@wordpress/media-fields": "^0.10.1-next.v.202605131006.0+2a3d07cab",
92
+ "@wordpress/media-utils": "^5.45.1-next.v.202605131006.0+2a3d07cab",
93
+ "@wordpress/notices": "^5.45.1-next.v.202605131006.0+2a3d07cab",
94
+ "@wordpress/patterns": "^2.45.1-next.v.202605131006.0+2a3d07cab",
95
+ "@wordpress/plugins": "^7.45.1-next.v.202605131006.0+2a3d07cab",
96
+ "@wordpress/preferences": "^4.45.1-next.v.202605131006.0+2a3d07cab",
97
+ "@wordpress/private-apis": "^1.45.1-next.v.202605131006.0+2a3d07cab",
98
+ "@wordpress/reusable-blocks": "^5.45.1-next.v.202605131006.0+2a3d07cab",
99
+ "@wordpress/rich-text": "^7.45.1-next.v.202605131006.0+2a3d07cab",
100
+ "@wordpress/server-side-render": "^6.21.1-next.v.202605131006.0+2a3d07cab",
101
+ "@wordpress/ui": "^0.13.1-next.v.202605131006.0+2a3d07cab",
102
+ "@wordpress/upload-media": "^0.30.1-next.v.202605131006.0+2a3d07cab",
103
+ "@wordpress/url": "^4.45.1-next.v.202605131006.0+2a3d07cab",
104
+ "@wordpress/views": "^1.12.1-next.v.202605131006.0+2a3d07cab",
105
+ "@wordpress/warning": "^3.45.1-next.v.202605131006.0+2a3d07cab",
106
+ "@wordpress/wordcount": "^4.45.1-next.v.202605131006.0+2a3d07cab",
107
107
  "change-case": "^4.1.2",
108
108
  "client-zip": "^2.4.5",
109
109
  "clsx": "^2.1.1",
110
110
  "colord": "^2.7.0",
111
- "date-fns": "^3.6.0",
111
+ "date-fns": "^4.1.0",
112
112
  "diff": "^4.0.2",
113
113
  "fast-deep-equal": "^3.1.3",
114
114
  "memize": "^2.1.0",
115
115
  "react-autosize-textarea": "^7.1.0",
116
116
  "remove-accents": "^0.5.0",
117
- "uuid": "^9.0.1"
117
+ "uuid": "^14.0.0"
118
118
  },
119
119
  "devDependencies": {
120
120
  "deep-freeze": "0.0.1"
@@ -126,5 +126,5 @@
126
126
  "publishConfig": {
127
127
  "access": "public"
128
128
  },
129
- "gitHead": "8c229eaed0e88c9827e2da3d73a78f9ddd77714b"
129
+ "gitHead": "8804fa29bc78a1d98e5a4d40c3e180ddd907016c"
130
130
  }
@@ -1,6 +1,5 @@
1
1
  @use "@wordpress/base-styles/colors" as *;
2
2
  @use "@wordpress/base-styles/variables" as *;
3
- @use "@wordpress/base-styles/z-index" as *;
4
3
 
5
4
  .editor-block-visibility__disabled-blocks-count {
6
5
  border: $border-width solid $gray-300;
@@ -13,7 +12,8 @@
13
12
  position: sticky;
14
13
  // When sticking, tuck the top border beneath the modal header border
15
14
  top: ($grid-unit-05 + 1) * -1;
16
- z-index: z-index(".block-editor-block-manager__disabled-blocks-count");
15
+ // Keep the sticky disabled block count above the category items.
16
+ z-index: 1;
17
17
 
18
18
  // Stick the category titles to the bottom
19
19
  ~ .block-editor-block-manager__content .block-editor-block-manager__category-title {
@@ -75,43 +75,19 @@ function NotesSidebar( { postId } ) {
75
75
  ( unresolvedNotes.length > 0 || selectedNote !== undefined )
76
76
  );
77
77
 
78
- useShortcut(
79
- 'core/editor/new-note',
80
- ( event ) => {
81
- event.preventDefault();
82
- openTheSidebar();
83
- },
84
- {
85
- // When multiple notes per block are supported. Remove note ID check.
86
- // See: https://github.com/WordPress/gutenberg/pull/75147.
87
- isDisabled:
88
- isDistractionFree || isClassicBlock || ! clientId || !! noteId,
78
+ async function focusNote( {
79
+ targetClientId,
80
+ noteId: targetNoteId,
81
+ isApproved,
82
+ } ) {
83
+ if ( ! targetClientId ) {
84
+ return;
89
85
  }
90
- );
91
86
 
92
- // Get the global styles to set the background color of the sidebar.
93
- const { merged: GlobalStyles } = useGlobalStylesContext();
94
- const backgroundColor = GlobalStyles?.styles?.color?.background;
95
-
96
- // Find the current thread for the selected block.
97
- const currentThread = noteId
98
- ? notes.find( ( thread ) => thread.id === noteId )
99
- : null;
100
-
101
- async function openTheSidebar( selectedClientId ) {
102
87
  const prevArea = await getActiveComplementaryArea( 'core' );
103
- const activeNotesArea = SIDEBARS.find( ( name ) => name === prevArea );
104
- const targetClientId =
105
- selectedClientId && selectedClientId !== clientId
106
- ? selectedClientId
107
- : clientId;
108
- const targetNote = notes.find(
109
- ( note ) => note.blockClientId === targetClientId
110
- );
111
-
112
- if ( targetNote?.status === 'approved' ) {
88
+ if ( isApproved ) {
113
89
  enableComplementaryArea( 'core', ALL_NOTES_SIDEBAR );
114
- } else if ( ! activeNotesArea || ! showAllNotesSidebar ) {
90
+ } else if ( ! SIDEBARS.includes( prevArea ) || ! showAllNotesSidebar ) {
115
91
  enableComplementaryArea(
116
92
  'core',
117
93
  showFloatingSidebar ? FLOATING_NOTES_SIDEBAR : ALL_NOTES_SIDEBAR
@@ -128,9 +104,43 @@ function NotesSidebar( { postId } ) {
128
104
  // The action won't do anything if the block is already selected.
129
105
  selectBlock( targetClientId, null );
130
106
  toggleBlockSpotlight( targetClientId, true );
131
- selectNote( targetNote ? targetNote.id : 'new', { focus: true } );
107
+ selectNote( targetNoteId, { focus: true } );
108
+ }
109
+
110
+ function openNoteForBlock( targetClientId ) {
111
+ const target = notes.find(
112
+ ( note ) => note.blockClientId === targetClientId
113
+ );
114
+ return focusNote( {
115
+ targetClientId,
116
+ noteId: target?.id ?? 'new',
117
+ isApproved: target?.status === 'approved',
118
+ } );
132
119
  }
133
120
 
121
+ useShortcut(
122
+ 'core/editor/new-note',
123
+ ( event ) => {
124
+ event.preventDefault();
125
+ openNoteForBlock( clientId );
126
+ },
127
+ {
128
+ // When multiple notes per block are supported. Remove note ID check.
129
+ // See: https://github.com/WordPress/gutenberg/pull/75147.
130
+ isDisabled:
131
+ isDistractionFree || isClassicBlock || ! clientId || !! noteId,
132
+ }
133
+ );
134
+
135
+ // Get the global styles to set the background color of the sidebar.
136
+ const { merged: GlobalStyles } = useGlobalStylesContext();
137
+ const backgroundColor = GlobalStyles?.styles?.color?.background;
138
+
139
+ // Find the current thread for the selected block.
140
+ const currentThread = noteId
141
+ ? notes.find( ( thread ) => thread.id === noteId )
142
+ : null;
143
+
134
144
  if ( isDistractionFree ) {
135
145
  return <AddNoteMenuItem isDistractionFree />;
136
146
  }
@@ -140,10 +150,12 @@ function NotesSidebar( { postId } ) {
140
150
  { !! currentThread && (
141
151
  <NoteAvatarIndicator
142
152
  note={ currentThread }
143
- onClick={ openTheSidebar }
153
+ onClick={ () => openNoteForBlock( clientId ) }
144
154
  />
145
155
  ) }
146
- <AddNoteMenuItem onClick={ openTheSidebar } />
156
+ <AddNoteMenuItem
157
+ onClick={ ( menuClientId ) => openNoteForBlock( menuClientId ) }
158
+ />
147
159
  { showAllNotesSidebar && (
148
160
  <PluginSidebar
149
161
  identifier={ ALL_NOTES_SIDEBAR }
@@ -26,7 +26,11 @@ import { Note } from './note';
26
26
  import { NoteCard } from './note-card';
27
27
  import { NoteForm } from './note-form';
28
28
  import { FloatingContainer } from './floating-container';
29
- import { focusNoteThread, getNoteExcerpt } from './utils';
29
+ import {
30
+ focusNoteThread,
31
+ getNoteExcerpt,
32
+ scrollNoteThreadIntoView,
33
+ } from './utils';
30
34
  import { store as editorStore } from '../../store';
31
35
  import { unlock } from '../../lock-unlock';
32
36
 
@@ -68,6 +72,15 @@ export function NoteThread( {
68
72
  return () => unregisterThread?.( note.id );
69
73
  }, [ relatedBlockElement, note.id, registerThread, unregisterThread ] );
70
74
 
75
+ // Scroll the thread into view when it becomes selected, and re-scroll
76
+ // when its floating position settles after `useFloatingBoard` recomputes.
77
+ useEffect( () => {
78
+ if ( ! isSelected || note.id === 'new' ) {
79
+ return;
80
+ }
81
+ scrollNoteThreadIntoView( note.id, sidebarRef.current );
82
+ }, [ isSelected, floating?.y, note.id, sidebarRef ] );
83
+
71
84
  const onMouseEnter = () => {
72
85
  debouncedToggleBlockHighlight( note.blockClientId, true );
73
86
  };
@@ -113,11 +126,16 @@ export function NoteThread( {
113
126
  // - An element other than a note is clicked.
114
127
  // - Focus was lost by tabbing.
115
128
  toggleBlockHighlight( note.blockClientId, false );
116
- unselectNote();
129
+ onDeselectNote();
117
130
  };
118
131
 
119
- const handleNoteSelect = () => {
132
+ const onSelectNote = () => {
133
+ if ( isSelected ) {
134
+ return;
135
+ }
136
+
120
137
  selectNote( note.id );
138
+ focusNoteThread( note.id, sidebarRef.current );
121
139
  toggleBlockSpotlight( note.blockClientId, true );
122
140
  if ( !! note.blockClientId ) {
123
141
  // Pass `null` as the second parameter to prevent focusing the block.
@@ -125,14 +143,14 @@ export function NoteThread( {
125
143
  }
126
144
  };
127
145
 
128
- const unselectNote = () => {
146
+ const onDeselectNote = () => {
129
147
  selectNote( undefined );
130
148
  toggleBlockSpotlight( note.blockClientId, false );
131
149
  };
132
150
 
133
151
  const handleResolve = () => {
134
152
  onEditNote( { id: note.id, status: 'approved' } );
135
- unselectNote();
153
+ onDeselectNote();
136
154
  if ( isFloating ) {
137
155
  relatedBlockElement?.focus();
138
156
  } else {
@@ -181,7 +199,7 @@ export function NoteThread( {
181
199
  } ) }
182
200
  id={ `note-thread-${ note.id }` }
183
201
  gap="md"
184
- onClick={ handleNoteSelect }
202
+ onClick={ onSelectNote }
185
203
  onMouseEnter={ onMouseEnter }
186
204
  onMouseLeave={ onMouseLeave }
187
205
  onFocus={ onFocus }
@@ -247,9 +265,9 @@ export function NoteThread( {
247
265
  size="compact"
248
266
  variant="tertiary"
249
267
  className="editor-collab-sidebar-panel__more-reply-button"
250
- onClick={ () => {
251
- selectNote( note.id );
252
- focusNoteThread( note.id, sidebarRef.current );
268
+ onClick={ ( event ) => {
269
+ event.stopPropagation();
270
+ onSelectNote();
253
271
  } }
254
272
  >
255
273
  { sprintf(
@@ -295,7 +313,7 @@ export function NoteThread( {
295
313
  onCancel={ ( event ) => {
296
314
  // Prevent the parent onClick from being triggered.
297
315
  event.stopPropagation();
298
- unselectNote();
316
+ onDeselectNote();
299
317
  focusNoteThread( note.id, sidebarRef.current );
300
318
  } }
301
319
  labels={ {