maglevcms 2.1.0 → 3.0.0.beta2
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.
- checksums.yaml +4 -4
- data/README.md +53 -13
- data/Rakefile +0 -4
- data/app/assets/builds/maglev/tailwind.css +14393 -0
- data/app/assets/config/maglev_manifest.js +7 -0
- data/app/assets/javascripts/maglev/client/dom-operations.js +282 -0
- data/app/{frontend/live-preview-client → assets/javascripts/maglev/client}/iframe-decorator.js +81 -15
- data/app/{frontend/live-preview-client/message.js → assets/javascripts/maglev/client/incoming-messages.js} +14 -12
- data/app/assets/javascripts/maglev/client/index.js +26 -0
- data/app/{frontend/live-preview-client → assets/javascripts/maglev/client}/utils.js +4 -0
- data/app/assets/javascripts/maglev/editor/controllers/app/forms/section_form_controller.js +46 -0
- data/app/assets/javascripts/maglev/editor/controllers/app/forms/style_form_controller.js +19 -0
- data/app/assets/javascripts/maglev/editor/controllers/app/index.js +15 -0
- data/app/assets/javascripts/maglev/editor/controllers/app/page_preview_controller.js +163 -0
- data/app/assets/javascripts/maglev/editor/controllers/app/preview_notification_center_controller.js +151 -0
- data/app/assets/javascripts/maglev/editor/controllers/app/setting_controller.js +42 -0
- data/app/assets/javascripts/maglev/editor/controllers/application.js +9 -0
- data/app/assets/javascripts/maglev/editor/controllers/index.js +3 -0
- data/app/assets/javascripts/maglev/editor/controllers/shared/auto_save_controller.js +16 -0
- data/app/assets/javascripts/maglev/editor/controllers/shared/broken_image_controller.js +16 -0
- data/app/assets/javascripts/maglev/editor/controllers/shared/copy_to_clipboard_controller.js +36 -0
- data/app/assets/javascripts/maglev/editor/controllers/shared/disappearance_controller.js +21 -0
- data/app/assets/javascripts/maglev/editor/controllers/shared/dispatcher_controller.js +12 -0
- data/app/assets/javascripts/maglev/editor/controllers/shared/form_refresh_controller.js +15 -0
- data/app/assets/javascripts/maglev/editor/controllers/shared/index.js +27 -0
- data/app/assets/javascripts/maglev/editor/controllers/shared/max_length_controller.js +30 -0
- data/app/assets/javascripts/maglev/editor/controllers/shared/prevent_same_path.js +20 -0
- data/app/assets/javascripts/maglev/editor/controllers/shared/reload_page_controller.js +7 -0
- data/app/assets/javascripts/maglev/editor/controllers/shared/sortable_controller.js +64 -0
- data/app/assets/javascripts/maglev/editor/controllers/shared/submit_button_controller.js +45 -0
- data/app/assets/javascripts/maglev/editor/controllers/shared/transition_controller.js +14 -0
- data/app/assets/javascripts/maglev/editor/controllers/uikit.js +39 -0
- data/app/assets/javascripts/maglev/editor/controllers/utils.js +10 -0
- data/app/assets/javascripts/maglev/editor/index.js +66 -0
- data/app/assets/stylesheets/maglev/application.css +88 -0
- data/app/{frontend/editor/design/components/rich-text-editor.scss → assets/stylesheets/maglev/tailwind.css.erb} +30 -15
- data/app/components/maglev/editor/setting_registry.rb +59 -0
- data/app/components/maglev/editor/settings/base_component.rb +55 -0
- data/app/components/maglev/editor/settings/checkbox/checkbox_component.html.erb +16 -0
- data/app/components/maglev/editor/settings/checkbox/checkbox_component.rb +12 -0
- data/app/components/maglev/editor/settings/collection_item/collection_item_component.html.erb +25 -0
- data/app/components/maglev/editor/settings/collection_item/collection_item_component.rb +19 -0
- data/app/components/maglev/editor/settings/color/color_component.html.erb +17 -0
- data/app/components/maglev/editor/settings/color/color_component.rb +12 -0
- data/app/components/maglev/editor/settings/divider/divider_component.html.erb +12 -0
- data/app/components/maglev/editor/settings/divider/divider_component.rb +15 -0
- data/app/components/maglev/editor/settings/hint/hint_component.html.erb +3 -0
- data/app/components/maglev/editor/settings/hint/hint_component.rb +12 -0
- data/app/components/maglev/editor/settings/icon/icon_component.html.erb +21 -0
- data/app/components/maglev/editor/settings/icon/icon_component.rb +15 -0
- data/app/components/maglev/editor/settings/image/image_component.html.erb +26 -0
- data/app/components/maglev/editor/settings/image/image_component.rb +23 -0
- data/app/components/maglev/editor/settings/link/link_component.html.erb +22 -0
- data/app/components/maglev/editor/settings/link/link_component.rb +19 -0
- data/app/components/maglev/editor/settings/select/select_component.html.erb +20 -0
- data/app/components/maglev/editor/settings/select/select_component.rb +27 -0
- data/app/components/maglev/editor/settings/text/richtext_component.html.erb +22 -0
- data/app/components/maglev/editor/settings/text/richtext_component.rb +12 -0
- data/app/components/maglev/editor/settings/text/text_component.html.erb +18 -0
- data/app/components/maglev/editor/settings/text/text_component.rb +12 -0
- data/app/components/maglev/editor/settings/text/textarea_component.html.erb +21 -0
- data/app/components/maglev/editor/settings/text/textarea_component.rb +12 -0
- data/app/components/maglev/editor/settings_group_component.html.erb +5 -0
- data/app/components/maglev/editor/settings_group_component.rb +30 -0
- data/app/components/maglev/section_component.rb +10 -7
- data/app/components/maglev/uikit/app_layout/layout_component.html.erb +15 -0
- data/app/components/maglev/uikit/app_layout/layout_component.rb +19 -0
- data/app/components/maglev/uikit/app_layout/sidebar/link_component.html.erb +5 -0
- data/app/components/maglev/uikit/app_layout/sidebar/link_component.rb +40 -0
- data/app/components/maglev/uikit/app_layout/sidebar_component.html.erb +19 -0
- data/app/components/maglev/uikit/app_layout/sidebar_component.rb +11 -0
- data/app/components/maglev/uikit/app_layout/topbar/logo_component.html.erb +3 -0
- data/app/components/maglev/uikit/app_layout/topbar/logo_component.rb +18 -0
- data/app/components/maglev/uikit/app_layout/topbar/page_info_component.html.erb +26 -0
- data/app/components/maglev/uikit/app_layout/topbar/page_info_component.rb +28 -0
- data/app/components/maglev/uikit/app_layout/topbar_component.html.erb +15 -0
- data/app/components/maglev/uikit/app_layout/topbar_component.rb +21 -0
- data/app/components/maglev/uikit/badge_component.rb +40 -0
- data/app/components/maglev/uikit/base_component.rb +15 -0
- data/app/components/maglev/uikit/breadcrumbs/breadcrumbs_component.html.erb +10 -0
- data/app/components/maglev/uikit/breadcrumbs/breadcrumbs_component.rb +11 -0
- data/app/components/maglev/uikit/breadcrumbs/link_component.html.erb +12 -0
- data/app/components/maglev/uikit/breadcrumbs/link_component.rb +25 -0
- data/app/components/maglev/uikit/collapsible/collapsible_component.html.erb +5 -0
- data/app/components/maglev/uikit/collapsible/collapsible_component.rb +11 -0
- data/app/components/maglev/uikit/collapsible/collapsible_controller.js +9 -0
- data/app/components/maglev/uikit/collapsible/item_component.html.erb +17 -0
- data/app/components/maglev/uikit/collapsible/item_component.rb +11 -0
- data/app/components/maglev/uikit/device_toggler_component/device_toggler_component.html.erb +16 -0
- data/app/components/maglev/uikit/device_toggler_component/device_toggler_controller.js +25 -0
- data/app/components/maglev/uikit/device_toggler_component.rb +28 -0
- data/app/components/maglev/uikit/dropdown_component/dropdown_component.html.erb +18 -0
- data/app/components/maglev/uikit/dropdown_component/dropdown_controller.js +69 -0
- data/app/components/maglev/uikit/dropdown_component.rb +15 -0
- data/app/components/maglev/uikit/form/checkbox_component.html.erb +17 -0
- data/app/components/maglev/uikit/form/checkbox_component.rb +26 -0
- data/app/components/maglev/uikit/form/checkbox_controller.js +7 -0
- data/app/components/maglev/uikit/form/color_field_component.html.erb +76 -0
- data/app/components/maglev/uikit/form/color_field_component.rb +57 -0
- data/app/components/maglev/uikit/form/color_field_controller.js +25 -0
- data/app/components/maglev/uikit/form/combobox/list_component.html.erb +14 -0
- data/app/components/maglev/uikit/form/combobox/list_component.rb +13 -0
- data/app/components/maglev/uikit/form/combobox/option_component.html.erb +16 -0
- data/app/components/maglev/uikit/form/combobox/option_component.rb +22 -0
- data/app/components/maglev/uikit/form/combobox_component.html.erb +75 -0
- data/app/components/maglev/uikit/form/combobox_component.rb +64 -0
- data/app/components/maglev/uikit/form/combobox_controller.js +385 -0
- data/app/components/maglev/uikit/form/icon_field_component.html.erb +76 -0
- data/app/components/maglev/uikit/form/icon_field_component.rb +35 -0
- data/app/components/maglev/uikit/form/icon_field_controller.js +38 -0
- data/app/components/maglev/uikit/form/image_field_component.html.erb +101 -0
- data/app/components/maglev/uikit/form/image_field_component.rb +52 -0
- data/app/components/maglev/uikit/form/image_field_controller.js +74 -0
- data/app/components/maglev/uikit/form/link/base_component.rb +19 -0
- data/app/components/maglev/uikit/form/link/email_link_component.html.erb +16 -0
- data/app/components/maglev/uikit/form/link/email_link_component.rb +12 -0
- data/app/components/maglev/uikit/form/link/page_link_component.html.erb +17 -0
- data/app/components/maglev/uikit/form/link/page_link_component.rb +12 -0
- data/app/components/maglev/uikit/form/link/static_page_link_component.html.erb +16 -0
- data/app/components/maglev/uikit/form/link/static_page_link_component.rb +12 -0
- data/app/components/maglev/uikit/form/link/url_link_component.html.erb +16 -0
- data/app/components/maglev/uikit/form/link/url_link_component.rb +19 -0
- data/app/components/maglev/uikit/form/link_component.html.erb +55 -0
- data/app/components/maglev/uikit/form/link_component.rb +80 -0
- data/app/components/maglev/uikit/form/link_controller.js +36 -0
- data/app/components/maglev/uikit/form/richtext/block_button_component.html.erb +38 -0
- data/app/components/maglev/uikit/form/richtext/block_button_component.rb +22 -0
- data/app/components/maglev/uikit/form/richtext/button_component.html.erb +16 -0
- data/app/components/maglev/uikit/form/richtext/button_component.rb +19 -0
- data/app/components/maglev/uikit/form/richtext/button_group_component.html.erb +7 -0
- data/app/components/maglev/uikit/form/richtext/button_group_component.rb +13 -0
- data/app/components/maglev/uikit/form/richtext/toolbar_component.html.erb +23 -0
- data/app/components/maglev/uikit/form/richtext/toolbar_component.rb +19 -0
- data/app/components/maglev/uikit/form/richtext_component.html.erb +28 -0
- data/app/components/maglev/uikit/form/richtext_component.rb +54 -0
- data/app/components/maglev/uikit/form/richtext_controller.js +248 -0
- data/app/components/maglev/uikit/form/search_form_component.html.erb +24 -0
- data/app/components/maglev/uikit/form/search_form_component.rb +42 -0
- data/app/components/maglev/uikit/form/search_form_controller.js +31 -0
- data/app/components/maglev/uikit/form/select_component.html.erb +19 -0
- data/app/components/maglev/uikit/form/select_component.rb +52 -0
- data/app/components/maglev/uikit/form/select_controller.js +7 -0
- data/app/components/maglev/uikit/form/text_field_component.html.erb +26 -0
- data/app/components/maglev/uikit/form/text_field_component.rb +42 -0
- data/app/components/maglev/uikit/form/text_field_controller.js +18 -0
- data/app/components/maglev/uikit/form/textarea_component.html.erb +43 -0
- data/app/components/maglev/uikit/form/textarea_component.rb +53 -0
- data/app/components/maglev/uikit/icon_button_component/icon_button_component.html.erb +3 -0
- data/app/components/maglev/uikit/icon_button_component.rb +18 -0
- data/app/components/maglev/uikit/icon_component.rb +140 -0
- data/app/components/maglev/uikit/image_library/card_component.html.erb +41 -0
- data/app/components/maglev/uikit/image_library/card_component.rb +52 -0
- data/app/components/maglev/uikit/image_library/list_component.html.erb +7 -0
- data/app/components/maglev/uikit/image_library/list_component.rb +11 -0
- data/app/components/maglev/uikit/image_library/uploader_component.html.erb +30 -0
- data/app/components/maglev/uikit/image_library/uploader_component.rb +29 -0
- data/app/components/maglev/uikit/image_library/uploader_controller.js +74 -0
- data/app/components/maglev/uikit/list/insert_button_component.html.erb +7 -0
- data/app/components/maglev/uikit/list/insert_button_component.rb +40 -0
- data/app/components/maglev/uikit/list/list_component.html.erb +17 -0
- data/app/components/maglev/uikit/list/list_component.rb +34 -0
- data/app/components/maglev/uikit/list/list_item_component.html.erb +47 -0
- data/app/components/maglev/uikit/list/list_item_component.rb +85 -0
- data/app/components/maglev/uikit/locale_switcher_component/locale_switcher_component.html.erb +22 -0
- data/app/components/maglev/uikit/locale_switcher_component.rb +18 -0
- data/app/components/maglev/uikit/menu_dropdown_component/menu_dropdown_component.html.erb +15 -0
- data/app/components/maglev/uikit/menu_dropdown_component.rb +32 -0
- data/app/components/maglev/uikit/modal_component/modal_component.html.erb +63 -0
- data/app/components/maglev/uikit/modal_component/modal_controller.js +47 -0
- data/app/components/maglev/uikit/modal_component.rb +33 -0
- data/app/components/maglev/uikit/page_actions_dropdown_component/page_actions_dropdown_component.html.erb +56 -0
- data/app/components/maglev/uikit/page_actions_dropdown_component.rb +24 -0
- data/app/components/maglev/uikit/page_layout_component/back_link_component.html.erb +4 -0
- data/app/components/maglev/uikit/page_layout_component/page_layout_component.html.erb +58 -0
- data/app/components/maglev/uikit/page_layout_component/page_layout_controller.js +34 -0
- data/app/components/maglev/uikit/page_layout_component.rb +42 -0
- data/app/components/maglev/uikit/pagination_component/pagination_component.html.erb +70 -0
- data/app/components/maglev/uikit/pagination_component.rb +25 -0
- data/app/components/maglev/uikit/section_toolbar/bottom_component.html.erb +13 -0
- data/app/components/maglev/uikit/section_toolbar/bottom_component.rb +27 -0
- data/app/components/maglev/uikit/section_toolbar/section_toolbar_component.html.erb +17 -0
- data/app/components/maglev/uikit/section_toolbar/section_toolbar_component.rb +18 -0
- data/app/components/maglev/uikit/section_toolbar/section_toolbar_controller.js +90 -0
- data/app/components/maglev/uikit/section_toolbar/top_left_corner_component.html.erb +16 -0
- data/app/components/maglev/uikit/section_toolbar/top_left_corner_component.rb +15 -0
- data/app/components/maglev/uikit/section_toolbar/top_right_corner_component.html.erb +28 -0
- data/app/components/maglev/uikit/section_toolbar/top_right_corner_component.rb +28 -0
- data/app/components/maglev/uikit/tabs_component/tabs_component.html.erb +35 -0
- data/app/components/maglev/uikit/tabs_component/tabs_controller.js +57 -0
- data/app/components/maglev/uikit/tabs_component.rb +71 -0
- data/app/controllers/concerns/maglev/content_locale_concern.rb +5 -1
- data/app/controllers/concerns/maglev/editor/errors_concern.rb +45 -0
- data/app/controllers/concerns/maglev/fetchers_concern.rb +3 -6
- data/app/controllers/concerns/maglev/flash_i18n_concern.rb +11 -0
- data/app/controllers/maglev/application_controller.rb +1 -7
- data/app/controllers/maglev/editor/assets_controller.rb +59 -0
- data/app/controllers/maglev/editor/base_controller.rb +111 -0
- data/app/controllers/maglev/editor/combobox/collection_items_controller.rb +17 -0
- data/app/controllers/maglev/editor/combobox/pages_controller.rb +20 -0
- data/app/controllers/maglev/editor/home_controller.rb +25 -0
- data/app/controllers/maglev/editor/icons_controller.rb +24 -0
- data/app/controllers/maglev/editor/links_controller.rb +52 -0
- data/app/controllers/maglev/editor/page_clone_controller.rb +20 -0
- data/app/controllers/maglev/editor/pages_controller.rb +77 -0
- data/app/controllers/maglev/editor/publication_controller.rb +14 -0
- data/app/controllers/maglev/editor/section_blocks_controller.rb +101 -0
- data/app/controllers/maglev/editor/sections_controller.rb +96 -0
- data/app/controllers/maglev/editor/style_controller.rb +31 -0
- data/app/controllers/maglev/page_preview_controller.rb +1 -5
- data/app/controllers/maglev/published_page_preview_controller.rb +50 -0
- data/app/controllers/maglev/sitemap_controller.rb +1 -1
- data/app/helpers/maglev/application_helper.rb +148 -18
- data/app/helpers/maglev/editor/pages_helper.rb +23 -0
- data/app/helpers/maglev/editor/section_blocks_helper.rb +124 -0
- data/app/helpers/maglev/editor/settings_helper.rb +52 -0
- data/app/helpers/maglev/page_preview_helper.rb +1 -1
- data/app/lib/maglev/form/form_builder.rb +38 -0
- data/app/lib/maglev/form/inputs/check_box.rb +20 -0
- data/app/lib/maglev/form/inputs/combobox.rb +33 -0
- data/app/lib/maglev/form/inputs/image_field.rb +39 -0
- data/app/lib/maglev/form/inputs/richtext.rb +34 -0
- data/app/lib/maglev/form/inputs/select.rb +34 -0
- data/app/lib/maglev/form/inputs/text_field.rb +32 -0
- data/app/lib/maglev/form/inputs/textarea.rb +30 -0
- data/app/lib/maglev/turbo/streams/tag_builder.rb +17 -0
- data/app/models/concerns/maglev/content/enhanced_value_concern.rb +40 -0
- data/app/models/concerns/maglev/sections_concern.rb +30 -1
- data/app/models/concerns/maglev/translatable.rb +1 -2
- data/app/models/maglev/asset.rb +1 -3
- data/app/models/maglev/content/block_content.rb +96 -0
- data/app/models/maglev/content/editor_link.rb +49 -0
- data/app/models/maglev/content/section_content.rb +85 -0
- data/app/models/maglev/content/setting_content.rb +33 -0
- data/app/models/maglev/page/path_concern.rb +7 -0
- data/app/models/maglev/page/search_concern.rb +23 -4
- data/app/models/maglev/page.rb +3 -0
- data/app/models/maglev/section/block.rb +43 -6
- data/app/models/maglev/section/content_concern.rb +15 -1
- data/app/models/maglev/section/setting.rb +12 -0
- data/app/models/maglev/section.rb +52 -4
- data/app/models/maglev/sections_content_store.rb +36 -0
- data/app/models/maglev/setting_types/base.rb +8 -0
- data/app/models/maglev/setting_types/collection_item.rb +5 -1
- data/app/models/maglev/setting_types/image.rb +4 -0
- data/app/models/maglev/setting_types/link.rb +4 -0
- data/app/models/maglev/setting_types/text.rb +5 -0
- data/app/models/maglev/site/locales_concern.rb +4 -0
- data/app/models/maglev/site/style_value.rb +19 -13
- data/app/models/maglev/site.rb +4 -0
- data/app/models/maglev/theme/section_category.rb +6 -1
- data/app/models/maglev/theme/style_setting.rb +1 -1
- data/app/models/maglev/theme.rb +13 -0
- data/app/services/concerns/maglev/content/helpers_concern.rb +100 -0
- data/app/services/concerns/maglev/get_page_sections/transform_section_concern.rb +97 -0
- data/app/services/maglev/app_container.rb +27 -2
- data/app/services/maglev/content/add_section_block_service.rb +53 -0
- data/app/services/maglev/content/add_section_service.rb +99 -0
- data/app/services/maglev/content/delete_section_block_service.rb +45 -0
- data/app/services/maglev/content/delete_section_service.rb +34 -0
- data/app/services/maglev/content/sort_section_blocks_service.rb +47 -0
- data/app/services/maglev/content/update_section_block_service.rb +52 -0
- data/app/services/maglev/content/update_section_service.rb +50 -0
- data/app/services/maglev/create_page_service.rb +39 -0
- data/app/services/maglev/fetch_style.rb +22 -12
- data/app/services/maglev/get_base_url.rb +3 -1
- data/app/services/maglev/get_page_section_names.rb +1 -1
- data/app/services/maglev/get_page_sections.rb +11 -82
- data/app/services/maglev/get_published_page_sections_service.rb +48 -0
- data/app/services/maglev/persist_section_screenshot.rb +1 -1
- data/app/services/maglev/persist_style_service.rb +36 -0
- data/app/services/maglev/publish_service.rb +30 -0
- data/app/services/maglev/search_pages.rb +6 -2
- data/app/services/maglev/setup_pages.rb +44 -33
- data/app/views/layouts/maglev/editor/_head.html.erb +0 -0
- data/app/views/layouts/maglev/editor/_sidebar.html.erb +39 -0
- data/app/views/layouts/maglev/editor/_topbar.html.erb +45 -0
- data/app/views/layouts/maglev/editor/application.html.erb +67 -0
- data/app/views/maglev/editor/assets/_list.html.erb +33 -0
- data/app/views/maglev/editor/assets/index.html.erb +29 -0
- data/app/views/maglev/editor/combobox/collection_items/index.turbo_stream.erb +18 -0
- data/app/views/maglev/editor/combobox/pages/index.turbo_stream.erb +7 -0
- data/app/views/maglev/editor/home/index.html.erb +1 -0
- data/app/views/maglev/editor/icons/_list.html.erb +27 -0
- data/app/views/maglev/editor/icons/index.html.erb +23 -0
- data/app/views/maglev/editor/links/edit/_email.html.erb +5 -0
- data/app/views/maglev/editor/links/edit/_page.html.erb +29 -0
- data/app/views/maglev/editor/links/edit/_tabs.html.erb +11 -0
- data/app/views/maglev/editor/links/edit/_url.html.erb +7 -0
- data/app/views/maglev/editor/links/edit.html.erb +31 -0
- data/app/views/maglev/editor/links/update.turbo_stream.erb +9 -0
- data/app/views/maglev/editor/pages/_list.html.erb +28 -0
- data/app/views/maglev/editor/pages/_preview.html.erb +35 -0
- data/app/views/maglev/editor/pages/_preview_empty_message.html.erb +14 -0
- data/app/views/maglev/editor/pages/edit.html.erb +32 -0
- data/app/views/maglev/editor/pages/form/_main.html.erb +7 -0
- data/app/views/maglev/editor/pages/form/_seo.html.erb +11 -0
- data/app/views/maglev/editor/pages/form/_tabs.html.erb +8 -0
- data/app/views/maglev/editor/pages/index.html.erb +23 -0
- data/app/views/maglev/editor/pages/new.html.erb +28 -0
- data/app/views/maglev/editor/publication/create.turbo_stream.erb +1 -0
- data/app/views/maglev/editor/section_blocks/_form.html.erb +15 -0
- data/app/views/maglev/editor/section_blocks/_new.html.erb +21 -0
- data/app/views/maglev/editor/section_blocks/edit.html.erb +28 -0
- data/app/views/maglev/editor/section_blocks/index/_list.html.erb +41 -0
- data/app/views/maglev/editor/section_blocks/index/_tree.html.erb +56 -0
- data/app/views/maglev/editor/section_blocks/index.html.erb +20 -0
- data/app/views/maglev/editor/section_blocks/update.turbo_stream.erb +5 -0
- data/app/views/maglev/editor/sections/_form.html.erb +21 -0
- data/app/views/maglev/editor/sections/_list.html.erb +50 -0
- data/app/views/maglev/editor/sections/_theme_list.html.erb +32 -0
- data/app/views/maglev/editor/sections/_toolbar_list.html.erb +17 -0
- data/app/views/maglev/editor/sections/edit.html.erb +24 -0
- data/app/views/maglev/editor/sections/index.html.erb +11 -0
- data/app/views/maglev/editor/sections/new.html.erb +20 -0
- data/app/views/maglev/editor/sections/update.turbo_stream.erb +5 -0
- data/app/views/maglev/editor/shared/_button_label.html.erb +18 -0
- data/app/views/maglev/editor/shared/errors/not_authorized_error.turbo_stream.erb +17 -0
- data/app/views/maglev/editor/shared/errors/stale_object_error.turbo_stream.erb +21 -0
- data/app/views/maglev/editor/shared/errors/standard_error.turbo_stream.erb +17 -0
- data/app/views/maglev/editor/style/edit.html.erb +24 -0
- data/app/views/maglev/sitemap/index.xml.builder +1 -1
- data/config/client_importmap.rb +4 -0
- data/config/editor_importmap.rb +26 -0
- data/config/initializers/pagy.rb +3 -0
- data/config/locales/activerecord.ar.yml +20 -2
- data/config/locales/activerecord.en.yml +20 -2
- data/config/locales/activerecord.es.yml +15 -14
- data/config/locales/activerecord.fr.yml +15 -14
- data/config/locales/activerecord.pt-BR.yml +22 -4
- data/config/locales/editor.ar.yml +268 -0
- data/config/locales/editor.en.yml +268 -0
- data/config/locales/editor.es.yml +268 -0
- data/config/locales/editor.fr.yml +268 -0
- data/config/locales/editor.pt-BR.yml +268 -0
- data/config/locales/uikit.ar.yml +14 -0
- data/config/locales/uikit.en.yml +14 -0
- data/config/locales/uikit.es.yml +14 -0
- data/config/locales/uikit.fr.yml +14 -0
- data/config/locales/uikit.pt-BR.yml +14 -0
- data/config/routes.rb +34 -35
- data/db/migrate/20250929203214_create_maglev_sections_content_stores.rb +21 -0
- data/exe/tailwind-cli +29 -0
- data/lib/commands/maglev/publish_site_command.rb +46 -0
- data/lib/generators/maglev/install_generator.rb +1 -6
- data/lib/generators/maglev/templates/install/config/initializers/maglev.rb +6 -2
- data/lib/generators/maglev/templates/theme/app/views/theme/layout.html.erb.tt +2 -2
- data/lib/maglev/config.rb +2 -1
- data/lib/maglev/engine.rb +34 -42
- data/lib/maglev/errors.rb +3 -0
- data/lib/maglev/version.rb +1 -1
- data/lib/maglev.rb +3 -1
- data/lib/tasks/maglev/tailwindcss.rake +38 -0
- data/lib/tasks/maglev_tasks.rake +4 -23
- data/vendor/javascript/@floating-ui--core.js +4 -0
- data/vendor/javascript/@floating-ui--dom.js +12 -0
- data/vendor/javascript/@floating-ui--utils--dom.js +4 -0
- data/vendor/javascript/@floating-ui--utils.js +4 -0
- data/vendor/javascript/@hotwired--stimulus.js +4 -0
- data/vendor/javascript/@hotwired--turbo-rails.js +4 -0
- data/vendor/javascript/@hotwired--turbo.js +458 -0
- data/vendor/javascript/@rails--actioncable--src.js +4 -0
- data/vendor/javascript/@rails--request.js.js +4 -0
- data/vendor/javascript/@shopify--draggable.js +4 -0
- data/vendor/javascript/el-transition.js +4 -0
- data/vendor/javascript/stimulus-use.js +4 -0
- data/vendor/javascript/tiptap.bundle.js +1 -0
- metadata +363 -342
- data/.babelrc +0 -9
- data/.yarn/install-state.gz +0 -0
- data/.yarn/releases/yarn-4.4.0.cjs +0 -925
- data/.yarnrc.yml +0 -3
- data/app/controllers/maglev/admin/base_controller.rb +0 -20
- data/app/controllers/maglev/admin/dashboard_controller.rb +0 -11
- data/app/controllers/maglev/admin/sections/previews_controller.rb +0 -52
- data/app/controllers/maglev/admin/sections/screenshots_controller.rb +0 -17
- data/app/controllers/maglev/admin/themes_controller.rb +0 -19
- data/app/controllers/maglev/api/assets_controller.rb +0 -44
- data/app/controllers/maglev/api/collection_items_controller.rb +0 -21
- data/app/controllers/maglev/api/page_clones_controller.rb +0 -21
- data/app/controllers/maglev/api/pages_controller.rb +0 -65
- data/app/controllers/maglev/api/publications_controller.rb +0 -15
- data/app/controllers/maglev/api/sites_controller.rb +0 -21
- data/app/controllers/maglev/api_controller.rb +0 -61
- data/app/controllers/maglev/editor_controller.rb +0 -59
- data/app/frontend/admin/controllers/dropdown_controller.js +0 -9
- data/app/frontend/admin/controllers/iframe_controller.js +0 -16
- data/app/frontend/admin/controllers/screenshot_controller.js +0 -69
- data/app/frontend/admin/index.js +0 -10
- data/app/frontend/admin/utils/axios.js +0 -16
- data/app/frontend/editor/App.vue +0 -43
- data/app/frontend/editor/assets/remixicons/add-box-line.svg +0 -1
- data/app/frontend/editor/assets/remixicons/arrow-down-s-line.svg +0 -1
- data/app/frontend/editor/assets/remixicons/arrow-drop-left.svg +0 -1
- data/app/frontend/editor/assets/remixicons/arrow-drop-right.svg +0 -1
- data/app/frontend/editor/assets/remixicons/arrow-up-s-line.svg +0 -1
- data/app/frontend/editor/assets/remixicons/camera-line.svg +0 -1
- data/app/frontend/editor/assets/remixicons/clipboard-line.svg +0 -1
- data/app/frontend/editor/assets/remixicons/close-line.svg +0 -1
- data/app/frontend/editor/assets/remixicons/computer-line.svg +0 -1
- data/app/frontend/editor/assets/remixicons/delete-bin-line.svg +0 -1
- data/app/frontend/editor/assets/remixicons/file-line.svg +0 -1
- data/app/frontend/editor/assets/remixicons/format-blockquote.svg +0 -1
- data/app/frontend/editor/assets/remixicons/format-bold.svg +0 -1
- data/app/frontend/editor/assets/remixicons/format-code.svg +0 -1
- data/app/frontend/editor/assets/remixicons/format-heading-2.svg +0 -1
- data/app/frontend/editor/assets/remixicons/format-heading-3.svg +0 -1
- data/app/frontend/editor/assets/remixicons/format-heading-4.svg +0 -1
- data/app/frontend/editor/assets/remixicons/format-italic.svg +0 -1
- data/app/frontend/editor/assets/remixicons/format-link-unlink.svg +0 -1
- data/app/frontend/editor/assets/remixicons/format-link.svg +0 -1
- data/app/frontend/editor/assets/remixicons/format-list-ordered.svg +0 -1
- data/app/frontend/editor/assets/remixicons/format-list-unordered.svg +0 -1
- data/app/frontend/editor/assets/remixicons/format-paragraph.svg +0 -1
- data/app/frontend/editor/assets/remixicons/format-strikethrough.svg +0 -1
- data/app/frontend/editor/assets/remixicons/format-superscript.svg +0 -1
- data/app/frontend/editor/assets/remixicons/format-underline.svg +0 -1
- data/app/frontend/editor/assets/remixicons/home-4-line.svg +0 -1
- data/app/frontend/editor/assets/remixicons/image-line.svg +0 -1
- data/app/frontend/editor/assets/remixicons/logout-box-r-line.svg +0 -1
- data/app/frontend/editor/assets/remixicons/ri-add-line.svg +0 -1
- data/app/frontend/editor/assets/remixicons/ri-alert-line.svg +0 -1
- data/app/frontend/editor/assets/remixicons/ri-book-line.svg +0 -1
- data/app/frontend/editor/assets/remixicons/ri-bug-line.svg +0 -1
- data/app/frontend/editor/assets/remixicons/ri-check-line.svg +0 -1
- data/app/frontend/editor/assets/remixicons/ri-close-circle-line.svg +0 -1
- data/app/frontend/editor/assets/remixicons/ri-close-line.svg +0 -1
- data/app/frontend/editor/assets/remixicons/ri-delete-column.svg +0 -1
- data/app/frontend/editor/assets/remixicons/ri-delete-row.svg +0 -1
- data/app/frontend/editor/assets/remixicons/ri-draggable.svg +0 -1
- data/app/frontend/editor/assets/remixicons/ri-drop-line.svg +0 -1
- data/app/frontend/editor/assets/remixicons/ri-external-link-line.svg +0 -1
- data/app/frontend/editor/assets/remixicons/ri-eye-line.svg +0 -1
- data/app/frontend/editor/assets/remixicons/ri-eye-off-line.svg +0 -1
- data/app/frontend/editor/assets/remixicons/ri-file-copy-line.svg +0 -1
- data/app/frontend/editor/assets/remixicons/ri-file-line.svg +0 -1
- data/app/frontend/editor/assets/remixicons/ri-folders-line.svg +0 -1
- data/app/frontend/editor/assets/remixicons/ri-global-line.svg +0 -1
- data/app/frontend/editor/assets/remixicons/ri-insert-column-left.svg +0 -1
- data/app/frontend/editor/assets/remixicons/ri-insert-column-right.svg +0 -1
- data/app/frontend/editor/assets/remixicons/ri-insert-row-bottom.svg +0 -1
- data/app/frontend/editor/assets/remixicons/ri-insert-row-top.svg +0 -1
- data/app/frontend/editor/assets/remixicons/ri-loader-4-line.svg +0 -1
- data/app/frontend/editor/assets/remixicons/ri-mail-line.svg +0 -1
- data/app/frontend/editor/assets/remixicons/ri-more-2-fill.svg +0 -1
- data/app/frontend/editor/assets/remixicons/ri-more-fill.svg +0 -1
- data/app/frontend/editor/assets/remixicons/ri-palette-line.svg +0 -1
- data/app/frontend/editor/assets/remixicons/ri-pencil-line.svg +0 -1
- data/app/frontend/editor/assets/remixicons/ri-play-list-add-line.svg +0 -1
- data/app/frontend/editor/assets/remixicons/ri-settings-5-line.svg +0 -1
- data/app/frontend/editor/assets/remixicons/ri-shadow-line.svg +0 -1
- data/app/frontend/editor/assets/remixicons/ri-stack-line.svg +0 -1
- data/app/frontend/editor/assets/remixicons/ri-table-2.svg +0 -1
- data/app/frontend/editor/assets/remixicons/ri-table-line.svg +0 -1
- data/app/frontend/editor/assets/remixicons/search-line.svg +0 -1
- data/app/frontend/editor/assets/remixicons/settings-4-line.svg +0 -1
- data/app/frontend/editor/assets/remixicons/smartphone-line.svg +0 -1
- data/app/frontend/editor/assets/remixicons/tablet-line.svg +0 -1
- data/app/frontend/editor/components/dynamic-form/dynamic-input.vue +0 -142
- data/app/frontend/editor/components/dynamic-form/index.vue +0 -36
- data/app/frontend/editor/components/errors/forbidden.vue +0 -24
- data/app/frontend/editor/components/errors/stale-record.vue +0 -24
- data/app/frontend/editor/components/header-nav/device-toggler.vue +0 -40
- data/app/frontend/editor/components/header-nav/index.vue +0 -77
- data/app/frontend/editor/components/header-nav/locale-toggler/index.vue +0 -51
- data/app/frontend/editor/components/header-nav/locale-toggler/locale-link.vue +0 -32
- data/app/frontend/editor/components/header-nav/page-info.vue +0 -41
- data/app/frontend/editor/components/header-nav/preview-button.vue +0 -20
- data/app/frontend/editor/components/header-nav/preview-toggler.vue +0 -40
- data/app/frontend/editor/components/header-nav/publish-button.vue +0 -77
- data/app/frontend/editor/components/header-nav/save-button.vue +0 -33
- data/app/frontend/editor/components/header-nav/separator.vue +0 -11
- data/app/frontend/editor/components/icon-library/index.vue +0 -39
- data/app/frontend/editor/components/image-library/index.vue +0 -107
- data/app/frontend/editor/components/image-library/list-item.vue +0 -93
- data/app/frontend/editor/components/image-library/list.vue +0 -26
- data/app/frontend/editor/components/image-library/uploader.vue +0 -76
- data/app/frontend/editor/components/kit/accordion.vue +0 -68
- data/app/frontend/editor/components/kit/checkbox-input.vue +0 -59
- data/app/frontend/editor/components/kit/collection-item-input.vue +0 -79
- data/app/frontend/editor/components/kit/color-input/core-input.vue +0 -92
- data/app/frontend/editor/components/kit/color-input/preset-button.vue +0 -61
- data/app/frontend/editor/components/kit/color-input/preset-dropdown.vue +0 -47
- data/app/frontend/editor/components/kit/color-input.vue +0 -41
- data/app/frontend/editor/components/kit/confirmation-button.vue +0 -65
- data/app/frontend/editor/components/kit/copy-paste-button.vue +0 -26
- data/app/frontend/editor/components/kit/divider.vue +0 -22
- data/app/frontend/editor/components/kit/dropdown.vue +0 -66
- data/app/frontend/editor/components/kit/hint.vue +0 -12
- data/app/frontend/editor/components/kit/icon-button.vue +0 -24
- data/app/frontend/editor/components/kit/icon-input.vue +0 -96
- data/app/frontend/editor/components/kit/icon.vue +0 -36
- data/app/frontend/editor/components/kit/image-input.vue +0 -124
- data/app/frontend/editor/components/kit/index.js +0 -56
- data/app/frontend/editor/components/kit/link-input.vue +0 -121
- data/app/frontend/editor/components/kit/modal-root.vue +0 -85
- data/app/frontend/editor/components/kit/modal.vue +0 -39
- data/app/frontend/editor/components/kit/page-icon.vue +0 -21
- data/app/frontend/editor/components/kit/pagination/button.vue +0 -35
- data/app/frontend/editor/components/kit/pagination/index.vue +0 -116
- data/app/frontend/editor/components/kit/rich-text-input/block-button.vue +0 -75
- data/app/frontend/editor/components/kit/rich-text-input/extensions/Doc.js +0 -12
- data/app/frontend/editor/components/kit/rich-text-input/extensions/LineBreak.js +0 -38
- data/app/frontend/editor/components/kit/rich-text-input/extensions/marks/Link.js +0 -57
- data/app/frontend/editor/components/kit/rich-text-input/extensions/marks/Superscript.js +0 -43
- data/app/frontend/editor/components/kit/rich-text-input/format-buttons.vue +0 -47
- data/app/frontend/editor/components/kit/rich-text-input/link-buttons.vue +0 -91
- data/app/frontend/editor/components/kit/rich-text-input/list-buttons.vue +0 -29
- data/app/frontend/editor/components/kit/rich-text-input/menu-button.vue +0 -22
- data/app/frontend/editor/components/kit/rich-text-input/table-button.vue +0 -112
- data/app/frontend/editor/components/kit/rich-text-input.vue +0 -187
- data/app/frontend/editor/components/kit/search-input.vue +0 -54
- data/app/frontend/editor/components/kit/select-input.vue +0 -200
- data/app/frontend/editor/components/kit/simple-select.vue +0 -63
- data/app/frontend/editor/components/kit/submit-button.vue +0 -117
- data/app/frontend/editor/components/kit/tabs.vue +0 -99
- data/app/frontend/editor/components/kit/text-input.vue +0 -63
- data/app/frontend/editor/components/kit/textarea-input.vue +0 -61
- data/app/frontend/editor/components/link-picker/actions.vue +0 -32
- data/app/frontend/editor/components/link-picker/email.vue +0 -32
- data/app/frontend/editor/components/link-picker/index.vue +0 -97
- data/app/frontend/editor/components/link-picker/page.vue +0 -126
- data/app/frontend/editor/components/link-picker/url.vue +0 -43
- data/app/frontend/editor/components/page/edit.vue +0 -99
- data/app/frontend/editor/components/page/form/main.vue +0 -64
- data/app/frontend/editor/components/page/form/seo.vue +0 -94
- data/app/frontend/editor/components/page/list/actions-button.vue +0 -159
- data/app/frontend/editor/components/page/list/index.vue +0 -58
- data/app/frontend/editor/components/page/list/list-item.vue +0 -96
- data/app/frontend/editor/components/page/new.vue +0 -79
- data/app/frontend/editor/components/section-block-pane/index.vue +0 -69
- data/app/frontend/editor/components/section-block-pane/setting-list.vue +0 -53
- data/app/frontend/editor/components/section-highlighter/bottom-actions.vue +0 -60
- data/app/frontend/editor/components/section-highlighter/index.vue +0 -125
- data/app/frontend/editor/components/section-highlighter/top-left-actions.vue +0 -78
- data/app/frontend/editor/components/section-highlighter/top-right-actions.vue +0 -130
- data/app/frontend/editor/components/section-list/add-button.vue +0 -39
- data/app/frontend/editor/components/section-list/index.vue +0 -79
- data/app/frontend/editor/components/section-list/list-item.vue +0 -60
- data/app/frontend/editor/components/section-pane/block-list/index.vue +0 -68
- data/app/frontend/editor/components/section-pane/block-list/list-item.vue +0 -74
- data/app/frontend/editor/components/section-pane/block-list/new-block-button.vue +0 -80
- data/app/frontend/editor/components/section-pane/block-tree/index.vue +0 -63
- data/app/frontend/editor/components/section-pane/block-tree/new-nested-block-button.vue +0 -73
- data/app/frontend/editor/components/section-pane/block-tree/tree-node.vue +0 -109
- data/app/frontend/editor/components/section-pane/index.vue +0 -94
- data/app/frontend/editor/components/section-pane/setting-list.vue +0 -50
- data/app/frontend/editor/components/sidebar-nav/index.vue +0 -102
- data/app/frontend/editor/components/sidebar-nav/link.vue +0 -60
- data/app/frontend/editor/components/style-pane/index.vue +0 -48
- data/app/frontend/editor/components/theme-section-list/category.vue +0 -47
- data/app/frontend/editor/components/theme-section-list/index.vue +0 -27
- data/app/frontend/editor/components/theme-section-list/list-item.vue +0 -95
- data/app/frontend/editor/design/application.scss +0 -17
- data/app/frontend/editor/design/components/buttons.scss +0 -25
- data/app/frontend/editor/design/components/modal.scss +0 -49
- data/app/frontend/editor/design/components/tooltip.scss +0 -123
- data/app/frontend/editor/design/components/tree.scss +0 -6
- data/app/frontend/editor/design/helpers.scss +0 -9
- data/app/frontend/editor/design/transitions.scss +0 -121
- data/app/frontend/editor/layouts/app.vue +0 -42
- data/app/frontend/editor/layouts/default.vue +0 -57
- data/app/frontend/editor/layouts/slide-pane.vue +0 -87
- data/app/frontend/editor/locales/editor.ar.json +0 -265
- data/app/frontend/editor/locales/editor.en.json +0 -265
- data/app/frontend/editor/locales/editor.es.json +0 -265
- data/app/frontend/editor/locales/editor.fr.json +0 -265
- data/app/frontend/editor/locales/editor.pt-BR.json +0 -265
- data/app/frontend/editor/locales/index.js +0 -23
- data/app/frontend/editor/main.js +0 -21
- data/app/frontend/editor/misc/__tests__/utils.spec.js +0 -43
- data/app/frontend/editor/misc/utils.js +0 -177
- data/app/frontend/editor/mixins/error-modal.js +0 -28
- data/app/frontend/editor/mixins/focused-input.js +0 -20
- data/app/frontend/editor/mixins/global.js +0 -140
- data/app/frontend/editor/mixins/grouped-dropdowns.js +0 -17
- data/app/frontend/editor/mixins/index.js +0 -1
- data/app/frontend/editor/mixins/preview-transformation.js +0 -59
- data/app/frontend/editor/plugins/event-bus.js +0 -3
- data/app/frontend/editor/plugins/filters.js +0 -7
- data/app/frontend/editor/plugins/i18n.js +0 -13
- data/app/frontend/editor/plugins/index.js +0 -3
- data/app/frontend/editor/plugins/tooltip.js +0 -4
- data/app/frontend/editor/router/index.js +0 -41
- data/app/frontend/editor/router/routes/base.js +0 -59
- data/app/frontend/editor/router/routes/index.js +0 -3
- data/app/frontend/editor/router/routes/page.js +0 -30
- data/app/frontend/editor/router/routes/section-block.js +0 -29
- data/app/frontend/editor/router/routes/section.js +0 -67
- data/app/frontend/editor/router/routes/style.js +0 -17
- data/app/frontend/editor/services/__tests__/page.spec.js +0 -38
- data/app/frontend/editor/services/__tests__/section.spec.js +0 -39
- data/app/frontend/editor/services/api.js +0 -40
- data/app/frontend/editor/services/block.js +0 -26
- data/app/frontend/editor/services/collection-item.js +0 -20
- data/app/frontend/editor/services/image.js +0 -26
- data/app/frontend/editor/services/index.js +0 -21
- data/app/frontend/editor/services/live-preview.js +0 -131
- data/app/frontend/editor/services/page.js +0 -107
- data/app/frontend/editor/services/section.js +0 -214
- data/app/frontend/editor/services/site.js +0 -21
- data/app/frontend/editor/services/theme.js +0 -9
- data/app/frontend/editor/spec/__mocks__/page.js +0 -434
- data/app/frontend/editor/spec/__mocks__/section.js +0 -232
- data/app/frontend/editor/spec/__mocks__/services.js +0 -84
- data/app/frontend/editor/spec/__mocks__/site.js +0 -95
- data/app/frontend/editor/spec/__mocks__/theme.js +0 -518
- data/app/frontend/editor/store/__tests__/getters.spec.js +0 -158
- data/app/frontend/editor/store/actions/__tests__/page.spec.js +0 -97
- data/app/frontend/editor/store/actions/__tests__/section-block.spec.js +0 -105
- data/app/frontend/editor/store/actions/__tests__/section.spec.js +0 -62
- data/app/frontend/editor/store/actions/index.js +0 -35
- data/app/frontend/editor/store/actions/page.js +0 -66
- data/app/frontend/editor/store/actions/section-block.js +0 -57
- data/app/frontend/editor/store/actions/section.js +0 -75
- data/app/frontend/editor/store/actions/site.js +0 -32
- data/app/frontend/editor/store/default-state.js +0 -27
- data/app/frontend/editor/store/getters.js +0 -113
- data/app/frontend/editor/store/index.js +0 -29
- data/app/frontend/editor/store/mutations.js +0 -187
- data/app/frontend/editor/views/content-pane.vue +0 -109
- data/app/frontend/editor/views/page-preview.vue +0 -160
- data/app/frontend/editor/views/pages/edit.vue +0 -26
- data/app/frontend/editor/views/pages/index.vue +0 -65
- data/app/frontend/editor/views/sections/add-pane.vue +0 -23
- data/app/frontend/editor/views/sections/list-pane.vue +0 -20
- data/app/frontend/editor/views/slide-pane.vue +0 -14
- data/app/frontend/editor/views/slide-pane2.vue +0 -14
- data/app/frontend/editor/views/style/edit-pane.vue +0 -22
- data/app/frontend/entrypoints/admin.js +0 -3
- data/app/frontend/entrypoints/admin.scss +0 -5
- data/app/frontend/entrypoints/editor.js +0 -8
- data/app/frontend/entrypoints/live-preview-client.js +0 -6
- data/app/frontend/entrypoints/live-preview-rails-client.js +0 -9
- data/app/frontend/live-preview-client/index.js +0 -11
- data/app/frontend/live-preview-client/rails.js +0 -217
- data/app/helpers/maglev/editor_helper.rb +0 -95
- data/app/services/maglev/persist_page.rb +0 -97
- data/app/views/layouts/maglev/admin/_header_actions.html.erb +0 -5
- data/app/views/layouts/maglev/admin/application.html.erb +0 -26
- data/app/views/maglev/admin/sections/previews/show.html.erb +0 -47
- data/app/views/maglev/admin/themes/_empty.html.erb +0 -20
- data/app/views/maglev/admin/themes/_section_categories.html.erb +0 -9
- data/app/views/maglev/admin/themes/_sections.html.erb +0 -54
- data/app/views/maglev/admin/themes/show.html.erb +0 -21
- data/app/views/maglev/api/_pagination.json.jbuilder +0 -6
- data/app/views/maglev/api/assets/_show.json.jbuilder +0 -8
- data/app/views/maglev/api/assets/index.json.jbuilder +0 -9
- data/app/views/maglev/api/assets/show.json.jbuilder +0 -3
- data/app/views/maglev/api/collection_items/_show.json.jbuilder +0 -5
- data/app/views/maglev/api/collection_items/index.json.jbuilder +0 -5
- data/app/views/maglev/api/collection_items/show.json.jbuilder +0 -7
- data/app/views/maglev/api/page_clones/create.json.jbuilder +0 -3
- data/app/views/maglev/api/pages/_show.json.jbuilder +0 -23
- data/app/views/maglev/api/pages/index.json.jbuilder +0 -18
- data/app/views/maglev/api/pages/show.json.jbuilder +0 -3
- data/app/views/maglev/api/sites/_show.json.jbuilder +0 -15
- data/app/views/maglev/api/sites/show.json.jbuilder +0 -3
- data/app/views/maglev/api/themes/_show.json.jbuilder +0 -17
- data/app/views/maglev/editor/_header.html.erb +0 -1
- data/app/views/maglev/editor/show.html.erb +0 -41
- data/app/views/maglev/settings/index.html.erb +0 -11
- data/bin/vite +0 -29
- data/config/initializers/kaminari.rb +0 -16
- data/config/vite.json +0 -17
- data/lib/tasks/maglev/vite.rake +0 -70
- data/package.json +0 -58
- data/postcss.config.cjs +0 -6
- data/tailwind.config.js +0 -68
- data/vite.config.ts +0 -18
- data/yarn.lock +0 -4749
- /data/app/{frontend/images → assets/images/maglev}/favicon.svg +0 -0
- /data/app/{frontend/images → assets/images/maglev}/logo.svg +0 -0
- /data/app/{frontend/live-preview-client → assets/javascripts/maglev/client}/run-scripts.js +0 -0
|
@@ -0,0 +1 @@
|
|
|
1
|
+
function G(e){this.content=e}function Ho(e,t,n){for(let r=0;;r++){if(r==e.childCount||r==t.childCount)return e.childCount==t.childCount?null:n;let o=e.child(r),i=t.child(r);if(o!=i){if(!o.sameMarkup(i))return n;if(o.isText&&o.text!=i.text){for(let e=0;o.text[e]==i.text[e];e++)n++;return n}if(o.content.size||i.content.size){let e=Ho(o.content,i.content,n+1);if(null!=e)return e}n+=o.nodeSize}else n+=o.nodeSize}}function jo(e,t,n,r){for(let o=e.childCount,i=t.childCount;;){if(0==o||0==i)return o==i?null:{a:n,b:r};let s=e.child(--o),a=t.child(--i),l=s.nodeSize;if(s!=a){if(!s.sameMarkup(a))return{a:n,b:r};if(s.isText&&s.text!=a.text){let e=0,t=Math.min(s.text.length,a.text.length);for(;e<t&&s.text[s.text.length-e-1]==a.text[a.text.length-e-1];)e++,n--,r--;return{a:n,b:r}}if(s.content.size||a.content.size){let e=jo(s.content,a.content,n-1,r-1);if(e)return e}n-=l,r-=l}else n-=l,r-=l}}G.prototype={constructor:G,find:function(e){for(var t=0;t<this.content.length;t+=2)if(this.content[t]===e)return t;return-1},get:function(e){var t=this.find(e);return-1==t?void 0:this.content[t+1]},update:function(e,t,n){var r=n&&n!=e?this.remove(n):this,o=r.find(e),i=r.content.slice();return-1==o?i.push(n||e,t):(i[o+1]=t,n&&(i[o]=n)),new G(i)},remove:function(e){var t=this.find(e);if(-1==t)return this;var n=this.content.slice();return n.splice(t,2),new G(n)},addToStart:function(e,t){return new G([e,t].concat(this.remove(e).content))},addToEnd:function(e,t){var n=this.remove(e).content.slice();return n.push(e,t),new G(n)},addBefore:function(e,t,n){var r=this.remove(t),o=r.content.slice(),i=r.find(e);return o.splice(-1==i?o.length:i,0,t,n),new G(o)},forEach:function(e){for(var t=0;t<this.content.length;t+=2)e(this.content[t],this.content[t+1])},prepend:function(e){return(e=G.from(e)).size?new G(e.content.concat(this.subtract(e).content)):this},append:function(e){return(e=G.from(e)).size?new G(this.subtract(e).content.concat(e.content)):this},subtract:function(e){var t=this;e=G.from(e);for(var n=0;n<e.content.length;n+=2)t=t.remove(e.content[n]);return t},toObject:function(){var e={};return this.forEach(function(t,n){e[t]=n}),e},get size(){return this.content.length>>1}},G.from=function(e){if(e instanceof G)return e;var t=[];if(e)for(var n in e)t.push(n,e[n]);return new G(t)};class b{constructor(e,t){if(this.content=e,this.size=t||0,null==t)for(let t=0;t<e.length;t++)this.size+=e[t].nodeSize}nodesBetween(e,t,n,r=0,o){for(let i=0,s=0;s<t;i++){let a=this.content[i],l=s+a.nodeSize;if(l>e&&!1!==n(a,r+s,o||null,i)&&a.content.size){let o=s+1;a.nodesBetween(Math.max(0,e-o),Math.min(a.content.size,t-o),n,r+o)}s=l}}descendants(e){this.nodesBetween(0,this.size,e)}textBetween(e,t,n,r){let o="",i=!0;return this.nodesBetween(e,t,(s,a)=>{let l=s.isText?s.text.slice(Math.max(e,a)-a,t-a):s.isLeaf?r?"function"==typeof r?r(s):r:s.type.spec.leafText?s.type.spec.leafText(s):"":"";s.isBlock&&(s.isLeaf&&l||s.isTextblock)&&n&&(i?i=!1:o+=n),o+=l},0),o}append(e){if(!e.size)return this;if(!this.size)return e;let t=this.lastChild,n=e.firstChild,r=this.content.slice(),o=0;for(t.isText&&t.sameMarkup(n)&&(r[r.length-1]=t.withText(t.text+n.text),o=1);o<e.content.length;o++)r.push(e.content[o]);return new b(r,this.size+e.size)}cut(e,t=this.size){if(0==e&&t==this.size)return this;let n=[],r=0;if(t>e)for(let o=0,i=0;i<t;o++){let s=this.content[o],a=i+s.nodeSize;a>e&&((i<e||a>t)&&(s=s.isText?s.cut(Math.max(0,e-i),Math.min(s.text.length,t-i)):s.cut(Math.max(0,e-i-1),Math.min(s.content.size,t-i-1))),n.push(s),r+=s.nodeSize),i=a}return new b(n,r)}cutByIndex(e,t){return e==t?b.empty:0==e&&t==this.content.length?this:new b(this.content.slice(e,t))}replaceChild(e,t){let n=this.content[e];if(n==t)return this;let r=this.content.slice(),o=this.size+t.nodeSize-n.nodeSize;return r[e]=t,new b(r,o)}addToStart(e){return new b([e].concat(this.content),this.size+e.nodeSize)}addToEnd(e){return new b(this.content.concat(e),this.size+e.nodeSize)}eq(e){if(this.content.length!=e.content.length)return!1;for(let t=0;t<this.content.length;t++)if(!this.content[t].eq(e.content[t]))return!1;return!0}get firstChild(){return this.content.length?this.content[0]:null}get lastChild(){return this.content.length?this.content[this.content.length-1]:null}get childCount(){return this.content.length}child(e){let t=this.content[e];if(!t)throw new RangeError("Index "+e+" out of range for "+this);return t}maybeChild(e){return this.content[e]||null}forEach(e){for(let t=0,n=0;t<this.content.length;t++){let r=this.content[t];e(r,n,t),n+=r.nodeSize}}findDiffStart(e,t=0){return Ho(this,e,t)}findDiffEnd(e,t=this.size,n=e.size){return jo(this,e,t,n)}findIndex(e){if(0==e)return gn(0,e);if(e==this.size)return gn(this.content.length,e);if(e>this.size||e<0)throw new RangeError(`Position ${e} outside of fragment (${this})`);for(let t=0,n=0;;t++){let r=n+this.child(t).nodeSize;if(r>=e)return r==e?gn(t+1,r):gn(t,n);n=r}}toString(){return"<"+this.toStringInner()+">"}toStringInner(){return this.content.join(", ")}toJSON(){return this.content.length?this.content.map(e=>e.toJSON()):null}static fromJSON(e,t){if(!t)return b.empty;if(!Array.isArray(t))throw new RangeError("Invalid input for Fragment.fromJSON");return new b(t.map(e.nodeFromJSON))}static fromArray(e){if(!e.length)return b.empty;let t,n=0;for(let r=0;r<e.length;r++){let o=e[r];n+=o.nodeSize,r&&o.isText&&e[r-1].sameMarkup(o)?(t||(t=e.slice(0,r)),t[t.length-1]=o.withText(t[t.length-1].text+o.text)):t&&t.push(o)}return new b(t||e,n)}static from(e){if(!e)return b.empty;if(e instanceof b)return e;if(Array.isArray(e))return this.fromArray(e);if(e.attrs)return new b([e],e.nodeSize);throw new RangeError("Can not convert "+e+" to a Fragment"+(e.nodesBetween?" (looks like multiple versions of prosemirror-model were loaded)":""))}}b.empty=new b([],0);const Lr={index:0,offset:0};function gn(e,t){return Lr.index=e,Lr.offset=t,Lr}function In(e,t){if(e===t)return!0;if(!e||"object"!=typeof e||!t||"object"!=typeof t)return!1;let n=Array.isArray(e);if(Array.isArray(t)!=n)return!1;if(n){if(e.length!=t.length)return!1;for(let n=0;n<e.length;n++)if(!In(e[n],t[n]))return!1}else{for(let n in e)if(!(n in t)||!In(e[n],t[n]))return!1;for(let n in t)if(!(n in e))return!1}return!0}let P=class e{constructor(e,t){this.type=e,this.attrs=t}addToSet(e){let t,n=!1;for(let r=0;r<e.length;r++){let o=e[r];if(this.eq(o))return e;if(this.type.excludes(o.type))t||(t=e.slice(0,r));else{if(o.type.excludes(this.type))return e;!n&&o.type.rank>this.type.rank&&(t||(t=e.slice(0,r)),t.push(this),n=!0),t&&t.push(o)}}return t||(t=e.slice()),n||t.push(this),t}removeFromSet(e){for(let t=0;t<e.length;t++)if(this.eq(e[t]))return e.slice(0,t).concat(e.slice(t+1));return e}isInSet(e){for(let t=0;t<e.length;t++)if(this.eq(e[t]))return!0;return!1}eq(e){return this==e||this.type==e.type&&In(this.attrs,e.attrs)}toJSON(){let e={type:this.type.name};for(let t in this.attrs){e.attrs=this.attrs;break}return e}static fromJSON(e,t){if(!t)throw new RangeError("Invalid input for Mark.fromJSON");let n=e.marks[t.type];if(!n)throw new RangeError(`There is no mark type ${t.type} in this schema`);let r=n.create(t.attrs);return n.checkAttrs(r.attrs),r}static sameSet(e,t){if(e==t)return!0;if(e.length!=t.length)return!1;for(let n=0;n<e.length;n++)if(!e[n].eq(t[n]))return!1;return!0}static setFrom(t){if(!t||Array.isArray(t)&&0==t.length)return e.none;if(t instanceof e)return[t];let n=t.slice();return n.sort((e,t)=>e.type.rank-t.type.rank),n}};P.none=[];class Rn extends Error{}class S{constructor(e,t,n){this.content=e,this.openStart=t,this.openEnd=n}get size(){return this.content.size-this.openStart-this.openEnd}insertAt(e,t){let n=Ko(this.content,e+this.openStart,t);return n&&new S(n,this.openStart,this.openEnd)}removeBetween(e,t){return new S(Wo(this.content,e+this.openStart,t+this.openStart),this.openStart,this.openEnd)}eq(e){return this.content.eq(e.content)&&this.openStart==e.openStart&&this.openEnd==e.openEnd}toString(){return this.content+"("+this.openStart+","+this.openEnd+")"}toJSON(){if(!this.content.size)return null;let e={content:this.content.toJSON()};return this.openStart>0&&(e.openStart=this.openStart),this.openEnd>0&&(e.openEnd=this.openEnd),e}static fromJSON(e,t){if(!t)return S.empty;let n=t.openStart||0,r=t.openEnd||0;if("number"!=typeof n||"number"!=typeof r)throw new RangeError("Invalid input for Slice.fromJSON");return new S(b.fromJSON(e,t.content),n,r)}static maxOpen(e,t=!0){let n=0,r=0;for(let r=e.firstChild;r&&!r.isLeaf&&(t||!r.type.spec.isolating);r=r.firstChild)n++;for(let n=e.lastChild;n&&!n.isLeaf&&(t||!n.type.spec.isolating);n=n.lastChild)r++;return new S(e,n,r)}}function Wo(e,t,n){let{index:r,offset:o}=e.findIndex(t),i=e.maybeChild(r),{index:s,offset:a}=e.findIndex(n);if(o==t||i.isText){if(a!=n&&!e.child(s).isText)throw new RangeError("Removing non-flat range");return e.cut(0,t).append(e.cut(n))}if(r!=s)throw new RangeError("Removing non-flat range");return e.replaceChild(r,i.copy(Wo(i.content,t-o-1,n-o-1)))}function Ko(e,t,n,r){let{index:o,offset:i}=e.findIndex(t),s=e.maybeChild(o);if(i==t||s.isText)return r&&!r.canReplace(o,o,n)?null:e.cut(0,t).append(n).append(e.cut(t));let a=Ko(s.content,t-i-1,n,s);return a&&e.replaceChild(o,s.copy(a))}function ac(e,t,n){if(n.openStart>e.depth)throw new Rn("Inserted content deeper than insertion position");if(e.depth-n.openStart!=t.depth-n.openEnd)throw new Rn("Inconsistent open depths");return _o(e,t,n,0)}function _o(e,t,n,r){let o=e.index(r),i=e.node(r);if(o==t.index(r)&&r<e.depth-n.openStart){let s=_o(e,t,n,r+1);return i.copy(i.content.replaceChild(o,s))}if(n.content.size){if(n.openStart||n.openEnd||e.depth!=r||t.depth!=r){let{start:o,end:s}=cc(n,e);return st(i,Jo(e,o,s,t,r))}{let r=e.parent,o=r.content;return st(r,o.cut(0,e.parentOffset).append(n.content).append(o.cut(t.parentOffset)))}}return st(i,Pn(e,t,r))}function Uo(e,t){if(!t.type.compatibleContent(e.type))throw new Rn("Cannot join "+t.type.name+" onto "+e.type.name)}function ai(e,t,n){let r=e.node(n);return Uo(r,t.node(n)),r}function it(e,t){let n=t.length-1;n>=0&&e.isText&&e.sameMarkup(t[n])?t[n]=e.withText(t[n].text+e.text):t.push(e)}function Vt(e,t,n,r){let o=(t||e).node(n),i=0,s=t?t.index(n):o.childCount;e&&(i=e.index(n),e.depth>n?i++:e.textOffset&&(it(e.nodeAfter,r),i++));for(let e=i;e<s;e++)it(o.child(e),r);t&&t.depth==n&&t.textOffset&&it(t.nodeBefore,r)}function st(e,t){return e.type.checkContent(t),e.copy(t)}function Jo(e,t,n,r,o){let i=e.depth>o&&ai(e,t,o+1),s=r.depth>o&&ai(n,r,o+1),a=[];return Vt(null,e,o,a),i&&s&&t.index(o)==n.index(o)?(Uo(i,s),it(st(i,Jo(e,t,n,r,o+1)),a)):(i&&it(st(i,Pn(e,t,o+1)),a),Vt(t,n,o,a),s&&it(st(s,Pn(n,r,o+1)),a)),Vt(r,null,o,a),new b(a)}function Pn(e,t,n){let r=[];if(Vt(null,e,n,r),e.depth>n){it(st(ai(e,t,n+1),Pn(e,t,n+1)),r)}return Vt(t,null,n,r),new b(r)}function cc(e,t){let n=t.depth-e.openStart,r=t.node(n).copy(e.content);for(let e=n-1;e>=0;e--)r=t.node(e).copy(b.from(r));return{start:r.resolveNoCache(e.openStart+n),end:r.resolveNoCache(r.content.size-e.openEnd-n)}}S.empty=new S(b.empty,0,0);class Yt{constructor(e,t,n){this.pos=e,this.path=t,this.parentOffset=n,this.depth=t.length/3-1}resolveDepth(e){return null==e?this.depth:e<0?this.depth+e:e}get parent(){return this.node(this.depth)}get doc(){return this.node(0)}node(e){return this.path[3*this.resolveDepth(e)]}index(e){return this.path[3*this.resolveDepth(e)+1]}indexAfter(e){return e=this.resolveDepth(e),this.index(e)+(e!=this.depth||this.textOffset?1:0)}start(e){return 0==(e=this.resolveDepth(e))?0:this.path[3*e-1]+1}end(e){return e=this.resolveDepth(e),this.start(e)+this.node(e).content.size}before(e){if(!(e=this.resolveDepth(e)))throw new RangeError("There is no position before the top-level node");return e==this.depth+1?this.pos:this.path[3*e-1]}after(e){if(!(e=this.resolveDepth(e)))throw new RangeError("There is no position after the top-level node");return e==this.depth+1?this.pos:this.path[3*e-1]+this.path[3*e].nodeSize}get textOffset(){return this.pos-this.path[this.path.length-1]}get nodeAfter(){let e=this.parent,t=this.index(this.depth);if(t==e.childCount)return null;let n=this.pos-this.path[this.path.length-1],r=e.child(t);return n?e.child(t).cut(n):r}get nodeBefore(){let e=this.index(this.depth),t=this.pos-this.path[this.path.length-1];return t?this.parent.child(e).cut(0,t):0==e?null:this.parent.child(e-1)}posAtIndex(e,t){t=this.resolveDepth(t);let n=this.path[3*t],r=0==t?0:this.path[3*t-1]+1;for(let t=0;t<e;t++)r+=n.child(t).nodeSize;return r}marks(){let e=this.parent,t=this.index();if(0==e.content.size)return P.none;if(this.textOffset)return e.child(t).marks;let n=e.maybeChild(t-1),r=e.maybeChild(t);if(!n){let e=n;n=r,r=e}let o=n.marks;for(var i=0;i<o.length;i++)!1===o[i].type.spec.inclusive&&(!r||!o[i].isInSet(r.marks))&&(o=o[i--].removeFromSet(o));return o}marksAcross(e){let t=this.parent.maybeChild(this.index());if(!t||!t.isInline)return null;let n=t.marks,r=e.parent.maybeChild(e.index());for(var o=0;o<n.length;o++)!1===n[o].type.spec.inclusive&&(!r||!n[o].isInSet(r.marks))&&(n=n[o--].removeFromSet(n));return n}sharedDepth(e){for(let t=this.depth;t>0;t--)if(this.start(t)<=e&&this.end(t)>=e)return t;return 0}blockRange(e=this,t){if(e.pos<this.pos)return e.blockRange(this);for(let n=this.depth-(this.parent.inlineContent||this.pos==e.pos?1:0);n>=0;n--)if(e.pos<=this.end(n)&&(!t||t(this.node(n))))return new Ln(this,e,n);return null}sameParent(e){return this.pos-this.parentOffset==e.pos-e.parentOffset}max(e){return e.pos>this.pos?e:this}min(e){return e.pos<this.pos?e:this}toString(){let e="";for(let t=1;t<=this.depth;t++)e+=(e?"/":"")+this.node(t).type.name+"_"+this.index(t-1);return e+":"+this.parentOffset}static resolve(e,t){if(!(t>=0&&t<=e.content.size))throw new RangeError("Position "+t+" out of range");let n=[],r=0,o=t;for(let t=e;;){let{index:e,offset:i}=t.content.findIndex(o),s=o-i;if(n.push(t,e,r+i),!s||(t=t.child(e),t.isText))break;o=s-1,r+=i+1}return new Yt(t,n,o)}static resolveCached(e,t){let n=xs.get(e);if(n)for(let e=0;e<n.elts.length;e++){let r=n.elts[e];if(r.pos==t)return r}else xs.set(e,n=new uc);let r=n.elts[n.i]=Yt.resolve(e,t);return n.i=(n.i+1)%dc,r}}class uc{constructor(){this.elts=[],this.i=0}}const dc=12,xs=new WeakMap;class Ln{constructor(e,t,n){this.$from=e,this.$to=t,this.depth=n}get start(){return this.$from.before(this.depth+1)}get end(){return this.$to.after(this.depth+1)}get parent(){return this.$from.node(this.depth)}get startIndex(){return this.$from.index(this.depth)}get endIndex(){return this.$to.indexAfter(this.depth)}}const fc=Object.create(null);class be{constructor(e,t,n,r=P.none){this.type=e,this.attrs=t,this.marks=r,this.content=n||b.empty}get children(){return this.content.content}get nodeSize(){return this.isLeaf?1:2+this.content.size}get childCount(){return this.content.childCount}child(e){return this.content.child(e)}maybeChild(e){return this.content.maybeChild(e)}forEach(e){this.content.forEach(e)}nodesBetween(e,t,n,r=0){this.content.nodesBetween(e,t,n,r,this)}descendants(e){this.nodesBetween(0,this.content.size,e)}get textContent(){return this.isLeaf&&this.type.spec.leafText?this.type.spec.leafText(this):this.textBetween(0,this.content.size,"")}textBetween(e,t,n,r){return this.content.textBetween(e,t,n,r)}get firstChild(){return this.content.firstChild}get lastChild(){return this.content.lastChild}eq(e){return this==e||this.sameMarkup(e)&&this.content.eq(e.content)}sameMarkup(e){return this.hasMarkup(e.type,e.attrs,e.marks)}hasMarkup(e,t,n){return this.type==e&&In(this.attrs,t||e.defaultAttrs||fc)&&P.sameSet(this.marks,n||P.none)}copy(e=null){return e==this.content?this:new be(this.type,this.attrs,e,this.marks)}mark(e){return e==this.marks?this:new be(this.type,this.attrs,this.content,e)}cut(e,t=this.content.size){return 0==e&&t==this.content.size?this:this.copy(this.content.cut(e,t))}slice(e,t=this.content.size,n=!1){if(e==t)return S.empty;let r=this.resolve(e),o=this.resolve(t),i=n?0:r.sharedDepth(t),s=r.start(i),a=r.node(i).content.cut(r.pos-s,o.pos-s);return new S(a,r.depth-i,o.depth-i)}replace(e,t,n){return ac(this.resolve(e),this.resolve(t),n)}nodeAt(e){for(let t=this;;){let{index:n,offset:r}=t.content.findIndex(e);if(t=t.maybeChild(n),!t)return null;if(r==e||t.isText)return t;e-=r+1}}childAfter(e){let{index:t,offset:n}=this.content.findIndex(e);return{node:this.content.maybeChild(t),index:t,offset:n}}childBefore(e){if(0==e)return{node:null,index:0,offset:0};let{index:t,offset:n}=this.content.findIndex(e);if(n<e)return{node:this.content.child(t),index:t,offset:n};let r=this.content.child(t-1);return{node:r,index:t-1,offset:n-r.nodeSize}}resolve(e){return Yt.resolveCached(this,e)}resolveNoCache(e){return Yt.resolve(this,e)}rangeHasMark(e,t,n){let r=!1;return t>e&&this.nodesBetween(e,t,e=>(n.isInSet(e.marks)&&(r=!0),!r)),r}get isBlock(){return this.type.isBlock}get isTextblock(){return this.type.isTextblock}get inlineContent(){return this.type.inlineContent}get isInline(){return this.type.isInline}get isText(){return this.type.isText}get isLeaf(){return this.type.isLeaf}get isAtom(){return this.type.isAtom}toString(){if(this.type.spec.toDebugString)return this.type.spec.toDebugString(this);let e=this.type.name;return this.content.size&&(e+="("+this.content.toStringInner()+")"),qo(this.marks,e)}contentMatchAt(e){let t=this.type.contentMatch.matchFragment(this.content,0,e);if(!t)throw new Error("Called contentMatchAt on a node with invalid content");return t}canReplace(e,t,n=b.empty,r=0,o=n.childCount){let i=this.contentMatchAt(e).matchFragment(n,r,o),s=i&&i.matchFragment(this.content,t);if(!s||!s.validEnd)return!1;for(let e=r;e<o;e++)if(!this.type.allowsMarks(n.child(e).marks))return!1;return!0}canReplaceWith(e,t,n,r){if(r&&!this.type.allowsMarks(r))return!1;let o=this.contentMatchAt(e).matchType(n),i=o&&o.matchFragment(this.content,t);return!!i&&i.validEnd}canAppend(e){return e.content.size?this.canReplace(this.childCount,this.childCount,e.content):this.type.compatibleContent(e.type)}check(){this.type.checkContent(this.content),this.type.checkAttrs(this.attrs);let e=P.none;for(let t=0;t<this.marks.length;t++){let n=this.marks[t];n.type.checkAttrs(n.attrs),e=n.addToSet(e)}if(!P.sameSet(e,this.marks))throw new RangeError(`Invalid collection of marks for node ${this.type.name}: ${this.marks.map(e=>e.type.name)}`);this.content.forEach(e=>e.check())}toJSON(){let e={type:this.type.name};for(let t in this.attrs){e.attrs=this.attrs;break}return this.content.size&&(e.content=this.content.toJSON()),this.marks.length&&(e.marks=this.marks.map(e=>e.toJSON())),e}static fromJSON(e,t){if(!t)throw new RangeError("Invalid input for Node.fromJSON");let n;if(t.marks){if(!Array.isArray(t.marks))throw new RangeError("Invalid mark data for Node.fromJSON");n=t.marks.map(e.markFromJSON)}if("text"==t.type){if("string"!=typeof t.text)throw new RangeError("Invalid text node in JSON");return e.text(t.text,n)}let r=b.fromJSON(e,t.content),o=e.nodeType(t.type).create(t.attrs,r,n);return o.type.checkAttrs(o.attrs),o}}be.prototype.text=void 0;class Bn extends be{constructor(e,t,n,r){if(super(e,t,null,r),!n)throw new RangeError("Empty text nodes are not allowed");this.text=n}toString(){return this.type.spec.toDebugString?this.type.spec.toDebugString(this):qo(this.marks,JSON.stringify(this.text))}get textContent(){return this.text}textBetween(e,t){return this.text.slice(e,t)}get nodeSize(){return this.text.length}mark(e){return e==this.marks?this:new Bn(this.type,this.attrs,this.text,e)}withText(e){return e==this.text?this:new Bn(this.type,this.attrs,e,this.marks)}cut(e=0,t=this.text.length){return 0==e&&t==this.text.length?this:this.withText(this.text.slice(e,t))}eq(e){return this.sameMarkup(e)&&this.text==e.text}toJSON(){let e=super.toJSON();return e.text=this.text,e}}function qo(e,t){for(let n=e.length-1;n>=0;n--)t=e[n].type.name+"("+t+")";return t}class ct{constructor(e){this.validEnd=e,this.next=[],this.wrapCache=[]}static parse(e,t){let n=new hc(e,t);if(null==n.next)return ct.empty;let r=Go(n);n.next&&n.err("Unexpected trailing text");let o=xc(kc(r));return Sc(o,n),o}matchType(e){for(let t=0;t<this.next.length;t++)if(this.next[t].type==e)return this.next[t].next;return null}matchFragment(e,t=0,n=e.childCount){let r=this;for(let o=t;r&&o<n;o++)r=r.matchType(e.child(o).type);return r}get inlineContent(){return 0!=this.next.length&&this.next[0].type.isInline}get defaultType(){for(let e=0;e<this.next.length;e++){let{type:t}=this.next[e];if(!t.isText&&!t.hasRequiredAttrs())return t}return null}compatible(e){for(let t=0;t<this.next.length;t++)for(let n=0;n<e.next.length;n++)if(this.next[t].type==e.next[n].type)return!0;return!1}fillBefore(e,t=!1,n=0){let r=[this];return function o(i,s){let a=i.matchFragment(e,n);if(a&&(!t||a.validEnd))return b.from(s.map(e=>e.createAndFill()));for(let e=0;e<i.next.length;e++){let{type:t,next:n}=i.next[e];if(!t.isText&&!t.hasRequiredAttrs()&&-1==r.indexOf(n)){r.push(n);let e=o(n,s.concat(t));if(e)return e}}return null}(this,[])}findWrapping(e){for(let t=0;t<this.wrapCache.length;t+=2)if(this.wrapCache[t]==e)return this.wrapCache[t+1];let t=this.computeWrapping(e);return this.wrapCache.push(e,t),t}computeWrapping(e){let t=Object.create(null),n=[{match:this,type:null,via:null}];for(;n.length;){let r=n.shift(),o=r.match;if(o.matchType(e)){let e=[];for(let t=r;t.type;t=t.via)e.push(t.type);return e.reverse()}for(let e=0;e<o.next.length;e++){let{type:i,next:s}=o.next[e];!i.isLeaf&&!i.hasRequiredAttrs()&&!(i.name in t)&&(!r.type||s.validEnd)&&(n.push({match:i.contentMatch,type:i,via:r}),t[i.name]=!0)}}return null}get edgeCount(){return this.next.length}edge(e){if(e>=this.next.length)throw new RangeError(`There's no ${e}th edge in this content match`);return this.next[e]}toString(){let e=[];return function t(n){e.push(n);for(let r=0;r<n.next.length;r++)-1==e.indexOf(n.next[r].next)&&t(n.next[r].next)}(this),e.map((t,n)=>{let r=n+(t.validEnd?"*":" ")+" ";for(let n=0;n<t.next.length;n++)r+=(n?", ":"")+t.next[n].type.name+"->"+e.indexOf(t.next[n].next);return r}).join("\n")}}ct.empty=new ct(!0);class hc{constructor(e,t){this.string=e,this.nodeTypes=t,this.inline=null,this.pos=0,this.tokens=e.split(/\s*(?=\b|\W|$)/),""==this.tokens[this.tokens.length-1]&&this.tokens.pop(),""==this.tokens[0]&&this.tokens.shift()}get next(){return this.tokens[this.pos]}eat(e){return this.next==e&&(this.pos++||!0)}err(e){throw new SyntaxError(e+" (in content expression '"+this.string+"')")}}function Go(e){let t=[];do{t.push(pc(e))}while(e.eat("|"));return 1==t.length?t[0]:{type:"choice",exprs:t}}function pc(e){let t=[];do{t.push(mc(e))}while(e.next&&")"!=e.next&&"|"!=e.next);return 1==t.length?t[0]:{type:"seq",exprs:t}}function mc(e){let t=bc(e);for(;;)if(e.eat("+"))t={type:"plus",expr:t};else if(e.eat("*"))t={type:"star",expr:t};else if(e.eat("?"))t={type:"opt",expr:t};else{if(!e.eat("{"))break;t=gc(e,t)}return t}function Ss(e){/\D/.test(e.next)&&e.err("Expected number, got '"+e.next+"'");let t=Number(e.next);return e.pos++,t}function gc(e,t){let n=Ss(e),r=n;return e.eat(",")&&(r="}"!=e.next?Ss(e):-1),e.eat("}")||e.err("Unclosed braced range"),{type:"range",min:n,max:r,expr:t}}function yc(e,t){let n=e.nodeTypes,r=n[t];if(r)return[r];let o=[];for(let e in n){let r=n[e];r.isInGroup(t)&&o.push(r)}return 0==o.length&&e.err("No node type or group '"+t+"' found"),o}function bc(e){if(e.eat("(")){let t=Go(e);return e.eat(")")||e.err("Missing closing paren"),t}if(!/\W/.test(e.next)){let t=yc(e,e.next).map(t=>(null==e.inline?e.inline=t.isInline:e.inline!=t.isInline&&e.err("Mixing inline and block content"),{type:"name",value:t}));return e.pos++,1==t.length?t[0]:{type:"choice",exprs:t}}e.err("Unexpected token '"+e.next+"'")}function kc(e){let t=[[]];return o(function e(t,i){if("choice"==t.type)return t.exprs.reduce((t,n)=>t.concat(e(n,i)),[]);if("seq"!=t.type){if("star"==t.type){let s=n();return r(i,s),o(e(t.expr,s),s),[r(s)]}if("plus"==t.type){let s=n();return o(e(t.expr,i),s),o(e(t.expr,s),s),[r(s)]}if("opt"==t.type)return[r(i)].concat(e(t.expr,i));if("range"==t.type){let s=i;for(let r=0;r<t.min;r++){let r=n();o(e(t.expr,s),r),s=r}if(-1==t.max)o(e(t.expr,s),s);else for(let i=t.min;i<t.max;i++){let i=n();r(s,i),o(e(t.expr,s),i),s=i}return[r(s)]}if("name"==t.type)return[r(i,void 0,t.value)];throw new Error("Unknown expr type")}for(let r=0;;r++){let s=e(t.exprs[r],i);if(r==t.exprs.length-1)return s;o(s,i=n())}}(e,0),n()),t;function n(){return t.push([])-1}function r(e,n,r){let o={term:r,to:n};return t[e].push(o),o}function o(e,t){e.forEach(e=>e.to=t)}}function Yo(e,t){return t-e}function Cs(e,t){let n=[];return function t(r){let o=e[r];if(1==o.length&&!o[0].term)return t(o[0].to);n.push(r);for(let e=0;e<o.length;e++){let{term:r,to:i}=o[e];!r&&-1==n.indexOf(i)&&t(i)}}(t),n.sort(Yo)}function xc(e){let t=Object.create(null);return function n(r){let o=[];r.forEach(t=>{e[t].forEach(({term:t,to:n})=>{if(!t)return;let r;for(let e=0;e<o.length;e++)o[e][0]==t&&(r=o[e][1]);Cs(e,n).forEach(e=>{r||o.push([t,r=[]]),-1==r.indexOf(e)&&r.push(e)})})});let i=t[r.join(",")]=new ct(r.indexOf(e.length-1)>-1);for(let e=0;e<o.length;e++){let r=o[e][1].sort(Yo);i.next.push({type:o[e][0],next:t[r.join(",")]||n(r)})}return i}(Cs(e,0))}function Sc(e,t){for(let n=0,r=[e];n<r.length;n++){let e=r[n],o=!e.validEnd,i=[];for(let t=0;t<e.next.length;t++){let{type:n,next:s}=e.next[t];i.push(n.name),o&&!(n.isText||n.hasRequiredAttrs())&&(o=!1),-1==r.indexOf(s)&&r.push(s)}o&&t.err("Only non-generatable nodes ("+i.join(", ")+") in a required position (see https://prosemirror.net/docs/guide/#generatable)")}}function Xo(e){let t=Object.create(null);for(let n in e){let r=e[n];if(!r.hasDefault)return null;t[n]=r.default}return t}function Qo(e,t){let n=Object.create(null);for(let r in e){let o=t&&t[r];if(void 0===o){let t=e[r];if(!t.hasDefault)throw new RangeError("No value supplied for attribute "+r);o=t.default}n[r]=o}return n}function Zo(e,t,n,r){for(let r in t)if(!(r in e))throw new RangeError(`Unsupported attribute ${r} for ${n} of type ${r}`);for(let n in e){let r=e[n];r.validate&&r.validate(t[n])}}function el(e,t){let n=Object.create(null);if(t)for(let r in t)n[r]=new Mc(e,r,t[r]);return n}let Ms=class e{constructor(e,t,n){this.name=e,this.schema=t,this.spec=n,this.markSet=null,this.groups=n.group?n.group.split(" "):[],this.attrs=el(e,n.attrs),this.defaultAttrs=Xo(this.attrs),this.contentMatch=null,this.inlineContent=null,this.isBlock=!(n.inline||"text"==e),this.isText="text"==e}get isInline(){return!this.isBlock}get isTextblock(){return this.isBlock&&this.inlineContent}get isLeaf(){return this.contentMatch==ct.empty}get isAtom(){return this.isLeaf||!!this.spec.atom}isInGroup(e){return this.groups.indexOf(e)>-1}get whitespace(){return this.spec.whitespace||(this.spec.code?"pre":"normal")}hasRequiredAttrs(){for(let e in this.attrs)if(this.attrs[e].isRequired)return!0;return!1}compatibleContent(e){return this==e||this.contentMatch.compatible(e.contentMatch)}computeAttrs(e){return!e&&this.defaultAttrs?this.defaultAttrs:Qo(this.attrs,e)}create(e=null,t,n){if(this.isText)throw new Error("NodeType.create can't construct text nodes");return new be(this,this.computeAttrs(e),b.from(t),P.setFrom(n))}createChecked(e=null,t,n){return t=b.from(t),this.checkContent(t),new be(this,this.computeAttrs(e),t,P.setFrom(n))}createAndFill(e=null,t,n){if(e=this.computeAttrs(e),(t=b.from(t)).size){let e=this.contentMatch.fillBefore(t);if(!e)return null;t=e.append(t)}let r=this.contentMatch.matchFragment(t),o=r&&r.fillBefore(b.empty,!0);return o?new be(this,e,t.append(o),P.setFrom(n)):null}validContent(e){let t=this.contentMatch.matchFragment(e);if(!t||!t.validEnd)return!1;for(let t=0;t<e.childCount;t++)if(!this.allowsMarks(e.child(t).marks))return!1;return!0}checkContent(e){if(!this.validContent(e))throw new RangeError(`Invalid content for node ${this.name}: ${e.toString().slice(0,50)}`)}checkAttrs(e){Zo(this.attrs,e,"node",this.name)}allowsMarkType(e){return null==this.markSet||this.markSet.indexOf(e)>-1}allowsMarks(e){if(null==this.markSet)return!0;for(let t=0;t<e.length;t++)if(!this.allowsMarkType(e[t].type))return!1;return!0}allowedMarks(e){if(null==this.markSet)return e;let t;for(let n=0;n<e.length;n++)this.allowsMarkType(e[n].type)?t&&t.push(e[n]):t||(t=e.slice(0,n));return t?t.length?t:P.none:e}static compile(t,n){let r=Object.create(null);t.forEach((t,o)=>r[t]=new e(t,n,o));let o=n.spec.topNode||"doc";if(!r[o])throw new RangeError("Schema is missing its top node type ('"+o+"')");if(!r.text)throw new RangeError("Every schema needs a 'text' type");for(let e in r.text.attrs)throw new RangeError("The text node type should not have attributes");return r}};function Cc(e,t,n){let r=n.split("|");return n=>{let o=null===n?"null":typeof n;if(r.indexOf(o)<0)throw new RangeError(`Expected value of type ${r} for attribute ${t} on type ${e}, got ${o}`)}}class Mc{constructor(e,t,n){this.hasDefault=Object.prototype.hasOwnProperty.call(n,"default"),this.default=n.default,this.validate="string"==typeof n.validate?Cc(e,t,n.validate):n.validate}get isRequired(){return!this.hasDefault}}class xr{constructor(e,t,n,r){this.name=e,this.rank=t,this.schema=n,this.spec=r,this.attrs=el(e,r.attrs),this.excluded=null;let o=Xo(this.attrs);this.instance=o?new P(this,o):null}create(e=null){return!e&&this.instance?this.instance:new P(this,Qo(this.attrs,e))}static compile(e,t){let n=Object.create(null),r=0;return e.forEach((e,o)=>n[e]=new xr(e,r++,t,o)),n}removeFromSet(e){for(var t=0;t<e.length;t++)e[t].type==this&&(e=e.slice(0,t).concat(e.slice(t+1)),t--);return e}isInSet(e){for(let t=0;t<e.length;t++)if(e[t].type==this)return e[t]}checkAttrs(e){Zo(this.attrs,e,"mark",this.name)}excludes(e){return this.excluded.indexOf(e)>-1}}class nl{constructor(e){this.linebreakReplacement=null,this.cached=Object.create(null);let t=this.spec={};for(let n in e)t[n]=e[n];t.nodes=G.from(e.nodes),t.marks=G.from(e.marks||{}),this.nodes=Ms.compile(this.spec.nodes,this),this.marks=xr.compile(this.spec.marks,this);let n=Object.create(null);for(let e in this.nodes){if(e in this.marks)throw new RangeError(e+" can not be both a node and a mark");let t=this.nodes[e],r=t.spec.content||"",o=t.spec.marks;if(t.contentMatch=n[r]||(n[r]=ct.parse(r,this.nodes)),t.inlineContent=t.contentMatch.inlineContent,t.spec.linebreakReplacement){if(this.linebreakReplacement)throw new RangeError("Multiple linebreak nodes defined");if(!t.isInline||!t.isLeaf)throw new RangeError("Linebreak replacement nodes must be inline leaf nodes");this.linebreakReplacement=t}t.markSet="_"==o?null:o?ws(this,o.split(" ")):""!=o&&t.inlineContent?null:[]}for(let e in this.marks){let t=this.marks[e],n=t.spec.excludes;t.excluded=null==n?[t]:""==n?[]:ws(this,n.split(" "))}this.nodeFromJSON=e=>be.fromJSON(this,e),this.markFromJSON=e=>P.fromJSON(this,e),this.topNodeType=this.nodes[this.spec.topNode||"doc"],this.cached.wrappings=Object.create(null)}node(e,t=null,n,r){if("string"==typeof e)e=this.nodeType(e);else{if(!(e instanceof Ms))throw new RangeError("Invalid node type: "+e);if(e.schema!=this)throw new RangeError("Node type from different schema used ("+e.name+")")}return e.createChecked(t,n,r)}text(e,t){let n=this.nodes.text;return new Bn(n,n.defaultAttrs,e,P.setFrom(t))}mark(e,t){return"string"==typeof e&&(e=this.marks[e]),e.create(t)}nodeType(e){let t=this.nodes[e];if(!t)throw new RangeError("Unknown node type: "+e);return t}}function ws(e,t){let n=[];for(let r=0;r<t.length;r++){let o=t[r],i=e.marks[o],s=i;if(i)n.push(i);else for(let t in e.marks){let r=e.marks[t];("_"==o||r.spec.group&&r.spec.group.split(" ").indexOf(o)>-1)&&n.push(s=r)}if(!s)throw new SyntaxError("Unknown mark type: '"+t[r]+"'")}return n}function wc(e){return null!=e.tag}function Tc(e){return null!=e.style}class Ke{constructor(e,t){this.schema=e,this.rules=t,this.tags=[],this.styles=[];let n=this.matchedStyles=[];t.forEach(e=>{if(wc(e))this.tags.push(e);else if(Tc(e)){let t=/[^=]*/.exec(e.style)[0];n.indexOf(t)<0&&n.push(t),this.styles.push(e)}}),this.normalizeLists=!this.tags.some(t=>{if(!/^(ul|ol)\b/.test(t.tag)||!t.node)return!1;let n=e.nodes[t.node];return n.contentMatch.matchType(n)})}parse(e,t={}){let n=new Es(this,t,!1);return n.addAll(e,P.none,t.from,t.to),n.finish()}parseSlice(e,t={}){let n=new Es(this,t,!0);return n.addAll(e,P.none,t.from,t.to),S.maxOpen(n.finish())}matchTag(e,t,n){for(let r=n?this.tags.indexOf(n)+1:0;r<this.tags.length;r++){let n=this.tags[r];if(Oc(e,n.tag)&&(void 0===n.namespace||e.namespaceURI==n.namespace)&&(!n.context||t.matchesContext(n.context))){if(n.getAttrs){let t=n.getAttrs(e);if(!1===t)continue;n.attrs=t||void 0}return n}}}matchStyle(e,t,n,r){for(let o=r?this.styles.indexOf(r)+1:0;o<this.styles.length;o++){let r=this.styles[o],i=r.style;if(!(0!=i.indexOf(e)||r.context&&!n.matchesContext(r.context)||i.length>e.length&&(61!=i.charCodeAt(e.length)||i.slice(e.length+1)!=t))){if(r.getAttrs){let e=r.getAttrs(t);if(!1===e)continue;r.attrs=e||void 0}return r}}}static schemaRules(e){let t=[];function n(e){let n=null==e.priority?50:e.priority,r=0;for(;r<t.length;r++){let e=t[r];if((null==e.priority?50:e.priority)<n)break}t.splice(r,0,e)}for(let t in e.marks){let r=e.marks[t].spec.parseDOM;r&&r.forEach(e=>{n(e=vs(e)),e.mark||e.ignore||e.clearMark||(e.mark=t)})}for(let t in e.nodes){let r=e.nodes[t].spec.parseDOM;r&&r.forEach(e=>{n(e=vs(e)),e.node||e.ignore||e.mark||(e.node=t)})}return t}static fromSchema(e){return e.cached.domParser||(e.cached.domParser=new Ke(e,Ke.schemaRules(e)))}}const rl={address:!0,article:!0,aside:!0,blockquote:!0,canvas:!0,dd:!0,div:!0,dl:!0,fieldset:!0,figcaption:!0,figure:!0,footer:!0,form:!0,h1:!0,h2:!0,h3:!0,h4:!0,h5:!0,h6:!0,header:!0,hgroup:!0,hr:!0,li:!0,noscript:!0,ol:!0,output:!0,p:!0,pre:!0,section:!0,table:!0,tfoot:!0,ul:!0},Ec={head:!0,noscript:!0,object:!0,script:!0,style:!0,title:!0},il={ol:!0,ul:!0},Xt=1,ci=2,Ht=4;function Ts(e,t,n){return null!=t?(t?1:0)|("full"===t?2:0):e&&"pre"==e.whitespace?3:-5&n}class yn{constructor(e,t,n,r,o,i){this.type=e,this.attrs=t,this.marks=n,this.solid=r,this.options=i,this.content=[],this.activeMarks=P.none,this.match=o||(4&i?null:e.contentMatch)}findWrapping(e){if(!this.match){if(!this.type)return[];let t=this.type.contentMatch.fillBefore(b.from(e));if(!t){let t,n=this.type.contentMatch;return(t=n.findWrapping(e.type))?(this.match=n,t):null}this.match=this.type.contentMatch.matchFragment(t)}return this.match.findWrapping(e.type)}finish(e){if(!(1&this.options)){let e,t=this.content[this.content.length-1];if(t&&t.isText&&(e=/[ \t\r\n\u000c]+$/.exec(t.text))){let n=t;t.text.length==e[0].length?this.content.pop():this.content[this.content.length-1]=n.withText(n.text.slice(0,n.text.length-e[0].length))}}let t=b.from(this.content);return!e&&this.match&&(t=t.append(this.match.fillBefore(b.empty,!0))),this.type?this.type.create(this.attrs,t,this.marks):t}inlineContext(e){return this.type?this.type.inlineContent:this.content.length?this.content[0].isInline:e.parentNode&&!rl.hasOwnProperty(e.parentNode.nodeName.toLowerCase())}}class Es{constructor(e,t,n){this.parser=e,this.options=t,this.isOpen=n,this.open=0,this.localPreserveWS=!1;let r,o=t.topNode,i=Ts(null,t.preserveWhitespace,0)|(n?4:0);r=o?new yn(o.type,o.attrs,P.none,!0,t.topMatch||o.type.contentMatch,i):new yn(n?null:e.schema.topNodeType,null,P.none,!0,null,i),this.nodes=[r],this.find=t.findPositions,this.needsBlock=!1}get top(){return this.nodes[this.open]}addDOM(e,t){3==e.nodeType?this.addTextNode(e,t):1==e.nodeType&&this.addElement(e,t)}addTextNode(e,t){let n=e.nodeValue,r=this.top,o=2&r.options?"full":this.localPreserveWS||(1&r.options)>0;if("full"===o||r.inlineContext(e)||/[^ \t\r\n\u000c]/.test(n)){if(o)n="full"!==o?n.replace(/\r?\n|\r/g," "):n.replace(/\r\n?/g,"\n");else if(n=n.replace(/[ \t\r\n\u000c]+/g," "),/^[ \t\r\n\u000c]/.test(n)&&this.open==this.nodes.length-1){let t=r.content[r.content.length-1],o=e.previousSibling;(!t||o&&"BR"==o.nodeName||t.isText&&/[ \t\r\n\u000c]$/.test(t.text))&&(n=n.slice(1))}n&&this.insertNode(this.parser.schema.text(n),t,!/\S/.test(n)),this.findInText(e)}else this.findInside(e)}addElement(e,t,n){let r=this.localPreserveWS,o=this.top;("PRE"==e.tagName||/pre/.test(e.style&&e.style.whiteSpace))&&(this.localPreserveWS=!0);let i,s=e.nodeName.toLowerCase();il.hasOwnProperty(s)&&this.parser.normalizeLists&&vc(e);let a=this.options.ruleFromNode&&this.options.ruleFromNode(e)||(i=this.parser.matchTag(e,this,n));e:if(a?a.ignore:Ec.hasOwnProperty(s))this.findInside(e),this.ignoreFallback(e,t);else if(!a||a.skip||a.closeParent){a&&a.closeParent?this.open=Math.max(0,this.open-1):a&&a.skip.nodeType&&(e=a.skip);let n,r=this.needsBlock;if(rl.hasOwnProperty(s))o.content.length&&o.content[0].isInline&&this.open&&(this.open--,o=this.top),n=!0,o.type||(this.needsBlock=!0);else if(!e.firstChild){this.leafFallback(e,t);break e}let i=a&&a.skip?t:this.readStyles(e,t);i&&this.addAll(e,i),n&&this.sync(o),this.needsBlock=r}else{let n=this.readStyles(e,t);n&&this.addElementByRule(e,a,n,!1===a.consuming?i:void 0)}this.localPreserveWS=r}leafFallback(e,t){"BR"==e.nodeName&&this.top.type&&this.top.type.inlineContent&&this.addTextNode(e.ownerDocument.createTextNode("\n"),t)}ignoreFallback(e,t){"BR"==e.nodeName&&(!this.top.type||!this.top.type.inlineContent)&&this.findPlace(this.parser.schema.text("-"),t,!0)}readStyles(e,t){let n=e.style;if(n&&n.length)for(let e=0;e<this.parser.matchedStyles.length;e++){let r=this.parser.matchedStyles[e],o=n.getPropertyValue(r);if(o)for(let e;;){let n=this.parser.matchStyle(r,o,this,e);if(!n)break;if(n.ignore)return null;if(t=n.clearMark?t.filter(e=>!n.clearMark(e)):t.concat(this.parser.schema.marks[n.mark].create(n.attrs)),!1!==n.consuming)break;e=n}}return t}addElementByRule(e,t,n,r){let o,i;if(t.node)if(i=this.parser.schema.nodes[t.node],i.isLeaf)this.insertNode(i.create(t.attrs),n,"BR"==e.nodeName)||this.leafFallback(e,n);else{let e=this.enter(i,t.attrs||null,n,t.preserveWhitespace);e&&(o=!0,n=e)}else{let e=this.parser.schema.marks[t.mark];n=n.concat(e.create(t.attrs))}let s=this.top;if(i&&i.isLeaf)this.findInside(e);else if(r)this.addElement(e,n,r);else if(t.getContent)this.findInside(e),t.getContent(e,this.parser.schema).forEach(e=>this.insertNode(e,n,!1));else{let r=e;"string"==typeof t.contentElement?r=e.querySelector(t.contentElement):"function"==typeof t.contentElement?r=t.contentElement(e):t.contentElement&&(r=t.contentElement),this.findAround(e,r,!0),this.addAll(r,n),this.findAround(e,r,!1)}o&&this.sync(s)&&this.open--}addAll(e,t,n,r){let o=n||0;for(let i=n?e.childNodes[n]:e.firstChild,s=null==r?null:e.childNodes[r];i!=s;i=i.nextSibling,++o)this.findAtPoint(e,o),this.addDOM(i,t);this.findAtPoint(e,o)}findPlace(e,t,n){let r,o;for(let t=this.open,i=0;t>=0;t--){let s=this.nodes[t],a=s.findWrapping(e);if(a&&(!r||r.length>a.length+i)&&(r=a,o=s,!a.length))break;if(s.solid){if(n)break;i+=2}}if(!r)return null;this.sync(o);for(let e=0;e<r.length;e++)t=this.enterInner(r[e],null,t,!1);return t}insertNode(e,t,n){if(e.isInline&&this.needsBlock&&!this.top.type){let e=this.textblockFromContext();e&&(t=this.enterInner(e,null,t))}let r=this.findPlace(e,t,n);if(r){this.closeExtra();let t=this.top;t.match&&(t.match=t.match.matchType(e.type));let n=P.none;for(let o of r.concat(e.marks))(t.type?t.type.allowsMarkType(o.type):Os(o.type,e.type))&&(n=o.addToSet(n));return t.content.push(e.mark(n)),!0}return!1}enter(e,t,n,r){let o=this.findPlace(e.create(t),n,!1);return o&&(o=this.enterInner(e,t,n,!0,r)),o}enterInner(e,t,n,r=!1,o){this.closeExtra();let i=this.top;i.match=i.match&&i.match.matchType(e);let s=Ts(e,o,i.options);4&i.options&&0==i.content.length&&(s|=4);let a=P.none;return n=n.filter(t=>!(i.type?i.type.allowsMarkType(t.type):Os(t.type,e))||(a=t.addToSet(a),!1)),this.nodes.push(new yn(e,t,a,r,null,s)),this.open++,n}closeExtra(e=!1){let t=this.nodes.length-1;if(t>this.open){for(;t>this.open;t--)this.nodes[t-1].content.push(this.nodes[t].finish(e));this.nodes.length=this.open+1}}finish(){return this.open=0,this.closeExtra(this.isOpen),this.nodes[0].finish(!(!this.isOpen&&!this.options.topOpen))}sync(e){for(let t=this.open;t>=0;t--){if(this.nodes[t]==e)return this.open=t,!0;this.localPreserveWS&&(this.nodes[t].options|=1)}return!1}get currentPos(){this.closeExtra();let e=0;for(let t=this.open;t>=0;t--){let n=this.nodes[t].content;for(let t=n.length-1;t>=0;t--)e+=n[t].nodeSize;t&&e++}return e}findAtPoint(e,t){if(this.find)for(let n=0;n<this.find.length;n++)this.find[n].node==e&&this.find[n].offset==t&&(this.find[n].pos=this.currentPos)}findInside(e){if(this.find)for(let t=0;t<this.find.length;t++)null==this.find[t].pos&&1==e.nodeType&&e.contains(this.find[t].node)&&(this.find[t].pos=this.currentPos)}findAround(e,t,n){if(e!=t&&this.find)for(let r=0;r<this.find.length;r++)null==this.find[r].pos&&1==e.nodeType&&e.contains(this.find[r].node)&&t.compareDocumentPosition(this.find[r].node)&(n?2:4)&&(this.find[r].pos=this.currentPos)}findInText(e){if(this.find)for(let t=0;t<this.find.length;t++)this.find[t].node==e&&(this.find[t].pos=this.currentPos-(e.nodeValue.length-this.find[t].offset))}matchesContext(e){if(e.indexOf("|")>-1)return e.split(/\s*\|\s*/).some(this.matchesContext,this);let t=e.split("/"),n=this.options.context,r=!(this.isOpen||n&&n.parent.type!=this.nodes[0].type),o=-(n?n.depth+1:0)+(r?0:1),i=(e,s)=>{for(;e>=0;e--){let a=t[e];if(""==a){if(e==t.length-1||0==e)continue;for(;s>=o;s--)if(i(e-1,s))return!0;return!1}{let e=s>0||0==s&&r?this.nodes[s].type:n&&s>=o?n.node(s-o).type:null;if(!e||e.name!=a&&!e.isInGroup(a))return!1;s--}}return!0};return i(t.length-1,this.open)}textblockFromContext(){let e=this.options.context;if(e)for(let t=e.depth;t>=0;t--){let n=e.node(t).contentMatchAt(e.indexAfter(t)).defaultType;if(n&&n.isTextblock&&n.defaultAttrs)return n}for(let e in this.parser.schema.nodes){let t=this.parser.schema.nodes[e];if(t.isTextblock&&t.defaultAttrs)return t}}}function vc(e){for(let t=e.firstChild,n=null;t;t=t.nextSibling){let e=1==t.nodeType?t.nodeName.toLowerCase():null;e&&il.hasOwnProperty(e)&&n?(n.appendChild(t),t=n):"li"==e?n=t:e&&(n=null)}}function Oc(e,t){return(e.matches||e.msMatchesSelector||e.webkitMatchesSelector||e.mozMatchesSelector).call(e,t)}function vs(e){let t={};for(let n in e)t[n]=e[n];return t}function Os(e,t){let n=t.schema.nodes;for(let r in n){let o=n[r];if(!o.allowsMarkType(e))continue;let i=[],s=e=>{i.push(e);for(let n=0;n<e.edgeCount;n++){let{type:r,next:o}=e.edge(n);if(r==t||i.indexOf(o)<0&&s(o))return!0}};if(s(o.contentMatch))return!0}}class ht{constructor(e,t){this.nodes=e,this.marks=t}serializeFragment(e,t={},n){n||(n=Br(t).createDocumentFragment());let r=n,o=[];return e.forEach(e=>{if(o.length||e.marks.length){let n=0,i=0;for(;n<o.length&&i<e.marks.length;){let t=e.marks[i];if(this.marks[t.type.name]){if(!t.eq(o[n][0])||!1===t.type.spec.spanning)break;n++,i++}else i++}for(;n<o.length;)r=o.pop()[1];for(;i<e.marks.length;){let n=e.marks[i++],s=this.serializeMark(n,e.isInline,t);s&&(o.push([n,r]),r.appendChild(s.dom),r=s.contentDOM||s.dom)}}r.appendChild(this.serializeNodeInner(e,t))}),n}serializeNodeInner(e,t){let{dom:n,contentDOM:r}=vn(Br(t),this.nodes[e.type.name](e),null,e.attrs);if(r){if(e.isLeaf)throw new RangeError("Content hole not allowed in a leaf node spec");this.serializeFragment(e.content,t,r)}return n}serializeNode(e,t={}){let n=this.serializeNodeInner(e,t);for(let r=e.marks.length-1;r>=0;r--){let o=this.serializeMark(e.marks[r],e.isInline,t);o&&((o.contentDOM||o.dom).appendChild(n),n=o.dom)}return n}serializeMark(e,t,n={}){let r=this.marks[e.type.name];return r&&vn(Br(n),r(e,t),null,e.attrs)}static renderSpec(e,t,n=null,r){return vn(e,t,n,r)}static fromSchema(e){return e.cached.domSerializer||(e.cached.domSerializer=new ht(this.nodesFromSchema(e),this.marksFromSchema(e)))}static nodesFromSchema(e){let t=As(e.nodes);return t.text||(t.text=e=>e.text),t}static marksFromSchema(e){return As(e.marks)}}function As(e){let t={};for(let n in e){let r=e[n].spec.toDOM;r&&(t[n]=r)}return t}function Br(e){return e.document||window.document}const Ns=new WeakMap;function Ac(e){let t=Ns.get(e);return void 0===t&&Ns.set(e,t=Nc(e)),t}function Nc(e){let t=null;return function e(n){if(n&&"object"==typeof n)if(Array.isArray(n))if("string"==typeof n[0])t||(t=[]),t.push(n);else for(let t=0;t<n.length;t++)e(n[t]);else for(let t in n)e(n[t])}(e),t}function vn(e,t,n,r){if("string"==typeof t)return{dom:e.createTextNode(t)};if(null!=t.nodeType)return{dom:t};if(t.dom&&null!=t.dom.nodeType)return t;let o,i=t[0];if("string"!=typeof i)throw new RangeError("Invalid array passed to renderSpec");if(r&&(o=Ac(r))&&o.indexOf(t)>-1)throw new RangeError("Using an array from an attribute object as a DOM spec. This may be an attempted cross site scripting attack.");let s=i.indexOf(" ");s>0&&(n=i.slice(0,s),i=i.slice(s+1));let a,l=n?e.createElementNS(n,i):e.createElement(i),c=t[1],d=1;if(c&&"object"==typeof c&&null==c.nodeType&&!Array.isArray(c)){d=2;for(let e in c)if(null!=c[e]){let t=e.indexOf(" ");t>0?l.setAttributeNS(e.slice(0,t),e.slice(t+1),c[e]):"style"==e&&l.style?l.style.cssText=c[e]:l.setAttribute(e,c[e])}}for(let o=d;o<t.length;o++){let i=t[o];if(0===i){if(o<t.length-1||o>d)throw new RangeError("Content hole must be the only child of its parent node");return{dom:l,contentDOM:l}}{let{dom:t,contentDOM:o}=vn(e,i,n,r);if(l.appendChild(t),o){if(a)throw new RangeError("Multiple content holes");a=o}}}return{dom:l,contentDOM:a}}const sl=65535,ol=Math.pow(2,16);function Dc(e,t){return e+t*ol}function Ds(e){return e&sl}function Ic(e){return(e-(e&sl))/ol}const ll=1,al=2,On=4,cl=8;class ui{constructor(e,t,n){this.pos=e,this.delInfo=t,this.recover=n}get deleted(){return(8&this.delInfo)>0}get deletedBefore(){return(5&this.delInfo)>0}get deletedAfter(){return(6&this.delInfo)>0}get deletedAcross(){return(4&this.delInfo)>0}}class le{constructor(e,t=!1){if(this.ranges=e,this.inverted=t,!e.length&&le.empty)return le.empty}recover(e){let t=0,n=Ds(e);if(!this.inverted)for(let e=0;e<n;e++)t+=this.ranges[3*e+2]-this.ranges[3*e+1];return this.ranges[3*n]+t+Ic(e)}mapResult(e,t=1){return this._map(e,t,!1)}map(e,t=1){return this._map(e,t,!0)}_map(e,t,n){let r=0,o=this.inverted?2:1,i=this.inverted?1:2;for(let s=0;s<this.ranges.length;s+=3){let a=this.ranges[s]-(this.inverted?r:0);if(a>e)break;let l=this.ranges[s+o],c=this.ranges[s+i],d=a+l;if(e<=d){let o=a+r+((l?e==a?-1:e==d?1:t:t)<0?0:c);if(n)return o;let i=e==(t<0?a:d)?null:Dc(s/3,e-a),h=e==a?2:e==d?1:4;return(t<0?e!=a:e!=d)&&(h|=8),new ui(o,h,i)}r+=c-l}return n?e+r:new ui(e+r,0,null)}touches(e,t){let n=0,r=Ds(t),o=this.inverted?2:1,i=this.inverted?1:2;for(let t=0;t<this.ranges.length;t+=3){let s=this.ranges[t]-(this.inverted?n:0);if(s>e)break;let a=this.ranges[t+o];if(e<=s+a&&t==3*r)return!0;n+=this.ranges[t+i]-a}return!1}forEach(e){let t=this.inverted?2:1,n=this.inverted?1:2;for(let r=0,o=0;r<this.ranges.length;r+=3){let i=this.ranges[r],s=i-(this.inverted?o:0),a=i+(this.inverted?0:o),l=this.ranges[r+t],c=this.ranges[r+n];e(s,s+l,a,a+c),o+=c-l}}invert(){return new le(this.ranges,!this.inverted)}toString(){return(this.inverted?"-":"")+JSON.stringify(this.ranges)}static offset(e){return 0==e?le.empty:new le(e<0?[0,-e,0]:[0,0,e])}}le.empty=new le([]);class Qt{constructor(e,t,n=0,r=(e?e.length:0)){this.mirror=t,this.from=n,this.to=r,this._maps=e||[],this.ownData=!(e||t)}get maps(){return this._maps}slice(e=0,t=this.maps.length){return new Qt(this._maps,this.mirror,e,t)}appendMap(e,t){this.ownData||(this._maps=this._maps.slice(),this.mirror=this.mirror&&this.mirror.slice(),this.ownData=!0),this.to=this._maps.push(e),null!=t&&this.setMirror(this._maps.length-1,t)}appendMapping(e){for(let t=0,n=this._maps.length;t<e._maps.length;t++){let r=e.getMirror(t);this.appendMap(e._maps[t],null!=r&&r<t?n+r:void 0)}}getMirror(e){if(this.mirror)for(let t=0;t<this.mirror.length;t++)if(this.mirror[t]==e)return this.mirror[t+(t%2?-1:1)]}setMirror(e,t){this.mirror||(this.mirror=[]),this.mirror.push(e,t)}appendMappingInverted(e){for(let t=e.maps.length-1,n=this._maps.length+e._maps.length;t>=0;t--){let r=e.getMirror(t);this.appendMap(e._maps[t].invert(),null!=r&&r>t?n-r-1:void 0)}}invert(){let e=new Qt;return e.appendMappingInverted(this),e}map(e,t=1){if(this.mirror)return this._map(e,t,!0);for(let n=this.from;n<this.to;n++)e=this._maps[n].map(e,t);return e}mapResult(e,t=1){return this._map(e,t,!1)}_map(e,t,n){let r=0;for(let n=this.from;n<this.to;n++){let o=this._maps[n].mapResult(e,t);if(null!=o.recover){let t=this.getMirror(n);if(null!=t&&t>n&&t<this.to){n=t,e=this._maps[t].recover(o.recover);continue}}r|=o.delInfo,e=o.pos}return n?e:new ui(e,r,null)}}const zr=Object.create(null);class ee{getMap(){return le.empty}merge(e){return null}static fromJSON(e,t){if(!t||!t.stepType)throw new RangeError("Invalid input for Step.fromJSON");let n=zr[t.stepType];if(!n)throw new RangeError(`No step type ${t.stepType} defined`);return n.fromJSON(e,t)}static jsonID(e,t){if(e in zr)throw new RangeError("Duplicate use of step JSON ID "+e);return zr[e]=t,t.prototype.jsonID=e,t}}class H{constructor(e,t){this.doc=e,this.failed=t}static ok(e){return new H(e,null)}static fail(e){return new H(null,e)}static fromReplace(e,t,n,r){try{return H.ok(e.replace(t,n,r))}catch(e){if(e instanceof Rn)return H.fail(e.message);throw e}}}function Li(e,t,n){let r=[];for(let o=0;o<e.childCount;o++){let i=e.child(o);i.content.size&&(i=i.copy(Li(i.content,t,i))),i.isInline&&(i=t(i,n,o)),r.push(i)}return b.fromArray(r)}class He extends ee{constructor(e,t,n){super(),this.from=e,this.to=t,this.mark=n}apply(e){let t=e.slice(this.from,this.to),n=e.resolve(this.from),r=n.node(n.sharedDepth(this.to)),o=new S(Li(t.content,(e,t)=>e.isAtom&&t.type.allowsMarkType(this.mark.type)?e.mark(this.mark.addToSet(e.marks)):e,r),t.openStart,t.openEnd);return H.fromReplace(e,this.from,this.to,o)}invert(){return new ye(this.from,this.to,this.mark)}map(e){let t=e.mapResult(this.from,1),n=e.mapResult(this.to,-1);return t.deleted&&n.deleted||t.pos>=n.pos?null:new He(t.pos,n.pos,this.mark)}merge(e){return e instanceof He&&e.mark.eq(this.mark)&&this.from<=e.to&&this.to>=e.from?new He(Math.min(this.from,e.from),Math.max(this.to,e.to),this.mark):null}toJSON(){return{stepType:"addMark",mark:this.mark.toJSON(),from:this.from,to:this.to}}static fromJSON(e,t){if("number"!=typeof t.from||"number"!=typeof t.to)throw new RangeError("Invalid input for AddMarkStep.fromJSON");return new He(t.from,t.to,e.markFromJSON(t.mark))}}ee.jsonID("addMark",He);class ye extends ee{constructor(e,t,n){super(),this.from=e,this.to=t,this.mark=n}apply(e){let t=e.slice(this.from,this.to),n=new S(Li(t.content,e=>e.mark(this.mark.removeFromSet(e.marks)),e),t.openStart,t.openEnd);return H.fromReplace(e,this.from,this.to,n)}invert(){return new He(this.from,this.to,this.mark)}map(e){let t=e.mapResult(this.from,1),n=e.mapResult(this.to,-1);return t.deleted&&n.deleted||t.pos>=n.pos?null:new ye(t.pos,n.pos,this.mark)}merge(e){return e instanceof ye&&e.mark.eq(this.mark)&&this.from<=e.to&&this.to>=e.from?new ye(Math.min(this.from,e.from),Math.max(this.to,e.to),this.mark):null}toJSON(){return{stepType:"removeMark",mark:this.mark.toJSON(),from:this.from,to:this.to}}static fromJSON(e,t){if("number"!=typeof t.from||"number"!=typeof t.to)throw new RangeError("Invalid input for RemoveMarkStep.fromJSON");return new ye(t.from,t.to,e.markFromJSON(t.mark))}}ee.jsonID("removeMark",ye);class je extends ee{constructor(e,t){super(),this.pos=e,this.mark=t}apply(e){let t=e.nodeAt(this.pos);if(!t)return H.fail("No node at mark step's position");let n=t.type.create(t.attrs,null,this.mark.addToSet(t.marks));return H.fromReplace(e,this.pos,this.pos+1,new S(b.from(n),0,t.isLeaf?0:1))}invert(e){let t=e.nodeAt(this.pos);if(t){let e=this.mark.addToSet(t.marks);if(e.length==t.marks.length){for(let n=0;n<t.marks.length;n++)if(!t.marks[n].isInSet(e))return new je(this.pos,t.marks[n]);return new je(this.pos,this.mark)}}return new ut(this.pos,this.mark)}map(e){let t=e.mapResult(this.pos,1);return t.deletedAfter?null:new je(t.pos,this.mark)}toJSON(){return{stepType:"addNodeMark",pos:this.pos,mark:this.mark.toJSON()}}static fromJSON(e,t){if("number"!=typeof t.pos)throw new RangeError("Invalid input for AddNodeMarkStep.fromJSON");return new je(t.pos,e.markFromJSON(t.mark))}}ee.jsonID("addNodeMark",je);class ut extends ee{constructor(e,t){super(),this.pos=e,this.mark=t}apply(e){let t=e.nodeAt(this.pos);if(!t)return H.fail("No node at mark step's position");let n=t.type.create(t.attrs,null,this.mark.removeFromSet(t.marks));return H.fromReplace(e,this.pos,this.pos+1,new S(b.from(n),0,t.isLeaf?0:1))}invert(e){let t=e.nodeAt(this.pos);return t&&this.mark.isInSet(t.marks)?new je(this.pos,this.mark):this}map(e){let t=e.mapResult(this.pos,1);return t.deletedAfter?null:new ut(t.pos,this.mark)}toJSON(){return{stepType:"removeNodeMark",pos:this.pos,mark:this.mark.toJSON()}}static fromJSON(e,t){if("number"!=typeof t.pos)throw new RangeError("Invalid input for RemoveNodeMarkStep.fromJSON");return new ut(t.pos,e.markFromJSON(t.mark))}}ee.jsonID("removeNodeMark",ut);class _ extends ee{constructor(e,t,n,r=!1){super(),this.from=e,this.to=t,this.slice=n,this.structure=r}apply(e){return this.structure&&di(e,this.from,this.to)?H.fail("Structure replace would overwrite content"):H.fromReplace(e,this.from,this.to,this.slice)}getMap(){return new le([this.from,this.to-this.from,this.slice.size])}invert(e){return new _(this.from,this.from+this.slice.size,e.slice(this.from,this.to))}map(e){let t=e.mapResult(this.from,1),n=e.mapResult(this.to,-1);return t.deletedAcross&&n.deletedAcross?null:new _(t.pos,Math.max(t.pos,n.pos),this.slice,this.structure)}merge(e){if(!(e instanceof _)||e.structure||this.structure)return null;if(this.from+this.slice.size!=e.from||this.slice.openEnd||e.slice.openStart){if(e.to!=this.from||this.slice.openStart||e.slice.openEnd)return null;{let t=this.slice.size+e.slice.size==0?S.empty:new S(e.slice.content.append(this.slice.content),e.slice.openStart,this.slice.openEnd);return new _(e.from,this.to,t,this.structure)}}{let t=this.slice.size+e.slice.size==0?S.empty:new S(this.slice.content.append(e.slice.content),this.slice.openStart,e.slice.openEnd);return new _(this.from,this.to+(e.to-e.from),t,this.structure)}}toJSON(){let e={stepType:"replace",from:this.from,to:this.to};return this.slice.size&&(e.slice=this.slice.toJSON()),this.structure&&(e.structure=!0),e}static fromJSON(e,t){if("number"!=typeof t.from||"number"!=typeof t.to)throw new RangeError("Invalid input for ReplaceStep.fromJSON");return new _(t.from,t.to,S.fromJSON(e,t.slice),!!t.structure)}}ee.jsonID("replace",_);class U extends ee{constructor(e,t,n,r,o,i,s=!1){super(),this.from=e,this.to=t,this.gapFrom=n,this.gapTo=r,this.slice=o,this.insert=i,this.structure=s}apply(e){if(this.structure&&(di(e,this.from,this.gapFrom)||di(e,this.gapTo,this.to)))return H.fail("Structure gap-replace would overwrite content");let t=e.slice(this.gapFrom,this.gapTo);if(t.openStart||t.openEnd)return H.fail("Gap is not a flat range");let n=this.slice.insertAt(this.insert,t.content);return n?H.fromReplace(e,this.from,this.to,n):H.fail("Content does not fit in gap")}getMap(){return new le([this.from,this.gapFrom-this.from,this.insert,this.gapTo,this.to-this.gapTo,this.slice.size-this.insert])}invert(e){let t=this.gapTo-this.gapFrom;return new U(this.from,this.from+this.slice.size+t,this.from+this.insert,this.from+this.insert+t,e.slice(this.from,this.to).removeBetween(this.gapFrom-this.from,this.gapTo-this.from),this.gapFrom-this.from,this.structure)}map(e){let t=e.mapResult(this.from,1),n=e.mapResult(this.to,-1),r=this.from==this.gapFrom?t.pos:e.map(this.gapFrom,-1),o=this.to==this.gapTo?n.pos:e.map(this.gapTo,1);return t.deletedAcross&&n.deletedAcross||r<t.pos||o>n.pos?null:new U(t.pos,n.pos,r,o,this.slice,this.insert,this.structure)}toJSON(){let e={stepType:"replaceAround",from:this.from,to:this.to,gapFrom:this.gapFrom,gapTo:this.gapTo,insert:this.insert};return this.slice.size&&(e.slice=this.slice.toJSON()),this.structure&&(e.structure=!0),e}static fromJSON(e,t){if("number"!=typeof t.from||"number"!=typeof t.to||"number"!=typeof t.gapFrom||"number"!=typeof t.gapTo||"number"!=typeof t.insert)throw new RangeError("Invalid input for ReplaceAroundStep.fromJSON");return new U(t.from,t.to,t.gapFrom,t.gapTo,S.fromJSON(e,t.slice),t.insert,!!t.structure)}}function di(e,t,n){let r=e.resolve(t),o=n-t,i=r.depth;for(;o>0&&i>0&&r.indexAfter(i)==r.node(i).childCount;)i--,o--;if(o>0){let e=r.node(i).maybeChild(r.indexAfter(i));for(;o>0;){if(!e||e.isLeaf)return!0;e=e.firstChild,o--}}return!1}function Rc(e,t,n,r){let o,i,s=[],a=[];e.doc.nodesBetween(t,n,(e,l,c)=>{if(!e.isInline)return;let d=e.marks;if(!r.isInSet(d)&&c.type.allowsMarkType(r.type)){let c=Math.max(l,t),h=Math.min(l+e.nodeSize,n),p=r.addToSet(d);for(let e=0;e<d.length;e++)d[e].isInSet(p)||(o&&o.to==c&&o.mark.eq(d[e])?o.to=h:s.push(o=new ye(c,h,d[e])));i&&i.to==c?i.to=h:a.push(i=new He(c,h,r))}}),s.forEach(t=>e.step(t)),a.forEach(t=>e.step(t))}function Pc(e,t,n,r){let o=[],i=0;e.doc.nodesBetween(t,n,(e,s)=>{if(!e.isInline)return;i++;let a=null;if(r instanceof xr){let t,n=e.marks;for(;t=r.isInSet(n);)(a||(a=[])).push(t),n=t.removeFromSet(n)}else r?r.isInSet(e.marks)&&(a=[r]):a=e.marks;if(a&&a.length){let r=Math.min(s+e.nodeSize,n);for(let e=0;e<a.length;e++){let n,l=a[e];for(let e=0;e<o.length;e++){let t=o[e];t.step==i-1&&l.eq(o[e].style)&&(n=t)}n?(n.to=r,n.step=i):o.push({style:l,from:Math.max(s,t),to:r,step:i})}}}),o.forEach(t=>e.step(new ye(t.from,t.to,t.style)))}function Bi(e,t,n,r=n.contentMatch,o=!0){let i=e.doc.nodeAt(t),s=[],a=t+1;for(let t=0;t<i.childCount;t++){let l=i.child(t),c=a+l.nodeSize,d=r.matchType(l.type);if(d){r=d;for(let t=0;t<l.marks.length;t++)n.allowsMarkType(l.marks[t].type)||e.step(new ye(a,c,l.marks[t]));if(o&&l.isText&&"pre"!=n.whitespace){let e,t,r=/\r?\n|\r/g;for(;e=r.exec(l.text);)t||(t=new S(b.from(n.schema.text(" ",n.allowedMarks(l.marks))),0,0)),s.push(new _(a+e.index,a+e.index+e[0].length,t))}}else s.push(new _(a,c,S.empty));a=c}if(!r.validEnd){let t=r.fillBefore(b.empty,!0);e.replace(a,a,new S(t,0,0))}for(let t=s.length-1;t>=0;t--)e.step(s[t])}function Lc(e,t,n){return(0==t||e.canReplace(t,e.childCount))&&(n==e.childCount||e.canReplace(0,n))}function Dt(e){let t=e.parent.content.cutByIndex(e.startIndex,e.endIndex);for(let n=e.depth;;--n){let r=e.$from.node(n),o=e.$from.index(n),i=e.$to.indexAfter(n);if(n<e.depth&&r.canReplace(o,i,t))return n;if(0==n||r.type.spec.isolating||!Lc(r,o,i))break}return null}function Bc(e,t,n){let{$from:r,$to:o,depth:i}=t,s=r.before(i+1),a=o.after(i+1),l=s,c=a,d=b.empty,h=0;for(let e=i,t=!1;e>n;e--)t||r.index(e)>0?(t=!0,d=b.from(r.node(e).copy(d)),h++):l--;let p=b.empty,u=0;for(let e=i,t=!1;e>n;e--)t||o.after(e+1)<o.end(e)?(t=!0,p=b.from(o.node(e).copy(p)),u++):c++;e.step(new U(l,c,s,a,new S(d.append(p),h,u),d.size-h,!0))}function zi(e,t,n=null,r=e){let o=zc(e,t),i=o&&Fc(r,t);return i?o.map(Is).concat({type:t,attrs:n}).concat(i.map(Is)):null}function Is(e){return{type:e,attrs:null}}function zc(e,t){let{parent:n,startIndex:r,endIndex:o}=e,i=n.contentMatchAt(r).findWrapping(t);if(!i)return null;let s=i.length?i[0]:t;return n.canReplaceWith(r,o,s)?i:null}function Fc(e,t){let{parent:n,startIndex:r,endIndex:o}=e,i=n.child(r),s=t.contentMatch.findWrapping(i.type);if(!s)return null;let a=(s.length?s[s.length-1]:t).contentMatch;for(let e=r;a&&e<o;e++)a=a.matchType(n.child(e).type);return a&&a.validEnd?s:null}function $c(e,t,n){let r=b.empty;for(let e=n.length-1;e>=0;e--){if(r.size){let t=n[e].type.contentMatch.matchFragment(r);if(!t||!t.validEnd)throw new RangeError("Wrapper type given to Transform.wrap does not form valid content of its parent wrapper")}r=b.from(n[e].type.create(n[e].attrs,r))}let o=t.start,i=t.end;e.step(new U(o,i,o,i,new S(r,0,0),n.length,!0))}function Vc(e,t,n,r,o){if(!r.isTextblock)throw new RangeError("Type given to setBlockType should be a textblock");let i=e.steps.length;e.doc.nodesBetween(t,n,(t,n)=>{let s="function"==typeof o?o(t):o;if(t.isTextblock&&!t.hasMarkup(r,s)&&Hc(e.doc,e.mapping.slice(i).map(n),r)){let o=null;if(r.schema.linebreakReplacement){let e="pre"==r.whitespace,t=!!r.contentMatch.matchType(r.schema.linebreakReplacement);e&&!t?o=!1:!e&&t&&(o=!0)}!1===o&&dl(e,t,n,i),Bi(e,e.mapping.slice(i).map(n,1),r,void 0,null===o);let a=e.mapping.slice(i),l=a.map(n,1),c=a.map(n+t.nodeSize,1);return e.step(new U(l,c,l+1,c-1,new S(b.from(r.create(s,null,t.marks)),0,0),1,!0)),!0===o&&ul(e,t,n,i),!1}})}function ul(e,t,n,r){t.forEach((o,i)=>{if(o.isText){let s,a=/\r?\n|\r/g;for(;s=a.exec(o.text);){let o=e.mapping.slice(r).map(n+1+i+s.index);e.replaceWith(o,o+1,t.type.schema.linebreakReplacement.create())}}})}function dl(e,t,n,r){t.forEach((o,i)=>{if(o.type==o.type.schema.linebreakReplacement){let o=e.mapping.slice(r).map(n+1+i);e.replaceWith(o,o+1,t.type.schema.text("\n"))}})}function Hc(e,t,n){let r=e.resolve(t),o=r.index();return r.parent.canReplaceWith(o,o+1,n)}function jc(e,t,n,r,o){let i=e.doc.nodeAt(t);if(!i)throw new RangeError("No node at given position");n||(n=i.type);let s=n.create(r,null,o||i.marks);if(i.isLeaf)return e.replaceWith(t,t+i.nodeSize,s);if(!n.validContent(i.content))throw new RangeError("Invalid content for node type "+n.name);e.step(new U(t,t+i.nodeSize,t+1,t+i.nodeSize-1,new S(b.from(s),0,0),1,!0))}function Ne(e,t,n=1,r){let o=e.resolve(t),i=o.depth-n,s=r&&r[r.length-1]||o.parent;if(i<0||o.parent.type.spec.isolating||!o.parent.canReplace(o.index(),o.parent.childCount)||!s.type.validContent(o.parent.content.cutByIndex(o.index(),o.parent.childCount)))return!1;for(let e=o.depth-1,t=n-2;e>i;e--,t--){let n=o.node(e),i=o.index(e);if(n.type.spec.isolating)return!1;let s=n.content.cutByIndex(i,n.childCount),a=r&&r[t+1];a&&(s=s.replaceChild(0,a.type.create(a.attrs)));let l=r&&r[t]||n;if(!n.canReplace(i+1,n.childCount)||!l.type.validContent(s))return!1}let a=o.indexAfter(i),l=r&&r[0];return o.node(i).canReplaceWith(a,a,l?l.type:o.node(i+1).type)}function Wc(e,t,n=1,r){let o=e.doc.resolve(t),i=b.empty,s=b.empty;for(let e=o.depth,t=o.depth-n,a=n-1;e>t;e--,a--){i=b.from(o.node(e).copy(i));let t=r&&r[a];s=b.from(t?t.type.create(t.attrs,s):o.node(e).copy(s))}e.step(new _(t,t,new S(i.append(s),n,n),!0))}function Ye(e,t){let n=e.resolve(t),r=n.index();return fl(n.nodeBefore,n.nodeAfter)&&n.parent.canReplace(r,r+1)}function Kc(e,t){t.content.size||e.type.compatibleContent(t.type);let n=e.contentMatchAt(e.childCount),{linebreakReplacement:r}=e.type.schema;for(let o=0;o<t.childCount;o++){let i=t.child(o),s=i.type==r?e.type.schema.nodes.text:i.type;if(n=n.matchType(s),!n||!e.type.allowsMarks(i.marks))return!1}return n.validEnd}function fl(e,t){return!(!e||!t||e.isLeaf||!Kc(e,t))}function Sr(e,t,n=-1){let r=e.resolve(t);for(let e=r.depth;;e--){let o,i,s=r.index(e);if(e==r.depth?(o=r.nodeBefore,i=r.nodeAfter):n>0?(o=r.node(e+1),s++,i=r.node(e).maybeChild(s)):(o=r.node(e).maybeChild(s-1),i=r.node(e+1)),o&&!o.isTextblock&&fl(o,i)&&r.node(e).canReplace(s,s+1))return t;if(0==e)break;t=n<0?r.before(e):r.after(e)}}function _c(e,t,n){let r=null,{linebreakReplacement:o}=e.doc.type.schema,i=e.doc.resolve(t-n),s=i.node().type;if(o&&s.inlineContent){let e="pre"==s.whitespace,t=!!s.contentMatch.matchType(o);e&&!t?r=!1:!e&&t&&(r=!0)}let a=e.steps.length;if(!1===r){let r=e.doc.resolve(t+n);dl(e,r.node(),r.before(),a)}s.inlineContent&&Bi(e,t+n-1,s,i.node().contentMatchAt(i.index()),null==r);let l=e.mapping.slice(a),c=l.map(t-n);if(e.step(new _(c,l.map(t+n,-1),S.empty,!0)),!0===r){let t=e.doc.resolve(c);ul(e,t.node(),t.before(),e.steps.length)}return e}function Uc(e,t,n){let r=e.resolve(t);if(r.parent.canReplaceWith(r.index(),r.index(),n))return t;if(0==r.parentOffset)for(let e=r.depth-1;e>=0;e--){let t=r.index(e);if(r.node(e).canReplaceWith(t,t,n))return r.before(e+1);if(t>0)return null}if(r.parentOffset==r.parent.content.size)for(let e=r.depth-1;e>=0;e--){let t=r.indexAfter(e);if(r.node(e).canReplaceWith(t,t,n))return r.after(e+1);if(t<r.node(e).childCount)return null}return null}function hl(e,t,n){let r=e.resolve(t);if(!n.content.size)return t;let o=n.content;for(let e=0;e<n.openStart;e++)o=o.firstChild.content;for(let e=1;e<=(0==n.openStart&&n.size?2:1);e++)for(let t=r.depth;t>=0;t--){let n=t==r.depth?0:r.pos<=(r.start(t+1)+r.end(t+1))/2?-1:1,i=r.index(t)+(n>0?1:0),s=r.node(t),a=!1;if(1==e)a=s.canReplace(i,i,o);else{let e=s.contentMatchAt(i).findWrapping(o.firstChild.type);a=e&&s.canReplaceWith(i,i,e[0])}if(a)return 0==n?r.pos:n<0?r.before(t+1):r.after(t+1)}return null}function Cr(e,t,n=t,r=S.empty){if(t==n&&!r.size)return null;let o=e.resolve(t),i=e.resolve(n);return pl(o,i,r)?new _(t,n,r):new Jc(o,i,r).fit()}function pl(e,t,n){return!n.openStart&&!n.openEnd&&e.start()==t.start()&&e.parent.canReplace(e.index(),t.index(),n.content)}ee.jsonID("replaceAround",U);class Jc{constructor(e,t,n){this.$from=e,this.$to=t,this.unplaced=n,this.frontier=[],this.placed=b.empty;for(let t=0;t<=e.depth;t++){let n=e.node(t);this.frontier.push({type:n.type,match:n.contentMatchAt(e.indexAfter(t))})}for(let t=e.depth;t>0;t--)this.placed=b.from(e.node(t).copy(this.placed))}get depth(){return this.frontier.length-1}fit(){for(;this.unplaced.size;){let e=this.findFittable();e?this.placeNodes(e):this.openMore()||this.dropNode()}let e=this.mustMoveInline(),t=this.placed.size-this.depth-this.$from.depth,n=this.$from,r=this.close(e<0?this.$to:n.doc.resolve(e));if(!r)return null;let o=this.placed,i=n.depth,s=r.depth;for(;i&&s&&1==o.childCount;)o=o.firstChild.content,i--,s--;let a=new S(o,i,s);return e>-1?new U(n.pos,e,this.$to.pos,this.$to.end(),a,t):a.size||n.pos!=this.$to.pos?new _(n.pos,r.pos,a):null}findFittable(){let e=this.unplaced.openStart;for(let t=this.unplaced.content,n=0,r=this.unplaced.openEnd;n<e;n++){let o=t.firstChild;if(t.childCount>1&&(r=0),o.type.spec.isolating&&r<=n){e=n;break}t=o.content}for(let t=1;t<=2;t++)for(let n=1==t?e:this.unplaced.openStart;n>=0;n--){let e,r=null;n?(r=Fr(this.unplaced.content,n-1).firstChild,e=r.content):e=this.unplaced.content;let o=e.firstChild;for(let e=this.depth;e>=0;e--){let i,{type:s,match:a}=this.frontier[e],l=null;if(1==t&&(o?a.matchType(o.type)||(l=a.fillBefore(b.from(o),!1)):r&&s.compatibleContent(r.type)))return{sliceDepth:n,frontierDepth:e,parent:r,inject:l};if(2==t&&o&&(i=a.findWrapping(o.type)))return{sliceDepth:n,frontierDepth:e,parent:r,wrap:i};if(r&&a.matchType(r.type))break}}}openMore(){let{content:e,openStart:t,openEnd:n}=this.unplaced,r=Fr(e,t);return!(!r.childCount||r.firstChild.isLeaf)&&(this.unplaced=new S(e,t+1,Math.max(n,r.size+t>=e.size-n?t+1:0)),!0)}dropNode(){let{content:e,openStart:t,openEnd:n}=this.unplaced,r=Fr(e,t);if(r.childCount<=1&&t>0){let o=e.size-t<=t+r.size;this.unplaced=new S(Bt(e,t-1,1),t-1,o?t-1:n)}else this.unplaced=new S(Bt(e,t,1),t,n)}placeNodes({sliceDepth:e,frontierDepth:t,parent:n,inject:r,wrap:o}){for(;this.depth>t;)this.closeFrontierNode();if(o)for(let e=0;e<o.length;e++)this.openFrontierNode(o[e]);let i=this.unplaced,s=n?n.content:i.content,a=i.openStart-e,l=0,c=[],{match:d,type:h}=this.frontier[t];if(r){for(let e=0;e<r.childCount;e++)c.push(r.child(e));d=d.matchFragment(r)}let p=s.size+e-(i.content.size-i.openEnd);for(;l<s.childCount;){let e=s.child(l),t=d.matchType(e.type);if(!t)break;l++,(l>1||0==a||e.content.size)&&(d=t,c.push(ml(e.mark(h.allowedMarks(e.marks)),1==l?a:0,l==s.childCount?p:-1)))}let u=l==s.childCount;u||(p=-1),this.placed=zt(this.placed,t,b.from(c)),this.frontier[t].match=d,u&&p<0&&n&&n.type==this.frontier[this.depth].type&&this.frontier.length>1&&this.closeFrontierNode();for(let e=0,t=s;e<p;e++){let e=t.lastChild;this.frontier.push({type:e.type,match:e.contentMatchAt(e.childCount)}),t=e.content}this.unplaced=u?0==e?S.empty:new S(Bt(i.content,e-1,1),e-1,p<0?i.openEnd:e-1):new S(Bt(i.content,e,l),i.openStart,i.openEnd)}mustMoveInline(){if(!this.$to.parent.isTextblock)return-1;let e,t=this.frontier[this.depth];if(!t.type.isTextblock||!$r(this.$to,this.$to.depth,t.type,t.match,!1)||this.$to.depth==this.depth&&(e=this.findCloseLevel(this.$to))&&e.depth==this.depth)return-1;let{depth:n}=this.$to,r=this.$to.after(n);for(;n>1&&r==this.$to.end(--n);)++r;return r}findCloseLevel(e){e:for(let t=Math.min(this.depth,e.depth);t>=0;t--){let{match:n,type:r}=this.frontier[t],o=t<e.depth&&e.end(t+1)==e.pos+(e.depth-(t+1)),i=$r(e,t,r,n,o);if(i){for(let n=t-1;n>=0;n--){let{match:t,type:r}=this.frontier[n],o=$r(e,n,r,t,!0);if(!o||o.childCount)continue e}return{depth:t,fit:i,move:o?e.doc.resolve(e.after(t+1)):e}}}}close(e){let t=this.findCloseLevel(e);if(!t)return null;for(;this.depth>t.depth;)this.closeFrontierNode();t.fit.childCount&&(this.placed=zt(this.placed,t.depth,t.fit)),e=t.move;for(let n=t.depth+1;n<=e.depth;n++){let t=e.node(n),r=t.type.contentMatch.fillBefore(t.content,!0,e.index(n));this.openFrontierNode(t.type,t.attrs,r)}return e}openFrontierNode(e,t=null,n){let r=this.frontier[this.depth];r.match=r.match.matchType(e),this.placed=zt(this.placed,this.depth,b.from(e.create(t,n))),this.frontier.push({type:e,match:e.contentMatch})}closeFrontierNode(){let e=this.frontier.pop().match.fillBefore(b.empty,!0);e.childCount&&(this.placed=zt(this.placed,this.frontier.length,e))}}function Bt(e,t,n){return 0==t?e.cutByIndex(n,e.childCount):e.replaceChild(0,e.firstChild.copy(Bt(e.firstChild.content,t-1,n)))}function zt(e,t,n){return 0==t?e.append(n):e.replaceChild(e.childCount-1,e.lastChild.copy(zt(e.lastChild.content,t-1,n)))}function Fr(e,t){for(let n=0;n<t;n++)e=e.firstChild.content;return e}function ml(e,t,n){if(t<=0)return e;let r=e.content;return t>1&&(r=r.replaceChild(0,ml(r.firstChild,t-1,1==r.childCount?n-1:0))),t>0&&(r=e.type.contentMatch.fillBefore(r).append(r),n<=0&&(r=r.append(e.type.contentMatch.matchFragment(r).fillBefore(b.empty,!0)))),e.copy(r)}function $r(e,t,n,r,o){let i=e.node(t),s=o?e.indexAfter(t):e.index(t);if(s==i.childCount&&!n.compatibleContent(i.type))return null;let a=r.fillBefore(i.content,!0,s);return a&&!qc(n,i.content,s)?a:null}function qc(e,t,n){for(let r=n;r<t.childCount;r++)if(!e.allowsMarks(t.child(r).marks))return!0;return!1}function Gc(e){return e.spec.defining||e.spec.definingForContent}function Yc(e,t,n,r){if(!r.size)return e.deleteRange(t,n);let o=e.doc.resolve(t),i=e.doc.resolve(n);if(pl(o,i,r))return e.step(new _(t,n,r));let s=yl(o,e.doc.resolve(n));0==s[s.length-1]&&s.pop();let a=-(o.depth+1);s.unshift(a);for(let e=o.depth,t=o.pos-1;e>0;e--,t--){let n=o.node(e).type.spec;if(n.defining||n.definingAsContext||n.isolating)break;s.indexOf(e)>-1?a=e:o.before(e)==t&&s.splice(1,0,-e)}let l=s.indexOf(a),c=[],d=r.openStart;for(let e=r.content,t=0;;t++){let n=e.firstChild;if(c.push(n),t==r.openStart)break;e=n.content}for(let e=d-1;e>=0;e--){let t=c[e],n=Gc(t.type);if(n&&!t.sameMarkup(o.node(Math.abs(a)-1)))d=e;else if(n||!t.type.isTextblock)break}for(let t=r.openStart;t>=0;t--){let a=(t+d+1)%(r.openStart+1),h=c[a];if(h)for(let t=0;t<s.length;t++){let c=s[(t+l)%s.length],d=!0;c<0&&(d=!1,c=-c);let p=o.node(c-1),u=o.index(c-1);if(p.canReplaceWith(u,u,h.type,h.marks))return e.replace(o.before(c),d?i.after(c):n,new S(gl(r.content,0,r.openStart,a),a,r.openEnd))}}let h=e.steps.length;for(let a=s.length-1;a>=0&&(e.replace(t,n,r),!(e.steps.length>h));a--){let e=s[a];e<0||(t=o.before(e),n=i.after(e))}}function gl(e,t,n,r,o){if(t<n){let o=e.firstChild;e=e.replaceChild(0,o.copy(gl(o.content,t+1,n,r,o)))}if(t>r){let t=o.contentMatchAt(0),n=t.fillBefore(e).append(e);e=n.append(t.matchFragment(n).fillBefore(b.empty,!0))}return e}function Xc(e,t,n,r){if(!r.isInline&&t==n&&e.doc.resolve(t).parent.content.size){let o=Uc(e.doc,t,r.type);null!=o&&(t=n=o)}e.replaceRange(t,n,new S(b.from(r),0,0))}function Qc(e,t,n){let r=e.doc.resolve(t),o=e.doc.resolve(n),i=yl(r,o);for(let t=0;t<i.length;t++){let n=i[t],s=t==i.length-1;if(s&&0==n||r.node(n).type.contentMatch.validEnd)return e.delete(r.start(n),o.end(n));if(n>0&&(s||r.node(n-1).canReplace(r.index(n-1),o.indexAfter(n-1))))return e.delete(r.before(n),o.after(n))}for(let i=1;i<=r.depth&&i<=o.depth;i++)if(t-r.start(i)==r.depth-i&&n>r.end(i)&&o.end(i)-n!=o.depth-i&&r.start(i-1)==o.start(i-1)&&r.node(i-1).canReplace(r.index(i-1),o.index(i-1)))return e.delete(r.before(i),n);e.delete(t,n)}function yl(e,t){let n=[];for(let r=Math.min(e.depth,t.depth);r>=0;r--){let o=e.start(r);if(o<e.pos-(e.depth-r)||t.end(r)>t.pos+(t.depth-r)||e.node(r).type.spec.isolating||t.node(r).type.spec.isolating)break;(o==t.start(r)||r==e.depth&&r==t.depth&&e.parent.inlineContent&&t.parent.inlineContent&&r&&t.start(r-1)==o-1)&&n.push(r)}return n}class Mt extends ee{constructor(e,t,n){super(),this.pos=e,this.attr=t,this.value=n}apply(e){let t=e.nodeAt(this.pos);if(!t)return H.fail("No node at attribute step's position");let n=Object.create(null);for(let e in t.attrs)n[e]=t.attrs[e];n[this.attr]=this.value;let r=t.type.create(n,null,t.marks);return H.fromReplace(e,this.pos,this.pos+1,new S(b.from(r),0,t.isLeaf?0:1))}getMap(){return le.empty}invert(e){return new Mt(this.pos,this.attr,e.nodeAt(this.pos).attrs[this.attr])}map(e){let t=e.mapResult(this.pos,1);return t.deletedAfter?null:new Mt(t.pos,this.attr,this.value)}toJSON(){return{stepType:"attr",pos:this.pos,attr:this.attr,value:this.value}}static fromJSON(e,t){if("number"!=typeof t.pos||"string"!=typeof t.attr)throw new RangeError("Invalid input for AttrStep.fromJSON");return new Mt(t.pos,t.attr,t.value)}}ee.jsonID("attr",Mt);class Zt extends ee{constructor(e,t){super(),this.attr=e,this.value=t}apply(e){let t=Object.create(null);for(let n in e.attrs)t[n]=e.attrs[n];t[this.attr]=this.value;let n=e.type.create(t,e.content,e.marks);return H.ok(n)}getMap(){return le.empty}invert(e){return new Zt(this.attr,e.attrs[this.attr])}map(e){return this}toJSON(){return{stepType:"docAttr",attr:this.attr,value:this.value}}static fromJSON(e,t){if("string"!=typeof t.attr)throw new RangeError("Invalid input for DocAttrStep.fromJSON");return new Zt(t.attr,t.value)}}ee.jsonID("docAttr",Zt);let Tt=class extends Error{};Tt=function e(t){let n=Error.call(this,t);return n.__proto__=e.prototype,n},Tt.prototype=Object.create(Error.prototype),Tt.prototype.constructor=Tt,Tt.prototype.name="TransformError";class bl{constructor(e){this.doc=e,this.steps=[],this.docs=[],this.mapping=new Qt}get before(){return this.docs.length?this.docs[0]:this.doc}step(e){let t=this.maybeStep(e);if(t.failed)throw new Tt(t.failed);return this}maybeStep(e){let t=e.apply(this.doc);return t.failed||this.addStep(e,t.doc),t}get docChanged(){return this.steps.length>0}addStep(e,t){this.docs.push(this.doc),this.steps.push(e),this.mapping.appendMap(e.getMap()),this.doc=t}replace(e,t=e,n=S.empty){let r=Cr(this.doc,e,t,n);return r&&this.step(r),this}replaceWith(e,t,n){return this.replace(e,t,new S(b.from(n),0,0))}delete(e,t){return this.replace(e,t,S.empty)}insert(e,t){return this.replaceWith(e,e,t)}replaceRange(e,t,n){return Yc(this,e,t,n),this}replaceRangeWith(e,t,n){return Xc(this,e,t,n),this}deleteRange(e,t){return Qc(this,e,t),this}lift(e,t){return Bc(this,e,t),this}join(e,t=1){return _c(this,e,t),this}wrap(e,t){return $c(this,e,t),this}setBlockType(e,t=e,n,r=null){return Vc(this,e,t,n,r),this}setNodeMarkup(e,t,n=null,r){return jc(this,e,t,n,r),this}setNodeAttribute(e,t,n){return this.step(new Mt(e,t,n)),this}setDocAttribute(e,t){return this.step(new Zt(e,t)),this}addNodeMark(e,t){return this.step(new je(e,t)),this}removeNodeMark(e,t){let n=this.doc.nodeAt(e);if(!n)throw new RangeError("No node at position "+e);if(t instanceof P)t.isInSet(n.marks)&&this.step(new ut(e,t));else{let r,o=n.marks,i=[];for(;r=t.isInSet(o);)i.push(new ut(e,r)),o=r.removeFromSet(o);for(let e=i.length-1;e>=0;e--)this.step(i[e])}return this}split(e,t=1,n){return Wc(this,e,t,n),this}addMark(e,t,n){return Rc(this,e,t,n),this}removeMark(e,t,n){return Pc(this,e,t,n),this}clearIncompatible(e,t,n){return Bi(this,e,t,n),this}}const Vr=Object.create(null);class N{constructor(e,t,n){this.$anchor=e,this.$head=t,this.ranges=n||[new Zc(e.min(t),e.max(t))]}get anchor(){return this.$anchor.pos}get head(){return this.$head.pos}get from(){return this.$from.pos}get to(){return this.$to.pos}get $from(){return this.ranges[0].$from}get $to(){return this.ranges[0].$to}get empty(){let e=this.ranges;for(let t=0;t<e.length;t++)if(e[t].$from.pos!=e[t].$to.pos)return!1;return!0}content(){return this.$from.doc.slice(this.from,this.to,!0)}replace(e,t=S.empty){let n=t.content.lastChild,r=null;for(let e=0;e<t.openEnd;e++)r=n,n=n.lastChild;let o=e.steps.length,i=this.ranges;for(let s=0;s<i.length;s++){let{$from:a,$to:l}=i[s],c=e.mapping.slice(o);e.replaceRange(c.map(a.pos),c.map(l.pos),s?S.empty:t),0==s&&Ls(e,o,(n?n.isInline:r&&r.isTextblock)?-1:1)}}replaceWith(e,t){let n=e.steps.length,r=this.ranges;for(let o=0;o<r.length;o++){let{$from:i,$to:s}=r[o],a=e.mapping.slice(n),l=a.map(i.pos),c=a.map(s.pos);o?e.deleteRange(l,c):(e.replaceRangeWith(l,c,t),Ls(e,n,t.isInline?-1:1))}}static findFrom(e,t,n=!1){let r=e.parent.inlineContent?new v(e):bt(e.node(0),e.parent,e.pos,e.index(),t,n);if(r)return r;for(let r=e.depth-1;r>=0;r--){let o=t<0?bt(e.node(0),e.node(r),e.before(r+1),e.index(r),t,n):bt(e.node(0),e.node(r),e.after(r+1),e.index(r)+1,t,n);if(o)return o}return null}static near(e,t=1){return this.findFrom(e,t)||this.findFrom(e,-t)||new ae(e.node(0))}static atStart(e){return bt(e,e,0,0,1)||new ae(e)}static atEnd(e){return bt(e,e,e.content.size,e.childCount,-1)||new ae(e)}static fromJSON(e,t){if(!t||!t.type)throw new RangeError("Invalid input for Selection.fromJSON");let n=Vr[t.type];if(!n)throw new RangeError(`No selection type ${t.type} defined`);return n.fromJSON(e,t)}static jsonID(e,t){if(e in Vr)throw new RangeError("Duplicate use of selection JSON ID "+e);return Vr[e]=t,t.prototype.jsonID=e,t}getBookmark(){return v.between(this.$anchor,this.$head).getBookmark()}}N.prototype.visible=!0;class Zc{constructor(e,t){this.$from=e,this.$to=t}}let Rs=!1;function Ps(e){!Rs&&!e.parent.inlineContent&&(Rs=!0)}class v extends N{constructor(e,t=e){Ps(e),Ps(t),super(e,t)}get $cursor(){return this.$anchor.pos==this.$head.pos?this.$head:null}map(e,t){let n=e.resolve(t.map(this.head));if(!n.parent.inlineContent)return N.near(n);let r=e.resolve(t.map(this.anchor));return new v(r.parent.inlineContent?r:n,n)}replace(e,t=S.empty){if(super.replace(e,t),t==S.empty){let t=this.$from.marksAcross(this.$to);t&&e.ensureMarks(t)}}eq(e){return e instanceof v&&e.anchor==this.anchor&&e.head==this.head}getBookmark(){return new Mr(this.anchor,this.head)}toJSON(){return{type:"text",anchor:this.anchor,head:this.head}}static fromJSON(e,t){if("number"!=typeof t.anchor||"number"!=typeof t.head)throw new RangeError("Invalid input for TextSelection.fromJSON");return new v(e.resolve(t.anchor),e.resolve(t.head))}static create(e,t,n=t){let r=e.resolve(t);return new this(r,n==t?r:e.resolve(n))}static between(e,t,n){let r=e.pos-t.pos;if((!n||r)&&(n=r>=0?1:-1),!t.parent.inlineContent){let e=N.findFrom(t,n,!0)||N.findFrom(t,-n,!0);if(!e)return N.near(t,n);t=e.$head}return e.parent.inlineContent||(0==r?e=t:(e=(N.findFrom(e,-n,!0)||N.findFrom(e,n,!0)).$anchor).pos<t.pos!=r<0&&(e=t)),new v(e,t)}}N.jsonID("text",v);class Mr{constructor(e,t){this.anchor=e,this.head=t}map(e){return new Mr(e.map(this.anchor),e.map(this.head))}resolve(e){return v.between(e.resolve(this.anchor),e.resolve(this.head))}}class T extends N{constructor(e){let t=e.nodeAfter,n=e.node(0).resolve(e.pos+t.nodeSize);super(e,n),this.node=t}map(e,t){let{deleted:n,pos:r}=t.mapResult(this.anchor),o=e.resolve(r);return n?N.near(o):new T(o)}content(){return new S(b.from(this.node),0,0)}eq(e){return e instanceof T&&e.anchor==this.anchor}toJSON(){return{type:"node",anchor:this.anchor}}getBookmark(){return new Fi(this.anchor)}static fromJSON(e,t){if("number"!=typeof t.anchor)throw new RangeError("Invalid input for NodeSelection.fromJSON");return new T(e.resolve(t.anchor))}static create(e,t){return new T(e.resolve(t))}static isSelectable(e){return!e.isText&&!1!==e.type.spec.selectable}}T.prototype.visible=!1,N.jsonID("node",T);class Fi{constructor(e){this.anchor=e}map(e){let{deleted:t,pos:n}=e.mapResult(this.anchor);return t?new Mr(n,n):new Fi(n)}resolve(e){let t=e.resolve(this.anchor),n=t.nodeAfter;return n&&T.isSelectable(n)?new T(t):N.near(t)}}class ae extends N{constructor(e){super(e.resolve(0),e.resolve(e.content.size))}replace(e,t=S.empty){if(t==S.empty){e.delete(0,e.doc.content.size);let t=N.atStart(e.doc);t.eq(e.selection)||e.setSelection(t)}else super.replace(e,t)}toJSON(){return{type:"all"}}static fromJSON(e){return new ae(e)}map(e){return new ae(e)}eq(e){return e instanceof ae}getBookmark(){return eu}}N.jsonID("all",ae);const eu={map(){return this},resolve:e=>new ae(e)};function bt(e,t,n,r,o,i=!1){if(t.inlineContent)return v.create(e,n);for(let s=r-(o>0?0:1);o>0?s<t.childCount:s>=0;s+=o){let r=t.child(s);if(r.isAtom){if(!i&&T.isSelectable(r))return T.create(e,n-(o<0?r.nodeSize:0))}else{let t=bt(e,r,n+o,o<0?r.childCount:0,o,i);if(t)return t}n+=r.nodeSize*o}return null}function Ls(e,t,n){let r=e.steps.length-1;if(r<t)return;let o,i=e.steps[r];(i instanceof _||i instanceof U)&&(e.mapping.maps[r].forEach((e,t,n,r)=>{null==o&&(o=r)}),e.setSelection(N.near(e.doc.resolve(o),n)))}const Bs=1,bn=2,zs=4;class tu extends bl{constructor(e){super(e.doc),this.curSelectionFor=0,this.updated=0,this.meta=Object.create(null),this.time=Date.now(),this.curSelection=e.selection,this.storedMarks=e.storedMarks}get selection(){return this.curSelectionFor<this.steps.length&&(this.curSelection=this.curSelection.map(this.doc,this.mapping.slice(this.curSelectionFor)),this.curSelectionFor=this.steps.length),this.curSelection}setSelection(e){if(e.$from.doc!=this.doc)throw new RangeError("Selection passed to setSelection must point at the current document");return this.curSelection=e,this.curSelectionFor=this.steps.length,this.updated=-3&this.updated|1,this.storedMarks=null,this}get selectionSet(){return(1&this.updated)>0}setStoredMarks(e){return this.storedMarks=e,this.updated|=2,this}ensureMarks(e){return P.sameSet(this.storedMarks||this.selection.$from.marks(),e)||this.setStoredMarks(e),this}addStoredMark(e){return this.ensureMarks(e.addToSet(this.storedMarks||this.selection.$head.marks()))}removeStoredMark(e){return this.ensureMarks(e.removeFromSet(this.storedMarks||this.selection.$head.marks()))}get storedMarksSet(){return(2&this.updated)>0}addStep(e,t){super.addStep(e,t),this.updated=-3&this.updated,this.storedMarks=null}setTime(e){return this.time=e,this}replaceSelection(e){return this.selection.replace(this,e),this}replaceSelectionWith(e,t=!0){let n=this.selection;return t&&(e=e.mark(this.storedMarks||(n.empty?n.$from.marks():n.$from.marksAcross(n.$to)||P.none))),n.replaceWith(this,e),this}deleteSelection(){return this.selection.replace(this),this}insertText(e,t,n){let r=this.doc.type.schema;if(null==t)return e?this.replaceSelectionWith(r.text(e),!0):this.deleteSelection();{if(null==n&&(n=t),n=n??t,!e)return this.deleteRange(t,n);let o=this.storedMarks;if(!o){let e=this.doc.resolve(t);o=n==t?e.marks():e.marksAcross(this.doc.resolve(n))}return this.replaceRangeWith(t,n,r.text(e,o)),this.selection.empty||this.setSelection(N.near(this.selection.$to)),this}}setMeta(e,t){return this.meta["string"==typeof e?e:e.key]=t,this}getMeta(e){return this.meta["string"==typeof e?e:e.key]}get isGeneric(){for(let e in this.meta)return!1;return!0}scrollIntoView(){return this.updated|=4,this}get scrolledIntoView(){return(4&this.updated)>0}}function Fs(e,t){return t&&e?e.bind(t):e}class Ft{constructor(e,t,n){this.name=e,this.init=Fs(t.init,n),this.apply=Fs(t.apply,n)}}const nu=[new Ft("doc",{init:e=>e.doc||e.schema.topNodeType.createAndFill(),apply:e=>e.doc}),new Ft("selection",{init:(e,t)=>e.selection||N.atStart(t.doc),apply:e=>e.selection}),new Ft("storedMarks",{init:e=>e.storedMarks||null,apply:(e,t,n,r)=>r.selection.$cursor?e.storedMarks:null}),new Ft("scrollToSelection",{init:()=>0,apply:(e,t)=>e.scrolledIntoView?t+1:t})];class Hr{constructor(e,t){this.schema=e,this.plugins=[],this.pluginsByKey=Object.create(null),this.fields=nu.slice(),t&&t.forEach(e=>{if(this.pluginsByKey[e.key])throw new RangeError("Adding different instances of a keyed plugin ("+e.key+")");this.plugins.push(e),this.pluginsByKey[e.key]=e,e.spec.state&&this.fields.push(new Ft(e.key,e.spec.state,e))})}}class Ct{constructor(e){this.config=e}get schema(){return this.config.schema}get plugins(){return this.config.plugins}apply(e){return this.applyTransaction(e).state}filterTransaction(e,t=-1){for(let n=0;n<this.config.plugins.length;n++)if(n!=t){let t=this.config.plugins[n];if(t.spec.filterTransaction&&!t.spec.filterTransaction.call(t,e,this))return!1}return!0}applyTransaction(e){if(!this.filterTransaction(e))return{state:this,transactions:[]};let t=[e],n=this.applyInner(e),r=null;for(;;){let o=!1;for(let i=0;i<this.config.plugins.length;i++){let s=this.config.plugins[i];if(s.spec.appendTransaction){let a=r?r[i].n:0,l=r?r[i].state:this,c=a<t.length&&s.spec.appendTransaction.call(s,a?t.slice(a):t,l,n);if(c&&n.filterTransaction(c,i)){if(c.setMeta("appendedTransaction",e),!r){r=[];for(let e=0;e<this.config.plugins.length;e++)r.push(e<i?{state:n,n:t.length}:{state:this,n:0})}t.push(c),n=n.applyInner(c),o=!0}r&&(r[i]={state:n,n:t.length})}}if(!o)return{state:n,transactions:t}}}applyInner(e){if(!e.before.eq(this.doc))throw new RangeError("Applying a mismatched transaction");let t=new Ct(this.config),n=this.config.fields;for(let r=0;r<n.length;r++){let o=n[r];t[o.name]=o.apply(e,this[o.name],this,t)}return t}get tr(){return new tu(this)}static create(e){let t=new Hr(e.doc?e.doc.type.schema:e.schema,e.plugins),n=new Ct(t);for(let r=0;r<t.fields.length;r++)n[t.fields[r].name]=t.fields[r].init(e,n);return n}reconfigure(e){let t=new Hr(this.schema,e.plugins),n=t.fields,r=new Ct(t);for(let t=0;t<n.length;t++){let o=n[t].name;r[o]=this.hasOwnProperty(o)?this[o]:n[t].init(e,r)}return r}toJSON(e){let t={doc:this.doc.toJSON(),selection:this.selection.toJSON()};if(this.storedMarks&&(t.storedMarks=this.storedMarks.map(e=>e.toJSON())),e&&"object"==typeof e)for(let n in e){if("doc"==n||"selection"==n)throw new RangeError("The JSON fields `doc` and `selection` are reserved");let r=e[n],o=r.spec.state;o&&o.toJSON&&(t[n]=o.toJSON.call(r,this[r.key]))}return t}static fromJSON(e,t,n){if(!t)throw new RangeError("Invalid input for EditorState.fromJSON");if(!e.schema)throw new RangeError("Required config field 'schema' missing");let r=new Hr(e.schema,e.plugins),o=new Ct(r);return r.fields.forEach(r=>{if("doc"==r.name)o.doc=be.fromJSON(e.schema,t.doc);else if("selection"==r.name)o.selection=N.fromJSON(o.doc,t.selection);else if("storedMarks"==r.name)t.storedMarks&&(o.storedMarks=t.storedMarks.map(e.schema.markFromJSON));else{if(n)for(let i in n){let s=n[i],a=s.spec.state;if(s.key==r.name&&a&&a.fromJSON&&Object.prototype.hasOwnProperty.call(t,i))return void(o[r.name]=a.fromJSON.call(s,e,t[i],o))}o[r.name]=r.init(e,o)}}),o}}function kl(e,t,n){for(let r in e){let o=e[r];o instanceof Function?o=o.bind(t):"handleDOMEvents"==r&&(o=kl(o,t,{})),n[r]=o}return n}class V{constructor(e){this.spec=e,this.props={},e.props&&kl(e.props,this,this.props),this.key=e.key?e.key.key:xl("plugin")}getState(e){return e[this.key]}}const jr=Object.create(null);function xl(e){return e in jr?e+"$"+ ++jr[e]:(jr[e]=0,e+"$")}class q{constructor(e="key"){this.key=xl(e)}get(e){return e.config.pluginsByKey[this.key]}getState(e){return e[this.key]}}const Y=function(e){for(var t=0;;t++)if(!(e=e.previousSibling))return t},Et=function(e){let t=e.assignedSlot||e.parentNode;return t&&11==t.nodeType?t.host:t};let fi=null;const Oe=function(e,t,n){let r=fi||(fi=document.createRange());return r.setEnd(e,n??e.nodeValue.length),r.setStart(e,t||0),r},ru=function(){fi=null},dt=function(e,t,n,r){return n&&($s(e,t,n,r,-1)||$s(e,t,n,r,1))},iu=/^(img|br|input|textarea|hr)$/i;function $s(e,t,n,r,o){for(var i;;){if(e==n&&t==r)return!0;if(t==(o<0?0:fe(e))){let n=e.parentNode;if(!n||1!=n.nodeType||cn(e)||iu.test(e.nodeName)||"false"==e.contentEditable)return!1;t=Y(e)+(o<0?0:1),e=n}else{if(1!=e.nodeType)return!1;{let n=e.childNodes[t+(o<0?-1:0)];if(1==n.nodeType&&"false"==n.contentEditable){if(null===(i=n.pmViewDesc)||void 0===i||!i.ignoreForSelection)return!1;t+=o}else e=n,t=o<0?fe(e):0}}}}function fe(e){return 3==e.nodeType?e.nodeValue.length:e.childNodes.length}function su(e,t){for(;;){if(3==e.nodeType&&t)return e;if(1==e.nodeType&&t>0){if("false"==e.contentEditable)return null;t=fe(e=e.childNodes[t-1])}else{if(!e.parentNode||cn(e))return null;t=Y(e),e=e.parentNode}}}function ou(e,t){for(;;){if(3==e.nodeType&&t<e.nodeValue.length)return e;if(1==e.nodeType&&t<e.childNodes.length){if("false"==e.contentEditable)return null;e=e.childNodes[t],t=0}else{if(!e.parentNode||cn(e))return null;t=Y(e)+1,e=e.parentNode}}}function lu(e,t,n){for(let r=0==t,o=t==fe(e);r||o;){if(e==n)return!0;let t=Y(e);if(!(e=e.parentNode))return!1;r=r&&0==t,o=o&&t==fe(e)}}function cn(e){let t;for(let n=e;n&&!(t=n.pmViewDesc);n=n.parentNode);return t&&t.node&&t.node.isBlock&&(t.dom==e||t.contentDOM==e)}const wr=function(e){return e.focusNode&&dt(e.focusNode,e.focusOffset,e.anchorNode,e.anchorOffset)};function Ze(e,t){let n=document.createEvent("Event");return n.initEvent("keydown",!0,!0),n.keyCode=e,n.key=n.code=t,n}function au(e){let t=e.activeElement;for(;t&&t.shadowRoot;)t=t.shadowRoot.activeElement;return t}function cu(e,t,n){if(e.caretPositionFromPoint)try{let r=e.caretPositionFromPoint(t,n);if(r)return{node:r.offsetNode,offset:Math.min(fe(r.offsetNode),r.offset)}}catch{}if(e.caretRangeFromPoint){let r=e.caretRangeFromPoint(t,n);if(r)return{node:r.startContainer,offset:Math.min(fe(r.startContainer),r.startOffset)}}}const Ce=typeof navigator<"u"?navigator:null,Vs=typeof document<"u"?document:null,Xe=Ce&&Ce.userAgent||"",hi=/Edge\/(\d+)/.exec(Xe),Sl=/MSIE \d/.exec(Xe),pi=/Trident\/(?:[7-9]|\d{2,})\..*rv:(\d+)/.exec(Xe),oe=!!(Sl||pi||hi),_e=Sl?document.documentMode:pi?+pi[1]:hi?+hi[1]:0,he=!oe&&/gecko\/(\d+)/i.test(Xe);he&&(/Firefox\/(\d+)/.exec(Xe)||[0,0])[1];const mi=!oe&&/Chrome\/(\d+)/.exec(Xe),Z=!!mi,Cl=mi?+mi[1]:0,ne=!oe&&!!Ce&&/Apple Computer/.test(Ce.vendor),vt=ne&&(/Mobile\/\w+/.test(Xe)||!!Ce&&Ce.maxTouchPoints>2),de=vt||!!Ce&&/Mac/.test(Ce.platform),uu=!!Ce&&/Win/.test(Ce.platform),Ae=/Android \d/.test(Xe),un=!!Vs&&"webkitFontSmoothing"in Vs.documentElement.style,du=un?+(/\bAppleWebKit\/(\d+)/.exec(navigator.userAgent)||[0,0])[1]:0;function fu(e){let t=e.defaultView&&e.defaultView.visualViewport;return t?{left:0,right:t.width,top:0,bottom:t.height}:{left:0,right:e.documentElement.clientWidth,top:0,bottom:e.documentElement.clientHeight}}function we(e,t){return"number"==typeof e?e:e[t]}function hu(e){let t=e.getBoundingClientRect(),n=t.width/e.offsetWidth||1,r=t.height/e.offsetHeight||1;return{left:t.left,right:t.left+e.clientWidth*n,top:t.top,bottom:t.top+e.clientHeight*r}}function Hs(e,t,n){let r=e.someProp("scrollThreshold")||0,o=e.someProp("scrollMargin")||5,i=e.dom.ownerDocument;for(let s=n||e.dom;s;){if(1!=s.nodeType){s=Et(s);continue}let e=s,n=e==i.body,a=n?fu(i):hu(e),l=0,c=0;if(t.top<a.top+we(r,"top")?c=-(a.top-t.top+we(o,"top")):t.bottom>a.bottom-we(r,"bottom")&&(c=t.bottom-t.top>a.bottom-a.top?t.top+we(o,"top")-a.top:t.bottom-a.bottom+we(o,"bottom")),t.left<a.left+we(r,"left")?l=-(a.left-t.left+we(o,"left")):t.right>a.right-we(r,"right")&&(l=t.right-a.right+we(o,"right")),l||c)if(n)i.defaultView.scrollBy(l,c);else{let n=e.scrollLeft,r=e.scrollTop;c&&(e.scrollTop+=c),l&&(e.scrollLeft+=l);let o=e.scrollLeft-n,i=e.scrollTop-r;t={left:t.left-o,top:t.top-i,right:t.right-o,bottom:t.bottom-i}}let d=n?"fixed":getComputedStyle(s).position;if(/^(fixed|sticky)$/.test(d))break;s="absolute"==d?s.offsetParent:Et(s)}}function pu(e){let t,n,r=e.dom.getBoundingClientRect(),o=Math.max(0,r.top);for(let i=(r.left+r.right)/2,s=o+1;s<Math.min(innerHeight,r.bottom);s+=5){let r=e.root.elementFromPoint(i,s);if(!r||r==e.dom||!e.dom.contains(r))continue;let a=r.getBoundingClientRect();if(a.top>=o-20){t=r,n=a.top;break}}return{refDOM:t,refTop:n,stack:Ml(e.dom)}}function Ml(e){let t=[],n=e.ownerDocument;for(let r=e;r&&(t.push({dom:r,top:r.scrollTop,left:r.scrollLeft}),e!=n);r=Et(r));return t}function mu({refDOM:e,refTop:t,stack:n}){let r=e?e.getBoundingClientRect().top:0;wl(n,0==r?0:r-t)}function wl(e,t){for(let n=0;n<e.length;n++){let{dom:r,top:o,left:i}=e[n];r.scrollTop!=o+t&&(r.scrollTop=o+t),r.scrollLeft!=i&&(r.scrollLeft=i)}}let gt=null;function gu(e){if(e.setActive)return e.setActive();if(gt)return e.focus(gt);let t=Ml(e);e.focus(null==gt?{get preventScroll(){return gt={preventScroll:!0},!0}}:void 0),gt||(gt=!1,wl(t,0))}function Tl(e,t){let n,r,o,i,s=2e8,a=0,l=t.top,c=t.top;for(let d=e.firstChild,h=0;d;d=d.nextSibling,h++){let e;if(1==d.nodeType)e=d.getClientRects();else{if(3!=d.nodeType)continue;e=Oe(d).getClientRects()}for(let p=0;p<e.length;p++){let u=e[p];if(u.top<=l&&u.bottom>=c){l=Math.max(u.bottom,l),c=Math.min(u.top,c);let e=u.left>t.left?u.left-t.left:u.right<t.left?t.left-u.right:0;if(e<s){n=d,s=e,r=e&&3==n.nodeType?{left:u.right<t.left?u.right:u.left,top:t.top}:t,1==d.nodeType&&e&&(a=h+(t.left>=(u.left+u.right)/2?1:0));continue}}else u.top>t.top&&!o&&u.left<=t.left&&u.right>=t.left&&(o=d,i={left:Math.max(u.left,Math.min(u.right,t.left)),top:u.top});!n&&(t.left>=u.right&&t.top>=u.top||t.left>=u.left&&t.top>=u.bottom)&&(a=h+1)}}return!n&&o&&(n=o,r=i,s=0),n&&3==n.nodeType?yu(n,r):!n||s&&1==n.nodeType?{node:e,offset:a}:Tl(n,r)}function yu(e,t){let n=e.nodeValue.length,r=document.createRange();for(let o=0;o<n;o++){r.setEnd(e,o+1),r.setStart(e,o);let n=Le(r,1);if(n.top!=n.bottom&&$i(t,n))return{node:e,offset:o+(t.left>=(n.left+n.right)/2?1:0)}}return{node:e,offset:0}}function $i(e,t){return e.left>=t.left-1&&e.left<=t.right+1&&e.top>=t.top-1&&e.top<=t.bottom+1}function bu(e,t){let n=e.parentNode;return n&&/^li$/i.test(n.nodeName)&&t.left<e.getBoundingClientRect().left?n:e}function ku(e,t,n){let{node:r,offset:o}=Tl(t,n),i=-1;if(1==r.nodeType&&!r.firstChild){let e=r.getBoundingClientRect();i=e.left!=e.right&&n.left>(e.left+e.right)/2?1:-1}return e.docView.posFromDOM(r,o,i)}function xu(e,t,n,r){let o=-1;for(let n=t,i=!1;n!=e.dom;){let t,s=e.docView.nearestDesc(n,!0);if(!s)return null;if(1==s.dom.nodeType&&(s.node.isBlock&&s.parent||!s.contentDOM)&&((t=s.dom.getBoundingClientRect()).width||t.height)&&(s.node.isBlock&&s.parent&&!/^T(R|BODY|HEAD|FOOT)$/.test(s.dom.nodeName)&&(!i&&t.left>r.left||t.top>r.top?o=s.posBefore:(!i&&t.right<r.left||t.bottom<r.top)&&(o=s.posAfter),i=!0),!s.contentDOM&&o<0&&!s.node.isText))return(s.node.isBlock?r.top<(t.top+t.bottom)/2:r.left<(t.left+t.right)/2)?s.posBefore:s.posAfter;n=s.dom.parentNode}return o>-1?o:e.docView.posFromDOM(t,n,-1)}function El(e,t,n){let r=e.childNodes.length;if(r&&n.top<n.bottom)for(let o=Math.max(0,Math.min(r-1,Math.floor(r*(t.top-n.top)/(n.bottom-n.top))-2)),i=o;;){let n=e.childNodes[i];if(1==n.nodeType){let e=n.getClientRects();for(let r=0;r<e.length;r++){let o=e[r];if($i(t,o))return El(n,t,o)}}if((i=(i+1)%r)==o)break}return e}function Su(e,t){let n,r=e.dom.ownerDocument,o=0,i=cu(r,t.left,t.top);i&&({node:n,offset:o}=i);let s,a=(e.root.elementFromPoint?e.root:r).elementFromPoint(t.left,t.top);if(!a||!e.dom.contains(1!=a.nodeType?a.parentNode:a)){let n=e.dom.getBoundingClientRect();if(!$i(t,n)||(a=El(e.dom,t,n),!a))return null}if(ne)for(let e=a;n&&e;e=Et(e))e.draggable&&(n=void 0);if(a=bu(a,t),n){if(he&&1==n.nodeType&&(o=Math.min(o,n.childNodes.length),o<n.childNodes.length)){let e,r=n.childNodes[o];"IMG"==r.nodeName&&(e=r.getBoundingClientRect()).right<=t.left&&e.bottom>t.top&&o++}let r;un&&o&&1==n.nodeType&&1==(r=n.childNodes[o-1]).nodeType&&"false"==r.contentEditable&&r.getBoundingClientRect().top>=t.top&&o--,n==e.dom&&o==n.childNodes.length-1&&1==n.lastChild.nodeType&&t.top>n.lastChild.getBoundingClientRect().bottom?s=e.state.doc.content.size:(0==o||1!=n.nodeType||"BR"!=n.childNodes[o-1].nodeName)&&(s=xu(e,n,o,t))}null==s&&(s=ku(e,a,t));let l=e.docView.nearestDesc(a,!0);return{pos:s,inside:l?l.posAtStart-l.border:-1}}function js(e){return e.top<e.bottom||e.left<e.right}function Le(e,t){let n=e.getClientRects();if(n.length){let e=n[t<0?0:n.length-1];if(js(e))return e}return Array.prototype.find.call(n,js)||e.getBoundingClientRect()}const Cu=/[\u0590-\u05f4\u0600-\u06ff\u0700-\u08ac]/;function vl(e,t,n){let{node:r,offset:o,atom:i}=e.docView.domFromPos(t,n<0?-1:1),s=un||he;if(3==r.nodeType){if(!s||!Cu.test(r.nodeValue)&&(n<0?o:o!=r.nodeValue.length)){let e=o,t=o,i=n<0?1:-1;return n<0&&!o?(t++,i=-1):n>=0&&o==r.nodeValue.length?(e--,i=1):n<0?e--:t++,Pt(Le(Oe(r,e,t),i),i<0)}{let e=Le(Oe(r,o,o),n);if(he&&o&&/\s/.test(r.nodeValue[o-1])&&o<r.nodeValue.length){let t=Le(Oe(r,o-1,o-1),-1);if(t.top==e.top){let n=Le(Oe(r,o,o+1),-1);if(n.top!=e.top)return Pt(n,n.left<t.left)}}return e}}if(!e.state.doc.resolve(t-(i||0)).parent.inlineContent){if(null==i&&o&&(n<0||o==fe(r))){let e=r.childNodes[o-1];if(1==e.nodeType)return Wr(e.getBoundingClientRect(),!1)}if(null==i&&o<fe(r)){let e=r.childNodes[o];if(1==e.nodeType)return Wr(e.getBoundingClientRect(),!0)}return Wr(r.getBoundingClientRect(),n>=0)}if(null==i&&o&&(n<0||o==fe(r))){let e=r.childNodes[o-1],t=3==e.nodeType?Oe(e,fe(e)-(s?0:1)):1!=e.nodeType||"BR"==e.nodeName&&e.nextSibling?null:e;if(t)return Pt(Le(t,1),!1)}if(null==i&&o<fe(r)){let e=r.childNodes[o];for(;e.pmViewDesc&&e.pmViewDesc.ignoreForCoords;)e=e.nextSibling;let t=e?3==e.nodeType?Oe(e,0,s?0:1):1==e.nodeType?e:null:null;if(t)return Pt(Le(t,-1),!0)}return Pt(Le(3==r.nodeType?Oe(r):r,-n),n>=0)}function Pt(e,t){if(0==e.width)return e;let n=t?e.left:e.right;return{top:e.top,bottom:e.bottom,left:n,right:n}}function Wr(e,t){if(0==e.height)return e;let n=t?e.top:e.bottom;return{top:n,bottom:n,left:e.left,right:e.right}}function Ol(e,t,n){let r=e.state,o=e.root.activeElement;r!=t&&e.updateState(t),o!=e.dom&&e.focus();try{return n()}finally{r!=t&&e.updateState(r),o!=e.dom&&o&&o.focus()}}function Mu(e,t,n){let r=t.selection,o="up"==n?r.$from:r.$to;return Ol(e,t,()=>{let{node:t}=e.docView.domFromPos(o.pos,"up"==n?-1:1);for(;;){let n=e.docView.nearestDesc(t,!0);if(!n)break;if(n.node.isBlock){t=n.contentDOM||n.dom;break}t=n.dom.parentNode}let r=vl(e,o.pos,1);for(let e=t.firstChild;e;e=e.nextSibling){let t;if(1==e.nodeType)t=e.getClientRects();else{if(3!=e.nodeType)continue;t=Oe(e,0,e.nodeValue.length).getClientRects()}for(let e=0;e<t.length;e++){let o=t[e];if(o.bottom>o.top+1&&("up"==n?r.top-o.top>2*(o.bottom-r.top):o.bottom-r.bottom>2*(r.bottom-o.top)))return!1}}return!0})}const wu=/[\u0590-\u08ac]/;function Tu(e,t,n){let{$head:r}=t.selection;if(!r.parent.isTextblock)return!1;let o=r.parentOffset,i=!o,s=o==r.parent.content.size,a=e.domSelection();return a?wu.test(r.parent.textContent)&&a.modify?Ol(e,t,()=>{let{focusNode:t,focusOffset:o,anchorNode:i,anchorOffset:s}=e.domSelectionRange(),l=a.caretBidiLevel;a.modify("move",n,"character");let c=r.depth?e.docView.domAfterPos(r.before()):e.dom,{focusNode:d,focusOffset:h}=e.domSelectionRange(),p=d&&!c.contains(1==d.nodeType?d:d.parentNode)||t==d&&o==h;try{a.collapse(i,s),t&&(t!=i||o!=s)&&a.extend&&a.extend(t,o)}catch{}return null!=l&&(a.caretBidiLevel=l),p}):"left"==n||"backward"==n?i:s:r.pos==r.start()||r.pos==r.end()}let Ws=null,Ks=null,_s=!1;function Eu(e,t,n){return Ws==t&&Ks==n?_s:(Ws=t,Ks=n,_s="up"==n||"down"==n?Mu(e,t,n):Tu(e,t,n))}const pe=0,Us=1,et=2,Me=3;class dn{constructor(e,t,n,r){this.parent=e,this.children=t,this.dom=n,this.contentDOM=r,this.dirty=0,n.pmViewDesc=this}matchesWidget(e){return!1}matchesMark(e){return!1}matchesNode(e,t,n){return!1}matchesHack(e){return!1}parseRule(){return null}stopEvent(e){return!1}get size(){let e=0;for(let t=0;t<this.children.length;t++)e+=this.children[t].size;return e}get border(){return 0}destroy(){this.parent=void 0,this.dom.pmViewDesc==this&&(this.dom.pmViewDesc=void 0);for(let e=0;e<this.children.length;e++)this.children[e].destroy()}posBeforeChild(e){for(let t=0,n=this.posAtStart;;t++){let r=this.children[t];if(r==e)return n;n+=r.size}}get posBefore(){return this.parent.posBeforeChild(this)}get posAtStart(){return this.parent?this.parent.posBeforeChild(this)+this.border:0}get posAfter(){return this.posBefore+this.size}get posAtEnd(){return this.posAtStart+this.size-2*this.border}localPosFromDOM(e,t,n){if(this.contentDOM&&this.contentDOM.contains(1==e.nodeType?e:e.parentNode)){if(n<0){let n,r;if(e==this.contentDOM)n=e.childNodes[t-1];else{for(;e.parentNode!=this.contentDOM;)e=e.parentNode;n=e.previousSibling}for(;n&&(!(r=n.pmViewDesc)||r.parent!=this);)n=n.previousSibling;return n?this.posBeforeChild(r)+r.size:this.posAtStart}{let n,r;if(e==this.contentDOM)n=e.childNodes[t];else{for(;e.parentNode!=this.contentDOM;)e=e.parentNode;n=e.nextSibling}for(;n&&(!(r=n.pmViewDesc)||r.parent!=this);)n=n.nextSibling;return n?this.posBeforeChild(r):this.posAtEnd}}let r;if(e==this.dom&&this.contentDOM)r=t>Y(this.contentDOM);else if(this.contentDOM&&this.contentDOM!=this.dom&&this.dom.contains(this.contentDOM))r=2&e.compareDocumentPosition(this.contentDOM);else if(this.dom.firstChild){if(0==t)for(let t=e;;t=t.parentNode){if(t==this.dom){r=!1;break}if(t.previousSibling)break}if(null==r&&t==e.childNodes.length)for(let t=e;;t=t.parentNode){if(t==this.dom){r=!0;break}if(t.nextSibling)break}}return r??n>0?this.posAtEnd:this.posAtStart}nearestDesc(e,t=!1){for(let n=!0,r=e;r;r=r.parentNode){let o,i=this.getDesc(r);if(i&&(!t||i.node)){if(!n||!(o=i.nodeDOM)||(1==o.nodeType?o.contains(1==e.nodeType?e:e.parentNode):o==e))return i;n=!1}}}getDesc(e){let t=e.pmViewDesc;for(let e=t;e;e=e.parent)if(e==this)return t}posFromDOM(e,t,n){for(let r=e;r;r=r.parentNode){let o=this.getDesc(r);if(o)return o.localPosFromDOM(e,t,n)}return-1}descAt(e){for(let t=0,n=0;t<this.children.length;t++){let r=this.children[t],o=n+r.size;if(n==e&&o!=n){for(;!r.border&&r.children.length;)for(let e=0;e<r.children.length;e++){let t=r.children[e];if(t.size){r=t;break}}return r}if(e<o)return r.descAt(e-n-r.border);n=o}}domFromPos(e,t){if(!this.contentDOM)return{node:this.dom,offset:0,atom:e+1};let n=0,r=0;for(let t=0;n<this.children.length;n++){let o=this.children[n],i=t+o.size;if(i>e||o instanceof Nl){r=e-t;break}t=i}if(r)return this.children[n].domFromPos(r-this.children[n].border,t);for(let e;n&&!(e=this.children[n-1]).size&&e instanceof Al&&e.side>=0;n--);if(t<=0){let e,r=!0;for(;e=n?this.children[n-1]:null,e&&e.dom.parentNode!=this.contentDOM;n--,r=!1);return e&&t&&r&&!e.border&&!e.domAtom?e.domFromPos(e.size,t):{node:this.contentDOM,offset:e?Y(e.dom)+1:0}}{let e,r=!0;for(;e=n<this.children.length?this.children[n]:null,e&&e.dom.parentNode!=this.contentDOM;n++,r=!1);return e&&r&&!e.border&&!e.domAtom?e.domFromPos(0,t):{node:this.contentDOM,offset:e?Y(e.dom):this.contentDOM.childNodes.length}}}parseRange(e,t,n=0){if(0==this.children.length)return{node:this.contentDOM,from:e,to:t,fromOffset:0,toOffset:this.contentDOM.childNodes.length};let r=-1,o=-1;for(let i=n,s=0;;s++){let n=this.children[s],a=i+n.size;if(-1==r&&e<=a){let o=i+n.border;if(e>=o&&t<=a-n.border&&n.node&&n.contentDOM&&this.contentDOM.contains(n.contentDOM))return n.parseRange(e,t,o);e=i;for(let t=s;t>0;t--){let n=this.children[t-1];if(n.size&&n.dom.parentNode==this.contentDOM&&!n.emptyChildAt(1)){r=Y(n.dom)+1;break}e-=n.size}-1==r&&(r=0)}if(r>-1&&(a>t||s==this.children.length-1)){t=a;for(let e=s+1;e<this.children.length;e++){let n=this.children[e];if(n.size&&n.dom.parentNode==this.contentDOM&&!n.emptyChildAt(-1)){o=Y(n.dom);break}t+=n.size}-1==o&&(o=this.contentDOM.childNodes.length);break}i=a}return{node:this.contentDOM,from:e,to:t,fromOffset:r,toOffset:o}}emptyChildAt(e){if(this.border||!this.contentDOM||!this.children.length)return!1;let t=this.children[e<0?0:this.children.length-1];return 0==t.size||t.emptyChildAt(e)}domAfterPos(e){let{node:t,offset:n}=this.domFromPos(e,0);if(1!=t.nodeType||n==t.childNodes.length)throw new RangeError("No node after pos "+e);return t.childNodes[n]}setSelection(e,t,n,r=!1){let o=Math.min(e,t),i=Math.max(e,t);for(let s=0,a=0;s<this.children.length;s++){let l=this.children[s],c=a+l.size;if(o>a&&i<c)return l.setSelection(e-a-l.border,t-a-l.border,n,r);a=c}let s=this.domFromPos(e,e?-1:1),a=t==e?s:this.domFromPos(t,t?-1:1),l=n.root.getSelection(),c=n.domSelectionRange(),d=!1;if((he||ne)&&e==t){let{node:e,offset:t}=s;if(3==e.nodeType){if(d=!(!t||"\n"!=e.nodeValue[t-1]),d&&t==e.nodeValue.length)for(let t,n=e;n;n=n.parentNode){if(t=n.nextSibling){"BR"==t.nodeName&&(s=a={node:t.parentNode,offset:Y(t)+1});break}let e=n.pmViewDesc;if(e&&e.node&&e.node.isBlock)break}}else{let n=e.childNodes[t-1];d=n&&("BR"==n.nodeName||"false"==n.contentEditable)}}if(he&&c.focusNode&&c.focusNode!=a.node&&1==c.focusNode.nodeType){let e=c.focusNode.childNodes[c.focusOffset];e&&"false"==e.contentEditable&&(r=!0)}if(!(r||d&&ne)&&dt(s.node,s.offset,c.anchorNode,c.anchorOffset)&&dt(a.node,a.offset,c.focusNode,c.focusOffset))return;let h=!1;if((l.extend||e==t)&&(!d||!he)){l.collapse(s.node,s.offset);try{e!=t&&l.extend(a.node,a.offset),h=!0}catch{}}if(!h){if(e>t){let e=s;s=a,a=e}let n=document.createRange();n.setEnd(a.node,a.offset),n.setStart(s.node,s.offset),l.removeAllRanges(),l.addRange(n)}}ignoreMutation(e){return!this.contentDOM&&"selection"!=e.type}get contentLost(){return this.contentDOM&&this.contentDOM!=this.dom&&!this.dom.contains(this.contentDOM)}markDirty(e,t){for(let n=0,r=0;r<this.children.length;r++){let o=this.children[r],i=n+o.size;if(n==i?e<=i&&t>=n:e<i&&t>n){let r=n+o.border,s=i-o.border;if(e>=r&&t<=s)return this.dirty=e==n||t==i?2:1,void(e!=r||t!=s||!o.contentLost&&o.dom.parentNode==this.contentDOM?o.markDirty(e-r,t-r):o.dirty=3);o.dirty=o.dom!=o.contentDOM||o.dom.parentNode!=this.contentDOM||o.children.length?3:2}n=i}this.dirty=2}markParentsDirty(){let e=1;for(let t=this.parent;t;t=t.parent,e++){let n=1==e?2:1;t.dirty<n&&(t.dirty=n)}}get domAtom(){return!1}get ignoreForCoords(){return!1}get ignoreForSelection(){return!1}isText(e){return!1}}class Al extends dn{constructor(e,t,n,r){let o,i=t.type.toDOM;if("function"==typeof i&&(i=i(n,()=>o?o.parent?o.parent.posBeforeChild(o):void 0:r)),!t.type.spec.raw){if(1!=i.nodeType){let e=document.createElement("span");e.appendChild(i),i=e}i.contentEditable="false",i.classList.add("ProseMirror-widget")}super(e,[],i,null),this.widget=t,this.widget=t,o=this}matchesWidget(e){return 0==this.dirty&&e.type.eq(this.widget.type)}parseRule(){return{ignore:!0}}stopEvent(e){let t=this.widget.spec.stopEvent;return!!t&&t(e)}ignoreMutation(e){return"selection"!=e.type||this.widget.spec.ignoreSelection}destroy(){this.widget.type.destroy(this.dom),super.destroy()}get domAtom(){return!0}get ignoreForSelection(){return!!this.widget.type.spec.relaxedSide}get side(){return this.widget.type.side}}class vu extends dn{constructor(e,t,n,r){super(e,[],t,null),this.textDOM=n,this.text=r}get size(){return this.text.length}localPosFromDOM(e,t){return e!=this.textDOM?this.posAtStart+(t?this.size:0):this.posAtStart+t}domFromPos(e){return{node:this.textDOM,offset:e}}ignoreMutation(e){return"characterData"===e.type&&e.target.nodeValue==e.oldValue}}class ft extends dn{constructor(e,t,n,r,o){super(e,[],n,r),this.mark=t,this.spec=o}static create(e,t,n,r){let o=r.nodeViews[t.type.name],i=o&&o(t,r,n);return(!i||!i.dom)&&(i=ht.renderSpec(document,t.type.spec.toDOM(t,n),null,t.attrs)),new ft(e,t,i.dom,i.contentDOM||i.dom,i)}parseRule(){return 3&this.dirty||this.mark.type.spec.reparseInView?null:{mark:this.mark.type.name,attrs:this.mark.attrs,contentElement:this.contentDOM}}matchesMark(e){return 3!=this.dirty&&this.mark.eq(e)}markDirty(e,t){if(super.markDirty(e,t),0!=this.dirty){let e=this.parent;for(;!e.node;)e=e.parent;e.dirty<this.dirty&&(e.dirty=this.dirty),this.dirty=0}}slice(e,t,n){let r=ft.create(this.parent,this.mark,!0,n),o=this.children,i=this.size;t<i&&(o=yi(o,t,i,n)),e>0&&(o=yi(o,0,e,n));for(let e=0;e<o.length;e++)o[e].parent=r;return r.children=o,r}ignoreMutation(e){return this.spec.ignoreMutation?this.spec.ignoreMutation(e):super.ignoreMutation(e)}destroy(){this.spec.destroy&&this.spec.destroy(),super.destroy()}}class Ue extends dn{constructor(e,t,n,r,o,i,s,a,l){super(e,[],o,i),this.node=t,this.outerDeco=n,this.innerDeco=r,this.nodeDOM=s}static create(e,t,n,r,o,i){let s,a=o.nodeViews[t.type.name],l=a&&a(t,o,()=>s?s.parent?s.parent.posBeforeChild(s):void 0:i,n,r),c=l&&l.dom,d=l&&l.contentDOM;if(t.isText)if(c){if(3!=c.nodeType)throw new RangeError("Text must be rendered as a DOM text node")}else c=document.createTextNode(t.text);else c||({dom:c,contentDOM:d}=ht.renderSpec(document,t.type.spec.toDOM(t),null,t.attrs));!d&&!t.isText&&"BR"!=c.nodeName&&(c.hasAttribute("contenteditable")||(c.contentEditable="false"),t.type.spec.draggable&&(c.draggable=!0));let h=c;return c=Rl(c,n,t),l?s=new Ou(e,t,n,r,c,d||null,h,l,o,i+1):t.isText?new Tr(e,t,n,r,c,h,o):new Ue(e,t,n,r,c,d||null,h,o,i+1)}parseRule(){if(this.node.type.spec.reparseInView)return null;let e={node:this.node.type.name,attrs:this.node.attrs};if("pre"==this.node.type.whitespace&&(e.preserveWhitespace="full"),this.contentDOM)if(this.contentLost){for(let t=this.children.length-1;t>=0;t--){let n=this.children[t];if(this.dom.contains(n.dom.parentNode)){e.contentElement=n.dom.parentNode;break}}e.contentElement||(e.getContent=()=>b.empty)}else e.contentElement=this.contentDOM;else e.getContent=()=>this.node.content;return e}matchesNode(e,t,n){return 0==this.dirty&&e.eq(this.node)&&zn(t,this.outerDeco)&&n.eq(this.innerDeco)}get size(){return this.node.nodeSize}get border(){return this.node.isLeaf?0:1}updateChildren(e,t){let n=this.node.inlineContent,r=t,o=e.composing?this.localCompositionInfo(e,t):null,i=o&&o.pos>-1?o:null,s=o&&o.pos<0,a=new Nu(this,i&&i.node,e);Ru(this.node,this.innerDeco,(t,o,i)=>{t.spec.marks?a.syncToMarks(t.spec.marks,n,e):t.type.side>=0&&!i&&a.syncToMarks(o==this.node.childCount?P.none:this.node.child(o).marks,n,e),a.placeWidget(t,e,r)},(t,i,l,c)=>{let d;a.syncToMarks(t.marks,n,e),a.findNodeMatch(t,i,l,c)||s&&e.state.selection.from>r&&e.state.selection.to<r+t.nodeSize&&(d=a.findIndexWithChild(o.node))>-1&&a.updateNodeAt(t,i,l,d,e)||a.updateNextNode(t,i,l,e,c,r)||a.addNode(t,i,l,e,r),r+=t.nodeSize}),a.syncToMarks([],n,e),this.node.isTextblock&&a.addTextblockHacks(),a.destroyRest(),(a.changed||2==this.dirty)&&(i&&this.protectLocalComposition(e,i),Dl(this.contentDOM,this.children,e),vt&&Pu(this.dom))}localCompositionInfo(e,t){let{from:n,to:r}=e.state.selection;if(!(e.state.selection instanceof v)||n<t||r>t+this.node.content.size)return null;let o=e.input.compositionNode;if(!o||!this.dom.contains(o.parentNode))return null;if(this.node.inlineContent){let e=o.nodeValue,i=Lu(this.node.content,e,n-t,r-t);return i<0?null:{node:o,pos:i,text:e}}return{node:o,pos:-1,text:""}}protectLocalComposition(e,{node:t,pos:n,text:r}){if(this.getDesc(t))return;let o=t;for(;o.parentNode!=this.contentDOM;o=o.parentNode){for(;o.previousSibling;)o.parentNode.removeChild(o.previousSibling);for(;o.nextSibling;)o.parentNode.removeChild(o.nextSibling);o.pmViewDesc&&(o.pmViewDesc=void 0)}let i=new vu(this,o,t,r);e.input.compositionNodes.push(i),this.children=yi(this.children,n,n+r.length,e,i)}update(e,t,n,r){return!(3==this.dirty||!e.sameMarkup(this.node))&&(this.updateInner(e,t,n,r),!0)}updateInner(e,t,n,r){this.updateOuterDeco(t),this.node=e,this.innerDeco=n,this.contentDOM&&this.updateChildren(r,this.posAtStart),this.dirty=0}updateOuterDeco(e){if(zn(e,this.outerDeco))return;let t=1!=this.nodeDOM.nodeType,n=this.dom;this.dom=Il(this.dom,this.nodeDOM,gi(this.outerDeco,this.node,t),gi(e,this.node,t)),this.dom!=n&&(n.pmViewDesc=void 0,this.dom.pmViewDesc=this),this.outerDeco=e}selectNode(){1==this.nodeDOM.nodeType&&(this.nodeDOM.classList.add("ProseMirror-selectednode"),(this.contentDOM||!this.node.type.spec.draggable)&&(this.nodeDOM.draggable=!0))}deselectNode(){1==this.nodeDOM.nodeType&&(this.nodeDOM.classList.remove("ProseMirror-selectednode"),(this.contentDOM||!this.node.type.spec.draggable)&&this.nodeDOM.removeAttribute("draggable"))}get domAtom(){return this.node.isAtom}}function Js(e,t,n,r,o){Rl(r,t,e);let i=new Ue(void 0,e,t,n,r,r,r,o,0);return i.contentDOM&&i.updateChildren(o,0),i}class Tr extends Ue{constructor(e,t,n,r,o,i,s){super(e,t,n,r,o,null,i,s,0)}parseRule(){let e=this.nodeDOM.parentNode;for(;e&&e!=this.dom&&!e.pmIsDeco;)e=e.parentNode;return{skip:e||!0}}update(e,t,n,r){return!(3==this.dirty||0!=this.dirty&&!this.inParent()||!e.sameMarkup(this.node))&&(this.updateOuterDeco(t),(0!=this.dirty||e.text!=this.node.text)&&e.text!=this.nodeDOM.nodeValue&&(this.nodeDOM.nodeValue=e.text,r.trackWrites==this.nodeDOM&&(r.trackWrites=null)),this.node=e,this.dirty=0,!0)}inParent(){let e=this.parent.contentDOM;for(let t=this.nodeDOM;t;t=t.parentNode)if(t==e)return!0;return!1}domFromPos(e){return{node:this.nodeDOM,offset:e}}localPosFromDOM(e,t,n){return e==this.nodeDOM?this.posAtStart+Math.min(t,this.node.text.length):super.localPosFromDOM(e,t,n)}ignoreMutation(e){return"characterData"!=e.type&&"selection"!=e.type}slice(e,t,n){let r=this.node.cut(e,t),o=document.createTextNode(r.text);return new Tr(this.parent,r,this.outerDeco,this.innerDeco,o,o,n)}markDirty(e,t){super.markDirty(e,t),this.dom!=this.nodeDOM&&(0==e||t==this.nodeDOM.nodeValue.length)&&(this.dirty=3)}get domAtom(){return!1}isText(e){return this.node.text==e}}class Nl extends dn{parseRule(){return{ignore:!0}}matchesHack(e){return 0==this.dirty&&this.dom.nodeName==e}get domAtom(){return!0}get ignoreForCoords(){return"IMG"==this.dom.nodeName}}class Ou extends Ue{constructor(e,t,n,r,o,i,s,a,l,c){super(e,t,n,r,o,i,s,l,c),this.spec=a}update(e,t,n,r){if(3==this.dirty)return!1;if(this.spec.update&&(this.node.type==e.type||this.spec.multiType)){let o=this.spec.update(e,t,n);return o&&this.updateInner(e,t,n,r),o}return!(!this.contentDOM&&!e.isLeaf)&&super.update(e,t,n,r)}selectNode(){this.spec.selectNode?this.spec.selectNode():super.selectNode()}deselectNode(){this.spec.deselectNode?this.spec.deselectNode():super.deselectNode()}setSelection(e,t,n,r){this.spec.setSelection?this.spec.setSelection(e,t,n.root):super.setSelection(e,t,n,r)}destroy(){this.spec.destroy&&this.spec.destroy(),super.destroy()}stopEvent(e){return!!this.spec.stopEvent&&this.spec.stopEvent(e)}ignoreMutation(e){return this.spec.ignoreMutation?this.spec.ignoreMutation(e):super.ignoreMutation(e)}}function Dl(e,t,n){let r=e.firstChild,o=!1;for(let i=0;i<t.length;i++){let s=t[i],a=s.dom;if(a.parentNode==e){for(;a!=r;)r=qs(r),o=!0;r=r.nextSibling}else o=!0,e.insertBefore(a,r);if(s instanceof ft){let t=r?r.previousSibling:e.lastChild;Dl(s.contentDOM,s.children,n),r=t?t.nextSibling:e.firstChild}}for(;r;)r=qs(r),o=!0;o&&n.trackWrites==e&&(n.trackWrites=null)}const jt=function(e){e&&(this.nodeName=e)};jt.prototype=Object.create(null);const tt=[new jt];function gi(e,t,n){if(0==e.length)return tt;let r=n?tt[0]:new jt,o=[r];for(let i=0;i<e.length;i++){let s=e[i].type.attrs;if(s){s.nodeName&&o.push(r=new jt(s.nodeName));for(let e in s){let i=s[e];null!=i&&(n&&1==o.length&&o.push(r=new jt(t.isInline?"span":"div")),"class"==e?r.class=(r.class?r.class+" ":"")+i:"style"==e?r.style=(r.style?r.style+";":"")+i:"nodeName"!=e&&(r[e]=i))}}}return o}function Il(e,t,n,r){if(n==tt&&r==tt)return t;let o=t;for(let t=0;t<r.length;t++){let i=r[t],s=n[t];if(t){let t;s&&s.nodeName==i.nodeName&&o!=e&&(t=o.parentNode)&&t.nodeName.toLowerCase()==i.nodeName||(t=document.createElement(i.nodeName),t.pmIsDeco=!0,t.appendChild(o),s=tt[0]),o=t}Au(o,s||tt[0],i)}return o}function Au(e,t,n){for(let r in t)"class"!=r&&"style"!=r&&"nodeName"!=r&&!(r in n)&&e.removeAttribute(r);for(let r in n)"class"!=r&&"style"!=r&&"nodeName"!=r&&n[r]!=t[r]&&e.setAttribute(r,n[r]);if(t.class!=n.class){let r=t.class?t.class.split(" ").filter(Boolean):[],o=n.class?n.class.split(" ").filter(Boolean):[];for(let t=0;t<r.length;t++)-1==o.indexOf(r[t])&&e.classList.remove(r[t]);for(let t=0;t<o.length;t++)-1==r.indexOf(o[t])&&e.classList.add(o[t]);0==e.classList.length&&e.removeAttribute("class")}if(t.style!=n.style){if(t.style){let n,r=/\s*([\w\-\xa1-\uffff]+)\s*:(?:"(?:\\.|[^"])*"|'(?:\\.|[^'])*'|\(.*?\)|[^;])*/g;for(;n=r.exec(t.style);)e.style.removeProperty(n[1])}n.style&&(e.style.cssText+=n.style)}}function Rl(e,t,n){return Il(e,e,tt,gi(t,n,1!=e.nodeType))}function zn(e,t){if(e.length!=t.length)return!1;for(let n=0;n<e.length;n++)if(!e[n].type.eq(t[n].type))return!1;return!0}function qs(e){let t=e.nextSibling;return e.parentNode.removeChild(e),t}class Nu{constructor(e,t,n){this.lock=t,this.view=n,this.index=0,this.stack=[],this.changed=!1,this.top=e,this.preMatch=Du(e.node.content,e)}destroyBetween(e,t){if(e!=t){for(let n=e;n<t;n++)this.top.children[n].destroy();this.top.children.splice(e,t-e),this.changed=!0}}destroyRest(){this.destroyBetween(this.index,this.top.children.length)}syncToMarks(e,t,n){let r=0,o=this.stack.length>>1,i=Math.min(o,e.length);for(;r<i&&(r==o-1?this.top:this.stack[r+1<<1]).matchesMark(e[r])&&!1!==e[r].type.spec.spanning;)r++;for(;r<o;)this.destroyRest(),this.top.dirty=0,this.index=this.stack.pop(),this.top=this.stack.pop(),o--;for(;o<e.length;){this.stack.push(this.top,this.index+1);let r=-1;for(let t=this.index;t<Math.min(this.index+3,this.top.children.length);t++){let n=this.top.children[t];if(n.matchesMark(e[o])&&!this.isLocked(n.dom)){r=t;break}}if(r>-1)r>this.index&&(this.changed=!0,this.destroyBetween(this.index,r)),this.top=this.top.children[this.index];else{let r=ft.create(this.top,e[o],t,n);this.top.children.splice(this.index,0,r),this.top=r,this.changed=!0}this.index=0,o++}}findNodeMatch(e,t,n,r){let o,i=-1;if(r>=this.preMatch.index&&(o=this.preMatch.matches[r-this.preMatch.index]).parent==this.top&&o.matchesNode(e,t,n))i=this.top.children.indexOf(o,this.index);else for(let r=this.index,o=Math.min(this.top.children.length,r+5);r<o;r++){let o=this.top.children[r];if(o.matchesNode(e,t,n)&&!this.preMatch.matched.has(o)){i=r;break}}return!(i<0)&&(this.destroyBetween(this.index,i),this.index++,!0)}updateNodeAt(e,t,n,r,o){let i=this.top.children[r];return 3==i.dirty&&i.dom==i.contentDOM&&(i.dirty=2),!!i.update(e,t,n,o)&&(this.destroyBetween(this.index,r),this.index++,!0)}findIndexWithChild(e){for(;;){let t=e.parentNode;if(!t)return-1;if(t==this.top.contentDOM){let t=e.pmViewDesc;if(t)for(let e=this.index;e<this.top.children.length;e++)if(this.top.children[e]==t)return e;return-1}e=t}}updateNextNode(e,t,n,r,o,i){for(let s=this.index;s<this.top.children.length;s++){let a=this.top.children[s];if(a instanceof Ue){let l=this.preMatch.matched.get(a);if(null!=l&&l!=o)return!1;let c,d=a.dom,h=this.isLocked(d)&&!(e.isText&&a.node&&a.node.isText&&a.nodeDOM.nodeValue==e.text&&3!=a.dirty&&zn(t,a.outerDeco));if(!h&&a.update(e,t,n,r))return this.destroyBetween(this.index,s),a.dom!=d&&(this.changed=!0),this.index++,!0;if(!h&&(c=this.recreateWrapper(a,e,t,n,r,i)))return this.destroyBetween(this.index,s),this.top.children[this.index]=c,c.contentDOM&&(c.dirty=2,c.updateChildren(r,i+1),c.dirty=0),this.changed=!0,this.index++,!0;break}}return!1}recreateWrapper(e,t,n,r,o,i){if(e.dirty||t.isAtom||!e.children.length||!e.node.content.eq(t.content)||!zn(n,e.outerDeco)||!r.eq(e.innerDeco))return null;let s=Ue.create(this.top,t,n,r,o,i);if(s.contentDOM){s.children=e.children,e.children=[];for(let e of s.children)e.parent=s}return e.destroy(),s}addNode(e,t,n,r,o){let i=Ue.create(this.top,e,t,n,r,o);i.contentDOM&&i.updateChildren(r,o+1),this.top.children.splice(this.index++,0,i),this.changed=!0}placeWidget(e,t,n){let r=this.index<this.top.children.length?this.top.children[this.index]:null;if(!r||!r.matchesWidget(e)||e!=r.widget&&r.widget.type.toDOM.parentNode){let r=new Al(this.top,e,t,n);this.top.children.splice(this.index++,0,r),this.changed=!0}else this.index++}addTextblockHacks(){let e=this.top.children[this.index-1],t=this.top;for(;e instanceof ft;)t=e,e=t.children[t.children.length-1];(!e||!(e instanceof Tr)||/\n$/.test(e.node.text)||this.view.requiresGeckoHackNode&&/\s$/.test(e.node.text))&&((ne||Z)&&e&&"false"==e.dom.contentEditable&&this.addHackNode("IMG",t),this.addHackNode("BR",this.top))}addHackNode(e,t){if(t==this.top&&this.index<t.children.length&&t.children[this.index].matchesHack(e))this.index++;else{let n=document.createElement(e);"IMG"==e&&(n.className="ProseMirror-separator",n.alt=""),"BR"==e&&(n.className="ProseMirror-trailingBreak");let r=new Nl(this.top,[],n,null);t!=this.top?t.children.push(r):t.children.splice(this.index++,0,r),this.changed=!0}}isLocked(e){return this.lock&&(e==this.lock||1==e.nodeType&&e.contains(this.lock.parentNode))}}function Du(e,t){let n=t,r=n.children.length,o=e.childCount,i=new Map,s=[];e:for(;o>0;){let a;for(;;)if(r){let e=n.children[r-1];if(!(e instanceof ft)){a=e,r--;break}n=e,r=e.children.length}else{if(n==t)break e;r=n.parent.children.indexOf(n),n=n.parent}let l=a.node;if(l){if(l!=e.child(o-1))break;--o,i.set(a,o),s.push(a)}}return{index:o,matched:i,matches:s.reverse()}}function Iu(e,t){return e.type.side-t.type.side}function Ru(e,t,n,r){let o=t.locals(e),i=0;if(0==o.length){for(let n=0;n<e.childCount;n++){let s=e.child(n);r(s,o,t.forChild(i,s),n),i+=s.nodeSize}return}let s=0,a=[],l=null;for(let c=0;;){let d,h,p,u;for(;s<o.length&&o[s].to==i;){let e=o[s++];e.widget&&(d?(h||(h=[d])).push(e):d=e)}if(d)if(h){h.sort(Iu);for(let e=0;e<h.length;e++)n(h[e],c,!!l)}else n(d,c,!!l);if(l)u=-1,p=l,l=null;else{if(!(c<e.childCount))break;u=c,p=e.child(c++)}for(let e=0;e<a.length;e++)a[e].to<=i&&a.splice(e--,1);for(;s<o.length&&o[s].from<=i&&o[s].to>i;)a.push(o[s++]);let f=i+p.nodeSize;if(p.isText){let e=f;s<o.length&&o[s].from<e&&(e=o[s].from);for(let t=0;t<a.length;t++)a[t].to<e&&(e=a[t].to);e<f&&(l=p.cut(e-i),p=p.cut(0,e-i),f=e,u=-1)}else for(;s<o.length&&o[s].to<f;)s++;r(p,p.isInline&&!p.isLeaf?a.filter(e=>!e.inline):a.slice(),t.forChild(i,p),u),i=f}}function Pu(e){if("UL"==e.nodeName||"OL"==e.nodeName){let t=e.style.cssText;e.style.cssText=t+"; list-style: square !important",window.getComputedStyle(e).listStyle,e.style.cssText=t}}function Lu(e,t,n,r){for(let o=0,i=0;o<e.childCount&&i<=r;){let s=e.child(o++),a=i;if(i+=s.nodeSize,!s.isText)continue;let l=s.text;for(;o<e.childCount;){let t=e.child(o++);if(i+=t.nodeSize,!t.isText)break;l+=t.text}if(i>=n){if(i>=r&&l.slice(r-t.length-a,r-a)==t)return r-t.length;let e=a<r?l.lastIndexOf(t,r-a-1):-1;if(e>=0&&e+t.length+a>=n)return a+e;if(n==r&&l.length>=r+t.length-a&&l.slice(r-a,r-a+t.length)==t)return r}}return-1}function yi(e,t,n,r,o){let i=[];for(let s=0,a=0;s<e.length;s++){let l=e[s],c=a,d=a+=l.size;c>=n||d<=t?i.push(l):(c<t&&i.push(l.slice(0,t-c,r)),o&&(i.push(o),o=void 0),d>n&&i.push(l.slice(n-c,l.size,r)))}return i}function Vi(e,t=null){let n=e.domSelectionRange(),r=e.state.doc;if(!n.focusNode)return null;let o=e.docView.nearestDesc(n.focusNode),i=o&&0==o.size,s=e.docView.posFromDOM(n.focusNode,n.focusOffset,1);if(s<0)return null;let a,l,c=r.resolve(s);if(wr(n)){for(a=s;o&&!o.node;)o=o.parent;let e=o.node;if(o&&e.isAtom&&T.isSelectable(e)&&o.parent&&(!e.isInline||!lu(n.focusNode,n.focusOffset,o.dom))){let e=o.posBefore;l=new T(s==e?c:r.resolve(e))}}else{if(n instanceof e.dom.ownerDocument.defaultView.Selection&&n.rangeCount>1){let t=s,o=s;for(let r=0;r<n.rangeCount;r++){let i=n.getRangeAt(r);t=Math.min(t,e.docView.posFromDOM(i.startContainer,i.startOffset,1)),o=Math.max(o,e.docView.posFromDOM(i.endContainer,i.endOffset,-1))}if(t<0)return null;[a,s]=o==e.state.selection.anchor?[o,t]:[t,o],c=r.resolve(s)}else a=e.docView.posFromDOM(n.anchorNode,n.anchorOffset,1);if(a<0)return null}let d=r.resolve(a);if(!l){l=Hi(e,d,c,"pointer"==t||e.state.selection.head<c.pos&&!i?1:-1)}return l}function Pl(e){return e.editable?e.hasFocus():Bl(e)&&document.activeElement&&document.activeElement.contains(e.dom)}function De(e,t=!1){let n=e.state.selection;if(Ll(e,n),Pl(e)){if(!t&&e.input.mouseDown&&e.input.mouseDown.allowDefault&&Z){let t=e.domSelectionRange(),n=e.domObserver.currentSelection;if(t.anchorNode&&n.anchorNode&&dt(t.anchorNode,t.anchorOffset,n.anchorNode,n.anchorOffset))return e.input.mouseDown.delayedSelectionSync=!0,void e.domObserver.setCurSelection()}if(e.domObserver.disconnectSelection(),e.cursorWrapper)zu(e);else{let r,o,{anchor:i,head:s}=n;Gs&&!(n instanceof v)&&(n.$from.parent.inlineContent||(r=Ys(e,n.from)),!n.empty&&!n.$from.parent.inlineContent&&(o=Ys(e,n.to))),e.docView.setSelection(i,s,e,t),Gs&&(r&&Xs(r),o&&Xs(o)),n.visible?e.dom.classList.remove("ProseMirror-hideselection"):(e.dom.classList.add("ProseMirror-hideselection"),"onselectionchange"in document&&Bu(e))}e.domObserver.setCurSelection(),e.domObserver.connectSelection()}}const Gs=ne||Z&&Cl<63;function Ys(e,t){let{node:n,offset:r}=e.docView.domFromPos(t,0),o=r<n.childNodes.length?n.childNodes[r]:null,i=r?n.childNodes[r-1]:null;if(ne&&o&&"false"==o.contentEditable)return Kr(o);if(!(o&&"false"!=o.contentEditable||i&&"false"!=i.contentEditable)){if(o)return Kr(o);if(i)return Kr(i)}}function Kr(e){return e.contentEditable="true",ne&&e.draggable&&(e.draggable=!1,e.wasDraggable=!0),e}function Xs(e){e.contentEditable="false",e.wasDraggable&&(e.draggable=!0,e.wasDraggable=null)}function Bu(e){let t=e.dom.ownerDocument;t.removeEventListener("selectionchange",e.input.hideSelectionGuard);let n=e.domSelectionRange(),r=n.anchorNode,o=n.anchorOffset;t.addEventListener("selectionchange",e.input.hideSelectionGuard=()=>{(n.anchorNode!=r||n.anchorOffset!=o)&&(t.removeEventListener("selectionchange",e.input.hideSelectionGuard),setTimeout(()=>{(!Pl(e)||e.state.selection.visible)&&e.dom.classList.remove("ProseMirror-hideselection")},20))})}function zu(e){let t=e.domSelection();if(!t)return;let n=e.cursorWrapper.dom,r="IMG"==n.nodeName;r?t.collapse(n.parentNode,Y(n)+1):t.collapse(n,0),!r&&!e.state.selection.visible&&oe&&_e<=11&&(n.disabled=!0,n.disabled=!1)}function Ll(e,t){if(t instanceof T){let n=e.docView.descAt(t.from);n!=e.lastSelectedViewDesc&&(Qs(e),n&&n.selectNode(),e.lastSelectedViewDesc=n)}else Qs(e)}function Qs(e){e.lastSelectedViewDesc&&(e.lastSelectedViewDesc.parent&&e.lastSelectedViewDesc.deselectNode(),e.lastSelectedViewDesc=void 0)}function Hi(e,t,n,r){return e.someProp("createSelectionBetween",r=>r(e,t,n))||v.between(t,n,r)}function Zs(e){return!(e.editable&&!e.hasFocus())&&Bl(e)}function Bl(e){let t=e.domSelectionRange();if(!t.anchorNode)return!1;try{return e.dom.contains(3==t.anchorNode.nodeType?t.anchorNode.parentNode:t.anchorNode)&&(e.editable||e.dom.contains(3==t.focusNode.nodeType?t.focusNode.parentNode:t.focusNode))}catch{return!1}}function Fu(e){let t=e.docView.domFromPos(e.state.selection.anchor,0),n=e.domSelectionRange();return dt(t.node,t.offset,n.anchorNode,n.anchorOffset)}function bi(e,t){let{$anchor:n,$head:r}=e.selection,o=t>0?n.max(r):n.min(r),i=o.parent.inlineContent?o.depth?e.doc.resolve(t>0?o.after():o.before()):null:o;return i&&N.findFrom(i,t)}function Be(e,t){return e.dispatch(e.state.tr.setSelection(t).scrollIntoView()),!0}function eo(e,t,n){let r=e.state.selection;if(!(r instanceof v)){if(r instanceof T&&r.node.isInline)return Be(e,new v(t>0?r.$to:r.$from));{let n=bi(e.state,t);return!!n&&Be(e,n)}}if(n.indexOf("s")>-1){let{$head:n}=r,o=n.textOffset?null:t<0?n.nodeBefore:n.nodeAfter;if(!o||o.isText||!o.isLeaf)return!1;let i=e.state.doc.resolve(n.pos+o.nodeSize*(t<0?-1:1));return Be(e,new v(r.$anchor,i))}if(!r.empty)return!1;if(e.endOfTextblock(t>0?"forward":"backward")){let n=bi(e.state,t);return!!(n&&n instanceof T)&&Be(e,n)}if(!(de&&n.indexOf("m")>-1)){let n,o=r.$head,i=o.textOffset?null:t<0?o.nodeBefore:o.nodeAfter;if(!i||i.isText)return!1;let s=t<0?o.pos-i.nodeSize:o.pos;return!!(i.isAtom||(n=e.docView.descAt(s))&&!n.contentDOM)&&(T.isSelectable(i)?Be(e,new T(t<0?e.state.doc.resolve(o.pos-i.nodeSize):o)):!!un&&Be(e,new v(e.state.doc.resolve(t<0?s:s+i.nodeSize))))}}function Fn(e){return 3==e.nodeType?e.nodeValue.length:e.childNodes.length}function Wt(e,t){let n=e.pmViewDesc;return n&&0==n.size&&(t<0||e.nextSibling||"BR"!=e.nodeName)}function yt(e,t){return t<0?$u(e):Vu(e)}function $u(e){let t=e.domSelectionRange(),n=t.focusNode,r=t.focusOffset;if(!n)return;let o,i,s=!1;for(he&&1==n.nodeType&&r<Fn(n)&&Wt(n.childNodes[r],-1)&&(s=!0);;)if(r>0){if(1!=n.nodeType)break;{let e=n.childNodes[r-1];if(Wt(e,-1))o=n,i=--r;else{if(3!=e.nodeType)break;n=e,r=n.nodeValue.length}}}else{if(zl(n))break;{let t=n.previousSibling;for(;t&&Wt(t,-1);)o=n.parentNode,i=Y(t),t=t.previousSibling;if(t)n=t,r=Fn(n);else{if(n=n.parentNode,n==e.dom)break;r=0}}}s?ki(e,n,r):o&&ki(e,o,i)}function Vu(e){let t=e.domSelectionRange(),n=t.focusNode,r=t.focusOffset;if(!n)return;let o,i,s=Fn(n);for(;;)if(r<s){if(1!=n.nodeType)break;if(!Wt(n.childNodes[r],1))break;o=n,i=++r}else{if(zl(n))break;{let t=n.nextSibling;for(;t&&Wt(t,1);)o=t.parentNode,i=Y(t)+1,t=t.nextSibling;if(t)n=t,r=0,s=Fn(n);else{if(n=n.parentNode,n==e.dom)break;r=s=0}}}o&&ki(e,o,i)}function zl(e){let t=e.pmViewDesc;return t&&t.node&&t.node.isBlock}function Hu(e,t){for(;e&&t==e.childNodes.length&&!cn(e);)t=Y(e)+1,e=e.parentNode;for(;e&&t<e.childNodes.length;){let n=e.childNodes[t];if(3==n.nodeType)return n;if(1==n.nodeType&&"false"==n.contentEditable)break;e=n,t=0}}function ju(e,t){for(;e&&!t&&!cn(e);)t=Y(e),e=e.parentNode;for(;e&&t;){let n=e.childNodes[t-1];if(3==n.nodeType)return n;if(1==n.nodeType&&"false"==n.contentEditable)break;t=(e=n).childNodes.length}}function ki(e,t,n){if(3!=t.nodeType){let e,r;(r=Hu(t,n))?(t=r,n=0):(e=ju(t,n))&&(t=e,n=e.nodeValue.length)}let r=e.domSelection();if(!r)return;if(wr(r)){let e=document.createRange();e.setEnd(t,n),e.setStart(t,n),r.removeAllRanges(),r.addRange(e)}else r.extend&&r.extend(t,n);e.domObserver.setCurSelection();let{state:o}=e;setTimeout(()=>{e.state==o&&De(e)},50)}function to(e,t){let n=e.state.doc.resolve(t);if(!Z&&!uu&&n.parent.inlineContent){let r=e.coordsAtPos(t);if(t>n.start()){let n=e.coordsAtPos(t-1),o=(n.top+n.bottom)/2;if(o>r.top&&o<r.bottom&&Math.abs(n.left-r.left)>1)return n.left<r.left?"ltr":"rtl"}if(t<n.end()){let n=e.coordsAtPos(t+1),o=(n.top+n.bottom)/2;if(o>r.top&&o<r.bottom&&Math.abs(n.left-r.left)>1)return n.left>r.left?"ltr":"rtl"}}return"rtl"==getComputedStyle(e.dom).direction?"rtl":"ltr"}function no(e,t,n){let r=e.state.selection;if(r instanceof v&&!r.empty||n.indexOf("s")>-1||de&&n.indexOf("m")>-1)return!1;let{$from:o,$to:i}=r;if(!o.parent.inlineContent||e.endOfTextblock(t<0?"up":"down")){let n=bi(e.state,t);if(n&&n instanceof T)return Be(e,n)}if(!o.parent.inlineContent){let n=t<0?o:i,s=r instanceof ae?N.near(n,t):N.findFrom(n,t);return!!s&&Be(e,s)}return!1}function ro(e,t){if(!(e.state.selection instanceof v))return!0;let{$head:n,$anchor:r,empty:o}=e.state.selection;if(!n.sameParent(r))return!0;if(!o)return!1;if(e.endOfTextblock(t>0?"forward":"backward"))return!0;let i=!n.textOffset&&(t<0?n.nodeBefore:n.nodeAfter);if(i&&!i.isText){let r=e.state.tr;return t<0?r.delete(n.pos-i.nodeSize,n.pos):r.delete(n.pos,n.pos+i.nodeSize),e.dispatch(r),!0}return!1}function io(e,t,n){e.domObserver.stop(),t.contentEditable=n,e.domObserver.start()}function Wu(e){if(!ne||e.state.selection.$head.parentOffset>0)return!1;let{focusNode:t,focusOffset:n}=e.domSelectionRange();if(t&&1==t.nodeType&&0==n&&t.firstChild&&"false"==t.firstChild.contentEditable){let n=t.firstChild;io(e,n,"true"),setTimeout(()=>io(e,n,"false"),20)}return!1}function Ku(e){let t="";return e.ctrlKey&&(t+="c"),e.metaKey&&(t+="m"),e.altKey&&(t+="a"),e.shiftKey&&(t+="s"),t}function _u(e,t){let n=t.keyCode,r=Ku(t);if(8==n||de&&72==n&&"c"==r)return ro(e,-1)||yt(e,-1);if(46==n&&!t.shiftKey||de&&68==n&&"c"==r)return ro(e,1)||yt(e,1);if(13==n||27==n)return!0;if(37==n||de&&66==n&&"c"==r){let t=37==n?"ltr"==to(e,e.state.selection.from)?-1:1:-1;return eo(e,t,r)||yt(e,t)}if(39==n||de&&70==n&&"c"==r){let t=39==n?"ltr"==to(e,e.state.selection.from)?1:-1:1;return eo(e,t,r)||yt(e,t)}return 38==n||de&&80==n&&"c"==r?no(e,-1,r)||yt(e,-1):40==n||de&&78==n&&"c"==r?Wu(e)||no(e,1,r)||yt(e,1):r==(de?"m":"c")&&(66==n||73==n||89==n||90==n)}function ji(e,t){e.someProp("transformCopied",n=>{t=n(t,e)});let n=[],{content:r,openStart:o,openEnd:i}=t;for(;o>1&&i>1&&1==r.childCount&&1==r.firstChild.childCount;){o--,i--;let e=r.firstChild;n.push(e.type.name,e.attrs!=e.type.defaultAttrs?e.attrs:null),r=e.content}let s=e.someProp("clipboardSerializer")||ht.fromSchema(e.state.schema),a=Wl(),l=a.createElement("div");l.appendChild(s.serializeFragment(r,{document:a}));let c,d=l.firstChild,h=0;for(;d&&1==d.nodeType&&(c=jl[d.nodeName.toLowerCase()]);){for(let e=c.length-1;e>=0;e--){let t=a.createElement(c[e]);for(;l.firstChild;)t.appendChild(l.firstChild);l.appendChild(t),h++}d=l.firstChild}return d&&1==d.nodeType&&d.setAttribute("data-pm-slice",`${o} ${i}${h?` -${h}`:""} ${JSON.stringify(n)}`),{dom:l,text:e.someProp("clipboardTextSerializer",n=>n(t,e))||t.content.textBetween(0,t.content.size,"\n\n"),slice:t}}function Fl(e,t,n,r,o){let i,s,a=o.parent.type.spec.code;if(!n&&!t)return null;let l=!!t&&(r||a||!n);if(l){if(e.someProp("transformPastedText",n=>{t=n(t,a||r,e)}),a)return s=new S(b.from(e.state.schema.text(t.replace(/\r\n?/g,"\n"))),0,0),e.someProp("transformPasted",t=>{s=t(s,e,!0)}),s;let n=e.someProp("clipboardTextParser",n=>n(t,o,r,e));if(n)s=n;else{let n=o.marks(),{schema:r}=e.state,s=ht.fromSchema(r);i=document.createElement("div"),t.split(/(?:\r\n?|\n)+/).forEach(e=>{let t=i.appendChild(document.createElement("p"));e&&t.appendChild(s.serializeNode(r.text(e,n)))})}}else e.someProp("transformPastedHTML",t=>{n=t(n,e)}),i=Gu(n),un&&Yu(i);let c=i&&i.querySelector("[data-pm-slice]"),d=c&&/^(\d+) (\d+)(?: -(\d+))? (.*)/.exec(c.getAttribute("data-pm-slice")||"");if(d&&d[3])for(let e=+d[3];e>0;e--){let e=i.firstChild;for(;e&&1!=e.nodeType;)e=e.nextSibling;if(!e)break;i=e}if(s||(s=(e.someProp("clipboardParser")||e.someProp("domParser")||Ke.fromSchema(e.state.schema)).parseSlice(i,{preserveWhitespace:!(!l&&!d),context:o,ruleFromNode:e=>"BR"!=e.nodeName||e.nextSibling||!e.parentNode||Uu.test(e.parentNode.nodeName)?null:{ignore:!0}})),d)s=Xu(so(s,+d[1],+d[2]),d[4]);else if(s=S.maxOpen(Ju(s.content,o),!0),s.openStart||s.openEnd){let e=0,t=0;for(let t=s.content.firstChild;e<s.openStart&&!t.type.spec.isolating;e++,t=t.firstChild);for(let e=s.content.lastChild;t<s.openEnd&&!e.type.spec.isolating;t++,e=e.lastChild);s=so(s,e,t)}return e.someProp("transformPasted",t=>{s=t(s,e,l)}),s}const Uu=/^(a|abbr|acronym|b|cite|code|del|em|i|ins|kbd|label|output|q|ruby|s|samp|span|strong|sub|sup|time|u|tt|var)$/i;function Ju(e,t){if(e.childCount<2)return e;for(let n=t.depth;n>=0;n--){let r,o=t.node(n).contentMatchAt(t.index(n)),i=[];if(e.forEach(e=>{if(!i)return;let t,n=o.findWrapping(e.type);if(!n)return i=null;if(t=i.length&&r.length&&Vl(n,r,e,i[i.length-1],0))i[i.length-1]=t;else{i.length&&(i[i.length-1]=Hl(i[i.length-1],r.length));let t=$l(e,n);i.push(t),o=o.matchType(t.type),r=n}}),i)return b.from(i)}return e}function $l(e,t,n=0){for(let r=t.length-1;r>=n;r--)e=t[r].create(null,b.from(e));return e}function Vl(e,t,n,r,o){if(o<e.length&&o<t.length&&e[o]==t[o]){let i=Vl(e,t,n,r.lastChild,o+1);if(i)return r.copy(r.content.replaceChild(r.childCount-1,i));if(r.contentMatchAt(r.childCount).matchType(o==e.length-1?n.type:e[o+1]))return r.copy(r.content.append(b.from($l(n,e,o+1))))}}function Hl(e,t){if(0==t)return e;let n=e.content.replaceChild(e.childCount-1,Hl(e.lastChild,t-1)),r=e.contentMatchAt(e.childCount).fillBefore(b.empty,!0);return e.copy(n.append(r))}function xi(e,t,n,r,o,i){let s=t<0?e.firstChild:e.lastChild,a=s.content;return e.childCount>1&&(i=0),o<r-1&&(a=xi(a,t,n,r,o+1,i)),o>=n&&(a=t<0?s.contentMatchAt(0).fillBefore(a,i<=o).append(a):a.append(s.contentMatchAt(s.childCount).fillBefore(b.empty,!0))),e.replaceChild(t<0?0:e.childCount-1,s.copy(a))}function so(e,t,n){return t<e.openStart&&(e=new S(xi(e.content,-1,t,e.openStart,0,e.openEnd),t,e.openEnd)),n<e.openEnd&&(e=new S(xi(e.content,1,n,e.openEnd,0,0),e.openStart,n)),e}const jl={thead:["table"],tbody:["table"],tfoot:["table"],caption:["table"],colgroup:["table"],col:["table","colgroup"],tr:["table","tbody"],td:["table","tbody","tr"],th:["table","tbody","tr"]};let oo=null;function Wl(){return oo||(oo=document.implementation.createHTMLDocument("title"))}let _r=null;function qu(e){let t=window.trustedTypes;return t?(_r||(_r=t.defaultPolicy||t.createPolicy("ProseMirrorClipboard",{createHTML:e=>e})),_r.createHTML(e)):e}function Gu(e){let t=/^(\s*<meta [^>]*>)*/.exec(e);t&&(e=e.slice(t[0].length));let n,r=Wl().createElement("div"),o=/<([a-z][^>\s]+)/i.exec(e);if((n=o&&jl[o[1].toLowerCase()])&&(e=n.map(e=>"<"+e+">").join("")+e+n.map(e=>"</"+e+">").reverse().join("")),r.innerHTML=qu(e),n)for(let e=0;e<n.length;e++)r=r.querySelector(n[e])||r;return r}function Yu(e){let t=e.querySelectorAll(Z?"span:not([class]):not([style])":"span.Apple-converted-space");for(let n=0;n<t.length;n++){let r=t[n];1==r.childNodes.length&&" "==r.textContent&&r.parentNode&&r.parentNode.replaceChild(e.ownerDocument.createTextNode(" "),r)}}function Xu(e,t){if(!e.size)return e;let n,r=e.content.firstChild.type.schema;try{n=JSON.parse(t)}catch{return e}let{content:o,openStart:i,openEnd:s}=e;for(let e=n.length-2;e>=0;e-=2){let t=r.nodes[n[e]];if(!t||t.hasRequiredAttrs())break;o=b.from(t.create(n[e+1],o)),i++,s++}return new S(o,i,s)}const re={},ie={},Qu={touchstart:!0,touchmove:!0};class Zu{constructor(){this.shiftKey=!1,this.mouseDown=null,this.lastKeyCode=null,this.lastKeyCodeTime=0,this.lastClick={time:0,x:0,y:0,type:"",button:0},this.lastSelectionOrigin=null,this.lastSelectionTime=0,this.lastIOSEnter=0,this.lastIOSEnterFallbackTimeout=-1,this.lastFocus=0,this.lastTouch=0,this.lastChromeDelete=0,this.composing=!1,this.compositionNode=null,this.composingTimeout=-1,this.compositionNodes=[],this.compositionEndedAt=-2e8,this.compositionID=1,this.compositionPendingChanges=0,this.domChangeCount=0,this.eventHandlers=Object.create(null),this.hideSelectionGuard=null}}function ed(e){for(let t in re){let n=re[t];e.dom.addEventListener(t,e.input.eventHandlers[t]=t=>{nd(e,t)&&!Wi(e,t)&&(e.editable||!(t.type in ie))&&n(e,t)},Qu[t]?{passive:!0}:void 0)}ne&&e.dom.addEventListener("input",()=>null),Si(e)}function We(e,t){e.input.lastSelectionOrigin=t,e.input.lastSelectionTime=Date.now()}function td(e){e.domObserver.stop();for(let t in e.input.eventHandlers)e.dom.removeEventListener(t,e.input.eventHandlers[t]);clearTimeout(e.input.composingTimeout),clearTimeout(e.input.lastIOSEnterFallbackTimeout)}function Si(e){e.someProp("handleDOMEvents",t=>{for(let n in t)e.input.eventHandlers[n]||e.dom.addEventListener(n,e.input.eventHandlers[n]=t=>Wi(e,t))})}function Wi(e,t){return e.someProp("handleDOMEvents",n=>{let r=n[t.type];return!!r&&(r(e,t)||t.defaultPrevented)})}function nd(e,t){if(!t.bubbles)return!0;if(t.defaultPrevented)return!1;for(let n=t.target;n!=e.dom;n=n.parentNode)if(!n||11==n.nodeType||n.pmViewDesc&&n.pmViewDesc.stopEvent(t))return!1;return!0}function rd(e,t){!Wi(e,t)&&re[t.type]&&(e.editable||!(t.type in ie))&&re[t.type](e,t)}function Er(e){return{left:e.clientX,top:e.clientY}}function id(e,t){let n=t.x-e.clientX,r=t.y-e.clientY;return n*n+r*r<100}function Ki(e,t,n,r,o){if(-1==r)return!1;let i=e.state.doc.resolve(r);for(let r=i.depth+1;r>0;r--)if(e.someProp(t,t=>r>i.depth?t(e,n,i.nodeAfter,i.before(r),o,!0):t(e,n,i.node(r),i.before(r),o,!1)))return!0;return!1}function wt(e,t,n){if(e.focused||e.focus(),e.state.selection.eq(t))return;let r=e.state.tr.setSelection(t);r.setMeta("pointer",!0),e.dispatch(r)}function sd(e,t){if(-1==t)return!1;let n=e.state.doc.resolve(t),r=n.nodeAfter;return!!(r&&r.isAtom&&T.isSelectable(r))&&(wt(e,new T(n)),!0)}function od(e,t){if(-1==t)return!1;let n,r,o=e.state.selection;o instanceof T&&(n=o.node);let i=e.state.doc.resolve(t);for(let e=i.depth+1;e>0;e--){let t=e>i.depth?i.nodeAfter:i.node(e);if(T.isSelectable(t)){r=n&&o.$from.depth>0&&e>=o.$from.depth&&i.before(o.$from.depth+1)==o.$from.pos?i.before(o.$from.depth):i.before(e);break}}return null!=r&&(wt(e,T.create(e.state.doc,r)),!0)}function ld(e,t,n,r,o){return Ki(e,"handleClickOn",t,n,r)||e.someProp("handleClick",n=>n(e,t,r))||(o?od(e,n):sd(e,n))}function ad(e,t,n,r){return Ki(e,"handleDoubleClickOn",t,n,r)||e.someProp("handleDoubleClick",n=>n(e,t,r))}function cd(e,t,n,r){return Ki(e,"handleTripleClickOn",t,n,r)||e.someProp("handleTripleClick",n=>n(e,t,r))||ud(e,n,r)}function ud(e,t,n){if(0!=n.button)return!1;let r=e.state.doc;if(-1==t)return!!r.inlineContent&&(wt(e,v.create(r,0,r.content.size)),!0);let o=r.resolve(t);for(let t=o.depth+1;t>0;t--){let n=t>o.depth?o.nodeAfter:o.node(t),i=o.before(t);if(n.inlineContent)wt(e,v.create(r,i+1,i+1+n.content.size));else{if(!T.isSelectable(n))continue;wt(e,T.create(r,i))}return!0}}function _i(e){return $n(e)}ie.keydown=(e,t)=>{let n=t;if(e.input.shiftKey=16==n.keyCode||n.shiftKey,!_l(e,n)&&(e.input.lastKeyCode=n.keyCode,e.input.lastKeyCodeTime=Date.now(),!Ae||!Z||13!=n.keyCode))if(229!=n.keyCode&&e.domObserver.forceFlush(),!vt||13!=n.keyCode||n.ctrlKey||n.altKey||n.metaKey)e.someProp("handleKeyDown",t=>t(e,n))||_u(e,n)?n.preventDefault():We(e,"key");else{let t=Date.now();e.input.lastIOSEnter=t,e.input.lastIOSEnterFallbackTimeout=setTimeout(()=>{e.input.lastIOSEnter==t&&(e.someProp("handleKeyDown",t=>t(e,Ze(13,"Enter"))),e.input.lastIOSEnter=0)},200)}},ie.keyup=(e,t)=>{16==t.keyCode&&(e.input.shiftKey=!1)},ie.keypress=(e,t)=>{let n=t;if(_l(e,n)||!n.charCode||n.ctrlKey&&!n.altKey||de&&n.metaKey)return;if(e.someProp("handleKeyPress",t=>t(e,n)))return void n.preventDefault();let r=e.state.selection;if(!(r instanceof v&&r.$from.sameParent(r.$to))){let t=String.fromCharCode(n.charCode),o=()=>e.state.tr.insertText(t).scrollIntoView();!/[\r\n]/.test(t)&&!e.someProp("handleTextInput",n=>n(e,r.$from.pos,r.$to.pos,t,o))&&e.dispatch(o()),n.preventDefault()}};const Kl=de?"metaKey":"ctrlKey";re.mousedown=(e,t)=>{let n=t;e.input.shiftKey=n.shiftKey;let r=_i(e),o=Date.now(),i="singleClick";o-e.input.lastClick.time<500&&id(n,e.input.lastClick)&&!n[Kl]&&e.input.lastClick.button==n.button&&("singleClick"==e.input.lastClick.type?i="doubleClick":"doubleClick"==e.input.lastClick.type&&(i="tripleClick")),e.input.lastClick={time:o,x:n.clientX,y:n.clientY,type:i,button:n.button};let s=e.posAtCoords(Er(n));s&&("singleClick"==i?(e.input.mouseDown&&e.input.mouseDown.done(),e.input.mouseDown=new dd(e,s,n,!!r)):("doubleClick"==i?ad:cd)(e,s.pos,s.inside,n)?n.preventDefault():We(e,"pointer"))};class dd{constructor(e,t,n,r){let o,i;if(this.view=e,this.pos=t,this.event=n,this.flushed=r,this.delayedSelectionSync=!1,this.mightDrag=null,this.startDoc=e.state.doc,this.selectNode=!!n[Kl],this.allowDefault=n.shiftKey,t.inside>-1)o=e.state.doc.nodeAt(t.inside),i=t.inside;else{let n=e.state.doc.resolve(t.pos);o=n.parent,i=n.depth?n.before():0}const s=r?null:n.target,a=s?e.docView.nearestDesc(s,!0):null;this.target=a&&1==a.nodeDOM.nodeType?a.nodeDOM:null;let{selection:l}=e.state;(0==n.button&&o.type.spec.draggable&&!1!==o.type.spec.selectable||l instanceof T&&l.from<=i&&l.to>i)&&(this.mightDrag={node:o,pos:i,addAttr:!(!this.target||this.target.draggable),setUneditable:!(!this.target||!he||this.target.hasAttribute("contentEditable"))}),this.target&&this.mightDrag&&(this.mightDrag.addAttr||this.mightDrag.setUneditable)&&(this.view.domObserver.stop(),this.mightDrag.addAttr&&(this.target.draggable=!0),this.mightDrag.setUneditable&&setTimeout(()=>{this.view.input.mouseDown==this&&this.target.setAttribute("contentEditable","false")},20),this.view.domObserver.start()),e.root.addEventListener("mouseup",this.up=this.up.bind(this)),e.root.addEventListener("mousemove",this.move=this.move.bind(this)),We(e,"pointer")}done(){this.view.root.removeEventListener("mouseup",this.up),this.view.root.removeEventListener("mousemove",this.move),this.mightDrag&&this.target&&(this.view.domObserver.stop(),this.mightDrag.addAttr&&this.target.removeAttribute("draggable"),this.mightDrag.setUneditable&&this.target.removeAttribute("contentEditable"),this.view.domObserver.start()),this.delayedSelectionSync&&setTimeout(()=>De(this.view)),this.view.input.mouseDown=null}up(e){if(this.done(),!this.view.dom.contains(e.target))return;let t=this.pos;this.view.state.doc!=this.startDoc&&(t=this.view.posAtCoords(Er(e))),this.updateAllowDefault(e),this.allowDefault||!t?We(this.view,"pointer"):ld(this.view,t.pos,t.inside,e,this.selectNode)?e.preventDefault():0==e.button&&(this.flushed||ne&&this.mightDrag&&!this.mightDrag.node.isAtom||Z&&!this.view.state.selection.visible&&Math.min(Math.abs(t.pos-this.view.state.selection.from),Math.abs(t.pos-this.view.state.selection.to))<=2)?(wt(this.view,N.near(this.view.state.doc.resolve(t.pos))),e.preventDefault()):We(this.view,"pointer")}move(e){this.updateAllowDefault(e),We(this.view,"pointer"),0==e.buttons&&this.done()}updateAllowDefault(e){!this.allowDefault&&(Math.abs(this.event.x-e.clientX)>4||Math.abs(this.event.y-e.clientY)>4)&&(this.allowDefault=!0)}}function _l(e,t){return!!e.composing||!!(ne&&Math.abs(t.timeStamp-e.input.compositionEndedAt)<500)&&(e.input.compositionEndedAt=-2e8,!0)}re.touchstart=e=>{e.input.lastTouch=Date.now(),_i(e),We(e,"pointer")},re.touchmove=e=>{e.input.lastTouch=Date.now(),We(e,"pointer")},re.contextmenu=e=>_i(e);const fd=Ae?5e3:-1;function Ul(e,t){clearTimeout(e.input.composingTimeout),t>-1&&(e.input.composingTimeout=setTimeout(()=>$n(e),t))}function Jl(e){for(e.composing&&(e.input.composing=!1,e.input.compositionEndedAt=pd());e.input.compositionNodes.length>0;)e.input.compositionNodes.pop().markParentsDirty()}function hd(e){let t=e.domSelectionRange();if(!t.focusNode)return null;let n=su(t.focusNode,t.focusOffset),r=ou(t.focusNode,t.focusOffset);if(n&&r&&n!=r){let t=r.pmViewDesc,o=e.domObserver.lastChangedTextNode;if(n==o||r==o)return o;if(!t||!t.isText(r.nodeValue))return r;if(e.input.compositionNode==r){let e=n.pmViewDesc;if(e&&e.isText(n.nodeValue))return r}}return n||r}function pd(){let e=document.createEvent("Event");return e.initEvent("event",!0,!0),e.timeStamp}function $n(e,t=!1){if(!(Ae&&e.domObserver.flushingSoon>=0)){if(e.domObserver.forceFlush(),Jl(e),t||e.docView&&e.docView.dirty){let n=Vi(e),r=e.state.selection;return n&&!n.eq(r)?e.dispatch(e.state.tr.setSelection(n)):!e.markCursor&&!t||r.$from.node(r.$from.sharedDepth(r.to)).inlineContent?e.updateState(e.state):e.dispatch(e.state.tr.deleteSelection()),!0}return!1}}function md(e,t){if(!e.dom.parentNode)return;let n=e.dom.parentNode.appendChild(document.createElement("div"));n.appendChild(t),n.style.cssText="position: fixed; left: -10000px; top: 10px";let r=getSelection(),o=document.createRange();o.selectNodeContents(t),e.dom.blur(),r.removeAllRanges(),r.addRange(o),setTimeout(()=>{n.parentNode&&n.parentNode.removeChild(n),e.focus()},50)}ie.compositionstart=ie.compositionupdate=e=>{if(!e.composing){e.domObserver.flush();let{state:t}=e,n=t.selection.$to;if(t.selection instanceof v&&(t.storedMarks||!n.textOffset&&n.parentOffset&&n.nodeBefore.marks.some(e=>!1===e.type.spec.inclusive)))e.markCursor=e.state.storedMarks||n.marks(),$n(e,!0),e.markCursor=null;else if($n(e,!t.selection.empty),he&&t.selection.empty&&n.parentOffset&&!n.textOffset&&n.nodeBefore.marks.length){let t=e.domSelectionRange();for(let n=t.focusNode,r=t.focusOffset;n&&1==n.nodeType&&0!=r;){let t=r<0?n.lastChild:n.childNodes[r-1];if(!t)break;if(3==t.nodeType){let n=e.domSelection();n&&n.collapse(t,t.nodeValue.length);break}n=t,r=-1}}e.input.composing=!0}Ul(e,fd)},ie.compositionend=(e,t)=>{e.composing&&(e.input.composing=!1,e.input.compositionEndedAt=t.timeStamp,e.input.compositionPendingChanges=e.domObserver.pendingRecords().length?e.input.compositionID:0,e.input.compositionNode=null,e.input.compositionPendingChanges&&Promise.resolve().then(()=>e.domObserver.flush()),e.input.compositionID++,Ul(e,20))};const en=oe&&_e<15||vt&&du<604;function gd(e){return 0==e.openStart&&0==e.openEnd&&1==e.content.childCount?e.content.firstChild:null}function yd(e,t){if(!e.dom.parentNode)return;let n=e.input.shiftKey||e.state.selection.$from.parent.type.spec.code,r=e.dom.parentNode.appendChild(document.createElement(n?"textarea":"div"));n||(r.contentEditable="true"),r.style.cssText="position: fixed; left: -10000px; top: 10px",r.focus();let o=e.input.shiftKey&&45!=e.input.lastKeyCode;setTimeout(()=>{e.focus(),r.parentNode&&r.parentNode.removeChild(r),n?tn(e,r.value,null,o,t):tn(e,r.textContent,r.innerHTML,o,t)},50)}function tn(e,t,n,r,o){let i=Fl(e,t,n,r,e.state.selection.$from);if(e.someProp("handlePaste",t=>t(e,o,i||S.empty)))return!0;if(!i)return!1;let s=gd(i),a=s?e.state.tr.replaceSelectionWith(s,r):e.state.tr.replaceSelection(i);return e.dispatch(a.scrollIntoView().setMeta("paste",!0).setMeta("uiEvent","paste")),!0}function ql(e){let t=e.getData("text/plain")||e.getData("Text");if(t)return t;let n=e.getData("text/uri-list");return n?n.replace(/\r?\n/g," "):""}re.copy=ie.cut=(e,t)=>{let n=t,r=e.state.selection,o="cut"==n.type;if(r.empty)return;let i=en?null:n.clipboardData,s=r.content(),{dom:a,text:l}=ji(e,s);i?(n.preventDefault(),i.clearData(),i.setData("text/html",a.innerHTML),i.setData("text/plain",l)):md(e,a),o&&e.dispatch(e.state.tr.deleteSelection().scrollIntoView().setMeta("uiEvent","cut"))},ie.paste=(e,t)=>{let n=t;if(e.composing&&!Ae)return;let r=en?null:n.clipboardData,o=e.input.shiftKey&&45!=e.input.lastKeyCode;r&&tn(e,ql(r),r.getData("text/html"),o,n)?n.preventDefault():yd(e,n)};class Gl{constructor(e,t,n){this.slice=e,this.move=t,this.node=n}}const bd=de?"altKey":"ctrlKey";function Yl(e,t){return e.someProp("dragCopies",e=>!e(t))??!t[bd]}re.dragstart=(e,t)=>{let n=t,r=e.input.mouseDown;if(r&&r.done(),!n.dataTransfer)return;let o,i=e.state.selection,s=i.empty?null:e.posAtCoords(Er(n));if(!(s&&s.pos>=i.from&&s.pos<=(i instanceof T?i.to-1:i.to)))if(r&&r.mightDrag)o=T.create(e.state.doc,r.mightDrag.pos);else if(n.target&&1==n.target.nodeType){let t=e.docView.nearestDesc(n.target,!0);t&&t.node.type.spec.draggable&&t!=e.docView&&(o=T.create(e.state.doc,t.posBefore))}let a=(o||e.state.selection).content(),{dom:l,text:c,slice:d}=ji(e,a);(!n.dataTransfer.files.length||!Z||Cl>120)&&n.dataTransfer.clearData(),n.dataTransfer.setData(en?"Text":"text/html",l.innerHTML),n.dataTransfer.effectAllowed="copyMove",en||n.dataTransfer.setData("text/plain",c),e.dragging=new Gl(d,Yl(e,n),o)},re.dragend=e=>{let t=e.dragging;window.setTimeout(()=>{e.dragging==t&&(e.dragging=null)},50)},ie.dragover=ie.dragenter=(e,t)=>t.preventDefault(),ie.drop=(e,t)=>{let n=t,r=e.dragging;if(e.dragging=null,!n.dataTransfer)return;let o=e.posAtCoords(Er(n));if(!o)return;let i=e.state.doc.resolve(o.pos),s=r&&r.slice;s?e.someProp("transformPasted",t=>{s=t(s,e,!1)}):s=Fl(e,ql(n.dataTransfer),en?null:n.dataTransfer.getData("text/html"),!1,i);let a=!(!r||!Yl(e,n));if(e.someProp("handleDrop",t=>t(e,n,s||S.empty,a)))return void n.preventDefault();if(!s)return;n.preventDefault();let l=s?hl(e.state.doc,i.pos,s):i.pos;null==l&&(l=i.pos);let c=e.state.tr;if(a){let{node:e}=r;e?e.replace(c):c.deleteSelection()}let d=c.mapping.map(l),h=0==s.openStart&&0==s.openEnd&&1==s.content.childCount,p=c.doc;if(h?c.replaceRangeWith(d,d,s.content.firstChild):c.replaceRange(d,d,s),c.doc.eq(p))return;let u=c.doc.resolve(d);if(h&&T.isSelectable(s.content.firstChild)&&u.nodeAfter&&u.nodeAfter.sameMarkup(s.content.firstChild))c.setSelection(new T(u));else{let t=c.mapping.map(l);c.mapping.maps[c.mapping.maps.length-1].forEach((e,n,r,o)=>t=o),c.setSelection(Hi(e,u,c.doc.resolve(t)))}e.focus(),e.dispatch(c.setMeta("uiEvent","drop"))},re.focus=e=>{e.input.lastFocus=Date.now(),e.focused||(e.domObserver.stop(),e.dom.classList.add("ProseMirror-focused"),e.domObserver.start(),e.focused=!0,setTimeout(()=>{e.docView&&e.hasFocus()&&!e.domObserver.currentSelection.eq(e.domSelectionRange())&&De(e)},20))},re.blur=(e,t)=>{let n=t;e.focused&&(e.domObserver.stop(),e.dom.classList.remove("ProseMirror-focused"),e.domObserver.start(),n.relatedTarget&&e.dom.contains(n.relatedTarget)&&e.domObserver.currentSelection.clear(),e.focused=!1)},re.beforeinput=(e,t)=>{if(Z&&Ae&&"deleteContentBackward"==t.inputType){e.domObserver.flushSoon();let{domChangeCount:t}=e.input;setTimeout(()=>{if(e.input.domChangeCount!=t||(e.dom.blur(),e.focus(),e.someProp("handleKeyDown",t=>t(e,Ze(8,"Backspace")))))return;let{$cursor:n}=e.state.selection;n&&n.pos>0&&e.dispatch(e.state.tr.delete(n.pos-1,n.pos).scrollIntoView())},50)}};for(let e in ie)re[e]=ie[e];function nn(e,t){if(e==t)return!0;for(let n in e)if(e[n]!==t[n])return!1;for(let n in t)if(!(n in e))return!1;return!0}class Vn{constructor(e,t){this.toDOM=e,this.spec=t||ot,this.side=this.spec.side||0}map(e,t,n,r){let{pos:o,deleted:i}=e.mapResult(t.from+r,this.side<0?-1:1);return i?null:new te(o-n,o-n,this)}valid(){return!0}eq(e){return this==e||e instanceof Vn&&(this.spec.key&&this.spec.key==e.spec.key||this.toDOM==e.toDOM&&nn(this.spec,e.spec))}destroy(e){this.spec.destroy&&this.spec.destroy(e)}}class Je{constructor(e,t){this.attrs=e,this.spec=t||ot}map(e,t,n,r){let o=e.map(t.from+r,this.spec.inclusiveStart?-1:1)-n,i=e.map(t.to+r,this.spec.inclusiveEnd?1:-1)-n;return o>=i?null:new te(o,i,this)}valid(e,t){return t.from<t.to}eq(e){return this==e||e instanceof Je&&nn(this.attrs,e.attrs)&&nn(this.spec,e.spec)}static is(e){return e.type instanceof Je}destroy(){}}class Ui{constructor(e,t){this.attrs=e,this.spec=t||ot}map(e,t,n,r){let o=e.mapResult(t.from+r,1);if(o.deleted)return null;let i=e.mapResult(t.to+r,-1);return i.deleted||i.pos<=o.pos?null:new te(o.pos-n,i.pos-n,this)}valid(e,t){let n,{index:r,offset:o}=e.content.findIndex(t.from);return o==t.from&&!(n=e.child(r)).isText&&o+n.nodeSize==t.to}eq(e){return this==e||e instanceof Ui&&nn(this.attrs,e.attrs)&&nn(this.spec,e.spec)}destroy(){}}class te{constructor(e,t,n){this.from=e,this.to=t,this.type=n}copy(e,t){return new te(e,t,this.type)}eq(e,t=0){return this.type.eq(e.type)&&this.from+t==e.from&&this.to+t==e.to}map(e,t,n){return this.type.map(e,this,t,n)}static widget(e,t,n){return new te(e,e,new Vn(t,n))}static inline(e,t,n,r){return new te(e,t,new Je(n,r))}static node(e,t,n,r){return new te(e,t,new Ui(n,r))}get spec(){return this.type.spec}get inline(){return this.type instanceof Je}get widget(){return this.type instanceof Vn}}const kt=[],ot={};class z{constructor(e,t){this.local=e.length?e:kt,this.children=t.length?t:kt}static create(e,t){return t.length?Hn(t,e,0,ot):Q}find(e,t,n){let r=[];return this.findInner(e??0,t??1e9,r,0,n),r}findInner(e,t,n,r,o){for(let i=0;i<this.local.length;i++){let s=this.local[i];s.from<=t&&s.to>=e&&(!o||o(s.spec))&&n.push(s.copy(s.from+r,s.to+r))}for(let i=0;i<this.children.length;i+=3)if(this.children[i]<t&&this.children[i+1]>e){let s=this.children[i]+1;this.children[i+2].findInner(e-s,t-s,n,r+s,o)}}map(e,t,n){return this==Q||0==e.maps.length?this:this.mapInner(e,t,0,0,n||ot)}mapInner(e,t,n,r,o){let i;for(let s=0;s<this.local.length;s++){let a=this.local[s].map(e,n,r);a&&a.type.valid(t,a)?(i||(i=[])).push(a):o.onRemove&&o.onRemove(this.local[s].spec)}return this.children.length?kd(this.children,i||[],e,t,n,r,o):i?new z(i.sort(lt),kt):Q}add(e,t){return t.length?this==Q?z.create(e,t):this.addInner(e,t,0):this}addInner(e,t,n){let r,o=0;e.forEach((e,i)=>{let s,a=i+n;if(s=Ql(t,e,a)){for(r||(r=this.children.slice());o<r.length&&r[o]<i;)o+=3;r[o]==i?r[o+2]=r[o+2].addInner(e,s,a+1):r.splice(o,0,i,i+e.nodeSize,Hn(s,e,a+1,ot)),o+=3}});let i=Xl(o?Zl(t):t,-n);for(let t=0;t<i.length;t++)i[t].type.valid(e,i[t])||i.splice(t--,1);return new z(i.length?this.local.concat(i).sort(lt):this.local,r||this.children)}remove(e){return 0==e.length||this==Q?this:this.removeInner(e,0)}removeInner(e,t){let n=this.children,r=this.local;for(let r=0;r<n.length;r+=3){let o,i=n[r]+t,s=n[r+1]+t;for(let t,n=0;n<e.length;n++)(t=e[n])&&t.from>i&&t.to<s&&(e[n]=null,(o||(o=[])).push(t));if(!o)continue;n==this.children&&(n=this.children.slice());let a=n[r+2].removeInner(o,i+1);a!=Q?n[r+2]=a:(n.splice(r,3),r-=3)}if(r.length)for(let n,o=0;o<e.length;o++)if(n=e[o])for(let e=0;e<r.length;e++)r[e].eq(n,t)&&(r==this.local&&(r=this.local.slice()),r.splice(e--,1));return n==this.children&&r==this.local?this:r.length||n.length?new z(r,n):Q}forChild(e,t){if(this==Q)return this;if(t.isLeaf)return z.empty;let n,r;for(let t=0;t<this.children.length;t+=3)if(this.children[t]>=e){this.children[t]==e&&(n=this.children[t+2]);break}let o=e+1,i=o+t.content.size;for(let e=0;e<this.local.length;e++){let t=this.local[e];if(t.from<i&&t.to>o&&t.type instanceof Je){let e=Math.max(o,t.from)-o,n=Math.min(i,t.to)-o;e<n&&(r||(r=[])).push(t.copy(e,n))}}if(r){let e=new z(r.sort(lt),kt);return n?new $e([e,n]):e}return n||Q}eq(e){if(this==e)return!0;if(!(e instanceof z)||this.local.length!=e.local.length||this.children.length!=e.children.length)return!1;for(let t=0;t<this.local.length;t++)if(!this.local[t].eq(e.local[t]))return!1;for(let t=0;t<this.children.length;t+=3)if(this.children[t]!=e.children[t]||this.children[t+1]!=e.children[t+1]||!this.children[t+2].eq(e.children[t+2]))return!1;return!0}locals(e){return Ji(this.localsInner(e))}localsInner(e){if(this==Q)return kt;if(e.inlineContent||!this.local.some(Je.is))return this.local;let t=[];for(let e=0;e<this.local.length;e++)this.local[e].type instanceof Je||t.push(this.local[e]);return t}forEachSet(e){e(this)}}z.empty=new z([],[]),z.removeOverlap=Ji;const Q=z.empty;class $e{constructor(e){this.members=e}map(e,t){const n=this.members.map(n=>n.map(e,t,ot));return $e.from(n)}forChild(e,t){if(t.isLeaf)return z.empty;let n=[];for(let r=0;r<this.members.length;r++){let o=this.members[r].forChild(e,t);o!=Q&&(o instanceof $e?n=n.concat(o.members):n.push(o))}return $e.from(n)}eq(e){if(!(e instanceof $e)||e.members.length!=this.members.length)return!1;for(let t=0;t<this.members.length;t++)if(!this.members[t].eq(e.members[t]))return!1;return!0}locals(e){let t,n=!0;for(let r=0;r<this.members.length;r++){let o=this.members[r].localsInner(e);if(o.length)if(t){n&&(t=t.slice(),n=!1);for(let e=0;e<o.length;e++)t.push(o[e])}else t=o}return t?Ji(n?t:t.sort(lt)):kt}static from(e){switch(e.length){case 0:return Q;case 1:return e[0];default:return new $e(e.every(e=>e instanceof z)?e:e.reduce((e,t)=>e.concat(t instanceof z?t:t.members),[]))}}forEachSet(e){for(let t=0;t<this.members.length;t++)this.members[t].forEachSet(e)}}function kd(e,t,n,r,o,i,s){let a=e.slice();for(let e=0,t=i;e<n.maps.length;e++){let r=0;n.maps[e].forEach((e,n,o,i)=>{let s=i-o-(n-e);for(let o=0;o<a.length;o+=3){let i=a[o+1];if(i<0||e>i+t-r)continue;let l=a[o]+t-r;n>=l?a[o+1]=e<=l?-2:-1:e>=t&&s&&(a[o]+=s,a[o+1]+=s)}r+=s}),t=n.maps[e].map(t,-1)}let l=!1;for(let t=0;t<a.length;t+=3)if(a[t+1]<0){if(-2==a[t+1]){l=!0,a[t+1]=-1;continue}let c=n.map(e[t]+i),d=c-o;if(d<0||d>=r.content.size){l=!0;continue}let h=n.map(e[t+1]+i,-1)-o,{index:p,offset:u}=r.content.findIndex(d),f=r.maybeChild(p);if(f&&u==d&&u+f.nodeSize==h){let r=a[t+2].mapInner(n,f,c+1,e[t]+i+1,s);r!=Q?(a[t]=d,a[t+1]=h,a[t+2]=r):(a[t+1]=-2,l=!0)}else l=!0}if(l){let l=Hn(xd(a,e,t,n,o,i,s),r,0,s);t=l.local;for(let e=0;e<a.length;e+=3)a[e+1]<0&&(a.splice(e,3),e-=3);for(let e=0,t=0;e<l.children.length;e+=3){let n=l.children[e];for(;t<a.length&&a[t]<n;)t+=3;a.splice(t,0,l.children[e],l.children[e+1],l.children[e+2])}}return new z(t.sort(lt),a)}function Xl(e,t){if(!t||!e.length)return e;let n=[];for(let r=0;r<e.length;r++){let o=e[r];n.push(new te(o.from+t,o.to+t,o.type))}return n}function xd(e,t,n,r,o,i,s){function a(e,t){for(let i=0;i<e.local.length;i++){let a=e.local[i].map(r,o,t);a?n.push(a):s.onRemove&&s.onRemove(e.local[i].spec)}for(let n=0;n<e.children.length;n+=3)a(e.children[n+2],e.children[n]+t+1)}for(let n=0;n<e.length;n+=3)-1==e[n+1]&&a(e[n+2],t[n]+i+1);return n}function Ql(e,t,n){if(t.isLeaf)return null;let r=n+t.nodeSize,o=null;for(let t,i=0;i<e.length;i++)(t=e[i])&&t.from>n&&t.to<r&&((o||(o=[])).push(t),e[i]=null);return o}function Zl(e){let t=[];for(let n=0;n<e.length;n++)null!=e[n]&&t.push(e[n]);return t}function Hn(e,t,n,r){let o=[],i=!1;t.forEach((t,s)=>{let a=Ql(e,t,s+n);if(a){i=!0;let e=Hn(a,t,n+s+1,r);e!=Q&&o.push(s,s+t.nodeSize,e)}});let s=Xl(i?Zl(e):e,-n).sort(lt);for(let e=0;e<s.length;e++)s[e].type.valid(t,s[e])||(r.onRemove&&r.onRemove(s[e].spec),s.splice(e--,1));return s.length||o.length?new z(s,o):Q}function lt(e,t){return e.from-t.from||e.to-t.to}function Ji(e){let t=e;for(let n=0;n<t.length-1;n++){let r=t[n];if(r.from!=r.to)for(let o=n+1;o<t.length;o++){let i=t[o];if(i.from!=r.from){i.from<r.to&&(t==e&&(t=e.slice()),t[n]=r.copy(r.from,i.from),lo(t,o,r.copy(i.from,r.to)));break}i.to!=r.to&&(t==e&&(t=e.slice()),t[o]=i.copy(i.from,r.to),lo(t,o+1,i.copy(r.to,i.to)))}}return t}function lo(e,t,n){for(;t<e.length&<(n,e[t])>0;)t++;e.splice(t,0,n)}function Ur(e){let t=[];return e.someProp("decorations",n=>{let r=n(e.state);r&&r!=Q&&t.push(r)}),e.cursorWrapper&&t.push(z.create(e.state.doc,[e.cursorWrapper.deco])),$e.from(t)}const Sd={childList:!0,characterData:!0,characterDataOldValue:!0,attributes:!0,attributeOldValue:!0,subtree:!0},Cd=oe&&_e<=11;class Md{constructor(){this.anchorNode=null,this.anchorOffset=0,this.focusNode=null,this.focusOffset=0}set(e){this.anchorNode=e.anchorNode,this.anchorOffset=e.anchorOffset,this.focusNode=e.focusNode,this.focusOffset=e.focusOffset}clear(){this.anchorNode=this.focusNode=null}eq(e){return e.anchorNode==this.anchorNode&&e.anchorOffset==this.anchorOffset&&e.focusNode==this.focusNode&&e.focusOffset==this.focusOffset}}class wd{constructor(e,t){this.view=e,this.handleDOMChange=t,this.queue=[],this.flushingSoon=-1,this.observer=null,this.currentSelection=new Md,this.onCharData=null,this.suppressingSelectionUpdates=!1,this.lastChangedTextNode=null,this.observer=window.MutationObserver&&new window.MutationObserver(e=>{for(let t=0;t<e.length;t++)this.queue.push(e[t]);oe&&_e<=11&&e.some(e=>"childList"==e.type&&e.removedNodes.length||"characterData"==e.type&&e.oldValue.length>e.target.nodeValue.length)?this.flushSoon():this.flush()}),Cd&&(this.onCharData=e=>{this.queue.push({target:e.target,type:"characterData",oldValue:e.prevValue}),this.flushSoon()}),this.onSelectionChange=this.onSelectionChange.bind(this)}flushSoon(){this.flushingSoon<0&&(this.flushingSoon=window.setTimeout(()=>{this.flushingSoon=-1,this.flush()},20))}forceFlush(){this.flushingSoon>-1&&(window.clearTimeout(this.flushingSoon),this.flushingSoon=-1,this.flush())}start(){this.observer&&(this.observer.takeRecords(),this.observer.observe(this.view.dom,Sd)),this.onCharData&&this.view.dom.addEventListener("DOMCharacterDataModified",this.onCharData),this.connectSelection()}stop(){if(this.observer){let e=this.observer.takeRecords();if(e.length){for(let t=0;t<e.length;t++)this.queue.push(e[t]);window.setTimeout(()=>this.flush(),20)}this.observer.disconnect()}this.onCharData&&this.view.dom.removeEventListener("DOMCharacterDataModified",this.onCharData),this.disconnectSelection()}connectSelection(){this.view.dom.ownerDocument.addEventListener("selectionchange",this.onSelectionChange)}disconnectSelection(){this.view.dom.ownerDocument.removeEventListener("selectionchange",this.onSelectionChange)}suppressSelectionUpdates(){this.suppressingSelectionUpdates=!0,setTimeout(()=>this.suppressingSelectionUpdates=!1,50)}onSelectionChange(){if(Zs(this.view)){if(this.suppressingSelectionUpdates)return De(this.view);if(oe&&_e<=11&&!this.view.state.selection.empty){let e=this.view.domSelectionRange();if(e.focusNode&&dt(e.focusNode,e.focusOffset,e.anchorNode,e.anchorOffset))return this.flushSoon()}this.flush()}}setCurSelection(){this.currentSelection.set(this.view.domSelectionRange())}ignoreSelectionChange(e){if(!e.focusNode)return!0;let t,n=new Set;for(let t=e.focusNode;t;t=Et(t))n.add(t);for(let r=e.anchorNode;r;r=Et(r))if(n.has(r)){t=r;break}let r=t&&this.view.docView.nearestDesc(t);return r&&r.ignoreMutation({type:"selection",target:3==t.nodeType?t.parentNode:t})?(this.setCurSelection(),!0):void 0}pendingRecords(){if(this.observer)for(let e of this.observer.takeRecords())this.queue.push(e);return this.queue}flush(){let{view:e}=this;if(!e.docView||this.flushingSoon>-1)return;let t=this.pendingRecords();t.length&&(this.queue=[]);let n=e.domSelectionRange(),r=!this.suppressingSelectionUpdates&&!this.currentSelection.eq(n)&&Zs(e)&&!this.ignoreSelectionChange(n),o=-1,i=-1,s=!1,a=[];if(e.editable)for(let e=0;e<t.length;e++){let n=this.registerMutation(t[e],a);n&&(o=o<0?n.from:Math.min(n.from,o),i=i<0?n.to:Math.max(n.to,i),n.typeOver&&(s=!0))}if(he&&a.length){let t=a.filter(e=>"BR"==e.nodeName);if(2==t.length){let[e,n]=t;e.parentNode&&e.parentNode.parentNode==n.parentNode?n.remove():e.remove()}else{let{focusNode:n}=this.currentSelection;for(let r of t){let t=r.parentNode;t&&"LI"==t.nodeName&&(!n||vd(e,n)!=t)&&r.remove()}}}let l=null;o<0&&r&&e.input.lastFocus>Date.now()-200&&Math.max(e.input.lastTouch,e.input.lastClick.time)<Date.now()-300&&wr(n)&&(l=Vi(e))&&l.eq(N.near(e.state.doc.resolve(0),1))?(e.input.lastFocus=0,De(e),this.currentSelection.set(n),e.scrollToSelection()):(o>-1||r)&&(o>-1&&(e.docView.markDirty(o,i),Td(e)),this.handleDOMChange(o,i,s,a),e.docView&&e.docView.dirty?e.updateState(e.state):this.currentSelection.eq(n)||De(e),this.currentSelection.set(n))}registerMutation(e,t){if(t.indexOf(e.target)>-1)return null;let n=this.view.docView.nearestDesc(e.target);if("attributes"==e.type&&(n==this.view.docView||"contenteditable"==e.attributeName||"style"==e.attributeName&&!e.oldValue&&!e.target.getAttribute("style"))||!n||n.ignoreMutation(e))return null;if("childList"==e.type){for(let n=0;n<e.addedNodes.length;n++){let r=e.addedNodes[n];t.push(r),3==r.nodeType&&(this.lastChangedTextNode=r)}if(n.contentDOM&&n.contentDOM!=n.dom&&!n.contentDOM.contains(e.target))return{from:n.posBefore,to:n.posAfter};let r=e.previousSibling,o=e.nextSibling;if(oe&&_e<=11&&e.addedNodes.length)for(let t=0;t<e.addedNodes.length;t++){let{previousSibling:n,nextSibling:i}=e.addedNodes[t];(!n||Array.prototype.indexOf.call(e.addedNodes,n)<0)&&(r=n),(!i||Array.prototype.indexOf.call(e.addedNodes,i)<0)&&(o=i)}let i=r&&r.parentNode==e.target?Y(r)+1:0,s=n.localPosFromDOM(e.target,i,-1),a=o&&o.parentNode==e.target?Y(o):e.target.childNodes.length;return{from:s,to:n.localPosFromDOM(e.target,a,1)}}return"attributes"==e.type?{from:n.posAtStart-n.border,to:n.posAtEnd+n.border}:(this.lastChangedTextNode=e.target,{from:n.posAtStart,to:n.posAtEnd,typeOver:e.target.nodeValue==e.oldValue})}}let ao=new WeakMap,co=!1;function Td(e){if(!ao.has(e)&&(ao.set(e,null),-1!==["normal","nowrap","pre-line"].indexOf(getComputedStyle(e.dom).whiteSpace))){if(e.requiresGeckoHackNode=he,co)return;co=!0}}function uo(e,t){let n=t.startContainer,r=t.startOffset,o=t.endContainer,i=t.endOffset,s=e.domAtPos(e.state.selection.anchor);return dt(s.node,s.offset,o,i)&&([n,r,o,i]=[o,i,n,r]),{anchorNode:n,anchorOffset:r,focusNode:o,focusOffset:i}}function Ed(e,t){if(t.getComposedRanges){let n=t.getComposedRanges(e.root)[0];if(n)return uo(e,n)}let n;function r(e){e.preventDefault(),e.stopImmediatePropagation(),n=e.getTargetRanges()[0]}return e.dom.addEventListener("beforeinput",r,!0),document.execCommand("indent"),e.dom.removeEventListener("beforeinput",r,!0),n?uo(e,n):null}function vd(e,t){for(let n=t.parentNode;n&&n!=e.dom;n=n.parentNode){let t=e.docView.nearestDesc(n,!0);if(t&&t.node.isBlock)return n}return null}function Od(e,t,n){let r,{node:o,fromOffset:i,toOffset:s,from:a,to:l}=e.docView.parseRange(t,n),c=e.domSelectionRange(),d=c.anchorNode;if(d&&e.dom.contains(1==d.nodeType?d:d.parentNode)&&(r=[{node:d,offset:c.anchorOffset}],wr(c)||r.push({node:c.focusNode,offset:c.focusOffset})),Z&&8===e.input.lastKeyCode)for(let e=s;e>i;e--){let t=o.childNodes[e-1],n=t.pmViewDesc;if("BR"==t.nodeName&&!n){s=e;break}if(!n||n.size)break}let h=e.state.doc,p=e.someProp("domParser")||Ke.fromSchema(e.state.schema),u=h.resolve(a),f=null,m=p.parse(o,{topNode:u.parent,topMatch:u.parent.contentMatchAt(u.index()),topOpen:!0,from:i,to:s,preserveWhitespace:"pre"!=u.parent.type.whitespace||"full",findPositions:r,ruleFromNode:Ad,context:u});if(r&&null!=r[0].pos){let e=r[0].pos,t=r[1]&&r[1].pos;null==t&&(t=e),f={anchor:e+a,head:t+a}}return{doc:m,sel:f,from:a,to:l}}function Ad(e){let t=e.pmViewDesc;if(t)return t.parseRule();if("BR"==e.nodeName&&e.parentNode){if(ne&&/^(ul|ol)$/i.test(e.parentNode.nodeName)){let e=document.createElement("div");return e.appendChild(document.createElement("li")),{skip:e}}if(e.parentNode.lastChild==e||ne&&/^(tr|table)$/i.test(e.parentNode.nodeName))return{ignore:!0}}else if("IMG"==e.nodeName&&e.getAttribute("mark-placeholder"))return{ignore:!0};return null}const Nd=/^(a|abbr|acronym|b|bd[io]|big|br|button|cite|code|data(list)?|del|dfn|em|i|img|ins|kbd|label|map|mark|meter|output|q|ruby|s|samp|small|span|strong|su[bp]|time|u|tt|var)$/i;function Dd(e,t,n,r,o){let i=e.input.compositionPendingChanges||(e.composing?e.input.compositionID:0);if(e.input.compositionPendingChanges=0,t<0){let t=e.input.lastSelectionTime>Date.now()-50?e.input.lastSelectionOrigin:null,n=Vi(e,t);if(n&&!e.state.selection.eq(n)){if(Z&&Ae&&13===e.input.lastKeyCode&&Date.now()-100<e.input.lastKeyCodeTime&&e.someProp("handleKeyDown",t=>t(e,Ze(13,"Enter"))))return;let r=e.state.tr.setSelection(n);"pointer"==t?r.setMeta("pointer",!0):"key"==t&&r.scrollIntoView(),i&&r.setMeta("composition",i),e.dispatch(r)}return}let s=e.state.doc.resolve(t),a=s.sharedDepth(n);t=s.before(a+1),n=e.state.doc.resolve(n).after(a+1);let l,c,d=e.state.selection,h=Od(e,t,n),p=e.state.doc,u=p.slice(h.from,h.to);8===e.input.lastKeyCode&&Date.now()-100<e.input.lastKeyCodeTime?(l=e.state.selection.to,c="end"):(l=e.state.selection.from,c="start"),e.input.lastKeyCode=null;let f=Pd(u.content,h.doc.content,h.from,l,c);if(f&&e.input.domChangeCount++,(vt&&e.input.lastIOSEnter>Date.now()-225||Ae)&&o.some(e=>1==e.nodeType&&!Nd.test(e.nodeName))&&(!f||f.endA>=f.endB)&&e.someProp("handleKeyDown",t=>t(e,Ze(13,"Enter"))))return void(e.input.lastIOSEnter=0);if(!f){if(!(r&&d instanceof v&&!d.empty&&d.$head.sameParent(d.$anchor))||e.composing||h.sel&&h.sel.anchor!=h.sel.head){if(h.sel){let t=fo(e,e.state.doc,h.sel);if(t&&!t.eq(e.state.selection)){let n=e.state.tr.setSelection(t);i&&n.setMeta("composition",i),e.dispatch(n)}}return}f={start:d.from,endA:d.to,endB:d.to}}e.state.selection.from<e.state.selection.to&&f.start==f.endB&&e.state.selection instanceof v&&(f.start>e.state.selection.from&&f.start<=e.state.selection.from+2&&e.state.selection.from>=h.from?f.start=e.state.selection.from:f.endA<e.state.selection.to&&f.endA>=e.state.selection.to-2&&e.state.selection.to<=h.to&&(f.endB+=e.state.selection.to-f.endA,f.endA=e.state.selection.to)),oe&&_e<=11&&f.endB==f.start+1&&f.endA==f.start&&f.start>h.from&&" "==h.doc.textBetween(f.start-h.from-1,f.start-h.from+1)&&(f.start--,f.endA--,f.endB--);let m=h.doc.resolveNoCache(f.start-h.from),g=h.doc.resolveNoCache(f.endB-h.from),y=p.resolve(f.start),b=m.sameParent(g)&&m.parent.inlineContent&&y.end()>=f.endA;if((vt&&e.input.lastIOSEnter>Date.now()-225&&(!b||o.some(e=>"DIV"==e.nodeName||"P"==e.nodeName))||!b&&m.pos<h.doc.content.size&&(!m.sameParent(g)||!m.parent.inlineContent)&&m.pos<g.pos&&!/\S/.test(h.doc.textBetween(m.pos,g.pos,"","")))&&e.someProp("handleKeyDown",t=>t(e,Ze(13,"Enter"))))return void(e.input.lastIOSEnter=0);if(e.state.selection.anchor>f.start&&Rd(p,f.start,f.endA,m,g)&&e.someProp("handleKeyDown",t=>t(e,Ze(8,"Backspace"))))return void(Ae&&Z&&e.domObserver.suppressSelectionUpdates());Z&&f.endB==f.start&&(e.input.lastChromeDelete=Date.now()),Ae&&!b&&m.start()!=g.start()&&0==g.parentOffset&&m.depth==g.depth&&h.sel&&h.sel.anchor==h.sel.head&&h.sel.head==f.endA&&(f.endB-=2,g=h.doc.resolveNoCache(f.endB-h.from),setTimeout(()=>{e.someProp("handleKeyDown",function(t){return t(e,Ze(13,"Enter"))})},20));let k,w=f.start,x=f.endA,S=t=>{let n=t||e.state.tr.replace(w,x,h.doc.slice(f.start-h.from,f.endB-h.from));if(h.sel){let t=fo(e,n.doc,h.sel);t&&!(Z&&e.composing&&t.empty&&(f.start!=f.endB||e.input.lastChromeDelete<Date.now()-100)&&(t.head==w||t.head==n.mapping.map(x)-1)||oe&&t.empty&&t.head==w)&&n.setSelection(t)}return i&&n.setMeta("composition",i),n.scrollIntoView()};if(b){if(m.pos==g.pos){oe&&_e<=11&&0==m.parentOffset&&(e.domObserver.suppressSelectionUpdates(),setTimeout(()=>De(e),20));let t=S(e.state.tr.delete(w,x)),n=p.resolve(f.start).marksAcross(p.resolve(f.endA));n&&t.ensureMarks(n),e.dispatch(t)}else if(f.endA==f.endB&&(k=Id(m.parent.content.cut(m.parentOffset,g.parentOffset),y.parent.content.cut(y.parentOffset,f.endA-y.start())))){let t=S(e.state.tr);"add"==k.type?t.addMark(w,x,k.mark):t.removeMark(w,x,k.mark),e.dispatch(t)}else if(m.parent.child(m.index()).isText&&m.index()==g.index()-(g.textOffset?0:1)){let t=m.parent.textBetween(m.parentOffset,g.parentOffset),n=()=>S(e.state.tr.insertText(t,w,x));e.someProp("handleTextInput",r=>r(e,w,x,t,n))||e.dispatch(n())}}else e.dispatch(S())}function fo(e,t,n){return Math.max(n.anchor,n.head)>t.content.size?null:Hi(e,t.resolve(n.anchor),t.resolve(n.head))}function Id(e,t){let n,r,o,i=e.firstChild.marks,s=t.firstChild.marks,a=i,l=s;for(let e=0;e<s.length;e++)a=s[e].removeFromSet(a);for(let e=0;e<i.length;e++)l=i[e].removeFromSet(l);if(1==a.length&&0==l.length)r=a[0],n="add",o=e=>e.mark(r.addToSet(e.marks));else{if(0!=a.length||1!=l.length)return null;r=l[0],n="remove",o=e=>e.mark(r.removeFromSet(e.marks))}let c=[];for(let e=0;e<t.childCount;e++)c.push(o(t.child(e)));if(b.from(c).eq(e))return{mark:r,type:n}}function Rd(e,t,n,r,o){if(n-t<=o.pos-r.pos||Jr(r,!0,!1)<o.pos)return!1;let i=e.resolve(t);if(!r.parent.isTextblock){let e=i.nodeAfter;return null!=e&&n==t+e.nodeSize}if(i.parentOffset<i.parent.content.size||!i.parent.isTextblock)return!1;let s=e.resolve(Jr(i,!0,!0));return!(!s.parent.isTextblock||s.pos>n||Jr(s,!0,!1)<n)&&r.parent.content.cut(r.parentOffset).eq(s.parent.content)}function Jr(e,t,n){let r=e.depth,o=t?e.end():e.pos;for(;r>0&&(t||e.indexAfter(r)==e.node(r).childCount);)r--,o++,t=!1;if(n){let t=e.node(r).maybeChild(e.indexAfter(r));for(;t&&!t.isLeaf;)t=t.firstChild,o++}return o}function Pd(e,t,n,r,o){let i=e.findDiffStart(t,n);if(null==i)return null;let{a:s,b:a}=e.findDiffEnd(t,n+e.size,n+t.size);if("end"==o){r-=s+Math.max(0,i-Math.min(s,a))-i}if(s<i&&e.size<t.size){let e=r<=i&&r>=s?i-r:0;i-=e,i&&i<t.size&&ho(t.textBetween(i-1,i+1))&&(i+=e?1:-1),a=i+(a-s),s=i}else if(a<i){let t=r<=i&&r>=a?i-r:0;i-=t,i&&i<e.size&&ho(e.textBetween(i-1,i+1))&&(i+=t?1:-1),s=i+(s-a),a=i}return{start:i,endA:s,endB:a}}function ho(e){if(2!=e.length)return!1;let t=e.charCodeAt(0),n=e.charCodeAt(1);return t>=56320&&t<=57343&&n>=55296&&n<=56319}class ea{constructor(e,t){this._root=null,this.focused=!1,this.trackWrites=null,this.mounted=!1,this.markCursor=null,this.cursorWrapper=null,this.lastSelectedViewDesc=void 0,this.input=new Zu,this.prevDirectPlugins=[],this.pluginViews=[],this.requiresGeckoHackNode=!1,this.dragging=null,this._props=t,this.state=t.state,this.directPlugins=t.plugins||[],this.directPlugins.forEach(bo),this.dispatch=this.dispatch.bind(this),this.dom=e&&e.mount||document.createElement("div"),e&&(e.appendChild?e.appendChild(this.dom):"function"==typeof e?e(this.dom):e.mount&&(this.mounted=!0)),this.editable=go(this),mo(this),this.nodeViews=yo(this),this.docView=Js(this.state.doc,po(this),Ur(this),this.dom,this),this.domObserver=new wd(this,(e,t,n,r)=>Dd(this,e,t,n,r)),this.domObserver.start(),ed(this),this.updatePluginViews()}get composing(){return this.input.composing}get props(){if(this._props.state!=this.state){let e=this._props;this._props={};for(let t in e)this._props[t]=e[t];this._props.state=this.state}return this._props}update(e){e.handleDOMEvents!=this._props.handleDOMEvents&&Si(this);let t=this._props;this._props=e,e.plugins&&(e.plugins.forEach(bo),this.directPlugins=e.plugins),this.updateStateInner(e.state,t)}setProps(e){let t={};for(let e in this._props)t[e]=this._props[e];t.state=this.state;for(let n in e)t[n]=e[n];this.update(t)}updateState(e){this.updateStateInner(e,this._props)}updateStateInner(e,t){var n;let r=this.state,o=!1,i=!1;e.storedMarks&&this.composing&&(Jl(this),i=!0),this.state=e;let s=r.plugins!=e.plugins||this._props.plugins!=t.plugins;if(s||this._props.plugins!=t.plugins||this._props.nodeViews!=t.nodeViews){let e=yo(this);Bd(e,this.nodeViews)&&(this.nodeViews=e,o=!0)}(s||t.handleDOMEvents!=this._props.handleDOMEvents)&&Si(this),this.editable=go(this),mo(this);let a=Ur(this),l=po(this),c=r.plugins==e.plugins||r.doc.eq(e.doc)?e.scrollToSelection>r.scrollToSelection?"to selection":"preserve":"reset",d=o||!this.docView.matchesNode(e.doc,l,a);(d||!e.selection.eq(r.selection))&&(i=!0);let h="preserve"==c&&i&&null==this.dom.style.overflowAnchor&&pu(this);if(i){this.domObserver.stop();let t=d&&(oe||Z)&&!this.composing&&!r.selection.empty&&!e.selection.empty&&Ld(r.selection,e.selection);if(d){let n=Z?this.trackWrites=this.domSelectionRange().focusNode:null;this.composing&&(this.input.compositionNode=hd(this)),(o||!this.docView.update(e.doc,l,a,this))&&(this.docView.updateOuterDeco(l),this.docView.destroy(),this.docView=Js(e.doc,l,a,this.dom,this)),n&&!this.trackWrites&&(t=!0)}t||!(this.input.mouseDown&&this.domObserver.currentSelection.eq(this.domSelectionRange())&&Fu(this))?De(this,t):(Ll(this,e.selection),this.domObserver.setCurSelection()),this.domObserver.start()}this.updatePluginViews(r),!(null===(n=this.dragging)||void 0===n)&&n.node&&!r.doc.eq(e.doc)&&this.updateDraggedNode(this.dragging,r),"reset"==c?this.dom.scrollTop=0:"to selection"==c?this.scrollToSelection():h&&mu(h)}scrollToSelection(){let e=this.domSelectionRange().focusNode;if(e&&this.dom.contains(1==e.nodeType?e:e.parentNode)&&!this.someProp("handleScrollToSelection",e=>e(this)))if(this.state.selection instanceof T){let t=this.docView.domAfterPos(this.state.selection.from);1==t.nodeType&&Hs(this,t.getBoundingClientRect(),e)}else Hs(this,this.coordsAtPos(this.state.selection.head,1),e)}destroyPluginViews(){let e;for(;e=this.pluginViews.pop();)e.destroy&&e.destroy()}updatePluginViews(e){if(e&&e.plugins==this.state.plugins&&this.directPlugins==this.prevDirectPlugins)for(let t=0;t<this.pluginViews.length;t++){let n=this.pluginViews[t];n.update&&n.update(this,e)}else{this.prevDirectPlugins=this.directPlugins,this.destroyPluginViews();for(let e=0;e<this.directPlugins.length;e++){let t=this.directPlugins[e];t.spec.view&&this.pluginViews.push(t.spec.view(this))}for(let e=0;e<this.state.plugins.length;e++){let t=this.state.plugins[e];t.spec.view&&this.pluginViews.push(t.spec.view(this))}}}updateDraggedNode(e,t){let n=e.node,r=-1;if(this.state.doc.nodeAt(n.from)==n.node)r=n.from;else{let e=n.from+(this.state.doc.content.size-t.doc.content.size);(e>0&&this.state.doc.nodeAt(e))==n.node&&(r=e)}this.dragging=new Gl(e.slice,e.move,r<0?void 0:T.create(this.state.doc,r))}someProp(e,t){let n,r=this._props&&this._props[e];if(null!=r&&(n=t?t(r):r))return n;for(let r=0;r<this.directPlugins.length;r++){let o=this.directPlugins[r].props[e];if(null!=o&&(n=t?t(o):o))return n}let o=this.state.plugins;if(o)for(let r=0;r<o.length;r++){let i=o[r].props[e];if(null!=i&&(n=t?t(i):i))return n}}hasFocus(){if(oe){let e=this.root.activeElement;if(e==this.dom)return!0;if(!e||!this.dom.contains(e))return!1;for(;e&&this.dom!=e&&this.dom.contains(e);){if("false"==e.contentEditable)return!1;e=e.parentElement}return!0}return this.root.activeElement==this.dom}focus(){this.domObserver.stop(),this.editable&&gu(this.dom),De(this),this.domObserver.start()}get root(){let e=this._root;if(null==e)for(let e=this.dom.parentNode;e;e=e.parentNode)if(9==e.nodeType||11==e.nodeType&&e.host)return e.getSelection||(Object.getPrototypeOf(e).getSelection=()=>e.ownerDocument.getSelection()),this._root=e;return e||document}updateRoot(){this._root=null}posAtCoords(e){return Su(this,e)}coordsAtPos(e,t=1){return vl(this,e,t)}domAtPos(e,t=0){return this.docView.domFromPos(e,t)}nodeDOM(e){let t=this.docView.descAt(e);return t?t.nodeDOM:null}posAtDOM(e,t,n=-1){let r=this.docView.posFromDOM(e,t,n);if(null==r)throw new RangeError("DOM position not inside the editor");return r}endOfTextblock(e,t){return Eu(this,t||this.state,e)}pasteHTML(e,t){return tn(this,"",e,!1,t||new ClipboardEvent("paste"))}pasteText(e,t){return tn(this,e,null,!0,t||new ClipboardEvent("paste"))}serializeForClipboard(e){return ji(this,e)}destroy(){this.docView&&(td(this),this.destroyPluginViews(),this.mounted?(this.docView.update(this.state.doc,[],Ur(this),this),this.dom.textContent=""):this.dom.parentNode&&this.dom.parentNode.removeChild(this.dom),this.docView.destroy(),this.docView=null,ru())}get isDestroyed(){return null==this.docView}dispatchEvent(e){return rd(this,e)}domSelectionRange(){let e=this.domSelection();return e?ne&&11===this.root.nodeType&&au(this.dom.ownerDocument)==this.dom&&Ed(this,e)||e:{focusNode:null,focusOffset:0,anchorNode:null,anchorOffset:0}}domSelection(){return this.root.getSelection()}}function po(e){let t=Object.create(null);return t.class="ProseMirror",t.contenteditable=String(e.editable),e.someProp("attributes",n=>{if("function"==typeof n&&(n=n(e.state)),n)for(let e in n)"class"==e?t.class+=" "+n[e]:"style"==e?t.style=(t.style?t.style+";":"")+n[e]:!t[e]&&"contenteditable"!=e&&"nodeName"!=e&&(t[e]=String(n[e]))}),t.translate||(t.translate="no"),[te.node(0,e.state.doc.content.size,t)]}function mo(e){if(e.markCursor){let t=document.createElement("img");t.className="ProseMirror-separator",t.setAttribute("mark-placeholder","true"),t.setAttribute("alt",""),e.cursorWrapper={dom:t,deco:te.widget(e.state.selection.from,t,{raw:!0,marks:e.markCursor})}}else e.cursorWrapper=null}function go(e){return!e.someProp("editable",t=>!1===t(e.state))}function Ld(e,t){let n=Math.min(e.$anchor.sharedDepth(e.head),t.$anchor.sharedDepth(t.head));return e.$anchor.start(n)!=t.$anchor.start(n)}function yo(e){let t=Object.create(null);function n(e){for(let n in e)Object.prototype.hasOwnProperty.call(t,n)||(t[n]=e[n])}return e.someProp("nodeViews",n),e.someProp("markViews",n),t}function Bd(e,t){let n=0,r=0;for(let r in e){if(e[r]!=t[r])return!0;n++}for(let e in t)r++;return n!=r}function bo(e){if(e.spec.state||e.spec.filterTransaction||e.spec.appendTransaction)throw new RangeError("Plugins passed directly to the view must not have a state component")}ea.prototype.dispatch=function(e){let t=this._props.dispatchTransaction;t?t.call(this,e):this.updateState(this.state.apply(e))};for(var qe={8:"Backspace",9:"Tab",10:"Enter",12:"NumLock",13:"Enter",16:"Shift",17:"Control",18:"Alt",20:"CapsLock",27:"Escape",32:" ",33:"PageUp",34:"PageDown",35:"End",36:"Home",37:"ArrowLeft",38:"ArrowUp",39:"ArrowRight",40:"ArrowDown",44:"PrintScreen",45:"Insert",46:"Delete",59:";",61:"=",91:"Meta",92:"Meta",106:"*",107:"+",108:",",109:"-",110:".",111:"/",144:"NumLock",145:"ScrollLock",160:"Shift",161:"Shift",162:"Control",163:"Control",164:"Alt",165:"Alt",173:"-",186:";",187:"=",188:",",189:"-",190:".",191:"/",192:"`",219:"[",220:"\\",221:"]",222:"'"},jn={48:")",49:"!",50:"@",51:"#",52:"$",53:"%",54:"^",55:"&",56:"*",57:"(",59:":",61:"+",173:"_",186:":",187:"+",188:"<",189:"_",190:">",191:"?",192:"~",219:"{",220:"|",221:"}",222:'"'},zd=typeof navigator<"u"&&/Mac/.test(navigator.platform),Fd=typeof navigator<"u"&&/MSIE \d|Trident\/(?:[7-9]|\d{2,})\..*rv:(\d+)/.exec(navigator.userAgent),X=0;X<10;X++)qe[48+X]=qe[96+X]=String(X);for(X=1;X<=24;X++)qe[X+111]="F"+X;for(X=65;X<=90;X++)qe[X]=String.fromCharCode(X+32),jn[X]=String.fromCharCode(X);for(var qr in qe)jn.hasOwnProperty(qr)||(jn[qr]=qe[qr]);function $d(e){var t=!(zd&&e.metaKey&&e.shiftKey&&!e.ctrlKey&&!e.altKey||Fd&&e.shiftKey&&e.key&&1==e.key.length||"Unidentified"==e.key)&&e.key||(e.shiftKey?jn:qe)[e.keyCode]||e.key||"Unidentified";return"Esc"==t&&(t="Escape"),"Del"==t&&(t="Delete"),"Left"==t&&(t="ArrowLeft"),"Up"==t&&(t="ArrowUp"),"Right"==t&&(t="ArrowRight"),"Down"==t&&(t="ArrowDown"),t}const Vd=typeof navigator<"u"&&/Mac|iP(hone|[oa]d)/.test(navigator.platform),Hd=typeof navigator<"u"&&/Win/.test(navigator.platform);function jd(e){let t,n,r,o,i=e.split(/-(?!$)/),s=i[i.length-1];"Space"==s&&(s=" ");for(let e=0;e<i.length-1;e++){let s=i[e];if(/^(cmd|meta|m)$/i.test(s))o=!0;else if(/^a(lt)?$/i.test(s))t=!0;else if(/^(c|ctrl|control)$/i.test(s))n=!0;else if(/^s(hift)?$/i.test(s))r=!0;else{if(!/^mod$/i.test(s))throw new Error("Unrecognized modifier name: "+s);Vd?o=!0:n=!0}}return t&&(s="Alt-"+s),n&&(s="Ctrl-"+s),o&&(s="Meta-"+s),r&&(s="Shift-"+s),s}function Wd(e){let t=Object.create(null);for(let n in e)t[jd(n)]=e[n];return t}function Gr(e,t,n=!0){return t.altKey&&(e="Alt-"+e),t.ctrlKey&&(e="Ctrl-"+e),t.metaKey&&(e="Meta-"+e),n&&t.shiftKey&&(e="Shift-"+e),e}function Kd(e){return new V({props:{handleKeyDown:ta(e)}})}function ta(e){let t=Wd(e);return function(e,n){let r,o=$d(n),i=t[Gr(o,n)];if(i&&i(e.state,e.dispatch,e))return!0;if(1==o.length&&" "!=o){if(n.shiftKey){let r=t[Gr(o,n,!1)];if(r&&r(e.state,e.dispatch,e))return!0}if((n.altKey||n.metaKey||n.ctrlKey)&&!(Hd&&n.ctrlKey&&n.altKey)&&(r=qe[n.keyCode])&&r!=o){let o=t[Gr(r,n)];if(o&&o(e.state,e.dispatch,e))return!0}}return!1}}const qi=(e,t)=>!e.selection.empty&&(t&&t(e.tr.deleteSelection().scrollIntoView()),!0);function na(e,t){let{$cursor:n}=e.selection;return!n||(t?!t.endOfTextblock("backward",e):n.parentOffset>0)?null:n}const ra=(e,t,n)=>{let r=na(e,n);if(!r)return!1;let o=Gi(r);if(!o){let n=r.blockRange(),o=n&&Dt(n);return null!=o&&(t&&t(e.tr.lift(n,o).scrollIntoView()),!0)}let i=o.nodeBefore;if(fa(e,o,t,-1))return!0;if(0==r.parent.content.size&&(Ot(i,"end")||T.isSelectable(i)))for(let n=r.depth;;n--){let s=Cr(e.doc,r.before(n),r.after(n),S.empty);if(s&&s.slice.size<s.to-s.from){if(t){let n=e.tr.step(s);n.setSelection(Ot(i,"end")?N.findFrom(n.doc.resolve(n.mapping.map(o.pos,-1)),-1):T.create(n.doc,o.pos-i.nodeSize)),t(n.scrollIntoView())}return!0}if(1==n||r.node(n-1).childCount>1)break}return!(!i.isAtom||o.depth!=r.depth-1)&&(t&&t(e.tr.delete(o.pos-i.nodeSize,o.pos).scrollIntoView()),!0)},_d=(e,t,n)=>{let r=na(e,n);if(!r)return!1;let o=Gi(r);return!!o&&ia(e,o,t)},Ud=(e,t,n)=>{let r=oa(e,n);if(!r)return!1;let o=Yi(r);return!!o&&ia(e,o,t)};function ia(e,t,n){let r=t.nodeBefore,o=t.pos-1;for(;!r.isTextblock;o--){if(r.type.spec.isolating)return!1;let e=r.lastChild;if(!e)return!1;r=e}let i=t.nodeAfter,s=t.pos+1;for(;!i.isTextblock;s++){if(i.type.spec.isolating)return!1;let e=i.firstChild;if(!e)return!1;i=e}let a=Cr(e.doc,o,s,S.empty);if(!a||a.from!=o||a instanceof _&&a.slice.size>=s-o)return!1;if(n){let t=e.tr.step(a);t.setSelection(v.create(t.doc,o)),n(t.scrollIntoView())}return!0}function Ot(e,t,n=!1){for(let r=e;r;r="start"==t?r.firstChild:r.lastChild){if(r.isTextblock)return!0;if(n&&1!=r.childCount)return!1}return!1}const sa=(e,t,n)=>{let{$head:r,empty:o}=e.selection,i=r;if(!o)return!1;if(r.parent.isTextblock){if(n?!n.endOfTextblock("backward",e):r.parentOffset>0)return!1;i=Gi(r)}let s=i&&i.nodeBefore;return!(!s||!T.isSelectable(s))&&(t&&t(e.tr.setSelection(T.create(e.doc,i.pos-s.nodeSize)).scrollIntoView()),!0)};function Gi(e){if(!e.parent.type.spec.isolating)for(let t=e.depth-1;t>=0;t--){if(e.index(t)>0)return e.doc.resolve(e.before(t+1));if(e.node(t).type.spec.isolating)break}return null}function oa(e,t){let{$cursor:n}=e.selection;return!n||(t?!t.endOfTextblock("forward",e):n.parentOffset<n.parent.content.size)?null:n}const la=(e,t,n)=>{let r=oa(e,n);if(!r)return!1;let o=Yi(r);if(!o)return!1;let i=o.nodeAfter;if(fa(e,o,t,1))return!0;if(0==r.parent.content.size&&(Ot(i,"start")||T.isSelectable(i))){let n=Cr(e.doc,r.before(),r.after(),S.empty);if(n&&n.slice.size<n.to-n.from){if(t){let r=e.tr.step(n);r.setSelection(Ot(i,"start")?N.findFrom(r.doc.resolve(r.mapping.map(o.pos)),1):T.create(r.doc,r.mapping.map(o.pos))),t(r.scrollIntoView())}return!0}}return!(!i.isAtom||o.depth!=r.depth-1)&&(t&&t(e.tr.delete(o.pos,o.pos+i.nodeSize).scrollIntoView()),!0)},aa=(e,t,n)=>{let{$head:r,empty:o}=e.selection,i=r;if(!o)return!1;if(r.parent.isTextblock){if(n?!n.endOfTextblock("forward",e):r.parentOffset<r.parent.content.size)return!1;i=Yi(r)}let s=i&&i.nodeAfter;return!(!s||!T.isSelectable(s))&&(t&&t(e.tr.setSelection(T.create(e.doc,i.pos)).scrollIntoView()),!0)};function Yi(e){if(!e.parent.type.spec.isolating)for(let t=e.depth-1;t>=0;t--){let n=e.node(t);if(e.index(t)+1<n.childCount)return e.doc.resolve(e.after(t+1));if(n.type.spec.isolating)break}return null}const Jd=(e,t)=>{let n,r=e.selection,o=r instanceof T;if(o){if(r.node.isTextblock||!Ye(e.doc,r.from))return!1;n=r.from}else if(n=Sr(e.doc,r.from,-1),null==n)return!1;if(t){let r=e.tr.join(n);o&&r.setSelection(T.create(r.doc,n-e.doc.resolve(n).nodeBefore.nodeSize)),t(r.scrollIntoView())}return!0},qd=(e,t)=>{let n,r=e.selection;if(r instanceof T){if(r.node.isTextblock||!Ye(e.doc,r.to))return!1;n=r.to}else if(n=Sr(e.doc,r.to,1),null==n)return!1;return t&&t(e.tr.join(n).scrollIntoView()),!0},Gd=(e,t)=>{let{$from:n,$to:r}=e.selection,o=n.blockRange(r),i=o&&Dt(o);return null!=i&&(t&&t(e.tr.lift(o,i).scrollIntoView()),!0)},ca=(e,t)=>{let{$head:n,$anchor:r}=e.selection;return!(!n.parent.type.spec.code||!n.sameParent(r))&&(t&&t(e.tr.insertText("\n").scrollIntoView()),!0)};function Xi(e){for(let t=0;t<e.edgeCount;t++){let{type:n}=e.edge(t);if(n.isTextblock&&!n.hasRequiredAttrs())return n}return null}const Yd=(e,t)=>{let{$head:n,$anchor:r}=e.selection;if(!n.parent.type.spec.code||!n.sameParent(r))return!1;let o=n.node(-1),i=n.indexAfter(-1),s=Xi(o.contentMatchAt(i));if(!s||!o.canReplaceWith(i,i,s))return!1;if(t){let r=n.after(),o=e.tr.replaceWith(r,r,s.createAndFill());o.setSelection(N.near(o.doc.resolve(r),1)),t(o.scrollIntoView())}return!0},ua=(e,t)=>{let n=e.selection,{$from:r,$to:o}=n;if(n instanceof ae||r.parent.inlineContent||o.parent.inlineContent)return!1;let i=Xi(o.parent.contentMatchAt(o.indexAfter()));if(!i||!i.isTextblock)return!1;if(t){let n=(!r.parentOffset&&o.index()<o.parent.childCount?r:o).pos,s=e.tr.insert(n,i.createAndFill());s.setSelection(v.create(s.doc,n+1)),t(s.scrollIntoView())}return!0},da=(e,t)=>{let{$cursor:n}=e.selection;if(!n||n.parent.content.size)return!1;if(n.depth>1&&n.after()!=n.end(-1)){let r=n.before();if(Ne(e.doc,r))return t&&t(e.tr.split(r).scrollIntoView()),!0}let r=n.blockRange(),o=r&&Dt(r);return null!=o&&(t&&t(e.tr.lift(r,o).scrollIntoView()),!0)};function Xd(e){return(e,t)=>{let{$from:n,$to:r}=e.selection;if(e.selection instanceof T&&e.selection.node.isBlock)return!(!n.parentOffset||!Ne(e.doc,n.pos))&&(t&&t(e.tr.split(n.pos).scrollIntoView()),!0);if(!n.depth)return!1;let o,i,s=[],a=!1,l=!1;for(let e=n.depth;;e--){if(n.node(e).isBlock){a=n.end(e)==n.pos+(n.depth-e),l=n.start(e)==n.pos-(n.depth-e),i=Xi(n.node(e-1).contentMatchAt(n.indexAfter(e-1))),s.unshift(a&&i?{type:i}:null),o=e;break}if(1==e)return!1;s.unshift(null)}let c=e.tr;(e.selection instanceof v||e.selection instanceof ae)&&c.deleteSelection();let d=c.mapping.map(n.pos),h=Ne(c.doc,d,s.length,s);if(h||(s[0]=i?{type:i}:null,h=Ne(c.doc,d,s.length,s)),!h)return!1;if(c.split(d,s.length,s),!a&&l&&n.node(o).type!=i){let e=c.mapping.map(n.before(o)),t=c.doc.resolve(e);i&&n.node(o-1).canReplaceWith(t.index(),t.index()+1,i)&&c.setNodeMarkup(c.mapping.map(n.before(o)),i)}return t&&t(c.scrollIntoView()),!0}}const Qd=Xd(),Zd=(e,t)=>{let n,{$from:r,to:o}=e.selection,i=r.sharedDepth(o);return 0!=i&&(n=r.before(i),t&&t(e.tr.setSelection(T.create(e.doc,n))),!0)};function ef(e,t,n){let r=t.nodeBefore,o=t.nodeAfter,i=t.index();return!!(r&&o&&r.type.compatibleContent(o.type))&&(!r.content.size&&t.parent.canReplace(i-1,i)?(n&&n(e.tr.delete(t.pos-r.nodeSize,t.pos).scrollIntoView()),!0):!(!t.parent.canReplace(i,i+1)||!o.isTextblock&&!Ye(e.doc,t.pos))&&(n&&n(e.tr.join(t.pos).scrollIntoView()),!0))}function fa(e,t,n,r){let o,i,s=t.nodeBefore,a=t.nodeAfter,l=s.type.spec.isolating||a.type.spec.isolating;if(!l&&ef(e,t,n))return!0;let c=!l&&t.parent.canReplace(t.index(),t.index()+1);if(c&&(o=(i=s.contentMatchAt(s.childCount)).findWrapping(a.type))&&i.matchType(o[0]||a.type).validEnd){if(n){let r=t.pos+a.nodeSize,i=b.empty;for(let e=o.length-1;e>=0;e--)i=b.from(o[e].create(null,i));i=b.from(s.copy(i));let l=e.tr.step(new U(t.pos-1,r,t.pos,r,new S(i,1,0),o.length,!0)),c=l.doc.resolve(r+2*o.length);c.nodeAfter&&c.nodeAfter.type==s.type&&Ye(l.doc,c.pos)&&l.join(c.pos),n(l.scrollIntoView())}return!0}let d=a.type.spec.isolating||r>0&&l?null:N.findFrom(t,1),h=d&&d.$from.blockRange(d.$to),p=h&&Dt(h);if(null!=p&&p>=t.depth)return n&&n(e.tr.lift(h,p).scrollIntoView()),!0;if(c&&Ot(a,"start",!0)&&Ot(s,"end")){let r=s,o=[];for(;o.push(r),!r.isTextblock;)r=r.lastChild;let i=a,l=1;for(;!i.isTextblock;i=i.firstChild)l++;if(r.canReplace(r.childCount,r.childCount,i.content)){if(n){let r=b.empty;for(let e=o.length-1;e>=0;e--)r=b.from(o[e].copy(r));n(e.tr.step(new U(t.pos-o.length,t.pos+a.nodeSize,t.pos+l,t.pos+a.nodeSize-l,new S(r,o.length,0),0,!0)).scrollIntoView())}return!0}}return!1}function ha(e){return function(t,n){let r=t.selection,o=e<0?r.$from:r.$to,i=o.depth;for(;o.node(i).isInline;){if(!i)return!1;i--}return!!o.node(i).isTextblock&&(n&&n(t.tr.setSelection(v.create(t.doc,e<0?o.start(i):o.end(i)))),!0)}}const tf=ha(-1),nf=ha(1);function rf(e,t=null){return function(n,r){let{$from:o,$to:i}=n.selection,s=o.blockRange(i),a=s&&zi(s,e,t);return!!a&&(r&&r(n.tr.wrap(s,a).scrollIntoView()),!0)}}function ko(e,t=null){return function(n,r){let o=!1;for(let r=0;r<n.selection.ranges.length&&!o;r++){let{$from:{pos:i},$to:{pos:s}}=n.selection.ranges[r];n.doc.nodesBetween(i,s,(r,i)=>{if(o)return!1;if(r.isTextblock&&!r.hasMarkup(e,t))if(r.type==e)o=!0;else{let t=n.doc.resolve(i),r=t.index();o=t.parent.canReplaceWith(r,r+1,e)}})}if(!o)return!1;if(r){let o=n.tr;for(let r=0;r<n.selection.ranges.length;r++){let{$from:{pos:i},$to:{pos:s}}=n.selection.ranges[r];o.setBlockType(i,s,e,t)}r(o.scrollIntoView())}return!0}}function Qi(...e){return function(t,n,r){for(let o=0;o<e.length;o++)if(e[o](t,n,r))return!0;return!1}}function sf(e,t=null){return function(n,r){let{$from:o,$to:i}=n.selection,s=o.blockRange(i);if(!s)return!1;let a=r?n.tr:null;return!!of(a,s,e,t)&&(r&&r(a.scrollIntoView()),!0)}}function of(e,t,n,r=null){let o=!1,i=t,s=t.$from.doc;if(t.depth>=2&&t.$from.node(t.depth-1).type.compatibleContent(n)&&0==t.startIndex){if(0==t.$from.index(t.depth-1))return!1;let e=s.resolve(t.start-2);i=new Ln(e,e,t.depth),t.endIndex<t.parent.childCount&&(t=new Ln(t.$from,s.resolve(t.$to.end(t.depth)),t.depth)),o=!0}let a=zi(i,n,r,t);return!!a&&(e&&lf(e,t,a,o,n),!0)}function lf(e,t,n,r,o){let i=b.empty;for(let e=n.length-1;e>=0;e--)i=b.from(n[e].type.create(n[e].attrs,i));e.step(new U(t.start-(r?2:0),t.end,t.start,t.end,new S(i,0,0),n.length,!0));let s=0;for(let e=0;e<n.length;e++)n[e].type==o&&(s=e+1);let a=n.length-s,l=t.start+n.length-(r?2:0),c=t.parent;for(let n=t.startIndex,r=t.endIndex,o=!0;n<r;n++,o=!1)!o&&Ne(e.doc,l,a)&&(e.split(l,a),l+=2*a),l+=c.child(n).nodeSize;return e}function af(e){return function(t,n){let{$from:r,$to:o}=t.selection,i=r.blockRange(o,t=>t.childCount>0&&t.firstChild.type==e);return!!i&&(!n||(r.node(i.depth-1).type==e?cf(t,n,e,i):uf(t,n,i)))}}function cf(e,t,n,r){let o=e.tr,i=r.end,s=r.$to.end(r.depth);i<s&&(o.step(new U(i-1,s,i,s,new S(b.from(n.create(null,r.parent.copy())),1,0),1,!0)),r=new Ln(o.doc.resolve(r.$from.pos),o.doc.resolve(s),r.depth));const a=Dt(r);if(null==a)return!1;o.lift(r,a);let l=o.doc.resolve(o.mapping.map(i,-1)-1);return Ye(o.doc,l.pos)&&l.nodeBefore.type==l.nodeAfter.type&&o.join(l.pos),t(o.scrollIntoView()),!0}function uf(e,t,n){let r=e.tr,o=n.parent;for(let e=n.end,t=n.endIndex-1,i=n.startIndex;t>i;t--)e-=o.child(t).nodeSize,r.delete(e-1,e+1);let i=r.doc.resolve(n.start),s=i.nodeAfter;if(r.mapping.map(n.end)!=n.start+i.nodeAfter.nodeSize)return!1;let a=0==n.startIndex,l=n.endIndex==o.childCount,c=i.node(-1),d=i.index(-1);if(!c.canReplace(d+(a?0:1),d+1,s.content.append(l?b.empty:b.from(o))))return!1;let h=i.pos,p=h+s.nodeSize;return r.step(new U(h-(a?1:0),p+(l?1:0),h+1,p-1,new S((a?b.empty:b.from(o.copy(b.empty))).append(l?b.empty:b.from(o.copy(b.empty))),a?0:1,l?0:1),a?0:1)),t(r.scrollIntoView()),!0}function df(e){return function(t,n){let{$from:r,$to:o}=t.selection,i=r.blockRange(o,t=>t.childCount>0&&t.firstChild.type==e);if(!i)return!1;let s=i.startIndex;if(0==s)return!1;let a=i.parent,l=a.child(s-1);if(l.type!=e)return!1;if(n){let r=l.lastChild&&l.lastChild.type==a.type,o=b.from(r?e.create():null),s=new S(b.from(e.create(null,b.from(a.type.create(null,o)))),r?3:1,0),c=i.start,d=i.end;n(t.tr.step(new U(c-(r?3:1),d,c,d,s,1,!0)).scrollIntoView())}return!0}}Qi(qi,ra,sa),Qi(qi,la,aa),Qi(ca,ua,da,Qd),typeof navigator<"u"?/Mac|iP(hone|[oa]d)/.test(navigator.platform):typeof os<"u"&&os.platform&&os.platform();var ff=Object.defineProperty,pa=(e,t)=>{for(var n in t)ff(e,n,{get:t[n],enumerable:!0})};function vr(e){const{state:t,transaction:n}=e;let{selection:r}=n,{doc:o}=n,{storedMarks:i}=n;return{...t,apply:t.apply.bind(t),applyTransaction:t.applyTransaction.bind(t),plugins:t.plugins,schema:t.schema,reconfigure:t.reconfigure.bind(t),toJSON:t.toJSON.bind(t),get storedMarks(){return i},get selection(){return r},get doc(){return o},get tr(){return r=n.selection,o=n.doc,i=n.storedMarks,n}}}var Or=class{constructor(e){this.editor=e.editor,this.rawCommands=this.editor.extensionManager.commands,this.customState=e.state}get hasCustomState(){return!!this.customState}get state(){return this.customState||this.editor.state}get commands(){const{rawCommands:e,editor:t,state:n}=this,{view:r}=t,{tr:o}=n,i=this.buildProps(o);return Object.fromEntries(Object.entries(e).map(([e,t])=>[e,(...e)=>{const n=t(...e)(i);return!o.getMeta("preventDispatch")&&!this.hasCustomState&&r.dispatch(o),n}]))}get chain(){return()=>this.createChain()}get can(){return()=>this.createCan()}createChain(e,t=!0){const{rawCommands:n,editor:r,state:o}=this,{view:i}=r,s=[],a=!!e,l=e||o.tr,c={...Object.fromEntries(Object.entries(n).map(([e,n])=>[e,(...e)=>{const r=this.buildProps(l,t),o=n(...e)(r);return s.push(o),c}])),run:()=>(!a&&t&&!l.getMeta("preventDispatch")&&!this.hasCustomState&&i.dispatch(l),s.every(e=>!0===e))};return c}createCan(e){const{rawCommands:t,state:n}=this,r=!1,o=e||n.tr,i=this.buildProps(o,r);return{...Object.fromEntries(Object.entries(t).map(([e,t])=>[e,(...e)=>t(...e)({...i,dispatch:void 0})])),chain:()=>this.createChain(o,r)}}buildProps(e,t=!0){const{rawCommands:n,editor:r,state:o}=this,{view:i}=r,s={tr:e,editor:r,view:i,state:vr({state:o,transaction:e}),dispatch:t?()=>{}:void 0,chain:()=>this.createChain(e,t),can:()=>this.createCan(e),get commands(){return Object.fromEntries(Object.entries(n).map(([e,t])=>[e,(...e)=>t(...e)(s)]))}};return s}},hf=class{constructor(){this.callbacks={}}on(e,t){return this.callbacks[e]||(this.callbacks[e]=[]),this.callbacks[e].push(t),this}emit(e,...t){const n=this.callbacks[e];return n&&n.forEach(e=>e.apply(this,t)),this}off(e,t){const n=this.callbacks[e];return n&&(t?this.callbacks[e]=n.filter(e=>e!==t):delete this.callbacks[e]),this}once(e,t){const n=(...r)=>{this.off(e,n),t.apply(this,r)};return this.on(e,n)}removeAllListeners(){this.callbacks={}}};function ma(e,t){const n=new bl(e);return t.forEach(e=>{e.steps.forEach(e=>{n.step(e)})}),n}var ga=e=>{const t=e.childNodes;for(let n=t.length-1;n>=0;n-=1){const r=t[n];3===r.nodeType&&r.nodeValue&&/^(\n\s\s|\n)$/.test(r.nodeValue)?e.removeChild(r):1===r.nodeType&&ga(r)}return e};function kn(e){if(typeof window>"u")throw new Error("[tiptap error]: there is no window object available, so this function cannot be used");const t=`<body>${e}</body>`,n=(new window.DOMParser).parseFromString(t,"text/html").body;return ga(n)}function rn(e,t,n){if(e instanceof be||e instanceof b)return e;n={slice:!0,parseOptions:{},...n};const r="string"==typeof e;if("object"==typeof e&&null!==e)try{if(Array.isArray(e)&&e.length>0)return b.fromArray(e.map(e=>t.nodeFromJSON(e)));const r=t.nodeFromJSON(e);return n.errorOnInvalidContent&&r.check(),r}catch(e){if(n.errorOnInvalidContent)throw new Error("[tiptap error]: Invalid JSON content",{cause:e});return rn("",t,n)}if(r){if(n.errorOnInvalidContent){let r=!1,o="";const i=new nl({topNode:t.spec.topNode,marks:t.spec.marks,nodes:t.spec.nodes.append({__tiptap__private__unknown__catch__all__node:{content:"inline*",group:"block",parseDOM:[{tag:"*",getAttrs:e=>(r=!0,o="string"==typeof e?e:e.outerHTML,null)}]}})});if(n.slice?Ke.fromSchema(i).parseSlice(kn(e),n.parseOptions):Ke.fromSchema(i).parse(kn(e),n.parseOptions),n.errorOnInvalidContent&&r)throw new Error("[tiptap error]: Invalid HTML content",{cause:new Error(`Invalid element found: ${o}`)})}const r=Ke.fromSchema(t);return n.slice?r.parseSlice(kn(e),n.parseOptions).content:r.parse(kn(e),n.parseOptions)}return rn("",t,n)}function Ci(e,t,n={},r={}){return rn(e,t,{slice:!1,parseOptions:n,errorOnInvalidContent:r.errorOnInvalidContent})}function pf(e){for(let t=0;t<e.edgeCount;t+=1){const{type:n}=e.edge(t);if(n.isTextblock&&!n.hasRequiredAttrs())return n}return null}function mf(e,t,n){const r=[];return e.nodesBetween(t.from,t.to,(e,t)=>{n(e)&&r.push({node:e,pos:t})}),r}function gf(e,t){for(let n=e.depth;n>0;n-=1){const r=e.node(n);if(t(r))return{pos:n>0?e.before(n):0,start:e.start(n),depth:n,node:r}}}function Ar(e){return t=>gf(t.$from,e)}function C(e,t,n){return void 0===e.config[t]&&e.parent?C(e.parent,t,n):"function"==typeof e.config[t]?e.config[t].bind({...n,parent:e.parent?C(e.parent,t,n):null}):e.config[t]}function Zi(e){return e.map(e=>{const t=C(e,"addExtensions",{name:e.name,options:e.options,storage:e.storage});return t?[e,...Zi(t())]:e}).flat(10)}function es(e,t){const n=ht.fromSchema(t).serializeFragment(e),r=document.implementation.createHTMLDocument().createElement("div");return r.appendChild(n),r.innerHTML}function ya(e){return"function"==typeof e}function R(e,t=void 0,...n){return ya(e)?t?e.bind(t)(...n):e(...n):e}function yf(e={}){return 0===Object.keys(e).length&&e.constructor===Object}function sn(e){return{baseExtensions:e.filter(e=>"extension"===e.type),nodeExtensions:e.filter(e=>"node"===e.type),markExtensions:e.filter(e=>"mark"===e.type)}}function ba(e){const t=[],{nodeExtensions:n,markExtensions:r}=sn(e),o=[...n,...r],i={default:null,validate:void 0,rendered:!0,renderHTML:null,parseHTML:null,keepOnSplit:!0,isRequired:!1};return e.forEach(e=>{const n=C(e,"addGlobalAttributes",{name:e.name,options:e.options,storage:e.storage,extensions:o});n&&n().forEach(e=>{e.types.forEach(n=>{Object.entries(e.attributes).forEach(([e,r])=>{t.push({type:n,name:e,attribute:{...i,...r}})})})})}),o.forEach(e=>{const n={name:e.name,options:e.options,storage:e.storage},r=C(e,"addAttributes",n);if(!r)return;const o=r();Object.entries(o).forEach(([n,r])=>{const o={...i,...r};"function"==typeof o?.default&&(o.default=o.default()),o?.isRequired&&void 0===o?.default&&delete o.default,t.push({type:e.name,name:n,attribute:o})})}),t}function W(...e){return e.filter(e=>!!e).reduce((e,t)=>{const n={...e};return Object.entries(t).forEach(([e,t])=>{if(n[e])if("class"===e){const r=t?String(t).split(" "):[],o=n[e]?n[e].split(" "):[],i=r.filter(e=>!o.includes(e));n[e]=[...o,...i].join(" ")}else if("style"===e){const r=t?t.split(";").map(e=>e.trim()).filter(Boolean):[],o=n[e]?n[e].split(";").map(e=>e.trim()).filter(Boolean):[],i=new Map;o.forEach(e=>{const[t,n]=e.split(":").map(e=>e.trim());i.set(t,n)}),r.forEach(e=>{const[t,n]=e.split(":").map(e=>e.trim());i.set(t,n)}),n[e]=Array.from(i.entries()).map(([e,t])=>`${e}: ${t}`).join("; ")}else n[e]=t;else n[e]=t}),n},{})}function Wn(e,t){return t.filter(t=>t.type===e.type.name).filter(e=>e.attribute.rendered).map(t=>t.attribute.renderHTML?t.attribute.renderHTML(e.attrs)||{}:{[t.name]:e.attrs[t.name]}).reduce((e,t)=>W(e,t),{})}function bf(e){return"string"!=typeof e?e:e.match(/^[+-]?(?:\d*\.)?\d+$/)?Number(e):"true"===e||"false"!==e&&e}function xo(e,t){return"style"in e?e:{...e,getAttrs:n=>{const r=e.getAttrs?e.getAttrs(n):e.attrs;if(!1===r)return!1;const o=t.reduce((e,t)=>{const r=t.attribute.parseHTML?t.attribute.parseHTML(n):bf(n.getAttribute(t.name));return null==r?e:{...e,[t.name]:r}},{});return{...r,...o}}}}function So(e){return Object.fromEntries(Object.entries(e).filter(([e,t])=>("attrs"!==e||!yf(t))&&null!=t))}function kf(e,t){var n;const r=ba(e),{nodeExtensions:o,markExtensions:i}=sn(e),s=null==(n=o.find(e=>C(e,"topNode")))?void 0:n.name,a=Object.fromEntries(o.map(n=>{const o=r.filter(e=>e.type===n.name),i={name:n.name,options:n.options,storage:n.storage,editor:t},s=So({...e.reduce((e,t)=>{const r=C(t,"extendNodeSchema",i);return{...e,...r?r(n):{}}},{}),content:R(C(n,"content",i)),marks:R(C(n,"marks",i)),group:R(C(n,"group",i)),inline:R(C(n,"inline",i)),atom:R(C(n,"atom",i)),selectable:R(C(n,"selectable",i)),draggable:R(C(n,"draggable",i)),code:R(C(n,"code",i)),whitespace:R(C(n,"whitespace",i)),linebreakReplacement:R(C(n,"linebreakReplacement",i)),defining:R(C(n,"defining",i)),isolating:R(C(n,"isolating",i)),attrs:Object.fromEntries(o.map(e=>{var t,n;return[e.name,{default:null==(t=e?.attribute)?void 0:t.default,validate:null==(n=e?.attribute)?void 0:n.validate}]}))}),a=R(C(n,"parseHTML",i));a&&(s.parseDOM=a.map(e=>xo(e,o)));const l=C(n,"renderHTML",i);l&&(s.toDOM=e=>l({node:e,HTMLAttributes:Wn(e,o)}));const c=C(n,"renderText",i);return c&&(s.toText=c),[n.name,s]})),l=Object.fromEntries(i.map(n=>{const o=r.filter(e=>e.type===n.name),i={name:n.name,options:n.options,storage:n.storage,editor:t},s=So({...e.reduce((e,t)=>{const r=C(t,"extendMarkSchema",i);return{...e,...r?r(n):{}}},{}),inclusive:R(C(n,"inclusive",i)),excludes:R(C(n,"excludes",i)),group:R(C(n,"group",i)),spanning:R(C(n,"spanning",i)),code:R(C(n,"code",i)),attrs:Object.fromEntries(o.map(e=>{var t,n;return[e.name,{default:null==(t=e?.attribute)?void 0:t.default,validate:null==(n=e?.attribute)?void 0:n.validate}]}))}),a=R(C(n,"parseHTML",i));a&&(s.parseDOM=a.map(e=>xo(e,o)));const l=C(n,"renderHTML",i);return l&&(s.toDOM=e=>l({mark:e,HTMLAttributes:Wn(e,o)})),[n.name,s]}));return new nl({topNode:s,nodes:a,marks:l})}function xf(e){const t=e.filter((t,n)=>e.indexOf(t)!==n);return Array.from(new Set(t))}function ts(e){return e.sort((e,t)=>{const n=C(e,"priority")||100,r=C(t,"priority")||100;return n>r?-1:n<r?1:0})}function ka(e){const t=ts(Zi(e));return xf(t.map(e=>e.name)).length,t}function xa(e,t,n){const{from:r,to:o}=t,{blockSeparator:i="\n\n",textSerializers:s={}}=n||{};let a="";return e.nodesBetween(r,o,(e,n,l,c)=>{var d;e.isBlock&&n>r&&(a+=i);const h=s?.[e.type.name];if(h)return l&&(a+=h({node:e,pos:n,parent:l,index:c,range:t})),!1;e.isText&&(a+=null==(d=e?.text)?void 0:d.slice(Math.max(r,n)-n,o-n))}),a}function Sf(e,t){return xa(e,{from:0,to:e.content.size},t)}function Sa(e){return Object.fromEntries(Object.entries(e.nodes).filter(([,e])=>e.spec.toText).map(([e,t])=>[e,t.spec.toText]))}function Ie(e,t){if("string"==typeof e){if(!t.marks[e])throw Error(`There is no mark type named '${e}'. Maybe you forgot to add the extension?`);return t.marks[e]}return e}function Ca(e,t){const n=Ie(t,e.schema),{from:r,to:o,empty:i}=e.selection,s=[];i?(e.storedMarks&&s.push(...e.storedMarks),s.push(...e.selection.$head.marks())):e.doc.nodesBetween(r,o,e=>{s.push(...e.marks)});const a=s.find(e=>e.type.name===n.name);return a?{...a.attrs}:{}}function j(e,t){if("string"==typeof e){if(!t.nodes[e])throw Error(`There is no node type named '${e}'. Maybe you forgot to add the extension?`);return t.nodes[e]}return e}function Cf(e,t){const n=j(t,e.schema),{from:r,to:o}=e.selection,i=[];e.doc.nodesBetween(r,o,e=>{i.push(e)});const s=i.reverse().find(e=>e.type.name===n.name);return s?{...s.attrs}:{}}function Nr(e,t){return t.nodes[e]?"node":t.marks[e]?"mark":null}function Ma(e,t){const n=Nr("string"==typeof t?t:t.name,e.schema);return"node"===n?Cf(e,t):"mark"===n?Ca(e,t):{}}function Mf(e,t=JSON.stringify){const n={};return e.filter(e=>{const r=t(e);return!Object.prototype.hasOwnProperty.call(n,r)&&(n[r]=!0)})}function wf(e){const t=Mf(e);return 1===t.length?t:t.filter((e,n)=>!t.filter((e,t)=>t!==n).some(t=>e.oldRange.from>=t.oldRange.from&&e.oldRange.to<=t.oldRange.to&&e.newRange.from>=t.newRange.from&&e.newRange.to<=t.newRange.to))}function wa(e){const{mapping:t,steps:n}=e,r=[];return t.maps.forEach((e,o)=>{const i=[];if(e.ranges.length)e.forEach((e,t)=>{i.push({from:e,to:t})});else{const{from:e,to:t}=n[o];if(void 0===e||void 0===t)return;i.push({from:e,to:t})}i.forEach(({from:e,to:n})=>{const i=t.slice(o).map(e,-1),s=t.slice(o).map(n),a=t.invert().map(i,-1),l=t.invert().map(s);r.push({oldRange:{from:a,to:l},newRange:{from:i,to:s}})})}),wf(r)}function ns(e){return"[object RegExp]"===Object.prototype.toString.call(e)}function Kn(e,t,n={strict:!0}){const r=Object.keys(t);return!r.length||r.every(r=>n.strict?t[r]===e[r]:ns(t[r])?t[r].test(e[r]):t[r]===e[r])}function Ta(e,t,n={}){return e.find(e=>e.type===t&&Kn(Object.fromEntries(Object.keys(n).map(t=>[t,e.attrs[t]])),n))}function Co(e,t,n={}){return!!Ta(e,t,n)}function rs(e,t,n){var r;if(!e||!t)return;let o=e.parent.childAfter(e.parentOffset);if((!o.node||!o.node.marks.some(e=>e.type===t))&&(o=e.parent.childBefore(e.parentOffset)),!o.node||!o.node.marks.some(e=>e.type===t)||(n=n||(null==(r=o.node.marks[0])?void 0:r.attrs),!Ta([...o.node.marks],t,n)))return;let i=o.index,s=e.start()+o.offset,a=i+1,l=s+o.node.nodeSize;for(;i>0&&Co([...e.parent.child(i-1).marks],t,n);)i-=1,s-=e.parent.child(i).nodeSize;for(;a<e.parent.childCount&&Co([...e.parent.child(a).marks],t,n);)l+=e.parent.child(a).nodeSize,a+=1;return{from:s,to:l}}function is(e,t,n){const r=[];return e===t?n.resolve(e).marks().forEach(t=>{const o=rs(n.resolve(e),t.type);o&&r.push({mark:t,...o})}):n.nodesBetween(e,t,(e,t)=>{!e||void 0===e?.nodeSize||r.push(...e.marks.map(n=>({from:t,to:t+e.nodeSize,mark:n})))}),r}var Tf=(e,t,n,r=20)=>{const o=e.doc.resolve(n);let i=r,s=null;for(;i>0&&null===s;){const e=o.node(i);e?.type.name===t?s=e:i-=1}return[s,i]};function Yr(e,t){return t.nodes[e]||t.marks[e]||null}function An(e,t,n){return Object.fromEntries(Object.entries(n).filter(([n])=>{const r=e.find(e=>e.type===t&&e.name===n);return!!r&&r.attribute.keepOnSplit}))}var Ef=(e,t=500)=>{let n="";const r=e.parentOffset;return e.parent.nodesBetween(Math.max(0,r-t),r,(e,t,o,i)=>{var s,a;const l=(null==(a=(s=e.type.spec).toText)?void 0:a.call(s,{node:e,pos:t,parent:o,index:i}))||e.textContent||"%leaf%";n+=e.isAtom&&!e.isText?l:l.slice(0,Math.max(0,r-t))}),n};function Mi(e,t,n={}){const{empty:r,ranges:o}=e.selection,i=t?Ie(t,e.schema):null;if(r)return!!(e.storedMarks||e.selection.$from.marks()).filter(e=>!i||i.name===e.type.name).find(e=>Kn(e.attrs,n,{strict:!1}));let s=0;const a=[];if(o.forEach(({$from:t,$to:n})=>{const r=t.pos,o=n.pos;e.doc.nodesBetween(r,o,(e,t)=>{if(!e.isText&&!e.marks.length)return;const n=Math.max(r,t),i=Math.min(o,t+e.nodeSize);s+=i-n,a.push(...e.marks.map(e=>({mark:e,from:n,to:i})))})}),0===s)return!1;const l=a.filter(e=>!i||i.name===e.mark.type.name).filter(e=>Kn(e.mark.attrs,n,{strict:!1})).reduce((e,t)=>e+t.to-t.from,0),c=a.filter(e=>!i||e.mark.type!==i&&e.mark.type.excludes(i)).reduce((e,t)=>e+t.to-t.from,0);return(l>0?l+c:l)>=s}function Ge(e,t,n={}){const{from:r,to:o,empty:i}=e.selection,s=t?j(t,e.schema):null,a=[];e.doc.nodesBetween(r,o,(e,t)=>{if(e.isText)return;const n=Math.max(r,t),i=Math.min(o,t+e.nodeSize);a.push({node:e,from:n,to:i})});const l=o-r,c=a.filter(e=>!s||s.name===e.node.type.name).filter(e=>Kn(e.node.attrs,n,{strict:!1}));return i?!!c.length:c.reduce((e,t)=>e+t.to-t.from,0)>=l}function vf(e,t,n={}){if(!t)return Ge(e,null,n)||Mi(e,null,n);const r=Nr(t,e.schema);return"node"===r?Ge(e,t,n):"mark"===r&&Mi(e,t,n)}var Of=(e,t)=>{const{$from:n,$to:r,$anchor:o}=e.selection;if(t){const n=Ar(e=>e.type.name===t)(e.selection);if(!n)return!1;const r=e.doc.resolve(n.pos+1);return o.pos+1===r.end()}return!(r.parentOffset<r.parent.nodeSize-2||n.pos!==r.pos)},Af=e=>{const{$from:t,$to:n}=e.selection;return!(t.parentOffset>0||t.pos!==n.pos)};function Mo(e,t){return Array.isArray(t)?t.some(t=>("string"==typeof t?t:t.name)===e.name):t}function wo(e,t){const{nodeExtensions:n}=sn(t),r=n.find(t=>t.name===e);if(!r)return!1;const o=R(C(r,"group",{name:r.name,options:r.options,storage:r.storage}));return"string"==typeof o&&o.split(" ").includes("list")}function Dr(e,{checkChildren:t=!0,ignoreWhitespace:n=!1}={}){var r;if(n){if("hardBreak"===e.type.name)return!0;if(e.isText)return/^\s*$/m.test(null!=(r=e.text)?r:"")}if(e.isText)return!e.text;if(e.isAtom||e.isLeaf)return!1;if(0===e.content.childCount)return!0;if(t){let r=!0;return e.content.forEach(e=>{!1!==r&&(Dr(e,{ignoreWhitespace:n,checkChildren:t})||(r=!1))}),r}return!1}function Nf(e){return e instanceof T}function Ea(e){return e instanceof v}function nt(e=0,t=0,n=0){return Math.min(Math.max(e,t),n)}function va(e,t=null){if(!t)return null;const n=N.atStart(e),r=N.atEnd(e);if("start"===t||!0===t)return n;if("end"===t)return r;const o=n.from,i=r.to;return"all"===t?v.create(e,nt(0,o,i),nt(e.content.size,o,i)):v.create(e,nt(t,o,i),nt(t,o,i))}function Df(e,t,n){const r=e.steps.length-1;if(r<t)return;const o=e.steps[r];if(!(o instanceof _||o instanceof U))return;const i=e.mapping.maps[r];let s=0;i.forEach((e,t,n,r)=>{0===s&&(s=r)}),e.setSelection(N.near(e.doc.resolve(s),n))}var ss=class{constructor(e){var t;this.find=e.find,this.handler=e.handler,this.undoable=null==(t=e.undoable)||t}},If=(e,t)=>{if(ns(t))return t.exec(e);const n=t(e);if(!n)return null;const r=[n.text];return r.index=n.index,r.input=e,r.data=n.data,n.replaceWith&&(n.text.includes(n.replaceWith),r.push(n.replaceWith)),r};function xn(e){var t;const{editor:n,from:r,to:o,text:i,rules:s,plugin:a}=e,{view:l}=n;if(l.composing)return!1;const c=l.state.doc.resolve(r);if(c.parent.type.spec.code||null!=(t=c.nodeBefore||c.nodeAfter)&&t.marks.find(e=>e.type.spec.code))return!1;let d=!1;const h=Ef(c)+i;return s.forEach(e=>{if(d)return;const t=If(h,e.find);if(!t)return;const s=l.state.tr,c=vr({state:l.state,transaction:s}),p={from:r-(t[0].length-i.length),to:o},{commands:u,chain:f,can:m}=new Or({editor:n,state:c});null===e.handler({state:c,range:p,match:t,commands:u,chain:f,can:m})||!s.steps.length||(e.undoable&&s.setMeta(a,{transform:s,from:r,to:o,text:i}),l.dispatch(s),d=!0)}),d}function Rf(e){const{editor:t,rules:n}=e,r=new V({state:{init:()=>null,apply(e,o,i){const s=e.getMeta(r);if(s)return s;const a=e.getMeta("applyInputRules");return!!a&&setTimeout(()=>{let{text:e}=a;"string"==typeof e||(e=es(b.from(e),i.schema));const{from:o}=a,s=o+e.length;xn({editor:t,from:o,to:s,text:e,rules:n,plugin:r})}),e.selectionSet||e.docChanged?null:o}},props:{handleTextInput:(e,o,i,s)=>xn({editor:t,from:o,to:i,text:s,rules:n,plugin:r}),handleDOMEvents:{compositionend:e=>(setTimeout(()=>{const{$cursor:o}=e.state.selection;o&&xn({editor:t,from:o.pos,to:o.pos,text:"",rules:n,plugin:r})}),!1)},handleKeyDown(e,o){if("Enter"!==o.key)return!1;const{$cursor:i}=e.state.selection;return!!i&&xn({editor:t,from:i.pos,to:i.pos,text:"\n",rules:n,plugin:r})}},isInputRules:!0});return r}function Pf(e){return Object.prototype.toString.call(e).slice(8,-1)}function Sn(e){return"Object"===Pf(e)&&(e.constructor===Object&&Object.getPrototypeOf(e)===Object.prototype)}function Oa(e,t){const n={...e};return Sn(e)&&Sn(t)&&Object.keys(t).forEach(r=>{Sn(t[r])&&Sn(e[r])?n[r]=Oa(e[r],t[r]):n[r]=t[r]}),n}var ls=class{constructor(e={}){this.type="extendable",this.parent=null,this.child=null,this.name="",this.config={name:this.name},this.config={...this.config,...e},this.name=this.config.name}get options(){return{...R(C(this,"addOptions",{name:this.name}))||{}}}get storage(){return{...R(C(this,"addStorage",{name:this.name,options:this.options}))||{}}}configure(e={}){const t=this.extend({...this.config,addOptions:()=>Oa(this.options,e)});return t.name=this.name,t.parent=this.parent,t}extend(e={}){const t=new this.constructor({...this.config,...e});return t.parent=this,this.child=t,t.name="name"in e?e.name:t.parent.name,t}},pt=class e extends ls{constructor(){super(...arguments),this.type="mark"}static create(t={}){const n="function"==typeof t?t():t;return new e(n)}static handleExit({editor:e,mark:t}){const{tr:n}=e.state,r=e.state.selection.$from;if(r.pos===r.end()){const o=r.marks();if(!o.find(e=>e?.type.name===t.name))return!1;const i=o.find(e=>e?.type.name===t.name);return i&&n.removeStoredMark(i),n.insertText(" ",r.pos),e.view.dispatch(n),!0}return!1}configure(e){return super.configure(e)}extend(e){const t="function"==typeof e?e():e;return super.extend(t)}};function Lf(e){return"number"==typeof e}var Bf=class{constructor(e){this.find=e.find,this.handler=e.handler}},zf=(e,t,n)=>{if(ns(t))return[...e.matchAll(t)];const r=t(e,n);return r?r.map(t=>{const n=[t.text];return n.index=t.index,n.input=e,n.data=t.data,t.replaceWith&&(t.text.includes(t.replaceWith),n.push(t.replaceWith)),n}):[]};function Ff(e){const{editor:t,state:n,from:r,to:o,rule:i,pasteEvent:s,dropEvent:a}=e,{commands:l,chain:c,can:d}=new Or({editor:t,state:n}),h=[];return n.doc.nodesBetween(r,o,(e,t)=>{var p,u,f,m,g;if(null!=(u=null==(p=e.type)?void 0:p.spec)&&u.code||!(e.isText||e.isTextblock||e.isInline))return;const y=null!=(g=null!=(m=null==(f=e.content)?void 0:f.size)?m:e.nodeSize)?g:0,b=Math.max(r,t),k=Math.min(o,t+y);if(b>=k)return;const w=e.isText?e.text||"":e.textBetween(b-t,k-t,void 0,"");zf(w,i.find,s).forEach(e=>{if(void 0===e.index)return;const t=b+e.index+1,r=t+e[0].length,o={from:n.tr.mapping.map(t),to:n.tr.mapping.map(r)},p=i.handler({state:n,range:o,match:e,commands:l,chain:c,can:d,pasteEvent:s,dropEvent:a});h.push(p)})}),h.every(e=>null!==e)}var Cn=null,$f=e=>{var t;const n=new ClipboardEvent("paste",{clipboardData:new DataTransfer});return null==(t=n.clipboardData)||t.setData("text/html",e),n};function Vf(e){const{editor:t,rules:n}=e;let r,o=null,i=!1,s=!1,a=typeof ClipboardEvent<"u"?new ClipboardEvent("paste"):null;try{r=typeof DragEvent<"u"?new DragEvent("drop"):null}catch{r=null}const l=({state:e,from:n,to:o,rule:i,pasteEvt:s})=>{const l=e.tr,c=vr({state:e,transaction:l});if(Ff({editor:t,state:c,from:Math.max(n-1,0),to:o.b-1,rule:i,pasteEvent:s,dropEvent:r})&&l.steps.length){try{r=typeof DragEvent<"u"?new DragEvent("drop"):null}catch{r=null}return a=typeof ClipboardEvent<"u"?new ClipboardEvent("paste"):null,l}};return n.map(e=>new V({view(e){const n=n=>{var r;o=null!=(r=e.dom.parentElement)&&r.contains(n.target)?e.dom.parentElement:null,o&&(Cn=t)},r=()=>{Cn&&(Cn=null)};return window.addEventListener("dragstart",n),window.addEventListener("dragend",r),{destroy(){window.removeEventListener("dragstart",n),window.removeEventListener("dragend",r)}}},props:{handleDOMEvents:{drop:(e,t)=>{if(s=o===e.dom.parentElement,r=t,!s){const e=Cn;e?.isEditable&&setTimeout(()=>{const t=e.state.selection;t&&e.commands.deleteRange({from:t.from,to:t.to})},10)}return!1},paste:(e,t)=>{var n;const r=null==(n=t.clipboardData)?void 0:n.getData("text/html");return a=t,i=!!r?.includes("data-pm-slice"),!1}}},appendTransaction:(t,n,r)=>{const o=t[0],c="paste"===o.getMeta("uiEvent")&&!i,d="drop"===o.getMeta("uiEvent")&&!s,h=o.getMeta("applyPasteRules"),p=!!h;if(!c&&!d&&!p)return;if(p){let{text:t}=h;"string"==typeof t||(t=es(b.from(t),r.schema));const{from:n}=h,o=n+t.length,i=$f(t);return l({rule:e,state:r,from:n,to:{b:o},pasteEvt:i})}const u=n.doc.content.findDiffStart(r.doc.content),f=n.doc.content.findDiffEnd(r.doc.content);return Lf(u)&&f&&u!==f.b?l({rule:e,state:r,from:u,to:f,pasteEvt:a}):void 0}}))}var Ir=class{constructor(e,t){this.splittableMarks=[],this.editor=t,this.extensions=ka(e),this.schema=kf(this.extensions,t),this.setupExtensions()}get commands(){return this.extensions.reduce((e,t)=>{const n=C(t,"addCommands",{name:t.name,options:t.options,storage:this.editor.extensionStorage[t.name],editor:this.editor,type:Yr(t.name,this.schema)});return n?{...e,...n()}:e},{})}get plugins(){const{editor:e}=this;return ts([...this.extensions].reverse()).flatMap(t=>{const n={name:t.name,options:t.options,storage:this.editor.extensionStorage[t.name],editor:e,type:Yr(t.name,this.schema)},r=[],o=C(t,"addKeyboardShortcuts",n);let i={};if("mark"===t.type&&C(t,"exitable",n)&&(i.ArrowRight=()=>pt.handleExit({editor:e,mark:t})),o){const t=Object.fromEntries(Object.entries(o()).map(([t,n])=>[t,()=>n({editor:e})]));i={...i,...t}}const s=Kd(i);r.push(s);const a=C(t,"addInputRules",n);if(Mo(t,e.options.enableInputRules)&&a){const t=a();if(t&&t.length){const n=Rf({editor:e,rules:t}),o=Array.isArray(n)?n:[n];r.push(...o)}}const l=C(t,"addPasteRules",n);if(Mo(t,e.options.enablePasteRules)&&l){const t=l();if(t&&t.length){const n=Vf({editor:e,rules:t});r.push(...n)}}const c=C(t,"addProseMirrorPlugins",n);if(c){const e=c();r.push(...e)}return r})}get attributes(){return ba(this.extensions)}get nodeViews(){const{editor:e}=this,{nodeExtensions:t}=sn(this.extensions);return Object.fromEntries(t.filter(e=>!!C(e,"addNodeView")).map(t=>{const n=this.attributes.filter(e=>e.type===t.name),r={name:t.name,options:t.options,storage:this.editor.extensionStorage[t.name],editor:e,type:j(t.name,this.schema)},o=C(t,"addNodeView",r);if(!o)return[];return[t.name,(r,i,s,a,l)=>{const c=Wn(r,n);return o()({node:r,view:i,getPos:s,decorations:a,innerDecorations:l,editor:e,extension:t,HTMLAttributes:c})}]}))}get markViews(){const{editor:e}=this,{markExtensions:t}=sn(this.extensions);return Object.fromEntries(t.filter(e=>!!C(e,"addMarkView")).map(t=>{const n=this.attributes.filter(e=>e.type===t.name),r={name:t.name,options:t.options,storage:this.editor.extensionStorage[t.name],editor:e,type:Ie(t.name,this.schema)},o=C(t,"addMarkView",r);if(!o)return[];return[t.name,(r,i,s)=>{const a=Wn(r,n);return o()({mark:r,view:i,inline:s,editor:e,extension:t,HTMLAttributes:a,updateAttributes:t=>{Zh(r,e,t)}})}]}))}setupExtensions(){const e=this.extensions;this.editor.extensionStorage=Object.fromEntries(e.map(e=>[e.name,e.storage])),e.forEach(e=>{var t;const n={name:e.name,options:e.options,storage:this.editor.extensionStorage[e.name],editor:this.editor,type:Yr(e.name,this.schema)};"mark"===e.type&&(null==(t=R(C(e,"keepOnSplit",n)))||t)&&this.splittableMarks.push(e.name);const r=C(e,"onBeforeCreate",n),o=C(e,"onCreate",n),i=C(e,"onUpdate",n),s=C(e,"onSelectionUpdate",n),a=C(e,"onTransaction",n),l=C(e,"onFocus",n),c=C(e,"onBlur",n),d=C(e,"onDestroy",n);r&&this.editor.on("beforeCreate",r),o&&this.editor.on("create",o),i&&this.editor.on("update",i),s&&this.editor.on("selectionUpdate",s),a&&this.editor.on("transaction",a),l&&this.editor.on("focus",l),c&&this.editor.on("blur",c),d&&this.editor.on("destroy",d)})}};Ir.resolve=ka,Ir.sort=ts,Ir.flatten=Zi;var Hf={};pa(Hf,{ClipboardTextSerializer:()=>Da,Commands:()=>Pa,Delete:()=>La,Drop:()=>Ba,Editable:()=>za,FocusEvents:()=>$a,Keymap:()=>Va,Paste:()=>Ha,Tabindex:()=>ja,focusEventsPluginKey:()=>Fa});var K=class e extends ls{constructor(){super(...arguments),this.type="extension"}static create(t={}){const n="function"==typeof t?t():t;return new e(n)}configure(e){return super.configure(e)}extend(e){const t="function"==typeof e?e():e;return super.extend(t)}},Da=K.create({name:"clipboardTextSerializer",addOptions:()=>({blockSeparator:void 0}),addProseMirrorPlugins(){return[new V({key:new q("clipboardTextSerializer"),props:{clipboardTextSerializer:()=>{const{editor:e}=this,{state:t,schema:n}=e,{doc:r,selection:o}=t,{ranges:i}=o,s=Math.min(...i.map(e=>e.$from.pos)),a=Math.max(...i.map(e=>e.$to.pos)),l=Sa(n);return xa(r,{from:s,to:a},{...void 0!==this.options.blockSeparator?{blockSeparator:this.options.blockSeparator}:{},textSerializers:l})}}})]}}),Ia={};pa(Ia,{blur:()=>jf,clearContent:()=>Wf,clearNodes:()=>Kf,command:()=>_f,createParagraphNear:()=>Uf,cut:()=>Jf,deleteCurrentNode:()=>qf,deleteNode:()=>Gf,deleteRange:()=>Yf,deleteSelection:()=>Xf,enter:()=>Qf,exitCode:()=>Zf,extendMarkRange:()=>eh,first:()=>th,focus:()=>rh,forEach:()=>ih,insertContent:()=>sh,insertContentAt:()=>lh,joinBackward:()=>uh,joinDown:()=>ch,joinForward:()=>dh,joinItemBackward:()=>fh,joinItemForward:()=>hh,joinTextblockBackward:()=>ph,joinTextblockForward:()=>mh,joinUp:()=>ah,keyboardShortcut:()=>yh,lift:()=>bh,liftEmptyBlock:()=>kh,liftListItem:()=>xh,newlineInCode:()=>Sh,resetAttributes:()=>Ch,scrollIntoView:()=>Mh,selectAll:()=>wh,selectNodeBackward:()=>Th,selectNodeForward:()=>Eh,selectParentNode:()=>vh,selectTextblockEnd:()=>Oh,selectTextblockStart:()=>Ah,setContent:()=>Nh,setMark:()=>Ih,setMeta:()=>Rh,setNode:()=>Ph,setNodeSelection:()=>Lh,setTextSelection:()=>Bh,sinkListItem:()=>zh,splitBlock:()=>Fh,splitListItem:()=>$h,toggleList:()=>Vh,toggleMark:()=>Hh,toggleNode:()=>jh,toggleWrap:()=>Wh,undoInputRule:()=>Kh,unsetAllMarks:()=>_h,unsetMark:()=>Uh,updateAttributes:()=>Jh,wrapIn:()=>qh,wrapInList:()=>Gh});var jf=()=>({editor:e,view:t})=>(requestAnimationFrame(()=>{var n;e.isDestroyed||(t.dom.blur(),null==(n=window?.getSelection())||n.removeAllRanges())}),!0),Wf=(e=!0)=>({commands:t})=>t.setContent("",{emitUpdate:e}),Kf=()=>({state:e,tr:t,dispatch:n})=>{const{selection:r}=t,{ranges:o}=r;return n&&o.forEach(({$from:n,$to:r})=>{e.doc.nodesBetween(n.pos,r.pos,(e,n)=>{if(e.type.isText)return;const{doc:r,mapping:o}=t,i=r.resolve(o.map(n)),s=r.resolve(o.map(n+e.nodeSize)),a=i.blockRange(s);if(!a)return;const l=Dt(a);if(e.type.isTextblock){const{defaultType:e}=i.parent.contentMatchAt(i.index());t.setNodeMarkup(a.start,e)}(l||0===l)&&t.lift(a,l)})}),!0},_f=e=>t=>e(t),Uf=()=>({state:e,dispatch:t})=>ua(e,t),Jf=(e,t)=>({editor:n,tr:r})=>{const{state:o}=n,i=o.doc.slice(e.from,e.to);r.deleteRange(e.from,e.to);const s=r.mapping.map(t);return r.insert(s,i.content),r.setSelection(new v(r.doc.resolve(Math.max(s-1,0)))),!0},qf=()=>({tr:e,dispatch:t})=>{const{selection:n}=e,r=n.$anchor.node();if(r.content.size>0)return!1;const o=e.selection.$anchor;for(let n=o.depth;n>0;n-=1)if(o.node(n).type===r.type){if(t){const t=o.before(n),r=o.after(n);e.delete(t,r).scrollIntoView()}return!0}return!1},Gf=e=>({tr:t,state:n,dispatch:r})=>{const o=j(e,n.schema),i=t.selection.$anchor;for(let e=i.depth;e>0;e-=1)if(i.node(e).type===o){if(r){const n=i.before(e),r=i.after(e);t.delete(n,r).scrollIntoView()}return!0}return!1},Yf=e=>({tr:t,dispatch:n})=>{const{from:r,to:o}=e;return n&&t.delete(r,o),!0},Xf=()=>({state:e,dispatch:t})=>qi(e,t),Qf=()=>({commands:e})=>e.keyboardShortcut("Enter"),Zf=()=>({state:e,dispatch:t})=>Yd(e,t),eh=(e,t={})=>({tr:n,state:r,dispatch:o})=>{const i=Ie(e,r.schema),{doc:s,selection:a}=n,{$from:l,from:c,to:d}=a;if(o){const e=rs(l,i,t);if(e&&e.from<=c&&e.to>=d){const t=v.create(s,e.from,e.to);n.setSelection(t)}}return!0},th=e=>t=>{const n="function"==typeof e?e(t):e;for(let e=0;e<n.length;e+=1)if(n[e](t))return!0;return!1};function nh(){return"Android"===navigator.platform||/android/i.test(navigator.userAgent)}function as(){return["iPad Simulator","iPhone Simulator","iPod Simulator","iPad","iPhone","iPod"].includes(navigator.platform)||navigator.userAgent.includes("Mac")&&"ontouchend"in document}var rh=(e=null,t={})=>({editor:n,view:r,tr:o,dispatch:i})=>{t={scrollIntoView:!0,...t};const s=()=>{(as()||nh())&&r.dom.focus(),requestAnimationFrame(()=>{n.isDestroyed||(r.focus(),t?.scrollIntoView&&n.commands.scrollIntoView())})};if(r.hasFocus()&&null===e||!1===e)return!0;if(i&&null===e&&!Ea(n.state.selection))return s(),!0;const a=va(o.doc,e)||n.state.selection,l=n.state.selection.eq(a);return i&&(l||o.setSelection(a),l&&o.storedMarks&&o.setStoredMarks(o.storedMarks),s()),!0},ih=(e,t)=>n=>e.every((e,r)=>t(e,{...n,index:r})),sh=(e,t)=>({tr:n,commands:r})=>r.insertContentAt({from:n.selection.from,to:n.selection.to},e,t),oh=e=>!("type"in e),lh=(e,t,n)=>({tr:r,dispatch:o,editor:i})=>{var s;if(o){let o;const a=e=>{i.emit("contentError",{editor:i,error:e,disableCollaboration:()=>{"collaboration"in i.storage&&"object"==typeof i.storage.collaboration&&i.storage.collaboration&&(i.storage.collaboration.isDisabled=!0)}})},l={preserveWhitespace:"full",...(n={parseOptions:i.options.parseOptions,updateSelection:!0,applyInputRules:!1,applyPasteRules:!1,...n}).parseOptions};if(!n.errorOnInvalidContent&&!i.options.enableContentCheck&&i.options.emitContentError)try{rn(t,i.schema,{parseOptions:l,errorOnInvalidContent:!0})}catch(e){a(e)}try{o=rn(t,i.schema,{parseOptions:l,errorOnInvalidContent:null!=(s=n.errorOnInvalidContent)?s:i.options.enableContentCheck})}catch(e){return a(e),!1}let c,{from:d,to:h}="number"==typeof e?{from:e,to:e}:{from:e.from,to:e.to},p=!0,u=!0;if((oh(o)?o:[o]).forEach(e=>{e.check(),p=!!p&&(e.isText&&0===e.marks.length),u=!!u&&e.isBlock}),d===h&&u){const{parent:e}=r.doc.resolve(d);e.isTextblock&&!e.type.spec.code&&!e.childCount&&(d-=1,h+=1)}if(p){if(Array.isArray(t))c=t.map(e=>e.text||"").join("");else if(t instanceof b){let e="";t.forEach(t=>{t.text&&(e+=t.text)}),c=e}else c="object"==typeof t&&t&&t.text?t.text:t;r.insertText(c,d,h)}else{c=o;const e=r.doc.resolve(d),t=e.node(),n=0===e.parentOffset,i=t.isText||t.isTextblock,s=t.content.size>0;n&&i&&s&&(d=Math.max(0,d-1)),r.replaceWith(d,h,c)}n.updateSelection&&Df(r,r.steps.length-1,-1),n.applyInputRules&&r.setMeta("applyInputRules",{from:d,text:c}),n.applyPasteRules&&r.setMeta("applyPasteRules",{from:d,text:c})}return!0},ah=()=>({state:e,dispatch:t})=>Jd(e,t),ch=()=>({state:e,dispatch:t})=>qd(e,t),uh=()=>({state:e,dispatch:t})=>ra(e,t),dh=()=>({state:e,dispatch:t})=>la(e,t),fh=()=>({state:e,dispatch:t,tr:n})=>{try{const r=Sr(e.doc,e.selection.$from.pos,-1);return null!=r&&(n.join(r,2),t&&t(n),!0)}catch{return!1}},hh=()=>({state:e,dispatch:t,tr:n})=>{try{const r=Sr(e.doc,e.selection.$from.pos,1);return null!=r&&(n.join(r,2),t&&t(n),!0)}catch{return!1}},ph=()=>({state:e,dispatch:t})=>_d(e,t),mh=()=>({state:e,dispatch:t})=>Ud(e,t);function Ra(){return typeof navigator<"u"&&/Mac/.test(navigator.platform)}function gh(e){const t=e.split(/-(?!$)/);let n,r,o,i,s=t[t.length-1];"Space"===s&&(s=" ");for(let e=0;e<t.length-1;e+=1){const s=t[e];if(/^(cmd|meta|m)$/i.test(s))i=!0;else if(/^a(lt)?$/i.test(s))n=!0;else if(/^(c|ctrl|control)$/i.test(s))r=!0;else if(/^s(hift)?$/i.test(s))o=!0;else{if(!/^mod$/i.test(s))throw new Error(`Unrecognized modifier name: ${s}`);as()||Ra()?i=!0:r=!0}}return n&&(s=`Alt-${s}`),r&&(s=`Ctrl-${s}`),i&&(s=`Meta-${s}`),o&&(s=`Shift-${s}`),s}var yh=e=>({editor:t,view:n,tr:r,dispatch:o})=>{const i=gh(e).split(/-(?!$)/),s=i.find(e=>!["Alt","Ctrl","Meta","Shift"].includes(e)),a=new KeyboardEvent("keydown",{key:"Space"===s?" ":s,altKey:i.includes("Alt"),ctrlKey:i.includes("Ctrl"),metaKey:i.includes("Meta"),shiftKey:i.includes("Shift"),bubbles:!0,cancelable:!0}),l=t.captureTransaction(()=>{n.someProp("handleKeyDown",e=>e(n,a))});return l?.steps.forEach(e=>{const t=e.map(r.mapping);t&&o&&r.maybeStep(t)}),!0},bh=(e,t={})=>({state:n,dispatch:r})=>!!Ge(n,j(e,n.schema),t)&&Gd(n,r),kh=()=>({state:e,dispatch:t})=>da(e,t),xh=e=>({state:t,dispatch:n})=>af(j(e,t.schema))(t,n),Sh=()=>({state:e,dispatch:t})=>ca(e,t);function To(e,t){const n="string"==typeof t?[t]:t;return Object.keys(e).reduce((t,r)=>(n.includes(r)||(t[r]=e[r]),t),{})}var Ch=(e,t)=>({tr:n,state:r,dispatch:o})=>{let i=null,s=null;const a=Nr("string"==typeof e?e:e.name,r.schema);return!!a&&("node"===a&&(i=j(e,r.schema)),"mark"===a&&(s=Ie(e,r.schema)),o&&n.selection.ranges.forEach(e=>{r.doc.nodesBetween(e.$from.pos,e.$to.pos,(e,r)=>{i&&i===e.type&&n.setNodeMarkup(r,void 0,To(e.attrs,t)),s&&e.marks.length&&e.marks.forEach(o=>{s===o.type&&n.addMark(r,r+e.nodeSize,s.create(To(o.attrs,t)))})})}),!0)},Mh=()=>({tr:e,dispatch:t})=>(t&&e.scrollIntoView(),!0),wh=()=>({tr:e,dispatch:t})=>{if(t){const t=new ae(e.doc);e.setSelection(t)}return!0},Th=()=>({state:e,dispatch:t})=>sa(e,t),Eh=()=>({state:e,dispatch:t})=>aa(e,t),vh=()=>({state:e,dispatch:t})=>Zd(e,t),Oh=()=>({state:e,dispatch:t})=>nf(e,t),Ah=()=>({state:e,dispatch:t})=>tf(e,t),Nh=(e,{errorOnInvalidContent:t,emitUpdate:n=!0,parseOptions:r={}}={})=>({editor:o,tr:i,dispatch:s,commands:a})=>{const{doc:l}=i;if("full"!==r.preserveWhitespace){const a=Ci(e,o.schema,r,{errorOnInvalidContent:t??o.options.enableContentCheck});return s&&i.replaceWith(0,l.content.size,a).setMeta("preventUpdate",!n),!0}return s&&i.setMeta("preventUpdate",!n),a.insertContentAt({from:0,to:l.content.size},e,{parseOptions:r,errorOnInvalidContent:t??o.options.enableContentCheck})};function Dh(e,t,n){var r;const{selection:o}=t;let i=null;if(Ea(o)&&(i=o.$cursor),i){const t=null!=(r=e.storedMarks)?r:i.marks();return i.parent.type.allowsMarkType(n)&&(!!n.isInSet(t)||!t.some(e=>e.type.excludes(n)))}const{ranges:s}=o;return s.some(({$from:t,$to:r})=>{let o=0===t.depth&&(e.doc.inlineContent&&e.doc.type.allowsMarkType(n));return e.doc.nodesBetween(t.pos,r.pos,(e,t,r)=>{if(o)return!1;if(e.isInline){const t=!r||r.type.allowsMarkType(n),i=!!n.isInSet(e.marks)||!e.marks.some(e=>e.type.excludes(n));o=t&&i}return!o}),o})}var Ih=(e,t={})=>({tr:n,state:r,dispatch:o})=>{const{selection:i}=n,{empty:s,ranges:a}=i,l=Ie(e,r.schema);if(o)if(s){const e=Ca(r,l);n.addStoredMark(l.create({...e,...t}))}else a.forEach(e=>{const o=e.$from.pos,i=e.$to.pos;r.doc.nodesBetween(o,i,(e,r)=>{const s=Math.max(r,o),a=Math.min(r+e.nodeSize,i);e.marks.find(e=>e.type===l)?e.marks.forEach(e=>{l===e.type&&n.addMark(s,a,l.create({...e.attrs,...t}))}):n.addMark(s,a,l.create(t))})});return Dh(r,n,l)},Rh=(e,t)=>({tr:n})=>(n.setMeta(e,t),!0),Ph=(e,t={})=>({state:n,dispatch:r,chain:o})=>{const i=j(e,n.schema);let s;return n.selection.$anchor.sameParent(n.selection.$head)&&(s=n.selection.$anchor.parent.attrs),!!i.isTextblock&&o().command(({commands:e})=>!!ko(i,{...s,...t})(n)||e.clearNodes()).command(({state:e})=>ko(i,{...s,...t})(e,r)).run()},Lh=e=>({tr:t,dispatch:n})=>{if(n){const{doc:n}=t,r=nt(e,0,n.content.size),o=T.create(n,r);t.setSelection(o)}return!0},Bh=e=>({tr:t,dispatch:n})=>{if(n){const{doc:n}=t,{from:r,to:o}="number"==typeof e?{from:e,to:e}:e,i=v.atStart(n).from,s=v.atEnd(n).to,a=nt(r,i,s),l=nt(o,i,s),c=v.create(n,a,l);t.setSelection(c)}return!0},zh=e=>({state:t,dispatch:n})=>df(j(e,t.schema))(t,n);function Eo(e,t){const n=e.storedMarks||e.selection.$to.parentOffset&&e.selection.$from.marks();if(n){const r=n.filter(e=>t?.includes(e.type.name));e.tr.ensureMarks(r)}}var Fh=({keepMarks:e=!0}={})=>({tr:t,state:n,dispatch:r,editor:o})=>{const{selection:i,doc:s}=t,{$from:a,$to:l}=i,c=An(o.extensionManager.attributes,a.node().type.name,a.node().attrs);if(i instanceof T&&i.node.isBlock)return!(!a.parentOffset||!Ne(s,a.pos))&&(r&&(e&&Eo(n,o.extensionManager.splittableMarks),t.split(a.pos).scrollIntoView()),!0);if(!a.parent.isBlock)return!1;const d=l.parentOffset===l.parent.content.size,h=0===a.depth?void 0:pf(a.node(-1).contentMatchAt(a.indexAfter(-1)));let p=d&&h?[{type:h,attrs:c}]:void 0,u=Ne(t.doc,t.mapping.map(a.pos),1,p);if(!p&&!u&&Ne(t.doc,t.mapping.map(a.pos),1,h?[{type:h}]:void 0)&&(u=!0,p=h?[{type:h,attrs:c}]:void 0),r){if(u&&(i instanceof v&&t.deleteSelection(),t.split(t.mapping.map(a.pos),1,p),h&&!d&&!a.parentOffset&&a.parent.type!==h)){const e=t.mapping.map(a.before()),n=t.doc.resolve(e);a.node(-1).canReplaceWith(n.index(),n.index()+1,h)&&t.setNodeMarkup(t.mapping.map(a.before()),h)}e&&Eo(n,o.extensionManager.splittableMarks),t.scrollIntoView()}return u},$h=(e,t={})=>({tr:n,state:r,dispatch:o,editor:i})=>{var s;const a=j(e,r.schema),{$from:l,$to:c}=r.selection,d=r.selection.node;if(d&&d.isBlock||l.depth<2||!l.sameParent(c))return!1;const h=l.node(-1);if(h.type!==a)return!1;const p=i.extensionManager.attributes;if(0===l.parent.content.size&&l.node(-1).childCount===l.indexAfter(-1)){if(2===l.depth||l.node(-3).type!==a||l.index(-2)!==l.node(-2).childCount-1)return!1;if(o){let e=b.empty;const r=l.index(-1)?1:l.index(-2)?2:3;for(let t=l.depth-r;t>=l.depth-3;t-=1)e=b.from(l.node(t).copy(e));const o=l.indexAfter(-1)<l.node(-2).childCount?1:l.indexAfter(-2)<l.node(-3).childCount?2:3,i={...An(p,l.node().type.name,l.node().attrs),...t},c=(null==(s=a.contentMatch.defaultType)?void 0:s.createAndFill(i))||void 0;e=e.append(b.from(a.createAndFill(null,c)||void 0));const d=l.before(l.depth-(r-1));n.replace(d,l.after(-o),new S(e,4-r,0));let h=-1;n.doc.nodesBetween(d,n.doc.content.size,(e,t)=>{if(h>-1)return!1;e.isTextblock&&0===e.content.size&&(h=t+1)}),h>-1&&n.setSelection(v.near(n.doc.resolve(h))),n.scrollIntoView()}return!0}const u=c.pos===l.end()?h.contentMatchAt(0).defaultType:null,f={...An(p,h.type.name,h.attrs),...t},m={...An(p,l.node().type.name,l.node().attrs),...t};n.delete(l.pos,c.pos);const g=u?[{type:a,attrs:f},{type:u,attrs:m}]:[{type:a,attrs:f}];if(!Ne(n.doc,l.pos,2))return!1;if(o){const{selection:e,storedMarks:t}=r,{splittableMarks:s}=i.extensionManager,a=t||e.$to.parentOffset&&e.$from.marks();if(n.split(l.pos,2,g).scrollIntoView(),!a||!o)return!0;const c=a.filter(e=>s.includes(e.type.name));n.ensureMarks(c)}return!0},Xr=(e,t)=>{const n=Ar(e=>e.type===t)(e.selection);if(!n)return!0;const r=e.doc.resolve(Math.max(0,n.pos-1)).before(n.depth);if(void 0===r)return!0;const o=e.doc.nodeAt(r);return n.node.type===o?.type&&Ye(e.doc,n.pos)&&e.join(n.pos),!0},Qr=(e,t)=>{const n=Ar(e=>e.type===t)(e.selection);if(!n)return!0;const r=e.doc.resolve(n.start).after(n.depth);if(void 0===r)return!0;const o=e.doc.nodeAt(r);return n.node.type===o?.type&&Ye(e.doc,r)&&e.join(r),!0},Vh=(e,t,n,r={})=>({editor:o,tr:i,state:s,dispatch:a,chain:l,commands:c,can:d})=>{const{extensions:h,splittableMarks:p}=o.extensionManager,u=j(e,s.schema),f=j(t,s.schema),{selection:m,storedMarks:g}=s,{$from:y,$to:b}=m,k=y.blockRange(b),w=g||m.$to.parentOffset&&m.$from.marks();if(!k)return!1;const v=Ar(e=>wo(e.type.name,h))(m);if(k.depth>=1&&v&&k.depth-v.depth<=1){if(v.node.type===u)return c.liftListItem(f);if(wo(v.node.type.name,h)&&u.validContent(v.node.content)&&a)return l().command(()=>(i.setNodeMarkup(v.pos,u),!0)).command(()=>Xr(i,u)).command(()=>Qr(i,u)).run()}return n&&w&&a?l().command(()=>{const e=d().wrapInList(u,r),t=w.filter(e=>p.includes(e.type.name));return i.ensureMarks(t),!!e||c.clearNodes()}).wrapInList(u,r).command(()=>Xr(i,u)).command(()=>Qr(i,u)).run():l().command(()=>!!d().wrapInList(u,r)||c.clearNodes()).wrapInList(u,r).command(()=>Xr(i,u)).command(()=>Qr(i,u)).run()},Hh=(e,t={},n={})=>({state:r,commands:o})=>{const{extendEmptyMarkRange:i=!1}=n,s=Ie(e,r.schema);return Mi(r,s,t)?o.unsetMark(s,{extendEmptyMarkRange:i}):o.setMark(s,t)},jh=(e,t,n={})=>({state:r,commands:o})=>{const i=j(e,r.schema),s=j(t,r.schema),a=Ge(r,i,n);let l;return r.selection.$anchor.sameParent(r.selection.$head)&&(l=r.selection.$anchor.parent.attrs),a?o.setNode(s,l):o.setNode(i,{...l,...n})},Wh=(e,t={})=>({state:n,commands:r})=>{const o=j(e,n.schema);return Ge(n,o,t)?r.lift(o):r.wrapIn(o,t)},Kh=()=>({state:e,dispatch:t})=>{const n=e.plugins;for(let r=0;r<n.length;r+=1){const o=n[r];let i;if(o.spec.isInputRules&&(i=o.getState(e))){if(t){const t=e.tr,n=i.transform;for(let e=n.steps.length-1;e>=0;e-=1)t.step(n.steps[e].invert(n.docs[e]));if(i.text){const n=t.doc.resolve(i.from).marks();t.replaceWith(i.from,i.to,e.schema.text(i.text,n))}else t.delete(i.from,i.to)}return!0}}return!1},_h=()=>({tr:e,dispatch:t})=>{const{selection:n}=e,{empty:r,ranges:o}=n;return r||t&&o.forEach(t=>{e.removeMark(t.$from.pos,t.$to.pos)}),!0},Uh=(e,t={})=>({tr:n,state:r,dispatch:o})=>{var i;const{extendEmptyMarkRange:s=!1}=t,{selection:a}=n,l=Ie(e,r.schema),{$from:c,empty:d,ranges:h}=a;if(!o)return!0;if(d&&s){let{from:e,to:t}=a;const r=null==(i=c.marks().find(e=>e.type===l))?void 0:i.attrs,o=rs(c,l,r);o&&(e=o.from,t=o.to),n.removeMark(e,t,l)}else h.forEach(e=>{n.removeMark(e.$from.pos,e.$to.pos,l)});return n.removeStoredMark(l),!0},Jh=(e,t={})=>({tr:n,state:r,dispatch:o})=>{let i=null,s=null;const a=Nr("string"==typeof e?e:e.name,r.schema);return!!a&&("node"===a&&(i=j(e,r.schema)),"mark"===a&&(s=Ie(e,r.schema)),o&&n.selection.ranges.forEach(e=>{const o=e.$from.pos,a=e.$to.pos;let l,c,d,h;n.selection.empty?r.doc.nodesBetween(o,a,(e,t)=>{i&&i===e.type&&(d=Math.max(t,o),h=Math.min(t+e.nodeSize,a),l=t,c=e)}):r.doc.nodesBetween(o,a,(e,r)=>{r<o&&i&&i===e.type&&(d=Math.max(r,o),h=Math.min(r+e.nodeSize,a),l=r,c=e),r>=o&&r<=a&&(i&&i===e.type&&n.setNodeMarkup(r,void 0,{...e.attrs,...t}),s&&e.marks.length&&e.marks.forEach(i=>{if(s===i.type){const l=Math.max(r,o),c=Math.min(r+e.nodeSize,a);n.addMark(l,c,s.create({...i.attrs,...t}))}}))}),c&&(void 0!==l&&n.setNodeMarkup(l,void 0,{...c.attrs,...t}),s&&c.marks.length&&c.marks.forEach(e=>{s===e.type&&n.addMark(d,h,s.create({...e.attrs,...t}))}))}),!0)},qh=(e,t={})=>({state:n,dispatch:r})=>rf(j(e,n.schema),t)(n,r),Gh=(e,t={})=>({state:n,dispatch:r})=>sf(j(e,n.schema),t)(n,r),Pa=K.create({name:"commands",addCommands:()=>({...Ia})}),La=K.create({name:"delete",onUpdate({transaction:e,appendedTransactions:t}){var n,r,o;const i=()=>{var n,r,o,i;if(null!=(i=null==(o=null==(r=null==(n=this.editor.options.coreExtensionOptions)?void 0:n.delete)?void 0:r.filterTransaction)?void 0:o.call(r,e))?i:e.getMeta("y-sync$"))return;const s=ma(e.before,[e,...t]);wa(s).forEach(t=>{s.mapping.mapResult(t.oldRange.from).deletedAfter&&s.mapping.mapResult(t.oldRange.to).deletedBefore&&s.before.nodesBetween(t.oldRange.from,t.oldRange.to,(n,r)=>{const o=r+n.nodeSize-2,i=t.oldRange.from<=r&&o<=t.oldRange.to;this.editor.emit("delete",{type:"node",node:n,from:r,to:o,newFrom:s.mapping.map(r),newTo:s.mapping.map(o),deletedRange:t.oldRange,newRange:t.newRange,partial:!i,editor:this.editor,transaction:e,combinedTransform:s})})});const a=s.mapping;s.steps.forEach((t,n)=>{var r,o;if(t instanceof ye){const i=a.slice(n).map(t.from,-1),l=a.slice(n).map(t.to),c=a.invert().map(i,-1),d=a.invert().map(l),h=null==(r=s.doc.nodeAt(i-1))?void 0:r.marks.some(e=>e.eq(t.mark)),p=null==(o=s.doc.nodeAt(l))?void 0:o.marks.some(e=>e.eq(t.mark));this.editor.emit("delete",{type:"mark",mark:t.mark,from:t.from,to:t.to,deletedRange:{from:c,to:d},newRange:{from:i,to:l},partial:!(!p&&!h),editor:this.editor,transaction:e,combinedTransform:s})}})};null==(o=null==(r=null==(n=this.editor.options.coreExtensionOptions)?void 0:n.delete)?void 0:r.async)||o?setTimeout(i,0):i()}}),Ba=K.create({name:"drop",addProseMirrorPlugins(){return[new V({key:new q("tiptapDrop"),props:{handleDrop:(e,t,n,r)=>{this.editor.emit("drop",{editor:this.editor,event:t,slice:n,moved:r})}}})]}}),za=K.create({name:"editable",addProseMirrorPlugins(){return[new V({key:new q("editable"),props:{editable:()=>this.editor.options.editable}})]}}),Fa=new q("focusEvents"),$a=K.create({name:"focusEvents",addProseMirrorPlugins(){const{editor:e}=this;return[new V({key:Fa,props:{handleDOMEvents:{focus:(t,n)=>{e.isFocused=!0;const r=e.state.tr.setMeta("focus",{event:n}).setMeta("addToHistory",!1);return t.dispatch(r),!1},blur:(t,n)=>{e.isFocused=!1;const r=e.state.tr.setMeta("blur",{event:n}).setMeta("addToHistory",!1);return t.dispatch(r),!1}}}})]}}),Va=K.create({name:"keymap",addKeyboardShortcuts(){const e=()=>this.editor.commands.first(({commands:e})=>[()=>e.undoInputRule(),()=>e.command(({tr:t})=>{const{selection:n,doc:r}=t,{empty:o,$anchor:i}=n,{pos:s,parent:a}=i,l=i.parent.isTextblock&&s>0?t.doc.resolve(s-1):i,c=l.parent.type.spec.isolating,d=i.pos-i.parentOffset,h=c&&1===l.parent.childCount?d===i.pos:N.atStart(r).from===s;return!(!o||!a.type.isTextblock||a.textContent.length||!h||h&&"paragraph"===i.parent.type.name)&&e.clearNodes()}),()=>e.deleteSelection(),()=>e.joinBackward(),()=>e.selectNodeBackward()]),t=()=>this.editor.commands.first(({commands:e})=>[()=>e.deleteSelection(),()=>e.deleteCurrentNode(),()=>e.joinForward(),()=>e.selectNodeForward()]),n={Enter:()=>this.editor.commands.first(({commands:e})=>[()=>e.newlineInCode(),()=>e.createParagraphNear(),()=>e.liftEmptyBlock(),()=>e.splitBlock()]),"Mod-Enter":()=>this.editor.commands.exitCode(),Backspace:e,"Mod-Backspace":e,"Shift-Backspace":e,Delete:t,"Mod-Delete":t,"Mod-a":()=>this.editor.commands.selectAll()},r={...n},o={...n,"Ctrl-h":e,"Alt-Backspace":e,"Ctrl-d":t,"Ctrl-Alt-Backspace":t,"Alt-Delete":t,"Alt-d":t,"Ctrl-a":()=>this.editor.commands.selectTextblockStart(),"Ctrl-e":()=>this.editor.commands.selectTextblockEnd()};return as()||Ra()?o:r},addProseMirrorPlugins(){return[new V({key:new q("clearDocument"),appendTransaction:(e,t,n)=>{if(e.some(e=>e.getMeta("composition")))return;const r=e.some(e=>e.docChanged)&&!t.doc.eq(n.doc),o=e.some(e=>e.getMeta("preventClearDocument"));if(!r||o)return;const{empty:i,from:s,to:a}=t.selection,l=N.atStart(t.doc).from,c=N.atEnd(t.doc).to;if(i||s!==l||a!==c||!Dr(n.doc))return;const d=n.tr,h=vr({state:n,transaction:d}),{commands:p}=new Or({editor:this.editor,state:h});return p.clearNodes(),d.steps.length?d:void 0}})]}}),Ha=K.create({name:"paste",addProseMirrorPlugins(){return[new V({key:new q("tiptapPaste"),props:{handlePaste:(e,t,n)=>{this.editor.emit("paste",{editor:this.editor,event:t,slice:n})}}})]}}),ja=K.create({name:"tabindex",addProseMirrorPlugins(){return[new V({key:new q("tabindex"),props:{attributes:()=>this.editor.isEditable?{tabindex:"0"}:{}}})]}}),Yh=class e{constructor(e,t,n=!1,r=null){this.currentNode=null,this.actualDepth=null,this.isBlock=n,this.resolvedPos=e,this.editor=t,this.currentNode=r}get name(){return this.node.type.name}get node(){return this.currentNode||this.resolvedPos.node()}get element(){return this.editor.view.domAtPos(this.pos).node}get depth(){var e;return null!=(e=this.actualDepth)?e:this.resolvedPos.depth}get pos(){return this.resolvedPos.pos}get content(){return this.node.content}set content(e){let t=this.from,n=this.to;if(this.isBlock){if(0===this.content.size)return;t=this.from+1,n=this.to-1}this.editor.commands.insertContentAt({from:t,to:n},e)}get attributes(){return this.node.attrs}get textContent(){return this.node.textContent}get size(){return this.node.nodeSize}get from(){return this.isBlock?this.pos:this.resolvedPos.start(this.resolvedPos.depth)}get range(){return{from:this.from,to:this.to}}get to(){return this.isBlock?this.pos+this.size:this.resolvedPos.end(this.resolvedPos.depth)+(this.node.isText?0:1)}get parent(){if(0===this.depth)return null;const t=this.resolvedPos.start(this.resolvedPos.depth-1),n=this.resolvedPos.doc.resolve(t);return new e(n,this.editor)}get before(){let t=this.resolvedPos.doc.resolve(this.from-(this.isBlock?1:2));return t.depth!==this.depth&&(t=this.resolvedPos.doc.resolve(this.from-3)),new e(t,this.editor)}get after(){let t=this.resolvedPos.doc.resolve(this.to+(this.isBlock?2:1));return t.depth!==this.depth&&(t=this.resolvedPos.doc.resolve(this.to+3)),new e(t,this.editor)}get children(){const t=[];return this.node.content.forEach((n,r)=>{const o=n.isBlock&&!n.isTextblock,i=n.isAtom&&!n.isText,s=this.pos+r+(i?0:1);if(s<0||s>this.resolvedPos.doc.nodeSize-2)return;const a=this.resolvedPos.doc.resolve(s);if(!o&&a.depth<=this.depth)return;const l=new e(a,this.editor,o,o?n:null);o&&(l.actualDepth=this.depth+1),t.push(new e(a,this.editor,o,o?n:null))}),t}get firstChild(){return this.children[0]||null}get lastChild(){const e=this.children;return e[e.length-1]||null}closest(e,t={}){let n=null,r=this.parent;for(;r&&!n;){if(r.node.type.name===e)if(Object.keys(t).length>0){const e=r.node.attrs,n=Object.keys(t);for(let r=0;r<n.length;r+=1){const o=n[r];if(e[o]!==t[o])break}}else n=r;r=r.parent}return n}querySelector(e,t={}){return this.querySelectorAll(e,t,!0)[0]||null}querySelectorAll(e,t={},n=!1){let r=[];if(!this.children||0===this.children.length)return r;const o=Object.keys(t);return this.children.forEach(i=>{n&&r.length>0||(i.node.type.name===e&&o.every(e=>t[e]===i.node.attrs[e])&&r.push(i),!(n&&r.length>0)&&(r=r.concat(i.querySelectorAll(e,t,n))))}),r}setAttribute(e){const{tr:t}=this.editor.state;t.setNodeMarkup(this.from,void 0,{...this.node.attrs,...e}),this.editor.view.dispatch(t)}},Xh='.ProseMirror {\n position: relative;\n}\n\n.ProseMirror {\n word-wrap: break-word;\n white-space: pre-wrap;\n white-space: break-spaces;\n -webkit-font-variant-ligatures: none;\n font-variant-ligatures: none;\n font-feature-settings: "liga" 0; /* the above doesn\'t seem to work in Edge */\n}\n\n.ProseMirror [contenteditable="false"] {\n white-space: normal;\n}\n\n.ProseMirror [contenteditable="false"] [contenteditable="true"] {\n white-space: pre-wrap;\n}\n\n.ProseMirror pre {\n white-space: pre-wrap;\n}\n\nimg.ProseMirror-separator {\n display: inline !important;\n border: none !important;\n margin: 0 !important;\n width: 0 !important;\n height: 0 !important;\n}\n\n.ProseMirror-gapcursor {\n display: none;\n pointer-events: none;\n position: absolute;\n margin: 0;\n}\n\n.ProseMirror-gapcursor:after {\n content: "";\n display: block;\n position: absolute;\n top: -2px;\n width: 20px;\n border-top: 1px solid black;\n animation: ProseMirror-cursor-blink 1.1s steps(2, start) infinite;\n}\n\n@keyframes ProseMirror-cursor-blink {\n to {\n visibility: hidden;\n }\n}\n\n.ProseMirror-hideselection *::selection {\n background: transparent;\n}\n\n.ProseMirror-hideselection *::-moz-selection {\n background: transparent;\n}\n\n.ProseMirror-hideselection * {\n caret-color: transparent;\n}\n\n.ProseMirror-focused .ProseMirror-gapcursor {\n display: block;\n}';function Qh(e,t,n){const r=document.querySelector("style[data-tiptap-style]");if(null!==r)return r;const o=document.createElement("style");return t&&o.setAttribute("nonce",t),o.setAttribute("data-tiptap-style",""),o.innerHTML=e,document.getElementsByTagName("head")[0].appendChild(o),o}var Om=class extends hf{constructor(e={}){super(),this.css=null,this.editorView=null,this.isFocused=!1,this.isInitialized=!1,this.extensionStorage={},this.instanceId=Math.random().toString(36).slice(2,9),this.options={element:typeof document<"u"?document.createElement("div"):null,content:"",injectCSS:!0,injectNonce:void 0,extensions:[],autofocus:!1,editable:!0,editorProps:{},parseOptions:{},coreExtensionOptions:{},enableInputRules:!0,enablePasteRules:!0,enableCoreExtensions:!0,enableContentCheck:!1,emitContentError:!1,onBeforeCreate:()=>null,onCreate:()=>null,onMount:()=>null,onUnmount:()=>null,onUpdate:()=>null,onSelectionUpdate:()=>null,onTransaction:()=>null,onFocus:()=>null,onBlur:()=>null,onDestroy:()=>null,onContentError:({error:e})=>{throw e},onPaste:()=>null,onDrop:()=>null,onDelete:()=>null},this.isCapturingTransaction=!1,this.capturedTransaction=null,this.setOptions(e),this.createExtensionManager(),this.createCommandManager(),this.createSchema(),this.on("beforeCreate",this.options.onBeforeCreate),this.emit("beforeCreate",{editor:this}),this.on("mount",this.options.onMount),this.on("unmount",this.options.onUnmount),this.on("contentError",this.options.onContentError),this.on("create",this.options.onCreate),this.on("update",this.options.onUpdate),this.on("selectionUpdate",this.options.onSelectionUpdate),this.on("transaction",this.options.onTransaction),this.on("focus",this.options.onFocus),this.on("blur",this.options.onBlur),this.on("destroy",this.options.onDestroy),this.on("drop",({event:e,slice:t,moved:n})=>this.options.onDrop(e,t,n)),this.on("paste",({event:e,slice:t})=>this.options.onPaste(e,t)),this.on("delete",this.options.onDelete);const t=this.createDoc(),n=va(t,this.options.autofocus);this.editorState=Ct.create({doc:t,schema:this.schema,selection:n||void 0}),this.options.element&&this.mount(this.options.element)}mount(e){if(typeof document>"u")throw new Error("[tiptap error]: The editor cannot be mounted because there is no 'document' defined in this environment.");this.createView(e),this.emit("mount",{editor:this}),this.css&&!document.head.contains(this.css)&&document.head.appendChild(this.css),window.setTimeout(()=>{this.isDestroyed||(this.commands.focus(this.options.autofocus),this.emit("create",{editor:this}),this.isInitialized=!0)},0)}unmount(){if(this.editorView){const e=this.editorView.dom;e?.editor&&delete e.editor,this.editorView.destroy()}if(this.editorView=null,this.isInitialized=!1,this.css)try{"function"==typeof this.css.remove?this.css.remove():this.css.parentNode&&this.css.parentNode.removeChild(this.css)}catch{}this.css=null,this.emit("unmount",{editor:this})}get storage(){return this.extensionStorage}get commands(){return this.commandManager.commands}chain(){return this.commandManager.chain()}can(){return this.commandManager.can()}injectCSS(){this.options.injectCSS&&typeof document<"u"&&(this.css=Qh(Xh,this.options.injectNonce))}setOptions(e={}){this.options={...this.options,...e},this.editorView&&this.state&&!this.isDestroyed&&(this.options.editorProps&&this.view.setProps(this.options.editorProps),this.view.updateState(this.state))}setEditable(e,t=!0){this.setOptions({editable:e}),t&&this.emit("update",{editor:this,transaction:this.state.tr,appendedTransactions:[]})}get isEditable(){return this.options.editable&&this.view&&this.view.editable}get view(){return this.editorView?this.editorView:new Proxy({state:this.editorState,updateState:e=>{this.editorState=e},dispatch:e=>{this.dispatchTransaction(e)},composing:!1,dragging:null,editable:!0,isDestroyed:!1},{get:(e,t)=>{if("state"===t)return this.editorState;if(t in e)return Reflect.get(e,t);throw new Error(`[tiptap error]: The editor view is not available. Cannot access view['${t}']. The editor may not be mounted yet.`)}})}get state(){return this.editorView&&(this.editorState=this.view.state),this.editorState}registerPlugin(e,t){const n=ya(t)?t(e,[...this.state.plugins]):[...this.state.plugins,e],r=this.state.reconfigure({plugins:n});return this.view.updateState(r),r}unregisterPlugin(e){if(this.isDestroyed)return;const t=this.state.plugins;let n=t;if([].concat(e).forEach(e=>{const t="string"==typeof e?`${e}$`:e.key;n=n.filter(e=>!e.key.startsWith(t))}),t.length===n.length)return;const r=this.state.reconfigure({plugins:n});return this.view.updateState(r),r}createExtensionManager(){var e,t;const n=[...this.options.enableCoreExtensions?[za,Da.configure({blockSeparator:null==(t=null==(e=this.options.coreExtensionOptions)?void 0:e.clipboardTextSerializer)?void 0:t.blockSeparator}),Pa,$a,Va,ja,Ba,Ha,La].filter(e=>"object"!=typeof this.options.enableCoreExtensions||!1!==this.options.enableCoreExtensions[e.name]):[],...this.options.extensions].filter(e=>["extension","node","mark"].includes(e?.type));this.extensionManager=new Ir(n,this)}createCommandManager(){this.commandManager=new Or({editor:this})}createSchema(){this.schema=this.extensionManager.schema}createDoc(){let e;try{e=Ci(this.options.content,this.schema,this.options.parseOptions,{errorOnInvalidContent:this.options.enableContentCheck})}catch(t){if(!(t instanceof Error&&["[tiptap error]: Invalid JSON content","[tiptap error]: Invalid HTML content"].includes(t.message)))throw t;this.emit("contentError",{editor:this,error:t,disableCollaboration:()=>{"collaboration"in this.storage&&"object"==typeof this.storage.collaboration&&this.storage.collaboration&&(this.storage.collaboration.isDisabled=!0),this.options.extensions=this.options.extensions.filter(e=>"collaboration"!==e.name),this.createExtensionManager()}}),e=Ci(this.options.content,this.schema,this.options.parseOptions,{errorOnInvalidContent:!1})}return e}createView(e){var t;this.editorView=new ea(e,{...this.options.editorProps,attributes:{role:"textbox",...null==(t=this.options.editorProps)?void 0:t.attributes},dispatchTransaction:this.dispatchTransaction.bind(this),state:this.editorState,markViews:this.extensionManager.markViews,nodeViews:this.extensionManager.nodeViews});const n=this.state.reconfigure({plugins:this.extensionManager.plugins});this.view.updateState(n),this.prependClass(),this.injectCSS();this.view.dom.editor=this}createNodeViews(){this.view.isDestroyed||this.view.setProps({markViews:this.extensionManager.markViews,nodeViews:this.extensionManager.nodeViews})}prependClass(){this.view.dom.className=`tiptap ${this.view.dom.className}`}captureTransaction(e){this.isCapturingTransaction=!0,e(),this.isCapturingTransaction=!1;const t=this.capturedTransaction;return this.capturedTransaction=null,t}dispatchTransaction(e){if(this.view.isDestroyed)return;if(this.isCapturingTransaction)return this.capturedTransaction?void e.steps.forEach(e=>{var t;return null==(t=this.capturedTransaction)?void 0:t.step(e)}):void(this.capturedTransaction=e);const{state:t,transactions:n}=this.state.applyTransaction(e),r=!this.state.selection.eq(t.selection),o=n.includes(e),i=this.state;if(this.emit("beforeTransaction",{editor:this,transaction:e,nextState:t}),!o)return;this.view.updateState(t),this.emit("transaction",{editor:this,transaction:e,appendedTransactions:n.slice(1)}),r&&this.emit("selectionUpdate",{editor:this,transaction:e});const s=n.findLast(e=>e.getMeta("focus")||e.getMeta("blur")),a=s?.getMeta("focus"),l=s?.getMeta("blur");a&&this.emit("focus",{editor:this,event:a.event,transaction:s}),l&&this.emit("blur",{editor:this,event:l.event,transaction:s}),!e.getMeta("preventUpdate")&&n.some(e=>e.docChanged)&&!i.doc.eq(t.doc)&&this.emit("update",{editor:this,transaction:e,appendedTransactions:n.slice(1)})}getAttributes(e){return Ma(this.state,e)}isActive(e,t){const n="string"==typeof e?e:null,r="string"==typeof e?t:e;return vf(this.state,n,r)}getJSON(){return this.state.doc.toJSON()}getHTML(){return es(this.state.doc.content,this.schema)}getText(e){const{blockSeparator:t="\n\n",textSerializers:n={}}=e||{};return Sf(this.state.doc,{blockSeparator:t,textSerializers:{...Sa(this.schema),...n}})}get isEmpty(){return Dr(this.state.doc)}destroy(){this.emit("destroy"),this.unmount(),this.removeAllListeners()}get isDestroyed(){var e,t;return null==(t=null==(e=this.editorView)?void 0:e.isDestroyed)||t}$node(e,t){var n;return(null==(n=this.$doc)?void 0:n.querySelector(e,t))||null}$nodes(e,t){var n;return(null==(n=this.$doc)?void 0:n.querySelectorAll(e,t))||null}$pos(e){const t=this.state.doc.resolve(e);return new Yh(t,this)}get $doc(){return this.$pos(0)}};function on(e){return new ss({find:e.find,handler:({state:t,range:n,match:r})=>{const o=R(e.getAttributes,void 0,r);if(!1===o||null===o)return null;const{tr:i}=t,s=r[r.length-1],a=r[0];if(s){const r=a.search(/\S/),l=n.from+a.indexOf(s),c=l+s.length;if(is(n.from,n.to,t.doc).filter(t=>t.mark.type.excluded.find(n=>n===e.type&&n!==t.mark.type)).filter(e=>e.to>l).length)return null;c<n.to&&i.delete(c,n.to),l>n.from&&i.delete(n.from+r,l);const d=n.from+r+s.length;i.addMark(n.from+r,d,e.type.create(o||{})),i.removeStoredMark(e.type)}},undoable:e.undoable})}function wi(e){return new ss({find:e.find,handler:({state:t,range:n,match:r})=>{const o=t.doc.resolve(n.from),i=R(e.getAttributes,void 0,r)||{};if(!o.node(-1).canReplaceWith(o.index(-1),o.indexAfter(-1),e.type))return null;t.tr.delete(n.from,n.to).setBlockType(n.from,n.from,e.type,i)},undoable:e.undoable})}function At(e){return new ss({find:e.find,handler:({state:t,range:n,match:r,chain:o})=>{const i=R(e.getAttributes,void 0,r)||{},s=t.tr.delete(n.from,n.to),a=s.doc.resolve(n.from).blockRange(),l=a&&zi(a,e.type,i);if(!l)return null;if(s.wrap(a,l),e.keepMarks&&e.editor){const{selection:n,storedMarks:r}=t,{splittableMarks:o}=e.editor.extensionManager,i=r||n.$to.parentOffset&&n.$from.marks();if(i){const e=i.filter(e=>o.includes(e.type.name));s.ensureMarks(e)}}if(e.keepAttributes){const t="bulletList"===e.type.name||"orderedList"===e.type.name?"listItem":"taskList";o().updateAttributes(t,i).run()}const c=s.doc.resolve(n.from-1).nodeBefore;c&&c.type===e.type&&Ye(s.doc,n.from-1)&&(!e.joinPredicate||e.joinPredicate(r,c))&&s.join(n.from-1)},undoable:e.undoable})}function Zh(e,t,n={}){const{state:r}=t,{doc:o,tr:i}=r,s=e;o.descendants((t,r)=>{const o=i.mapping.map(r),a=i.mapping.map(r)+t.nodeSize;let l=null;if(t.marks.forEach(e=>{if(e!==s)return!1;l=e}),!l)return;let c=!1;if(Object.keys(n).forEach(e=>{n[e]!==l.attrs[e]&&(c=!0)}),c){const t=e.type.create({...e.attrs,...n});i.removeMark(o,a,e.type),i.addMark(o,a,t)}}),i.docChanged&&t.view.dispatch(i)}var me=class e extends ls{constructor(){super(...arguments),this.type="node"}static create(t={}){const n="function"==typeof t?t():t;return new e(n)}configure(e){return super.configure(e)}extend(e){const t="function"==typeof e?e():e;return super.extend(t)}};function Nt(e){return new Bf({find:e.find,handler:({state:t,range:n,match:r,pasteEvent:o})=>{const i=R(e.getAttributes,void 0,r,o);if(!1===i||null===i)return null;const{tr:s}=t,a=r[r.length-1],l=r[0];let c=n.to;if(a){const r=l.search(/\S/),o=n.from+l.indexOf(a),d=o+a.length;if(is(n.from,n.to,t.doc).filter(t=>t.mark.type.excluded.find(n=>n===e.type&&n!==t.mark.type)).filter(e=>e.to>o).length)return null;d<n.to&&s.delete(d,n.to),o>n.from&&s.delete(n.from+r,o),c=n.from+r+a.length,s.addMark(n.from+r,c,e.type.create(i||{})),s.removeStoredMark(e.type)}}})}var ep=me.create({name:"doc",topNode:!0,content:"block+"}),Am=ep,tp=me.create({name:"text",group:"inline"}),Nm=tp,np=me.create({name:"paragraph",priority:1e3,addOptions:()=>({HTMLAttributes:{}}),group:"block",content:"inline*",parseHTML:()=>[{tag:"p"}],renderHTML({HTMLAttributes:e}){return["p",W(this.options.HTMLAttributes,e),0]},addCommands(){return{setParagraph:()=>({commands:e})=>e.setNode(this.name)}},addKeyboardShortcuts(){return{"Mod-Alt-0":()=>this.editor.commands.setParagraph()}}}),Dm=np,rp=me.create({name:"heading",addOptions:()=>({levels:[1,2,3,4,5,6],HTMLAttributes:{}}),content:"inline*",group:"block",defining:!0,addAttributes:()=>({level:{default:1,rendered:!1}}),parseHTML(){return this.options.levels.map(e=>({tag:`h${e}`,attrs:{level:e}}))},renderHTML({node:e,HTMLAttributes:t}){return[`h${this.options.levels.includes(e.attrs.level)?e.attrs.level:this.options.levels[0]}`,W(this.options.HTMLAttributes,t),0]},addCommands(){return{setHeading:e=>({commands:t})=>!!this.options.levels.includes(e.level)&&t.setNode(this.name,e),toggleHeading:e=>({commands:t})=>!!this.options.levels.includes(e.level)&&t.toggleNode(this.name,"paragraph",e)}},addKeyboardShortcuts(){return this.options.levels.reduce((e,t)=>({...e,[`Mod-Alt-${t}`]:()=>this.editor.commands.toggleHeading({level:t})}),{})},addInputRules(){return this.options.levels.map(e=>wi({find:new RegExp(`^(#{${Math.min(...this.options.levels)},${e}})\\s$`),type:this.type,getAttributes:{level:e}}))}}),Im=rp,_n=(e,t)=>{if("slot"===e)return 0;if(e instanceof Function)return e(t);const{children:n,...r}=t??{};if("svg"===e)throw new Error("SVG elements are not supported in the JSX syntax, use the array syntax instead");return[e,r,n]},ip=/^\s*>\s$/,sp=me.create({name:"blockquote",addOptions:()=>({HTMLAttributes:{}}),content:"block+",group:"block",defining:!0,parseHTML:()=>[{tag:"blockquote"}],renderHTML({HTMLAttributes:e}){return _n("blockquote",{...W(this.options.HTMLAttributes,e),children:_n("slot",{})})},addCommands(){return{setBlockquote:()=>({commands:e})=>e.wrapIn(this.name),toggleBlockquote:()=>({commands:e})=>e.toggleWrap(this.name),unsetBlockquote:()=>({commands:e})=>e.lift(this.name)}},addKeyboardShortcuts(){return{"Mod-Shift-b":()=>this.editor.commands.toggleBlockquote()}},addInputRules(){return[At({find:ip,type:this.type})]}}),Rm=sp,op=/^```([a-z]+)?[\s\n]$/,lp=/^~~~([a-z]+)?[\s\n]$/,ap=me.create({name:"codeBlock",addOptions:()=>({languageClassPrefix:"language-",exitOnTripleEnter:!0,exitOnArrowDown:!0,defaultLanguage:null,enableTabIndentation:!1,tabSize:4,HTMLAttributes:{}}),content:"text*",marks:"",group:"block",code:!0,defining:!0,addAttributes(){return{language:{default:this.options.defaultLanguage,parseHTML:e=>{var t;const{languageClassPrefix:n}=this.options;return[...(null==(t=e.firstElementChild)?void 0:t.classList)||[]].filter(e=>e.startsWith(n)).map(e=>e.replace(n,""))[0]||null},rendered:!1}}},parseHTML:()=>[{tag:"pre",preserveWhitespace:"full"}],renderHTML({node:e,HTMLAttributes:t}){return["pre",W(this.options.HTMLAttributes,t),["code",{class:e.attrs.language?this.options.languageClassPrefix+e.attrs.language:null},0]]},addCommands(){return{setCodeBlock:e=>({commands:t})=>t.setNode(this.name,e),toggleCodeBlock:e=>({commands:t})=>t.toggleNode(this.name,"paragraph",e)}},addKeyboardShortcuts(){return{"Mod-Alt-c":()=>this.editor.commands.toggleCodeBlock(),Backspace:()=>{const{empty:e,$anchor:t}=this.editor.state.selection,n=1===t.pos;return!(!e||t.parent.type.name!==this.name)&&(!(!n&&t.parent.textContent.length)&&this.editor.commands.clearNodes())},Tab:({editor:e})=>{if(!this.options.enableTabIndentation)return!1;const{state:t}=e,{selection:n}=t,{$from:r,empty:o}=n;if(r.parent.type!==this.type)return!1;const i=" ".repeat(this.options.tabSize);return o?e.commands.insertContent(i):e.commands.command(({tr:e})=>{const{from:r,to:o}=n,s=t.doc.textBetween(r,o,"\n","\n").split("\n").map(e=>i+e).join("\n");return e.replaceWith(r,o,t.schema.text(s)),!0})},"Shift-Tab":({editor:e})=>{if(!this.options.enableTabIndentation)return!1;const{state:t}=e,{selection:n}=t,{$from:r,empty:o}=n;return r.parent.type===this.type&&(o?e.commands.command(({tr:e})=>{var n;const{pos:o}=r,i=r.start(),s=r.end(),a=t.doc.textBetween(i,s,"\n","\n").split("\n");let l=0,c=0;const d=o-i;for(let e=0;e<a.length;e+=1){if(c+a[e].length>=d){l=e;break}c+=a[e].length+1}const h=(null==(n=a[l].match(/^ */))?void 0:n[0])||"",p=Math.min(h.length,this.options.tabSize);if(0===p)return!0;let u=i;for(let e=0;e<l;e+=1)u+=a[e].length+1;return e.delete(u,u+p),o-u<=p&&e.setSelection(v.create(e.doc,u)),!0}):e.commands.command(({tr:e})=>{const{from:r,to:o}=n,i=t.doc.textBetween(r,o,"\n","\n").split("\n").map(e=>{var t;const n=(null==(t=e.match(/^ */))?void 0:t[0])||"",r=Math.min(n.length,this.options.tabSize);return e.slice(r)}).join("\n");return e.replaceWith(r,o,t.schema.text(i)),!0}))},Enter:({editor:e})=>{if(!this.options.exitOnTripleEnter)return!1;const{state:t}=e,{selection:n}=t,{$from:r,empty:o}=n;if(!o||r.parent.type!==this.type)return!1;const i=r.parentOffset===r.parent.nodeSize-2,s=r.parent.textContent.endsWith("\n\n");return!(!i||!s)&&e.chain().command(({tr:e})=>(e.delete(r.pos-2,r.pos),!0)).exitCode().run()},ArrowDown:({editor:e})=>{if(!this.options.exitOnArrowDown)return!1;const{state:t}=e,{selection:n,doc:r}=t,{$from:o,empty:i}=n;if(!i||o.parent.type!==this.type||o.parentOffset!==o.parent.nodeSize-2)return!1;const s=o.after();return void 0!==s&&(r.nodeAt(s)?e.commands.command(({tr:e})=>(e.setSelection(N.near(r.resolve(s))),!0)):e.commands.exitCode())}}},addInputRules(){return[wi({find:op,type:this.type,getAttributes:e=>({language:e[1]})}),wi({find:lp,type:this.type,getAttributes:e=>({language:e[1]})})]},addProseMirrorPlugins(){return[new V({key:new q("codeBlockVSCodeHandler"),props:{handlePaste:(e,t)=>{if(!t.clipboardData||this.editor.isActive(this.type.name))return!1;const n=t.clipboardData.getData("text/plain"),r=t.clipboardData.getData("vscode-editor-data"),o=r?JSON.parse(r):void 0,i=o?.mode;if(!n||!i)return!1;const{tr:s,schema:a}=e.state,l=a.text(n.replace(/\r\n?/g,"\n"));return s.replaceSelectionWith(this.type.create({language:i},l)),s.selection.$from.parent.type!==this.type&&s.setSelection(v.near(s.doc.resolve(Math.max(0,s.selection.from-2)))),s.setMeta("paste",!0),e.dispatch(s),!0}}})]}}),Pm=ap;function cp(e={}){return new V({view:t=>new up(t,e)})}class up{constructor(e,t){var n;this.editorView=e,this.cursorPos=null,this.element=null,this.timeout=-1,this.width=null!==(n=t.width)&&void 0!==n?n:1,this.color=!1===t.color?void 0:t.color||"black",this.class=t.class,this.handlers=["dragover","dragend","drop","dragleave"].map(t=>{let n=e=>{this[t](e)};return e.dom.addEventListener(t,n),{name:t,handler:n}})}destroy(){this.handlers.forEach(({name:e,handler:t})=>this.editorView.dom.removeEventListener(e,t))}update(e,t){null!=this.cursorPos&&t.doc!=e.state.doc&&(this.cursorPos>e.state.doc.content.size?this.setCursor(null):this.updateOverlay())}setCursor(e){e!=this.cursorPos&&(this.cursorPos=e,null==e?(this.element.parentNode.removeChild(this.element),this.element=null):this.updateOverlay())}updateOverlay(){let e,t=this.editorView.state.doc.resolve(this.cursorPos),n=!t.parent.inlineContent,r=this.editorView.dom,o=r.getBoundingClientRect(),i=o.width/r.offsetWidth,s=o.height/r.offsetHeight;if(n){let n=t.nodeBefore,r=t.nodeAfter;if(n||r){let t=this.editorView.nodeDOM(this.cursorPos-(n?n.nodeSize:0));if(t){let o=t.getBoundingClientRect(),i=n?o.bottom:o.top;n&&r&&(i=(i+this.editorView.nodeDOM(this.cursorPos).getBoundingClientRect().top)/2);let a=this.width/2*s;e={left:o.left,right:o.right,top:i-a,bottom:i+a}}}}if(!e){let t=this.editorView.coordsAtPos(this.cursorPos),n=this.width/2*i;e={left:t.left-n,right:t.left+n,top:t.top,bottom:t.bottom}}let a,l,c=this.editorView.dom.offsetParent;if(this.element||(this.element=c.appendChild(document.createElement("div")),this.class&&(this.element.className=this.class),this.element.style.cssText="position: absolute; z-index: 50; pointer-events: none;",this.color&&(this.element.style.backgroundColor=this.color)),this.element.classList.toggle("prosemirror-dropcursor-block",n),this.element.classList.toggle("prosemirror-dropcursor-inline",!n),!c||c==document.body&&"static"==getComputedStyle(c).position)a=-pageXOffset,l=-pageYOffset;else{let e=c.getBoundingClientRect(),t=e.width/c.offsetWidth,n=e.height/c.offsetHeight;a=e.left-c.scrollLeft*t,l=e.top-c.scrollTop*n}this.element.style.left=(e.left-a)/i+"px",this.element.style.top=(e.top-l)/s+"px",this.element.style.width=(e.right-e.left)/i+"px",this.element.style.height=(e.bottom-e.top)/s+"px"}scheduleRemoval(e){clearTimeout(this.timeout),this.timeout=setTimeout(()=>this.setCursor(null),e)}dragover(e){if(!this.editorView.editable)return;let t=this.editorView.posAtCoords({left:e.clientX,top:e.clientY}),n=t&&t.inside>=0&&this.editorView.state.doc.nodeAt(t.inside),r=n&&n.type.spec.disableDropCursor,o="function"==typeof r?r(this.editorView,t,e):r;if(t&&!o){let e=t.pos;if(this.editorView.dragging&&this.editorView.dragging.slice){let t=hl(this.editorView.state.doc,e,this.editorView.dragging.slice);null!=t&&(e=t)}this.setCursor(e),this.scheduleRemoval(5e3)}}dragend(){this.scheduleRemoval(20)}drop(){this.scheduleRemoval(20)}dragleave(e){this.editorView.dom.contains(e.relatedTarget)||this.setCursor(null)}}class $ extends N{constructor(e){super(e,e)}map(e,t){let n=e.resolve(t.map(this.head));return $.valid(n)?new $(n):N.near(n)}content(){return S.empty}eq(e){return e instanceof $&&e.head==this.head}toJSON(){return{type:"gapcursor",pos:this.head}}static fromJSON(e,t){if("number"!=typeof t.pos)throw new RangeError("Invalid input for GapCursor.fromJSON");return new $(e.resolve(t.pos))}getBookmark(){return new cs(this.anchor)}static valid(e){let t=e.parent;if(t.isTextblock||!dp(e)||!fp(e))return!1;let n=t.type.spec.allowGapCursor;if(null!=n)return n;let r=t.contentMatchAt(e.index()).defaultType;return r&&r.isTextblock}static findGapCursorFrom(e,t,n=!1){e:for(;;){if(!n&&$.valid(e))return e;let r=e.pos,o=null;for(let n=e.depth;;n--){let i=e.node(n);if(t>0?e.indexAfter(n)<i.childCount:e.index(n)>0){o=i.child(t>0?e.indexAfter(n):e.index(n)-1);break}if(0==n)return null;r+=t;let s=e.doc.resolve(r);if($.valid(s))return s}for(;;){let i=t>0?o.firstChild:o.lastChild;if(!i){if(o.isAtom&&!o.isText&&!T.isSelectable(o)){e=e.doc.resolve(r+o.nodeSize*t),n=!1;continue e}break}o=i,r+=t;let s=e.doc.resolve(r);if($.valid(s))return s}return null}}}$.prototype.visible=!1,$.findFrom=$.findGapCursorFrom,N.jsonID("gapcursor",$);class cs{constructor(e){this.pos=e}map(e){return new cs(e.map(this.pos))}resolve(e){let t=e.resolve(this.pos);return $.valid(t)?new $(t):N.near(t)}}function dp(e){for(let t=e.depth;t>=0;t--){let n=e.index(t),r=e.node(t);if(0!=n)for(let e=r.child(n-1);;e=e.lastChild){if(0==e.childCount&&!e.inlineContent||e.isAtom||e.type.spec.isolating)return!0;if(e.inlineContent)return!1}else if(r.type.spec.isolating)return!0}return!0}function fp(e){for(let t=e.depth;t>=0;t--){let n=e.indexAfter(t),r=e.node(t);if(n!=r.childCount)for(let e=r.child(n);;e=e.firstChild){if(0==e.childCount&&!e.inlineContent||e.isAtom||e.type.spec.isolating)return!0;if(e.inlineContent)return!1}else if(r.type.spec.isolating)return!0}return!0}function hp(){return new V({props:{decorations:yp,createSelectionBetween:(e,t,n)=>t.pos==n.pos&&$.valid(n)?new $(n):null,handleClick:mp,handleKeyDown:pp,handleDOMEvents:{beforeinput:gp}}})}const pp=ta({ArrowLeft:Mn("horiz",-1),ArrowRight:Mn("horiz",1),ArrowUp:Mn("vert",-1),ArrowDown:Mn("vert",1)});function Mn(e,t){const n="vert"==e?t>0?"down":"up":t>0?"right":"left";return function(e,r,o){let i=e.selection,s=t>0?i.$to:i.$from,a=i.empty;if(i instanceof v){if(!o.endOfTextblock(n)||0==s.depth)return!1;a=!1,s=e.doc.resolve(t>0?s.after():s.before())}let l=$.findGapCursorFrom(s,t,a);return!!l&&(r&&r(e.tr.setSelection(new $(l))),!0)}}function mp(e,t,n){if(!e||!e.editable)return!1;let r=e.state.doc.resolve(t);if(!$.valid(r))return!1;let o=e.posAtCoords({left:n.clientX,top:n.clientY});return!(o&&o.inside>-1&&T.isSelectable(e.state.doc.nodeAt(o.inside)))&&(e.dispatch(e.state.tr.setSelection(new $(r))),!0)}function gp(e,t){if("insertCompositionText"!=t.inputType||!(e.state.selection instanceof $))return!1;let{$from:n}=e.state.selection,r=n.parent.contentMatchAt(n.index()).findWrapping(e.state.schema.nodes.text);if(!r)return!1;let o=b.empty;for(let e=r.length-1;e>=0;e--)o=b.from(r[e].createAndFill(null,o));let i=e.state.tr.replace(n.pos,n.pos,new S(o,0,0));return i.setSelection(v.near(i.doc.resolve(n.pos+1))),e.dispatch(i),!1}function yp(e){if(!(e.selection instanceof $))return null;let t=document.createElement("div");return t.className="ProseMirror-gapcursor",z.create(e.doc,[te.widget(e.selection.head,t,{key:"gapcursor"})])}var Un=200,J=function(){};J.prototype.append=function(e){return e.length?(e=J.from(e),!this.length&&e||e.length<Un&&this.leafAppend(e)||this.length<Un&&e.leafPrepend(this)||this.appendInner(e)):this},J.prototype.prepend=function(e){return e.length?J.from(e).append(this):this},J.prototype.appendInner=function(e){return new bp(this,e)},J.prototype.slice=function(e,t){return void 0===e&&(e=0),void 0===t&&(t=this.length),e>=t?J.empty:this.sliceInner(Math.max(0,e),Math.min(this.length,t))},J.prototype.get=function(e){if(!(e<0||e>=this.length))return this.getInner(e)},J.prototype.forEach=function(e,t,n){void 0===t&&(t=0),void 0===n&&(n=this.length),t<=n?this.forEachInner(e,t,n,0):this.forEachInvertedInner(e,t,n,0)},J.prototype.map=function(e,t,n){void 0===t&&(t=0),void 0===n&&(n=this.length);var r=[];return this.forEach(function(t,n){return r.push(e(t,n))},t,n),r},J.from=function(e){return e instanceof J?e:e&&e.length?new Ka(e):J.empty};var Ka=function(e){function t(t){e.call(this),this.values=t}e&&(t.__proto__=e),t.prototype=Object.create(e&&e.prototype),t.prototype.constructor=t;var n={length:{configurable:!0},depth:{configurable:!0}};return t.prototype.flatten=function(){return this.values},t.prototype.sliceInner=function(e,n){return 0==e&&n==this.length?this:new t(this.values.slice(e,n))},t.prototype.getInner=function(e){return this.values[e]},t.prototype.forEachInner=function(e,t,n,r){for(var o=t;o<n;o++)if(!1===e(this.values[o],r+o))return!1},t.prototype.forEachInvertedInner=function(e,t,n,r){for(var o=t-1;o>=n;o--)if(!1===e(this.values[o],r+o))return!1},t.prototype.leafAppend=function(e){if(this.length+e.length<=Un)return new t(this.values.concat(e.flatten()))},t.prototype.leafPrepend=function(e){if(this.length+e.length<=Un)return new t(e.flatten().concat(this.values))},n.length.get=function(){return this.values.length},n.depth.get=function(){return 0},Object.defineProperties(t.prototype,n),t}(J);J.empty=new Ka([]);var bp=function(e){function t(t,n){e.call(this),this.left=t,this.right=n,this.length=t.length+n.length,this.depth=Math.max(t.depth,n.depth)+1}return e&&(t.__proto__=e),t.prototype=Object.create(e&&e.prototype),t.prototype.constructor=t,t.prototype.flatten=function(){return this.left.flatten().concat(this.right.flatten())},t.prototype.getInner=function(e){return e<this.left.length?this.left.get(e):this.right.get(e-this.left.length)},t.prototype.forEachInner=function(e,t,n,r){var o=this.left.length;if(t<o&&!1===this.left.forEachInner(e,t,Math.min(n,o),r)||n>o&&!1===this.right.forEachInner(e,Math.max(t-o,0),Math.min(this.length,n)-o,r+o))return!1},t.prototype.forEachInvertedInner=function(e,t,n,r){var o=this.left.length;if(t>o&&!1===this.right.forEachInvertedInner(e,t-o,Math.max(n,o)-o,r+o)||n<o&&!1===this.left.forEachInvertedInner(e,Math.min(t,o),n,r))return!1},t.prototype.sliceInner=function(e,t){if(0==e&&t==this.length)return this;var n=this.left.length;return t<=n?this.left.slice(e,t):e>=n?this.right.slice(e-n,t-n):this.left.slice(e,n).append(this.right.slice(0,t-n))},t.prototype.leafAppend=function(e){var n=this.right.leafAppend(e);if(n)return new t(this.left,n)},t.prototype.leafPrepend=function(e){var n=this.left.leafPrepend(e);if(n)return new t(n,this.right)},t.prototype.appendInner=function(e){return this.left.depth>=Math.max(this.right.depth,e.depth)+1?new t(this.left,new t(this.right,e)):new t(this,e)},t}(J);const kp=500;class ge{constructor(e,t){this.items=e,this.eventCount=t}popEvent(e,t){if(0==this.eventCount)return null;let n,r,o=this.items.length;for(;;o--)if(this.items.get(o-1).selection){--o;break}t&&(n=this.remapping(o,this.items.length),r=n.maps.length);let i,s,a=e.tr,l=[],c=[];return this.items.forEach((e,t)=>{if(!e.step)return n||(n=this.remapping(o,t+1),r=n.maps.length),r--,void c.push(e);if(n){c.push(new ke(e.map));let t,o=e.step.map(n.slice(r));o&&a.maybeStep(o).doc&&(t=a.mapping.maps[a.mapping.maps.length-1],l.push(new ke(t,void 0,void 0,l.length+c.length))),r--,t&&n.appendMap(t,r)}else a.maybeStep(e.step);return e.selection?(i=n?e.selection.map(n.slice(r)):e.selection,s=new ge(this.items.slice(0,o).append(c.reverse().concat(l)),this.eventCount-1),!1):void 0},this.items.length,0),{remaining:s,transform:a,selection:i}}addTransform(e,t,n,r){let o=[],i=this.eventCount,s=this.items,a=!r&&s.length?s.get(s.length-1):null;for(let n=0;n<e.steps.length;n++){let l,c=e.steps[n].invert(e.docs[n]),d=new ke(e.mapping.maps[n],c,t);(l=a&&a.merge(d))&&(d=l,n?o.pop():s=s.slice(0,s.length-1)),o.push(d),t&&(i++,t=void 0),r||(a=d)}let l=i-n.depth;return l>Sp&&(s=xp(s,l),i-=l),new ge(s.append(o),i)}remapping(e,t){let n=new Qt;return this.items.forEach((t,r)=>{let o=null!=t.mirrorOffset&&r-t.mirrorOffset>=e?n.maps.length-t.mirrorOffset:void 0;n.appendMap(t.map,o)},e,t),n}addMaps(e){return 0==this.eventCount?this:new ge(this.items.append(e.map(e=>new ke(e))),this.eventCount)}rebased(e,t){if(!this.eventCount)return this;let n=[],r=Math.max(0,this.items.length-t),o=e.mapping,i=e.steps.length,s=this.eventCount;this.items.forEach(e=>{e.selection&&s--},r);let a=t;this.items.forEach(t=>{let r=o.getMirror(--a);if(null==r)return;i=Math.min(i,r);let l=o.maps[r];if(t.step){let i=e.steps[r].invert(e.docs[r]),c=t.selection&&t.selection.map(o.slice(a+1,r));c&&s++,n.push(new ke(l,i,c))}else n.push(new ke(l))},r);let l=[];for(let e=t;e<i;e++)l.push(new ke(o.maps[e]));let c=this.items.slice(0,r).append(l).append(n),d=new ge(c,s);return d.emptyItemCount()>kp&&(d=d.compress(this.items.length-n.length)),d}emptyItemCount(){let e=0;return this.items.forEach(t=>{t.step||e++}),e}compress(e=this.items.length){let t=this.remapping(0,e),n=t.maps.length,r=[],o=0;return this.items.forEach((i,s)=>{if(s>=e)r.push(i),i.selection&&o++;else if(i.step){let e=i.step.map(t.slice(n)),s=e&&e.getMap();if(n--,s&&t.appendMap(s,n),e){let a=i.selection&&i.selection.map(t.slice(n));a&&o++;let l,c=new ke(s.invert(),e,a),d=r.length-1;(l=r.length&&r[d].merge(c))?r[d]=l:r.push(c)}}else i.map&&n--},this.items.length,0),new ge(J.from(r.reverse()),o)}}function xp(e,t){let n;return e.forEach((e,r)=>{if(e.selection&&0==t--)return n=r,!1}),e.slice(n)}ge.empty=new ge(J.empty,0);class ke{constructor(e,t,n,r){this.map=e,this.step=t,this.selection=n,this.mirrorOffset=r}merge(e){if(this.step&&e.step&&!e.selection){let t=e.step.merge(this.step);if(t)return new ke(t.getMap().invert(),t,this.selection)}}}class ze{constructor(e,t,n,r,o){this.done=e,this.undone=t,this.prevRanges=n,this.prevTime=r,this.prevComposition=o}}const Sp=20;function Cp(e,t,n,r){let o,i=n.getMeta(at);if(i)return i.historyState;n.getMeta(Tp)&&(e=new ze(e.done,e.undone,null,0,-1));let s=n.getMeta("appendedTransaction");if(0==n.steps.length)return e;if(s&&s.getMeta(at))return s.getMeta(at).redo?new ze(e.done.addTransform(n,void 0,r,Nn(t)),e.undone,vo(n.mapping.maps),e.prevTime,e.prevComposition):new ze(e.done,e.undone.addTransform(n,void 0,r,Nn(t)),null,e.prevTime,e.prevComposition);if(!1===n.getMeta("addToHistory")||s&&!1===s.getMeta("addToHistory"))return(o=n.getMeta("rebased"))?new ze(e.done.rebased(n,o),e.undone.rebased(n,o),Zr(e.prevRanges,n.mapping),e.prevTime,e.prevComposition):new ze(e.done.addMaps(n.mapping.maps),e.undone.addMaps(n.mapping.maps),Zr(e.prevRanges,n.mapping),e.prevTime,e.prevComposition);{let o=n.getMeta("composition"),i=0==e.prevTime||!s&&e.prevComposition!=o&&(e.prevTime<(n.time||0)-r.newGroupDelay||!Mp(n,e.prevRanges)),a=s?Zr(e.prevRanges,n.mapping):vo(n.mapping.maps);return new ze(e.done.addTransform(n,i?t.selection.getBookmark():void 0,r,Nn(t)),ge.empty,a,n.time,o??e.prevComposition)}}function Mp(e,t){if(!t)return!1;if(!e.docChanged)return!0;let n=!1;return e.mapping.maps[0].forEach((e,r)=>{for(let o=0;o<t.length;o+=2)e<=t[o+1]&&r>=t[o]&&(n=!0)}),n}function vo(e){let t=[];for(let n=e.length-1;n>=0&&0==t.length;n--)e[n].forEach((e,n,r,o)=>t.push(r,o));return t}function Zr(e,t){if(!e)return null;let n=[];for(let r=0;r<e.length;r+=2){let o=t.map(e[r],1),i=t.map(e[r+1],-1);o<=i&&n.push(o,i)}return n}function wp(e,t,n){let r=Nn(t),o=at.get(t).spec.config,i=(n?e.undone:e.done).popEvent(t,r);if(!i)return null;let s=i.selection.resolve(i.transform.doc),a=(n?e.done:e.undone).addTransform(i.transform,t.selection.getBookmark(),o,r),l=new ze(n?a:i.remaining,n?i.remaining:a,null,0,-1);return i.transform.setSelection(s).setMeta(at,{redo:n,historyState:l})}let ei=!1,Oo=null;function Nn(e){let t=e.plugins;if(Oo!=t){ei=!1,Oo=t;for(let e=0;e<t.length;e++)if(t[e].spec.historyPreserveItems){ei=!0;break}}return ei}const at=new q("history"),Tp=new q("closeHistory");function Ep(e={}){return e={depth:e.depth||100,newGroupDelay:e.newGroupDelay||500},new V({key:at,state:{init:()=>new ze(ge.empty,ge.empty,null,0,-1),apply:(t,n,r)=>Cp(n,r,t,e)},config:e,props:{handleDOMEvents:{beforeinput(e,t){let n=t.inputType,r="historyUndo"==n?Ua:"historyRedo"==n?Ja:null;return!!r&&(t.preventDefault(),r(e.state,e.dispatch))}}}})}function _a(e,t){return(n,r)=>{let o=at.getState(n);if(!o||0==(e?o.undone:o.done).eventCount)return!1;if(r){let i=wp(o,n,e);i&&r(t?i.scrollIntoView():i)}return!0}}const Ua=_a(!1,!0),Ja=_a(!0,!0);function Ao({types:e,node:t}){return t&&Array.isArray(e)&&e.includes(t.type)||t?.type===e}K.create({name:"characterCount",addOptions:()=>({limit:null,mode:"textSize",textCounter:e=>e.length,wordCounter:e=>e.split(" ").filter(e=>""!==e).length}),addStorage:()=>({characters:()=>0,words:()=>0}),onBeforeCreate(){this.storage.characters=e=>{const t=e?.node||this.editor.state.doc;if("textSize"===(e?.mode||this.options.mode)){const e=t.textBetween(0,t.content.size,void 0," ");return this.options.textCounter(e)}return t.nodeSize},this.storage.words=e=>{const t=e?.node||this.editor.state.doc,n=t.textBetween(0,t.content.size," "," ");return this.options.wordCounter(n)}},addProseMirrorPlugins(){let e=!1;return[new V({key:new q("characterCount"),appendTransaction:(t,n,r)=>{if(e)return;const o=this.options.limit;if(null==o||0===o)return void(e=!0);const i=this.storage.characters({node:r.doc});if(i>o){const t=0,n=i-o,s=r.tr.deleteRange(t,n);return e=!0,s}e=!0},filterTransaction:(e,t)=>{const n=this.options.limit;if(!e.docChanged||0===n||null==n)return!0;const r=this.storage.characters({node:t.doc}),o=this.storage.characters({node:e.doc});if(o<=n||r>n&&o>n&&o<=r)return!0;if(r>n&&o>n&&o>r||!e.getMeta("paste"))return!1;const i=e.selection.$head.pos,s=i-(o-n),a=i;return e.deleteRange(s,a),!(this.storage.characters({node:e.doc})>n)}})]}}),K.create({name:"dropCursor",addOptions:()=>({color:"currentColor",width:1,class:void 0}),addProseMirrorPlugins(){return[cp(this.options)]}}),K.create({name:"focus",addOptions:()=>({className:"has-focus",mode:"all"}),addProseMirrorPlugins(){return[new V({key:new q("focus"),props:{decorations:({doc:e,selection:t})=>{const{isEditable:n,isFocused:r}=this.editor,{anchor:o}=t,i=[];if(!n||!r)return z.create(e,[]);let s=0;"deepest"===this.options.mode&&e.descendants((e,t)=>{if(!e.isText)return o>=t&&o<=t+e.nodeSize-1&&void(s+=1)});let a=0;return e.descendants((e,t)=>!e.isText&&o>=t&&o<=t+e.nodeSize-1&&(a+=1,"deepest"===this.options.mode&&s-a>0||"shallowest"===this.options.mode&&a>1?"deepest"===this.options.mode:void i.push(te.node(t,t+e.nodeSize,{class:this.options.className})))),z.create(e,i)}}})]}}),K.create({name:"gapCursor",addProseMirrorPlugins:()=>[hp()],extendNodeSchema(e){var t;return{allowGapCursor:null!=(t=R(C(e,"allowGapCursor",{name:e.name,options:e.options,storage:e.storage})))?t:null}}}),K.create({name:"placeholder",addOptions:()=>({emptyEditorClass:"is-editor-empty",emptyNodeClass:"is-empty",placeholder:"Write something …",showOnlyWhenEditable:!0,showOnlyCurrent:!0,includeChildren:!1}),addProseMirrorPlugins(){return[new V({key:new q("placeholder"),props:{decorations:({doc:e,selection:t})=>{const n=this.editor.isEditable||!this.options.showOnlyWhenEditable,{anchor:r}=t,o=[];if(!n)return null;const i=this.editor.isEmpty;return e.descendants((e,t)=>{const n=r>=t&&r<=t+e.nodeSize,s=!e.isLeaf&&Dr(e);if((n||!this.options.showOnlyCurrent)&&s){const r=[this.options.emptyNodeClass];i&&r.push(this.options.emptyEditorClass);const s=te.node(t,t+e.nodeSize,{class:r.join(" "),"data-placeholder":"function"==typeof this.options.placeholder?this.options.placeholder({editor:this.editor,node:e,pos:t,hasAnchor:n}):this.options.placeholder});o.push(s)}return this.options.includeChildren}),z.create(e,o)}}})]}}),K.create({name:"selection",addOptions:()=>({className:"selection"}),addProseMirrorPlugins(){const{editor:e,options:t}=this;return[new V({key:new q("selection"),props:{decorations:n=>n.selection.empty||e.isFocused||!e.isEditable||Nf(n.selection)||e.view.dragging?null:z.create(n.doc,[te.inline(n.selection.from,n.selection.to,{class:t.className})])}})]}}),K.create({name:"trailingNode",addOptions:()=>({node:"paragraph",notAfter:[]}),addProseMirrorPlugins(){const e=new q(this.name),t=Object.entries(this.editor.schema.nodes).map(([,e])=>e).filter(e=>(this.options.notAfter||[]).concat(this.options.node).includes(e.name));return[new V({key:e,appendTransaction:(t,n,r)=>{const{doc:o,tr:i,schema:s}=r,a=e.getState(r),l=o.content.size,c=s.nodes[this.options.node];if(a)return i.insert(l,c.create())},state:{init:(e,n)=>!Ao({node:n.tr.doc.lastChild,types:t}),apply:(e,n)=>{if(!e.docChanged)return n;return!Ao({node:e.doc.lastChild,types:t})}}})]}});var vp=K.create({name:"undoRedo",addOptions:()=>({depth:100,newGroupDelay:500}),addCommands:()=>({undo:()=>({state:e,dispatch:t})=>Ua(e,t),redo:()=>({state:e,dispatch:t})=>Ja(e,t)}),addProseMirrorPlugins(){return[Ep(this.options)]},addKeyboardShortcuts(){return{"Mod-z":()=>this.editor.commands.undo(),"Shift-Mod-z":()=>this.editor.commands.redo(),"Mod-y":()=>this.editor.commands.redo(),"Mod-я":()=>this.editor.commands.undo(),"Shift-Mod-я":()=>this.editor.commands.redo()}}}),Lm=vp,Op=/(?:^|\s)(\*\*(?!\s+\*\*)((?:[^*]+))\*\*(?!\s+\*\*))$/,Ap=/(?:^|\s)(\*\*(?!\s+\*\*)((?:[^*]+))\*\*(?!\s+\*\*))/g,Np=/(?:^|\s)(__(?!\s+__)((?:[^_]+))__(?!\s+__))$/,Dp=/(?:^|\s)(__(?!\s+__)((?:[^_]+))__(?!\s+__))/g,Ip=pt.create({name:"bold",addOptions:()=>({HTMLAttributes:{}}),parseHTML(){return[{tag:"strong"},{tag:"b",getAttrs:e=>"normal"!==e.style.fontWeight&&null},{style:"font-weight=400",clearMark:e=>e.type.name===this.name},{style:"font-weight",getAttrs:e=>/^(bold(er)?|[5-9]\d{2,})$/.test(e)&&null}]},renderHTML({HTMLAttributes:e}){return _n("strong",{...W(this.options.HTMLAttributes,e),children:_n("slot",{})})},addCommands(){return{setBold:()=>({commands:e})=>e.setMark(this.name),toggleBold:()=>({commands:e})=>e.toggleMark(this.name),unsetBold:()=>({commands:e})=>e.unsetMark(this.name)}},addKeyboardShortcuts(){return{"Mod-b":()=>this.editor.commands.toggleBold(),"Mod-B":()=>this.editor.commands.toggleBold()}},addInputRules(){return[on({find:Op,type:this.type}),on({find:Np,type:this.type})]},addPasteRules(){return[Nt({find:Ap,type:this.type}),Nt({find:Dp,type:this.type})]}}),Bm=Ip,Rp=/(?:^|\s)(\*(?!\s+\*)((?:[^*]+))\*(?!\s+\*))$/,Pp=/(?:^|\s)(\*(?!\s+\*)((?:[^*]+))\*(?!\s+\*))/g,Lp=/(?:^|\s)(_(?!\s+_)((?:[^_]+))_(?!\s+_))$/,Bp=/(?:^|\s)(_(?!\s+_)((?:[^_]+))_(?!\s+_))/g,zp=pt.create({name:"italic",addOptions:()=>({HTMLAttributes:{}}),parseHTML(){return[{tag:"em"},{tag:"i",getAttrs:e=>"normal"!==e.style.fontStyle&&null},{style:"font-style=normal",clearMark:e=>e.type.name===this.name},{style:"font-style=italic"}]},renderHTML({HTMLAttributes:e}){return["em",W(this.options.HTMLAttributes,e),0]},addCommands(){return{setItalic:()=>({commands:e})=>e.setMark(this.name),toggleItalic:()=>({commands:e})=>e.toggleMark(this.name),unsetItalic:()=>({commands:e})=>e.unsetMark(this.name)}},addKeyboardShortcuts(){return{"Mod-i":()=>this.editor.commands.toggleItalic(),"Mod-I":()=>this.editor.commands.toggleItalic()}},addInputRules(){return[on({find:Rp,type:this.type}),on({find:Lp,type:this.type})]},addPasteRules(){return[Nt({find:Pp,type:this.type}),Nt({find:Bp,type:this.type})]}}),zm=zp,Fp=pt.create({name:"underline",addOptions:()=>({HTMLAttributes:{}}),parseHTML:()=>[{tag:"u"},{style:"text-decoration",consuming:!1,getAttrs:e=>!!e.includes("underline")&&{}}],renderHTML({HTMLAttributes:e}){return["u",W(this.options.HTMLAttributes,e),0]},addCommands(){return{setUnderline:()=>({commands:e})=>e.setMark(this.name),toggleUnderline:()=>({commands:e})=>e.toggleMark(this.name),unsetUnderline:()=>({commands:e})=>e.unsetMark(this.name)}},addKeyboardShortcuts(){return{"Mod-u":()=>this.editor.commands.toggleUnderline(),"Mod-U":()=>this.editor.commands.toggleUnderline()}}}),Fm=Fp,$p=/(?:^|\s)(~~(?!\s+~~)((?:[^~]+))~~(?!\s+~~))$/,Vp=/(?:^|\s)(~~(?!\s+~~)((?:[^~]+))~~(?!\s+~~))/g,Hp=pt.create({name:"strike",addOptions:()=>({HTMLAttributes:{}}),parseHTML:()=>[{tag:"s"},{tag:"del"},{tag:"strike"},{style:"text-decoration",consuming:!1,getAttrs:e=>!!e.includes("line-through")&&{}}],renderHTML({HTMLAttributes:e}){return["s",W(this.options.HTMLAttributes,e),0]},addCommands(){return{setStrike:()=>({commands:e})=>e.setMark(this.name),toggleStrike:()=>({commands:e})=>e.toggleMark(this.name),unsetStrike:()=>({commands:e})=>e.unsetMark(this.name)}},addKeyboardShortcuts(){return{"Mod-Shift-s":()=>this.editor.commands.toggleStrike()}},addInputRules(){return[on({find:$p,type:this.type})]},addPasteRules(){return[Nt({find:Vp,type:this.type})]}}),$m=Hp;const jp="aaa1rp3bb0ott3vie4c1le2ogado5udhabi7c0ademy5centure6ountant0s9o1tor4d0s1ult4e0g1ro2tna4f0l1rica5g0akhan5ency5i0g1rbus3force5tel5kdn3l0ibaba4pay4lfinanz6state5y2sace3tom5m0azon4ericanexpress7family11x2fam3ica3sterdam8nalytics7droid5quan4z2o0l2partments8p0le4q0uarelle8r0ab1mco4chi3my2pa2t0e3s0da2ia2sociates9t0hleta5torney7u0ction5di0ble3o3spost5thor3o0s4w0s2x0a2z0ure5ba0by2idu3namex4d1k2r0celona5laycard4s5efoot5gains6seball5ketball8uhaus5yern5b0c1t1va3cg1n2d1e0ats2uty4er2rlin4st0buy5t2f1g1h0arti5i0ble3d1ke2ng0o3o1z2j1lack0friday9ockbuster8g1omberg7ue3m0s1w2n0pparibas9o0ats3ehringer8fa2m1nd2o0k0ing5sch2tik2on4t1utique6x2r0adesco6idgestone9oadway5ker3ther5ussels7s1t1uild0ers6siness6y1zz3v1w1y1z0h3ca0b1fe2l0l1vinklein9m0era3p2non3petown5ital0one8r0avan4ds2e0er0s4s2sa1e1h1ino4t0ering5holic7ba1n1re3c1d1enter4o1rn3f0a1d2g1h0anel2nel4rity4se2t2eap3intai5ristmas6ome4urch5i0priani6rcle4sco3tadel4i0c2y3k1l0aims4eaning6ick2nic1que6othing5ud3ub0med6m1n1o0ach3des3ffee4llege4ogne5m0mbank4unity6pany2re3uter5sec4ndos3struction8ulting7tact3ractors9oking4l1p2rsica5untry4pon0s4rses6pa2r0edit0card4union9icket5own3s1uise0s6u0isinella9v1w1x1y0mru3ou3z2dad1nce3ta1e1ing3sun4y2clk3ds2e0al0er2s3gree4livery5l1oitte5ta3mocrat6ntal2ist5si0gn4v2hl2iamonds6et2gital5rect0ory7scount3ver5h2y2j1k1m1np2o0cs1tor4g1mains5t1wnload7rive4tv2ubai3nlop4pont4rban5vag2r2z2earth3t2c0o2deka3u0cation8e1g1mail3erck5nergy4gineer0ing9terprises10pson4quipment8r0icsson6ni3s0q1tate5t1u0rovision8s2vents5xchange6pert3osed4ress5traspace10fage2il1rwinds6th3mily4n0s2rm0ers5shion4t3edex3edback6rrari3ero6i0delity5o2lm2nal1nce1ial7re0stone6mdale6sh0ing5t0ness6j1k1lickr3ghts4r2orist4wers5y2m1o0o0d1tball6rd1ex2sale4um3undation8x2r0ee1senius7l1ogans4ntier7tr2ujitsu5n0d2rniture7tbol5yi3ga0l0lery3o1up4me0s3p1rden4y2b0iz3d0n2e0a1nt0ing5orge5f1g0ee3h1i0ft0s3ves2ing5l0ass3e1obal2o4m0ail3bh2o1x2n1odaddy5ld0point6f2o0dyear5g0le4p1t1v2p1q1r0ainger5phics5tis4een3ipe3ocery4up4s1t1u0cci3ge2ide2tars5ru3w1y2hair2mburg5ngout5us3bo2dfc0bank7ealth0care8lp1sinki6re1mes5iphop4samitsu7tachi5v2k0t2m1n1ockey4ldings5iday5medepot5goods5s0ense7nda3rse3spital5t0ing5t0els3mail5use3w2r1sbc3t1u0ghes5yatt3undai7ibm2cbc2e1u2d1e0ee3fm2kano4l1m0amat4db2mo0bilien9n0c1dustries8finiti5o2g1k1stitute6urance4e4t0ernational10uit4vestments10o1piranga7q1r0ish4s0maili5t0anbul7t0au2v3jaguar4va3cb2e0ep2tzt3welry6io2ll2m0p2nj2o0bs1urg4t1y2p0morgan6rs3uegos4niper7kaufen5ddi3e0rryhotels6properties14fh2g1h1i0a1ds2m1ndle4tchen5wi3m1n1oeln3matsu5sher5p0mg2n2r0d1ed3uokgroup8w1y0oto4z2la0caixa5mborghini8er3nd0rover6xess5salle5t0ino3robe5w0yer5b1c1ds2ease3clerc5frak4gal2o2xus4gbt3i0dl2fe0insurance9style7ghting6ke2lly3mited4o2ncoln4k2ve1ing5k1lc1p2oan0s3cker3us3l1ndon4tte1o3ve3pl0financial11r1s1t0d0a3u0ndbeck6xe1ury5v1y2ma0drid4if1son4keup4n0agement7go3p1rket0ing3s4riott5shalls7ttel5ba2c0kinsey7d1e0d0ia3et2lbourne7me1orial6n0u2rckmsd7g1h1iami3crosoft7l1ni1t2t0subishi9k1l0b1s2m0a2n1o0bi0le4da2e1i1m1nash3ey2ster5rmon3tgage6scow4to0rcycles9v0ie4p1q1r1s0d2t0n1r2u0seum3ic4v1w1x1y1z2na0b1goya4me2vy3ba2c1e0c1t0bank4flix4work5ustar5w0s2xt0direct7us4f0l2g0o2hk2i0co2ke1on3nja3ssan1y5l1o0kia3rton4w0ruz3tv4p1r0a1w2tt2u1yc2z2obi1server7ffice5kinawa6layan0group9lo3m0ega4ne1g1l0ine5oo2pen3racle3nge4g0anic5igins6saka4tsuka4t2vh3pa0ge2nasonic7ris2s1tners4s1y3y2ccw3e0t2f0izer5g1h0armacy6d1ilips5one2to0graphy6s4ysio5ics1tet2ures6d1n0g1k2oneer5zza4k1l0ace2y0station9umbing5s3m1n0c2ohl2ker3litie5rn2st3r0axi3ess3ime3o0d0uctions8f1gressive8mo2perties3y5tection8u0dential9s1t1ub2w0c2y2qa1pon3uebec3st5racing4dio4e0ad1lestate6tor2y4cipes5d0stone5umbrella9hab3ise0n3t2liance6n0t0als5pair3ort3ublican8st0aurant8view0s5xroth6ich0ardli6oh3l1o1p2o0cks3deo3gers4om3s0vp3u0gby3hr2n2w0e2yukyu6sa0arland6fe0ty4kura4le1on3msclub4ung5ndvik0coromant12ofi4p1rl2s1ve2xo3b0i1s2c0b1haeffler7midt4olarships8ol3ule3warz5ience5ot3d1e0arch3t2cure1ity6ek2lect4ner3rvices6ven3w1x0y3fr2g1h0angrila6rp3ell3ia1ksha5oes2p0ping5uji3w3i0lk2na1gles5te3j1k0i0n2y0pe4l0ing4m0art3ile4n0cf3o0ccer3ial4ftbank4ware6hu2lar2utions7ng1y2y2pa0ce3ort2t3r0l2s1t0ada2ples4r1tebank4farm7c0group6ockholm6rage3e3ream4udio2y3yle4u0cks3pplies3y2ort5rf1gery5zuki5v1watch4iss4x1y0dney4stems6z2tab1ipei4lk2obao4rget4tamotors6r2too4x0i3c0i2d0k2eam2ch0nology8l1masek5nnis4va3f1g1h0d1eater2re6iaa2ckets5enda4ps2res2ol4j0maxx4x2k0maxx5l1m0all4n1o0day3kyo3ols3p1ray3shiba5tal3urs3wn2yota3s3r0ade1ing4ining5vel0ers0insurance16ust3v2t1ube2i1nes3shu4v0s2w1z2ua1bank3s2g1k1nicom3versity8o2ol2ps2s1y1z2va0cations7na1guard7c1e0gas3ntures6risign5mögensberater2ung14sicherung10t2g1i0ajes4deo3g1king4llas4n1p1rgin4sa1ion4va1o3laanderen9n1odka3lvo3te1ing3o2yage5u2wales2mart4ter4ng0gou5tch0es6eather0channel12bcam3er2site5d0ding5ibo2r3f1hoswho6ien2ki2lliamhill9n0dows4e1ners6me2olterskluwer11odside6rk0s2ld3w2s1tc1f3xbox3erox4ihuan4n2xx2yz3yachts4hoo3maxun5ndex5e1odobashi7ga2kohama6u0tube6t1un3za0ppos4ra3ero3ip2m1one3uerich6w2",Wp="ελ1υ2бг1ел3дети4ею2католик6ом3мкд2он1сква6онлайн5рг3рус2ф2сайт3рб3укр3қаз3հայ3ישראל5קום3ابوظبي5رامكو5لاردن4بحرين5جزائر5سعودية6عليان5مغرب5مارات5یران5بارت2زار4يتك3ھارت5تونس4سودان3رية5شبكة4عراق2ب2مان4فلسطين6قطر3كاثوليك6وم3مصر2ليسيا5وريتانيا7قع4همراه5پاکستان7ڀارت4कॉम3नेट3भारत0म्3ोत5संगठन5বাংলা5ভারত2ৰত4ਭਾਰਤ4ભારત4ଭାରତ4இந்தியா6லங்கை6சிங்கப்பூர்11భారత్5ಭಾರತ4ഭാരതം5ලංකා4คอม3ไทย3ລາວ3გე2みんな3アマゾン4クラウド4グーグル4コム2ストア3セール3ファッション6ポイント4世界2中信1国1國1文网3亚马逊3企业2佛山2信息2健康2八卦2公司1益2台湾1灣2商城1店1标2嘉里0大酒店5在线2大拿2天主教3娱乐2家電2广东2微博2慈善2我爱你3手机2招聘2政务1府2新加坡2闻2时尚2書籍2机构2淡马锡3游戏2澳門2点看2移动2组织机构4网址1店1站1络2联通2谷歌2购物2通販2集团2電訊盈科4飞利浦3食品2餐厅2香格里拉3港2닷넷1컴2삼성2한국2",Ti="numeric",Ei="ascii",vi="alpha",Kt="asciinumeric",$t="alphanumeric",Oi="domain",qa="emoji",Kp="scheme",_p="slashscheme",ti="whitespace";function Up(e,t){return e in t||(t[e]=[]),t[e]}function rt(e,t,n){t[Ti]&&(t[Kt]=!0,t[$t]=!0),t[Ei]&&(t[Kt]=!0,t[vi]=!0),t[Kt]&&(t[$t]=!0),t[vi]&&(t[$t]=!0),t[$t]&&(t[Oi]=!0),t[qa]&&(t[Oi]=!0);for(const r in t){const t=Up(r,n);t.indexOf(e)<0&&t.push(e)}}function Jp(e,t){const n={};for(const r in t)t[r].indexOf(e)>=0&&(n[r]=!0);return n}function se(e=null){this.j={},this.jr=[],this.jd=null,this.t=e}se.groups={},se.prototype={accepts(){return!!this.t},go(e){const t=this,n=t.j[e];if(n)return n;for(let n=0;n<t.jr.length;n++){const r=t.jr[n][0],o=t.jr[n][1];if(o&&r.test(e))return o}return t.jd},has(e,t=!1){return t?e in this.j:!!this.go(e)},ta(e,t,n,r){for(let o=0;o<e.length;o++)this.tt(e[o],t,n,r)},tr(e,t,n,r){let o;return r=r||se.groups,t&&t.j?o=t:(o=new se(t),n&&r&&rt(t,n,r)),this.jr.push([e,o]),o},ts(e,t,n,r){let o=this;const i=e.length;if(!i)return o;for(let t=0;t<i-1;t++)o=o.tt(e[t]);return o.tt(e[i-1],t,n,r)},tt(e,t,n,r){r=r||se.groups;const o=this;if(t&&t.j)return o.j[e]=t,t;const i=t;let s,a=o.go(e);if(a?(s=new se,Object.assign(s.j,a.j),s.jr.push.apply(s.jr,a.jr),s.jd=a.jd,s.t=a.t):s=new se,i){if(r)if(s.t&&"string"==typeof s.t){rt(i,Object.assign(Jp(s.t,r),n),r)}else n&&rt(i,n,r);s.t=i}return o.j[e]=s,s}};const A=(e,t,n,r,o)=>e.ta(t,n,r,o),F=(e,t,n,r,o)=>e.tr(t,n,r,o),No=(e,t,n,r,o)=>e.ts(t,n,r,o),k=(e,t,n,r,o)=>e.tt(t,n,r,o),ve="WORD",Ai="UWORD",Ga="ASCIINUMERICAL",Ya="ALPHANUMERICAL",ln="LOCALHOST",Ni="TLD",Di="UTLD",Dn="SCHEME",St="SLASH_SCHEME",us="NUM",Ii="WS",ds="NL",_t="OPENBRACE",Ut="CLOSEBRACE",Jn="OPENBRACKET",qn="CLOSEBRACKET",Gn="OPENPAREN",Yn="CLOSEPAREN",Xn="OPENANGLEBRACKET",Qn="CLOSEANGLEBRACKET",Zn="FULLWIDTHLEFTPAREN",er="FULLWIDTHRIGHTPAREN",tr="LEFTCORNERBRACKET",nr="RIGHTCORNERBRACKET",rr="LEFTWHITECORNERBRACKET",ir="RIGHTWHITECORNERBRACKET",sr="FULLWIDTHLESSTHAN",or="FULLWIDTHGREATERTHAN",lr="AMPERSAND",ar="APOSTROPHE",cr="ASTERISK",Fe="AT",ur="BACKSLASH",dr="BACKTICK",fr="CARET",Ve="COLON",fs="COMMA",hr="DOLLAR",xe="DOT",pr="EQUALS",hs="EXCLAMATION",ue="HYPHEN",Jt="PERCENT",mr="PIPE",gr="PLUS",yr="POUND",qt="QUERY",ps="QUOTE",Xa="FULLWIDTHMIDDLEDOT",ms="SEMI",Se="SLASH",Gt="TILDE",br="UNDERSCORE",Qa="EMOJI",kr="SYM";var Za=Object.freeze({__proto__:null,ALPHANUMERICAL:Ya,AMPERSAND:lr,APOSTROPHE:ar,ASCIINUMERICAL:Ga,ASTERISK:cr,AT:Fe,BACKSLASH:ur,BACKTICK:dr,CARET:fr,CLOSEANGLEBRACKET:Qn,CLOSEBRACE:Ut,CLOSEBRACKET:qn,CLOSEPAREN:Yn,COLON:Ve,COMMA:fs,DOLLAR:hr,DOT:xe,EMOJI:Qa,EQUALS:pr,EXCLAMATION:hs,FULLWIDTHGREATERTHAN:or,FULLWIDTHLEFTPAREN:Zn,FULLWIDTHLESSTHAN:sr,FULLWIDTHMIDDLEDOT:Xa,FULLWIDTHRIGHTPAREN:er,HYPHEN:ue,LEFTCORNERBRACKET:tr,LEFTWHITECORNERBRACKET:rr,LOCALHOST:ln,NL:ds,NUM:us,OPENANGLEBRACKET:Xn,OPENBRACE:_t,OPENBRACKET:Jn,OPENPAREN:Gn,PERCENT:Jt,PIPE:mr,PLUS:gr,POUND:yr,QUERY:qt,QUOTE:ps,RIGHTCORNERBRACKET:nr,RIGHTWHITECORNERBRACKET:ir,SCHEME:Dn,SEMI:ms,SLASH:Se,SLASH_SCHEME:St,SYM:kr,TILDE:Gt,TLD:Ni,UNDERSCORE:br,UTLD:Di,UWORD:Ai,WORD:ve,WS:Ii});const Te=/[a-z]/,Lt=/\p{L}/u,ni=/\p{Emoji}/u,Ee=/\d/,ri=/\s/,Do="\r",ii="\n",qp="️",Gp="",si="";let wn=null,Tn=null;function Yp(e=[]){const t={};se.groups=t;const n=new se;null==wn&&(wn=Io(jp)),null==Tn&&(Tn=Io(Wp)),k(n,"'",ar),k(n,"{",_t),k(n,"}",Ut),k(n,"[",Jn),k(n,"]",qn),k(n,"(",Gn),k(n,")",Yn),k(n,"<",Xn),k(n,">",Qn),k(n,"(",Zn),k(n,")",er),k(n,"「",tr),k(n,"」",nr),k(n,"『",rr),k(n,"』",ir),k(n,"<",sr),k(n,">",or),k(n,"&",lr),k(n,"*",cr),k(n,"@",Fe),k(n,"`",dr),k(n,"^",fr),k(n,":",Ve),k(n,",",fs),k(n,"$",hr),k(n,".",xe),k(n,"=",pr),k(n,"!",hs),k(n,"-",ue),k(n,"%",Jt),k(n,"|",mr),k(n,"+",gr),k(n,"#",yr),k(n,"?",qt),k(n,'"',ps),k(n,"/",Se),k(n,";",ms),k(n,"~",Gt),k(n,"_",br),k(n,"\\",ur),k(n,"・",Xa);const r=F(n,Ee,us,{[Ti]:!0});F(r,Ee,r);const o=F(r,Te,Ga,{[Kt]:!0}),i=F(r,Lt,Ya,{[$t]:!0}),s=F(n,Te,ve,{[Ei]:!0});F(s,Ee,o),F(s,Te,s),F(o,Ee,o),F(o,Te,o);const a=F(n,Lt,Ai,{[vi]:!0});F(a,Te),F(a,Ee,i),F(a,Lt,a),F(i,Ee,i),F(i,Te),F(i,Lt,i);const l=k(n,ii,ds,{[ti]:!0}),c=k(n,Do,Ii,{[ti]:!0}),d=F(n,ri,Ii,{[ti]:!0});k(n,si,d),k(c,ii,l),k(c,si,d),F(c,ri,d),k(d,Do),k(d,ii),F(d,ri,d),k(d,si,d);const h=F(n,ni,Qa,{[qa]:!0});k(h,"#"),F(h,ni,h),k(h,qp,h);const p=k(h,Gp);k(p,"#"),F(p,ni,h);const u=[[Te,s],[Ee,o]],f=[[Te,null],[Lt,a],[Ee,i]];for(let e=0;e<wn.length;e++)Pe(n,wn[e],Ni,ve,u);for(let e=0;e<Tn.length;e++)Pe(n,Tn[e],Di,Ai,f);rt(Ni,{tld:!0,ascii:!0},t),rt(Di,{utld:!0,alpha:!0},t),Pe(n,"file",Dn,ve,u),Pe(n,"mailto",Dn,ve,u),Pe(n,"http",St,ve,u),Pe(n,"https",St,ve,u),Pe(n,"ftp",St,ve,u),Pe(n,"ftps",St,ve,u),rt(Dn,{scheme:!0,ascii:!0},t),rt(St,{slashscheme:!0,ascii:!0},t),e=e.sort((e,t)=>e[0]>t[0]?1:-1);for(let t=0;t<e.length;t++){const r=e[t][0],o=e[t][1]?{[Kp]:!0}:{[_p]:!0};r.indexOf("-")>=0?o[Oi]=!0:Te.test(r)?Ee.test(r)?o[Kt]=!0:o[Ei]=!0:o[Ti]=!0,No(n,r,r,o)}return No(n,"localhost",ln,{ascii:!0}),n.jd=new se(kr),{start:n,tokens:Object.assign({groups:t},Za)}}function ec(e,t){const n=Xp(t.replace(/[A-Z]/g,e=>e.toLowerCase())),r=n.length,o=[];let i=0,s=0;for(;s<r;){let a=e,l=null,c=0,d=null,h=-1,p=-1;for(;s<r&&(l=a.go(n[s]));)a=l,a.accepts()?(h=0,p=0,d=a):h>=0&&(h+=n[s].length,p++),c+=n[s].length,i+=n[s].length,s++;i-=h,s-=p,c-=h,o.push({t:d.t,v:t.slice(i-c,i),s:i-c,e:i})}return o}function Xp(e){const t=[],n=e.length;let r=0;for(;r<n;){let o,i=e.charCodeAt(r),s=i<55296||i>56319||r+1===n||(o=e.charCodeAt(r+1))<56320||o>57343?e[r]:e.slice(r,r+2);t.push(s),r+=s.length}return t}function Pe(e,t,n,r,o){let i;const s=t.length;for(let n=0;n<s-1;n++){const s=t[n];e.j[s]?i=e.j[s]:(i=new se(r),i.jr=o.slice(),e.j[s]=i),e=i}return i=new se(n),i.jr=o.slice(),e.j[t[s-1]]=i,i}function Io(e){const t=[],n=[];let r=0;for(;r<e.length;){let o=0;for(;"0123456789".indexOf(e[r+o])>=0;)o++;if(o>0){t.push(n.join(""));for(let t=parseInt(e.substring(r,r+o),10);t>0;t--)n.pop();r+=o}else n.push(e[r]),r++}return t}const an={defaultProtocol:"http",events:null,format:Ro,formatHref:Ro,nl2br:!1,tagName:"a",target:null,rel:null,validate:!0,truncate:1/0,className:null,attributes:null,ignoreTags:[],render:null};function gs(e,t=null){let n=Object.assign({},an);e&&(n=Object.assign(n,e instanceof gs?e.o:e));const r=n.ignoreTags,o=[];for(let e=0;e<r.length;e++)o.push(r[e].toUpperCase());this.o=n,t&&(this.defaultRender=t),this.ignoreTags=o}function Ro(e){return e}function tc(e,t){this.t="token",this.v=e,this.tk=t}function Rr(e,t){class n extends tc{constructor(t,n){super(t,n),this.t=e}}for(const e in t)n.prototype[e]=t[e];return n.t=e,n}gs.prototype={o:an,ignoreTags:[],defaultRender:e=>e,check(e){return this.get("validate",e.toString(),e)},get(e,t,n){const r=null!=t;let o=this.o[e];return o&&("object"==typeof o?(o=n.t in o?o[n.t]:an[e],"function"==typeof o&&r&&(o=o(t,n))):"function"==typeof o&&r&&(o=o(t,n.t,n)),o)},getObj(e,t,n){let r=this.o[e];return"function"==typeof r&&null!=t&&(r=r(t,n.t,n)),r},render(e){const t=e.render(this);return(this.get("render",null,e)||this.defaultRender)(t,e.t,e)}},tc.prototype={isLink:!1,toString(){return this.v},toHref(e){return this.toString()},toFormattedString(e){const t=this.toString(),n=e.get("truncate",t,this),r=e.get("format",t,this);return n&&r.length>n?r.substring(0,n)+"…":r},toFormattedHref(e){return e.get("formatHref",this.toHref(e.get("defaultProtocol")),this)},startIndex(){return this.tk[0].s},endIndex(){return this.tk[this.tk.length-1].e},toObject(e=an.defaultProtocol){return{type:this.t,value:this.toString(),isLink:this.isLink,href:this.toHref(e),start:this.startIndex(),end:this.endIndex()}},toFormattedObject(e){return{type:this.t,value:this.toFormattedString(e),isLink:this.isLink,href:this.toFormattedHref(e),start:this.startIndex(),end:this.endIndex()}},validate(e){return e.get("validate",this.toString(),this)},render(e){const t=this,n=this.toHref(e.get("defaultProtocol")),r=e.get("formatHref",n,this),o=e.get("tagName",n,t),i=this.toFormattedString(e),s={},a=e.get("className",n,t),l=e.get("target",n,t),c=e.get("rel",n,t),d=e.getObj("attributes",n,t),h=e.getObj("events",n,t);return s.href=r,a&&(s.class=a),l&&(s.target=l),c&&(s.rel=c),d&&Object.assign(s,d),{tagName:o,attributes:s,content:i,eventListeners:h}}};const Po=Rr("email",{isLink:!0,toHref(){return"mailto:"+this.toString()}}),Lo=Rr("text"),Qp=Rr("nl"),En=Rr("url",{isLink:!0,toHref(e=an.defaultProtocol){return this.hasProtocol()?this.v:`${e}://${this.v}`},hasProtocol(){const e=this.tk;return e.length>=2&&e[0].t!==ln&&e[1].t===Ve}}),ce=e=>new se(e);function Zp({groups:e}){const t=e.domain.concat([lr,cr,Fe,ur,dr,fr,hr,pr,ue,us,Jt,mr,gr,yr,Se,kr,Gt,br]),n=[ar,Ve,fs,xe,hs,Jt,qt,ps,ms,Xn,Qn,_t,Ut,qn,Jn,Gn,Yn,Zn,er,tr,nr,rr,ir,sr,or],r=[lr,ar,cr,ur,dr,fr,hr,pr,ue,_t,Ut,Jt,mr,gr,yr,qt,Se,kr,Gt,br],o=ce(),i=k(o,Gt);A(i,r,i),A(i,e.domain,i);const s=ce(),a=ce(),l=ce();A(o,e.domain,s),A(o,e.scheme,a),A(o,e.slashscheme,l),A(s,r,i),A(s,e.domain,s);const c=k(s,Fe);k(i,Fe,c),k(a,Fe,c),k(l,Fe,c);const d=k(i,xe);A(d,r,i),A(d,e.domain,i);const h=ce();A(c,e.domain,h),A(h,e.domain,h);const p=k(h,xe);A(p,e.domain,h);const u=ce(Po);A(p,e.tld,u),A(p,e.utld,u),k(c,ln,u);const f=k(h,ue);k(f,ue,f),A(f,e.domain,h),A(u,e.domain,h),k(u,xe,p),k(u,ue,f);const m=k(u,Ve);A(m,e.numeric,Po);const g=k(s,ue),y=k(s,xe);k(g,ue,g),A(g,e.domain,s),A(y,r,i),A(y,e.domain,s);const b=ce(En);A(y,e.tld,b),A(y,e.utld,b),A(b,e.domain,s),A(b,r,i),k(b,xe,y),k(b,ue,g),k(b,Fe,c);const w=k(b,Ve),v=ce(En);A(w,e.numeric,v);const x=ce(En),S=ce();A(x,t,x),A(x,n,S),A(S,t,x),A(S,n,S),k(b,Se,x),k(v,Se,x);const M=k(a,Ve),C=k(l,Ve),T=k(C,Se),O=k(T,Se);A(a,e.domain,s),k(a,xe,y),k(a,ue,g),A(l,e.domain,s),k(l,xe,y),k(l,ue,g),A(M,e.domain,x),k(M,Se,x),k(M,qt,x),A(O,e.domain,x),A(O,t,x),k(O,Se,x);const E=[[_t,Ut],[Jn,qn],[Gn,Yn],[Xn,Qn],[Zn,er],[tr,nr],[rr,ir],[sr,or]];for(let e=0;e<E.length;e++){const[r,o]=E[e],i=k(x,r);k(S,r,i),k(i,o,x);const s=ce(En);A(i,t,s);const a=ce();A(i,n),A(s,t,s),A(s,n,a),A(a,t,s),A(a,n,a),k(s,o,x),k(a,o,x)}return k(o,ln,b),k(o,ds,Qp),{start:o,tokens:Za}}function em(e,t,n){let r=n.length,o=0,i=[],s=[];for(;o<r;){let a=e,l=null,c=null,d=0,h=null,p=-1;for(;o<r&&!(l=a.go(n[o].t));)s.push(n[o++]);for(;o<r&&(c=l||a.go(n[o].t));)l=null,a=c,a.accepts()?(p=0,h=a):p>=0&&p++,o++,d++;if(p<0)o-=d,o<r&&(s.push(n[o]),o++);else{s.length>0&&(i.push(oi(Lo,t,s)),s=[]),o-=p,d-=p;const e=h.t,r=n.slice(o-d,o);i.push(oi(e,t,r))}}return s.length>0&&i.push(oi(Lo,t,s)),i}function oi(e,t,n){const r=n[0].s,o=n[n.length-1].e;return new e(t.slice(r,o),n)}const tm=typeof console<"u"&&console&&console.warn||(()=>{}),nm="until manual call of linkify.init(). Register all schemes and plugins before invoking linkify the first time.",L={scanner:null,parser:null,tokenQueue:[],pluginQueue:[],customSchemes:[],initialized:!1};function rm(){return se.groups={},L.scanner=null,L.parser=null,L.tokenQueue=[],L.pluginQueue=[],L.customSchemes=[],L.initialized=!1,L}function Bo(e,t=!1){if(L.initialized&&tm(`linkifyjs: already initialized - will not register custom scheme "${e}" ${nm}`),!/^[0-9a-z]+(-[0-9a-z]+)*$/.test(e))throw new Error('linkifyjs: incorrect scheme format.\n1. Must only contain digits, lowercase ASCII letters or "-"\n2. Cannot start or end with "-"\n3. "-" cannot repeat');L.customSchemes.push([e,t])}function im(){L.scanner=Yp(L.customSchemes);for(let e=0;e<L.tokenQueue.length;e++)L.tokenQueue[e][1]({scanner:L.scanner});L.parser=Zp(L.scanner.tokens);for(let e=0;e<L.pluginQueue.length;e++)L.pluginQueue[e][1]({scanner:L.scanner,parser:L.parser});return L.initialized=!0,L}function ys(e){return L.initialized||im(),em(L.parser.start,e,ec(L.scanner.start,e))}function nc(e,t=null,n=null){if(t&&"object"==typeof t){if(n)throw Error(`linkifyjs: Invalid link type ${t}; must be a string`);n=t,t=null}const r=new gs(n),o=ys(e),i=[];for(let e=0;e<o.length;e++){const n=o[e];n.isLink&&(!t||n.t===t)&&r.check(n)&&i.push(n.toFormattedObject(r))}return i}ys.scan=ec;var bs="[\0- -\u2029 ]",sm=new RegExp(bs),om=new RegExp(`${bs}$`),lm=new RegExp(bs,"g");function am(e){return 1===e.length?e[0].isLink:!(3!==e.length||!e[1].isLink)&&["()","[]"].includes(e[0].value+e[2].value)}function cm(e){return new V({key:new q("autolink"),appendTransaction:(t,n,r)=>{const o=t.some(e=>e.docChanged)&&!n.doc.eq(r.doc),i=t.some(e=>e.getMeta("preventAutolink"));if(!o||i)return;const{tr:s}=r;return wa(ma(n.doc,[...t])).forEach(({newRange:t})=>{const n=mf(r.doc,t,e=>e.isTextblock);let o,i;if(n.length>1)o=n[0],i=r.doc.textBetween(o.pos,o.pos+o.node.nodeSize,void 0," ");else if(n.length){const e=r.doc.textBetween(t.from,t.to," "," ");if(!om.test(e))return;o=n[0],i=r.doc.textBetween(o.pos,t.to,void 0," ")}if(o&&i){const t=i.split(sm).filter(Boolean);if(t.length<=0)return!1;const n=t[t.length-1],a=o.pos+i.lastIndexOf(n);if(!n)return!1;const l=ys(n).map(t=>t.toObject(e.defaultProtocol));if(!am(l))return!1;l.filter(e=>e.isLink).map(e=>({...e,from:a+e.start+1,to:a+e.end+1})).filter(e=>!r.schema.marks.code||!r.doc.rangeHasMark(e.from,e.to,r.schema.marks.code)).filter(t=>e.validate(t.value)).filter(t=>e.shouldAutoLink(t.value)).forEach(t=>{is(t.from,t.to,r.doc).some(t=>t.mark.type===e.type)||s.addMark(t.from,t.to,e.type.create({href:t.href}))})}}),s.steps.length?s:void 0}})}function um(e){return new V({key:new q("handleClickLink"),props:{handleClick:(t,n,r)=>{var o,i;if(0!==r.button||!t.editable)return!1;let s=null;if(r.target instanceof HTMLAnchorElement)s=r.target;else{let e=r.target;const t=[];for(;"DIV"!==e.nodeName;)t.push(e),e=e.parentNode;s=t.find(e=>"A"===e.nodeName)}if(!s)return!1;const a=Ma(t.state,e.type.name),l=null!=(o=s?.href)?o:a.href,c=null!=(i=s?.target)?i:a.target;return e.enableClickSelection&&e.editor.commands.extendMarkRange(e.type.name),!(!s||!l)&&(window.open(l,c),!0)}}})}function dm(e){return new V({key:new q("handlePasteLink"),props:{handlePaste:(t,n,r)=>{const{state:o}=t,{selection:i}=o,{empty:s}=i;if(s)return!1;let a="";r.content.forEach(e=>{a+=e.textContent});const l=nc(a,{defaultProtocol:e.defaultProtocol}).find(e=>e.isLink&&e.value===a);return!(!a||!l)&&e.editor.commands.setMark(e.type,{href:l.href})}}})}function Qe(e,t){const n=["http","https","ftp","ftps","mailto","tel","callto","sms","cid","xmpp"];return t&&t.forEach(e=>{const t="string"==typeof e?e:e.scheme;t&&n.push(t)}),!e||e.replace(lm,"").match(new RegExp(`^(?:(?:${n.join("|")}):|[^a-z]|[a-z0-9+.-]+(?:[^a-z+.-:]|$))`,"i"))}var fm=pt.create({name:"link",priority:1e3,keepOnSplit:!1,exitable:!0,onCreate(){this.options.validate&&!this.options.shouldAutoLink&&(this.options.shouldAutoLink=this.options.validate),this.options.protocols.forEach(e=>{"string"!=typeof e?Bo(e.scheme,e.optionalSlashes):Bo(e)})},onDestroy(){rm()},inclusive(){return this.options.autolink},addOptions:()=>({openOnClick:!0,enableClickSelection:!1,linkOnPaste:!0,autolink:!0,protocols:[],defaultProtocol:"http",HTMLAttributes:{target:"_blank",rel:"noopener noreferrer nofollow",class:null},isAllowedUri:(e,t)=>!!Qe(e,t.protocols),validate:e=>!!e,shouldAutoLink:e=>!!e}),addAttributes(){return{href:{default:null,parseHTML:e=>e.getAttribute("href")},target:{default:this.options.HTMLAttributes.target},rel:{default:this.options.HTMLAttributes.rel},class:{default:this.options.HTMLAttributes.class}}},parseHTML(){return[{tag:"a[href]",getAttrs:e=>{const t=e.getAttribute("href");return!(!t||!this.options.isAllowedUri(t,{defaultValidate:e=>!!Qe(e,this.options.protocols),protocols:this.options.protocols,defaultProtocol:this.options.defaultProtocol}))&&null}}]},renderHTML({HTMLAttributes:e}){return this.options.isAllowedUri(e.href,{defaultValidate:e=>!!Qe(e,this.options.protocols),protocols:this.options.protocols,defaultProtocol:this.options.defaultProtocol})?["a",W(this.options.HTMLAttributes,e),0]:["a",W(this.options.HTMLAttributes,{...e,href:""}),0]},addCommands(){return{setLink:e=>({chain:t})=>{const{href:n}=e;return!!this.options.isAllowedUri(n,{defaultValidate:e=>!!Qe(e,this.options.protocols),protocols:this.options.protocols,defaultProtocol:this.options.defaultProtocol})&&t().setMark(this.name,e).setMeta("preventAutolink",!0).run()},toggleLink:e=>({chain:t})=>{const{href:n}=e||{};return!(n&&!this.options.isAllowedUri(n,{defaultValidate:e=>!!Qe(e,this.options.protocols),protocols:this.options.protocols,defaultProtocol:this.options.defaultProtocol}))&&t().toggleMark(this.name,e,{extendEmptyMarkRange:!0}).setMeta("preventAutolink",!0).run()},unsetLink:()=>({chain:e})=>e().unsetMark(this.name,{extendEmptyMarkRange:!0}).setMeta("preventAutolink",!0).run()}},addPasteRules(){return[Nt({find:e=>{const t=[];if(e){const{protocols:n,defaultProtocol:r}=this.options,o=nc(e).filter(e=>e.isLink&&this.options.isAllowedUri(e.value,{defaultValidate:e=>!!Qe(e,n),protocols:n,defaultProtocol:r}));o.length&&o.forEach(e=>t.push({text:e.value,data:{href:e.href},index:e.start}))}return t},type:this.type,getAttributes:e=>{var t;return{href:null==(t=e.data)?void 0:t.href}}})]},addProseMirrorPlugins(){const e=[],{protocols:t,defaultProtocol:n}=this.options;return this.options.autolink&&e.push(cm({type:this.type,defaultProtocol:this.options.defaultProtocol,validate:e=>this.options.isAllowedUri(e,{defaultValidate:e=>!!Qe(e,t),protocols:t,defaultProtocol:n}),shouldAutoLink:this.options.shouldAutoLink})),!0===this.options.openOnClick&&e.push(um({type:this.type,editor:this.editor,enableClickSelection:this.options.enableClickSelection})),this.options.linkOnPaste&&e.push(dm({editor:this.editor,defaultProtocol:this.options.defaultProtocol,type:this.type})),e}}),Vm=fm,hm=Object.defineProperty,pm=(e,t)=>{for(var n in t)hm(e,n,{get:t[n],enumerable:!0})},mm="listItem",zo="textStyle",Fo=/^\s*([-+*])\s$/,gm=me.create({name:"bulletList",addOptions:()=>({itemTypeName:"listItem",HTMLAttributes:{},keepMarks:!1,keepAttributes:!1}),group:"block list",content(){return`${this.options.itemTypeName}+`},parseHTML:()=>[{tag:"ul"}],renderHTML({HTMLAttributes:e}){return["ul",W(this.options.HTMLAttributes,e),0]},addCommands(){return{toggleBulletList:()=>({commands:e,chain:t})=>this.options.keepAttributes?t().toggleList(this.name,this.options.itemTypeName,this.options.keepMarks).updateAttributes(mm,this.editor.getAttributes(zo)).run():e.toggleList(this.name,this.options.itemTypeName,this.options.keepMarks)}},addKeyboardShortcuts(){return{"Mod-Shift-8":()=>this.editor.commands.toggleBulletList()}},addInputRules(){let e=At({find:Fo,type:this.type});return(this.options.keepMarks||this.options.keepAttributes)&&(e=At({find:Fo,type:this.type,keepMarks:this.options.keepMarks,keepAttributes:this.options.keepAttributes,getAttributes:()=>this.editor.getAttributes(zo),editor:this.editor})),[e]}}),ym=me.create({name:"listItem",addOptions:()=>({HTMLAttributes:{},bulletListTypeName:"bulletList",orderedListTypeName:"orderedList"}),content:"paragraph block*",defining:!0,parseHTML:()=>[{tag:"li"}],renderHTML({HTMLAttributes:e}){return["li",W(this.options.HTMLAttributes,e),0]},addKeyboardShortcuts(){return{Enter:()=>this.editor.commands.splitListItem(this.name),Tab:()=>this.editor.commands.sinkListItem(this.name),"Shift-Tab":()=>this.editor.commands.liftListItem(this.name)}}}),bm={};pm(bm,{findListItemPos:()=>fn,getNextListDepth:()=>ks,handleBackspace:()=>Ri,handleDelete:()=>Pi,hasListBefore:()=>rc,hasListItemAfter:()=>km,hasListItemBefore:()=>ic,listItemHasSubList:()=>sc,nextListIsDeeper:()=>oc,nextListIsHigher:()=>lc});var fn=(e,t)=>{const{$from:n}=t.selection,r=j(e,t.schema);let o=null,i=n.depth,s=n.pos,a=null;for(;i>0&&null===a;)o=n.node(i),o.type===r?a=i:(i-=1,s-=1);return null===a?null:{$pos:t.doc.resolve(s),depth:a}},ks=(e,t)=>{const n=fn(e,t);if(!n)return!1;const[,r]=Tf(t,e,n.$pos.pos+4);return r},rc=(e,t,n)=>{const{$anchor:r}=e.selection,o=Math.max(0,r.pos-2),i=e.doc.resolve(o).node();return!(!i||!n.includes(i.type.name))},ic=(e,t)=>{var n;const{$anchor:r}=t.selection,o=t.doc.resolve(r.pos-2);return!(0===o.index()||(null==(n=o.nodeBefore)?void 0:n.type.name)!==e)},sc=(e,t,n)=>{if(!n)return!1;const r=j(e,t.schema);let o=!1;return n.descendants(e=>{e.type===r&&(o=!0)}),o},Ri=(e,t,n)=>{if(e.commands.undoInputRule())return!0;if(e.state.selection.from!==e.state.selection.to)return!1;if(!Ge(e.state,t)&&rc(e.state,t,n)){const{$anchor:n}=e.state.selection,r=e.state.doc.resolve(n.before()-1),o=[];r.node().descendants((e,n)=>{e.type.name===t&&o.push({node:e,pos:n})});const i=o.at(-1);if(!i)return!1;const s=e.state.doc.resolve(r.start()+i.pos+1);return e.chain().cut({from:n.start()-1,to:n.end()+1},s.end()).joinForward().run()}if(!Ge(e.state,t)||!Af(e.state))return!1;const r=fn(t,e.state);if(!r)return!1;const o=e.state.doc.resolve(r.$pos.pos-2).node(r.depth),i=sc(t,e.state,o);return ic(t,e.state)&&!i?e.commands.joinItemBackward():e.chain().liftListItem(t).run()},oc=(e,t)=>{const n=ks(e,t),r=fn(e,t);return!(!r||!n)&&n>r.depth},lc=(e,t)=>{const n=ks(e,t),r=fn(e,t);return!(!r||!n)&&n<r.depth},Pi=(e,t)=>{if(!Ge(e.state,t)||!Of(e.state,t))return!1;const{selection:n}=e.state,{$from:r,$to:o}=n;return!(!n.empty&&r.sameParent(o))&&(oc(t,e.state)?e.chain().focus(e.state.selection.from+4).lift(t).joinBackward().run():lc(t,e.state)?e.chain().joinForward().joinBackward().run():e.commands.joinItemForward())},km=(e,t)=>{var n;const{$anchor:r}=t.selection,o=t.doc.resolve(r.pos-r.parentOffset-2);return!(o.index()===o.parent.childCount-1||(null==(n=o.nodeAfter)?void 0:n.type.name)!==e)},xm=K.create({name:"listKeymap",addOptions:()=>({listTypes:[{itemName:"listItem",wrapperNames:["bulletList","orderedList"]},{itemName:"taskItem",wrapperNames:["taskList"]}]}),addKeyboardShortcuts(){return{Delete:({editor:e})=>{let t=!1;return this.options.listTypes.forEach(({itemName:n})=>{void 0!==e.state.schema.nodes[n]&&Pi(e,n)&&(t=!0)}),t},"Mod-Delete":({editor:e})=>{let t=!1;return this.options.listTypes.forEach(({itemName:n})=>{void 0!==e.state.schema.nodes[n]&&Pi(e,n)&&(t=!0)}),t},Backspace:({editor:e})=>{let t=!1;return this.options.listTypes.forEach(({itemName:n,wrapperNames:r})=>{void 0!==e.state.schema.nodes[n]&&Ri(e,n,r)&&(t=!0)}),t},"Mod-Backspace":({editor:e})=>{let t=!1;return this.options.listTypes.forEach(({itemName:n,wrapperNames:r})=>{void 0!==e.state.schema.nodes[n]&&Ri(e,n,r)&&(t=!0)}),t}}}}),Sm="listItem",$o="textStyle",Vo=/^(\d+)\.\s$/,Cm=me.create({name:"orderedList",addOptions:()=>({itemTypeName:"listItem",HTMLAttributes:{},keepMarks:!1,keepAttributes:!1}),group:"block list",content(){return`${this.options.itemTypeName}+`},addAttributes:()=>({start:{default:1,parseHTML:e=>e.hasAttribute("start")?parseInt(e.getAttribute("start")||"",10):1},type:{default:null,parseHTML:e=>e.getAttribute("type")}}),parseHTML:()=>[{tag:"ol"}],renderHTML({HTMLAttributes:e}){const{start:t,...n}=e;return 1===t?["ol",W(this.options.HTMLAttributes,n),0]:["ol",W(this.options.HTMLAttributes,e),0]},addCommands(){return{toggleOrderedList:()=>({commands:e,chain:t})=>this.options.keepAttributes?t().toggleList(this.name,this.options.itemTypeName,this.options.keepMarks).updateAttributes(Sm,this.editor.getAttributes($o)).run():e.toggleList(this.name,this.options.itemTypeName,this.options.keepMarks)}},addKeyboardShortcuts(){return{"Mod-Shift-7":()=>this.editor.commands.toggleOrderedList()}},addInputRules(){let e=At({find:Vo,type:this.type,getAttributes:e=>({start:+e[1]}),joinPredicate:(e,t)=>t.childCount+t.attrs.start===+e[1]});return(this.options.keepMarks||this.options.keepAttributes)&&(e=At({find:Vo,type:this.type,keepMarks:this.options.keepMarks,keepAttributes:this.options.keepAttributes,getAttributes:e=>({start:+e[1],...this.editor.getAttributes($o)}),joinPredicate:(e,t)=>t.childCount+t.attrs.start===+e[1],editor:this.editor})),[e]}}),Mm=/^\s*(\[([( |x])?\])\s$/,wm=me.create({name:"taskItem",addOptions:()=>({nested:!1,HTMLAttributes:{},taskListTypeName:"taskList",a11y:void 0}),content(){return this.options.nested?"paragraph block*":"paragraph+"},defining:!0,addAttributes:()=>({checked:{default:!1,keepOnSplit:!1,parseHTML:e=>{const t=e.getAttribute("data-checked");return""===t||"true"===t},renderHTML:e=>({"data-checked":e.checked})}}),parseHTML(){return[{tag:`li[data-type="${this.name}"]`,priority:51}]},renderHTML({node:e,HTMLAttributes:t}){return["li",W(this.options.HTMLAttributes,t,{"data-type":this.name}),["label",["input",{type:"checkbox",checked:e.attrs.checked?"checked":null}],["span"]],["div",0]]},addKeyboardShortcuts(){const e={Enter:()=>this.editor.commands.splitListItem(this.name),"Shift-Tab":()=>this.editor.commands.liftListItem(this.name)};return this.options.nested?{...e,Tab:()=>this.editor.commands.sinkListItem(this.name)}:e},addNodeView(){return({node:e,HTMLAttributes:t,getPos:n,editor:r})=>{const o=document.createElement("li"),i=document.createElement("label"),s=document.createElement("span"),a=document.createElement("input"),l=document.createElement("div"),c=e=>{var t,n;a.ariaLabel=(null==(n=null==(t=this.options.a11y)?void 0:t.checkboxLabel)?void 0:n.call(t,e,a.checked))||`Task item checkbox for ${e.textContent||"empty task item"}`};return c(e),i.contentEditable="false",a.type="checkbox",a.addEventListener("mousedown",e=>e.preventDefault()),a.addEventListener("change",t=>{if(!r.isEditable&&!this.options.onReadOnlyChecked)return void(a.checked=!a.checked);const{checked:o}=t.target;r.isEditable&&"function"==typeof n&&r.chain().focus(void 0,{scrollIntoView:!1}).command(({tr:e})=>{const t=n();if("number"!=typeof t)return!1;const r=e.doc.nodeAt(t);return e.setNodeMarkup(t,void 0,{...r?.attrs,checked:o}),!0}).run(),!r.isEditable&&this.options.onReadOnlyChecked&&(this.options.onReadOnlyChecked(e,o)||(a.checked=!a.checked))}),Object.entries(this.options.HTMLAttributes).forEach(([e,t])=>{o.setAttribute(e,t)}),o.dataset.checked=e.attrs.checked,a.checked=e.attrs.checked,i.append(a,s),o.append(i,l),Object.entries(t).forEach(([e,t])=>{o.setAttribute(e,t)}),{dom:o,contentDOM:l,update:e=>e.type===this.type&&(o.dataset.checked=e.attrs.checked,a.checked=e.attrs.checked,c(e),!0)}}},addInputRules(){return[At({find:Mm,type:this.type,getAttributes:e=>({checked:"x"===e[e.length-1]})})]}}),Tm=me.create({name:"taskList",addOptions:()=>({itemTypeName:"taskItem",HTMLAttributes:{}}),group:"block list",content(){return`${this.options.itemTypeName}+`},parseHTML(){return[{tag:`ul[data-type="${this.name}"]`,priority:51}]},renderHTML({HTMLAttributes:e}){return["ul",W(this.options.HTMLAttributes,e,{"data-type":this.name}),0]},addCommands(){return{toggleTaskList:()=>({commands:e})=>e.toggleList(this.name,this.options.itemTypeName)}},addKeyboardShortcuts(){return{"Mod-Shift-9":()=>this.editor.commands.toggleTaskList()}}});K.create({name:"listKit",addExtensions(){const e=[];return!1!==this.options.bulletList&&e.push(gm.configure(this.options.bulletList)),!1!==this.options.listItem&&e.push(ym.configure(this.options.listItem)),!1!==this.options.listKeymap&&e.push(xm.configure(this.options.listKeymap)),!1!==this.options.orderedList&&e.push(Cm.configure(this.options.orderedList)),!1!==this.options.taskItem&&e.push(wm.configure(this.options.taskItem)),!1!==this.options.taskList&&e.push(Tm.configure(this.options.taskList)),e}});var Em=pt.create({name:"superscript",addOptions:()=>({HTMLAttributes:{}}),parseHTML:()=>[{tag:"sup"},{style:"vertical-align",getAttrs:e=>"super"===e&&null}],renderHTML({HTMLAttributes:e}){return["sup",W(this.options.HTMLAttributes,e),0]},addCommands(){return{setSuperscript:()=>({commands:e})=>e.setMark(this.name),toggleSuperscript:()=>({commands:e})=>e.toggleMark(this.name),unsetSuperscript:()=>({commands:e})=>e.unsetMark(this.name)}},addKeyboardShortcuts(){return{"Mod-.":()=>this.editor.commands.toggleSuperscript()}}}),Hm=Em,vm=me.create({name:"hardBreak",addOptions:()=>({keepMarks:!0,HTMLAttributes:{}}),inline:!0,group:"inline",selectable:!1,linebreakReplacement:!0,parseHTML:()=>[{tag:"br"}],renderHTML({HTMLAttributes:e}){return["br",W(this.options.HTMLAttributes,e)]},renderText:()=>"\n",addCommands(){return{setHardBreak:()=>({commands:e,chain:t,state:n,editor:r})=>e.first([()=>e.exitCode(),()=>e.command(()=>{const{selection:e,storedMarks:o}=n;if(e.$from.parent.type.spec.isolating)return!1;const{keepMarks:i}=this.options,{splittableMarks:s}=r.extensionManager,a=o||e.$to.parentOffset&&e.$from.marks();return t().insertContent({type:this.name}).command(({tr:e,dispatch:t})=>{if(t&&a&&i){const t=a.filter(e=>s.includes(e.type.name));e.ensureMarks(t)}return!0}).run()})])}},addKeyboardShortcuts(){return{"Mod-Enter":()=>this.editor.commands.setHardBreak(),"Shift-Enter":()=>this.editor.commands.setHardBreak()}}}),jm=vm;export{Rm as Blockquote,Bm as Bold,gm as BulletList,Pm as CodeBlock,Am as Document,Om as Editor,jm as HardBreak,Im as Heading,Lm as History,zm as Italic,Vm as Link,ym as ListItem,Cm as OrderedList,Dm as Paragraph,$m as Strike,Hm as Superscript,Nm as Text,Fm as Underline};
|