@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
|
@@ -8,11 +8,11 @@
|
|
|
8
8
|
*
|
|
9
9
|
* @return {React.ReactNode} The rendered component.
|
|
10
10
|
*/
|
|
11
|
-
export default function EntitiesSavedStates({ close, renderDialog, variant
|
|
11
|
+
export default function EntitiesSavedStates({ close, renderDialog, variant }: {
|
|
12
12
|
close: Function;
|
|
13
13
|
renderDialog?: boolean | undefined;
|
|
14
14
|
variant: string;
|
|
15
|
-
}):
|
|
15
|
+
}): import("react").ReactNode;
|
|
16
16
|
/**
|
|
17
17
|
* Renders a panel for saving entities with dirty records.
|
|
18
18
|
*
|
|
@@ -32,7 +32,7 @@ export default function EntitiesSavedStates({ close, renderDialog, variant, }: {
|
|
|
32
32
|
*
|
|
33
33
|
* @return {React.ReactNode} The rendered component.
|
|
34
34
|
*/
|
|
35
|
-
export function EntitiesSavedStatesExtensible({ additionalPrompt, close, onSave, saveEnabled: saveEnabledProp, saveLabel, renderDialog, dirtyEntityRecords, isDirty, setUnselectedEntities, unselectedEntities, variant, successNoticeContent
|
|
35
|
+
export declare function EntitiesSavedStatesExtensible({ additionalPrompt, close, onSave, saveEnabled: saveEnabledProp, saveLabel, renderDialog, dirtyEntityRecords, isDirty, setUnselectedEntities, unselectedEntities, variant, successNoticeContent }: {
|
|
36
36
|
additionalPrompt: string;
|
|
37
37
|
close: Function;
|
|
38
38
|
onSave: Function;
|
|
@@ -45,5 +45,5 @@ export function EntitiesSavedStatesExtensible({ additionalPrompt, close, onSave,
|
|
|
45
45
|
unselectedEntities: any[];
|
|
46
46
|
variant: string;
|
|
47
47
|
successNoticeContent: string;
|
|
48
|
-
}):
|
|
48
|
+
}): import("react").ReactNode;
|
|
49
49
|
//# sourceMappingURL=index.d.ts.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../../src/components/entities-saved-states/index.js"],"names":[],"mappings":"AAiCA;;;;;;;;;GASG;AACH
|
|
1
|
+
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../../src/components/entities-saved-states/index.js"],"names":[],"mappings":"AAiCA;;;;;;;;;GASG;AACH,MAAM,CAAC,OAAO,UAAU,mBAAmB,CAAE,EAC5C,KAAK,EACL,YAAY,EACZ,OAAO,EACP,EAVE;IAAwB,KAAK,WAC7B;IAAwB,YAAY,AAApC,CACA,EADQ,OAAO,YAAC,CAChB;IAAwB,OAAO,EAAvB,MAAM,CAEd;CAMF,6BAUA;AAED;;;;;;;;;;;;;;;;;;GAkBG;AACH,wBAAgB,6BAA6B,CAAE,EAC9C,gBAA4B,EAC5B,KAAK,EACL,MAAiB,EACjB,WAAW,EAAE,eAA2B,EACxC,SAAwB,EACxB,YAAY,EACZ,kBAAkB,EAClB,OAAO,EACP,qBAAqB,EACrB,kBAAkB,EAClB,OAAmB,EACnB,oBAAoB,EACpB,EA5BE;IAAwB,gBAAgB,EAAhC,MAAM,CACd;IAAwB,KAAK,WAC7B;IAAwB,MAAM,WAC9B;IAAwB,WAAW,EAA3B,OAAO,CACf;IAAwB,SAAS,EAAzB,MAAM,CACd;IAAwB,YAAY,EAA5B,OAAO,CACf;IAAwB,kBAAkB,QAC1C;IAAwB,OAAO,EAAvB,OAAO,CACf;IAAwB,qBAAqB,WAC7C;IAAwB,kBAAkB,QAC1C;IAAwB,OAAO,EAAvB,MAAM,CACd;IAAwB,oBAAoB,EAApC,MAAM,CAEd;CAeF,6BA0JA"}
|
|
@@ -1,14 +1,24 @@
|
|
|
1
|
-
|
|
2
|
-
|
|
1
|
+
/**
|
|
2
|
+
* WordPress dependencies
|
|
3
|
+
*/
|
|
4
|
+
import { Component } from '@wordpress/element';
|
|
5
|
+
declare class ErrorBoundary extends Component {
|
|
6
|
+
constructor();
|
|
7
|
+
componentDidCatch(error: any): void;
|
|
3
8
|
static getDerivedStateFromError(error: any): {
|
|
4
9
|
error: any;
|
|
5
10
|
};
|
|
6
|
-
constructor(...args: any[]);
|
|
7
|
-
state: {
|
|
8
|
-
error: null;
|
|
9
|
-
};
|
|
10
|
-
componentDidCatch(error: any): void;
|
|
11
11
|
render(): any;
|
|
12
12
|
}
|
|
13
|
-
|
|
13
|
+
/**
|
|
14
|
+
* ErrorBoundary is used to catch JavaScript errors anywhere in a child component tree, log those errors, and display a fallback UI.
|
|
15
|
+
*
|
|
16
|
+
* It uses the lifecycle methods getDerivedStateFromError and componentDidCatch to catch errors in a child component tree.
|
|
17
|
+
*
|
|
18
|
+
* getDerivedStateFromError is used to render a fallback UI after an error has been thrown, and componentDidCatch is used to log error information.
|
|
19
|
+
*
|
|
20
|
+
* @class ErrorBoundary
|
|
21
|
+
* @augments Component
|
|
22
|
+
*/
|
|
23
|
+
export default ErrorBoundary;
|
|
14
24
|
//# sourceMappingURL=index.d.ts.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../../src/components/error-boundary/index.js"],"names":[],"mappings":";
|
|
1
|
+
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../../src/components/error-boundary/index.js"],"names":[],"mappings":"AAAA;;GAEG;AACH,OAAO,EAAE,SAAS,EAAE,MAAM,oBAAoB,CAAC;AAqC/C,cAAM,aAAc,SAAQ,SAAS;IACpC,cAMC;IAED,iBAAiB,CAAE,KAAK,KAAA,QAEvB;IAED,MAAM,CAAC,wBAAwB,CAAE,KAAK,KAAA;;MAErC;IAED,MAAM,QA+BL;CACD;AAED;;;;;;;;;GASG;eACY,aAAa"}
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../../src/components/global-keyboard-shortcuts/index.js"],"names":[],"mappings":"AAaA;;;;;;GAMG;AACH,
|
|
1
|
+
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../../src/components/global-keyboard-shortcuts/index.js"],"names":[],"mappings":"AAaA;;;;;;GAMG;AACH,MAAM,CAAC,OAAO,UAAU,uBAAuB,SAqG9C"}
|
|
@@ -1,8 +1,8 @@
|
|
|
1
|
-
export default EditorKeyboardShortcutsRegister;
|
|
2
1
|
/**
|
|
3
2
|
* Component for registering editor keyboard shortcuts.
|
|
4
3
|
*
|
|
5
4
|
* @return {Element} The component to be rendered.
|
|
6
5
|
*/
|
|
7
6
|
declare function EditorKeyboardShortcutsRegister(): Element;
|
|
7
|
+
export default EditorKeyboardShortcutsRegister;
|
|
8
8
|
//# sourceMappingURL=register-shortcuts.d.ts.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"register-shortcuts.d.ts","sourceRoot":"","sources":["../../../src/components/global-keyboard-shortcuts/register-shortcuts.js"],"names":[],"mappings":"
|
|
1
|
+
{"version":3,"file":"register-shortcuts.d.ts","sourceRoot":"","sources":["../../../src/components/global-keyboard-shortcuts/register-shortcuts.js"],"names":[],"mappings":"AAUA;;;;GAIG;AACH,iBAAS,+BAA+B,YAgJvC;eAEc,+BAA+B"}
|
|
@@ -5,7 +5,7 @@
|
|
|
5
5
|
* @param {string} props.path Current navigation path.
|
|
6
6
|
* @param {Function} props.onPathChange Callback to change the navigation path.
|
|
7
7
|
*/
|
|
8
|
-
export function GlobalStylesBlockLink({ path, onPathChange }: {
|
|
8
|
+
export declare function GlobalStylesBlockLink({ path, onPathChange }: {
|
|
9
9
|
path: string;
|
|
10
10
|
onPathChange: Function;
|
|
11
11
|
}): null;
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"block-link.d.ts","sourceRoot":"","sources":["../../../src/components/global-styles/block-link.js"],"names":[],"mappings":"AAQA;;;;;;GAMG;AACH,
|
|
1
|
+
{"version":3,"file":"block-link.d.ts","sourceRoot":"","sources":["../../../src/components/global-styles/block-link.js"],"names":[],"mappings":"AAQA;;;;;;GAMG;AACH,wBAAgB,qBAAqB,CAAE,EAAE,IAAI,EAAE,YAAY,EAAE,EAH1D;IAAwB,IAAI,EAApB,MAAM,CACd;IAAwB,YAAY,WACtC;CAC4D,QAiD5D"}
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"header.d.ts","sourceRoot":"","sources":["../../../src/components/global-styles/header.js"],"names":[],"mappings":"
|
|
1
|
+
{"version":3,"file":"header.d.ts","sourceRoot":"","sources":["../../../src/components/global-styles/header.js"],"names":[],"mappings":"AAcA,iBAAS,YAAY,CAAE,EAAE,KAAK,EAAE,WAAW,EAAE,MAAM,EAAE;;;;CAAA,+BA+BpD;eAEc,YAAY"}
|
|
@@ -4,7 +4,7 @@
|
|
|
4
4
|
* @return {Object} Object containing merged, base, user configs and setUser function
|
|
5
5
|
* { merged, base, user, setUser }
|
|
6
6
|
*/
|
|
7
|
-
export function useGlobalStyles(): Object;
|
|
7
|
+
export declare function useGlobalStyles(): Object;
|
|
8
8
|
/**
|
|
9
9
|
* Hook to get a style value from global styles
|
|
10
10
|
*
|
|
@@ -12,7 +12,7 @@ export function useGlobalStyles(): Object;
|
|
|
12
12
|
* @param {string=} blockName Optional block name
|
|
13
13
|
* @return {*} Style value
|
|
14
14
|
*/
|
|
15
|
-
export function useStyle(path: string, blockName?: string | undefined): any;
|
|
15
|
+
export declare function useStyle(path: string, blockName?: string | undefined): any;
|
|
16
16
|
/**
|
|
17
17
|
* Hook to get a setting value from global styles
|
|
18
18
|
*
|
|
@@ -20,5 +20,5 @@ export function useStyle(path: string, blockName?: string | undefined): any;
|
|
|
20
20
|
* @param {string=} blockName Optional block name
|
|
21
21
|
* @return {*} Setting value
|
|
22
22
|
*/
|
|
23
|
-
export function useSetting(path: string, blockName?: string | undefined): any;
|
|
23
|
+
export declare function useSetting(path: string, blockName?: string | undefined): any;
|
|
24
24
|
//# sourceMappingURL=hooks.d.ts.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"hooks.d.ts","sourceRoot":"","sources":["../../../src/components/global-styles/hooks.js"],"names":[],"mappings":"AAgKA;;;;;GAKG;AACH,
|
|
1
|
+
{"version":3,"file":"hooks.d.ts","sourceRoot":"","sources":["../../../src/components/global-styles/hooks.js"],"names":[],"mappings":"AAgKA;;;;;GAKG;AACH,wBAAgB,eAAe,WAmB9B;AAED;;;;;;GAMG;AACH,wBAAgB,QAAQ,CAAE,IAAI,EAJnB,MAImB,EAAE,SAAS,AAHtC,CACA,EADQ,MAAM,YAGwB,GAF7B,GAAC,CAQZ;AAED;;;;;;GAMG;AACH,wBAAgB,UAAU,CAAE,IAAI,EAJrB,MAIqB,EAAE,SAAS,AAHxC,CACA,EADQ,MAAM,YAG0B,GAF/B,GAAC,CAQZ"}
|
|
@@ -1,7 +1,7 @@
|
|
|
1
|
-
export default function GlobalStylesUIWrapper({ path, onPathChange, settings
|
|
2
|
-
path: any;
|
|
1
|
+
export default function GlobalStylesUIWrapper({ path, onPathChange, settings }: {
|
|
3
2
|
onPathChange: any;
|
|
3
|
+
path: any;
|
|
4
4
|
settings: any;
|
|
5
5
|
}): import("react").JSX.Element | null;
|
|
6
|
-
export { useGlobalStyles, useStyle, useSetting } from
|
|
6
|
+
export { useGlobalStyles, useStyle, useSetting } from './hooks';
|
|
7
7
|
//# sourceMappingURL=index.d.ts.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../../src/components/global-styles/index.js"],"names":[],"mappings":"AA6EA;;;;
|
|
1
|
+
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../../src/components/global-styles/index.js"],"names":[],"mappings":"AA6EA,MAAM,CAAC,OAAO,UAAU,qBAAqB,CAAE,EAC9C,IAAI,EACJ,YAAY,EACZ,QAAQ,EACR;;;;CAAA,sCAiCA;AAED,OAAO,EAAE,eAAe,EAAE,QAAQ,EAAE,UAAU,EAAE,MAAM,SAAS,CAAC"}
|
|
@@ -6,8 +6,8 @@
|
|
|
6
6
|
* @param {Function} props.onChangePath Callback for navigation to different paths (e.g., '/css').
|
|
7
7
|
* @return {React.JSX.Element} The Global Styles Action Menu component.
|
|
8
8
|
*/
|
|
9
|
-
export function GlobalStylesActionMenu({ hideWelcomeGuide, onChangePath
|
|
9
|
+
export declare function GlobalStylesActionMenu({ hideWelcomeGuide, onChangePath }: {
|
|
10
10
|
hideWelcomeGuide: boolean;
|
|
11
11
|
onChangePath: Function;
|
|
12
|
-
}):
|
|
12
|
+
}): import("react").JSX.Element;
|
|
13
13
|
//# sourceMappingURL=menu.d.ts.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"menu.d.ts","sourceRoot":"","sources":["../../../src/components/global-styles/menu.js"],"names":[],"mappings":"AAeA;;;;;;;GAOG;AACH,
|
|
1
|
+
{"version":3,"file":"menu.d.ts","sourceRoot":"","sources":["../../../src/components/global-styles/menu.js"],"names":[],"mappings":"AAeA;;;;;;;GAOG;AACH,wBAAgB,sBAAsB,CAAE,EACvC,gBAAwB,EACxB,YAAY,EACZ,EAPE;IAAwB,gBAAgB,EAAhC,OAAO,CACf;IAAwB,YAAY,WACpC;CAKF,+BA0EA"}
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../../src/components/global-styles-provider/index.js"],"names":[],"mappings":"AA+KA
|
|
1
|
+
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../../src/components/global-styles-provider/index.js"],"names":[],"mappings":"AA+KA,wBAAgB,sBAAsB;;;;;;4BAjDzB,WAAS,MAAM,YAEf,MAAM;;;;;;;;EA8ElB"}
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../../src/components/global-styles-renderer/index.js"],"names":[],"mappings":"AAkCA;;
|
|
1
|
+
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../../src/components/global-styles-renderer/index.js"],"names":[],"mappings":"AAkCA,wBAAgB,oBAAoB,CAAE,EAAE,kBAAkB,EAAE;;CAAA,QAI3D"}
|
|
@@ -1,13 +1,13 @@
|
|
|
1
|
-
export default function DefaultSidebar({ className, identifier, title, icon, children, closeLabel, header, headerClassName, panelClassName, isActiveByDefault
|
|
2
|
-
className: any;
|
|
3
|
-
identifier: any;
|
|
4
|
-
title: any;
|
|
5
|
-
icon: any;
|
|
1
|
+
export default function DefaultSidebar({ className, identifier, title, icon, children, closeLabel, header, headerClassName, panelClassName, isActiveByDefault }: {
|
|
6
2
|
children: any;
|
|
3
|
+
className: any;
|
|
7
4
|
closeLabel: any;
|
|
8
5
|
header: any;
|
|
9
6
|
headerClassName: any;
|
|
10
|
-
|
|
7
|
+
icon: any;
|
|
8
|
+
identifier: any;
|
|
11
9
|
isActiveByDefault: any;
|
|
10
|
+
panelClassName: any;
|
|
11
|
+
title: any;
|
|
12
12
|
}): import("react").JSX.Element;
|
|
13
13
|
//# sourceMappingURL=default-sidebar.d.ts.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"default-sidebar.d.ts","sourceRoot":"","sources":["../../../src/components/global-styles-sidebar/default-sidebar.js"],"names":[],"mappings":"AAQA;;;;;;;;;;;
|
|
1
|
+
{"version":3,"file":"default-sidebar.d.ts","sourceRoot":"","sources":["../../../src/components/global-styles-sidebar/default-sidebar.js"],"names":[],"mappings":"AAQA,MAAM,CAAC,OAAO,UAAU,cAAc,CAAE,EACvC,SAAS,EACT,UAAU,EACV,KAAK,EACL,IAAI,EACJ,QAAQ,EACR,UAAU,EACV,MAAM,EACN,eAAe,EACf,cAAc,EACd,iBAAiB,EACjB;;;;;;;;;;;CAAA,+BA0BA"}
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../../src/components/global-styles-sidebar/index.js"],"names":[],"mappings":"AAuBA,
|
|
1
|
+
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../../src/components/global-styles-sidebar/index.js"],"names":[],"mappings":"AAuBA,MAAM,CAAC,OAAO,UAAU,mBAAmB,gCA4J1C"}
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"welcome-guide-image.d.ts","sourceRoot":"","sources":["../../../src/components/global-styles-sidebar/welcome-guide-image.js"],"names":[],"mappings":"AAAA;;;
|
|
1
|
+
{"version":3,"file":"welcome-guide-image.d.ts","sourceRoot":"","sources":["../../../src/components/global-styles-sidebar/welcome-guide-image.js"],"names":[],"mappings":"AAAA,MAAM,CAAC,OAAO,UAAU,iBAAiB,CAAE,EAAE,cAAc,EAAE,WAAW,EAAE;;;CAAA,+BAUzE"}
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"welcome-guide.d.ts","sourceRoot":"","sources":["../../../src/components/global-styles-sidebar/welcome-guide.js"],"names":[],"mappings":"AAcA,
|
|
1
|
+
{"version":3,"file":"welcome-guide.d.ts","sourceRoot":"","sources":["../../../src/components/global-styles-sidebar/welcome-guide.js"],"names":[],"mappings":"AAcA,MAAM,CAAC,OAAO,UAAU,kBAAkB,uCAyHzC"}
|
|
@@ -1,7 +1,7 @@
|
|
|
1
|
-
export
|
|
2
|
-
export default BackButton;
|
|
1
|
+
export declare const useHasBackButton: () => boolean;
|
|
3
2
|
declare const BackButton: {
|
|
4
|
-
(props: Omit<import("@wordpress/components").FillComponentProps,
|
|
3
|
+
(props: Omit<import("@wordpress/components").FillComponentProps, 'name'>): import("react").JSX.Element;
|
|
5
4
|
displayName: string;
|
|
6
5
|
};
|
|
6
|
+
export default BackButton;
|
|
7
7
|
//# sourceMappingURL=back-button.d.ts.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"back-button.d.ts","sourceRoot":"","sources":["../../../src/components/header/back-button.js"],"names":[],"mappings":"
|
|
1
|
+
{"version":3,"file":"back-button.d.ts","sourceRoot":"","sources":["../../../src/components/header/back-button.js"],"names":[],"mappings":"AAWA,eAAO,MAAM,gBAAgB,eAG5B,CAAC;AAIF,QAAA,MAAM,UAAU;;;CAAO,CAAC;eAaT,UAAU"}
|
|
@@ -8,10 +8,10 @@
|
|
|
8
8
|
* @param {React.JSX.Element} props.settings Content for the right settings area.
|
|
9
9
|
* @return {React.JSX.Element} The header skeleton component.
|
|
10
10
|
*/
|
|
11
|
-
export default function HeaderSkeleton({ className, toolbar, center, settings
|
|
11
|
+
export default function HeaderSkeleton({ className, toolbar, center, settings }: {
|
|
12
12
|
className: string;
|
|
13
|
-
toolbar:
|
|
14
|
-
center:
|
|
15
|
-
settings:
|
|
16
|
-
}):
|
|
13
|
+
toolbar: import("react").JSX.Element;
|
|
14
|
+
center: import("react").JSX.Element;
|
|
15
|
+
settings: import("react").JSX.Element;
|
|
16
|
+
}): import("react").JSX.Element;
|
|
17
17
|
//# sourceMappingURL=header-skeleton.d.ts.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"header-skeleton.d.ts","sourceRoot":"","sources":["../../../src/components/header/header-skeleton.js"],"names":[],"mappings":"AA+BA;;;;;;;;;GASG;AACH,
|
|
1
|
+
{"version":3,"file":"header-skeleton.d.ts","sourceRoot":"","sources":["../../../src/components/header/header-skeleton.js"],"names":[],"mappings":"AA+BA;;;;;;;;;GASG;AACH,MAAM,CAAC,OAAO,UAAU,cAAc,CAAE,EACvC,SAAS,EACT,OAAO,EACP,MAAM,EACN,QAAQ,EACR,EAXE;IAAiC,SAAS,EAAlC,MAAM,CACd;IAAiC,OAAO,8BACxC;IAAiC,MAAM,8BACvC;IAAiC,QAAQ,8BACzC;CAOF,+BA2CA"}
|
|
@@ -1,7 +1,7 @@
|
|
|
1
|
-
|
|
2
|
-
declare function Header({ customSaveButton, forceIsDirty, setEntitiesSavedStatesCallback, }: {
|
|
1
|
+
declare function Header({ customSaveButton, forceIsDirty, setEntitiesSavedStatesCallback }: {
|
|
3
2
|
customSaveButton: any;
|
|
4
3
|
forceIsDirty: any;
|
|
5
4
|
setEntitiesSavedStatesCallback: any;
|
|
6
5
|
}): import("react").JSX.Element;
|
|
6
|
+
export default Header;
|
|
7
7
|
//# sourceMappingURL=index.d.ts.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../../src/components/header/index.js"],"names":[],"mappings":"
|
|
1
|
+
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../../src/components/header/index.js"],"names":[],"mappings":"AAkCA,iBAAS,MAAM,CAAE,EAChB,gBAAgB,EAChB,YAAY,EACZ,8BAA8B,EAC9B;;;;CAAA,+BAkJA;eAEc,MAAM"}
|
|
@@ -1,89 +1,96 @@
|
|
|
1
|
-
|
|
2
|
-
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
export
|
|
6
|
-
export { default as
|
|
1
|
+
/**
|
|
2
|
+
* Internal dependencies
|
|
3
|
+
*/
|
|
4
|
+
import EditorKeyboardShortcuts from './global-keyboard-shortcuts';
|
|
5
|
+
export * from './autocompleters';
|
|
6
|
+
export { default as AutosaveMonitor } from './autosave-monitor';
|
|
7
|
+
export { default as DocumentBar } from './document-bar';
|
|
8
|
+
export { default as DocumentOutline } from './document-outline';
|
|
9
|
+
export { default as DocumentOutlineCheck } from './document-outline/check';
|
|
7
10
|
export { EditorKeyboardShortcuts };
|
|
8
|
-
export { default as EditorKeyboardShortcutsRegister } from
|
|
9
|
-
export { default as EditorHistoryRedo } from
|
|
10
|
-
export { default as EditorHistoryUndo } from
|
|
11
|
-
export { default as EditorNotices } from
|
|
12
|
-
export { default as EditorSnackbars } from
|
|
13
|
-
export { default as EntitiesSavedStates } from
|
|
14
|
-
export { useIsDirty as useEntitiesSavedStatesIsDirty } from
|
|
15
|
-
export { default as ErrorBoundary } from
|
|
16
|
-
export { default as LocalAutosaveMonitor } from
|
|
17
|
-
export { default as PageAttributesCheck } from
|
|
18
|
-
export { default as PageAttributesOrder } from
|
|
19
|
-
export { default as PageAttributesPanel } from
|
|
20
|
-
export { default as PageAttributesParent } from
|
|
21
|
-
export { default as PageTemplate } from
|
|
22
|
-
export { default as PluginDocumentSettingPanel } from
|
|
23
|
-
export { default as PluginBlockSettingsMenuItem } from
|
|
24
|
-
export { default as PluginMoreMenuItem } from
|
|
25
|
-
export { default as PluginPostPublishPanel } from
|
|
26
|
-
export { default as PluginPostStatusInfo } from
|
|
27
|
-
export { default as PluginPrePublishPanel } from
|
|
28
|
-
export { default as PluginPreviewMenuItem } from
|
|
29
|
-
export { default as PluginSidebar } from
|
|
30
|
-
export { default as PluginSidebarMoreMenuItem } from
|
|
31
|
-
export { default as PostTemplatePanel } from
|
|
32
|
-
export { default as PostAuthor } from
|
|
33
|
-
export { default as PostAuthorCheck } from
|
|
34
|
-
export { default as PostAuthorPanel } from
|
|
35
|
-
export { default as PostComments } from
|
|
36
|
-
export { default as PostDiscussionPanel } from
|
|
37
|
-
export { default as PostExcerpt } from
|
|
38
|
-
export { default as PostExcerptCheck } from
|
|
39
|
-
export { default as PostExcerptPanel } from
|
|
40
|
-
export { default as PostFeaturedImage } from
|
|
41
|
-
export { default as PostFeaturedImageCheck } from
|
|
42
|
-
export { default as PostFeaturedImagePanel } from
|
|
43
|
-
export { default as PostFormat } from
|
|
44
|
-
export { default as PostFormatCheck } from
|
|
45
|
-
export { default as PostLastRevision } from
|
|
46
|
-
export { default as PostLastRevisionCheck } from
|
|
47
|
-
export { default as PostLastRevisionPanel } from
|
|
48
|
-
export { default as PostLockedModal } from
|
|
49
|
-
export { default as PostPendingStatus } from
|
|
50
|
-
export { default as PostPendingStatusCheck } from
|
|
51
|
-
export { default as PostPingbacks } from
|
|
52
|
-
export { default as PostPreviewButton } from
|
|
53
|
-
export { default as PostPublishButton } from
|
|
54
|
-
export { default as PostPublishButtonLabel } from
|
|
55
|
-
export { default as PostPublishPanel } from
|
|
56
|
-
export { default as PostSavedState } from
|
|
57
|
-
export { default as PostSchedule } from
|
|
58
|
-
export { default as PostScheduleCheck } from
|
|
59
|
-
export { default as
|
|
60
|
-
export { default as
|
|
61
|
-
export { default as
|
|
62
|
-
export { default as
|
|
63
|
-
export { default as
|
|
64
|
-
export { default as
|
|
65
|
-
export {
|
|
66
|
-
export {
|
|
67
|
-
export {
|
|
68
|
-
export { default as
|
|
69
|
-
export { default as
|
|
70
|
-
export { default as
|
|
71
|
-
export { default as
|
|
72
|
-
export { default as
|
|
73
|
-
export { default as
|
|
74
|
-
export { default as
|
|
75
|
-
export { default as
|
|
76
|
-
export { default as
|
|
77
|
-
export { default as
|
|
78
|
-
export { default as
|
|
79
|
-
export { default as
|
|
80
|
-
export { default as
|
|
81
|
-
export { default as
|
|
82
|
-
export { default as
|
|
83
|
-
export { default as
|
|
84
|
-
export { default as
|
|
85
|
-
export { default as
|
|
86
|
-
export { default as
|
|
11
|
+
export { default as EditorKeyboardShortcutsRegister } from './global-keyboard-shortcuts/register-shortcuts';
|
|
12
|
+
export { default as EditorHistoryRedo } from './editor-history/redo';
|
|
13
|
+
export { default as EditorHistoryUndo } from './editor-history/undo';
|
|
14
|
+
export { default as EditorNotices } from './editor-notices';
|
|
15
|
+
export { default as EditorSnackbars } from './editor-snackbars';
|
|
16
|
+
export { default as EntitiesSavedStates } from './entities-saved-states';
|
|
17
|
+
export { useIsDirty as useEntitiesSavedStatesIsDirty } from './entities-saved-states/hooks/use-is-dirty';
|
|
18
|
+
export { default as ErrorBoundary } from './error-boundary';
|
|
19
|
+
export { default as LocalAutosaveMonitor } from './local-autosave-monitor';
|
|
20
|
+
export { default as PageAttributesCheck } from './page-attributes/check';
|
|
21
|
+
export { default as PageAttributesOrder } from './page-attributes/order';
|
|
22
|
+
export { default as PageAttributesPanel } from './page-attributes/panel';
|
|
23
|
+
export { default as PageAttributesParent } from './page-attributes/parent';
|
|
24
|
+
export { default as PageTemplate } from './post-template/classic-theme';
|
|
25
|
+
export { default as PluginDocumentSettingPanel } from './plugin-document-setting-panel';
|
|
26
|
+
export { default as PluginBlockSettingsMenuItem } from './block-settings-menu/plugin-block-settings-menu-item';
|
|
27
|
+
export { default as PluginMoreMenuItem } from './plugin-more-menu-item';
|
|
28
|
+
export { default as PluginPostPublishPanel } from './plugin-post-publish-panel';
|
|
29
|
+
export { default as PluginPostStatusInfo } from './plugin-post-status-info';
|
|
30
|
+
export { default as PluginPrePublishPanel } from './plugin-pre-publish-panel';
|
|
31
|
+
export { default as PluginPreviewMenuItem } from './plugin-preview-menu-item';
|
|
32
|
+
export { default as PluginSidebar } from './plugin-sidebar';
|
|
33
|
+
export { default as PluginSidebarMoreMenuItem } from './plugin-sidebar-more-menu-item';
|
|
34
|
+
export { default as PostTemplatePanel } from './post-template/panel';
|
|
35
|
+
export { default as PostAuthor } from './post-author';
|
|
36
|
+
export { default as PostAuthorCheck } from './post-author/check';
|
|
37
|
+
export { default as PostAuthorPanel } from './post-author/panel';
|
|
38
|
+
export { default as PostComments } from './post-comments';
|
|
39
|
+
export { default as PostDiscussionPanel } from './post-discussion/panel';
|
|
40
|
+
export { default as PostExcerpt } from './post-excerpt';
|
|
41
|
+
export { default as PostExcerptCheck } from './post-excerpt/check';
|
|
42
|
+
export { default as PostExcerptPanel } from './post-excerpt/panel';
|
|
43
|
+
export { default as PostFeaturedImage } from './post-featured-image';
|
|
44
|
+
export { default as PostFeaturedImageCheck } from './post-featured-image/check';
|
|
45
|
+
export { default as PostFeaturedImagePanel } from './post-featured-image/panel';
|
|
46
|
+
export { default as PostFormat } from './post-format';
|
|
47
|
+
export { default as PostFormatCheck } from './post-format/check';
|
|
48
|
+
export { default as PostLastRevision } from './post-last-revision';
|
|
49
|
+
export { default as PostLastRevisionCheck } from './post-last-revision/check';
|
|
50
|
+
export { default as PostLastRevisionPanel } from './post-last-revision/panel';
|
|
51
|
+
export { default as PostLockedModal } from './post-locked-modal';
|
|
52
|
+
export { default as PostPendingStatus } from './post-pending-status';
|
|
53
|
+
export { default as PostPendingStatusCheck } from './post-pending-status/check';
|
|
54
|
+
export { default as PostPingbacks } from './post-pingbacks';
|
|
55
|
+
export { default as PostPreviewButton } from './post-preview-button';
|
|
56
|
+
export { default as PostPublishButton } from './post-publish-button';
|
|
57
|
+
export { default as PostPublishButtonLabel } from './post-publish-button/label';
|
|
58
|
+
export { default as PostPublishPanel } from './post-publish-panel';
|
|
59
|
+
export { default as PostSavedState } from './post-saved-state';
|
|
60
|
+
export { default as PostSchedule } from './post-schedule';
|
|
61
|
+
export { default as PostScheduleCheck } from './post-schedule/check';
|
|
62
|
+
export { default as PostScheduleLabel, usePostScheduleLabel, } from './post-schedule/label';
|
|
63
|
+
export { default as PostSchedulePanel } from './post-schedule/panel';
|
|
64
|
+
export { default as PostSticky } from './post-sticky';
|
|
65
|
+
export { default as PostStickyCheck } from './post-sticky/check';
|
|
66
|
+
export { default as PostSwitchToDraftButton } from './post-switch-to-draft-button';
|
|
67
|
+
export { default as PostSyncStatus } from './post-sync-status';
|
|
68
|
+
export { default as PostTaxonomies } from './post-taxonomies';
|
|
69
|
+
export { FlatTermSelector as PostTaxonomiesFlatTermSelector } from './post-taxonomies/flat-term-selector';
|
|
70
|
+
export { HierarchicalTermSelector as PostTaxonomiesHierarchicalTermSelector } from './post-taxonomies/hierarchical-term-selector';
|
|
71
|
+
export { default as PostTaxonomiesCheck } from './post-taxonomies/check';
|
|
72
|
+
export { default as PostTaxonomiesPanel } from './post-taxonomies/panel';
|
|
73
|
+
export { default as PostTextEditor } from './post-text-editor';
|
|
74
|
+
export { default as PostTitle } from './post-title';
|
|
75
|
+
export { default as PostTitleRaw } from './post-title/post-title-raw';
|
|
76
|
+
export { default as PostTrash } from './post-trash';
|
|
77
|
+
export { default as PostTrashCheck } from './post-trash/check';
|
|
78
|
+
export { default as PostTypeSupportCheck } from './post-type-support-check';
|
|
79
|
+
export { default as PostURL } from './post-url';
|
|
80
|
+
export { default as PostURLCheck } from './post-url/check';
|
|
81
|
+
export { default as PostURLLabel, usePostURLLabel } from './post-url/label';
|
|
82
|
+
export { default as PostURLPanel } from './post-url/panel';
|
|
83
|
+
export { default as PostVisibility } from './post-visibility';
|
|
84
|
+
export { default as PostVisibilityLabel, usePostVisibilityLabel, } from './post-visibility/label';
|
|
85
|
+
export { default as PostVisibilityCheck } from './post-visibility/check';
|
|
86
|
+
export { default as TableOfContents } from './table-of-contents';
|
|
87
|
+
export { default as ThemeSupportCheck } from './theme-support-check';
|
|
88
|
+
export { default as UnsavedChangesWarning } from './unsaved-changes-warning';
|
|
89
|
+
export { default as WordCount } from './word-count';
|
|
90
|
+
export { default as TimeToRead } from './time-to-read';
|
|
91
|
+
export { default as CharacterCount } from './character-count';
|
|
92
|
+
export { default as EditorProvider } from './provider';
|
|
93
|
+
export * from './deprecated';
|
|
87
94
|
/**
|
|
88
95
|
* Handles the keyboard shortcuts for the editor.
|
|
89
96
|
*
|
|
@@ -91,7 +98,7 @@ export { default as EditorProvider } from "./provider";
|
|
|
91
98
|
* toggling distraction-free mode, undo/redo, saving the post, toggling list view,
|
|
92
99
|
* and toggling the sidebar.
|
|
93
100
|
*/
|
|
94
|
-
export const VisualEditorGlobalKeyboardShortcuts: typeof EditorKeyboardShortcuts;
|
|
101
|
+
export declare const VisualEditorGlobalKeyboardShortcuts: typeof EditorKeyboardShortcuts;
|
|
95
102
|
/**
|
|
96
103
|
* Handles the keyboard shortcuts for the editor.
|
|
97
104
|
*
|
|
@@ -99,9 +106,5 @@ export const VisualEditorGlobalKeyboardShortcuts: typeof EditorKeyboardShortcuts
|
|
|
99
106
|
* toggling distraction-free mode, undo/redo, saving the post, toggling list view,
|
|
100
107
|
* and toggling the sidebar.
|
|
101
108
|
*/
|
|
102
|
-
export const TextEditorGlobalKeyboardShortcuts: typeof EditorKeyboardShortcuts;
|
|
103
|
-
import EditorKeyboardShortcuts from './global-keyboard-shortcuts';
|
|
104
|
-
export { default as PostScheduleLabel, usePostScheduleLabel } from "./post-schedule/label";
|
|
105
|
-
export { default as PostURLLabel, usePostURLLabel } from "./post-url/label";
|
|
106
|
-
export { default as PostVisibilityLabel, usePostVisibilityLabel } from "./post-visibility/label";
|
|
109
|
+
export declare const TextEditorGlobalKeyboardShortcuts: typeof EditorKeyboardShortcuts;
|
|
107
110
|
//# sourceMappingURL=index.d.ts.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../src/components/index.js"],"names":[],"mappings":"
|
|
1
|
+
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../src/components/index.js"],"names":[],"mappings":"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"}
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../../src/components/inserter-sidebar/index.js"],"names":[],"mappings":"AAsBA,
|
|
1
|
+
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../../src/components/inserter-sidebar/index.js"],"names":[],"mappings":"AAsBA,MAAM,CAAC,OAAO,UAAU,eAAe,gCA0FtC"}
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
export const textFormattingShortcuts: ({
|
|
1
|
+
export declare const textFormattingShortcuts: ({
|
|
2
2
|
keyCombination: {
|
|
3
3
|
modifier: string;
|
|
4
4
|
character: string;
|
|
@@ -65,18 +65,18 @@ export const textFormattingShortcuts: ({
|
|
|
65
65
|
}[];
|
|
66
66
|
description: import("@wordpress/i18n").TransformedText<"Convert the current heading to a paragraph.">;
|
|
67
67
|
} | {
|
|
68
|
+
aliases?: undefined;
|
|
68
69
|
keyCombination: {
|
|
69
70
|
modifier: string;
|
|
70
71
|
character: string;
|
|
71
72
|
};
|
|
72
73
|
description: import("@wordpress/i18n").TransformedText<"Convert the current paragraph or heading to a heading of level 1 to 6.">;
|
|
73
|
-
aliases?: undefined;
|
|
74
74
|
} | {
|
|
75
|
+
aliases?: undefined;
|
|
75
76
|
keyCombination: {
|
|
76
77
|
modifier: string;
|
|
77
78
|
character: string;
|
|
78
79
|
};
|
|
79
80
|
description: import("@wordpress/i18n").TransformedText<"Add non breaking space.">;
|
|
80
|
-
aliases?: undefined;
|
|
81
81
|
})[];
|
|
82
82
|
//# sourceMappingURL=config.d.ts.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"config.d.ts","sourceRoot":"","sources":["../../../src/components/keyboard-shortcut-help-modal/config.js"],"names":[],"mappings":"AAKA
|
|
1
|
+
{"version":3,"file":"config.d.ts","sourceRoot":"","sources":["../../../src/components/keyboard-shortcut-help-modal/config.js"],"names":[],"mappings":"AAKA,eAAO,MAAM,uBAAuB;;QAEhB,QAAQ;QAAa,SAAS;;;;;;QAI9B,QAAQ;QAAa,SAAS;;;;;;QAI9B,QAAQ;QAAa,SAAS;;;;;;QAI9B,QAAQ;QAAkB,SAAS;;;;;;;;;;;;;QAQnC,QAAQ;QAAa,SAAS;;;;;;QAI9B,QAAQ;QAAY,SAAS;;;;;;QAI7B,QAAQ;QAAY,SAAS;;;;;;QAK9C,QAAQ;QACR,SAAS;;;;;;;;;;QAWQ,QAAQ;QAAY,SAAS;;;;;;QAM7B,QAAQ;QAAkB,SAAS;;;IAGtD,CAAC"}
|