@wordpress/editor 14.45.0 → 14.45.2-next.v.202605131006.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- 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
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"component.d.ts","sourceRoot":"","sources":["../../../../src/components/collaborators-presence/avatar/component.tsx"],"names":[],"mappings":"AAeA;;GAEG;AACH,OAAO,KAAK,EAAE,WAAW,EAAE,MAAM,SAAS,CAAC;AAO3C,iBAAS,MAAM,CAAE,EAChB,SAAS,EACT,GAAG,EACH,IAAI,EACJ,KAAK,EACL,OAAO,EACP,IAAgB,EAChB,WAAW,EACX,MAAc,EACd,eAAe,EACf,KAAK,EACL,GAAG,KAAK,EACR,EAAE,WAAW,GACb,IAAI,CAAE,KAAK,CAAC,cAAc,CAAE,cAAc,CAAE,EAAE,MAAM,WAAW,CAAE,+BAkFjE;
|
|
1
|
+
{"version":3,"file":"component.d.ts","sourceRoot":"","sources":["../../../../src/components/collaborators-presence/avatar/component.tsx"],"names":[],"mappings":"AAeA;;GAEG;AACH,OAAO,KAAK,EAAE,WAAW,EAAE,MAAM,SAAS,CAAC;AAO3C,iBAAS,MAAM,CAAE,EAChB,SAAS,EACT,GAAG,EACH,IAAI,EACJ,KAAK,EACL,OAAO,EACP,IAAgB,EAChB,WAAW,EACX,MAAc,EACd,eAAe,EACf,KAAK,EACL,GAAG,KAAK,EACR,EAAE,WAAW,GACb,IAAI,CAAE,KAAK,CAAC,cAAc,CAAE,cAAc,CAAE,EAAE,MAAM,WAAW,CAAE,+BAkFjE;eAEc,MAAM"}
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"component.d.ts","sourceRoot":"","sources":["../../../../src/components/collaborators-presence/avatar-group/component.tsx"],"names":[],"mappings":"AAWA;;GAEG;AACH,OAAO,KAAK,EAAE,gBAAgB,EAAE,MAAM,SAAS,CAAC;AAEhD,iBAAS,WAAW,CAAE,EACrB,SAAS,EACT,GAAO,EACP,QAAQ,EACR,GAAG,KAAK,EACR,EAAE,gBAAgB,GAClB,IAAI,CAAE,KAAK,CAAC,cAAc,CAAE,cAAc,CAAE,EAAE,MAAM,gBAAgB,CAAE,+BA8BtE;
|
|
1
|
+
{"version":3,"file":"component.d.ts","sourceRoot":"","sources":["../../../../src/components/collaborators-presence/avatar-group/component.tsx"],"names":[],"mappings":"AAWA;;GAEG;AACH,OAAO,KAAK,EAAE,gBAAgB,EAAE,MAAM,SAAS,CAAC;AAEhD,iBAAS,WAAW,CAAE,EACrB,SAAS,EACT,GAAO,EACP,QAAQ,EACR,GAAG,KAAK,EACR,EAAE,gBAAgB,GAClB,IAAI,CAAE,KAAK,CAAC,cAAc,CAAE,cAAc,CAAE,EAAE,MAAM,gBAAgB,CAAE,+BA8BtE;eAEc,WAAW"}
|
|
@@ -1,4 +1,3 @@
|
|
|
1
|
-
import './styles/collaborators-presence.scss';
|
|
2
1
|
interface CollaboratorsPresenceProps {
|
|
3
2
|
postId: number | null;
|
|
4
3
|
postType: string | null;
|
|
@@ -11,6 +10,6 @@ interface CollaboratorsPresenceProps {
|
|
|
11
10
|
* @param props.postId ID of the post
|
|
12
11
|
* @param props.postType Type of the post
|
|
13
12
|
*/
|
|
14
|
-
export declare function CollaboratorsPresence({ postId, postType
|
|
13
|
+
export declare function CollaboratorsPresence({ postId, postType }: CollaboratorsPresenceProps): import("react").JSX.Element | null;
|
|
15
14
|
export {};
|
|
16
15
|
//# sourceMappingURL=index.d.ts.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../../src/components/collaborators-presence/index.tsx"],"names":[],"mappings":"
|
|
1
|
+
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../../src/components/collaborators-presence/index.tsx"],"names":[],"mappings":"AAmBA,UAAU,0BAA0B;IACnC,MAAM,EAAE,MAAM,GAAG,IAAI,CAAC;IACtB,QAAQ,EAAE,MAAM,GAAG,IAAI,CAAC;CACxB;AAED;;;;;;;GAOG;AACH,wBAAgB,qBAAqB,CAAE,EACtC,MAAM,EACN,QAAQ,EACR,EAAE,0BAA0B,sCAsG5B"}
|
|
@@ -1,6 +1,5 @@
|
|
|
1
1
|
import { type PostEditorAwarenessState } from '@wordpress/core-data';
|
|
2
2
|
import { type CursorRegistry } from '../collaborators-overlay/cursor-registry';
|
|
3
|
-
import './styles/collaborators-list.scss';
|
|
4
3
|
interface CollaboratorsListProps {
|
|
5
4
|
activeCollaborators: PostEditorAwarenessState[];
|
|
6
5
|
popoverAnchor?: HTMLElement | null;
|
|
@@ -17,6 +16,6 @@ interface CollaboratorsListProps {
|
|
|
17
16
|
* @param props.setIsPopoverVisible Callback to set the visibility of the popover
|
|
18
17
|
* @param props.cursorRegistry Shared registry for scroll-to-cursor support
|
|
19
18
|
*/
|
|
20
|
-
export declare function CollaboratorsList({ activeCollaborators, popoverAnchor, setIsPopoverVisible, cursorRegistry
|
|
19
|
+
export declare function CollaboratorsList({ activeCollaborators, popoverAnchor, setIsPopoverVisible, cursorRegistry }: CollaboratorsListProps): import("react").JSX.Element;
|
|
21
20
|
export {};
|
|
22
21
|
//# sourceMappingURL=list.d.ts.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"list.d.ts","sourceRoot":"","sources":["../../../src/components/collaborators-presence/list.tsx"],"names":[],"mappings":"AAGA,OAAO,EAAE,KAAK,wBAAwB,EAAE,MAAM,sBAAsB,CAAC;AAMrE,OAAO,EAAE,KAAK,cAAc,EAAE,MAAM,0CAA0C,CAAC;AAE/E,
|
|
1
|
+
{"version":3,"file":"list.d.ts","sourceRoot":"","sources":["../../../src/components/collaborators-presence/list.tsx"],"names":[],"mappings":"AAGA,OAAO,EAAE,KAAK,wBAAwB,EAAE,MAAM,sBAAsB,CAAC;AAMrE,OAAO,EAAE,KAAK,cAAc,EAAE,MAAM,0CAA0C,CAAC;AAE/E,UAAU,sBAAsB;IAC/B,mBAAmB,EAAE,wBAAwB,EAAE,CAAC;IAChD,aAAa,CAAC,EAAE,WAAW,GAAG,IAAI,CAAC;IACnC,mBAAmB,EAAE,CAAE,SAAS,EAAE,OAAO,KAAM,IAAI,CAAC;IACpD,cAAc,EAAE,cAAc,CAAC;CAC/B;AAED;;;;;;;;;GASG;AACH,wBAAgB,iBAAiB,CAAE,EAClC,mBAAmB,EACnB,aAAa,EACb,mBAAmB,EACnB,cAAc,EACd,EAAE,sBAAsB,+BAsFxB"}
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../../src/components/collapsible-block-toolbar/index.js"],"names":[],"mappings":"AA0BA;;;
|
|
1
|
+
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../../src/components/collapsible-block-toolbar/index.js"],"names":[],"mappings":"AA0BA,MAAM,CAAC,OAAO,UAAU,uBAAuB,CAAE,EAAE,WAAW,EAAE,QAAQ,EAAE;;;CAAA,sCAgDzE"}
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../../src/components/commands/index.js"],"names":[],"mappings":"AAsdA,
|
|
1
|
+
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../../src/components/commands/index.js"],"names":[],"mappings":"AAsdA,MAAM,CAAC,OAAO,UAAU,WAAW,SAsBlC"}
|
|
@@ -1,182 +1,211 @@
|
|
|
1
|
+
export { default as ServerSideRender } from '@wordpress/server-side-render';
|
|
2
|
+
/**
|
|
3
|
+
* @deprecated since 5.3, use `wp.blockEditor.RichText` instead.
|
|
4
|
+
*/
|
|
5
|
+
declare const RichText: import("react").ForwardRefExoticComponent<import("react").RefAttributes<unknown>>;
|
|
6
|
+
export { RichText };
|
|
1
7
|
/**
|
|
2
8
|
* @deprecated since 5.3, use `wp.blockEditor.Autocomplete` instead.
|
|
3
9
|
*/
|
|
4
|
-
export const Autocomplete: import("react").ForwardRefExoticComponent<import("react").RefAttributes<
|
|
10
|
+
export declare const Autocomplete: import("react").ForwardRefExoticComponent<import("react").RefAttributes<unknown>>;
|
|
5
11
|
/**
|
|
6
12
|
* @deprecated since 5.3, use `wp.blockEditor.AlignmentToolbar` instead.
|
|
7
13
|
*/
|
|
8
|
-
export const AlignmentToolbar: import("react").ForwardRefExoticComponent<import("react").RefAttributes<
|
|
14
|
+
export declare const AlignmentToolbar: import("react").ForwardRefExoticComponent<import("react").RefAttributes<unknown>>;
|
|
9
15
|
/**
|
|
10
16
|
* @deprecated since 5.3, use `wp.blockEditor.BlockAlignmentToolbar` instead.
|
|
11
17
|
*/
|
|
12
|
-
export const BlockAlignmentToolbar: import("react").ForwardRefExoticComponent<import("react").RefAttributes<
|
|
18
|
+
export declare const BlockAlignmentToolbar: import("react").ForwardRefExoticComponent<import("react").RefAttributes<unknown>>;
|
|
13
19
|
/**
|
|
14
20
|
* @deprecated since 5.3, use `wp.blockEditor.BlockControls` instead.
|
|
15
21
|
*/
|
|
16
|
-
export const BlockControls: import("react").ForwardRefExoticComponent<import("react").RefAttributes<
|
|
22
|
+
export declare const BlockControls: import("react").ForwardRefExoticComponent<import("react").RefAttributes<unknown>>;
|
|
17
23
|
/**
|
|
18
24
|
* @deprecated since 5.3, use `wp.blockEditor.BlockEdit` instead.
|
|
19
25
|
*/
|
|
20
|
-
export const BlockEdit: import("react").ForwardRefExoticComponent<import("react").RefAttributes<
|
|
26
|
+
export declare const BlockEdit: import("react").ForwardRefExoticComponent<import("react").RefAttributes<unknown>>;
|
|
21
27
|
/**
|
|
22
28
|
* @deprecated since 5.3, use `wp.blockEditor.BlockEditorKeyboardShortcuts` instead.
|
|
23
29
|
*/
|
|
24
|
-
export const BlockEditorKeyboardShortcuts: import("react").ForwardRefExoticComponent<import("react").RefAttributes<
|
|
30
|
+
export declare const BlockEditorKeyboardShortcuts: import("react").ForwardRefExoticComponent<import("react").RefAttributes<unknown>>;
|
|
25
31
|
/**
|
|
26
32
|
* @deprecated since 5.3, use `wp.blockEditor.BlockFormatControls` instead.
|
|
27
33
|
*/
|
|
28
|
-
export const BlockFormatControls: import("react").ForwardRefExoticComponent<import("react").RefAttributes<
|
|
34
|
+
export declare const BlockFormatControls: import("react").ForwardRefExoticComponent<import("react").RefAttributes<unknown>>;
|
|
29
35
|
/**
|
|
30
36
|
* @deprecated since 5.3, use `wp.blockEditor.BlockIcon` instead.
|
|
31
37
|
*/
|
|
32
|
-
export const BlockIcon: import("react").ForwardRefExoticComponent<import("react").RefAttributes<
|
|
38
|
+
export declare const BlockIcon: import("react").ForwardRefExoticComponent<import("react").RefAttributes<unknown>>;
|
|
33
39
|
/**
|
|
34
40
|
* @deprecated since 5.3, use `wp.blockEditor.BlockInspector` instead.
|
|
35
41
|
*/
|
|
36
|
-
export const BlockInspector: import("react").ForwardRefExoticComponent<import("react").RefAttributes<
|
|
42
|
+
export declare const BlockInspector: import("react").ForwardRefExoticComponent<import("react").RefAttributes<unknown>>;
|
|
37
43
|
/**
|
|
38
44
|
* @deprecated since 5.3, use `wp.blockEditor.BlockList` instead.
|
|
39
45
|
*/
|
|
40
|
-
export const BlockList: import("react").ForwardRefExoticComponent<import("react").RefAttributes<
|
|
46
|
+
export declare const BlockList: import("react").ForwardRefExoticComponent<import("react").RefAttributes<unknown>>;
|
|
41
47
|
/**
|
|
42
48
|
* @deprecated since 5.3, use `wp.blockEditor.BlockMover` instead.
|
|
43
49
|
*/
|
|
44
|
-
export const BlockMover: import("react").ForwardRefExoticComponent<import("react").RefAttributes<
|
|
50
|
+
export declare const BlockMover: import("react").ForwardRefExoticComponent<import("react").RefAttributes<unknown>>;
|
|
45
51
|
/**
|
|
46
52
|
* @deprecated since 5.3, use `wp.blockEditor.BlockNavigationDropdown` instead.
|
|
47
53
|
*/
|
|
48
|
-
export const BlockNavigationDropdown: import("react").ForwardRefExoticComponent<import("react").RefAttributes<
|
|
54
|
+
export declare const BlockNavigationDropdown: import("react").ForwardRefExoticComponent<import("react").RefAttributes<unknown>>;
|
|
49
55
|
/**
|
|
50
56
|
* @deprecated since 5.3, use `wp.blockEditor.BlockSelectionClearer` instead.
|
|
51
57
|
*/
|
|
52
|
-
export const BlockSelectionClearer: import("react").ForwardRefExoticComponent<import("react").RefAttributes<
|
|
58
|
+
export declare const BlockSelectionClearer: import("react").ForwardRefExoticComponent<import("react").RefAttributes<unknown>>;
|
|
53
59
|
/**
|
|
54
60
|
* @deprecated since 5.3, use `wp.blockEditor.BlockSettingsMenu` instead.
|
|
55
61
|
*/
|
|
56
|
-
export const BlockSettingsMenu: import("react").ForwardRefExoticComponent<import("react").RefAttributes<
|
|
62
|
+
export declare const BlockSettingsMenu: import("react").ForwardRefExoticComponent<import("react").RefAttributes<unknown>>;
|
|
57
63
|
/**
|
|
58
64
|
* @deprecated since 5.3, use `wp.blockEditor.BlockTitle` instead.
|
|
59
65
|
*/
|
|
60
|
-
export const BlockTitle: import("react").ForwardRefExoticComponent<import("react").RefAttributes<
|
|
66
|
+
export declare const BlockTitle: import("react").ForwardRefExoticComponent<import("react").RefAttributes<unknown>>;
|
|
61
67
|
/**
|
|
62
68
|
* @deprecated since 5.3, use `wp.blockEditor.BlockToolbar` instead.
|
|
63
69
|
*/
|
|
64
|
-
export const BlockToolbar: import("react").ForwardRefExoticComponent<import("react").RefAttributes<
|
|
70
|
+
export declare const BlockToolbar: import("react").ForwardRefExoticComponent<import("react").RefAttributes<unknown>>;
|
|
65
71
|
/**
|
|
66
72
|
* @deprecated since 5.3, use `wp.blockEditor.ColorPalette` instead.
|
|
67
73
|
*/
|
|
68
|
-
export const ColorPalette: import("react").ForwardRefExoticComponent<import("react").RefAttributes<
|
|
74
|
+
export declare const ColorPalette: import("react").ForwardRefExoticComponent<import("react").RefAttributes<unknown>>;
|
|
69
75
|
/**
|
|
70
76
|
* @deprecated since 5.3, use `wp.blockEditor.ContrastChecker` instead.
|
|
71
77
|
*/
|
|
72
|
-
export const ContrastChecker: import("react").ForwardRefExoticComponent<import("react").RefAttributes<
|
|
78
|
+
export declare const ContrastChecker: import("react").ForwardRefExoticComponent<import("react").RefAttributes<unknown>>;
|
|
73
79
|
/**
|
|
74
80
|
* @deprecated since 5.3, use `wp.blockEditor.CopyHandler` instead.
|
|
75
81
|
*/
|
|
76
|
-
export const CopyHandler: import("react").ForwardRefExoticComponent<import("react").RefAttributes<
|
|
82
|
+
export declare const CopyHandler: import("react").ForwardRefExoticComponent<import("react").RefAttributes<unknown>>;
|
|
77
83
|
/**
|
|
78
84
|
* @deprecated since 5.3, use `wp.blockEditor.DefaultBlockAppender` instead.
|
|
79
85
|
*/
|
|
80
|
-
export const DefaultBlockAppender: import("react").ForwardRefExoticComponent<import("react").RefAttributes<
|
|
86
|
+
export declare const DefaultBlockAppender: import("react").ForwardRefExoticComponent<import("react").RefAttributes<unknown>>;
|
|
81
87
|
/**
|
|
82
88
|
* @deprecated since 5.3, use `wp.blockEditor.FontSizePicker` instead.
|
|
83
89
|
*/
|
|
84
|
-
export const FontSizePicker: import("react").ForwardRefExoticComponent<import("react").RefAttributes<
|
|
90
|
+
export declare const FontSizePicker: import("react").ForwardRefExoticComponent<import("react").RefAttributes<unknown>>;
|
|
85
91
|
/**
|
|
86
92
|
* @deprecated since 5.3, use `wp.blockEditor.Inserter` instead.
|
|
87
93
|
*/
|
|
88
|
-
export const Inserter: import("react").ForwardRefExoticComponent<import("react").RefAttributes<
|
|
94
|
+
export declare const Inserter: import("react").ForwardRefExoticComponent<import("react").RefAttributes<unknown>>;
|
|
89
95
|
/**
|
|
90
96
|
* @deprecated since 5.3, use `wp.blockEditor.InnerBlocks` instead.
|
|
91
97
|
*/
|
|
92
|
-
export const InnerBlocks: import("react").ForwardRefExoticComponent<import("react").RefAttributes<
|
|
98
|
+
export declare const InnerBlocks: import("react").ForwardRefExoticComponent<import("react").RefAttributes<unknown>>;
|
|
93
99
|
/**
|
|
94
100
|
* @deprecated since 5.3, use `wp.blockEditor.InspectorAdvancedControls` instead.
|
|
95
101
|
*/
|
|
96
|
-
export const InspectorAdvancedControls: import("react").ForwardRefExoticComponent<import("react").RefAttributes<
|
|
102
|
+
export declare const InspectorAdvancedControls: import("react").ForwardRefExoticComponent<import("react").RefAttributes<unknown>>;
|
|
97
103
|
/**
|
|
98
104
|
* @deprecated since 5.3, use `wp.blockEditor.InspectorControls` instead.
|
|
99
105
|
*/
|
|
100
|
-
export const InspectorControls: import("react").ForwardRefExoticComponent<import("react").RefAttributes<
|
|
106
|
+
export declare const InspectorControls: import("react").ForwardRefExoticComponent<import("react").RefAttributes<unknown>>;
|
|
101
107
|
/**
|
|
102
108
|
* @deprecated since 5.3, use `wp.blockEditor.PanelColorSettings` instead.
|
|
103
109
|
*/
|
|
104
|
-
export const PanelColorSettings: import("react").ForwardRefExoticComponent<import("react").RefAttributes<
|
|
110
|
+
export declare const PanelColorSettings: import("react").ForwardRefExoticComponent<import("react").RefAttributes<unknown>>;
|
|
105
111
|
/**
|
|
106
112
|
* @deprecated since 5.3, use `wp.blockEditor.PlainText` instead.
|
|
107
113
|
*/
|
|
108
|
-
export const PlainText: import("react").ForwardRefExoticComponent<import("react").RefAttributes<
|
|
114
|
+
export declare const PlainText: import("react").ForwardRefExoticComponent<import("react").RefAttributes<unknown>>;
|
|
109
115
|
/**
|
|
110
116
|
* @deprecated since 5.3, use `wp.blockEditor.RichTextShortcut` instead.
|
|
111
117
|
*/
|
|
112
|
-
export const RichTextShortcut: import("react").ForwardRefExoticComponent<import("react").RefAttributes<
|
|
118
|
+
export declare const RichTextShortcut: import("react").ForwardRefExoticComponent<import("react").RefAttributes<unknown>>;
|
|
113
119
|
/**
|
|
114
120
|
* @deprecated since 5.3, use `wp.blockEditor.RichTextToolbarButton` instead.
|
|
115
121
|
*/
|
|
116
|
-
export const RichTextToolbarButton: import("react").ForwardRefExoticComponent<import("react").RefAttributes<
|
|
122
|
+
export declare const RichTextToolbarButton: import("react").ForwardRefExoticComponent<import("react").RefAttributes<unknown>>;
|
|
117
123
|
/**
|
|
118
124
|
* @deprecated since 5.3, use `wp.blockEditor.__unstableRichTextInputEvent` instead.
|
|
119
125
|
*/
|
|
120
|
-
export const __unstableRichTextInputEvent: import("react").ForwardRefExoticComponent<import("react").RefAttributes<
|
|
126
|
+
export declare const __unstableRichTextInputEvent: import("react").ForwardRefExoticComponent<import("react").RefAttributes<unknown>>;
|
|
121
127
|
/**
|
|
122
128
|
* @deprecated since 5.3, use `wp.blockEditor.MediaPlaceholder` instead.
|
|
123
129
|
*/
|
|
124
|
-
export const MediaPlaceholder: import("react").ForwardRefExoticComponent<import("react").RefAttributes<
|
|
130
|
+
export declare const MediaPlaceholder: import("react").ForwardRefExoticComponent<import("react").RefAttributes<unknown>>;
|
|
125
131
|
/**
|
|
126
132
|
* @deprecated since 5.3, use `wp.blockEditor.MediaUpload` instead.
|
|
127
133
|
*/
|
|
128
|
-
export const MediaUpload: import("react").ForwardRefExoticComponent<import("react").RefAttributes<
|
|
134
|
+
export declare const MediaUpload: import("react").ForwardRefExoticComponent<import("react").RefAttributes<unknown>>;
|
|
129
135
|
/**
|
|
130
136
|
* @deprecated since 5.3, use `wp.blockEditor.MediaUploadCheck` instead.
|
|
131
137
|
*/
|
|
132
|
-
export const MediaUploadCheck: import("react").ForwardRefExoticComponent<import("react").RefAttributes<
|
|
138
|
+
export declare const MediaUploadCheck: import("react").ForwardRefExoticComponent<import("react").RefAttributes<unknown>>;
|
|
133
139
|
/**
|
|
134
140
|
* @deprecated since 5.3, use `wp.blockEditor.MultiSelectScrollIntoView` instead.
|
|
135
141
|
*/
|
|
136
|
-
export const MultiSelectScrollIntoView: import("react").ForwardRefExoticComponent<import("react").RefAttributes<
|
|
142
|
+
export declare const MultiSelectScrollIntoView: import("react").ForwardRefExoticComponent<import("react").RefAttributes<unknown>>;
|
|
137
143
|
/**
|
|
138
144
|
* @deprecated since 5.3, use `wp.blockEditor.NavigableToolbar` instead.
|
|
139
145
|
*/
|
|
140
|
-
export const NavigableToolbar: import("react").ForwardRefExoticComponent<import("react").RefAttributes<
|
|
146
|
+
export declare const NavigableToolbar: import("react").ForwardRefExoticComponent<import("react").RefAttributes<unknown>>;
|
|
141
147
|
/**
|
|
142
148
|
* @deprecated since 5.3, use `wp.blockEditor.ObserveTyping` instead.
|
|
143
149
|
*/
|
|
144
|
-
export const ObserveTyping: import("react").ForwardRefExoticComponent<import("react").RefAttributes<
|
|
150
|
+
export declare const ObserveTyping: import("react").ForwardRefExoticComponent<import("react").RefAttributes<unknown>>;
|
|
145
151
|
/**
|
|
146
152
|
* @deprecated since 5.3, use `wp.blockEditor.SkipToSelectedBlock` instead.
|
|
147
153
|
*/
|
|
148
|
-
export const SkipToSelectedBlock: import("react").ForwardRefExoticComponent<import("react").RefAttributes<
|
|
154
|
+
export declare const SkipToSelectedBlock: import("react").ForwardRefExoticComponent<import("react").RefAttributes<unknown>>;
|
|
149
155
|
/**
|
|
150
156
|
* @deprecated since 5.3, use `wp.blockEditor.URLInput` instead.
|
|
151
157
|
*/
|
|
152
|
-
export const URLInput: import("react").ForwardRefExoticComponent<import("react").RefAttributes<
|
|
158
|
+
export declare const URLInput: import("react").ForwardRefExoticComponent<import("react").RefAttributes<unknown>>;
|
|
153
159
|
/**
|
|
154
160
|
* @deprecated since 5.3, use `wp.blockEditor.URLInputButton` instead.
|
|
155
161
|
*/
|
|
156
|
-
export const URLInputButton: import("react").ForwardRefExoticComponent<import("react").RefAttributes<
|
|
162
|
+
export declare const URLInputButton: import("react").ForwardRefExoticComponent<import("react").RefAttributes<unknown>>;
|
|
157
163
|
/**
|
|
158
164
|
* @deprecated since 5.3, use `wp.blockEditor.URLPopover` instead.
|
|
159
165
|
*/
|
|
160
|
-
export const URLPopover: import("react").ForwardRefExoticComponent<import("react").RefAttributes<
|
|
166
|
+
export declare const URLPopover: import("react").ForwardRefExoticComponent<import("react").RefAttributes<unknown>>;
|
|
161
167
|
/**
|
|
162
168
|
* @deprecated since 5.3, use `wp.blockEditor.Warning` instead.
|
|
163
169
|
*/
|
|
164
|
-
export const Warning: import("react").ForwardRefExoticComponent<import("react").RefAttributes<
|
|
170
|
+
export declare const Warning: import("react").ForwardRefExoticComponent<import("react").RefAttributes<unknown>>;
|
|
165
171
|
/**
|
|
166
172
|
* @deprecated since 5.3, use `wp.blockEditor.WritingFlow` instead.
|
|
167
173
|
*/
|
|
168
|
-
export const WritingFlow: import("react").ForwardRefExoticComponent<import("react").RefAttributes<
|
|
169
|
-
export function createCustomColorsHOC(...args: any[]): any;
|
|
170
|
-
export function getColorClassName(...args: any[]): any;
|
|
171
|
-
export function getColorObjectByAttributeValues(...args: any[]): any;
|
|
172
|
-
export function getColorObjectByColorValue(...args: any[]): any;
|
|
173
|
-
export function getFontSize(...args: any[]): any;
|
|
174
|
-
export function getFontSizeClass(...args: any[]): any;
|
|
175
|
-
export function withColorContext(...args: any[]): any;
|
|
176
|
-
export function withColors(...args: any[]): any;
|
|
177
|
-
export function withFontSizes(...args: any[]): any;
|
|
174
|
+
export declare const WritingFlow: import("react").ForwardRefExoticComponent<import("react").RefAttributes<unknown>>;
|
|
178
175
|
/**
|
|
179
|
-
* @deprecated since 5.3, use `wp.blockEditor.
|
|
176
|
+
* @deprecated since 5.3, use `wp.blockEditor.createCustomColorsHOC` instead.
|
|
177
|
+
*/
|
|
178
|
+
export declare const createCustomColorsHOC: (...args: any[]) => any;
|
|
179
|
+
/**
|
|
180
|
+
* @deprecated since 5.3, use `wp.blockEditor.getColorClassName` instead.
|
|
181
|
+
*/
|
|
182
|
+
export declare const getColorClassName: (...args: any[]) => any;
|
|
183
|
+
/**
|
|
184
|
+
* @deprecated since 5.3, use `wp.blockEditor.getColorObjectByAttributeValues` instead.
|
|
185
|
+
*/
|
|
186
|
+
export declare const getColorObjectByAttributeValues: (...args: any[]) => any;
|
|
187
|
+
/**
|
|
188
|
+
* @deprecated since 5.3, use `wp.blockEditor.getColorObjectByColorValue` instead.
|
|
189
|
+
*/
|
|
190
|
+
export declare const getColorObjectByColorValue: (...args: any[]) => any;
|
|
191
|
+
/**
|
|
192
|
+
* @deprecated since 5.3, use `wp.blockEditor.getFontSize` instead.
|
|
193
|
+
*/
|
|
194
|
+
export declare const getFontSize: (...args: any[]) => any;
|
|
195
|
+
/**
|
|
196
|
+
* @deprecated since 5.3, use `wp.blockEditor.getFontSizeClass` instead.
|
|
197
|
+
*/
|
|
198
|
+
export declare const getFontSizeClass: (...args: any[]) => any;
|
|
199
|
+
/**
|
|
200
|
+
* @deprecated since 5.3, use `wp.blockEditor.createCustomColorsHOC` instead.
|
|
201
|
+
*/
|
|
202
|
+
export declare const withColorContext: (...args: any[]) => any;
|
|
203
|
+
/**
|
|
204
|
+
* @deprecated since 5.3, use `wp.blockEditor.withColors` instead.
|
|
205
|
+
*/
|
|
206
|
+
export declare const withColors: (...args: any[]) => any;
|
|
207
|
+
/**
|
|
208
|
+
* @deprecated since 5.3, use `wp.blockEditor.withFontSizes` instead.
|
|
180
209
|
*/
|
|
181
|
-
export const
|
|
210
|
+
export declare const withFontSizes: (...args: any[]) => any;
|
|
182
211
|
//# sourceMappingURL=deprecated.d.ts.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"deprecated.d.ts","sourceRoot":"","sources":["../../src/components/deprecated.js"],"names":[],"mappings":"
|
|
1
|
+
{"version":3,"file":"deprecated.d.ts","sourceRoot":"","sources":["../../src/components/deprecated.js"],"names":[],"mappings":"AA6DA,OAAO,EAAE,OAAO,IAAI,gBAAgB,EAAE,MAAM,+BAA+B,CAAC;AAmC5E;;GAEG;AACH,QAAA,MAAM,QAAQ,mFAAgE,CAAC;AAM/E,OAAO,EAAE,QAAQ,EAAE,CAAC;AAEpB;;GAEG;AACH,eAAO,MAAM,YAAY,mFAGxB,CAAC;AACF;;GAEG;AACH,eAAO,MAAM,gBAAgB,mFAG5B,CAAC;AACF;;GAEG;AACH,eAAO,MAAM,qBAAqB,mFAGjC,CAAC;AACF;;GAEG;AACH,eAAO,MAAM,aAAa,mFAIzB,CAAC;AACF;;GAEG;AACH,eAAO,MAAM,SAAS,mFAAmD,CAAC;AAC1E;;GAEG;AACH,eAAO,MAAM,4BAA4B,mFAGxC,CAAC;AACF;;GAEG;AACH,eAAO,MAAM,mBAAmB,mFAI/B,CAAC;AACF;;GAEG;AACH,eAAO,MAAM,SAAS,mFAAmD,CAAC;AAC1E;;GAEG;AACH,eAAO,MAAM,cAAc,mFAG1B,CAAC;AACF;;GAEG;AACH,eAAO,MAAM,SAAS,mFAAmD,CAAC;AAC1E;;GAEG;AACH,eAAO,MAAM,UAAU,mFAAqD,CAAC;AAC7E;;GAEG;AACH,eAAO,MAAM,uBAAuB,mFAGnC,CAAC;AACF;;GAEG;AACH,eAAO,MAAM,qBAAqB,mFAGjC,CAAC;AACF;;GAEG;AACH,eAAO,MAAM,iBAAiB,mFAG7B,CAAC;AACF;;GAEG;AACH,eAAO,MAAM,UAAU,mFAAqD,CAAC;AAC7E;;GAEG;AACH,eAAO,MAAM,YAAY,mFAGxB,CAAC;AACF;;GAEG;AACH,eAAO,MAAM,YAAY,mFAGxB,CAAC;AACF;;GAEG;AACH,eAAO,MAAM,eAAe,mFAG3B,CAAC;AACF;;GAEG;AACH,eAAO,MAAM,WAAW,mFAAuD,CAAC;AAChF;;GAEG;AACH,eAAO,MAAM,oBAAoB,mFAGhC,CAAC;AACF;;GAEG;AACH,eAAO,MAAM,cAAc,mFAG1B,CAAC;AACF;;GAEG;AACH,eAAO,MAAM,QAAQ,mFAAiD,CAAC;AACvE;;GAEG;AACH,eAAO,MAAM,WAAW,mFAIrB,CAAC;AACJ;;GAEG;AACH,eAAO,MAAM,yBAAyB,mFAIrC,CAAC;AACF;;GAEG;AACH,eAAO,MAAM,iBAAiB,mFAI7B,CAAC;AACF;;GAEG;AACH,eAAO,MAAM,kBAAkB,mFAG9B,CAAC;AACF;;GAEG;AACH,eAAO,MAAM,SAAS,mFAAmD,CAAC;AAC1E;;GAEG;AACH,eAAO,MAAM,gBAAgB,mFAG5B,CAAC;AACF;;GAEG;AACH,eAAO,MAAM,qBAAqB,mFAGjC,CAAC;AACF;;GAEG;AACH,eAAO,MAAM,4BAA4B,mFAGxC,CAAC;AACF;;GAEG;AACH,eAAO,MAAM,gBAAgB,mFAG5B,CAAC;AACF;;GAEG;AACH,eAAO,MAAM,WAAW,mFAAuD,CAAC;AAChF;;GAEG;AACH,eAAO,MAAM,gBAAgB,mFAG5B,CAAC;AACF;;GAEG;AACH,eAAO,MAAM,yBAAyB,mFAGrC,CAAC;AACF;;GAEG;AACH,eAAO,MAAM,gBAAgB,mFAG5B,CAAC;AACF;;GAEG;AACH,eAAO,MAAM,aAAa,mFAGzB,CAAC;AACF;;GAEG;AACH,eAAO,MAAM,mBAAmB,mFAG/B,CAAC;AACF;;GAEG;AACH,eAAO,MAAM,QAAQ,mFAAiD,CAAC;AACvE;;GAEG;AACH,eAAO,MAAM,cAAc,mFAG1B,CAAC;AACF;;GAEG;AACH,eAAO,MAAM,UAAU,mFAAqD,CAAC;AAC7E;;GAEG;AACH,eAAO,MAAM,OAAO,mFAA+C,CAAC;AACpE;;GAEG;AACH,eAAO,MAAM,WAAW,mFAAuD,CAAC;AAEhF;;GAEG;AACH,eAAO,MAAM,qBAAqB,yBAGjC,CAAC;AACF;;GAEG;AACH,eAAO,MAAM,iBAAiB,yBAG7B,CAAC;AACF;;GAEG;AACH,eAAO,MAAM,+BAA+B,yBAG3C,CAAC;AACF;;GAEG;AACH,eAAO,MAAM,0BAA0B,yBAGtC,CAAC;AACF;;GAEG;AACH,eAAO,MAAM,WAAW,yBAAsD,CAAC;AAC/E;;GAEG;AACH,eAAO,MAAM,gBAAgB,yBAG5B,CAAC;AACF;;GAEG;AACH,eAAO,MAAM,gBAAgB,yBAG5B,CAAC;AACF;;GAEG;AACH,eAAO,MAAM,UAAU,yBAAoD,CAAC;AAC5E;;GAEG;AACH,eAAO,MAAM,aAAa,yBAGzB,CAAC"}
|
|
@@ -1,3 +1,4 @@
|
|
|
1
|
+
export type IconType = import("@wordpress/components").IconType;
|
|
1
2
|
/**
|
|
2
3
|
* This component renders a navigation bar at the top of the editor. It displays the title of the current document,
|
|
3
4
|
* a back button (if applicable), and a command center button. It also handles different states of the document,
|
|
@@ -17,7 +18,6 @@
|
|
|
17
18
|
*/
|
|
18
19
|
export default function DocumentBar(props: {
|
|
19
20
|
title: string;
|
|
20
|
-
icon: IconType;
|
|
21
|
-
}):
|
|
22
|
-
export type IconType = import("@wordpress/components").IconType;
|
|
21
|
+
icon: import("@wordpress/components").IconType;
|
|
22
|
+
}): import("react").ReactNode;
|
|
23
23
|
//# sourceMappingURL=index.d.ts.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../../src/components/document-bar/index.js"],"names":[],"mappings":"
|
|
1
|
+
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../../src/components/document-bar/index.js"],"names":[],"mappings":"AAqCI,YAAoD,QAAQ,GAAlD,OAAO,uBAAuB,EAAE,QAAQ,CAAU;AAIhE;;;;;;;;;;;;;;;;GAgBG;AACH,MAAM,CAAC,OAAO,UAAU,WAAW,CAAE,KAAK,EANvC;IAAwB,KAAK,EAArB,MAAM,CACd;IAAwB,IAAI,2CAG5B;CAEuC,6BA0NzC"}
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"useEditedSectionDetails.d.ts","sourceRoot":"","sources":["../../../src/components/document-bar/useEditedSectionDetails.js"],"names":[],"mappings":"AAaA;;;;;GAKG;AACH,
|
|
1
|
+
{"version":3,"file":"useEditedSectionDetails.d.ts","sourceRoot":"","sources":["../../../src/components/document-bar/useEditedSectionDetails.js"],"names":[],"mappings":"AAaA;;;;;GAKG;AACH,MAAM,CAAC,OAAO,UAAU,uBAAuB,IAFnC,SAAO,IAAI,CAgFtB"}
|
|
@@ -7,6 +7,6 @@
|
|
|
7
7
|
* @return {React.ReactNode} The component to be rendered or null if there are headings.
|
|
8
8
|
*/
|
|
9
9
|
export default function DocumentOutlineCheck({ children }: {
|
|
10
|
-
children:
|
|
11
|
-
}):
|
|
10
|
+
children: import("react").ReactNode;
|
|
11
|
+
}): import("react").ReactNode;
|
|
12
12
|
//# sourceMappingURL=check.d.ts.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"check.d.ts","sourceRoot":"","sources":["../../../src/components/document-outline/check.js"],"names":[],"mappings":"AAMA;;;;;;;GAOG;AACH,
|
|
1
|
+
{"version":3,"file":"check.d.ts","sourceRoot":"","sources":["../../../src/components/document-outline/check.js"],"names":[],"mappings":"AAMA;;;;;;;GAOG;AACH,MAAM,CAAC,OAAO,UAAU,oBAAoB,CAAE,EAAE,QAAQ,EAAE,EAJvD;IAA+B,QAAQ,4BAEvC;CAEuD,6BAYzD"}
|
|
@@ -7,8 +7,8 @@
|
|
|
7
7
|
*
|
|
8
8
|
* @return {React.ReactNode} The rendered component.
|
|
9
9
|
*/
|
|
10
|
-
export default function DocumentOutline({ onSelect, hasOutlineItemsDisabled
|
|
10
|
+
export default function DocumentOutline({ onSelect, hasOutlineItemsDisabled }: {
|
|
11
11
|
onSelect: Function;
|
|
12
12
|
hasOutlineItemsDisabled: boolean;
|
|
13
|
-
}):
|
|
13
|
+
}): import("react").ReactNode;
|
|
14
14
|
//# sourceMappingURL=index.d.ts.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../../src/components/document-outline/index.js"],"names":[],"mappings":"AAkGA;;;;;;;;GAQG;AACH,
|
|
1
|
+
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../../src/components/document-outline/index.js"],"names":[],"mappings":"AAkGA;;;;;;;;GAQG;AACH,MAAM,CAAC,OAAO,UAAU,eAAe,CAAE,EACxC,QAAQ,EACR,uBAAuB,EACvB,EARE;IAAwB,QAAQ,WAChC;IAAwB,uBAAuB,EAAvC,OAAO,CAEf;CAKF,6BA2IA"}
|
|
@@ -1,10 +1,10 @@
|
|
|
1
|
-
|
|
2
|
-
declare function TableOfContentsItem({ children, isValid, isDisabled, level, href, onSelect, }: {
|
|
1
|
+
declare const TableOfContentsItem: ({ children, isValid, isDisabled, level, href, onSelect, }: {
|
|
3
2
|
children: any;
|
|
4
|
-
|
|
3
|
+
href: any;
|
|
5
4
|
isDisabled: any;
|
|
5
|
+
isValid: any;
|
|
6
6
|
level: any;
|
|
7
|
-
href: any;
|
|
8
7
|
onSelect: any;
|
|
9
|
-
})
|
|
8
|
+
}) => import("react").JSX.Element;
|
|
9
|
+
export default TableOfContentsItem;
|
|
10
10
|
//# sourceMappingURL=item.d.ts.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"item.d.ts","sourceRoot":"","sources":["../../../src/components/document-outline/item.js"],"names":[],"mappings":"
|
|
1
|
+
{"version":3,"file":"item.d.ts","sourceRoot":"","sources":["../../../src/components/document-outline/item.js"],"names":[],"mappings":"AAKA,QAAA,MAAM,mBAAmB;;;;;;;iCA4CxB,CAAC;eAEa,mBAAmB"}
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../../src/components/document-tools/index.js"],"names":[],"mappings":"
|
|
1
|
+
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../../src/components/document-tools/index.js"],"names":[],"mappings":"AA0BA,iBAAS,aAAa,CAAE,EAAE,SAAS,EAAE,iBAAyB,EAAE;;;CAAA,+BAyI/D;eAEc,aAAa"}
|
|
@@ -1,14 +1,14 @@
|
|
|
1
|
-
export default Editor;
|
|
2
1
|
declare function Editor({ postType, postId, templateId, settings, children, initialEdits, onActionPerformed, extraContent, extraSidebarPanels, ...props }: {
|
|
3
2
|
[x: string]: any;
|
|
4
|
-
postType: any;
|
|
5
|
-
postId: any;
|
|
6
|
-
templateId: any;
|
|
7
|
-
settings: any;
|
|
8
3
|
children: any;
|
|
9
|
-
initialEdits: any;
|
|
10
|
-
onActionPerformed: any;
|
|
11
4
|
extraContent: any;
|
|
12
5
|
extraSidebarPanels: any;
|
|
6
|
+
initialEdits: any;
|
|
7
|
+
onActionPerformed: any;
|
|
8
|
+
postId: any;
|
|
9
|
+
postType: any;
|
|
10
|
+
settings: any;
|
|
11
|
+
templateId: any;
|
|
13
12
|
}): import("react").JSX.Element;
|
|
13
|
+
export default Editor;
|
|
14
14
|
//# sourceMappingURL=index.d.ts.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../../src/components/editor/index.js"],"names":[],"mappings":"
|
|
1
|
+
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../../src/components/editor/index.js"],"names":[],"mappings":"AAoBA,iBAAS,MAAM,CAAE,EAChB,QAAQ,EACR,MAAM,EACN,UAAU,EACV,QAAQ,EACR,QAAQ,EACR,YAAY,EAGZ,iBAAiB,EAIjB,YAAY,EACZ,kBAAkB,EAClB,GAAG,KAAK,EACR;;;;;;;;;;;CAAA,+BAiGA;eAEc,MAAM"}
|
|
@@ -1,4 +1,13 @@
|
|
|
1
|
-
declare const _default: import("react").ForwardRefExoticComponent<Omit<any, "ref"> & import("react").RefAttributes<any>>;
|
|
2
|
-
export default _default;
|
|
3
1
|
export type Ref = React.Ref<HTMLElement>;
|
|
2
|
+
/** @typedef {React.Ref<HTMLElement>} Ref */
|
|
3
|
+
/**
|
|
4
|
+
* Renders the redo button for the editor history.
|
|
5
|
+
*
|
|
6
|
+
* @param {Object} props - Props.
|
|
7
|
+
* @param {Ref} ref - Forwarded ref.
|
|
8
|
+
*
|
|
9
|
+
* @return {React.ReactNode} The rendered component.
|
|
10
|
+
*/
|
|
11
|
+
declare const _default: import("react").ForwardRefExoticComponent<Omit<any, "ref"> & import("react").RefAttributes<unknown>>;
|
|
12
|
+
export default _default;
|
|
4
13
|
//# sourceMappingURL=redo.d.ts.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"redo.d.ts","sourceRoot":"","sources":["../../../src/components/editor-history/redo.js"],"names":[],"mappings":"
|
|
1
|
+
{"version":3,"file":"redo.d.ts","sourceRoot":"","sources":["../../../src/components/editor-history/redo.js"],"names":[],"mappings":"AA4CI,YAAkC,GAAG,GAA3B,KAAK,CAAC,GAAG,CAAC,WAAW,CAAC,CAAK;AAAzC,4CAA4C;AAE5C;;;;;;;GAOG"}
|
|
@@ -1,4 +1,13 @@
|
|
|
1
|
-
declare const _default: import("react").ForwardRefExoticComponent<Omit<any, "ref"> & import("react").RefAttributes<any>>;
|
|
2
|
-
export default _default;
|
|
3
1
|
export type Ref = React.Ref<HTMLElement>;
|
|
2
|
+
/** @typedef {React.Ref<HTMLElement>} Ref */
|
|
3
|
+
/**
|
|
4
|
+
* Renders the undo button for the editor history.
|
|
5
|
+
*
|
|
6
|
+
* @param {Object} props - Props.
|
|
7
|
+
* @param {Ref} ref - Forwarded ref.
|
|
8
|
+
*
|
|
9
|
+
* @return {React.ReactNode} The rendered component.
|
|
10
|
+
*/
|
|
11
|
+
declare const _default: import("react").ForwardRefExoticComponent<Omit<any, "ref"> & import("react").RefAttributes<unknown>>;
|
|
12
|
+
export default _default;
|
|
4
13
|
//# sourceMappingURL=undo.d.ts.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"undo.d.ts","sourceRoot":"","sources":["../../../src/components/editor-history/undo.js"],"names":[],"mappings":"
|
|
1
|
+
{"version":3,"file":"undo.d.ts","sourceRoot":"","sources":["../../../src/components/editor-history/undo.js"],"names":[],"mappings":"AAwCI,YAAkC,GAAG,GAA3B,KAAK,CAAC,GAAG,CAAC,WAAW,CAAC,CAAK;AAAzC,4CAA4C;AAE5C;;;;;;;GAOG"}
|
|
@@ -1,13 +1,13 @@
|
|
|
1
|
-
export default function EditorInterface({ className, children, forceIsDirty, contentRef, disableIframe, autoFocus, customSaveButton, customSavePanel, forceDisableBlockTools, iframeProps
|
|
2
|
-
|
|
1
|
+
export default function EditorInterface({ className, children, forceIsDirty, contentRef, disableIframe, autoFocus, customSaveButton, customSavePanel, forceDisableBlockTools, iframeProps }: {
|
|
2
|
+
autoFocus: any;
|
|
3
3
|
children: any;
|
|
4
|
-
|
|
4
|
+
className: any;
|
|
5
5
|
contentRef: any;
|
|
6
|
-
disableIframe: any;
|
|
7
|
-
autoFocus: any;
|
|
8
6
|
customSaveButton: any;
|
|
9
7
|
customSavePanel: any;
|
|
8
|
+
disableIframe: any;
|
|
10
9
|
forceDisableBlockTools: any;
|
|
10
|
+
forceIsDirty: any;
|
|
11
11
|
iframeProps: any;
|
|
12
12
|
}): import("react").JSX.Element;
|
|
13
13
|
//# sourceMappingURL=index.d.ts.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../../src/components/editor-interface/index.js"],"names":[],"mappings":"AA0DA;;;;;;;;;;;
|
|
1
|
+
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../../src/components/editor-interface/index.js"],"names":[],"mappings":"AA0DA,MAAM,CAAC,OAAO,UAAU,eAAe,CAAE,EACxC,SAAS,EACT,QAAQ,EACR,YAAY,EACZ,UAAU,EACV,aAAa,EACb,SAAS,EACT,gBAAgB,EAChB,eAAe,EACf,sBAAsB,EACtB,WAAW,EACX;;;;;;;;;;;CAAA,+BA0NA"}
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
/**
|
|
2
2
|
* @deprecated since 7.0, use `wp.notices.InlineNotices` instead.
|
|
3
3
|
*/
|
|
4
|
-
export function EditorNotices(): import("react").JSX.Element;
|
|
4
|
+
export declare function EditorNotices(): import("react").JSX.Element;
|
|
5
5
|
export default EditorNotices;
|
|
6
6
|
//# sourceMappingURL=index.d.ts.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../../src/components/editor-notices/index.js"],"names":[],"mappings":"AAWA;;GAEG;AACH,
|
|
1
|
+
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../../src/components/editor-notices/index.js"],"names":[],"mappings":"AAWA;;GAEG;AACH,wBAAgB,aAAa,gCAe5B;eAEc,aAAa"}
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../../src/components/editor-snackbars/index.js"],"names":[],"mappings":"AAMA;;GAEG;AACH,
|
|
1
|
+
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../../src/components/editor-snackbars/index.js"],"names":[],"mappings":"AAMA;;GAEG;AACH,MAAM,CAAC,OAAO,UAAU,eAAe,gCAQtC"}
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"entity-record-item.d.ts","sourceRoot":"","sources":["../../../src/components/entities-saved-states/entity-record-item.js"],"names":[],"mappings":"AAgBA;;;;
|
|
1
|
+
{"version":3,"file":"entity-record-item.d.ts","sourceRoot":"","sources":["../../../src/components/entities-saved-states/entity-record-item.js"],"names":[],"mappings":"AAgBA,MAAM,CAAC,OAAO,UAAU,gBAAgB,CAAE,EAAE,MAAM,EAAE,OAAO,EAAE,QAAQ,EAAE;;;;CAAA,+BAwDtE"}
|
|
@@ -1,6 +1,6 @@
|
|
|
1
|
-
export default function EntityTypeList({ list, unselectedEntities, setUnselectedEntities
|
|
1
|
+
export default function EntityTypeList({ list, unselectedEntities, setUnselectedEntities }: {
|
|
2
2
|
list: any;
|
|
3
|
-
unselectedEntities: any;
|
|
4
3
|
setUnselectedEntities: any;
|
|
4
|
+
unselectedEntities: any;
|
|
5
5
|
}): import("react").JSX.Element;
|
|
6
6
|
//# sourceMappingURL=entity-type-list.d.ts.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"entity-type-list.d.ts","sourceRoot":"","sources":["../../../src/components/entities-saved-states/entity-type-list.js"],"names":[],"mappings":"AA2EA;;;;
|
|
1
|
+
{"version":3,"file":"entity-type-list.d.ts","sourceRoot":"","sources":["../../../src/components/entities-saved-states/entity-type-list.js"],"names":[],"mappings":"AA2EA,MAAM,CAAC,OAAO,UAAU,cAAc,CAAE,EACvC,IAAI,EACJ,kBAAkB,EAClB,qBAAqB,EACrB;;;;CAAA,+BAkDA"}
|
|
@@ -1,2 +1,11 @@
|
|
|
1
|
-
|
|
1
|
+
/**
|
|
2
|
+
* Custom hook that determines if any entities are dirty (edited) and provides a way to manage selected/unselected entities.
|
|
3
|
+
*
|
|
4
|
+
* @return {Object} An object containing the following properties:
|
|
5
|
+
* - dirtyEntityRecords: An array of dirty entity records.
|
|
6
|
+
* - isDirty: A boolean indicating if there are any dirty entity records.
|
|
7
|
+
* - setUnselectedEntities: A function to set the unselected entities.
|
|
8
|
+
* - unselectedEntities: An array of unselected entities.
|
|
9
|
+
*/
|
|
10
|
+
export declare const useIsDirty: () => Object;
|
|
2
11
|
//# sourceMappingURL=use-is-dirty.d.ts.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"use-is-dirty.d.ts","sourceRoot":"","sources":["../../../../src/components/entities-saved-states/hooks/use-is-dirty.js"],"names":[],"mappings":"
|
|
1
|
+
{"version":3,"file":"use-is-dirty.d.ts","sourceRoot":"","sources":["../../../../src/components/entities-saved-states/hooks/use-is-dirty.js"],"names":[],"mappings":"AAOA;;;;;;;;GAQG;AACH,eAAO,MAAM,UAAU,QANX,MAsFX,CAAC"}
|