@wordpress/editor 14.45.0 → 14.45.2-next.v.202605131032.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.
- package/CHANGELOG.md +6 -0
- package/README.md +12 -0
- package/build/components/collab-sidebar/index.cjs +42 -25
- package/build/components/collab-sidebar/index.cjs.map +2 -2
- package/build/components/collab-sidebar/note-thread.cjs +19 -9
- package/build/components/collab-sidebar/note-thread.cjs.map +2 -2
- package/build/components/collab-sidebar/notes.cjs +8 -6
- package/build/components/collab-sidebar/notes.cjs.map +2 -2
- package/build/components/collab-sidebar/utils.cjs +24 -9
- package/build/components/collab-sidebar/utils.cjs.map +2 -2
- package/build/components/collaborators-presence/index.cjs +0 -10
- package/build/components/collaborators-presence/index.cjs.map +3 -3
- package/build/components/collaborators-presence/list.cjs +0 -10
- package/build/components/collaborators-presence/list.cjs.map +3 -3
- package/build/components/post-last-revision/index.cjs +5 -0
- package/build/components/post-last-revision/index.cjs.map +2 -2
- package/build/components/post-publish-panel/index.cjs +112 -124
- package/build/components/post-publish-panel/index.cjs.map +3 -3
- package/build/components/post-revisions-preview/block-diff.cjs +91 -23
- package/build/components/post-revisions-preview/block-diff.cjs.map +2 -2
- package/build/components/post-revisions-preview/diff-markers.cjs +3 -2
- package/build/components/post-revisions-preview/diff-markers.cjs.map +2 -2
- package/build/components/post-revisions-preview/revisions-slider.cjs +98 -50
- package/build/components/post-revisions-preview/revisions-slider.cjs.map +2 -2
- package/build/store/private-actions.cjs +21 -0
- package/build/store/private-actions.cjs.map +2 -2
- package/build/store/private-selectors.cjs +93 -42
- package/build/store/private-selectors.cjs.map +2 -2
- package/build/store/reducer.cjs +15 -0
- package/build/store/reducer.cjs.map +2 -2
- package/build/store/selectors.cjs.map +2 -2
- package/build-module/components/collab-sidebar/index.mjs +42 -25
- package/build-module/components/collab-sidebar/index.mjs.map +2 -2
- package/build-module/components/collab-sidebar/note-thread.mjs +24 -10
- package/build-module/components/collab-sidebar/note-thread.mjs.map +2 -2
- package/build-module/components/collab-sidebar/notes.mjs +8 -6
- package/build-module/components/collab-sidebar/notes.mjs.map +2 -2
- package/build-module/components/collab-sidebar/utils.mjs +22 -8
- package/build-module/components/collab-sidebar/utils.mjs.map +2 -2
- package/build-module/components/collaborators-presence/index.mjs +0 -10
- package/build-module/components/collaborators-presence/index.mjs.map +3 -3
- package/build-module/components/collaborators-presence/list.mjs +0 -10
- package/build-module/components/collaborators-presence/list.mjs.map +3 -3
- package/build-module/components/post-last-revision/index.mjs +5 -0
- package/build-module/components/post-last-revision/index.mjs.map +2 -2
- package/build-module/components/post-publish-panel/index.mjs +120 -129
- package/build-module/components/post-publish-panel/index.mjs.map +2 -2
- package/build-module/components/post-revisions-preview/block-diff.mjs +91 -23
- package/build-module/components/post-revisions-preview/block-diff.mjs.map +2 -2
- package/build-module/components/post-revisions-preview/diff-markers.mjs +3 -2
- package/build-module/components/post-revisions-preview/diff-markers.mjs.map +2 -2
- package/build-module/components/post-revisions-preview/revisions-slider.mjs +101 -53
- package/build-module/components/post-revisions-preview/revisions-slider.mjs.map +2 -2
- package/build-module/store/private-actions.mjs +20 -0
- package/build-module/store/private-actions.mjs.map +2 -2
- package/build-module/store/private-selectors.mjs +95 -43
- package/build-module/store/private-selectors.mjs.map +2 -2
- package/build-module/store/reducer.mjs +14 -0
- package/build-module/store/reducer.mjs.map +2 -2
- package/build-module/store/selectors.mjs.map +2 -2
- package/build-style/style-rtl.css +398 -33
- package/build-style/style.css +398 -33
- package/build-types/bindings/api.d.ts +1 -1
- package/build-types/bindings/api.d.ts.map +1 -1
- package/build-types/bindings/pattern-overrides.d.ts +8 -5
- package/build-types/bindings/pattern-overrides.d.ts.map +1 -1
- package/build-types/bindings/post-data.d.ts +8 -5
- package/build-types/bindings/post-data.d.ts.map +1 -1
- package/build-types/bindings/post-meta.d.ts +10 -7
- package/build-types/bindings/post-meta.d.ts.map +1 -1
- package/build-types/bindings/term-data.d.ts +9 -6
- package/build-types/bindings/term-data.d.ts.map +1 -1
- package/build-types/components/autocompleters/index.d.ts +2 -2
- package/build-types/components/autocompleters/index.d.ts.map +1 -1
- package/build-types/components/autocompleters/link.d.ts +6 -10
- package/build-types/components/autocompleters/link.d.ts.map +1 -1
- package/build-types/components/autocompleters/user.d.ts +7 -12
- package/build-types/components/autocompleters/user.d.ts.map +1 -1
- package/build-types/components/autosave-monitor/index.d.ts +28 -4
- package/build-types/components/autosave-monitor/index.d.ts.map +1 -1
- package/build-types/components/block-removal-warnings/index.d.ts +3 -0
- package/build-types/components/block-removal-warnings/index.d.ts.map +1 -1
- package/build-types/components/block-settings-menu/plugin-block-settings-menu-item.d.ts +7 -7
- package/build-types/components/block-settings-menu/plugin-block-settings-menu-item.d.ts.map +1 -1
- package/build-types/components/block-visibility/index.d.ts.map +1 -1
- package/build-types/components/blog-title/index.d.ts.map +1 -1
- package/build-types/components/character-count/index.d.ts.map +1 -1
- package/build-types/components/collab-sidebar/add-note-menu-item.d.ts +2 -2
- package/build-types/components/collab-sidebar/add-note-menu-item.d.ts.map +1 -1
- package/build-types/components/collab-sidebar/add-note.d.ts +2 -2
- package/build-types/components/collab-sidebar/add-note.d.ts.map +1 -1
- package/build-types/components/collab-sidebar/board-store.d.ts +1 -1
- package/build-types/components/collab-sidebar/board-store.d.ts.map +1 -1
- package/build-types/components/collab-sidebar/constants.d.ts +3 -3
- package/build-types/components/collab-sidebar/constants.d.ts.map +1 -1
- package/build-types/components/collab-sidebar/floating-container.d.ts +3 -3
- package/build-types/components/collab-sidebar/floating-container.d.ts.map +1 -1
- package/build-types/components/collab-sidebar/hooks.d.ts +7 -7
- package/build-types/components/collab-sidebar/hooks.d.ts.map +1 -1
- package/build-types/components/collab-sidebar/index.d.ts.map +1 -1
- package/build-types/components/collab-sidebar/note-byline.d.ts +2 -2
- package/build-types/components/collab-sidebar/note-byline.d.ts.map +1 -1
- package/build-types/components/collab-sidebar/note-card.d.ts +3 -3
- package/build-types/components/collab-sidebar/note-card.d.ts.map +1 -1
- package/build-types/components/collab-sidebar/note-form.d.ts +4 -4
- package/build-types/components/collab-sidebar/note-form.d.ts.map +1 -1
- package/build-types/components/collab-sidebar/note-indicator-toolbar.d.ts +2 -2
- package/build-types/components/collab-sidebar/note-indicator-toolbar.d.ts.map +1 -1
- package/build-types/components/collab-sidebar/note-thread.d.ts +5 -5
- package/build-types/components/collab-sidebar/note-thread.d.ts.map +1 -1
- package/build-types/components/collab-sidebar/note.d.ts +4 -4
- package/build-types/components/collab-sidebar/note.d.ts.map +1 -1
- package/build-types/components/collab-sidebar/notes.d.ts +2 -2
- package/build-types/components/collab-sidebar/notes.d.ts.map +1 -1
- package/build-types/components/collab-sidebar/utils.d.ts +17 -24
- package/build-types/components/collab-sidebar/utils.d.ts.map +1 -1
- package/build-types/components/collaborators-overlay/cursor-dom-utils.d.ts.map +1 -1
- package/build-types/components/collaborators-overlay/cursor-registry.d.ts.map +1 -1
- package/build-types/components/collaborators-overlay/index.d.ts +4 -1
- package/build-types/components/collaborators-overlay/index.d.ts.map +1 -1
- package/build-types/components/collaborators-overlay/overlay.d.ts +1 -1
- package/build-types/components/collaborators-overlay/overlay.d.ts.map +1 -1
- package/build-types/components/collaborators-presence/avatar/component.d.ts.map +1 -1
- package/build-types/components/collaborators-presence/avatar-group/component.d.ts.map +1 -1
- package/build-types/components/collaborators-presence/index.d.ts +1 -2
- package/build-types/components/collaborators-presence/index.d.ts.map +1 -1
- package/build-types/components/collaborators-presence/list.d.ts +1 -2
- package/build-types/components/collaborators-presence/list.d.ts.map +1 -1
- package/build-types/components/collapsible-block-toolbar/index.d.ts.map +1 -1
- package/build-types/components/commands/index.d.ts.map +1 -1
- package/build-types/components/deprecated.d.ts +82 -53
- package/build-types/components/deprecated.d.ts.map +1 -1
- package/build-types/components/document-bar/index.d.ts +3 -3
- package/build-types/components/document-bar/index.d.ts.map +1 -1
- package/build-types/components/document-bar/useEditedSectionDetails.d.ts.map +1 -1
- package/build-types/components/document-outline/check.d.ts +2 -2
- package/build-types/components/document-outline/check.d.ts.map +1 -1
- package/build-types/components/document-outline/index.d.ts +2 -2
- package/build-types/components/document-outline/index.d.ts.map +1 -1
- package/build-types/components/document-outline/item.d.ts +5 -5
- package/build-types/components/document-outline/item.d.ts.map +1 -1
- package/build-types/components/document-tools/index.d.ts +1 -1
- package/build-types/components/document-tools/index.d.ts.map +1 -1
- package/build-types/components/editor/index.d.ts +7 -7
- package/build-types/components/editor/index.d.ts.map +1 -1
- package/build-types/components/editor-history/redo.d.ts +11 -2
- package/build-types/components/editor-history/redo.d.ts.map +1 -1
- package/build-types/components/editor-history/undo.d.ts +11 -2
- package/build-types/components/editor-history/undo.d.ts.map +1 -1
- package/build-types/components/editor-interface/index.d.ts +5 -5
- package/build-types/components/editor-interface/index.d.ts.map +1 -1
- package/build-types/components/editor-notices/index.d.ts +1 -1
- package/build-types/components/editor-notices/index.d.ts.map +1 -1
- package/build-types/components/editor-snackbars/index.d.ts.map +1 -1
- package/build-types/components/entities-saved-states/entity-record-item.d.ts +1 -1
- package/build-types/components/entities-saved-states/entity-record-item.d.ts.map +1 -1
- package/build-types/components/entities-saved-states/entity-type-list.d.ts +2 -2
- package/build-types/components/entities-saved-states/entity-type-list.d.ts.map +1 -1
- package/build-types/components/entities-saved-states/hooks/use-is-dirty.d.ts +10 -1
- package/build-types/components/entities-saved-states/hooks/use-is-dirty.d.ts.map +1 -1
- package/build-types/components/entities-saved-states/index.d.ts +4 -4
- package/build-types/components/entities-saved-states/index.d.ts.map +1 -1
- package/build-types/components/error-boundary/index.d.ts +18 -8
- package/build-types/components/error-boundary/index.d.ts.map +1 -1
- package/build-types/components/global-keyboard-shortcuts/index.d.ts.map +1 -1
- package/build-types/components/global-keyboard-shortcuts/register-shortcuts.d.ts +1 -1
- package/build-types/components/global-keyboard-shortcuts/register-shortcuts.d.ts.map +1 -1
- package/build-types/components/global-styles/block-link.d.ts +1 -1
- package/build-types/components/global-styles/block-link.d.ts.map +1 -1
- package/build-types/components/global-styles/header.d.ts +2 -2
- package/build-types/components/global-styles/header.d.ts.map +1 -1
- package/build-types/components/global-styles/hooks.d.ts +3 -3
- package/build-types/components/global-styles/hooks.d.ts.map +1 -1
- package/build-types/components/global-styles/index.d.ts +3 -3
- package/build-types/components/global-styles/index.d.ts.map +1 -1
- package/build-types/components/global-styles/menu.d.ts +2 -2
- package/build-types/components/global-styles/menu.d.ts.map +1 -1
- package/build-types/components/global-styles-provider/index.d.ts +1 -1
- package/build-types/components/global-styles-provider/index.d.ts.map +1 -1
- package/build-types/components/global-styles-renderer/index.d.ts +1 -1
- package/build-types/components/global-styles-renderer/index.d.ts.map +1 -1
- package/build-types/components/global-styles-sidebar/default-sidebar.d.ts +6 -6
- package/build-types/components/global-styles-sidebar/default-sidebar.d.ts.map +1 -1
- package/build-types/components/global-styles-sidebar/index.d.ts.map +1 -1
- package/build-types/components/global-styles-sidebar/welcome-guide-image.d.ts +1 -1
- package/build-types/components/global-styles-sidebar/welcome-guide-image.d.ts.map +1 -1
- package/build-types/components/global-styles-sidebar/welcome-guide.d.ts.map +1 -1
- package/build-types/components/header/back-button.d.ts +3 -3
- package/build-types/components/header/back-button.d.ts.map +1 -1
- package/build-types/components/header/header-skeleton.d.ts +5 -5
- package/build-types/components/header/header-skeleton.d.ts.map +1 -1
- package/build-types/components/header/index.d.ts +2 -2
- package/build-types/components/header/index.d.ts.map +1 -1
- package/build-types/components/index.d.ts +94 -91
- package/build-types/components/index.d.ts.map +1 -1
- package/build-types/components/inserter-sidebar/index.d.ts.map +1 -1
- package/build-types/components/keyboard-shortcut-help-modal/config.d.ts +3 -3
- package/build-types/components/keyboard-shortcut-help-modal/config.d.ts.map +1 -1
- package/build-types/components/keyboard-shortcut-help-modal/dynamic-shortcut.d.ts +1 -1
- package/build-types/components/keyboard-shortcut-help-modal/dynamic-shortcut.d.ts.map +1 -1
- package/build-types/components/keyboard-shortcut-help-modal/index.d.ts +1 -1
- package/build-types/components/keyboard-shortcut-help-modal/index.d.ts.map +1 -1
- package/build-types/components/keyboard-shortcut-help-modal/shortcut.d.ts +3 -3
- package/build-types/components/keyboard-shortcut-help-modal/shortcut.d.ts.map +1 -1
- package/build-types/components/list-view-sidebar/index.d.ts.map +1 -1
- package/build-types/components/list-view-sidebar/list-view-outline.d.ts.map +1 -1
- package/build-types/components/local-autosave-monitor/index.d.ts +12 -0
- package/build-types/components/local-autosave-monitor/index.d.ts.map +1 -1
- package/build-types/components/media/index.d.ts +2 -2
- package/build-types/components/media/index.d.ts.map +1 -1
- package/build-types/components/media/media-editor-modal.d.ts.map +1 -1
- package/build-types/components/media/metadata-panel.d.ts.map +1 -1
- package/build-types/components/media/preview.d.ts.map +1 -1
- package/build-types/components/media-categories/index.d.ts +11 -4
- package/build-types/components/media-categories/index.d.ts.map +1 -1
- package/build-types/components/mode-switcher/index.d.ts +1 -1
- package/build-types/components/mode-switcher/index.d.ts.map +1 -1
- package/build-types/components/more-menu/copy-content-menu-item.d.ts.map +1 -1
- package/build-types/components/more-menu/index.d.ts.map +1 -1
- package/build-types/components/more-menu/tools-more-menu-group.d.ts +2 -2
- package/build-types/components/more-menu/tools-more-menu-group.d.ts.map +1 -1
- package/build-types/components/more-menu/view-more-menu-group.d.ts +2 -2
- package/build-types/components/more-menu/view-more-menu-group.d.ts.map +1 -1
- package/build-types/components/page-attributes/check.d.ts +3 -3
- package/build-types/components/page-attributes/check.d.ts.map +1 -1
- package/build-types/components/page-attributes/order.d.ts +1 -1
- package/build-types/components/page-attributes/order.d.ts.map +1 -1
- package/build-types/components/page-attributes/panel.d.ts +1 -1
- package/build-types/components/page-attributes/panel.d.ts.map +1 -1
- package/build-types/components/page-attributes/parent.d.ts +3 -3
- package/build-types/components/page-attributes/parent.d.ts.map +1 -1
- package/build-types/components/pattern-duplicate-modal/index.d.ts +1 -1
- package/build-types/components/pattern-duplicate-modal/index.d.ts.map +1 -1
- package/build-types/components/pattern-overrides-panel/index.d.ts.map +1 -1
- package/build-types/components/pattern-rename-modal/index.d.ts +1 -1
- package/build-types/components/pattern-rename-modal/index.d.ts.map +1 -1
- package/build-types/components/plugin-document-setting-panel/index.d.ts +8 -61
- package/build-types/components/plugin-document-setting-panel/index.d.ts.map +1 -1
- package/build-types/components/plugin-more-menu-item/index.d.ts +5 -5
- package/build-types/components/plugin-more-menu-item/index.d.ts.map +1 -1
- package/build-types/components/plugin-post-publish-panel/index.d.ts +9 -40
- package/build-types/components/plugin-post-publish-panel/index.d.ts.map +1 -1
- package/build-types/components/plugin-post-status-info/index.d.ts +6 -47
- package/build-types/components/plugin-post-status-info/index.d.ts.map +1 -1
- package/build-types/components/plugin-pre-publish-panel/index.d.ts +9 -43
- package/build-types/components/plugin-pre-publish-panel/index.d.ts.map +1 -1
- package/build-types/components/plugin-preview-menu-item/index.d.ts +5 -5
- package/build-types/components/plugin-preview-menu-item/index.d.ts.map +1 -1
- package/build-types/components/plugin-sidebar/index.d.ts +4 -4
- package/build-types/components/plugin-sidebar/index.d.ts.map +1 -1
- package/build-types/components/plugin-sidebar-more-menu-item/index.d.ts +3 -3
- package/build-types/components/plugin-sidebar-more-menu-item/index.d.ts.map +1 -1
- package/build-types/components/post-actions/actions.d.ts +3 -3
- package/build-types/components/post-actions/actions.d.ts.map +1 -1
- package/build-types/components/post-actions/index.d.ts +4 -4
- package/build-types/components/post-actions/index.d.ts.map +1 -1
- package/build-types/components/post-actions/set-as-homepage.d.ts +2 -2
- package/build-types/components/post-actions/set-as-homepage.d.ts.map +1 -1
- package/build-types/components/post-actions/set-as-posts-page.d.ts +2 -2
- package/build-types/components/post-actions/set-as-posts-page.d.ts.map +1 -1
- package/build-types/components/post-author/check.d.ts +2 -2
- package/build-types/components/post-author/check.d.ts.map +1 -1
- package/build-types/components/post-author/combobox.d.ts.map +1 -1
- package/build-types/components/post-author/constants.d.ts +10 -8
- package/build-types/components/post-author/constants.d.ts.map +1 -1
- package/build-types/components/post-author/hook.d.ts +1 -1
- package/build-types/components/post-author/hook.d.ts.map +1 -1
- package/build-types/components/post-author/index.d.ts +2 -2
- package/build-types/components/post-author/index.d.ts.map +1 -1
- package/build-types/components/post-author/panel.d.ts +1 -1
- package/build-types/components/post-author/panel.d.ts.map +1 -1
- package/build-types/components/post-author/select.d.ts.map +1 -1
- package/build-types/components/post-card-panel/index.d.ts +7 -7
- package/build-types/components/post-card-panel/index.d.ts.map +1 -1
- package/build-types/components/post-comments/index.d.ts +6 -1
- package/build-types/components/post-comments/index.d.ts.map +1 -1
- package/build-types/components/post-content-information/index.d.ts +1 -1
- package/build-types/components/post-content-information/index.d.ts.map +1 -1
- package/build-types/components/post-discussion/panel.d.ts +1 -1
- package/build-types/components/post-discussion/panel.d.ts.map +1 -1
- package/build-types/components/post-excerpt/check.d.ts +3 -3
- package/build-types/components/post-excerpt/check.d.ts.map +1 -1
- package/build-types/components/post-excerpt/index.d.ts +3 -3
- package/build-types/components/post-excerpt/index.d.ts.map +1 -1
- package/build-types/components/post-excerpt/panel.d.ts +2 -2
- package/build-types/components/post-excerpt/panel.d.ts.map +1 -1
- package/build-types/components/post-excerpt/plugin.d.ts +6 -43
- package/build-types/components/post-excerpt/plugin.d.ts.map +1 -1
- package/build-types/components/post-featured-image/check.d.ts +3 -3
- package/build-types/components/post-featured-image/check.d.ts.map +1 -1
- package/build-types/components/post-featured-image/index.d.ts +15 -0
- package/build-types/components/post-featured-image/index.d.ts.map +1 -1
- package/build-types/components/post-featured-image/panel.d.ts +1 -1
- package/build-types/components/post-featured-image/panel.d.ts.map +1 -1
- package/build-types/components/post-fields/index.d.ts +1 -1
- package/build-types/components/post-fields/index.d.ts.map +1 -1
- package/build-types/components/post-format/check.d.ts +2 -2
- package/build-types/components/post-format/check.d.ts.map +1 -1
- package/build-types/components/post-format/index.d.ts +12 -12
- package/build-types/components/post-format/index.d.ts.map +1 -1
- package/build-types/components/post-format/panel.d.ts +2 -2
- package/build-types/components/post-format/panel.d.ts.map +1 -1
- package/build-types/components/post-last-edited-panel/index.d.ts.map +1 -1
- package/build-types/components/post-last-revision/check.d.ts +3 -3
- package/build-types/components/post-last-revision/check.d.ts.map +1 -1
- package/build-types/components/post-last-revision/index.d.ts +3 -3
- package/build-types/components/post-last-revision/index.d.ts.map +1 -1
- package/build-types/components/post-last-revision/panel.d.ts +2 -2
- package/build-types/components/post-last-revision/panel.d.ts.map +1 -1
- package/build-types/components/post-locked-modal/index.d.ts +11 -5
- package/build-types/components/post-locked-modal/index.d.ts.map +1 -1
- package/build-types/components/post-panel-row/index.d.ts +1 -1
- package/build-types/components/post-panel-row/index.d.ts.map +1 -1
- package/build-types/components/post-panel-section/index.d.ts +2 -2
- package/build-types/components/post-panel-section/index.d.ts.map +1 -1
- package/build-types/components/post-pending-status/check.d.ts +3 -3
- package/build-types/components/post-pending-status/check.d.ts.map +1 -1
- package/build-types/components/post-pending-status/index.d.ts +1 -1
- package/build-types/components/post-pending-status/index.d.ts.map +1 -1
- package/build-types/components/post-pingbacks/index.d.ts +7 -1
- package/build-types/components/post-pingbacks/index.d.ts.map +1 -1
- package/build-types/components/post-preview-button/index.d.ts +2 -2
- package/build-types/components/post-preview-button/index.d.ts.map +1 -1
- package/build-types/components/post-publish-button/index.d.ts +5 -5
- package/build-types/components/post-publish-button/index.d.ts.map +1 -1
- package/build-types/components/post-publish-button/label.d.ts.map +1 -1
- package/build-types/components/post-publish-button/post-publish-button-or-toggle.d.ts +1 -1
- package/build-types/components/post-publish-button/post-publish-button-or-toggle.d.ts.map +1 -1
- package/build-types/components/post-publish-panel/index.d.ts +17 -13
- package/build-types/components/post-publish-panel/index.d.ts.map +1 -1
- package/build-types/components/post-publish-panel/maybe-category-panel.d.ts +1 -1
- package/build-types/components/post-publish-panel/maybe-category-panel.d.ts.map +1 -1
- package/build-types/components/post-publish-panel/maybe-post-format-panel.d.ts.map +1 -1
- package/build-types/components/post-publish-panel/maybe-tags-panel.d.ts +1 -1
- package/build-types/components/post-publish-panel/maybe-tags-panel.d.ts.map +1 -1
- package/build-types/components/post-publish-panel/maybe-upload-media.d.ts.map +1 -1
- package/build-types/components/post-publish-panel/media-util.d.ts +2 -2
- package/build-types/components/post-publish-panel/media-util.d.ts.map +1 -1
- package/build-types/components/post-publish-panel/postpublish.d.ts +2 -2
- package/build-types/components/post-publish-panel/postpublish.d.ts.map +1 -1
- package/build-types/components/post-publish-panel/prepublish.d.ts +1 -1
- package/build-types/components/post-publish-panel/prepublish.d.ts.map +1 -1
- package/build-types/components/post-revisions-panel/index.d.ts.map +1 -1
- package/build-types/components/post-revisions-preview/block-diff.d.ts +1 -1
- package/build-types/components/post-revisions-preview/block-diff.d.ts.map +1 -1
- package/build-types/components/post-revisions-preview/diff-format-types.d.ts +2 -2
- package/build-types/components/post-revisions-preview/diff-format-types.d.ts.map +1 -1
- package/build-types/components/post-revisions-preview/diff-markers.d.ts +1 -1
- package/build-types/components/post-revisions-preview/diff-markers.d.ts.map +1 -1
- package/build-types/components/post-revisions-preview/index.d.ts +2 -2
- package/build-types/components/post-revisions-preview/index.d.ts.map +1 -1
- package/build-types/components/post-revisions-preview/preserve-client-ids.d.ts +1 -1
- package/build-types/components/post-revisions-preview/preserve-client-ids.d.ts.map +1 -1
- package/build-types/components/post-revisions-preview/revisions-canvas.d.ts +1 -1
- package/build-types/components/post-revisions-preview/revisions-canvas.d.ts.map +1 -1
- package/build-types/components/post-revisions-preview/revisions-header.d.ts +2 -2
- package/build-types/components/post-revisions-preview/revisions-header.d.ts.map +1 -1
- package/build-types/components/post-revisions-preview/revisions-slider.d.ts +3 -3
- package/build-types/components/post-revisions-preview/revisions-slider.d.ts.map +1 -1
- package/build-types/components/post-saved-state/index.d.ts +1 -1
- package/build-types/components/post-saved-state/index.d.ts.map +1 -1
- package/build-types/components/post-schedule/check.d.ts +2 -2
- package/build-types/components/post-schedule/check.d.ts.map +1 -1
- package/build-types/components/post-schedule/index.d.ts +3 -3
- package/build-types/components/post-schedule/index.d.ts.map +1 -1
- package/build-types/components/post-schedule/label.d.ts +4 -4
- package/build-types/components/post-schedule/label.d.ts.map +1 -1
- package/build-types/components/post-schedule/panel.d.ts +1 -1
- package/build-types/components/post-schedule/panel.d.ts.map +1 -1
- package/build-types/components/post-status/index.d.ts +2 -2
- package/build-types/components/post-status/index.d.ts.map +1 -1
- package/build-types/components/post-sticky/check.d.ts +2 -2
- package/build-types/components/post-sticky/check.d.ts.map +1 -1
- package/build-types/components/post-sticky/index.d.ts +1 -1
- package/build-types/components/post-sticky/index.d.ts.map +1 -1
- package/build-types/components/post-sticky/panel.d.ts +1 -1
- package/build-types/components/post-sticky/panel.d.ts.map +1 -1
- package/build-types/components/post-switch-to-draft-button/index.d.ts +1 -1
- package/build-types/components/post-switch-to-draft-button/index.d.ts.map +1 -1
- package/build-types/components/post-sync-status/index.d.ts +1 -1
- package/build-types/components/post-sync-status/index.d.ts.map +1 -1
- package/build-types/components/post-taxonomies/check.d.ts +2 -2
- package/build-types/components/post-taxonomies/check.d.ts.map +1 -1
- package/build-types/components/post-taxonomies/flat-term-selector.d.ts +4 -4
- package/build-types/components/post-taxonomies/flat-term-selector.d.ts.map +1 -1
- package/build-types/components/post-taxonomies/hierarchical-term-selector.d.ts +6 -6
- package/build-types/components/post-taxonomies/hierarchical-term-selector.d.ts.map +1 -1
- package/build-types/components/post-taxonomies/index.d.ts +9 -1
- package/build-types/components/post-taxonomies/index.d.ts.map +1 -1
- package/build-types/components/post-taxonomies/most-used-terms.d.ts.map +1 -1
- package/build-types/components/post-taxonomies/panel.d.ts +1 -1
- package/build-types/components/post-taxonomies/panel.d.ts.map +1 -1
- package/build-types/components/post-template/block-theme.d.ts.map +1 -1
- package/build-types/components/post-template/classic-theme.d.ts +8 -1
- package/build-types/components/post-template/classic-theme.d.ts.map +1 -1
- package/build-types/components/post-template/create-new-template-modal.d.ts.map +1 -1
- package/build-types/components/post-template/create-new-template.d.ts.map +1 -1
- package/build-types/components/post-template/hooks.d.ts +5 -5
- package/build-types/components/post-template/hooks.d.ts.map +1 -1
- package/build-types/components/post-template/panel.d.ts +1 -1
- package/build-types/components/post-template/panel.d.ts.map +1 -1
- package/build-types/components/post-template/reset-default-template.d.ts.map +1 -1
- package/build-types/components/post-template/swap-template-button.d.ts +1 -1
- package/build-types/components/post-template/swap-template-button.d.ts.map +1 -1
- package/build-types/components/post-text-editor/index.d.ts +1 -1
- package/build-types/components/post-text-editor/index.d.ts.map +1 -1
- package/build-types/components/post-title/constants.d.ts +2 -2
- package/build-types/components/post-title/constants.d.ts.map +1 -1
- package/build-types/components/post-title/index.d.ts +9 -1
- package/build-types/components/post-title/index.d.ts.map +1 -1
- package/build-types/components/post-title/post-title-raw.d.ts +1 -1
- package/build-types/components/post-title/use-post-title-focus.d.ts.map +1 -1
- package/build-types/components/post-title/use-post-title.d.ts.map +1 -1
- package/build-types/components/post-transform-panel/hooks.d.ts +1 -1
- package/build-types/components/post-transform-panel/hooks.d.ts.map +1 -1
- package/build-types/components/post-transform-panel/index.d.ts.map +1 -1
- package/build-types/components/post-trash/check.d.ts +2 -2
- package/build-types/components/post-trash/check.d.ts.map +1 -1
- package/build-types/components/post-trash/index.d.ts +1 -1
- package/build-types/components/post-trash/index.d.ts.map +1 -1
- package/build-types/components/post-type-support-check/index.d.ts +3 -3
- package/build-types/components/post-type-support-check/index.d.ts.map +1 -1
- package/build-types/components/post-url/check.d.ts +2 -2
- package/build-types/components/post-url/check.d.ts.map +1 -1
- package/build-types/components/post-url/index.d.ts +1 -1
- package/build-types/components/post-url/index.d.ts.map +1 -1
- package/build-types/components/post-url/label.d.ts +2 -2
- package/build-types/components/post-url/label.d.ts.map +1 -1
- package/build-types/components/post-url/panel.d.ts +1 -1
- package/build-types/components/post-url/panel.d.ts.map +1 -1
- package/build-types/components/post-view-link/index.d.ts.map +1 -1
- package/build-types/components/post-visibility/check.d.ts +1 -1
- package/build-types/components/post-visibility/check.d.ts.map +1 -1
- package/build-types/components/post-visibility/index.d.ts +1 -1
- package/build-types/components/post-visibility/index.d.ts.map +1 -1
- package/build-types/components/post-visibility/label.d.ts +1 -1
- package/build-types/components/post-visibility/label.d.ts.map +1 -1
- package/build-types/components/post-visibility/utils.d.ts +1 -1
- package/build-types/components/post-visibility/utils.d.ts.map +1 -1
- package/build-types/components/posts-per-page/index.d.ts.map +1 -1
- package/build-types/components/preferences-modal/enable-panel.d.ts.map +1 -1
- package/build-types/components/preferences-modal/enable-plugin-document-setting-panel.d.ts +4 -5
- package/build-types/components/preferences-modal/enable-plugin-document-setting-panel.d.ts.map +1 -1
- package/build-types/components/preferences-modal/enable-publish-sidebar.d.ts.map +1 -1
- package/build-types/components/preferences-modal/index.d.ts +3 -0
- package/build-types/components/preferences-modal/index.d.ts.map +1 -1
- package/build-types/components/preview-dropdown/index.d.ts +1 -1
- package/build-types/components/preview-dropdown/index.d.ts.map +1 -1
- package/build-types/components/provider/disable-non-page-content-blocks.d.ts.map +1 -1
- package/build-types/components/provider/index.d.ts +33 -33
- package/build-types/components/provider/index.d.ts.map +1 -1
- package/build-types/components/provider/navigation-block-editing-mode.d.ts.map +1 -1
- package/build-types/components/provider/use-auto-switch-editor-sidebars.d.ts +1 -1
- package/build-types/components/provider/use-auto-switch-editor-sidebars.d.ts.map +1 -1
- package/build-types/components/provider/use-block-editor-settings.d.ts +1 -1
- package/build-types/components/provider/use-block-editor-settings.d.ts.map +1 -1
- package/build-types/components/provider/use-hide-blocks-from-inserter.d.ts +1 -1
- package/build-types/components/provider/use-hide-blocks-from-inserter.d.ts.map +1 -1
- package/build-types/components/provider/use-post-content-block-types.d.ts.map +1 -1
- package/build-types/components/provider/use-revision-blocks.d.ts +1 -1
- package/build-types/components/provider/use-revision-blocks.d.ts.map +1 -1
- package/build-types/components/provider/use-upload-save-lock.d.ts.map +1 -1
- package/build-types/components/provider/with-registry-provider.d.ts +1 -1
- package/build-types/components/provider/with-registry-provider.d.ts.map +1 -1
- package/build-types/components/resizable-editor/index.d.ts +2 -2
- package/build-types/components/resizable-editor/index.d.ts.map +1 -1
- package/build-types/components/resizable-editor/resize-handle.d.ts.map +1 -1
- package/build-types/components/revision-author-panel/index.d.ts.map +1 -1
- package/build-types/components/revision-block-diff/index.d.ts.map +1 -1
- package/build-types/components/revision-created-panel/index.d.ts.map +1 -1
- package/build-types/components/revision-diff-panel/index.d.ts.map +1 -1
- package/build-types/components/revision-fields-diff/index.d.ts.map +1 -1
- package/build-types/components/save-publish-panels/index.d.ts +7 -7
- package/build-types/components/save-publish-panels/index.d.ts.map +1 -1
- package/build-types/components/sidebar/constants.d.ts +4 -4
- package/build-types/components/sidebar/constants.d.ts.map +1 -1
- package/build-types/components/sidebar/dataform-post-summary.d.ts.map +1 -1
- package/build-types/components/sidebar/header.d.ts +1 -1
- package/build-types/components/sidebar/index.d.ts +3 -3
- package/build-types/components/sidebar/index.d.ts.map +1 -1
- package/build-types/components/sidebar/post-revision-summary.d.ts.map +1 -1
- package/build-types/components/sidebar/post-summary.d.ts.map +1 -1
- package/build-types/components/site-discussion/index.d.ts.map +1 -1
- package/build-types/components/start-page-options/index.d.ts +1 -1
- package/build-types/components/start-page-options/index.d.ts.map +1 -1
- package/build-types/components/start-template-options/index.d.ts.map +1 -1
- package/build-types/components/style-book/categories.d.ts +3 -0
- package/build-types/components/style-book/categories.d.ts.map +1 -1
- package/build-types/components/style-book/color-examples.d.ts.map +1 -1
- package/build-types/components/style-book/duotone-examples.d.ts.map +1 -1
- package/build-types/components/style-book/index.d.ts +19 -8
- package/build-types/components/style-book/index.d.ts.map +1 -1
- package/build-types/components/styles-canvas/index.d.ts +2 -2
- package/build-types/components/styles-canvas/index.d.ts.map +1 -1
- package/build-types/components/styles-canvas/revisions.d.ts +1 -1
- package/build-types/components/styles-canvas/style-book.d.ts +1 -1
- package/build-types/components/table-of-contents/index.d.ts +11 -1
- package/build-types/components/table-of-contents/index.d.ts.map +1 -1
- package/build-types/components/table-of-contents/panel.d.ts +1 -1
- package/build-types/components/table-of-contents/panel.d.ts.map +1 -1
- package/build-types/components/template-actions-panel/block-theme-content.d.ts.map +1 -1
- package/build-types/components/template-actions-panel/classic-theme-content.d.ts.map +1 -1
- package/build-types/components/template-actions-panel/index.d.ts.map +1 -1
- package/build-types/components/template-content-panel/index.d.ts.map +1 -1
- package/build-types/components/template-part-content-panel/index.d.ts.map +1 -1
- package/build-types/components/template-part-menu-items/convert-to-regular.d.ts.map +1 -1
- package/build-types/components/template-part-menu-items/convert-to-template-part.d.ts +1 -1
- package/build-types/components/template-part-menu-items/convert-to-template-part.d.ts.map +1 -1
- package/build-types/components/template-part-menu-items/index.d.ts.map +1 -1
- package/build-types/components/template-validation-notice/index.d.ts.map +1 -1
- package/build-types/components/text-editor/index.d.ts.map +1 -1
- package/build-types/components/theme-support-check/index.d.ts +2 -2
- package/build-types/components/theme-support-check/index.d.ts.map +1 -1
- package/build-types/components/time-to-read/index.d.ts +1 -1
- package/build-types/components/time-to-read/index.d.ts.map +1 -1
- package/build-types/components/unsaved-changes-warning/index.d.ts +1 -1
- package/build-types/components/unsaved-changes-warning/index.d.ts.map +1 -1
- package/build-types/components/visual-editor/edit-template-blocks-notification.d.ts +1 -1
- package/build-types/components/visual-editor/edit-template-blocks-notification.d.ts.map +1 -1
- package/build-types/components/visual-editor/index.d.ts +4 -4
- package/build-types/components/visual-editor/index.d.ts.map +1 -1
- package/build-types/components/visual-editor/use-edit-content-only-section-exit.d.ts +1 -1
- package/build-types/components/visual-editor/use-edit-content-only-section-exit.d.ts.map +1 -1
- package/build-types/components/visual-editor/use-padding-appender.d.ts +1 -1
- package/build-types/components/visual-editor/use-padding-appender.d.ts.map +1 -1
- package/build-types/components/visual-editor/use-select-nearest-editable-block.d.ts +1 -1
- package/build-types/components/visual-editor/use-select-nearest-editable-block.d.ts.map +1 -1
- package/build-types/components/visual-editor/use-zoom-out-mode-exit.d.ts +1 -1
- package/build-types/components/visual-editor/use-zoom-out-mode-exit.d.ts.map +1 -1
- package/build-types/components/word-count/index.d.ts +1 -1
- package/build-types/components/word-count/index.d.ts.map +1 -1
- package/build-types/components/zoom-out-toggle/index.d.ts +3 -3
- package/build-types/components/zoom-out-toggle/index.d.ts.map +1 -1
- package/build-types/dataviews/api.d.ts +6 -6
- package/build-types/dataviews/api.d.ts.map +1 -1
- package/build-types/dataviews/fields/content-preview/index.d.ts.map +1 -1
- package/build-types/dataviews/store/private-actions.d.ts +5 -5
- package/build-types/dataviews/store/private-actions.d.ts.map +1 -1
- package/build-types/dataviews/store/reducer.d.ts +2 -2
- package/build-types/dataviews/store/reducer.d.ts.map +1 -1
- package/build-types/hooks/custom-sources-backwards-compatibility.d.ts +3 -9
- package/build-types/hooks/custom-sources-backwards-compatibility.d.ts.map +1 -1
- package/build-types/hooks/index.d.ts +10 -1
- package/build-types/hooks/index.d.ts.map +1 -1
- package/build-types/hooks/pattern-overrides.d.ts +1 -1
- package/build-types/hooks/pattern-overrides.d.ts.map +1 -1
- package/build-types/hooks/use-global-styles-output.d.ts +2 -2
- package/build-types/hooks/use-global-styles-output.d.ts.map +1 -1
- package/build-types/index.d.ts +10 -5
- package/build-types/index.d.ts.map +1 -1
- package/build-types/lock-unlock.d.ts +1 -2
- package/build-types/lock-unlock.d.ts.map +1 -1
- package/build-types/private-apis.d.ts +1 -1
- package/build-types/private-apis.d.ts.map +1 -1
- package/build-types/store/actions.d.ts +330 -116
- package/build-types/store/actions.d.ts.map +1 -1
- package/build-types/store/constants.d.ts.map +1 -1
- package/build-types/store/defaults.d.ts +1 -1
- package/build-types/store/defaults.d.ts.map +1 -1
- package/build-types/store/index.d.ts +77 -9
- package/build-types/store/index.d.ts.map +1 -1
- package/build-types/store/local-autosave.d.ts +3 -3
- package/build-types/store/local-autosave.d.ts.map +1 -1
- package/build-types/store/private-actions.d.ts +106 -46
- package/build-types/store/private-actions.d.ts.map +1 -1
- package/build-types/store/private-selectors.d.ts +96 -68
- package/build-types/store/private-selectors.d.ts.map +1 -1
- package/build-types/store/reducer.d.ts +47 -52
- package/build-types/store/reducer.d.ts.map +1 -1
- package/build-types/store/selectors.d.ts +422 -429
- package/build-types/store/selectors.d.ts.map +1 -1
- package/build-types/store/utils/is-template-revertable.d.ts.map +1 -1
- package/build-types/store/utils/notice-builder.d.ts +3 -3
- package/build-types/store/utils/notice-builder.d.ts.map +1 -1
- package/build-types/utils/get-item-title.d.ts +1 -1
- package/build-types/utils/get-item-title.d.ts.map +1 -1
- package/build-types/utils/get-template-info.d.ts +11 -4
- package/build-types/utils/get-template-info.d.ts.map +1 -1
- package/build-types/utils/get-template-part-icon.d.ts +1 -1
- package/build-types/utils/get-template-part-icon.d.ts.map +1 -1
- package/build-types/utils/index.d.ts +6 -3
- package/build-types/utils/index.d.ts.map +1 -1
- package/build-types/utils/media-finalize/index.d.ts.map +1 -1
- package/build-types/utils/media-sideload/index.d.ts +1 -1
- package/build-types/utils/media-sideload/index.d.ts.map +1 -1
- package/build-types/utils/media-upload/index.d.ts +1 -1
- package/build-types/utils/media-upload/index.d.ts.map +1 -1
- package/build-types/utils/media-upload/on-success.d.ts.map +1 -1
- package/build-types/utils/pageTypeBadge.d.ts.map +1 -1
- package/build-types/utils/search-templates.d.ts +1 -1
- package/build-types/utils/search-templates.d.ts.map +1 -1
- package/build-types/utils/set-nested-value.d.ts.map +1 -1
- package/build-types/utils/terms.d.ts +19 -4
- package/build-types/utils/terms.d.ts.map +1 -1
- package/build-types/utils/url.d.ts +1 -1
- package/build-types/utils/url.d.ts.map +1 -1
- package/package.json +48 -48
- package/src/components/block-visibility/style.scss +2 -2
- package/src/components/collab-sidebar/index.js +48 -36
- package/src/components/collab-sidebar/note-thread.js +28 -10
- package/src/components/collab-sidebar/notes.js +9 -6
- package/src/components/collab-sidebar/style.scss +4 -0
- package/src/components/collab-sidebar/utils.js +41 -14
- package/src/components/collaborators-presence/index.tsx +0 -2
- package/src/components/collaborators-presence/list.tsx +0 -2
- package/src/components/post-last-revision/index.js +5 -0
- package/src/components/post-publish-panel/index.js +149 -156
- package/src/components/post-publish-panel/test/__snapshots__/index.js.snap +11 -26
- package/src/components/post-publish-panel/test/index.js +41 -23
- package/src/components/post-revisions-preview/block-diff.js +165 -41
- package/src/components/post-revisions-preview/diff-markers.js +12 -9
- package/src/components/post-revisions-preview/revisions-slider.js +130 -71
- package/src/components/post-revisions-preview/style.scss +3 -3
- package/src/components/post-revisions-preview/test/block-diff.js +133 -4
- package/src/components/post-template/style.scss +1 -1
- package/src/components/start-page-options/style.scss +2 -2
- package/src/components/start-template-options/style.scss +2 -2
- package/src/store/private-actions.js +34 -0
- package/src/store/private-selectors.js +127 -51
- package/src/store/reducer.js +21 -0
- package/src/store/selectors.js +6 -0
- package/src/store/test/private-selectors.js +107 -1
- package/src/style.scss +2 -0
package/build-style/style.css
CHANGED
|
@@ -1122,6 +1122,7 @@ button.font-library__upload-area {
|
|
|
1122
1122
|
|
|
1123
1123
|
.global-styles-ui-header {
|
|
1124
1124
|
margin-bottom: 0 !important;
|
|
1125
|
+
line-height: 1.9 !important;
|
|
1125
1126
|
}
|
|
1126
1127
|
|
|
1127
1128
|
.global-styles-ui-subtitle {
|
|
@@ -4628,6 +4629,15 @@ fieldset.fields__media-edit .fields__media-edit-expanded:not(.is-empty) .fields_
|
|
|
4628
4629
|
inset: 22px;
|
|
4629
4630
|
}
|
|
4630
4631
|
|
|
4632
|
+
.wp-media-editor-image-editor__canvas:focus {
|
|
4633
|
+
outline: none;
|
|
4634
|
+
}
|
|
4635
|
+
|
|
4636
|
+
.wp-media-editor-image-editor__stage {
|
|
4637
|
+
position: absolute;
|
|
4638
|
+
inset: 0;
|
|
4639
|
+
}
|
|
4640
|
+
|
|
4631
4641
|
.wp-media-editor-image-editor--dragging {
|
|
4632
4642
|
cursor: grabbing;
|
|
4633
4643
|
}
|
|
@@ -4676,6 +4686,11 @@ fieldset.fields__media-edit .fields__media-edit-expanded:not(.is-empty) .fields_
|
|
|
4676
4686
|
transition-delay: 0s;
|
|
4677
4687
|
}
|
|
4678
4688
|
|
|
4689
|
+
.wp-media-editor-image-editor__canvas--settling .wp-media-editor-image-editor__grid {
|
|
4690
|
+
opacity: 0;
|
|
4691
|
+
transition: none;
|
|
4692
|
+
}
|
|
4693
|
+
|
|
4679
4694
|
.wp-media-editor-image-editor__grid-line {
|
|
4680
4695
|
position: absolute;
|
|
4681
4696
|
background: rgba(255, 255, 255, 0.4);
|
|
@@ -4698,6 +4713,12 @@ fieldset.fields__media-edit .fields__media-edit-expanded:not(.is-empty) .fields_
|
|
|
4698
4713
|
border: 1px solid rgba(255, 255, 255, 0.7);
|
|
4699
4714
|
box-sizing: border-box;
|
|
4700
4715
|
pointer-events: none;
|
|
4716
|
+
transition: border-color 0.15s ease, box-shadow 0.15s ease;
|
|
4717
|
+
}
|
|
4718
|
+
|
|
4719
|
+
.wp-media-editor-image-editor__canvas--focus-visible .wp-media-editor-image-editor__stencil-rect {
|
|
4720
|
+
border-color: var(--wp-image-editor-focus-color, var(--wp-admin-theme-color, #007cba));
|
|
4721
|
+
box-shadow: 0 0 0 1px var(--wp-image-editor-focus-color, var(--wp-admin-theme-color, #007cba));
|
|
4701
4722
|
}
|
|
4702
4723
|
|
|
4703
4724
|
.wp-media-editor-image-editor__handle {
|
|
@@ -4837,24 +4858,22 @@ fieldset.fields__media-edit .fields__media-edit-expanded:not(.is-empty) .fields_
|
|
|
4837
4858
|
* Creates a checkerboard pattern background to indicate transparency.
|
|
4838
4859
|
* @param {String} $size - The size of the squares in the checkerboard pattern. Default is 12px.
|
|
4839
4860
|
*/
|
|
4840
|
-
.media-editor
|
|
4841
|
-
padding: 0;
|
|
4842
|
-
margin-bottom: 0;
|
|
4843
|
-
}
|
|
4844
|
-
|
|
4845
|
-
.media-editor-modal {
|
|
4861
|
+
.media-editor {
|
|
4846
4862
|
display: flex;
|
|
4863
|
+
flex: 1;
|
|
4847
4864
|
flex-direction: column;
|
|
4865
|
+
height: 100%;
|
|
4866
|
+
min-height: 0;
|
|
4848
4867
|
}
|
|
4849
4868
|
|
|
4850
|
-
.media-editor
|
|
4869
|
+
.media-editor .media-editor__loading {
|
|
4851
4870
|
height: 100%;
|
|
4852
4871
|
display: flex;
|
|
4853
4872
|
align-items: center;
|
|
4854
4873
|
justify-content: center;
|
|
4855
4874
|
}
|
|
4856
4875
|
|
|
4857
|
-
.media-editor
|
|
4876
|
+
.media-editor .interface-interface-skeleton {
|
|
4858
4877
|
position: relative;
|
|
4859
4878
|
top: auto;
|
|
4860
4879
|
right: auto;
|
|
@@ -4866,21 +4885,21 @@ fieldset.fields__media-edit .fields__media-edit-expanded:not(.is-empty) .fields_
|
|
|
4866
4885
|
flex-direction: column;
|
|
4867
4886
|
}
|
|
4868
4887
|
|
|
4869
|
-
.media-editor
|
|
4888
|
+
.media-editor .interface-interface-skeleton__editor {
|
|
4870
4889
|
min-width: 0;
|
|
4871
4890
|
flex: 1;
|
|
4872
4891
|
}
|
|
4873
4892
|
|
|
4874
|
-
.media-editor
|
|
4893
|
+
.media-editor .interface-interface-skeleton__footer {
|
|
4875
4894
|
position: relative;
|
|
4876
4895
|
display: flex;
|
|
4877
4896
|
}
|
|
4878
4897
|
|
|
4879
|
-
.media-editor
|
|
4898
|
+
.media-editor .interface-interface-skeleton.has-footer .interface-interface-skeleton__body {
|
|
4880
4899
|
padding-bottom: 0;
|
|
4881
4900
|
}
|
|
4882
4901
|
|
|
4883
|
-
.media-editor
|
|
4902
|
+
.media-editor .media-editor__canvas {
|
|
4884
4903
|
display: flex;
|
|
4885
4904
|
align-items: center;
|
|
4886
4905
|
justify-content: center;
|
|
@@ -4889,45 +4908,81 @@ fieldset.fields__media-edit .fields__media-edit-expanded:not(.is-empty) .fields_
|
|
|
4889
4908
|
height: 100%;
|
|
4890
4909
|
}
|
|
4891
4910
|
|
|
4892
|
-
.media-editor
|
|
4911
|
+
.media-editor .media-editor__canvas .media-editor-preview {
|
|
4893
4912
|
height: 100%;
|
|
4894
4913
|
}
|
|
4895
4914
|
|
|
4896
|
-
.media-editor
|
|
4897
|
-
.media-editor
|
|
4915
|
+
.media-editor .media-editor__canvas img,
|
|
4916
|
+
.media-editor .media-editor__canvas video {
|
|
4898
4917
|
max-width: 100%;
|
|
4899
4918
|
max-height: 100%;
|
|
4900
4919
|
object-fit: contain;
|
|
4901
4920
|
}
|
|
4902
4921
|
|
|
4903
|
-
.media-editor
|
|
4922
|
+
.media-editor .media-editor__sidebar {
|
|
4904
4923
|
box-sizing: border-box;
|
|
4905
4924
|
}
|
|
4906
4925
|
|
|
4907
|
-
.media-editor
|
|
4908
|
-
.media-editor
|
|
4909
|
-
.media-editor
|
|
4926
|
+
.media-editor .media-editor__sidebar *,
|
|
4927
|
+
.media-editor .media-editor__sidebar *::before,
|
|
4928
|
+
.media-editor .media-editor__sidebar *::after {
|
|
4910
4929
|
box-sizing: inherit;
|
|
4911
4930
|
}
|
|
4912
4931
|
|
|
4913
|
-
.media-editor
|
|
4932
|
+
.media-editor .media-editor__panel {
|
|
4914
4933
|
padding: 16px;
|
|
4915
4934
|
}
|
|
4916
4935
|
|
|
4917
|
-
.media-editor
|
|
4936
|
+
.media-editor .components-panel__header.media-editor__sidebar-header {
|
|
4918
4937
|
padding-left: 0;
|
|
4919
4938
|
padding-right: 8px;
|
|
4920
4939
|
}
|
|
4921
4940
|
|
|
4922
|
-
.media-editor
|
|
4941
|
+
.media-editor .components-panel__header.media-editor__sidebar-header .components-button.has-icon {
|
|
4923
4942
|
padding: 0;
|
|
4924
4943
|
}
|
|
4925
4944
|
|
|
4926
4945
|
@media (min-width: 782px) {
|
|
4927
|
-
.media-editor
|
|
4946
|
+
.media-editor .components-panel__header.media-editor__sidebar-header .components-button.has-icon {
|
|
4928
4947
|
display: flex;
|
|
4929
4948
|
}
|
|
4930
4949
|
}
|
|
4950
|
+
.media-editor__snackbar {
|
|
4951
|
+
position: fixed;
|
|
4952
|
+
bottom: 24px;
|
|
4953
|
+
left: 0;
|
|
4954
|
+
right: 0;
|
|
4955
|
+
padding-inline: 16px;
|
|
4956
|
+
box-sizing: border-box;
|
|
4957
|
+
display: flex;
|
|
4958
|
+
flex-direction: column;
|
|
4959
|
+
pointer-events: none;
|
|
4960
|
+
}
|
|
4961
|
+
|
|
4962
|
+
.media-editor__snackbar .components-snackbar {
|
|
4963
|
+
margin-inline: auto;
|
|
4964
|
+
}
|
|
4965
|
+
|
|
4966
|
+
.media-editor-modal.components-modal__frame .components-modal__content {
|
|
4967
|
+
padding: 0;
|
|
4968
|
+
margin-bottom: 0;
|
|
4969
|
+
display: flex;
|
|
4970
|
+
flex-direction: column;
|
|
4971
|
+
min-height: 0;
|
|
4972
|
+
}
|
|
4973
|
+
|
|
4974
|
+
.media-editor-modal.components-modal__frame .components-modal__children-container {
|
|
4975
|
+
display: flex;
|
|
4976
|
+
flex: 1;
|
|
4977
|
+
flex-direction: column;
|
|
4978
|
+
min-height: 0;
|
|
4979
|
+
}
|
|
4980
|
+
|
|
4981
|
+
.media-editor-modal {
|
|
4982
|
+
display: flex;
|
|
4983
|
+
flex-direction: column;
|
|
4984
|
+
}
|
|
4985
|
+
|
|
4931
4986
|
.media-editor-modal__snackbar {
|
|
4932
4987
|
position: fixed;
|
|
4933
4988
|
bottom: 24px;
|
|
@@ -4959,14 +5014,201 @@ fieldset.fields__media-edit .fields__media-edit-expanded:not(.is-empty) .fields_
|
|
|
4959
5014
|
padding: 8px 16px;
|
|
4960
5015
|
}
|
|
4961
5016
|
|
|
4962
|
-
.media-editor-
|
|
4963
|
-
flex: 1 1
|
|
4964
|
-
|
|
5017
|
+
.media-editor-toolbar__rotation-slider {
|
|
5018
|
+
flex: 1 1 280px;
|
|
5019
|
+
min-width: 0;
|
|
5020
|
+
max-width: 360px;
|
|
4965
5021
|
}
|
|
4966
5022
|
|
|
4967
|
-
|
|
4968
|
-
|
|
4969
|
-
|
|
5023
|
+
.media-editor-toolbar__action-cluster {
|
|
5024
|
+
display: flex;
|
|
5025
|
+
flex-wrap: nowrap;
|
|
5026
|
+
align-items: center;
|
|
5027
|
+
gap: 8px;
|
|
5028
|
+
}
|
|
5029
|
+
|
|
5030
|
+
@media (min-width: 782px) {
|
|
5031
|
+
.media-editor-toolbar__action-cluster {
|
|
5032
|
+
border-left: 1px solid #ddd;
|
|
5033
|
+
padding-left: 12px;
|
|
5034
|
+
}
|
|
5035
|
+
}
|
|
5036
|
+
@media (max-width: 781px) {
|
|
5037
|
+
.media-editor-toolbar__rotation-slider {
|
|
5038
|
+
flex-basis: 100%;
|
|
5039
|
+
max-width: none;
|
|
5040
|
+
}
|
|
5041
|
+
.media-editor-toolbar__action-cluster {
|
|
5042
|
+
flex-basis: 100%;
|
|
5043
|
+
justify-content: center;
|
|
5044
|
+
}
|
|
5045
|
+
}
|
|
5046
|
+
.media-editor-keyboard-shortcuts-modal {
|
|
5047
|
+
min-width: 280px;
|
|
5048
|
+
}
|
|
5049
|
+
|
|
5050
|
+
.media-editor-keyboard-shortcuts-modal .media-editor-keyboard-shortcuts-modal__note {
|
|
5051
|
+
margin: 0 0 16px;
|
|
5052
|
+
color: #757575;
|
|
5053
|
+
font-size: 13px;
|
|
5054
|
+
}
|
|
5055
|
+
|
|
5056
|
+
.media-editor-keyboard-shortcuts-modal .media-editor-keyboard-shortcuts-modal__shortcut-list {
|
|
5057
|
+
list-style: none;
|
|
5058
|
+
margin: 0;
|
|
5059
|
+
padding: 0;
|
|
5060
|
+
}
|
|
5061
|
+
|
|
5062
|
+
.media-editor-keyboard-shortcuts-modal .media-editor-keyboard-shortcuts-modal__shortcut {
|
|
5063
|
+
display: flex;
|
|
5064
|
+
align-items: baseline;
|
|
5065
|
+
padding: 0.6rem 0;
|
|
5066
|
+
border-top: 1px solid #ddd;
|
|
5067
|
+
margin-bottom: 0;
|
|
5068
|
+
}
|
|
5069
|
+
|
|
5070
|
+
.media-editor-keyboard-shortcuts-modal .media-editor-keyboard-shortcuts-modal__shortcut:last-child {
|
|
5071
|
+
border-bottom: 1px solid #ddd;
|
|
5072
|
+
}
|
|
5073
|
+
|
|
5074
|
+
.media-editor-keyboard-shortcuts-modal .media-editor-keyboard-shortcuts-modal__shortcut-description {
|
|
5075
|
+
flex: 1;
|
|
5076
|
+
margin: 0;
|
|
5077
|
+
}
|
|
5078
|
+
|
|
5079
|
+
.media-editor-keyboard-shortcuts-modal .media-editor-keyboard-shortcuts-modal__shortcut-term {
|
|
5080
|
+
background: none;
|
|
5081
|
+
font-weight: 600;
|
|
5082
|
+
margin: 0 0 0 1rem;
|
|
5083
|
+
padding: 0;
|
|
5084
|
+
text-align: right;
|
|
5085
|
+
}
|
|
5086
|
+
|
|
5087
|
+
.media-editor-keyboard-shortcuts-modal .media-editor-keyboard-shortcuts-modal__shortcut-key {
|
|
5088
|
+
padding: 0.25rem 0.5rem;
|
|
5089
|
+
border-radius: 8%;
|
|
5090
|
+
margin: 0 0.2rem 0 0.2rem;
|
|
5091
|
+
}
|
|
5092
|
+
|
|
5093
|
+
.media-editor-keyboard-shortcuts-modal .media-editor-keyboard-shortcuts-modal__shortcut-key:last-child {
|
|
5094
|
+
margin: 0 0 0 0.2rem;
|
|
5095
|
+
}
|
|
5096
|
+
|
|
5097
|
+
.rotation-ruler {
|
|
5098
|
+
position: relative;
|
|
5099
|
+
min-width: 180px;
|
|
5100
|
+
height: 32px;
|
|
5101
|
+
padding: 0 8px;
|
|
5102
|
+
box-sizing: border-box;
|
|
5103
|
+
color: #1e1e1e;
|
|
5104
|
+
font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen-Sans, Ubuntu, Cantarell, "Helvetica Neue", sans-serif;
|
|
5105
|
+
-webkit-user-select: none;
|
|
5106
|
+
user-select: none;
|
|
5107
|
+
touch-action: none;
|
|
5108
|
+
cursor: ew-resize;
|
|
5109
|
+
container-type: inline-size;
|
|
5110
|
+
}
|
|
5111
|
+
|
|
5112
|
+
.rotation-ruler[data-disabled] {
|
|
5113
|
+
opacity: 0.5;
|
|
5114
|
+
pointer-events: none;
|
|
5115
|
+
cursor: default;
|
|
5116
|
+
}
|
|
5117
|
+
|
|
5118
|
+
.rotation-ruler:has(.rotation-ruler__input:focus-visible) {
|
|
5119
|
+
outline: 2px solid var(--wp-admin-theme-color, #3858e9);
|
|
5120
|
+
outline-offset: 2px;
|
|
5121
|
+
border-radius: 4px;
|
|
5122
|
+
}
|
|
5123
|
+
|
|
5124
|
+
.rotation-ruler__input {
|
|
5125
|
+
position: absolute;
|
|
5126
|
+
width: 1px;
|
|
5127
|
+
height: 1px;
|
|
5128
|
+
margin: -1px;
|
|
5129
|
+
padding: 0;
|
|
5130
|
+
border: 0;
|
|
5131
|
+
clip: rect(0 0 0 0);
|
|
5132
|
+
overflow: hidden;
|
|
5133
|
+
white-space: nowrap;
|
|
5134
|
+
}
|
|
5135
|
+
|
|
5136
|
+
.rotation-ruler__pointer {
|
|
5137
|
+
position: absolute;
|
|
5138
|
+
bottom: 0;
|
|
5139
|
+
left: 50%;
|
|
5140
|
+
width: 0;
|
|
5141
|
+
height: 0;
|
|
5142
|
+
border-left: 6px solid transparent;
|
|
5143
|
+
border-right: 6px solid transparent;
|
|
5144
|
+
border-bottom: 9px solid var(--wp-admin-theme-color, #3858e9);
|
|
5145
|
+
transform: translateX(-50%);
|
|
5146
|
+
pointer-events: none;
|
|
5147
|
+
}
|
|
5148
|
+
|
|
5149
|
+
.rotation-ruler__strip {
|
|
5150
|
+
position: absolute;
|
|
5151
|
+
inset: 0;
|
|
5152
|
+
overflow: hidden;
|
|
5153
|
+
mask-image: linear-gradient(to right, transparent 0, #000 8px, #000 calc(100% - 8px), transparent 100%);
|
|
5154
|
+
-webkit-mask-image: linear-gradient(to right, transparent 0, #000 8px, #000 calc(100% - 8px), transparent 100%);
|
|
5155
|
+
}
|
|
5156
|
+
|
|
5157
|
+
.rotation-ruler__ticks {
|
|
5158
|
+
position: absolute;
|
|
5159
|
+
left: 50%;
|
|
5160
|
+
top: 0;
|
|
5161
|
+
display: block;
|
|
5162
|
+
overflow: visible;
|
|
5163
|
+
}
|
|
5164
|
+
|
|
5165
|
+
.rotation-ruler__tick {
|
|
5166
|
+
stroke: currentColor;
|
|
5167
|
+
stroke-width: 1;
|
|
5168
|
+
}
|
|
5169
|
+
|
|
5170
|
+
.rotation-ruler__tick--minor {
|
|
5171
|
+
opacity: 0.35;
|
|
5172
|
+
}
|
|
5173
|
+
|
|
5174
|
+
.rotation-ruler__tick--mid {
|
|
5175
|
+
opacity: 0.6;
|
|
5176
|
+
}
|
|
5177
|
+
|
|
5178
|
+
.rotation-ruler__tick--major {
|
|
5179
|
+
opacity: 1;
|
|
5180
|
+
}
|
|
5181
|
+
|
|
5182
|
+
.rotation-ruler__label {
|
|
5183
|
+
fill: currentColor;
|
|
5184
|
+
font-size: 10px;
|
|
5185
|
+
font-weight: 400;
|
|
5186
|
+
opacity: 0.45;
|
|
5187
|
+
}
|
|
5188
|
+
|
|
5189
|
+
.rotation-ruler__active-label {
|
|
5190
|
+
position: absolute;
|
|
5191
|
+
top: 0;
|
|
5192
|
+
left: 50%;
|
|
5193
|
+
height: 14px;
|
|
5194
|
+
transform: translateX(-50%);
|
|
5195
|
+
padding: 0 12px;
|
|
5196
|
+
font-size: 12px;
|
|
5197
|
+
font-weight: 600;
|
|
5198
|
+
line-height: 14px;
|
|
5199
|
+
color: #1e1e1e;
|
|
5200
|
+
background: linear-gradient(to right, transparent 0, #fff 12px, #fff calc(100% - 12px), transparent 100%);
|
|
5201
|
+
pointer-events: none;
|
|
5202
|
+
}
|
|
5203
|
+
|
|
5204
|
+
@container (max-width: 220px) {
|
|
5205
|
+
.rotation-ruler__tick--minor {
|
|
5206
|
+
opacity: 0;
|
|
5207
|
+
}
|
|
5208
|
+
}
|
|
5209
|
+
@media (prefers-reduced-motion: reduce) {
|
|
5210
|
+
.rotation-ruler__ticks {
|
|
5211
|
+
transition: none;
|
|
4970
5212
|
}
|
|
4971
5213
|
}
|
|
4972
5214
|
.editor-autocompleters__link {
|
|
@@ -5054,6 +5296,8 @@ fieldset.fields__media-edit .fields__media-edit-expanded:not(.is-empty) .fields_
|
|
|
5054
5296
|
margin-top: 16px;
|
|
5055
5297
|
transform: translateY(var(--canvas-scroll, 0));
|
|
5056
5298
|
will-change: transform;
|
|
5299
|
+
max-height: calc(100dvh - var(--wp-admin--admin-bar--height, 0px) - 128px);
|
|
5300
|
+
overflow-y: auto;
|
|
5057
5301
|
}
|
|
5058
5302
|
|
|
5059
5303
|
.editor-collab-sidebar-panel__user-name {
|
|
@@ -5410,6 +5654,127 @@ fieldset.fields__media-edit .fields__media-edit-expanded:not(.is-empty) .fields_
|
|
|
5410
5654
|
white-space: nowrap;
|
|
5411
5655
|
}
|
|
5412
5656
|
|
|
5657
|
+
.editor-collaborators-presence__list.components-popover .components-popover__content {
|
|
5658
|
+
border: 1px solid #ddd;
|
|
5659
|
+
border-width: 1px 0 0 1px;
|
|
5660
|
+
border-radius: 8px;
|
|
5661
|
+
background: #fff;
|
|
5662
|
+
box-shadow: 0 1px 2px rgba(0, 0, 0, 0.05), 0 2px 3px rgba(0, 0, 0, 0.04), 0 6px 6px rgba(0, 0, 0, 0.03), 0 8px 8px rgba(0, 0, 0, 0.02);
|
|
5663
|
+
}
|
|
5664
|
+
.editor-collaborators-presence__list.components-popover .editor-collaborators-presence__list-content {
|
|
5665
|
+
min-width: 280px;
|
|
5666
|
+
}
|
|
5667
|
+
.editor-collaborators-presence__list.components-popover .editor-collaborators-presence__list-header {
|
|
5668
|
+
display: flex;
|
|
5669
|
+
justify-content: space-between;
|
|
5670
|
+
align-items: center;
|
|
5671
|
+
padding: 8px 16px;
|
|
5672
|
+
}
|
|
5673
|
+
.editor-collaborators-presence__list.components-popover .editor-collaborators-presence__list-header-title {
|
|
5674
|
+
font-size: 13px;
|
|
5675
|
+
font-weight: 499;
|
|
5676
|
+
line-height: 20px;
|
|
5677
|
+
display: flex;
|
|
5678
|
+
gap: 4px;
|
|
5679
|
+
}
|
|
5680
|
+
.editor-collaborators-presence__list.components-popover .editor-collaborators-presence__list-header-title span {
|
|
5681
|
+
color: #757575;
|
|
5682
|
+
}
|
|
5683
|
+
.editor-collaborators-presence__list.components-popover .editor-collaborators-presence__list-header-action {
|
|
5684
|
+
padding: 0;
|
|
5685
|
+
}
|
|
5686
|
+
.editor-collaborators-presence__list.components-popover .editor-collaborators-presence__list-header-action button {
|
|
5687
|
+
color: #1e1e1e;
|
|
5688
|
+
height: 32px;
|
|
5689
|
+
width: 32px;
|
|
5690
|
+
padding: 0;
|
|
5691
|
+
}
|
|
5692
|
+
.editor-collaborators-presence__list.components-popover .editor-collaborators-presence__list-items {
|
|
5693
|
+
display: flex;
|
|
5694
|
+
flex-direction: column;
|
|
5695
|
+
padding-bottom: 16px;
|
|
5696
|
+
}
|
|
5697
|
+
.editor-collaborators-presence__list.components-popover .editor-collaborators-presence__list-item {
|
|
5698
|
+
all: unset;
|
|
5699
|
+
box-sizing: border-box;
|
|
5700
|
+
display: flex;
|
|
5701
|
+
align-items: center;
|
|
5702
|
+
padding: 12px 16px;
|
|
5703
|
+
gap: 8px;
|
|
5704
|
+
width: 100%;
|
|
5705
|
+
cursor: var(--wpds-cursor-control, pointer);
|
|
5706
|
+
transition: background-color 0.2s ease;
|
|
5707
|
+
}
|
|
5708
|
+
.editor-collaborators-presence__list.components-popover .editor-collaborators-presence__list-item:hover:not(:disabled) {
|
|
5709
|
+
background-color: rgba(var(--wp-admin-theme-color--rgb), 0.04);
|
|
5710
|
+
}
|
|
5711
|
+
.editor-collaborators-presence__list.components-popover .editor-collaborators-presence__list-item:active:not(:disabled) {
|
|
5712
|
+
background-color: rgba(var(--wp-admin-theme-color--rgb), 0.08);
|
|
5713
|
+
}
|
|
5714
|
+
.editor-collaborators-presence__list.components-popover .editor-collaborators-presence__list-item:focus-visible {
|
|
5715
|
+
outline: 2px solid var(--wp-admin-theme-color, #3858e9);
|
|
5716
|
+
outline-offset: -2px;
|
|
5717
|
+
}
|
|
5718
|
+
.editor-collaborators-presence__list.components-popover .editor-collaborators-presence__list-item:disabled {
|
|
5719
|
+
cursor: default;
|
|
5720
|
+
}
|
|
5721
|
+
.editor-collaborators-presence__list.components-popover .editor-collaborators-presence__list-item-info {
|
|
5722
|
+
display: flex;
|
|
5723
|
+
flex-direction: column;
|
|
5724
|
+
flex: 1;
|
|
5725
|
+
min-width: 0;
|
|
5726
|
+
}
|
|
5727
|
+
.editor-collaborators-presence__list.components-popover .editor-collaborators-presence__list-item-name {
|
|
5728
|
+
font-size: 13px;
|
|
5729
|
+
font-weight: 499;
|
|
5730
|
+
line-height: 20px;
|
|
5731
|
+
color: #1e1e1e;
|
|
5732
|
+
overflow: hidden;
|
|
5733
|
+
text-overflow: ellipsis;
|
|
5734
|
+
white-space: nowrap;
|
|
5735
|
+
}
|
|
5736
|
+
|
|
5737
|
+
.editor-collaborators-presence {
|
|
5738
|
+
display: flex;
|
|
5739
|
+
align-items: center;
|
|
5740
|
+
flex-shrink: 0;
|
|
5741
|
+
height: 32px;
|
|
5742
|
+
background: #f0f0f0;
|
|
5743
|
+
border-radius: 4px;
|
|
5744
|
+
margin-right: 8px;
|
|
5745
|
+
}
|
|
5746
|
+
.editor-collaborators-presence:hover {
|
|
5747
|
+
background-color: #e0e0e0;
|
|
5748
|
+
}
|
|
5749
|
+
.editor-collaborators-presence:has(.is-pressed) {
|
|
5750
|
+
background-color: #e0e0e0;
|
|
5751
|
+
}
|
|
5752
|
+
|
|
5753
|
+
.editor-collaborators-presence__button.editor-collaborators-presence__button.components-button {
|
|
5754
|
+
display: flex;
|
|
5755
|
+
align-items: center;
|
|
5756
|
+
cursor: var(--wpds-cursor-control, pointer);
|
|
5757
|
+
position: relative;
|
|
5758
|
+
padding: 4px;
|
|
5759
|
+
border-radius: 4px;
|
|
5760
|
+
height: 100%;
|
|
5761
|
+
box-sizing: border-box;
|
|
5762
|
+
color: #2f2f2f;
|
|
5763
|
+
background: transparent;
|
|
5764
|
+
}
|
|
5765
|
+
.editor-collaborators-presence__button.editor-collaborators-presence__button.components-button:hover {
|
|
5766
|
+
background: transparent;
|
|
5767
|
+
color: #2f2f2f;
|
|
5768
|
+
}
|
|
5769
|
+
.editor-collaborators-presence__button.editor-collaborators-presence__button.components-button.is-pressed, .editor-collaborators-presence__button.editor-collaborators-presence__button.components-button.is-pressed:hover {
|
|
5770
|
+
background: transparent;
|
|
5771
|
+
color: #2f2f2f;
|
|
5772
|
+
}
|
|
5773
|
+
.editor-collaborators-presence__button.editor-collaborators-presence__button.components-button:focus:not(:active) {
|
|
5774
|
+
box-shadow: inset 0 0 0 var(--wp-admin-border-width-focus, 2px) var(--wp-admin-theme-color, #007cba);
|
|
5775
|
+
outline: none;
|
|
5776
|
+
}
|
|
5777
|
+
|
|
5413
5778
|
.editor-collapsible-block-toolbar {
|
|
5414
5779
|
overflow: hidden;
|
|
5415
5780
|
display: flex;
|
|
@@ -5478,7 +5843,7 @@ fieldset.fields__media-edit .fields__media-edit-expanded:not(.is-empty) .fields_
|
|
|
5478
5843
|
text-align: center;
|
|
5479
5844
|
position: sticky;
|
|
5480
5845
|
top: -5px;
|
|
5481
|
-
z-index:
|
|
5846
|
+
z-index: 1;
|
|
5482
5847
|
}
|
|
5483
5848
|
.editor-block-visibility__disabled-blocks-count ~ .block-editor-block-manager__content .block-editor-block-manager__category-title {
|
|
5484
5849
|
top: 31px;
|
|
@@ -6950,7 +7315,7 @@ fieldset.fields__media-edit .fields__media-edit-expanded:not(.is-empty) .fields_
|
|
|
6950
7315
|
.revision-diff-markers {
|
|
6951
7316
|
position: relative;
|
|
6952
7317
|
flex-shrink: 0;
|
|
6953
|
-
width:
|
|
7318
|
+
width: 24px;
|
|
6954
7319
|
background: rgba(0, 0, 0, 0.05);
|
|
6955
7320
|
}
|
|
6956
7321
|
.revision-diff-markers .revision-diff-marker {
|
|
@@ -6966,10 +7331,10 @@ fieldset.fields__media-edit .fields__media-edit-expanded:not(.is-empty) .fields_
|
|
|
6966
7331
|
background: #00a32a;
|
|
6967
7332
|
}
|
|
6968
7333
|
.revision-diff-markers .revision-diff-marker.is-removed {
|
|
6969
|
-
background: #d63638;
|
|
7334
|
+
background: repeating-linear-gradient(45deg, #d63638, #d63638 3px, rgba(214, 54, 56, 0.45) 3px, rgba(214, 54, 56, 0.45) 6px);
|
|
6970
7335
|
}
|
|
6971
7336
|
.revision-diff-markers .revision-diff-marker.is-modified {
|
|
6972
|
-
background: #dba617;
|
|
7337
|
+
background: repeating-linear-gradient(-45deg, #dba617, #dba617 3px, rgba(219, 166, 23, 0.45) 3px, rgba(219, 166, 23, 0.45) 6px);
|
|
6973
7338
|
}
|
|
6974
7339
|
.revision-diff-markers .revision-diff-marker:hover {
|
|
6975
7340
|
opacity: 0.7;
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"api.d.ts","sourceRoot":"","sources":["../../src/bindings/api.js"],"names":[],"mappings":"AAaA;;;;;;;;;GASG;AACH,
|
|
1
|
+
{"version":3,"file":"api.d.ts","sourceRoot":"","sources":["../../src/bindings/api.js"],"names":[],"mappings":"AAaA;;;;;;;;;GASG;AACH,wBAAgB,gCAAgC,SAK/C"}
|
|
@@ -1,16 +1,19 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* @type {WPBlockBindingsSource}
|
|
3
|
+
*/
|
|
1
4
|
declare const _default: {
|
|
2
5
|
name: string;
|
|
3
6
|
getValues({ select, clientId, context, bindings }: {
|
|
4
|
-
|
|
7
|
+
bindings: any;
|
|
5
8
|
clientId: any;
|
|
6
9
|
context: any;
|
|
7
|
-
|
|
10
|
+
select: any;
|
|
8
11
|
}): {};
|
|
9
12
|
setValues({ select, dispatch, clientId, bindings }: {
|
|
10
|
-
select: any;
|
|
11
|
-
dispatch: any;
|
|
12
|
-
clientId: any;
|
|
13
13
|
bindings: any;
|
|
14
|
+
clientId: any;
|
|
15
|
+
dispatch: any;
|
|
16
|
+
select: any;
|
|
14
17
|
}): void;
|
|
15
18
|
canUserEditValue: () => boolean;
|
|
16
19
|
};
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"pattern-overrides.d.ts","sourceRoot":"","sources":["../../src/bindings/pattern-overrides.js"],"names":[],"mappings":""}
|
|
1
|
+
{"version":3,"file":"pattern-overrides.d.ts","sourceRoot":"","sources":["../../src/bindings/pattern-overrides.js"],"names":[],"mappings":"AAOA;;GAEG;;IAEF,IAAI;IACJ,SAAS;;;;;;IAyBT,SAAS;;;;;;IAgET,gBAAgB"}
|
|
@@ -1,21 +1,24 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* @type {WPBlockBindingsSource}
|
|
3
|
+
*/
|
|
1
4
|
declare const _default: {
|
|
2
5
|
name: string;
|
|
3
6
|
getValues({ select, context, bindings, clientId }: {
|
|
4
|
-
select: any;
|
|
5
|
-
context: any;
|
|
6
7
|
bindings: any;
|
|
7
8
|
clientId: any;
|
|
9
|
+
context: any;
|
|
10
|
+
select: any;
|
|
8
11
|
}): {};
|
|
9
12
|
setValues({ dispatch, context, bindings, clientId, select }: {
|
|
10
|
-
dispatch: any;
|
|
11
|
-
context: any;
|
|
12
13
|
bindings: any;
|
|
13
14
|
clientId: any;
|
|
15
|
+
context: any;
|
|
16
|
+
dispatch: any;
|
|
14
17
|
select: any;
|
|
15
18
|
}): false | undefined;
|
|
16
19
|
canUserEditValue({ select, context }: {
|
|
17
|
-
select: any;
|
|
18
20
|
context: any;
|
|
21
|
+
select: any;
|
|
19
22
|
}): boolean;
|
|
20
23
|
getFieldsList({ context, select }: {
|
|
21
24
|
context: any;
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"post-data.d.ts","sourceRoot":"","sources":["../../src/bindings/post-data.js"],"names":[],"mappings":""}
|
|
1
|
+
{"version":3,"file":"post-data.d.ts","sourceRoot":"","sources":["../../src/bindings/post-data.js"],"names":[],"mappings":"AA+BA;;GAEG;;IAEF,IAAI;IACJ,SAAS;;;;;;IAiDT,SAAS;;;;;;;IAsBT,gBAAgB;;;;IAkChB,aAAa;;;;;;YA7HJ,KAAK;;;;;;YAKL,KAAK;;;;;;YAKL,KAAK"}
|
|
@@ -1,23 +1,26 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* @type {WPBlockBindingsSource}
|
|
3
|
+
*/
|
|
1
4
|
declare const _default: {
|
|
2
5
|
name: string;
|
|
3
6
|
getValues({ select, context, bindings }: {
|
|
4
|
-
select: any;
|
|
5
|
-
context: any;
|
|
6
7
|
bindings: any;
|
|
8
|
+
context: any;
|
|
9
|
+
select: any;
|
|
7
10
|
}): {};
|
|
8
11
|
setValues({ dispatch, context, bindings }: {
|
|
9
|
-
dispatch: any;
|
|
10
|
-
context: any;
|
|
11
12
|
bindings: any;
|
|
13
|
+
context: any;
|
|
14
|
+
dispatch: any;
|
|
12
15
|
}): void;
|
|
13
16
|
canUserEditValue({ select, context, args }: {
|
|
14
|
-
select: any;
|
|
15
|
-
context: any;
|
|
16
17
|
args: any;
|
|
18
|
+
context: any;
|
|
19
|
+
select: any;
|
|
17
20
|
}): boolean;
|
|
18
21
|
getFieldsList({ select, context }: {
|
|
19
|
-
select: any;
|
|
20
22
|
context: any;
|
|
23
|
+
select: any;
|
|
21
24
|
}): any;
|
|
22
25
|
};
|
|
23
26
|
export default _default;
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"post-meta.d.ts","sourceRoot":"","sources":["../../src/bindings/post-meta.js"],"names":[],"mappings":""}
|
|
1
|
+
{"version":3,"file":"post-meta.d.ts","sourceRoot":"","sources":["../../src/bindings/post-meta.js"],"names":[],"mappings":"AAqFA;;GAEG;;IAEF,IAAI;IACJ,SAAS;;;;;IAWT,SAAS;;;;;IAeT,gBAAgB;;;;;IAsChB,aAAa"}
|