@formicoidea/labre-core 0.23.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/package.json +297 -0
- package/src/_pkgs/affine-block-attachment/adapters/extension.ts +9 -0
- package/src/_pkgs/affine-block-attachment/adapters/index.ts +2 -0
- package/src/_pkgs/affine-block-attachment/adapters/markdown.ts +85 -0
- package/src/_pkgs/affine-block-attachment/adapters/notion-html.ts +115 -0
- package/src/_pkgs/affine-block-attachment/attachment-block.ts +533 -0
- package/src/_pkgs/affine-block-attachment/attachment-edgeless-block.ts +72 -0
- package/src/_pkgs/affine-block-attachment/attachment-service.ts +51 -0
- package/src/_pkgs/affine-block-attachment/components/rename-model.ts +95 -0
- package/src/_pkgs/affine-block-attachment/components/styles.ts +64 -0
- package/src/_pkgs/affine-block-attachment/configs/slash-menu.ts +58 -0
- package/src/_pkgs/affine-block-attachment/configs/toolbar.ts +411 -0
- package/src/_pkgs/affine-block-attachment/configs/tooltips.ts +77 -0
- package/src/_pkgs/affine-block-attachment/edgeless-clipboard-config.ts +34 -0
- package/src/_pkgs/affine-block-attachment/effects.ts +10 -0
- package/src/_pkgs/affine-block-attachment/embed.ts +305 -0
- package/src/_pkgs/affine-block-attachment/index.ts +11 -0
- package/src/_pkgs/affine-block-attachment/store.ts +17 -0
- package/src/_pkgs/affine-block-attachment/styles.ts +160 -0
- package/src/_pkgs/affine-block-attachment/utils.ts +216 -0
- package/src/_pkgs/affine-block-attachment/view.ts +51 -0
- package/src/_pkgs/affine-block-bookmark/adapters/extension.ts +13 -0
- package/src/_pkgs/affine-block-bookmark/adapters/html.ts +10 -0
- package/src/_pkgs/affine-block-bookmark/adapters/index.ts +4 -0
- package/src/_pkgs/affine-block-bookmark/adapters/markdown/index.ts +12 -0
- package/src/_pkgs/affine-block-bookmark/adapters/markdown/markdown.ts +93 -0
- package/src/_pkgs/affine-block-bookmark/adapters/markdown/preprocessor.ts +263 -0
- package/src/_pkgs/affine-block-bookmark/adapters/notion-html.ts +71 -0
- package/src/_pkgs/affine-block-bookmark/adapters/plain-text.ts +9 -0
- package/src/_pkgs/affine-block-bookmark/bookmark-block.ts +291 -0
- package/src/_pkgs/affine-block-bookmark/bookmark-edgeless-block.ts +88 -0
- package/src/_pkgs/affine-block-bookmark/commands/index.ts +2 -0
- package/src/_pkgs/affine-block-bookmark/commands/insert-bookmark.ts +23 -0
- package/src/_pkgs/affine-block-bookmark/commands/insert-link-by-quick-search.ts +79 -0
- package/src/_pkgs/affine-block-bookmark/components/bookmark-card.ts +131 -0
- package/src/_pkgs/affine-block-bookmark/components/index.ts +1 -0
- package/src/_pkgs/affine-block-bookmark/configs/slash-menu.ts +65 -0
- package/src/_pkgs/affine-block-bookmark/configs/toolbar.ts +625 -0
- package/src/_pkgs/affine-block-bookmark/configs/tooltips.ts +13 -0
- package/src/_pkgs/affine-block-bookmark/edgeless-clipboard-config.ts +29 -0
- package/src/_pkgs/affine-block-bookmark/effects.ts +12 -0
- package/src/_pkgs/affine-block-bookmark/index.ts +6 -0
- package/src/_pkgs/affine-block-bookmark/store.ts +17 -0
- package/src/_pkgs/affine-block-bookmark/styles.ts +282 -0
- package/src/_pkgs/affine-block-bookmark/utils.ts +47 -0
- package/src/_pkgs/affine-block-bookmark/view.ts +43 -0
- package/src/_pkgs/affine-block-callout/adapters/markdown.ts +207 -0
- package/src/_pkgs/affine-block-callout/callout-block.ts +132 -0
- package/src/_pkgs/affine-block-callout/callout-keymap.ts +34 -0
- package/src/_pkgs/affine-block-callout/configs/slash-menu.ts +67 -0
- package/src/_pkgs/affine-block-callout/configs/tooltips.ts +28 -0
- package/src/_pkgs/affine-block-callout/effects.ts +14 -0
- package/src/_pkgs/affine-block-callout/emoji-menu.ts +34 -0
- package/src/_pkgs/affine-block-callout/index.ts +2 -0
- package/src/_pkgs/affine-block-callout/store.ts +17 -0
- package/src/_pkgs/affine-block-callout/view.ts +30 -0
- package/src/_pkgs/affine-block-code/adapters/extension.ts +13 -0
- package/src/_pkgs/affine-block-code/adapters/html.ts +109 -0
- package/src/_pkgs/affine-block-code/adapters/index.ts +4 -0
- package/src/_pkgs/affine-block-code/adapters/markdown/index.ts +12 -0
- package/src/_pkgs/affine-block-code/adapters/markdown/markdown.ts +99 -0
- package/src/_pkgs/affine-block-code/adapters/markdown/preprocessor.ts +76 -0
- package/src/_pkgs/affine-block-code/adapters/notion-html.ts +59 -0
- package/src/_pkgs/affine-block-code/adapters/plain-text.ts +26 -0
- package/src/_pkgs/affine-block-code/clipboard/index.ts +173 -0
- package/src/_pkgs/affine-block-code/code-block-config.ts +19 -0
- package/src/_pkgs/affine-block-code/code-block-inline.ts +50 -0
- package/src/_pkgs/affine-block-code/code-block-service.ts +69 -0
- package/src/_pkgs/affine-block-code/code-block.ts +498 -0
- package/src/_pkgs/affine-block-code/code-keymap.ts +7 -0
- package/src/_pkgs/affine-block-code/code-preview-extension.ts +27 -0
- package/src/_pkgs/affine-block-code/code-toolbar/components/code-toolbar.ts +159 -0
- package/src/_pkgs/affine-block-code/code-toolbar/components/lang-button.ts +168 -0
- package/src/_pkgs/affine-block-code/code-toolbar/components/preview-button.ts +112 -0
- package/src/_pkgs/affine-block-code/code-toolbar/config.ts +284 -0
- package/src/_pkgs/affine-block-code/code-toolbar/context.ts +46 -0
- package/src/_pkgs/affine-block-code/code-toolbar/index.ts +173 -0
- package/src/_pkgs/affine-block-code/code-toolbar/utils.ts +16 -0
- package/src/_pkgs/affine-block-code/configs/slash-menu.ts +8 -0
- package/src/_pkgs/affine-block-code/effects.ts +27 -0
- package/src/_pkgs/affine-block-code/highlight/affine-code-unit.ts +122 -0
- package/src/_pkgs/affine-block-code/highlight/const.ts +6 -0
- package/src/_pkgs/affine-block-code/index.ts +10 -0
- package/src/_pkgs/affine-block-code/markdown.ts +61 -0
- package/src/_pkgs/affine-block-code/store.ts +19 -0
- package/src/_pkgs/affine-block-code/styles.ts +73 -0
- package/src/_pkgs/affine-block-code/turbo/code-layout-handler.ts +73 -0
- package/src/_pkgs/affine-block-code/turbo/code-painter.worker.ts +53 -0
- package/src/_pkgs/affine-block-code/view.ts +65 -0
- package/src/_pkgs/affine-block-data-view/block-meta/base.ts +37 -0
- package/src/_pkgs/affine-block-data-view/block-meta/index.ts +6 -0
- package/src/_pkgs/affine-block-data-view/block-meta/todo.ts +13 -0
- package/src/_pkgs/affine-block-data-view/columns/index.ts +22 -0
- package/src/_pkgs/affine-block-data-view/configs/slash-menu.ts +51 -0
- package/src/_pkgs/affine-block-data-view/configs/tooltips.ts +16 -0
- package/src/_pkgs/affine-block-data-view/data-source.ts +326 -0
- package/src/_pkgs/affine-block-data-view/data-view-block.ts +318 -0
- package/src/_pkgs/affine-block-data-view/data-view-model.ts +102 -0
- package/src/_pkgs/affine-block-data-view/data-view-spec.ts +8 -0
- package/src/_pkgs/affine-block-data-view/effects.ts +5 -0
- package/src/_pkgs/affine-block-data-view/index.ts +3 -0
- package/src/_pkgs/affine-block-data-view/store.ts +15 -0
- package/src/_pkgs/affine-block-data-view/view.ts +28 -0
- package/src/_pkgs/affine-block-data-view/views/index.ts +11 -0
- package/src/_pkgs/affine-block-database/adapters/extension.ts +13 -0
- package/src/_pkgs/affine-block-database/adapters/html.ts +105 -0
- package/src/_pkgs/affine-block-database/adapters/index.ts +4 -0
- package/src/_pkgs/affine-block-database/adapters/markdown.ts +67 -0
- package/src/_pkgs/affine-block-database/adapters/notion-html.ts +358 -0
- package/src/_pkgs/affine-block-database/adapters/plain-text.ts +48 -0
- package/src/_pkgs/affine-block-database/adapters/utils.ts +109 -0
- package/src/_pkgs/affine-block-database/block-icons.ts +45 -0
- package/src/_pkgs/affine-block-database/commands.ts +69 -0
- package/src/_pkgs/affine-block-database/components/layout.ts +69 -0
- package/src/_pkgs/affine-block-database/components/title/index.ts +199 -0
- package/src/_pkgs/affine-block-database/config.ts +6 -0
- package/src/_pkgs/affine-block-database/configs/slash-menu.ts +83 -0
- package/src/_pkgs/affine-block-database/configs/tooltips.ts +181 -0
- package/src/_pkgs/affine-block-database/context/host-context.ts +4 -0
- package/src/_pkgs/affine-block-database/context/index.ts +1 -0
- package/src/_pkgs/affine-block-database/data-source.ts +667 -0
- package/src/_pkgs/affine-block-database/database-block-styles.ts +73 -0
- package/src/_pkgs/affine-block-database/database-block.ts +468 -0
- package/src/_pkgs/affine-block-database/database-dnd-preview-block.ts +58 -0
- package/src/_pkgs/affine-block-database/detail-panel/block-renderer.ts +158 -0
- package/src/_pkgs/affine-block-database/detail-panel/note-renderer.ts +129 -0
- package/src/_pkgs/affine-block-database/effects.ts +29 -0
- package/src/_pkgs/affine-block-database/index.ts +14 -0
- package/src/_pkgs/affine-block-database/properties/converts.ts +176 -0
- package/src/_pkgs/affine-block-database/properties/created-time/cell-renderer.ts +54 -0
- package/src/_pkgs/affine-block-database/properties/created-time/define.ts +30 -0
- package/src/_pkgs/affine-block-database/properties/index.ts +29 -0
- package/src/_pkgs/affine-block-database/properties/link/cell-renderer-css.ts +99 -0
- package/src/_pkgs/affine-block-database/properties/link/cell-renderer.ts +186 -0
- package/src/_pkgs/affine-block-database/properties/link/define.ts +25 -0
- package/src/_pkgs/affine-block-database/properties/model.ts +20 -0
- package/src/_pkgs/affine-block-database/properties/rich-text/cell-renderer-css.ts +20 -0
- package/src/_pkgs/affine-block-database/properties/rich-text/cell-renderer.ts +430 -0
- package/src/_pkgs/affine-block-database/properties/rich-text/define.ts +77 -0
- package/src/_pkgs/affine-block-database/properties/title/cell-renderer-css.ts +31 -0
- package/src/_pkgs/affine-block-database/properties/title/cell-renderer.ts +23 -0
- package/src/_pkgs/affine-block-database/properties/title/define.ts +83 -0
- package/src/_pkgs/affine-block-database/properties/title/icon.ts +21 -0
- package/src/_pkgs/affine-block-database/properties/title/text.ts +319 -0
- package/src/_pkgs/affine-block-database/selection.ts +68 -0
- package/src/_pkgs/affine-block-database/service/index.ts +11 -0
- package/src/_pkgs/affine-block-database/store.ts +19 -0
- package/src/_pkgs/affine-block-database/utils/block-utils.ts +240 -0
- package/src/_pkgs/affine-block-database/utils/current-view.ts +52 -0
- package/src/_pkgs/affine-block-database/utils/title-doc.ts +30 -0
- package/src/_pkgs/affine-block-database/view.ts +51 -0
- package/src/_pkgs/affine-block-database/views/index.ts +12 -0
- package/src/_pkgs/affine-block-database/widgets/index.ts +1 -0
- package/src/_pkgs/affine-block-divider/adapters/extension.ts +13 -0
- package/src/_pkgs/affine-block-divider/adapters/html.ts +53 -0
- package/src/_pkgs/affine-block-divider/adapters/index.ts +4 -0
- package/src/_pkgs/affine-block-divider/adapters/markdown.ts +50 -0
- package/src/_pkgs/affine-block-divider/adapters/notion-html.ts +38 -0
- package/src/_pkgs/affine-block-divider/adapters/plain-text.ts +21 -0
- package/src/_pkgs/affine-block-divider/divider-block.ts +50 -0
- package/src/_pkgs/affine-block-divider/effects.ts +5 -0
- package/src/_pkgs/affine-block-divider/index.ts +2 -0
- package/src/_pkgs/affine-block-divider/markdown.ts +63 -0
- package/src/_pkgs/affine-block-divider/store.ts +17 -0
- package/src/_pkgs/affine-block-divider/styles.ts +19 -0
- package/src/_pkgs/affine-block-divider/view.ts +26 -0
- package/src/_pkgs/affine-block-edgeless-text/edgeless-clipboard-config.ts +33 -0
- package/src/_pkgs/affine-block-edgeless-text/edgeless-text-block.ts +512 -0
- package/src/_pkgs/affine-block-edgeless-text/edgeless-toolbar/config.ts +19 -0
- package/src/_pkgs/affine-block-edgeless-text/edgeless-toolbar/index.ts +1 -0
- package/src/_pkgs/affine-block-edgeless-text/effects.ts +5 -0
- package/src/_pkgs/affine-block-edgeless-text/index.ts +3 -0
- package/src/_pkgs/affine-block-edgeless-text/store.ts +14 -0
- package/src/_pkgs/affine-block-edgeless-text/view.ts +37 -0
- package/src/_pkgs/affine-block-embed/common/adapters/html.ts +66 -0
- package/src/_pkgs/affine-block-embed/common/adapters/markdown.ts +58 -0
- package/src/_pkgs/affine-block-embed/common/adapters/notion-html.ts +89 -0
- package/src/_pkgs/affine-block-embed/common/adapters/plain-text.ts +40 -0
- package/src/_pkgs/affine-block-embed/common/embed-block-element.ts +207 -0
- package/src/_pkgs/affine-block-embed/common/embed-note-content-styles.ts +85 -0
- package/src/_pkgs/affine-block-embed/common/insert-embed-card.ts +94 -0
- package/src/_pkgs/affine-block-embed/common/render-linked-doc.ts +205 -0
- package/src/_pkgs/affine-block-embed/common/to-edgeless-embed-block.ts +78 -0
- package/src/_pkgs/affine-block-embed/common/utils.ts +49 -0
- package/src/_pkgs/affine-block-embed/configs/toolbar.ts +686 -0
- package/src/_pkgs/affine-block-embed/effects.ts +96 -0
- package/src/_pkgs/affine-block-embed/embed-figma-block/adapters/extension.ts +13 -0
- package/src/_pkgs/affine-block-embed/embed-figma-block/adapters/html.ts +11 -0
- package/src/_pkgs/affine-block-embed/embed-figma-block/adapters/index.ts +4 -0
- package/src/_pkgs/affine-block-embed/embed-figma-block/adapters/markdown.ts +11 -0
- package/src/_pkgs/affine-block-embed/embed-figma-block/adapters/notion-html.ts +14 -0
- package/src/_pkgs/affine-block-embed/embed-figma-block/adapters/plain-text.ts +10 -0
- package/src/_pkgs/affine-block-embed/embed-figma-block/configs/slash-menu.ts +47 -0
- package/src/_pkgs/affine-block-embed/embed-figma-block/configs/tooltips.ts +23 -0
- package/src/_pkgs/affine-block-embed/embed-figma-block/edgeless-clipboard-config.ts +25 -0
- package/src/_pkgs/affine-block-embed/embed-figma-block/embed-edgeless-figma-block.ts +13 -0
- package/src/_pkgs/affine-block-embed/embed-figma-block/embed-figma-block.ts +126 -0
- package/src/_pkgs/affine-block-embed/embed-figma-block/embed-figma-model.ts +2 -0
- package/src/_pkgs/affine-block-embed/embed-figma-block/embed-figma-service.ts +14 -0
- package/src/_pkgs/affine-block-embed/embed-figma-block/embed-figma-spec.ts +26 -0
- package/src/_pkgs/affine-block-embed/embed-figma-block/index.ts +6 -0
- package/src/_pkgs/affine-block-embed/embed-figma-block/styles.ts +218 -0
- package/src/_pkgs/affine-block-embed/embed-github-block/adapters/extension.ts +13 -0
- package/src/_pkgs/affine-block-embed/embed-github-block/adapters/html.ts +11 -0
- package/src/_pkgs/affine-block-embed/embed-github-block/adapters/index.ts +4 -0
- package/src/_pkgs/affine-block-embed/embed-github-block/adapters/markdown.ts +10 -0
- package/src/_pkgs/affine-block-embed/embed-github-block/adapters/notion-html.ts +14 -0
- package/src/_pkgs/affine-block-embed/embed-github-block/adapters/plain-text.ts +10 -0
- package/src/_pkgs/affine-block-embed/embed-github-block/configs/slash-menu.ts +47 -0
- package/src/_pkgs/affine-block-embed/embed-github-block/configs/tooltips.ts +24 -0
- package/src/_pkgs/affine-block-embed/embed-github-block/edgeless-clipboard-config.ts +51 -0
- package/src/_pkgs/affine-block-embed/embed-github-block/embed-edgeless-github-block.ts +13 -0
- package/src/_pkgs/affine-block-embed/embed-github-block/embed-github-block.ts +271 -0
- package/src/_pkgs/affine-block-embed/embed-github-block/embed-github-model.ts +2 -0
- package/src/_pkgs/affine-block-embed/embed-github-block/embed-github-service.ts +36 -0
- package/src/_pkgs/affine-block-embed/embed-github-block/embed-github-spec.ts +30 -0
- package/src/_pkgs/affine-block-embed/embed-github-block/index.ts +6 -0
- package/src/_pkgs/affine-block-embed/embed-github-block/styles.ts +501 -0
- package/src/_pkgs/affine-block-embed/embed-github-block/utils.ts +182 -0
- package/src/_pkgs/affine-block-embed/embed-html-block/components/fullscreen-toolbar.ts +171 -0
- package/src/_pkgs/affine-block-embed/embed-html-block/configs/toolbar.ts +193 -0
- package/src/_pkgs/affine-block-embed/embed-html-block/configs/tooltips.ts +83 -0
- package/src/_pkgs/affine-block-embed/embed-html-block/edgeless-clipboard-config.ts +24 -0
- package/src/_pkgs/affine-block-embed/embed-html-block/embed-edgeless-html-block.ts +19 -0
- package/src/_pkgs/affine-block-embed/embed-html-block/embed-html-block.ts +114 -0
- package/src/_pkgs/affine-block-embed/embed-html-block/embed-html-spec.ts +19 -0
- package/src/_pkgs/affine-block-embed/embed-html-block/index.ts +8 -0
- package/src/_pkgs/affine-block-embed/embed-html-block/styles.ts +144 -0
- package/src/_pkgs/affine-block-embed/embed-iframe-block/adapters/html.ts +55 -0
- package/src/_pkgs/affine-block-embed/embed-iframe-block/adapters/index.ts +15 -0
- package/src/_pkgs/affine-block-embed/embed-iframe-block/adapters/markdown.ts +46 -0
- package/src/_pkgs/affine-block-embed/embed-iframe-block/adapters/plain-text.ts +31 -0
- package/src/_pkgs/affine-block-embed/embed-iframe-block/commands/index.ts +2 -0
- package/src/_pkgs/affine-block-embed/embed-iframe-block/commands/insert-embed-iframe-with-url.ts +107 -0
- package/src/_pkgs/affine-block-embed/embed-iframe-block/commands/insert-empty-embed-iframe.ts +55 -0
- package/src/_pkgs/affine-block-embed/embed-iframe-block/components/embed-iframe-error-card.ts +343 -0
- package/src/_pkgs/affine-block-embed/embed-iframe-block/components/embed-iframe-idle-card.ts +132 -0
- package/src/_pkgs/affine-block-embed/embed-iframe-block/components/embed-iframe-link-edit-popup.ts +122 -0
- package/src/_pkgs/affine-block-embed/embed-iframe-block/components/embed-iframe-link-input-base.ts +160 -0
- package/src/_pkgs/affine-block-embed/embed-iframe-block/components/embed-iframe-link-input-popup.ts +292 -0
- package/src/_pkgs/affine-block-embed/embed-iframe-block/components/embed-iframe-loading-card.ts +193 -0
- package/src/_pkgs/affine-block-embed/embed-iframe-block/configs/index.ts +2 -0
- package/src/_pkgs/affine-block-embed/embed-iframe-block/configs/providers/excalidraw.ts +42 -0
- package/src/_pkgs/affine-block-embed/embed-iframe-block/configs/providers/generic.ts +75 -0
- package/src/_pkgs/affine-block-embed/embed-iframe-block/configs/providers/google-docs.ts +81 -0
- package/src/_pkgs/affine-block-embed/embed-iframe-block/configs/providers/google-drive.ts +197 -0
- package/src/_pkgs/affine-block-embed/embed-iframe-block/configs/providers/index.ts +15 -0
- package/src/_pkgs/affine-block-embed/embed-iframe-block/configs/providers/miro.ts +46 -0
- package/src/_pkgs/affine-block-embed/embed-iframe-block/configs/providers/spotify.ts +47 -0
- package/src/_pkgs/affine-block-embed/embed-iframe-block/configs/slash-menu/slash-menu.ts +37 -0
- package/src/_pkgs/affine-block-embed/embed-iframe-block/configs/slash-menu/tooltip.ts +74 -0
- package/src/_pkgs/affine-block-embed/embed-iframe-block/configs/toolbar.ts +492 -0
- package/src/_pkgs/affine-block-embed/embed-iframe-block/consts.ts +12 -0
- package/src/_pkgs/affine-block-embed/embed-iframe-block/edgeless-clipboard-config.ts +37 -0
- package/src/_pkgs/affine-block-embed/embed-iframe-block/embed-edgeless-iframe-block.ts +119 -0
- package/src/_pkgs/affine-block-embed/embed-iframe-block/embed-iframe-block.ts +470 -0
- package/src/_pkgs/affine-block-embed/embed-iframe-block/embed-iframe-spec.ts +23 -0
- package/src/_pkgs/affine-block-embed/embed-iframe-block/index.ts +11 -0
- package/src/_pkgs/affine-block-embed/embed-iframe-block/style.ts +29 -0
- package/src/_pkgs/affine-block-embed/embed-iframe-block/types.ts +16 -0
- package/src/_pkgs/affine-block-embed/embed-iframe-block/utils.ts +75 -0
- package/src/_pkgs/affine-block-embed/embed-loom-block/adapters/extension.ts +13 -0
- package/src/_pkgs/affine-block-embed/embed-loom-block/adapters/html.ts +11 -0
- package/src/_pkgs/affine-block-embed/embed-loom-block/adapters/index.ts +4 -0
- package/src/_pkgs/affine-block-embed/embed-loom-block/adapters/markdown.ts +11 -0
- package/src/_pkgs/affine-block-embed/embed-loom-block/adapters/notion-html.ts +14 -0
- package/src/_pkgs/affine-block-embed/embed-loom-block/adapters/plain-text.ts +10 -0
- package/src/_pkgs/affine-block-embed/embed-loom-block/configs/slash-menu.ts +47 -0
- package/src/_pkgs/affine-block-embed/embed-loom-block/configs/tooltips.ts +30 -0
- package/src/_pkgs/affine-block-embed/embed-loom-block/edgeless-clipboard-config.ts +28 -0
- package/src/_pkgs/affine-block-embed/embed-loom-block/embed-edgeless-loom-bock.ts +13 -0
- package/src/_pkgs/affine-block-embed/embed-loom-block/embed-loom-block.ts +171 -0
- package/src/_pkgs/affine-block-embed/embed-loom-block/embed-loom-model.ts +2 -0
- package/src/_pkgs/affine-block-embed/embed-loom-block/embed-loom-service.ts +25 -0
- package/src/_pkgs/affine-block-embed/embed-loom-block/embed-loom-spec.ts +30 -0
- package/src/_pkgs/affine-block-embed/embed-loom-block/index.ts +7 -0
- package/src/_pkgs/affine-block-embed/embed-loom-block/styles.ts +210 -0
- package/src/_pkgs/affine-block-embed/embed-loom-block/utils.ts +75 -0
- package/src/_pkgs/affine-block-embed/embed-youtube-block/adapters/extension.ts +13 -0
- package/src/_pkgs/affine-block-embed/embed-youtube-block/adapters/html.ts +51 -0
- package/src/_pkgs/affine-block-embed/embed-youtube-block/adapters/index.ts +4 -0
- package/src/_pkgs/affine-block-embed/embed-youtube-block/adapters/markdown.ts +10 -0
- package/src/_pkgs/affine-block-embed/embed-youtube-block/adapters/notion-html.ts +14 -0
- package/src/_pkgs/affine-block-embed/embed-youtube-block/adapters/plain-text.ts +12 -0
- package/src/_pkgs/affine-block-embed/embed-youtube-block/configs/slash-menu.ts +47 -0
- package/src/_pkgs/affine-block-embed/embed-youtube-block/configs/tooltips.ts +24 -0
- package/src/_pkgs/affine-block-embed/embed-youtube-block/edgeless-clipboard-config.ts +42 -0
- package/src/_pkgs/affine-block-embed/embed-youtube-block/embed-edgeless-youtube-block.ts +13 -0
- package/src/_pkgs/affine-block-embed/embed-youtube-block/embed-youtube-block.ts +225 -0
- package/src/_pkgs/affine-block-embed/embed-youtube-block/embed-youtube-model.ts +2 -0
- package/src/_pkgs/affine-block-embed/embed-youtube-block/embed-youtube-service.ts +35 -0
- package/src/_pkgs/affine-block-embed/embed-youtube-block/embed-youtube-spec.ts +30 -0
- package/src/_pkgs/affine-block-embed/embed-youtube-block/index.ts +7 -0
- package/src/_pkgs/affine-block-embed/embed-youtube-block/styles.ts +241 -0
- package/src/_pkgs/affine-block-embed/embed-youtube-block/utils.ts +114 -0
- package/src/_pkgs/affine-block-embed/index.ts +19 -0
- package/src/_pkgs/affine-block-embed/store.ts +48 -0
- package/src/_pkgs/affine-block-embed/types.ts +23 -0
- package/src/_pkgs/affine-block-embed/view.ts +72 -0
- package/src/_pkgs/affine-block-embed-doc/common/render-linked-doc.ts +213 -0
- package/src/_pkgs/affine-block-embed-doc/effects.ts +37 -0
- package/src/_pkgs/affine-block-embed-doc/embed-linked-doc-block/adapters/extension.ts +11 -0
- package/src/_pkgs/affine-block-embed-doc/embed-linked-doc-block/adapters/html.ts +63 -0
- package/src/_pkgs/affine-block-embed-doc/embed-linked-doc-block/adapters/index.ts +3 -0
- package/src/_pkgs/affine-block-embed-doc/embed-linked-doc-block/adapters/markdown.ts +122 -0
- package/src/_pkgs/affine-block-embed-doc/embed-linked-doc-block/adapters/plain-text.ts +33 -0
- package/src/_pkgs/affine-block-embed-doc/embed-linked-doc-block/commands/index.ts +1 -0
- package/src/_pkgs/affine-block-embed-doc/embed-linked-doc-block/commands/insert-embed-linked-doc.ts +34 -0
- package/src/_pkgs/affine-block-embed-doc/embed-linked-doc-block/configs/slash-menu.ts +84 -0
- package/src/_pkgs/affine-block-embed-doc/embed-linked-doc-block/configs/toolbar.ts +513 -0
- package/src/_pkgs/affine-block-embed-doc/embed-linked-doc-block/configs/tooltips.ts +31 -0
- package/src/_pkgs/affine-block-embed-doc/embed-linked-doc-block/edgeless-clipboard-config.ts +31 -0
- package/src/_pkgs/affine-block-embed-doc/embed-linked-doc-block/embed-edgeless-linked-doc-block.ts +71 -0
- package/src/_pkgs/affine-block-embed-doc/embed-linked-doc-block/embed-linked-doc-block.ts +628 -0
- package/src/_pkgs/affine-block-embed-doc/embed-linked-doc-block/embed-linked-doc-spec.ts +21 -0
- package/src/_pkgs/affine-block-embed-doc/embed-linked-doc-block/index.ts +8 -0
- package/src/_pkgs/affine-block-embed-doc/embed-linked-doc-block/styles.ts +2232 -0
- package/src/_pkgs/affine-block-embed-doc/embed-linked-doc-block/utils.ts +102 -0
- package/src/_pkgs/affine-block-embed-doc/embed-synced-doc-block/adapters/extension.ts +11 -0
- package/src/_pkgs/affine-block-embed-doc/embed-synced-doc-block/adapters/html.ts +88 -0
- package/src/_pkgs/affine-block-embed-doc/embed-synced-doc-block/adapters/index.ts +3 -0
- package/src/_pkgs/affine-block-embed-doc/embed-synced-doc-block/adapters/markdown.ts +64 -0
- package/src/_pkgs/affine-block-embed-doc/embed-synced-doc-block/adapters/plain-text.ts +62 -0
- package/src/_pkgs/affine-block-embed-doc/embed-synced-doc-block/commands/index.ts +1 -0
- package/src/_pkgs/affine-block-embed-doc/embed-synced-doc-block/commands/insert-embed-synced-doc.ts +20 -0
- package/src/_pkgs/affine-block-embed-doc/embed-synced-doc-block/components/embed-synced-doc-card.ts +262 -0
- package/src/_pkgs/affine-block-embed-doc/embed-synced-doc-block/configs/edgeless-interaction.ts +87 -0
- package/src/_pkgs/affine-block-embed-doc/embed-synced-doc-block/configs/index.ts +18 -0
- package/src/_pkgs/affine-block-embed-doc/embed-synced-doc-block/configs/toolbar.ts +500 -0
- package/src/_pkgs/affine-block-embed-doc/embed-synced-doc-block/edgeless-clipboard-config.ts +27 -0
- package/src/_pkgs/affine-block-embed-doc/embed-synced-doc-block/embed-edgeless-synced-doc-block.ts +196 -0
- package/src/_pkgs/affine-block-embed-doc/embed-synced-doc-block/embed-synced-doc-block.ts +627 -0
- package/src/_pkgs/affine-block-embed-doc/embed-synced-doc-block/embed-synced-doc-spec.ts +20 -0
- package/src/_pkgs/affine-block-embed-doc/embed-synced-doc-block/index.ts +8 -0
- package/src/_pkgs/affine-block-embed-doc/embed-synced-doc-block/init-height-extension.ts +65 -0
- package/src/_pkgs/affine-block-embed-doc/embed-synced-doc-block/styles.ts +1122 -0
- package/src/_pkgs/affine-block-embed-doc/embed-synced-doc-block/utils.ts +74 -0
- package/src/_pkgs/affine-block-embed-doc/index.ts +2 -0
- package/src/_pkgs/affine-block-embed-doc/store.ts +25 -0
- package/src/_pkgs/affine-block-embed-doc/view.ts +40 -0
- package/src/_pkgs/affine-block-frame/edgeless-clipboard-config.ts +43 -0
- package/src/_pkgs/affine-block-frame/edgeless-toolbar/config.ts +9 -0
- package/src/_pkgs/affine-block-frame/edgeless-toolbar/frame-dense-menu.ts +34 -0
- package/src/_pkgs/affine-block-frame/edgeless-toolbar/frame-menu.ts +104 -0
- package/src/_pkgs/affine-block-frame/edgeless-toolbar/frame-tool-button.ts +49 -0
- package/src/_pkgs/affine-block-frame/edgeless-toolbar/index.ts +5 -0
- package/src/_pkgs/affine-block-frame/edgeless-toolbar/presentation-toolbar.ts +560 -0
- package/src/_pkgs/affine-block-frame/edgeless-toolbar/quick-tool.ts +16 -0
- package/src/_pkgs/affine-block-frame/effects.ts +47 -0
- package/src/_pkgs/affine-block-frame/frame-block.ts +208 -0
- package/src/_pkgs/affine-block-frame/frame-highlight-manager.ts +96 -0
- package/src/_pkgs/affine-block-frame/frame-manager.ts +503 -0
- package/src/_pkgs/affine-block-frame/frame-spec.ts +16 -0
- package/src/_pkgs/affine-block-frame/frame-tool.ts +108 -0
- package/src/_pkgs/affine-block-frame/frame-toolbar.ts +218 -0
- package/src/_pkgs/affine-block-frame/index.ts +9 -0
- package/src/_pkgs/affine-block-frame/present/frame-order-button.ts +82 -0
- package/src/_pkgs/affine-block-frame/present/frame-order-menu.ts +265 -0
- package/src/_pkgs/affine-block-frame/present/navigator-bg-widget.ts +126 -0
- package/src/_pkgs/affine-block-frame/present/navigator-setting-button.ts +195 -0
- package/src/_pkgs/affine-block-frame/present/present-button.ts +40 -0
- package/src/_pkgs/affine-block-frame/present-tool.ts +12 -0
- package/src/_pkgs/affine-block-frame/store.ts +14 -0
- package/src/_pkgs/affine-block-frame/view.ts +39 -0
- package/src/_pkgs/affine-block-image/adapters/extension.ts +11 -0
- package/src/_pkgs/affine-block-image/adapters/html.ts +90 -0
- package/src/_pkgs/affine-block-image/adapters/index.ts +3 -0
- package/src/_pkgs/affine-block-image/adapters/markdown.ts +66 -0
- package/src/_pkgs/affine-block-image/adapters/notion-html.ts +82 -0
- package/src/_pkgs/affine-block-image/adapters/utils.ts +89 -0
- package/src/_pkgs/affine-block-image/commands/index.ts +1 -0
- package/src/_pkgs/affine-block-image/commands/insert-images.ts +40 -0
- package/src/_pkgs/affine-block-image/components/image-block-fallback.ts +126 -0
- package/src/_pkgs/affine-block-image/components/image-selected-rect.ts +83 -0
- package/src/_pkgs/affine-block-image/components/page-image-block.ts +422 -0
- package/src/_pkgs/affine-block-image/configs/slash-menu.ts +32 -0
- package/src/_pkgs/affine-block-image/configs/toolbar.ts +174 -0
- package/src/_pkgs/affine-block-image/configs/tooltips.ts +20 -0
- package/src/_pkgs/affine-block-image/edgeless-clipboard-config.ts +30 -0
- package/src/_pkgs/affine-block-image/effects.ts +21 -0
- package/src/_pkgs/affine-block-image/image-block.ts +194 -0
- package/src/_pkgs/affine-block-image/image-edgeless-block.ts +205 -0
- package/src/_pkgs/affine-block-image/image-resize-manager.ts +105 -0
- package/src/_pkgs/affine-block-image/image-service.ts +46 -0
- package/src/_pkgs/affine-block-image/image-spec.ts +29 -0
- package/src/_pkgs/affine-block-image/index.ts +11 -0
- package/src/_pkgs/affine-block-image/preview-image/edgeless.ts +25 -0
- package/src/_pkgs/affine-block-image/preview-image/page.ts +58 -0
- package/src/_pkgs/affine-block-image/store.ts +18 -0
- package/src/_pkgs/affine-block-image/turbo/image-layout-handler.ts +71 -0
- package/src/_pkgs/affine-block-image/turbo/image-painter.worker.ts +56 -0
- package/src/_pkgs/affine-block-image/utils.ts +433 -0
- package/src/_pkgs/affine-block-image/view.ts +27 -0
- package/src/_pkgs/affine-block-latex/adapters/extension.ts +11 -0
- package/src/_pkgs/affine-block-latex/adapters/index.ts +3 -0
- package/src/_pkgs/affine-block-latex/adapters/markdown/index.ts +12 -0
- package/src/_pkgs/affine-block-latex/adapters/markdown/markdown.ts +55 -0
- package/src/_pkgs/affine-block-latex/adapters/markdown/preprocessor.ts +88 -0
- package/src/_pkgs/affine-block-latex/adapters/notion-html.ts +50 -0
- package/src/_pkgs/affine-block-latex/adapters/plain-text.ts +29 -0
- package/src/_pkgs/affine-block-latex/commands.ts +75 -0
- package/src/_pkgs/affine-block-latex/configs/slash-menu.ts +62 -0
- package/src/_pkgs/affine-block-latex/configs/tooltips.ts +41 -0
- package/src/_pkgs/affine-block-latex/effects.ts +5 -0
- package/src/_pkgs/affine-block-latex/index.ts +8 -0
- package/src/_pkgs/affine-block-latex/latex-block.ts +158 -0
- package/src/_pkgs/affine-block-latex/store.ts +19 -0
- package/src/_pkgs/affine-block-latex/styles.ts +40 -0
- package/src/_pkgs/affine-block-latex/view.ts +27 -0
- package/src/_pkgs/affine-block-list/adapters/extension.ts +13 -0
- package/src/_pkgs/affine-block-list/adapters/html.ts +203 -0
- package/src/_pkgs/affine-block-list/adapters/index.ts +4 -0
- package/src/_pkgs/affine-block-list/adapters/markdown.ts +156 -0
- package/src/_pkgs/affine-block-list/adapters/notion-html.ts +116 -0
- package/src/_pkgs/affine-block-list/adapters/plain-text.ts +27 -0
- package/src/_pkgs/affine-block-list/commands/convert-to-numbered-list.ts +28 -0
- package/src/_pkgs/affine-block-list/commands/dedent-list.ts +165 -0
- package/src/_pkgs/affine-block-list/commands/indent-list.ts +147 -0
- package/src/_pkgs/affine-block-list/commands/index.ts +5 -0
- package/src/_pkgs/affine-block-list/commands/list-to-paragraph.ts +44 -0
- package/src/_pkgs/affine-block-list/commands/split-list.ts +250 -0
- package/src/_pkgs/affine-block-list/commands/utils.ts +70 -0
- package/src/_pkgs/affine-block-list/effects.ts +11 -0
- package/src/_pkgs/affine-block-list/index.ts +6 -0
- package/src/_pkgs/affine-block-list/list-block.ts +216 -0
- package/src/_pkgs/affine-block-list/list-keymap.ts +136 -0
- package/src/_pkgs/affine-block-list/markdown.ts +91 -0
- package/src/_pkgs/affine-block-list/store.ts +17 -0
- package/src/_pkgs/affine-block-list/styles.ts +69 -0
- package/src/_pkgs/affine-block-list/turbo/list-layout-handler.ts +151 -0
- package/src/_pkgs/affine-block-list/turbo/list-painter.worker.ts +119 -0
- package/src/_pkgs/affine-block-list/utils/forward-delete.ts +75 -0
- package/src/_pkgs/affine-block-list/utils/get-list-icon.ts +78 -0
- package/src/_pkgs/affine-block-list/utils/get-number-prefix.ts +52 -0
- package/src/_pkgs/affine-block-list/view.ts +30 -0
- package/src/_pkgs/affine-block-note/adapters/html.ts +44 -0
- package/src/_pkgs/affine-block-note/adapters/index.ts +30 -0
- package/src/_pkgs/affine-block-note/adapters/markdown.ts +131 -0
- package/src/_pkgs/affine-block-note/adapters/plain-text.ts +41 -0
- package/src/_pkgs/affine-block-note/commands/block-type.ts +247 -0
- package/src/_pkgs/affine-block-note/commands/change-note-display-mode.ts +60 -0
- package/src/_pkgs/affine-block-note/commands/dedent-block-to-root.ts +38 -0
- package/src/_pkgs/affine-block-note/commands/dedent-block.ts +67 -0
- package/src/_pkgs/affine-block-note/commands/dedent-blocks-to-root.ts +43 -0
- package/src/_pkgs/affine-block-note/commands/dedent-blocks.ts +87 -0
- package/src/_pkgs/affine-block-note/commands/indent-block.ts +74 -0
- package/src/_pkgs/affine-block-note/commands/indent-blocks.ts +125 -0
- package/src/_pkgs/affine-block-note/commands/index.ts +10 -0
- package/src/_pkgs/affine-block-note/commands/select-block.ts +22 -0
- package/src/_pkgs/affine-block-note/commands/select-blocks-between.ts +53 -0
- package/src/_pkgs/affine-block-note/components/edgeless-note-background.css.ts +27 -0
- package/src/_pkgs/affine-block-note/components/edgeless-note-background.ts +182 -0
- package/src/_pkgs/affine-block-note/components/edgeless-note-border-dropdown-menu.ts +42 -0
- package/src/_pkgs/affine-block-note/components/edgeless-note-display-mode-dropdown-menu.ts +58 -0
- package/src/_pkgs/affine-block-note/components/edgeless-note-mask.ts +84 -0
- package/src/_pkgs/affine-block-note/components/edgeless-note-shadow-menu.ts +206 -0
- package/src/_pkgs/affine-block-note/components/edgeless-note-style-panel.ts +434 -0
- package/src/_pkgs/affine-block-note/components/edgeless-page-block-title.css.ts +11 -0
- package/src/_pkgs/affine-block-note/components/edgeless-page-block-title.ts +46 -0
- package/src/_pkgs/affine-block-note/components/icons.ts +74 -0
- package/src/_pkgs/affine-block-note/components/more-indicator.ts +17 -0
- package/src/_pkgs/affine-block-note/config.ts +20 -0
- package/src/_pkgs/affine-block-note/configs/slash-menu.ts +125 -0
- package/src/_pkgs/affine-block-note/configs/toolbar.ts +350 -0
- package/src/_pkgs/affine-block-note/configs/tooltips.ts +330 -0
- package/src/_pkgs/affine-block-note/edgeless-clipboard-config.ts +28 -0
- package/src/_pkgs/affine-block-note/effects.ts +29 -0
- package/src/_pkgs/affine-block-note/index.ts +9 -0
- package/src/_pkgs/affine-block-note/move-block.ts +129 -0
- package/src/_pkgs/affine-block-note/note-block.ts +34 -0
- package/src/_pkgs/affine-block-note/note-edgeless-block.css.ts +74 -0
- package/src/_pkgs/affine-block-note/note-edgeless-block.ts +499 -0
- package/src/_pkgs/affine-block-note/note-keymap.ts +611 -0
- package/src/_pkgs/affine-block-note/quick-action.ts +66 -0
- package/src/_pkgs/affine-block-note/store.ts +36 -0
- package/src/_pkgs/affine-block-note/turbo/note-layout-handler.ts +83 -0
- package/src/_pkgs/affine-block-note/turbo/note-painter.worker.ts +49 -0
- package/src/_pkgs/affine-block-note/view.ts +47 -0
- package/src/_pkgs/affine-block-paragraph/adapters/extension.ts +13 -0
- package/src/_pkgs/affine-block-paragraph/adapters/html.ts +359 -0
- package/src/_pkgs/affine-block-paragraph/adapters/index.ts +4 -0
- package/src/_pkgs/affine-block-paragraph/adapters/markdown.ts +200 -0
- package/src/_pkgs/affine-block-paragraph/adapters/notion-html.ts +239 -0
- package/src/_pkgs/affine-block-paragraph/adapters/plain-text.ts +28 -0
- package/src/_pkgs/affine-block-paragraph/commands/add-paragraph.ts +56 -0
- package/src/_pkgs/affine-block-paragraph/commands/append-paragraph.ts +30 -0
- package/src/_pkgs/affine-block-paragraph/commands/dedent-paragraph.ts +114 -0
- package/src/_pkgs/affine-block-paragraph/commands/indent-paragraph.ts +156 -0
- package/src/_pkgs/affine-block-paragraph/commands/index.ts +11 -0
- package/src/_pkgs/affine-block-paragraph/commands/split-paragraph.ts +81 -0
- package/src/_pkgs/affine-block-paragraph/effects.ts +13 -0
- package/src/_pkgs/affine-block-paragraph/heading-icon.ts +92 -0
- package/src/_pkgs/affine-block-paragraph/index.ts +6 -0
- package/src/_pkgs/affine-block-paragraph/markdown.ts +74 -0
- package/src/_pkgs/affine-block-paragraph/paragraph-block-config.ts +9 -0
- package/src/_pkgs/affine-block-paragraph/paragraph-block.ts +369 -0
- package/src/_pkgs/affine-block-paragraph/paragraph-keymap.ts +230 -0
- package/src/_pkgs/affine-block-paragraph/store.ts +17 -0
- package/src/_pkgs/affine-block-paragraph/styles.ts +158 -0
- package/src/_pkgs/affine-block-paragraph/turbo/paragraph-layout-handler.ts +106 -0
- package/src/_pkgs/affine-block-paragraph/turbo/paragraph-painter.worker.ts +115 -0
- package/src/_pkgs/affine-block-paragraph/utils/forward-delete.ts +94 -0
- package/src/_pkgs/affine-block-paragraph/utils/merge-with-prev.ts +184 -0
- package/src/_pkgs/affine-block-paragraph/view.ts +66 -0
- package/src/_pkgs/affine-block-root/adapters/extension.ts +11 -0
- package/src/_pkgs/affine-block-root/adapters/html.ts +135 -0
- package/src/_pkgs/affine-block-root/adapters/index.ts +3 -0
- package/src/_pkgs/affine-block-root/adapters/markdown.ts +36 -0
- package/src/_pkgs/affine-block-root/adapters/notion-html.ts +28 -0
- package/src/_pkgs/affine-block-root/clipboard/index.ts +2 -0
- package/src/_pkgs/affine-block-root/clipboard/page-clipboard.ts +176 -0
- package/src/_pkgs/affine-block-root/clipboard/readonly-clipboard.ts +71 -0
- package/src/_pkgs/affine-block-root/configs/toolbar.ts +398 -0
- package/src/_pkgs/affine-block-root/edgeless/clipboard/canvas.ts +117 -0
- package/src/_pkgs/affine-block-root/edgeless/clipboard/clipboard.ts +715 -0
- package/src/_pkgs/affine-block-root/edgeless/clipboard/command.ts +218 -0
- package/src/_pkgs/affine-block-root/edgeless/clipboard/utils.ts +140 -0
- package/src/_pkgs/affine-block-root/edgeless/configs/toolbar/alignment.ts +293 -0
- package/src/_pkgs/affine-block-root/edgeless/configs/toolbar/index.ts +19 -0
- package/src/_pkgs/affine-block-root/edgeless/configs/toolbar/misc.ts +369 -0
- package/src/_pkgs/affine-block-root/edgeless/configs/toolbar/more.ts +435 -0
- package/src/_pkgs/affine-block-root/edgeless/configs/toolbar/render-linked-doc.ts +96 -0
- package/src/_pkgs/affine-block-root/edgeless/configs/toolbar/utils.ts +17 -0
- package/src/_pkgs/affine-block-root/edgeless/edgeless-keyboard.ts +753 -0
- package/src/_pkgs/affine-block-root/edgeless/edgeless-root-block.ts +524 -0
- package/src/_pkgs/affine-block-root/edgeless/edgeless-root-service.ts +231 -0
- package/src/_pkgs/affine-block-root/edgeless/edgeless-root-spec.ts +11 -0
- package/src/_pkgs/affine-block-root/edgeless/index.ts +9 -0
- package/src/_pkgs/affine-block-root/edgeless/interact-extensions/clone-ext.ts +32 -0
- package/src/_pkgs/affine-block-root/edgeless/utils/clipboard-utils.ts +97 -0
- package/src/_pkgs/affine-block-root/edgeless/utils/clone-utils.ts +237 -0
- package/src/_pkgs/affine-block-root/edgeless/utils/connector.ts +34 -0
- package/src/_pkgs/affine-block-root/edgeless/utils/consts.ts +3 -0
- package/src/_pkgs/affine-block-root/edgeless/utils/crud.ts +37 -0
- package/src/_pkgs/affine-block-root/edgeless/utils/cursors.ts +2 -0
- package/src/_pkgs/affine-block-root/edgeless/utils/query.ts +104 -0
- package/src/_pkgs/affine-block-root/effects.ts +28 -0
- package/src/_pkgs/affine-block-root/index.ts +7 -0
- package/src/_pkgs/affine-block-root/keyboard/keyboard-manager.ts +163 -0
- package/src/_pkgs/affine-block-root/keyboard/keymap.ts +16 -0
- package/src/_pkgs/affine-block-root/page/page-root-block.ts +422 -0
- package/src/_pkgs/affine-block-root/preview/edgeless-root-preview-block.ts +262 -0
- package/src/_pkgs/affine-block-root/preview/preview-root-block.ts +41 -0
- package/src/_pkgs/affine-block-root/store.ts +17 -0
- package/src/_pkgs/affine-block-root/types.ts +6 -0
- package/src/_pkgs/affine-block-root/view.ts +93 -0
- package/src/_pkgs/affine-block-surface/adapters/extension.ts +21 -0
- package/src/_pkgs/affine-block-surface/adapters/html-adapter/html.ts +20 -0
- package/src/_pkgs/affine-block-surface/adapters/index.ts +1 -0
- package/src/_pkgs/affine-block-surface/adapters/markdown/element-adapter/index.ts +33 -0
- package/src/_pkgs/affine-block-surface/adapters/markdown/element-adapter/type.ts +29 -0
- package/src/_pkgs/affine-block-surface/adapters/markdown/markdown.ts +76 -0
- package/src/_pkgs/affine-block-surface/adapters/plain-text/element-adapter/index.ts +32 -0
- package/src/_pkgs/affine-block-surface/adapters/plain-text/element-adapter/type.ts +29 -0
- package/src/_pkgs/affine-block-surface/adapters/plain-text/plain-text.ts +77 -0
- package/src/_pkgs/affine-block-surface/adapters/type.ts +30 -0
- package/src/_pkgs/affine-block-surface/commands/auto-align.ts +157 -0
- package/src/_pkgs/affine-block-surface/commands/index.ts +5 -0
- package/src/_pkgs/affine-block-surface/commands/reassociate-connectors.ts +46 -0
- package/src/_pkgs/affine-block-surface/consts.ts +28 -0
- package/src/_pkgs/affine-block-surface/effects.ts +7 -0
- package/src/_pkgs/affine-block-surface/element-model/base.ts +4 -0
- package/src/_pkgs/affine-block-surface/element-model/index.ts +96 -0
- package/src/_pkgs/affine-block-surface/extensions/clipboard-config.ts +80 -0
- package/src/_pkgs/affine-block-surface/extensions/crud-extension.ts +181 -0
- package/src/_pkgs/affine-block-surface/extensions/dom-element-renderer.ts +30 -0
- package/src/_pkgs/affine-block-surface/extensions/edit-props-middleware-builder.ts +26 -0
- package/src/_pkgs/affine-block-surface/extensions/element-renderer.ts +31 -0
- package/src/_pkgs/affine-block-surface/extensions/export-manager/export-manager.ts +559 -0
- package/src/_pkgs/affine-block-surface/extensions/export-manager/file-exporter.ts +81 -0
- package/src/_pkgs/affine-block-surface/extensions/export-manager/index.ts +1 -0
- package/src/_pkgs/affine-block-surface/extensions/index.ts +9 -0
- package/src/_pkgs/affine-block-surface/extensions/legacy-slot-extension.ts +39 -0
- package/src/_pkgs/affine-block-surface/extensions/query.ts +15 -0
- package/src/_pkgs/affine-block-surface/extensions/surface-middleware.ts +23 -0
- package/src/_pkgs/affine-block-surface/index.ts +54 -0
- package/src/_pkgs/affine-block-surface/renderer/canvas-renderer.ts +472 -0
- package/src/_pkgs/affine-block-surface/renderer/dom-elements/index.ts +31 -0
- package/src/_pkgs/affine-block-surface/renderer/dom-renderer.ts +710 -0
- package/src/_pkgs/affine-block-surface/renderer/elements/index.ts +23 -0
- package/src/_pkgs/affine-block-surface/renderer/elements/type.ts +6 -0
- package/src/_pkgs/affine-block-surface/renderer/overlay.ts +57 -0
- package/src/_pkgs/affine-block-surface/renderer/tool-overlay.ts +44 -0
- package/src/_pkgs/affine-block-surface/store.ts +17 -0
- package/src/_pkgs/affine-block-surface/surface-block-void.ts +16 -0
- package/src/_pkgs/affine-block-surface/surface-block.ts +255 -0
- package/src/_pkgs/affine-block-surface/surface-model.ts +69 -0
- package/src/_pkgs/affine-block-surface/surface-transformer.ts +115 -0
- package/src/_pkgs/affine-block-surface/tool/default-tool.ts +374 -0
- package/src/_pkgs/affine-block-surface/tool/panning-utils.ts +46 -0
- package/src/_pkgs/affine-block-surface/utils/a-star.ts +299 -0
- package/src/_pkgs/affine-block-surface/utils/font.ts +47 -0
- package/src/_pkgs/affine-block-surface/utils/get-bg-grip-gap.ts +10 -0
- package/src/_pkgs/affine-block-surface/utils/get-last-props-key.ts +29 -0
- package/src/_pkgs/affine-block-surface/utils/get-surface-block.ts +16 -0
- package/src/_pkgs/affine-block-surface/utils/graph.ts +151 -0
- package/src/_pkgs/affine-block-surface/utils/index.ts +38 -0
- package/src/_pkgs/affine-block-surface/utils/path-data-parser/LICENSE +21 -0
- package/src/_pkgs/affine-block-surface/utils/path-data-parser/absolutize.ts +117 -0
- package/src/_pkgs/affine-block-surface/utils/path-data-parser/normalize.ts +280 -0
- package/src/_pkgs/affine-block-surface/utils/path-data-parser/parser.ts +153 -0
- package/src/_pkgs/affine-block-surface/utils/points-on-curve/LICENSE +21 -0
- package/src/_pkgs/affine-block-surface/utils/points-on-curve/curve-to-bezier.ts +51 -0
- package/src/_pkgs/affine-block-surface/utils/points-on-curve/index.ts +163 -0
- package/src/_pkgs/affine-block-surface/utils/points-on-path/LICENSE +21 -0
- package/src/_pkgs/affine-block-surface/utils/points-on-path/index.ts +77 -0
- package/src/_pkgs/affine-block-surface/utils/priority-queue.ts +85 -0
- package/src/_pkgs/affine-block-surface/utils/rough/LICENSE +21 -0
- package/src/_pkgs/affine-block-surface/utils/rough/canvas.ts +214 -0
- package/src/_pkgs/affine-block-surface/utils/rough/core.ts +93 -0
- package/src/_pkgs/affine-block-surface/utils/rough/fillers/dashed-filler.ts +62 -0
- package/src/_pkgs/affine-block-surface/utils/rough/fillers/dot-filler.ts +50 -0
- package/src/_pkgs/affine-block-surface/utils/rough/fillers/filler-interface.ts +25 -0
- package/src/_pkgs/affine-block-surface/utils/rough/fillers/filler.ts +54 -0
- package/src/_pkgs/affine-block-surface/utils/rough/fillers/hachure-filler.ts +38 -0
- package/src/_pkgs/affine-block-surface/utils/rough/fillers/hatch-filler.ts +13 -0
- package/src/_pkgs/affine-block-surface/utils/rough/fillers/scan-line-hachure.ts +152 -0
- package/src/_pkgs/affine-block-surface/utils/rough/fillers/zigzag-filler.ts +31 -0
- package/src/_pkgs/affine-block-surface/utils/rough/fillers/zigzag-line-filler.ts +64 -0
- package/src/_pkgs/affine-block-surface/utils/rough/generator.ts +340 -0
- package/src/_pkgs/affine-block-surface/utils/rough/geometry.ts +43 -0
- package/src/_pkgs/affine-block-surface/utils/rough/math.ts +21 -0
- package/src/_pkgs/affine-block-surface/utils/rough/renderer.ts +742 -0
- package/src/_pkgs/affine-block-surface/utils/rough/rough.ts +22 -0
- package/src/_pkgs/affine-block-surface/utils/rough/svg.ts +182 -0
- package/src/_pkgs/affine-block-surface/utils/sort.ts +93 -0
- package/src/_pkgs/affine-block-surface/utils/update-xywh.ts +82 -0
- package/src/_pkgs/affine-block-surface/view.ts +45 -0
- package/src/_pkgs/affine-block-surface-ref/commands.ts +60 -0
- package/src/_pkgs/affine-block-surface-ref/components/index.ts +2 -0
- package/src/_pkgs/affine-block-surface-ref/components/placeholder.ts +131 -0
- package/src/_pkgs/affine-block-surface-ref/components/surface-ref-toolbar-title.ts +76 -0
- package/src/_pkgs/affine-block-surface-ref/configs/slash-menu.ts +164 -0
- package/src/_pkgs/affine-block-surface-ref/configs/toolbar.ts +100 -0
- package/src/_pkgs/affine-block-surface-ref/configs/tooltips.ts +111 -0
- package/src/_pkgs/affine-block-surface-ref/effects.ts +20 -0
- package/src/_pkgs/affine-block-surface-ref/icons.ts +211 -0
- package/src/_pkgs/affine-block-surface-ref/index.ts +3 -0
- package/src/_pkgs/affine-block-surface-ref/portal/generic-block.ts +82 -0
- package/src/_pkgs/affine-block-surface-ref/portal/note.ts +169 -0
- package/src/_pkgs/affine-block-surface-ref/store.ts +14 -0
- package/src/_pkgs/affine-block-surface-ref/surface-ref-block-edgeless.ts +80 -0
- package/src/_pkgs/affine-block-surface-ref/surface-ref-block.ts +511 -0
- package/src/_pkgs/affine-block-surface-ref/utils.ts +152 -0
- package/src/_pkgs/affine-block-surface-ref/view.ts +49 -0
- package/src/_pkgs/affine-block-table/adapters/extension.ts +13 -0
- package/src/_pkgs/affine-block-table/adapters/html.ts +129 -0
- package/src/_pkgs/affine-block-table/adapters/index.ts +5 -0
- package/src/_pkgs/affine-block-table/adapters/markdown.ts +82 -0
- package/src/_pkgs/affine-block-table/adapters/notion-html.ts +21 -0
- package/src/_pkgs/affine-block-table/adapters/plain-text.ts +79 -0
- package/src/_pkgs/affine-block-table/adapters/utils.ts +212 -0
- package/src/_pkgs/affine-block-table/add-button-css.ts +99 -0
- package/src/_pkgs/affine-block-table/add-button.ts +330 -0
- package/src/_pkgs/affine-block-table/color.ts +45 -0
- package/src/_pkgs/affine-block-table/commands.ts +52 -0
- package/src/_pkgs/affine-block-table/configs/slash-menu.ts +44 -0
- package/src/_pkgs/affine-block-table/configs/tooltips.ts +68 -0
- package/src/_pkgs/affine-block-table/consts.ts +4 -0
- package/src/_pkgs/affine-block-table/effects.ts +11 -0
- package/src/_pkgs/affine-block-table/index.ts +4 -0
- package/src/_pkgs/affine-block-table/selection-controller.ts +527 -0
- package/src/_pkgs/affine-block-table/selection-layer.ts +112 -0
- package/src/_pkgs/affine-block-table/selection-schema.ts +112 -0
- package/src/_pkgs/affine-block-table/store.ts +19 -0
- package/src/_pkgs/affine-block-table/table-block-css.ts +40 -0
- package/src/_pkgs/affine-block-table/table-block.ts +209 -0
- package/src/_pkgs/affine-block-table/table-cell-css.ts +154 -0
- package/src/_pkgs/affine-block-table/table-cell.ts +866 -0
- package/src/_pkgs/affine-block-table/table-data-manager.ts +382 -0
- package/src/_pkgs/affine-block-table/utils.ts +6 -0
- package/src/_pkgs/affine-block-table/view.ts +29 -0
- package/src/_pkgs/affine-components/block-selection/index.ts +69 -0
- package/src/_pkgs/affine-components/block-zero-width/index.ts +59 -0
- package/src/_pkgs/affine-components/caption/block-caption.ts +188 -0
- package/src/_pkgs/affine-components/caption/captioned-block-component.ts +82 -0
- package/src/_pkgs/affine-components/caption/index.ts +10 -0
- package/src/_pkgs/affine-components/caption/styles.ts +18 -0
- package/src/_pkgs/affine-components/card-style-dropdown-menu/dropdown-menu.ts +118 -0
- package/src/_pkgs/affine-components/card-style-dropdown-menu/index.ts +10 -0
- package/src/_pkgs/affine-components/citation/citation.ts +167 -0
- package/src/_pkgs/affine-components/citation/index.ts +7 -0
- package/src/_pkgs/affine-components/color-picker/button.ts +207 -0
- package/src/_pkgs/affine-components/color-picker/color-panel.ts +260 -0
- package/src/_pkgs/affine-components/color-picker/color-picker.ts +677 -0
- package/src/_pkgs/affine-components/color-picker/consts.ts +25 -0
- package/src/_pkgs/affine-components/color-picker/custom-button.ts +69 -0
- package/src/_pkgs/affine-components/color-picker/icons.ts +71 -0
- package/src/_pkgs/affine-components/color-picker/index.ts +41 -0
- package/src/_pkgs/affine-components/color-picker/styles.ts +308 -0
- package/src/_pkgs/affine-components/color-picker/types.ts +53 -0
- package/src/_pkgs/affine-components/color-picker/utils.ts +368 -0
- package/src/_pkgs/affine-components/context-menu/button.ts +302 -0
- package/src/_pkgs/affine-components/context-menu/dynamic.ts +15 -0
- package/src/_pkgs/affine-components/context-menu/focusable.ts +18 -0
- package/src/_pkgs/affine-components/context-menu/group.ts +35 -0
- package/src/_pkgs/affine-components/context-menu/index.ts +30 -0
- package/src/_pkgs/affine-components/context-menu/input.ts +254 -0
- package/src/_pkgs/affine-components/context-menu/item.ts +12 -0
- package/src/_pkgs/affine-components/context-menu/menu-all.ts +14 -0
- package/src/_pkgs/affine-components/context-menu/menu-divider.ts +50 -0
- package/src/_pkgs/affine-components/context-menu/menu-renderer.ts +574 -0
- package/src/_pkgs/affine-components/context-menu/menu.ts +170 -0
- package/src/_pkgs/affine-components/context-menu/sub-menu.ts +194 -0
- package/src/_pkgs/affine-components/context-menu/types.ts +21 -0
- package/src/_pkgs/affine-components/date-picker/date-picker.ts +626 -0
- package/src/_pkgs/affine-components/date-picker/icons.ts +11 -0
- package/src/_pkgs/affine-components/date-picker/index.ts +7 -0
- package/src/_pkgs/affine-components/date-picker/style.ts +309 -0
- package/src/_pkgs/affine-components/date-picker/utils.ts +68 -0
- package/src/_pkgs/affine-components/drop-indicator/drop-indicator.ts +51 -0
- package/src/_pkgs/affine-components/drop-indicator/file-drop-manager.ts +300 -0
- package/src/_pkgs/affine-components/drop-indicator/index.ts +13 -0
- package/src/_pkgs/affine-components/edgeless-line-styles-panel/index.ts +7 -0
- package/src/_pkgs/affine-components/edgeless-line-styles-panel/line-styles-panel.ts +113 -0
- package/src/_pkgs/affine-components/edgeless-line-width-panel/index.ts +7 -0
- package/src/_pkgs/affine-components/edgeless-line-width-panel/line-width-panel.ts +50 -0
- package/src/_pkgs/affine-components/edgeless-shape-color-picker/color-picker.ts +318 -0
- package/src/_pkgs/affine-components/edgeless-shape-color-picker/index.ts +10 -0
- package/src/_pkgs/affine-components/embed-card-modal/embed-card-create-modal.ts +218 -0
- package/src/_pkgs/affine-components/embed-card-modal/embed-card-edit-modal.ts +468 -0
- package/src/_pkgs/affine-components/embed-card-modal/index.ts +10 -0
- package/src/_pkgs/affine-components/embed-card-modal/styles.ts +131 -0
- package/src/_pkgs/affine-components/filterable-list/index.ts +259 -0
- package/src/_pkgs/affine-components/filterable-list/styles.ts +109 -0
- package/src/_pkgs/affine-components/filterable-list/types.ts +16 -0
- package/src/_pkgs/affine-components/highlight-dropdown-menu/dropdown-menu.ts +123 -0
- package/src/_pkgs/affine-components/highlight-dropdown-menu/highlight-duotone-icon.ts +23 -0
- package/src/_pkgs/affine-components/highlight-dropdown-menu/index.ts +16 -0
- package/src/_pkgs/affine-components/highlight-dropdown-menu/text-duotone-icon.ts +26 -0
- package/src/_pkgs/affine-components/hover/controller.ts +201 -0
- package/src/_pkgs/affine-components/hover/index.ts +3 -0
- package/src/_pkgs/affine-components/hover/middlewares/basic.ts +79 -0
- package/src/_pkgs/affine-components/hover/middlewares/safe-area.ts +361 -0
- package/src/_pkgs/affine-components/hover/types.ts +65 -0
- package/src/_pkgs/affine-components/hover/when-hover.ts +144 -0
- package/src/_pkgs/affine-components/icon-button/index.ts +242 -0
- package/src/_pkgs/affine-components/icons/ai.ts +103 -0
- package/src/_pkgs/affine-components/icons/file-icons-rc.ts +173 -0
- package/src/_pkgs/affine-components/icons/file-icons.ts +105 -0
- package/src/_pkgs/affine-components/icons/import-export.ts +110 -0
- package/src/_pkgs/affine-components/icons/index.ts +10 -0
- package/src/_pkgs/affine-components/icons/list.ts +39 -0
- package/src/_pkgs/affine-components/icons/loading.ts +47 -0
- package/src/_pkgs/affine-components/icons/misc.ts +59 -0
- package/src/_pkgs/affine-components/icons/tags.ts +6 -0
- package/src/_pkgs/affine-components/icons/text.ts +856 -0
- package/src/_pkgs/affine-components/icons/utils.ts +12 -0
- package/src/_pkgs/affine-components/index.ts +1 -0
- package/src/_pkgs/affine-components/link-preview/index.ts +7 -0
- package/src/_pkgs/affine-components/link-preview/link.ts +65 -0
- package/src/_pkgs/affine-components/linked-doc-title/doc-title.ts +61 -0
- package/src/_pkgs/affine-components/linked-doc-title/index.ts +7 -0
- package/src/_pkgs/affine-components/notification/index.ts +1 -0
- package/src/_pkgs/affine-components/notification/linked-doc.ts +45 -0
- package/src/_pkgs/affine-components/open-doc-dropdown-menu/dropdown-menu.ts +131 -0
- package/src/_pkgs/affine-components/open-doc-dropdown-menu/index.ts +7 -0
- package/src/_pkgs/affine-components/peek/commands.ts +47 -0
- package/src/_pkgs/affine-components/peek/controller.ts +31 -0
- package/src/_pkgs/affine-components/peek/index.ts +8 -0
- package/src/_pkgs/affine-components/peek/peekable.ts +137 -0
- package/src/_pkgs/affine-components/peek/service.ts +16 -0
- package/src/_pkgs/affine-components/peek/type.ts +70 -0
- package/src/_pkgs/affine-components/portal/helper.ts +225 -0
- package/src/_pkgs/affine-components/portal/index.ts +9 -0
- package/src/_pkgs/affine-components/portal/portal.ts +60 -0
- package/src/_pkgs/affine-components/portal/types.ts +82 -0
- package/src/_pkgs/affine-components/resource/index.ts +8 -0
- package/src/_pkgs/affine-components/resource/resource.ts +230 -0
- package/src/_pkgs/affine-components/resource/status.ts +165 -0
- package/src/_pkgs/affine-components/size-dropdown-menu/dropdown-menu.ts +211 -0
- package/src/_pkgs/affine-components/size-dropdown-menu/index.ts +7 -0
- package/src/_pkgs/affine-components/slider/index.ts +6 -0
- package/src/_pkgs/affine-components/slider/slider.ts +159 -0
- package/src/_pkgs/affine-components/slider/styles.ts +79 -0
- package/src/_pkgs/affine-components/slider/types.ts +22 -0
- package/src/_pkgs/affine-components/slider/utils.ts +10 -0
- package/src/_pkgs/affine-components/smooth-corner/index.ts +184 -0
- package/src/_pkgs/affine-components/toast/create.ts +39 -0
- package/src/_pkgs/affine-components/toast/html-to-element.ts +19 -0
- package/src/_pkgs/affine-components/toast/index.ts +1 -0
- package/src/_pkgs/affine-components/toast/toast.ts +80 -0
- package/src/_pkgs/affine-components/toggle-button/index.ts +7 -0
- package/src/_pkgs/affine-components/toggle-button/toggle-button.ts +97 -0
- package/src/_pkgs/affine-components/toggle-switch/index.ts +88 -0
- package/src/_pkgs/affine-components/toolbar/chevron-down.ts +7 -0
- package/src/_pkgs/affine-components/toolbar/config.ts +7 -0
- package/src/_pkgs/affine-components/toolbar/icon-button.ts +220 -0
- package/src/_pkgs/affine-components/toolbar/index.ts +48 -0
- package/src/_pkgs/affine-components/toolbar/menu-button.ts +242 -0
- package/src/_pkgs/affine-components/toolbar/menu-context.ts +30 -0
- package/src/_pkgs/affine-components/toolbar/separator.ts +39 -0
- package/src/_pkgs/affine-components/toolbar/styles.ts +39 -0
- package/src/_pkgs/affine-components/toolbar/toolbar.ts +52 -0
- package/src/_pkgs/affine-components/toolbar/tooltip.ts +328 -0
- package/src/_pkgs/affine-components/toolbar/types.ts +39 -0
- package/src/_pkgs/affine-components/toolbar/utils.ts +120 -0
- package/src/_pkgs/affine-components/tooltip-content-with-shortcut/index.ts +86 -0
- package/src/_pkgs/affine-components/view-dropdown-menu/dropdown-menu.ts +86 -0
- package/src/_pkgs/affine-components/view-dropdown-menu/index.ts +7 -0
- package/src/_pkgs/affine-ext-loader/base-provider.ts +69 -0
- package/src/_pkgs/affine-ext-loader/index.ts +4 -0
- package/src/_pkgs/affine-ext-loader/manager.ts +146 -0
- package/src/_pkgs/affine-ext-loader/store-manager.ts +47 -0
- package/src/_pkgs/affine-ext-loader/store-provider.ts +41 -0
- package/src/_pkgs/affine-ext-loader/view-manager.ts +49 -0
- package/src/_pkgs/affine-ext-loader/view-provider.ts +129 -0
- package/src/_pkgs/affine-foundation/clipboard.ts +65 -0
- package/src/_pkgs/affine-foundation/effects.ts +70 -0
- package/src/_pkgs/affine-foundation/index.ts +1 -0
- package/src/_pkgs/affine-foundation/store.ts +54 -0
- package/src/_pkgs/affine-foundation/view.ts +108 -0
- package/src/_pkgs/affine-fragment-adapter-panel/adapter-panel.ts +177 -0
- package/src/_pkgs/affine-fragment-adapter-panel/body/adapter-panel-body.ts +216 -0
- package/src/_pkgs/affine-fragment-adapter-panel/config.ts +28 -0
- package/src/_pkgs/affine-fragment-adapter-panel/effects.ts +17 -0
- package/src/_pkgs/affine-fragment-adapter-panel/header/adapter-menu.ts +86 -0
- package/src/_pkgs/affine-fragment-adapter-panel/header/adapter-panel-header.ts +119 -0
- package/src/_pkgs/affine-fragment-adapter-panel/index.ts +4 -0
- package/src/_pkgs/affine-fragment-adapter-panel/view.ts +12 -0
- package/src/_pkgs/affine-fragment-doc-title/doc-title.ts +241 -0
- package/src/_pkgs/affine-fragment-doc-title/effects.ts +11 -0
- package/src/_pkgs/affine-fragment-doc-title/index.ts +2 -0
- package/src/_pkgs/affine-fragment-doc-title/utils.ts +11 -0
- package/src/_pkgs/affine-fragment-doc-title/view.ts +12 -0
- package/src/_pkgs/affine-fragment-frame-panel/body/frame-panel-body.ts +436 -0
- package/src/_pkgs/affine-fragment-frame-panel/card/frame-card-title-editor.ts +126 -0
- package/src/_pkgs/affine-fragment-frame-panel/card/frame-card-title.ts +151 -0
- package/src/_pkgs/affine-fragment-frame-panel/card/frame-card.ts +254 -0
- package/src/_pkgs/affine-fragment-frame-panel/card/frame-preview.ts +263 -0
- package/src/_pkgs/affine-fragment-frame-panel/effects.ts +34 -0
- package/src/_pkgs/affine-fragment-frame-panel/frame-panel.ts +92 -0
- package/src/_pkgs/affine-fragment-frame-panel/header/frame-panel-header.ts +248 -0
- package/src/_pkgs/affine-fragment-frame-panel/header/frames-setting-menu.ts +219 -0
- package/src/_pkgs/affine-fragment-frame-panel/index.ts +1 -0
- package/src/_pkgs/affine-fragment-frame-panel/utils/drag.ts +156 -0
- package/src/_pkgs/affine-fragment-frame-panel/view.ts +12 -0
- package/src/_pkgs/affine-fragment-outline/body/outline-notice.css.ts +86 -0
- package/src/_pkgs/affine-fragment-outline/body/outline-notice.ts +94 -0
- package/src/_pkgs/affine-fragment-outline/body/outline-panel-body.css.ts +62 -0
- package/src/_pkgs/affine-fragment-outline/body/outline-panel-body.ts +481 -0
- package/src/_pkgs/affine-fragment-outline/card/outline-card.css.ts +166 -0
- package/src/_pkgs/affine-fragment-outline/card/outline-card.ts +278 -0
- package/src/_pkgs/affine-fragment-outline/card/outline-preview.css.ts +119 -0
- package/src/_pkgs/affine-fragment-outline/card/outline-preview.ts +228 -0
- package/src/_pkgs/affine-fragment-outline/config.ts +97 -0
- package/src/_pkgs/affine-fragment-outline/effects.ts +39 -0
- package/src/_pkgs/affine-fragment-outline/header/outline-panel-header.css.ts +44 -0
- package/src/_pkgs/affine-fragment-outline/header/outline-panel-header.ts +90 -0
- package/src/_pkgs/affine-fragment-outline/header/outline-setting-menu.css.ts +47 -0
- package/src/_pkgs/affine-fragment-outline/header/outline-setting-menu.ts +47 -0
- package/src/_pkgs/affine-fragment-outline/index.ts +3 -0
- package/src/_pkgs/affine-fragment-outline/mobile-outline-panel.ts +197 -0
- package/src/_pkgs/affine-fragment-outline/outline-panel.css.ts +15 -0
- package/src/_pkgs/affine-fragment-outline/outline-panel.ts +118 -0
- package/src/_pkgs/affine-fragment-outline/outline-viewer.ts +325 -0
- package/src/_pkgs/affine-fragment-outline/utils/custom-events.ts +27 -0
- package/src/_pkgs/affine-fragment-outline/utils/drag.ts +8 -0
- package/src/_pkgs/affine-fragment-outline/utils/query.ts +72 -0
- package/src/_pkgs/affine-fragment-outline/utils/scroll.ts +201 -0
- package/src/_pkgs/affine-fragment-outline/view.ts +12 -0
- package/src/_pkgs/affine-gfx-brush/adapter/index.ts +2 -0
- package/src/_pkgs/affine-gfx-brush/adapter/markdown/index.ts +18 -0
- package/src/_pkgs/affine-gfx-brush/adapter/plain-text/index.ts +11 -0
- package/src/_pkgs/affine-gfx-brush/brush-tool.ts +200 -0
- package/src/_pkgs/affine-gfx-brush/effects.ts +20 -0
- package/src/_pkgs/affine-gfx-brush/element-renderer.ts +32 -0
- package/src/_pkgs/affine-gfx-brush/eraser-tool.ts +158 -0
- package/src/_pkgs/affine-gfx-brush/highlighter-tool.ts +179 -0
- package/src/_pkgs/affine-gfx-brush/index.ts +7 -0
- package/src/_pkgs/affine-gfx-brush/store.ts +19 -0
- package/src/_pkgs/affine-gfx-brush/toolbar/components/eraser/eraser-tool-button.ts +75 -0
- package/src/_pkgs/affine-gfx-brush/toolbar/components/eraser/icons.ts +422 -0
- package/src/_pkgs/affine-gfx-brush/toolbar/components/pen/consts.ts +29 -0
- package/src/_pkgs/affine-gfx-brush/toolbar/components/pen/icons.ts +608 -0
- package/src/_pkgs/affine-gfx-brush/toolbar/components/pen/pen-menu.ts +215 -0
- package/src/_pkgs/affine-gfx-brush/toolbar/components/pen/pen-tool-button.ts +195 -0
- package/src/_pkgs/affine-gfx-brush/toolbar/components/pen/types.ts +3 -0
- package/src/_pkgs/affine-gfx-brush/toolbar/configs/brush.ts +120 -0
- package/src/_pkgs/affine-gfx-brush/toolbar/configs/highlighter.ts +139 -0
- package/src/_pkgs/affine-gfx-brush/toolbar/configs/index.ts +2 -0
- package/src/_pkgs/affine-gfx-brush/toolbar/senior-tool.ts +15 -0
- package/src/_pkgs/affine-gfx-brush/view.ts +39 -0
- package/src/_pkgs/affine-gfx-connector/adapter/index.ts +2 -0
- package/src/_pkgs/affine-gfx-connector/adapter/markdown/index.ts +26 -0
- package/src/_pkgs/affine-gfx-connector/adapter/plain-text/index.ts +14 -0
- package/src/_pkgs/affine-gfx-connector/adapter/text.ts +23 -0
- package/src/_pkgs/affine-gfx-connector/components/connector-handle.ts +263 -0
- package/src/_pkgs/affine-gfx-connector/connector-manager.ts +1858 -0
- package/src/_pkgs/affine-gfx-connector/connector-tool.ts +279 -0
- package/src/_pkgs/affine-gfx-connector/connector-watcher.ts +190 -0
- package/src/_pkgs/affine-gfx-connector/effects.ts +26 -0
- package/src/_pkgs/affine-gfx-connector/element-renderer/connector-dom/index.ts +367 -0
- package/src/_pkgs/affine-gfx-connector/element-renderer/connector-dom.ts +11 -0
- package/src/_pkgs/affine-gfx-connector/element-renderer/index.ts +315 -0
- package/src/_pkgs/affine-gfx-connector/element-renderer/utils.ts +327 -0
- package/src/_pkgs/affine-gfx-connector/element-transform/connector-filter.ts +44 -0
- package/src/_pkgs/affine-gfx-connector/element-transform/index.ts +1 -0
- package/src/_pkgs/affine-gfx-connector/index.ts +10 -0
- package/src/_pkgs/affine-gfx-connector/store.ts +21 -0
- package/src/_pkgs/affine-gfx-connector/text/edgeless-connector-label-editor.ts +394 -0
- package/src/_pkgs/affine-gfx-connector/text/index.ts +1 -0
- package/src/_pkgs/affine-gfx-connector/text/text.ts +66 -0
- package/src/_pkgs/affine-gfx-connector/toolbar/config.ts +436 -0
- package/src/_pkgs/affine-gfx-connector/toolbar/connector-dense-menu.ts +58 -0
- package/src/_pkgs/affine-gfx-connector/toolbar/connector-menu.ts +153 -0
- package/src/_pkgs/affine-gfx-connector/toolbar/connector-tool-button.ts +79 -0
- package/src/_pkgs/affine-gfx-connector/toolbar/quick-tool.ts +15 -0
- package/src/_pkgs/affine-gfx-connector/view/index.ts +1 -0
- package/src/_pkgs/affine-gfx-connector/view/view.ts +256 -0
- package/src/_pkgs/affine-gfx-connector/view.ts +38 -0
- package/src/_pkgs/affine-gfx-group/adapter/index.ts +2 -0
- package/src/_pkgs/affine-gfx-group/adapter/markdown/index.ts +25 -0
- package/src/_pkgs/affine-gfx-group/adapter/plain-text/index.ts +14 -0
- package/src/_pkgs/affine-gfx-group/adapter/text.ts +21 -0
- package/src/_pkgs/affine-gfx-group/command/group-api.ts +134 -0
- package/src/_pkgs/affine-gfx-group/command/index.ts +1 -0
- package/src/_pkgs/affine-gfx-group/effects.ts +14 -0
- package/src/_pkgs/affine-gfx-group/element-renderer/consts.ts +6 -0
- package/src/_pkgs/affine-gfx-group/element-renderer/index.ts +67 -0
- package/src/_pkgs/affine-gfx-group/element-renderer/utils.ts +77 -0
- package/src/_pkgs/affine-gfx-group/element-view.ts +57 -0
- package/src/_pkgs/affine-gfx-group/group-watcher.ts +36 -0
- package/src/_pkgs/affine-gfx-group/index.ts +6 -0
- package/src/_pkgs/affine-gfx-group/interaction-ext.ts +45 -0
- package/src/_pkgs/affine-gfx-group/store.ts +21 -0
- package/src/_pkgs/affine-gfx-group/text/edgeless-group-title-editor.ts +189 -0
- package/src/_pkgs/affine-gfx-group/text/text.ts +33 -0
- package/src/_pkgs/affine-gfx-group/toolbar/config.ts +106 -0
- package/src/_pkgs/affine-gfx-group/view.ts +30 -0
- package/src/_pkgs/affine-gfx-link/effects.ts +5 -0
- package/src/_pkgs/affine-gfx-link/index.ts +1 -0
- package/src/_pkgs/affine-gfx-link/link-tool.ts +13 -0
- package/src/_pkgs/affine-gfx-link/toolbar/link-dense-menu.ts +32 -0
- package/src/_pkgs/affine-gfx-link/toolbar/link-tool-button.ts +96 -0
- package/src/_pkgs/affine-gfx-link/view.ts +23 -0
- package/src/_pkgs/affine-gfx-mindmap/adapter/index.ts +2 -0
- package/src/_pkgs/affine-gfx-mindmap/adapter/markdown/index.ts +69 -0
- package/src/_pkgs/affine-gfx-mindmap/adapter/plain-text/index.ts +13 -0
- package/src/_pkgs/affine-gfx-mindmap/adapter/utils.ts +65 -0
- package/src/_pkgs/affine-gfx-mindmap/effects.ts +20 -0
- package/src/_pkgs/affine-gfx-mindmap/element-renderer.ts +81 -0
- package/src/_pkgs/affine-gfx-mindmap/index.ts +8 -0
- package/src/_pkgs/affine-gfx-mindmap/indicator-overlay/index.ts +301 -0
- package/src/_pkgs/affine-gfx-mindmap/interactivity/drag-utils.ts +190 -0
- package/src/_pkgs/affine-gfx-mindmap/interactivity/index.ts +1 -0
- package/src/_pkgs/affine-gfx-mindmap/interactivity/mind-map-drag.ts +465 -0
- package/src/_pkgs/affine-gfx-mindmap/store.ts +19 -0
- package/src/_pkgs/affine-gfx-mindmap/toolbar/assets.ts +46 -0
- package/src/_pkgs/affine-gfx-mindmap/toolbar/basket-elements.ts +206 -0
- package/src/_pkgs/affine-gfx-mindmap/toolbar/config.ts +199 -0
- package/src/_pkgs/affine-gfx-mindmap/toolbar/icons.ts +619 -0
- package/src/_pkgs/affine-gfx-mindmap/toolbar/mindmap-importing-placeholder.ts +54 -0
- package/src/_pkgs/affine-gfx-mindmap/toolbar/mindmap-menu.ts +415 -0
- package/src/_pkgs/affine-gfx-mindmap/toolbar/mindmap-tool-button.ts +466 -0
- package/src/_pkgs/affine-gfx-mindmap/toolbar/senior-tool.ts +15 -0
- package/src/_pkgs/affine-gfx-mindmap/toolbar/utils/import-mindmap.ts +143 -0
- package/src/_pkgs/affine-gfx-mindmap/utils/index.ts +70 -0
- package/src/_pkgs/affine-gfx-mindmap/view/index.ts +4 -0
- package/src/_pkgs/affine-gfx-mindmap/view/layout.ts +201 -0
- package/src/_pkgs/affine-gfx-mindmap/view/style-svg.ts +680 -0
- package/src/_pkgs/affine-gfx-mindmap/view/utils.ts +692 -0
- package/src/_pkgs/affine-gfx-mindmap/view/view.ts +378 -0
- package/src/_pkgs/affine-gfx-mindmap/view.ts +36 -0
- package/src/_pkgs/affine-gfx-note/components/icons.ts +84 -0
- package/src/_pkgs/affine-gfx-note/components/note-display-mode-panel.ts +104 -0
- package/src/_pkgs/affine-gfx-note/components/note-shadow-panel.ts +144 -0
- package/src/_pkgs/affine-gfx-note/effects.ts +26 -0
- package/src/_pkgs/affine-gfx-note/index.ts +3 -0
- package/src/_pkgs/affine-gfx-note/note-tool.ts +330 -0
- package/src/_pkgs/affine-gfx-note/overlay/consts.ts +9 -0
- package/src/_pkgs/affine-gfx-note/overlay/index.ts +2 -0
- package/src/_pkgs/affine-gfx-note/overlay/overlay.ts +161 -0
- package/src/_pkgs/affine-gfx-note/toolbar/icon.ts +23 -0
- package/src/_pkgs/affine-gfx-note/toolbar/note-menu-config.ts +151 -0
- package/src/_pkgs/affine-gfx-note/toolbar/note-menu.ts +210 -0
- package/src/_pkgs/affine-gfx-note/toolbar/note-senior-button.ts +218 -0
- package/src/_pkgs/affine-gfx-note/toolbar/note-tool-button.ts +120 -0
- package/src/_pkgs/affine-gfx-note/toolbar/senior-tool.ts +11 -0
- package/src/_pkgs/affine-gfx-note/view.ts +23 -0
- package/src/_pkgs/affine-gfx-pointer/effects.ts +8 -0
- package/src/_pkgs/affine-gfx-pointer/index.ts +1 -0
- package/src/_pkgs/affine-gfx-pointer/quick-tool/default-tool-button.ts +105 -0
- package/src/_pkgs/affine-gfx-pointer/quick-tool/quick-tool.ts +12 -0
- package/src/_pkgs/affine-gfx-pointer/snap/snap-manager.ts +139 -0
- package/src/_pkgs/affine-gfx-pointer/snap/snap-overlay.ts +816 -0
- package/src/_pkgs/affine-gfx-pointer/tools/empty-tool.ts +8 -0
- package/src/_pkgs/affine-gfx-pointer/tools/index.ts +2 -0
- package/src/_pkgs/affine-gfx-pointer/tools/pan-tool.ts +110 -0
- package/src/_pkgs/affine-gfx-pointer/view.ts +30 -0
- package/src/_pkgs/affine-gfx-shape/adapter/index.ts +3 -0
- package/src/_pkgs/affine-gfx-shape/adapter/markdown/index.ts +46 -0
- package/src/_pkgs/affine-gfx-shape/adapter/plain-text/index.ts +35 -0
- package/src/_pkgs/affine-gfx-shape/adapter/utils.ts +36 -0
- package/src/_pkgs/affine-gfx-shape/components/shape-panel.ts +65 -0
- package/src/_pkgs/affine-gfx-shape/components/shape-style-panel.ts +59 -0
- package/src/_pkgs/affine-gfx-shape/consts.ts +19 -0
- package/src/_pkgs/affine-gfx-shape/draggable/index.ts +4 -0
- package/src/_pkgs/affine-gfx-shape/draggable/shape-draggable.ts +367 -0
- package/src/_pkgs/affine-gfx-shape/draggable/shape-menu.ts +212 -0
- package/src/_pkgs/affine-gfx-shape/draggable/shape-tool-button.ts +99 -0
- package/src/_pkgs/affine-gfx-shape/draggable/shape-tool-element.ts +326 -0
- package/src/_pkgs/affine-gfx-shape/draggable/utils.ts +150 -0
- package/src/_pkgs/affine-gfx-shape/effects.ts +37 -0
- package/src/_pkgs/affine-gfx-shape/element-renderer/highlighter.ts +41 -0
- package/src/_pkgs/affine-gfx-shape/element-renderer/index.ts +2 -0
- package/src/_pkgs/affine-gfx-shape/element-renderer/shape/diamond.ts +66 -0
- package/src/_pkgs/affine-gfx-shape/element-renderer/shape/ellipse.ts +59 -0
- package/src/_pkgs/affine-gfx-shape/element-renderer/shape/index.ts +185 -0
- package/src/_pkgs/affine-gfx-shape/element-renderer/shape/polygon.ts +134 -0
- package/src/_pkgs/affine-gfx-shape/element-renderer/shape/rect.ts +98 -0
- package/src/_pkgs/affine-gfx-shape/element-renderer/shape/triangle.ts +65 -0
- package/src/_pkgs/affine-gfx-shape/element-renderer/shape/utils.ts +362 -0
- package/src/_pkgs/affine-gfx-shape/element-renderer/shape-dom/index.ts +228 -0
- package/src/_pkgs/affine-gfx-shape/element-renderer/shape-dom/utils.ts +59 -0
- package/src/_pkgs/affine-gfx-shape/element-renderer/shape-dom.ts +11 -0
- package/src/_pkgs/affine-gfx-shape/element-view.ts +612 -0
- package/src/_pkgs/affine-gfx-shape/index.ts +10 -0
- package/src/_pkgs/affine-gfx-shape/overlay/diamond.ts +23 -0
- package/src/_pkgs/affine-gfx-shape/overlay/ellipse.ts +15 -0
- package/src/_pkgs/affine-gfx-shape/overlay/factory.ts +37 -0
- package/src/_pkgs/affine-gfx-shape/overlay/index.ts +5 -0
- package/src/_pkgs/affine-gfx-shape/overlay/polygon-drawing-overlay.ts +195 -0
- package/src/_pkgs/affine-gfx-shape/overlay/polygon-vertex-editing-overlay.ts +1213 -0
- package/src/_pkgs/affine-gfx-shape/overlay/polygon.ts +28 -0
- package/src/_pkgs/affine-gfx-shape/overlay/rect.ts +15 -0
- package/src/_pkgs/affine-gfx-shape/overlay/rounded-rect.ts +32 -0
- package/src/_pkgs/affine-gfx-shape/overlay/shape-overlay.ts +110 -0
- package/src/_pkgs/affine-gfx-shape/overlay/shape.ts +27 -0
- package/src/_pkgs/affine-gfx-shape/overlay/triangle.ts +22 -0
- package/src/_pkgs/affine-gfx-shape/overlay/utils.ts +59 -0
- package/src/_pkgs/affine-gfx-shape/polygon-tool.ts +430 -0
- package/src/_pkgs/affine-gfx-shape/shape-tool.ts +368 -0
- package/src/_pkgs/affine-gfx-shape/store.ts +19 -0
- package/src/_pkgs/affine-gfx-shape/text/edgeless-shape-text-editor.ts +411 -0
- package/src/_pkgs/affine-gfx-shape/text/index.ts +1 -0
- package/src/_pkgs/affine-gfx-shape/toolbar/config.ts +361 -0
- package/src/_pkgs/affine-gfx-shape/toolbar/icons.ts +299 -0
- package/src/_pkgs/affine-gfx-shape/toolbar/index.ts +4 -0
- package/src/_pkgs/affine-gfx-shape/toolbar/senior-tool.ts +15 -0
- package/src/_pkgs/affine-gfx-shape/toolbar/shape-menu-config.ts +81 -0
- package/src/_pkgs/affine-gfx-shape/view.ts +39 -0
- package/src/_pkgs/affine-gfx-template/builtin/other.ts +260 -0
- package/src/_pkgs/affine-gfx-template/contribute.ts +41 -0
- package/src/_pkgs/affine-gfx-template/effects.ts +20 -0
- package/src/_pkgs/affine-gfx-template/index.ts +7 -0
- package/src/_pkgs/affine-gfx-template/make-snapshot.ts +58 -0
- package/src/_pkgs/affine-gfx-template/services/template-middlewares.ts +344 -0
- package/src/_pkgs/affine-gfx-template/services/template.ts +432 -0
- package/src/_pkgs/affine-gfx-template/template-tool.ts +5 -0
- package/src/_pkgs/affine-gfx-template/toolbar/builtin-templates.ts +109 -0
- package/src/_pkgs/affine-gfx-template/toolbar/cards.ts +1411 -0
- package/src/_pkgs/affine-gfx-template/toolbar/overlay-scrollbar.ts +174 -0
- package/src/_pkgs/affine-gfx-template/toolbar/senior-tool.ts +15 -0
- package/src/_pkgs/affine-gfx-template/toolbar/template-loading.ts +50 -0
- package/src/_pkgs/affine-gfx-template/toolbar/template-panel.ts +517 -0
- package/src/_pkgs/affine-gfx-template/toolbar/template-tool-button.ts +225 -0
- package/src/_pkgs/affine-gfx-template/toolbar/template-type.ts +42 -0
- package/src/_pkgs/affine-gfx-template/toolbar/utils.ts +33 -0
- package/src/_pkgs/affine-gfx-template/view.ts +25 -0
- package/src/_pkgs/affine-gfx-text/adapter/index.ts +2 -0
- package/src/_pkgs/affine-gfx-text/adapter/markdown/index.ts +24 -0
- package/src/_pkgs/affine-gfx-text/adapter/plain-text/index.ts +14 -0
- package/src/_pkgs/affine-gfx-text/adapter/text.ts +22 -0
- package/src/_pkgs/affine-gfx-text/commands/index.ts +1 -0
- package/src/_pkgs/affine-gfx-text/commands/insert-edgeless-text.ts +114 -0
- package/src/_pkgs/affine-gfx-text/dblclick-add-edgeless-text.ts +52 -0
- package/src/_pkgs/affine-gfx-text/edgeless-text-editor.ts +487 -0
- package/src/_pkgs/affine-gfx-text/effects.ts +14 -0
- package/src/_pkgs/affine-gfx-text/element-renderer/index.ts +94 -0
- package/src/_pkgs/affine-gfx-text/element-renderer/utils.ts +559 -0
- package/src/_pkgs/affine-gfx-text/element-view.ts +95 -0
- package/src/_pkgs/affine-gfx-text/index.ts +7 -0
- package/src/_pkgs/affine-gfx-text/store.ts +19 -0
- package/src/_pkgs/affine-gfx-text/tool.ts +66 -0
- package/src/_pkgs/affine-gfx-text/toolbar/actions.ts +396 -0
- package/src/_pkgs/affine-gfx-text/toolbar/config.ts +56 -0
- package/src/_pkgs/affine-gfx-text/toolbar/index.ts +2 -0
- package/src/_pkgs/affine-gfx-text/toolbar/text-menu.ts +49 -0
- package/src/_pkgs/affine-gfx-text/view.ts +32 -0
- package/src/_pkgs/affine-gfx-turbo-renderer/index.ts +5 -0
- package/src/_pkgs/affine-gfx-turbo-renderer/layout/block-layout-provider.ts +29 -0
- package/src/_pkgs/affine-gfx-turbo-renderer/painter/painter.worker.ts +129 -0
- package/src/_pkgs/affine-gfx-turbo-renderer/renderer-utils.ts +222 -0
- package/src/_pkgs/affine-gfx-turbo-renderer/text-utils.ts +145 -0
- package/src/_pkgs/affine-gfx-turbo-renderer/turbo-renderer.ts +431 -0
- package/src/_pkgs/affine-gfx-turbo-renderer/types.ts +105 -0
- package/src/_pkgs/affine-inline-comment/effects.ts +11 -0
- package/src/_pkgs/affine-inline-comment/index.ts +2 -0
- package/src/_pkgs/affine-inline-comment/inline-comment-manager.ts +218 -0
- package/src/_pkgs/affine-inline-comment/inline-comment.ts +97 -0
- package/src/_pkgs/affine-inline-comment/inline-spec.ts +38 -0
- package/src/_pkgs/affine-inline-comment/utils.ts +64 -0
- package/src/_pkgs/affine-inline-comment/view.ts +22 -0
- package/src/_pkgs/affine-inline-footnote/adapters/index.ts +3 -0
- package/src/_pkgs/affine-inline-footnote/adapters/markdown/inline-delta.ts +50 -0
- package/src/_pkgs/affine-inline-footnote/adapters/markdown/markdown-inline.ts +57 -0
- package/src/_pkgs/affine-inline-footnote/adapters/markdown/preprocessor.ts +54 -0
- package/src/_pkgs/affine-inline-footnote/effects.ts +17 -0
- package/src/_pkgs/affine-inline-footnote/footnote-node/footnote-config.ts +120 -0
- package/src/_pkgs/affine-inline-footnote/footnote-node/footnote-node.ts +279 -0
- package/src/_pkgs/affine-inline-footnote/footnote-node/footnote-popup-chip.ts +74 -0
- package/src/_pkgs/affine-inline-footnote/footnote-node/footnote-popup.ts +223 -0
- package/src/_pkgs/affine-inline-footnote/index.ts +4 -0
- package/src/_pkgs/affine-inline-footnote/inline-spec.ts +32 -0
- package/src/_pkgs/affine-inline-footnote/store.ts +21 -0
- package/src/_pkgs/affine-inline-footnote/view.ts +21 -0
- package/src/_pkgs/affine-inline-latex/adapters/index.ts +3 -0
- package/src/_pkgs/affine-inline-latex/adapters/markdown/inline-delta.ts +21 -0
- package/src/_pkgs/affine-inline-latex/adapters/markdown/markdown-inline.ts +12 -0
- package/src/_pkgs/affine-inline-latex/adapters/plain-text/inline-delta.ts +21 -0
- package/src/_pkgs/affine-inline-latex/command.ts +74 -0
- package/src/_pkgs/affine-inline-latex/effects.ts +17 -0
- package/src/_pkgs/affine-inline-latex/index.ts +9 -0
- package/src/_pkgs/affine-inline-latex/inline-spec.ts +40 -0
- package/src/_pkgs/affine-inline-latex/latex-node/latex-editor-menu.ts +210 -0
- package/src/_pkgs/affine-inline-latex/latex-node/latex-editor-unit.ts +55 -0
- package/src/_pkgs/affine-inline-latex/latex-node/latex-node.ts +265 -0
- package/src/_pkgs/affine-inline-latex/markdown.ts +180 -0
- package/src/_pkgs/affine-inline-latex/store.ts +21 -0
- package/src/_pkgs/affine-inline-latex/view.ts +29 -0
- package/src/_pkgs/affine-inline-link/adapters/html/html-inline.ts +70 -0
- package/src/_pkgs/affine-inline-link/adapters/html/inline-delta.ts +25 -0
- package/src/_pkgs/affine-inline-link/adapters/index.ts +6 -0
- package/src/_pkgs/affine-inline-link/adapters/markdown/index.ts +2 -0
- package/src/_pkgs/affine-inline-link/adapters/markdown/inline-delta.ts +36 -0
- package/src/_pkgs/affine-inline-link/adapters/markdown/markdown-inline.ts +52 -0
- package/src/_pkgs/affine-inline-link/adapters/notion-html/html-inline.ts +52 -0
- package/src/_pkgs/affine-inline-link/adapters/plain-text/inline-delta.ts +25 -0
- package/src/_pkgs/affine-inline-link/command.ts +42 -0
- package/src/_pkgs/affine-inline-link/effects.ts +7 -0
- package/src/_pkgs/affine-inline-link/index.ts +6 -0
- package/src/_pkgs/affine-inline-link/inline-spec.ts +22 -0
- package/src/_pkgs/affine-inline-link/link-node/affine-link.ts +188 -0
- package/src/_pkgs/affine-inline-link/link-node/configs/toolbar.ts +365 -0
- package/src/_pkgs/affine-inline-link/link-node/index.ts +2 -0
- package/src/_pkgs/affine-inline-link/link-node/link-popup/link-popup.ts +335 -0
- package/src/_pkgs/affine-inline-link/link-node/link-popup/styles.ts +162 -0
- package/src/_pkgs/affine-inline-link/link-node/link-popup/toggle-link-popup.ts +27 -0
- package/src/_pkgs/affine-inline-link/markdown.ts +53 -0
- package/src/_pkgs/affine-inline-link/store.ts +27 -0
- package/src/_pkgs/affine-inline-link/toolbar.ts +9 -0
- package/src/_pkgs/affine-inline-link/view.ts +23 -0
- package/src/_pkgs/affine-inline-mention/affine-mention.ts +150 -0
- package/src/_pkgs/affine-inline-mention/effects.ts +11 -0
- package/src/_pkgs/affine-inline-mention/index.ts +3 -0
- package/src/_pkgs/affine-inline-mention/inline-spec.ts +34 -0
- package/src/_pkgs/affine-inline-mention/view.ts +21 -0
- package/src/_pkgs/affine-inline-preset/adapters/extensions.ts +21 -0
- package/src/_pkgs/affine-inline-preset/adapters/html/html-inline.ts +311 -0
- package/src/_pkgs/affine-inline-preset/adapters/html/inline-delta.ts +154 -0
- package/src/_pkgs/affine-inline-preset/adapters/markdown/inline-delta.ts +57 -0
- package/src/_pkgs/affine-inline-preset/adapters/markdown/markdown-inline.ts +98 -0
- package/src/_pkgs/affine-inline-preset/adapters/notion-html/html-inline.ts +256 -0
- package/src/_pkgs/affine-inline-preset/command/config.ts +138 -0
- package/src/_pkgs/affine-inline-preset/command/consts.ts +19 -0
- package/src/_pkgs/affine-inline-preset/command/delete-text.ts +81 -0
- package/src/_pkgs/affine-inline-preset/command/format-block.ts +75 -0
- package/src/_pkgs/affine-inline-preset/command/format-native.ts +53 -0
- package/src/_pkgs/affine-inline-preset/command/format-text.ts +94 -0
- package/src/_pkgs/affine-inline-preset/command/index.ts +22 -0
- package/src/_pkgs/affine-inline-preset/command/text-style.ts +110 -0
- package/src/_pkgs/affine-inline-preset/command/utils.ts +226 -0
- package/src/_pkgs/affine-inline-preset/default-inline-manager.ts +38 -0
- package/src/_pkgs/affine-inline-preset/effects.ts +11 -0
- package/src/_pkgs/affine-inline-preset/index.ts +10 -0
- package/src/_pkgs/affine-inline-preset/inline-spec.ts +118 -0
- package/src/_pkgs/affine-inline-preset/keymap/basic.ts +78 -0
- package/src/_pkgs/affine-inline-preset/keymap/bracket.ts +162 -0
- package/src/_pkgs/affine-inline-preset/keymap/format.ts +36 -0
- package/src/_pkgs/affine-inline-preset/keymap/index.ts +15 -0
- package/src/_pkgs/affine-inline-preset/markdown.ts +284 -0
- package/src/_pkgs/affine-inline-preset/nodes/affine-text.ts +35 -0
- package/src/_pkgs/affine-inline-preset/store.ts +15 -0
- package/src/_pkgs/affine-inline-preset/view.ts +25 -0
- package/src/_pkgs/affine-inline-reference/adapters/html/inline-delta.ts +42 -0
- package/src/_pkgs/affine-inline-reference/adapters/index.ts +3 -0
- package/src/_pkgs/affine-inline-reference/adapters/markdown/inline-delta.ts +42 -0
- package/src/_pkgs/affine-inline-reference/adapters/plain-text/inline-delta.ts +33 -0
- package/src/_pkgs/affine-inline-reference/effects.ts +13 -0
- package/src/_pkgs/affine-inline-reference/index.ts +5 -0
- package/src/_pkgs/affine-inline-reference/inline-spec.ts +57 -0
- package/src/_pkgs/affine-inline-reference/reference-node/configs/toolbar.ts +247 -0
- package/src/_pkgs/affine-inline-reference/reference-node/index.ts +6 -0
- package/src/_pkgs/affine-inline-reference/reference-node/reference-config.ts +53 -0
- package/src/_pkgs/affine-inline-reference/reference-node/reference-node-slots.ts +30 -0
- package/src/_pkgs/affine-inline-reference/reference-node/reference-node.ts +318 -0
- package/src/_pkgs/affine-inline-reference/reference-node/reference-popup/reference-popup.ts +282 -0
- package/src/_pkgs/affine-inline-reference/reference-node/reference-popup/toggle-reference-popup.ts +27 -0
- package/src/_pkgs/affine-inline-reference/reference-node/types.ts +15 -0
- package/src/_pkgs/affine-inline-reference/store.ts +21 -0
- package/src/_pkgs/affine-inline-reference/toolbar.ts +9 -0
- package/src/_pkgs/affine-inline-reference/utils.ts +21 -0
- package/src/_pkgs/affine-inline-reference/view.ts +25 -0
- package/src/_pkgs/affine-model/blocks/attachment/attachment-model.ts +112 -0
- package/src/_pkgs/affine-model/blocks/attachment/attachment-transformer.ts +34 -0
- package/src/_pkgs/affine-model/blocks/attachment/index.ts +2 -0
- package/src/_pkgs/affine-model/blocks/bookmark/bookmark-model.ts +81 -0
- package/src/_pkgs/affine-model/blocks/bookmark/index.ts +1 -0
- package/src/_pkgs/affine-model/blocks/callout/callout-model.ts +44 -0
- package/src/_pkgs/affine-model/blocks/callout/index.ts +1 -0
- package/src/_pkgs/affine-model/blocks/code/code-model.ts +52 -0
- package/src/_pkgs/affine-model/blocks/code/index.ts +1 -0
- package/src/_pkgs/affine-model/blocks/database/database-model.ts +43 -0
- package/src/_pkgs/affine-model/blocks/database/index.ts +2 -0
- package/src/_pkgs/affine-model/blocks/database/types.ts +23 -0
- package/src/_pkgs/affine-model/blocks/divider/divider-model.ts +24 -0
- package/src/_pkgs/affine-model/blocks/divider/index.ts +1 -0
- package/src/_pkgs/affine-model/blocks/edgeless-text/edgeless-text-model.ts +94 -0
- package/src/_pkgs/affine-model/blocks/edgeless-text/index.ts +1 -0
- package/src/_pkgs/affine-model/blocks/embed/figma/figma-model.ts +21 -0
- package/src/_pkgs/affine-model/blocks/embed/figma/figma-schema.ts +28 -0
- package/src/_pkgs/affine-model/blocks/embed/figma/index.ts +2 -0
- package/src/_pkgs/affine-model/blocks/embed/github/github-model.ts +35 -0
- package/src/_pkgs/affine-model/blocks/embed/github/github-schema.ts +37 -0
- package/src/_pkgs/affine-model/blocks/embed/github/index.ts +2 -0
- package/src/_pkgs/affine-model/blocks/embed/html/html-model.ts +17 -0
- package/src/_pkgs/affine-model/blocks/embed/html/html-schema.ts +25 -0
- package/src/_pkgs/affine-model/blocks/embed/html/index.ts +2 -0
- package/src/_pkgs/affine-model/blocks/embed/iframe/iframe-model.ts +38 -0
- package/src/_pkgs/affine-model/blocks/embed/iframe/iframe-schema.ts +17 -0
- package/src/_pkgs/affine-model/blocks/embed/iframe/index.ts +2 -0
- package/src/_pkgs/affine-model/blocks/embed/index.ts +9 -0
- package/src/_pkgs/affine-model/blocks/embed/linked-doc/index.ts +2 -0
- package/src/_pkgs/affine-model/blocks/embed/linked-doc/linked-doc-model.ts +24 -0
- package/src/_pkgs/affine-model/blocks/embed/linked-doc/linked-doc-schema.ts +30 -0
- package/src/_pkgs/affine-model/blocks/embed/loom/index.ts +2 -0
- package/src/_pkgs/affine-model/blocks/embed/loom/loom-model.ts +23 -0
- package/src/_pkgs/affine-model/blocks/embed/loom/loom-schema.ts +29 -0
- package/src/_pkgs/affine-model/blocks/embed/synced-doc/index.ts +2 -0
- package/src/_pkgs/affine-model/blocks/embed/synced-doc/synced-doc-model.ts +30 -0
- package/src/_pkgs/affine-model/blocks/embed/synced-doc/synced-doc-schema.ts +39 -0
- package/src/_pkgs/affine-model/blocks/embed/types.ts +58 -0
- package/src/_pkgs/affine-model/blocks/embed/youtube/index.ts +2 -0
- package/src/_pkgs/affine-model/blocks/embed/youtube/youtube-model.ts +26 -0
- package/src/_pkgs/affine-model/blocks/embed/youtube/youtube-schema.ts +33 -0
- package/src/_pkgs/affine-model/blocks/frame/frame-model.ts +163 -0
- package/src/_pkgs/affine-model/blocks/frame/index.ts +1 -0
- package/src/_pkgs/affine-model/blocks/image/image-model.ts +59 -0
- package/src/_pkgs/affine-model/blocks/image/image-transformer.ts +34 -0
- package/src/_pkgs/affine-model/blocks/image/index.ts +2 -0
- package/src/_pkgs/affine-model/blocks/index.ts +17 -0
- package/src/_pkgs/affine-model/blocks/latex/index.ts +1 -0
- package/src/_pkgs/affine-model/blocks/latex/latex-model.ts +47 -0
- package/src/_pkgs/affine-model/blocks/list/index.ts +1 -0
- package/src/_pkgs/affine-model/blocks/list/list-model.ts +56 -0
- package/src/_pkgs/affine-model/blocks/note/index.ts +1 -0
- package/src/_pkgs/affine-model/blocks/note/note-model.ts +167 -0
- package/src/_pkgs/affine-model/blocks/paragraph/index.ts +1 -0
- package/src/_pkgs/affine-model/blocks/paragraph/paragraph-model.ts +62 -0
- package/src/_pkgs/affine-model/blocks/root/index.ts +1 -0
- package/src/_pkgs/affine-model/blocks/root/root-block-model.ts +65 -0
- package/src/_pkgs/affine-model/blocks/surface-ref/index.ts +1 -0
- package/src/_pkgs/affine-model/blocks/surface-ref/surface-ref-model.ts +34 -0
- package/src/_pkgs/affine-model/blocks/table/index.ts +1 -0
- package/src/_pkgs/affine-model/blocks/table/table-model.ts +71 -0
- package/src/_pkgs/affine-model/consts/connector.ts +36 -0
- package/src/_pkgs/affine-model/consts/doc.ts +94 -0
- package/src/_pkgs/affine-model/consts/edgeless-text.ts +2 -0
- package/src/_pkgs/affine-model/consts/image.ts +1 -0
- package/src/_pkgs/affine-model/consts/index.ts +9 -0
- package/src/_pkgs/affine-model/consts/line.ts +69 -0
- package/src/_pkgs/affine-model/consts/mindmap.ts +12 -0
- package/src/_pkgs/affine-model/consts/note.ts +80 -0
- package/src/_pkgs/affine-model/consts/shape.ts +47 -0
- package/src/_pkgs/affine-model/consts/text.ts +68 -0
- package/src/_pkgs/affine-model/elements/bpmn/index.ts +2 -0
- package/src/_pkgs/affine-model/elements/bpmn/node.ts +42 -0
- package/src/_pkgs/affine-model/elements/bpmn/pool.ts +66 -0
- package/src/_pkgs/affine-model/elements/brush/brush.ts +219 -0
- package/src/_pkgs/affine-model/elements/brush/index.ts +1 -0
- package/src/_pkgs/affine-model/elements/connector/connector.ts +539 -0
- package/src/_pkgs/affine-model/elements/connector/index.ts +2 -0
- package/src/_pkgs/affine-model/elements/connector/local-connector.ts +58 -0
- package/src/_pkgs/affine-model/elements/cynefin/cynefin.ts +78 -0
- package/src/_pkgs/affine-model/elements/cynefin/index.ts +1 -0
- package/src/_pkgs/affine-model/elements/edgy/facets.ts +87 -0
- package/src/_pkgs/affine-model/elements/edgy/index.ts +2 -0
- package/src/_pkgs/affine-model/elements/edgy/node.ts +37 -0
- package/src/_pkgs/affine-model/elements/estuarine/estuarine.ts +79 -0
- package/src/_pkgs/affine-model/elements/estuarine/index.ts +1 -0
- package/src/_pkgs/affine-model/elements/group/group.ts +121 -0
- package/src/_pkgs/affine-model/elements/group/index.ts +1 -0
- package/src/_pkgs/affine-model/elements/highlighter/highlighter.ts +220 -0
- package/src/_pkgs/affine-model/elements/highlighter/index.ts +1 -0
- package/src/_pkgs/affine-model/elements/index.ts +62 -0
- package/src/_pkgs/affine-model/elements/mindmap/index.ts +3 -0
- package/src/_pkgs/affine-model/elements/mindmap/mindmap.ts +974 -0
- package/src/_pkgs/affine-model/elements/mindmap/snapshot/index.ts +2 -0
- package/src/_pkgs/affine-model/elements/mindmap/snapshot/types.ts +25 -0
- package/src/_pkgs/affine-model/elements/mindmap/snapshot/utils.ts +70 -0
- package/src/_pkgs/affine-model/elements/mindmap/style.ts +508 -0
- package/src/_pkgs/affine-model/elements/mindmap/utils.ts +46 -0
- package/src/_pkgs/affine-model/elements/shape/api/diamond.ts +120 -0
- package/src/_pkgs/affine-model/elements/shape/api/ellipse.ts +202 -0
- package/src/_pkgs/affine-model/elements/shape/api/index.ts +16 -0
- package/src/_pkgs/affine-model/elements/shape/api/polygon.ts +424 -0
- package/src/_pkgs/affine-model/elements/shape/api/rect.ts +119 -0
- package/src/_pkgs/affine-model/elements/shape/api/triangle.ts +116 -0
- package/src/_pkgs/affine-model/elements/shape/index.ts +2 -0
- package/src/_pkgs/affine-model/elements/shape/shape.ts +367 -0
- package/src/_pkgs/affine-model/elements/text/index.ts +1 -0
- package/src/_pkgs/affine-model/elements/text/text.ts +92 -0
- package/src/_pkgs/affine-model/elements/wardley/index.ts +2 -0
- package/src/_pkgs/affine-model/elements/wardley/node.ts +52 -0
- package/src/_pkgs/affine-model/elements/wardley/wardley.ts +160 -0
- package/src/_pkgs/affine-model/index.ts +5 -0
- package/src/_pkgs/affine-model/themes/color.ts +54 -0
- package/src/_pkgs/affine-model/themes/default.ts +136 -0
- package/src/_pkgs/affine-model/themes/index.ts +10 -0
- package/src/_pkgs/affine-model/themes/types.ts +41 -0
- package/src/_pkgs/affine-model/themes/utils.ts +29 -0
- package/src/_pkgs/affine-model/utils/enum.ts +11 -0
- package/src/_pkgs/affine-model/utils/helper.ts +74 -0
- package/src/_pkgs/affine-model/utils/index.ts +3 -0
- package/src/_pkgs/affine-model/utils/types.ts +43 -0
- package/src/_pkgs/affine-rich-text/conversion.ts +136 -0
- package/src/_pkgs/affine-rich-text/dom.ts +172 -0
- package/src/_pkgs/affine-rich-text/effects.ts +11 -0
- package/src/_pkgs/affine-rich-text/hooks.ts +116 -0
- package/src/_pkgs/affine-rich-text/index.ts +14 -0
- package/src/_pkgs/affine-rich-text/rich-text.ts +480 -0
- package/src/_pkgs/affine-rich-text/utils.ts +68 -0
- package/src/_pkgs/affine-shared/adapters/attachment.ts +147 -0
- package/src/_pkgs/affine-shared/adapters/clipboard/clipboard.ts +107 -0
- package/src/_pkgs/affine-shared/adapters/clipboard/index.ts +2 -0
- package/src/_pkgs/affine-shared/adapters/clipboard/utils.ts +117 -0
- package/src/_pkgs/affine-shared/adapters/html/block-adapter.ts +31 -0
- package/src/_pkgs/affine-shared/adapters/html/delta-converter.ts +135 -0
- package/src/_pkgs/affine-shared/adapters/html/html.ts +400 -0
- package/src/_pkgs/affine-shared/adapters/html/index.ts +3 -0
- package/src/_pkgs/affine-shared/adapters/html/rehype-plugins/index.ts +2 -0
- package/src/_pkgs/affine-shared/adapters/html/rehype-plugins/inline-to-block.ts +37 -0
- package/src/_pkgs/affine-shared/adapters/html/rehype-plugins/wrap-inline-element.ts +79 -0
- package/src/_pkgs/affine-shared/adapters/image.ts +137 -0
- package/src/_pkgs/affine-shared/adapters/index.ts +88 -0
- package/src/_pkgs/affine-shared/adapters/markdown/block-adapter.ts +31 -0
- package/src/_pkgs/affine-shared/adapters/markdown/delta-converter.ts +124 -0
- package/src/_pkgs/affine-shared/adapters/markdown/gfm.ts +76 -0
- package/src/_pkgs/affine-shared/adapters/markdown/index.ts +5 -0
- package/src/_pkgs/affine-shared/adapters/markdown/markdown.ts +414 -0
- package/src/_pkgs/affine-shared/adapters/markdown/preprocessor.ts +40 -0
- package/src/_pkgs/affine-shared/adapters/markdown/remark-plugins/index.ts +1 -0
- package/src/_pkgs/affine-shared/adapters/markdown/remark-plugins/remark-callout.ts +70 -0
- package/src/_pkgs/affine-shared/adapters/markdown/type.ts +45 -0
- package/src/_pkgs/affine-shared/adapters/middlewares/callout-export-options.ts +45 -0
- package/src/_pkgs/affine-shared/adapters/middlewares/code.ts +11 -0
- package/src/_pkgs/affine-shared/adapters/middlewares/copy.ts +66 -0
- package/src/_pkgs/affine-shared/adapters/middlewares/doc-link.ts +44 -0
- package/src/_pkgs/affine-shared/adapters/middlewares/file-name.ts +27 -0
- package/src/_pkgs/affine-shared/adapters/middlewares/file-path.ts +14 -0
- package/src/_pkgs/affine-shared/adapters/middlewares/index.ts +12 -0
- package/src/_pkgs/affine-shared/adapters/middlewares/paste.ts +596 -0
- package/src/_pkgs/affine-shared/adapters/middlewares/proxy.ts +53 -0
- package/src/_pkgs/affine-shared/adapters/middlewares/replace-id.ts +256 -0
- package/src/_pkgs/affine-shared/adapters/middlewares/surface-ref-to-embed.ts +46 -0
- package/src/_pkgs/affine-shared/adapters/middlewares/title.ts +15 -0
- package/src/_pkgs/affine-shared/adapters/middlewares/upload.ts +118 -0
- package/src/_pkgs/affine-shared/adapters/mix-text.ts +360 -0
- package/src/_pkgs/affine-shared/adapters/notion-html/block-adapter.ts +33 -0
- package/src/_pkgs/affine-shared/adapters/notion-html/delta-converter.ts +105 -0
- package/src/_pkgs/affine-shared/adapters/notion-html/index.ts +3 -0
- package/src/_pkgs/affine-shared/adapters/notion-html/notion-html.ts +300 -0
- package/src/_pkgs/affine-shared/adapters/notion-text.ts +191 -0
- package/src/_pkgs/affine-shared/adapters/plain-text/block-adapter.ts +28 -0
- package/src/_pkgs/affine-shared/adapters/plain-text/delta-converter.ts +81 -0
- package/src/_pkgs/affine-shared/adapters/plain-text/index.ts +3 -0
- package/src/_pkgs/affine-shared/adapters/plain-text/plain-text.ts +324 -0
- package/src/_pkgs/affine-shared/adapters/types/adapter.ts +124 -0
- package/src/_pkgs/affine-shared/adapters/types/delta-converter.ts +61 -0
- package/src/_pkgs/affine-shared/adapters/types/hast.ts +12 -0
- package/src/_pkgs/affine-shared/adapters/types/index.ts +4 -0
- package/src/_pkgs/affine-shared/adapters/types/preprocessor.ts +88 -0
- package/src/_pkgs/affine-shared/adapters/utils/fetch.ts +37 -0
- package/src/_pkgs/affine-shared/adapters/utils/file-path.ts +56 -0
- package/src/_pkgs/affine-shared/adapters/utils/hast.ts +295 -0
- package/src/_pkgs/affine-shared/adapters/utils/index.ts +4 -0
- package/src/_pkgs/affine-shared/adapters/utils/text.ts +96 -0
- package/src/_pkgs/affine-shared/commands/block-crud/get-block-index.ts +33 -0
- package/src/_pkgs/affine-shared/commands/block-crud/get-first-content-block.ts +65 -0
- package/src/_pkgs/affine-shared/commands/block-crud/get-last-content-block.ts +67 -0
- package/src/_pkgs/affine-shared/commands/block-crud/get-next-block.ts +36 -0
- package/src/_pkgs/affine-shared/commands/block-crud/get-prev-block.ts +37 -0
- package/src/_pkgs/affine-shared/commands/block-crud/get-selected-blocks.ts +164 -0
- package/src/_pkgs/affine-shared/commands/block-crud/index.ts +6 -0
- package/src/_pkgs/affine-shared/commands/index.d.ts +5 -0
- package/src/_pkgs/affine-shared/commands/index.ts +29 -0
- package/src/_pkgs/affine-shared/commands/model-crud/clear-and-select-first-model.ts +33 -0
- package/src/_pkgs/affine-shared/commands/model-crud/copy-selected-models.ts +25 -0
- package/src/_pkgs/affine-shared/commands/model-crud/delete-selected-models.ts +21 -0
- package/src/_pkgs/affine-shared/commands/model-crud/draft-selected-models.ts +50 -0
- package/src/_pkgs/affine-shared/commands/model-crud/duplicate-selected-model.ts +55 -0
- package/src/_pkgs/affine-shared/commands/model-crud/get-selected-models.ts +67 -0
- package/src/_pkgs/affine-shared/commands/model-crud/index.ts +8 -0
- package/src/_pkgs/affine-shared/commands/model-crud/replace-selected-text-with-blocks.ts +399 -0
- package/src/_pkgs/affine-shared/commands/model-crud/retain-first-model.ts +19 -0
- package/src/_pkgs/affine-shared/commands/selection/focus-block-end.ts +37 -0
- package/src/_pkgs/affine-shared/commands/selection/focus-block-start.ts +23 -0
- package/src/_pkgs/affine-shared/commands/selection/get-block-selections.ts +10 -0
- package/src/_pkgs/affine-shared/commands/selection/get-image-selections.ts +9 -0
- package/src/_pkgs/affine-shared/commands/selection/get-selection-rects.ts +184 -0
- package/src/_pkgs/affine-shared/commands/selection/get-surface-selection.ts +10 -0
- package/src/_pkgs/affine-shared/commands/selection/get-text-selection.ts +10 -0
- package/src/_pkgs/affine-shared/commands/selection/index.ts +12 -0
- package/src/_pkgs/affine-shared/commands/selection/is-nothing-selected.ts +24 -0
- package/src/_pkgs/affine-shared/commands/selection/types.ts +18 -0
- package/src/_pkgs/affine-shared/consts/bracket-pairs.ts +68 -0
- package/src/_pkgs/affine-shared/consts/index.ts +90 -0
- package/src/_pkgs/affine-shared/consts/note.ts +2 -0
- package/src/_pkgs/affine-shared/consts/text.ts +2 -0
- package/src/_pkgs/affine-shared/index.ts +1 -0
- package/src/_pkgs/affine-shared/selection/hightlight.ts +66 -0
- package/src/_pkgs/affine-shared/selection/image.ts +33 -0
- package/src/_pkgs/affine-shared/selection/index.ts +5 -0
- package/src/_pkgs/affine-shared/services/auto-clear-selection-service.ts +12 -0
- package/src/_pkgs/affine-shared/services/block-meta-service.ts +104 -0
- package/src/_pkgs/affine-shared/services/citation-service/citation-service.ts +84 -0
- package/src/_pkgs/affine-shared/services/citation-service/index.ts +1 -0
- package/src/_pkgs/affine-shared/services/comment-service/block-comment-manager.ts +118 -0
- package/src/_pkgs/affine-shared/services/comment-service/comment-provider.ts +44 -0
- package/src/_pkgs/affine-shared/services/comment-service/index.ts +3 -0
- package/src/_pkgs/affine-shared/services/comment-service/utils.ts +50 -0
- package/src/_pkgs/affine-shared/services/doc-display-meta-service.ts +197 -0
- package/src/_pkgs/affine-shared/services/doc-mode-service.ts +109 -0
- package/src/_pkgs/affine-shared/services/drag-handle-config.ts +65 -0
- package/src/_pkgs/affine-shared/services/edit-props-store.ts +217 -0
- package/src/_pkgs/affine-shared/services/editor-setting-service.ts +41 -0
- package/src/_pkgs/affine-shared/services/embed-iframe/embed-iframe-config.ts +93 -0
- package/src/_pkgs/affine-shared/services/embed-iframe/embed-iframe-service.ts +152 -0
- package/src/_pkgs/affine-shared/services/embed-iframe/index.ts +2 -0
- package/src/_pkgs/affine-shared/services/embed-option-service.ts +65 -0
- package/src/_pkgs/affine-shared/services/feature-flag-service.ts +65 -0
- package/src/_pkgs/affine-shared/services/file-size-limit-service.ts +23 -0
- package/src/_pkgs/affine-shared/services/font-loader/config.ts +379 -0
- package/src/_pkgs/affine-shared/services/font-loader/font-loader-service.ts +62 -0
- package/src/_pkgs/affine-shared/services/font-loader/index.ts +2 -0
- package/src/_pkgs/affine-shared/services/generate-url-service.ts +21 -0
- package/src/_pkgs/affine-shared/services/index.ts +29 -0
- package/src/_pkgs/affine-shared/services/link-preview-service/index.ts +3 -0
- package/src/_pkgs/affine-shared/services/link-preview-service/link-preview-cache.ts +240 -0
- package/src/_pkgs/affine-shared/services/link-preview-service/link-preview-service.ts +210 -0
- package/src/_pkgs/affine-shared/services/link-preview-service/link-preview-storage.ts +81 -0
- package/src/_pkgs/affine-shared/services/native-clipboard-service.ts +23 -0
- package/src/_pkgs/affine-shared/services/notification-service.ts +123 -0
- package/src/_pkgs/affine-shared/services/open-doc-config.ts +59 -0
- package/src/_pkgs/affine-shared/services/page-viewport-service.ts +15 -0
- package/src/_pkgs/affine-shared/services/parse-url-service.ts +22 -0
- package/src/_pkgs/affine-shared/services/quick-search-service.ts +31 -0
- package/src/_pkgs/affine-shared/services/sidebar-service.ts +18 -0
- package/src/_pkgs/affine-shared/services/telemetry-service/block-lifecycle-watcher.ts +148 -0
- package/src/_pkgs/affine-shared/services/telemetry-service/citation.ts +8 -0
- package/src/_pkgs/affine-shared/services/telemetry-service/code-block.ts +8 -0
- package/src/_pkgs/affine-shared/services/telemetry-service/database.ts +85 -0
- package/src/_pkgs/affine-shared/services/telemetry-service/index.ts +8 -0
- package/src/_pkgs/affine-shared/services/telemetry-service/lifecycle.ts +50 -0
- package/src/_pkgs/affine-shared/services/telemetry-service/link.ts +19 -0
- package/src/_pkgs/affine-shared/services/telemetry-service/noop.ts +20 -0
- package/src/_pkgs/affine-shared/services/telemetry-service/note.ts +11 -0
- package/src/_pkgs/affine-shared/services/telemetry-service/slash-menu.ts +5 -0
- package/src/_pkgs/affine-shared/services/telemetry-service/telemetry-service.ts +78 -0
- package/src/_pkgs/affine-shared/services/telemetry-service/types.ts +127 -0
- package/src/_pkgs/affine-shared/services/theme-service.ts +195 -0
- package/src/_pkgs/affine-shared/services/toolbar-service/action.ts +58 -0
- package/src/_pkgs/affine-shared/services/toolbar-service/config.ts +16 -0
- package/src/_pkgs/affine-shared/services/toolbar-service/context.ts +297 -0
- package/src/_pkgs/affine-shared/services/toolbar-service/flags.ts +88 -0
- package/src/_pkgs/affine-shared/services/toolbar-service/index.ts +6 -0
- package/src/_pkgs/affine-shared/services/toolbar-service/module.ts +9 -0
- package/src/_pkgs/affine-shared/services/toolbar-service/registry.ts +64 -0
- package/src/_pkgs/affine-shared/services/user-service/index.ts +4 -0
- package/src/_pkgs/affine-shared/services/user-service/types.ts +25 -0
- package/src/_pkgs/affine-shared/services/user-service/user-list-service.ts +28 -0
- package/src/_pkgs/affine-shared/services/user-service/user-service.ts +24 -0
- package/src/_pkgs/affine-shared/services/user-service/writer-info-service.ts +22 -0
- package/src/_pkgs/affine-shared/services/viewport-element-service.ts +62 -0
- package/src/_pkgs/affine-shared/services/virtual-keyboard-service.ts +23 -0
- package/src/_pkgs/affine-shared/styles/font.ts +30 -0
- package/src/_pkgs/affine-shared/styles/index.ts +4 -0
- package/src/_pkgs/affine-shared/styles/panel.ts +26 -0
- package/src/_pkgs/affine-shared/styles/scrollbar-style.ts +37 -0
- package/src/_pkgs/affine-shared/styles/text.ts +40 -0
- package/src/_pkgs/affine-shared/test-utils/affine-template.ts +316 -0
- package/src/_pkgs/affine-shared/test-utils/affine-test-utils.ts +113 -0
- package/src/_pkgs/affine-shared/test-utils/create-test-host.ts +248 -0
- package/src/_pkgs/affine-shared/test-utils/index.ts +3 -0
- package/src/_pkgs/affine-shared/theme/css-variables.ts +132 -0
- package/src/_pkgs/affine-shared/theme/index.ts +1 -0
- package/src/_pkgs/affine-shared/types/index.ts +74 -0
- package/src/_pkgs/affine-shared/types/uni-component.ts +15 -0
- package/src/_pkgs/affine-shared/utils/auto-scroll.ts +30 -0
- package/src/_pkgs/affine-shared/utils/button-popper.ts +161 -0
- package/src/_pkgs/affine-shared/utils/collapsed/index.ts +1 -0
- package/src/_pkgs/affine-shared/utils/collapsed/paragraph.ts +57 -0
- package/src/_pkgs/affine-shared/utils/computing.ts +23 -0
- package/src/_pkgs/affine-shared/utils/dnd/calc-drop-target.ts +208 -0
- package/src/_pkgs/affine-shared/utils/dnd/get-drop-rect-by-point.ts +160 -0
- package/src/_pkgs/affine-shared/utils/dnd/index.ts +3 -0
- package/src/_pkgs/affine-shared/utils/dnd/types.ts +29 -0
- package/src/_pkgs/affine-shared/utils/dom/checker.ts +18 -0
- package/src/_pkgs/affine-shared/utils/dom/has-classname-in-list.ts +6 -0
- package/src/_pkgs/affine-shared/utils/dom/index.ts +7 -0
- package/src/_pkgs/affine-shared/utils/dom/point-to-block.ts +334 -0
- package/src/_pkgs/affine-shared/utils/dom/point-to-range.ts +98 -0
- package/src/_pkgs/affine-shared/utils/dom/query.ts +39 -0
- package/src/_pkgs/affine-shared/utils/dom/scroll-container.ts +12 -0
- package/src/_pkgs/affine-shared/utils/dom/viewport.ts +19 -0
- package/src/_pkgs/affine-shared/utils/drag-helper/cell-select.ts +83 -0
- package/src/_pkgs/affine-shared/utils/drag-helper/index.ts +3 -0
- package/src/_pkgs/affine-shared/utils/drag-helper/linear-move.ts +38 -0
- package/src/_pkgs/affine-shared/utils/drag-helper/types.ts +1 -0
- package/src/_pkgs/affine-shared/utils/edgeless.ts +79 -0
- package/src/_pkgs/affine-shared/utils/event.ts +362 -0
- package/src/_pkgs/affine-shared/utils/figma-squircle/distribute.ts +154 -0
- package/src/_pkgs/affine-shared/utils/figma-squircle/draw.ts +232 -0
- package/src/_pkgs/affine-shared/utils/figma-squircle/index.ts +105 -0
- package/src/_pkgs/affine-shared/utils/file/filesys.ts +293 -0
- package/src/_pkgs/affine-shared/utils/file/header-value-parser.ts +32 -0
- package/src/_pkgs/affine-shared/utils/file/index.ts +2 -0
- package/src/_pkgs/affine-shared/utils/fractional-indexing.ts +74 -0
- package/src/_pkgs/affine-shared/utils/image.ts +59 -0
- package/src/_pkgs/affine-shared/utils/index.ts +28 -0
- package/src/_pkgs/affine-shared/utils/insert.ts +51 -0
- package/src/_pkgs/affine-shared/utils/is-abort-error.ts +3 -0
- package/src/_pkgs/affine-shared/utils/math.ts +9 -0
- package/src/_pkgs/affine-shared/utils/model/block-props.ts +6 -0
- package/src/_pkgs/affine-shared/utils/model/checker.ts +34 -0
- package/src/_pkgs/affine-shared/utils/model/doc.ts +38 -0
- package/src/_pkgs/affine-shared/utils/model/get-content-block.ts +140 -0
- package/src/_pkgs/affine-shared/utils/model/getter.ts +75 -0
- package/src/_pkgs/affine-shared/utils/model/index.ts +8 -0
- package/src/_pkgs/affine-shared/utils/model/list.ts +103 -0
- package/src/_pkgs/affine-shared/utils/model/merge-to-code-model.ts +33 -0
- package/src/_pkgs/affine-shared/utils/model/transform-model.ts +31 -0
- package/src/_pkgs/affine-shared/utils/popper-position.ts +139 -0
- package/src/_pkgs/affine-shared/utils/print-to-pdf.ts +145 -0
- package/src/_pkgs/affine-shared/utils/reference.ts +44 -0
- package/src/_pkgs/affine-shared/utils/reordering.ts +6 -0
- package/src/_pkgs/affine-shared/utils/signal.ts +25 -0
- package/src/_pkgs/affine-shared/utils/string.ts +75 -0
- package/src/_pkgs/affine-shared/utils/title.ts +32 -0
- package/src/_pkgs/affine-shared/utils/url.ts +156 -0
- package/src/_pkgs/affine-shared/utils/virtual-padding.ts +35 -0
- package/src/_pkgs/affine-shared/utils/zod-schema.ts +219 -0
- package/src/_pkgs/affine-widget-drag-handle/components/edgeless-preview/preview.ts +133 -0
- package/src/_pkgs/affine-widget-drag-handle/config.ts +19 -0
- package/src/_pkgs/affine-widget-drag-handle/consts.ts +1 -0
- package/src/_pkgs/affine-widget-drag-handle/drag-handle.ts +252 -0
- package/src/_pkgs/affine-widget-drag-handle/effects.ts +14 -0
- package/src/_pkgs/affine-widget-drag-handle/helpers/preview-helper.ts +207 -0
- package/src/_pkgs/affine-widget-drag-handle/helpers/rect-helper.ts +95 -0
- package/src/_pkgs/affine-widget-drag-handle/helpers/selection-helper.ts +67 -0
- package/src/_pkgs/affine-widget-drag-handle/index.ts +15 -0
- package/src/_pkgs/affine-widget-drag-handle/middleware/blocks-filter.ts +119 -0
- package/src/_pkgs/affine-widget-drag-handle/middleware/card-style-updater.ts +56 -0
- package/src/_pkgs/affine-widget-drag-handle/middleware/new-id-cross-doc.ts +53 -0
- package/src/_pkgs/affine-widget-drag-handle/middleware/reorder-list.ts +31 -0
- package/src/_pkgs/affine-widget-drag-handle/styles.ts +86 -0
- package/src/_pkgs/affine-widget-drag-handle/utils.ts +346 -0
- package/src/_pkgs/affine-widget-drag-handle/view.ts +21 -0
- package/src/_pkgs/affine-widget-drag-handle/watchers/drag-event-watcher.ts +1742 -0
- package/src/_pkgs/affine-widget-drag-handle/watchers/edgeless-watcher.ts +235 -0
- package/src/_pkgs/affine-widget-drag-handle/watchers/handle-event-watcher.ts +93 -0
- package/src/_pkgs/affine-widget-drag-handle/watchers/keyboard-event-watcher.ts +24 -0
- package/src/_pkgs/affine-widget-drag-handle/watchers/page-watcher.ts +21 -0
- package/src/_pkgs/affine-widget-drag-handle/watchers/pointer-event-watcher.ts +366 -0
- package/src/_pkgs/affine-widget-edgeless-auto-connect/effects.ts +11 -0
- package/src/_pkgs/affine-widget-edgeless-auto-connect/index.ts +634 -0
- package/src/_pkgs/affine-widget-edgeless-auto-connect/view.ts +23 -0
- package/src/_pkgs/affine-widget-edgeless-dragging-area/edgeless-dragging-area-rect.ts +68 -0
- package/src/_pkgs/affine-widget-edgeless-dragging-area/effects.ts +11 -0
- package/src/_pkgs/affine-widget-edgeless-dragging-area/index.ts +1 -0
- package/src/_pkgs/affine-widget-edgeless-dragging-area/view.ts +23 -0
- package/src/_pkgs/affine-widget-edgeless-selected-rect/auto-complete-panel.ts +680 -0
- package/src/_pkgs/affine-widget-edgeless-selected-rect/edgeless-auto-complete.ts +787 -0
- package/src/_pkgs/affine-widget-edgeless-selected-rect/edgeless-selected-rect.ts +844 -0
- package/src/_pkgs/affine-widget-edgeless-selected-rect/effects.ts +18 -0
- package/src/_pkgs/affine-widget-edgeless-selected-rect/index.ts +1 -0
- package/src/_pkgs/affine-widget-edgeless-selected-rect/resize-handles.ts +94 -0
- package/src/_pkgs/affine-widget-edgeless-selected-rect/spec.ts +10 -0
- package/src/_pkgs/affine-widget-edgeless-selected-rect/utils.ts +416 -0
- package/src/_pkgs/affine-widget-edgeless-selected-rect/view.ts +23 -0
- package/src/_pkgs/affine-widget-edgeless-toolbar/button/tool-icon-button.ts +192 -0
- package/src/_pkgs/affine-widget-edgeless-toolbar/button/toolbar-button.ts +39 -0
- package/src/_pkgs/affine-widget-edgeless-toolbar/config/consts.ts +16 -0
- package/src/_pkgs/affine-widget-edgeless-toolbar/config/index.ts +3 -0
- package/src/_pkgs/affine-widget-edgeless-toolbar/config/types.ts +28 -0
- package/src/_pkgs/affine-widget-edgeless-toolbar/config/utils.ts +72 -0
- package/src/_pkgs/affine-widget-edgeless-toolbar/context.ts +21 -0
- package/src/_pkgs/affine-widget-edgeless-toolbar/create-popper.ts +103 -0
- package/src/_pkgs/affine-widget-edgeless-toolbar/draggable/draggable-element.controller.ts +477 -0
- package/src/_pkgs/affine-widget-edgeless-toolbar/draggable/event-resolver.ts +25 -0
- package/src/_pkgs/affine-widget-edgeless-toolbar/draggable/index.ts +1 -0
- package/src/_pkgs/affine-widget-edgeless-toolbar/draggable/overlay-factory.ts +96 -0
- package/src/_pkgs/affine-widget-edgeless-toolbar/draggable/types.ts +97 -0
- package/src/_pkgs/affine-widget-edgeless-toolbar/edgeless-toolbar.ts +732 -0
- package/src/_pkgs/affine-widget-edgeless-toolbar/effects.ts +35 -0
- package/src/_pkgs/affine-widget-edgeless-toolbar/extension/index.ts +66 -0
- package/src/_pkgs/affine-widget-edgeless-toolbar/index.ts +7 -0
- package/src/_pkgs/affine-widget-edgeless-toolbar/menu/slide-menu.ts +184 -0
- package/src/_pkgs/affine-widget-edgeless-toolbar/menu/toolbar-arrow-up-icon.ts +17 -0
- package/src/_pkgs/affine-widget-edgeless-toolbar/mixins/index.ts +3 -0
- package/src/_pkgs/affine-widget-edgeless-toolbar/mixins/quick-tool.mixin.ts +21 -0
- package/src/_pkgs/affine-widget-edgeless-toolbar/mixins/tool.mixin.ts +171 -0
- package/src/_pkgs/affine-widget-edgeless-toolbar/mixins/toolbar-button-with-menu.mixin.ts +20 -0
- package/src/_pkgs/affine-widget-edgeless-toolbar/panel/font-family-panel.ts +57 -0
- package/src/_pkgs/affine-widget-edgeless-toolbar/panel/font-weight-and-style-panel.ts +163 -0
- package/src/_pkgs/affine-widget-edgeless-toolbar/view.ts +23 -0
- package/src/_pkgs/affine-widget-edgeless-zoom-toolbar/effects.ts +15 -0
- package/src/_pkgs/affine-widget-edgeless-zoom-toolbar/index.ts +94 -0
- package/src/_pkgs/affine-widget-edgeless-zoom-toolbar/view.ts +23 -0
- package/src/_pkgs/affine-widget-edgeless-zoom-toolbar/zoom-bar-toggle-button.ts +113 -0
- package/src/_pkgs/affine-widget-edgeless-zoom-toolbar/zoom-toolbar.ts +213 -0
- package/src/_pkgs/affine-widget-frame-title/affine-frame-title-widget.ts +21 -0
- package/src/_pkgs/affine-widget-frame-title/edgeless-frame-title-editor.ts +185 -0
- package/src/_pkgs/affine-widget-frame-title/effects.ts +15 -0
- package/src/_pkgs/affine-widget-frame-title/frame-title.ts +293 -0
- package/src/_pkgs/affine-widget-frame-title/index.ts +4 -0
- package/src/_pkgs/affine-widget-frame-title/mount-frame-title-editor.ts +34 -0
- package/src/_pkgs/affine-widget-frame-title/styles.ts +35 -0
- package/src/_pkgs/affine-widget-frame-title/view.ts +23 -0
- package/src/_pkgs/affine-widget-keyboard-toolbar/config.ts +1160 -0
- package/src/_pkgs/affine-widget-keyboard-toolbar/effects.ts +28 -0
- package/src/_pkgs/affine-widget-keyboard-toolbar/icons.ts +138 -0
- package/src/_pkgs/affine-widget-keyboard-toolbar/index.ts +2 -0
- package/src/_pkgs/affine-widget-keyboard-toolbar/keyboard-tool-panel.ts +100 -0
- package/src/_pkgs/affine-widget-keyboard-toolbar/keyboard-toolbar.ts +350 -0
- package/src/_pkgs/affine-widget-keyboard-toolbar/position-controller.ts +42 -0
- package/src/_pkgs/affine-widget-keyboard-toolbar/styles.ts +145 -0
- package/src/_pkgs/affine-widget-keyboard-toolbar/utils.ts +43 -0
- package/src/_pkgs/affine-widget-keyboard-toolbar/view.ts +28 -0
- package/src/_pkgs/affine-widget-keyboard-toolbar/widget.ts +148 -0
- package/src/_pkgs/affine-widget-linked-doc/config.ts +230 -0
- package/src/_pkgs/affine-widget-linked-doc/effects.ts +17 -0
- package/src/_pkgs/affine-widget-linked-doc/import-doc/import-doc.ts +297 -0
- package/src/_pkgs/affine-widget-linked-doc/import-doc/index.ts +38 -0
- package/src/_pkgs/affine-widget-linked-doc/import-doc/loader.ts +103 -0
- package/src/_pkgs/affine-widget-linked-doc/import-doc/styles.ts +88 -0
- package/src/_pkgs/affine-widget-linked-doc/index.ts +4 -0
- package/src/_pkgs/affine-widget-linked-doc/linked-doc-popover.ts +428 -0
- package/src/_pkgs/affine-widget-linked-doc/mobile-linked-doc-menu.ts +216 -0
- package/src/_pkgs/affine-widget-linked-doc/styles.ts +163 -0
- package/src/_pkgs/affine-widget-linked-doc/transformers/html.ts +218 -0
- package/src/_pkgs/affine-widget-linked-doc/transformers/index.ts +5 -0
- package/src/_pkgs/affine-widget-linked-doc/transformers/markdown.ts +283 -0
- package/src/_pkgs/affine-widget-linked-doc/transformers/notion-html.ts +174 -0
- package/src/_pkgs/affine-widget-linked-doc/transformers/type.ts +25 -0
- package/src/_pkgs/affine-widget-linked-doc/transformers/utils.ts +115 -0
- package/src/_pkgs/affine-widget-linked-doc/transformers/zip.ts +172 -0
- package/src/_pkgs/affine-widget-linked-doc/utils.ts +5 -0
- package/src/_pkgs/affine-widget-linked-doc/view.ts +83 -0
- package/src/_pkgs/affine-widget-linked-doc/widget.ts +344 -0
- package/src/_pkgs/affine-widget-note-slicer/effects.ts +5 -0
- package/src/_pkgs/affine-widget-note-slicer/index.ts +1 -0
- package/src/_pkgs/affine-widget-note-slicer/note-slicer.ts +451 -0
- package/src/_pkgs/affine-widget-note-slicer/view.ts +23 -0
- package/src/_pkgs/affine-widget-page-dragging-area/effects.ts +11 -0
- package/src/_pkgs/affine-widget-page-dragging-area/index.ts +331 -0
- package/src/_pkgs/affine-widget-page-dragging-area/utils.ts +146 -0
- package/src/_pkgs/affine-widget-page-dragging-area/view.ts +24 -0
- package/src/_pkgs/affine-widget-remote-selection/doc/config.ts +5 -0
- package/src/_pkgs/affine-widget-remote-selection/doc/doc-remote-selection.ts +398 -0
- package/src/_pkgs/affine-widget-remote-selection/doc/index.ts +1 -0
- package/src/_pkgs/affine-widget-remote-selection/doc/utils.ts +36 -0
- package/src/_pkgs/affine-widget-remote-selection/edgeless/index.ts +304 -0
- package/src/_pkgs/affine-widget-remote-selection/effects.ts +17 -0
- package/src/_pkgs/affine-widget-remote-selection/index.ts +20 -0
- package/src/_pkgs/affine-widget-remote-selection/manager/color-picker.ts +36 -0
- package/src/_pkgs/affine-widget-remote-selection/manager/remote-color-manager.ts +42 -0
- package/src/_pkgs/affine-widget-remote-selection/view.ts +27 -0
- package/src/_pkgs/affine-widget-scroll-anchoring/effects.ts +17 -0
- package/src/_pkgs/affine-widget-scroll-anchoring/index.ts +12 -0
- package/src/_pkgs/affine-widget-scroll-anchoring/scroll-anchoring.ts +267 -0
- package/src/_pkgs/affine-widget-scroll-anchoring/view.ts +21 -0
- package/src/_pkgs/affine-widget-slash-menu/config.ts +189 -0
- package/src/_pkgs/affine-widget-slash-menu/consts.ts +4 -0
- package/src/_pkgs/affine-widget-slash-menu/effects.ts +15 -0
- package/src/_pkgs/affine-widget-slash-menu/extensions.ts +51 -0
- package/src/_pkgs/affine-widget-slash-menu/index.ts +3 -0
- package/src/_pkgs/affine-widget-slash-menu/slash-menu-popover.ts +668 -0
- package/src/_pkgs/affine-widget-slash-menu/styles.ts +109 -0
- package/src/_pkgs/affine-widget-slash-menu/tooltips/copy.ts +13 -0
- package/src/_pkgs/affine-widget-slash-menu/tooltips/delete.ts +14 -0
- package/src/_pkgs/affine-widget-slash-menu/tooltips/empty.ts +11 -0
- package/src/_pkgs/affine-widget-slash-menu/tooltips/index.ts +51 -0
- package/src/_pkgs/affine-widget-slash-menu/tooltips/move-down.ts +21 -0
- package/src/_pkgs/affine-widget-slash-menu/tooltips/move-up.ts +21 -0
- package/src/_pkgs/affine-widget-slash-menu/tooltips/now.ts +14 -0
- package/src/_pkgs/affine-widget-slash-menu/tooltips/today.ts +14 -0
- package/src/_pkgs/affine-widget-slash-menu/tooltips/tomorrow.ts +14 -0
- package/src/_pkgs/affine-widget-slash-menu/tooltips/yesterday.ts +14 -0
- package/src/_pkgs/affine-widget-slash-menu/types.ts +59 -0
- package/src/_pkgs/affine-widget-slash-menu/utils.ts +102 -0
- package/src/_pkgs/affine-widget-slash-menu/view.ts +22 -0
- package/src/_pkgs/affine-widget-slash-menu/widget.ts +184 -0
- package/src/_pkgs/affine-widget-toolbar/effects.ts +11 -0
- package/src/_pkgs/affine-widget-toolbar/index.ts +12 -0
- package/src/_pkgs/affine-widget-toolbar/toolbar.ts +705 -0
- package/src/_pkgs/affine-widget-toolbar/utils.ts +432 -0
- package/src/_pkgs/affine-widget-toolbar/view.ts +22 -0
- package/src/_pkgs/affine-widget-viewport-overlay/effects.ts +11 -0
- package/src/_pkgs/affine-widget-viewport-overlay/index.ts +90 -0
- package/src/_pkgs/affine-widget-viewport-overlay/view.ts +21 -0
- package/src/_pkgs/data-view/core/common/css-variable.ts +66 -0
- package/src/_pkgs/data-view/core/common/dv-css.ts +88 -0
- package/src/_pkgs/data-view/core/common/index.ts +8 -0
- package/src/_pkgs/data-view/core/common/properties.ts +283 -0
- package/src/_pkgs/data-view/core/common/property-menu.ts +76 -0
- package/src/_pkgs/data-view/core/common/types.ts +13 -0
- package/src/_pkgs/data-view/core/component/button/button.ts +89 -0
- package/src/_pkgs/data-view/core/component/index.ts +3 -0
- package/src/_pkgs/data-view/core/component/overflow/overflow.ts +109 -0
- package/src/_pkgs/data-view/core/component/tags/colors.ts +88 -0
- package/src/_pkgs/data-view/core/component/tags/index.ts +3 -0
- package/src/_pkgs/data-view/core/component/tags/multi-tag-select.ts +606 -0
- package/src/_pkgs/data-view/core/component/tags/multi-tag-view.ts +88 -0
- package/src/_pkgs/data-view/core/component/tags/styles-css.ts +143 -0
- package/src/_pkgs/data-view/core/data-source/base.ts +305 -0
- package/src/_pkgs/data-view/core/data-source/index.ts +1 -0
- package/src/_pkgs/data-view/core/data-view.ts +211 -0
- package/src/_pkgs/data-view/core/detail/detail.ts +305 -0
- package/src/_pkgs/data-view/core/detail/field.ts +286 -0
- package/src/_pkgs/data-view/core/detail/selection.ts +154 -0
- package/src/_pkgs/data-view/core/effect.ts +39 -0
- package/src/_pkgs/data-view/core/expression/index.ts +3 -0
- package/src/_pkgs/data-view/core/expression/ref/index.ts +2 -0
- package/src/_pkgs/data-view/core/expression/ref/ref-view.ts +94 -0
- package/src/_pkgs/data-view/core/expression/ref/ref.ts +5 -0
- package/src/_pkgs/data-view/core/expression/types.ts +22 -0
- package/src/_pkgs/data-view/core/filter/add-filter.ts +67 -0
- package/src/_pkgs/data-view/core/filter/eval.ts +53 -0
- package/src/_pkgs/data-view/core/filter/filter-fn/boolean.ts +27 -0
- package/src/_pkgs/data-view/core/filter/filter-fn/create.ts +64 -0
- package/src/_pkgs/data-view/core/filter/filter-fn/date.ts +37 -0
- package/src/_pkgs/data-view/core/filter/filter-fn/matcher.ts +61 -0
- package/src/_pkgs/data-view/core/filter/filter-fn/multi-tag.ts +89 -0
- package/src/_pkgs/data-view/core/filter/filter-fn/number.ts +88 -0
- package/src/_pkgs/data-view/core/filter/filter-fn/string.ts +69 -0
- package/src/_pkgs/data-view/core/filter/filter-fn/tag.ts +46 -0
- package/src/_pkgs/data-view/core/filter/filter-fn/unknown.ts +37 -0
- package/src/_pkgs/data-view/core/filter/filter-fn/utils.ts +20 -0
- package/src/_pkgs/data-view/core/filter/generate-default-values.ts +44 -0
- package/src/_pkgs/data-view/core/filter/index.ts +5 -0
- package/src/_pkgs/data-view/core/filter/literal/create.ts +5 -0
- package/src/_pkgs/data-view/core/filter/literal/define.ts +154 -0
- package/src/_pkgs/data-view/core/filter/literal/index.ts +3 -0
- package/src/_pkgs/data-view/core/filter/literal/matcher.ts +20 -0
- package/src/_pkgs/data-view/core/filter/literal/types.ts +19 -0
- package/src/_pkgs/data-view/core/filter/trait.ts +25 -0
- package/src/_pkgs/data-view/core/filter/types.ts +14 -0
- package/src/_pkgs/data-view/core/filter/utils.ts +66 -0
- package/src/_pkgs/data-view/core/group-by/default.ts +23 -0
- package/src/_pkgs/data-view/core/group-by/define.ts +185 -0
- package/src/_pkgs/data-view/core/group-by/group-title.ts +231 -0
- package/src/_pkgs/data-view/core/group-by/index.ts +3 -0
- package/src/_pkgs/data-view/core/group-by/matcher.ts +41 -0
- package/src/_pkgs/data-view/core/group-by/renderer/base.ts +40 -0
- package/src/_pkgs/data-view/core/group-by/renderer/boolean-group.ts +25 -0
- package/src/_pkgs/data-view/core/group-by/renderer/number-group.ts +65 -0
- package/src/_pkgs/data-view/core/group-by/renderer/select-group.ts +119 -0
- package/src/_pkgs/data-view/core/group-by/renderer/string-group.ts +53 -0
- package/src/_pkgs/data-view/core/group-by/setting.ts +322 -0
- package/src/_pkgs/data-view/core/group-by/trait.ts +362 -0
- package/src/_pkgs/data-view/core/group-by/types.ts +41 -0
- package/src/_pkgs/data-view/core/index.ts +14 -0
- package/src/_pkgs/data-view/core/logical/composite-type.ts +138 -0
- package/src/_pkgs/data-view/core/logical/data-type.ts +79 -0
- package/src/_pkgs/data-view/core/logical/index.ts +3 -0
- package/src/_pkgs/data-view/core/logical/matcher.ts +113 -0
- package/src/_pkgs/data-view/core/logical/type-presets.ts +67 -0
- package/src/_pkgs/data-view/core/logical/type-system.ts +195 -0
- package/src/_pkgs/data-view/core/logical/type-variable.ts +76 -0
- package/src/_pkgs/data-view/core/logical/type.ts +38 -0
- package/src/_pkgs/data-view/core/property/base-cell.ts +134 -0
- package/src/_pkgs/data-view/core/property/convert.ts +30 -0
- package/src/_pkgs/data-view/core/property/index.ts +6 -0
- package/src/_pkgs/data-view/core/property/manager.ts +44 -0
- package/src/_pkgs/data-view/core/property/property-config.ts +81 -0
- package/src/_pkgs/data-view/core/property/renderer.ts +25 -0
- package/src/_pkgs/data-view/core/property/types.ts +99 -0
- package/src/_pkgs/data-view/core/property/utils.ts +30 -0
- package/src/_pkgs/data-view/core/sort/add-sort.ts +53 -0
- package/src/_pkgs/data-view/core/sort/eval.ts +188 -0
- package/src/_pkgs/data-view/core/sort/manager.ts +43 -0
- package/src/_pkgs/data-view/core/sort/types.ts +10 -0
- package/src/_pkgs/data-view/core/sort/utils.ts +108 -0
- package/src/_pkgs/data-view/core/statistics/any.ts +104 -0
- package/src/_pkgs/data-view/core/statistics/checkbox.ts +62 -0
- package/src/_pkgs/data-view/core/statistics/create.ts +8 -0
- package/src/_pkgs/data-view/core/statistics/index.ts +10 -0
- package/src/_pkgs/data-view/core/statistics/number.ts +130 -0
- package/src/_pkgs/data-view/core/statistics/types.ts +18 -0
- package/src/_pkgs/data-view/core/traits/key.ts +10 -0
- package/src/_pkgs/data-view/core/types.ts +17 -0
- package/src/_pkgs/data-view/core/utils/auto-scroll.ts +78 -0
- package/src/_pkgs/data-view/core/utils/cache.ts +32 -0
- package/src/_pkgs/data-view/core/utils/drag.ts +69 -0
- package/src/_pkgs/data-view/core/utils/event.ts +3 -0
- package/src/_pkgs/data-view/core/utils/index.ts +3 -0
- package/src/_pkgs/data-view/core/utils/lazy.ts +11 -0
- package/src/_pkgs/data-view/core/utils/lock.ts +15 -0
- package/src/_pkgs/data-view/core/utils/menu-title.ts +23 -0
- package/src/_pkgs/data-view/core/utils/uni-component/index.ts +2 -0
- package/src/_pkgs/data-view/core/utils/uni-component/operation.ts +16 -0
- package/src/_pkgs/data-view/core/utils/uni-component/render-template.ts +24 -0
- package/src/_pkgs/data-view/core/utils/uni-component/uni-component.ts +156 -0
- package/src/_pkgs/data-view/core/utils/uni-icon.ts +36 -0
- package/src/_pkgs/data-view/core/utils/utils.ts +39 -0
- package/src/_pkgs/data-view/core/utils/wc-dnd/dnd-context.ts +549 -0
- package/src/_pkgs/data-view/core/utils/wc-dnd/sensors/index.ts +5 -0
- package/src/_pkgs/data-view/core/utils/wc-dnd/sensors/mouse.ts +235 -0
- package/src/_pkgs/data-view/core/utils/wc-dnd/sort/sort-context.ts +93 -0
- package/src/_pkgs/data-view/core/utils/wc-dnd/sort/strategies/horizontal-list-sorting.ts +95 -0
- package/src/_pkgs/data-view/core/utils/wc-dnd/sort/strategies/index.ts +2 -0
- package/src/_pkgs/data-view/core/utils/wc-dnd/sort/strategies/vertical-list-sorting.ts +89 -0
- package/src/_pkgs/data-view/core/utils/wc-dnd/types.ts +123 -0
- package/src/_pkgs/data-view/core/utils/wc-dnd/utils/adjustment.ts +28 -0
- package/src/_pkgs/data-view/core/utils/wc-dnd/utils/apply-modifiers.ts +15 -0
- package/src/_pkgs/data-view/core/utils/wc-dnd/utils/array-move.ts +13 -0
- package/src/_pkgs/data-view/core/utils/wc-dnd/utils/closest-center.ts +44 -0
- package/src/_pkgs/data-view/core/utils/wc-dnd/utils/data-directive.ts +27 -0
- package/src/_pkgs/data-view/core/utils/wc-dnd/utils/distance-between-points.ts +8 -0
- package/src/_pkgs/data-view/core/utils/wc-dnd/utils/element.ts +3 -0
- package/src/_pkgs/data-view/core/utils/wc-dnd/utils/events.ts +7 -0
- package/src/_pkgs/data-view/core/utils/wc-dnd/utils/get-scrollable-ancestors.ts +63 -0
- package/src/_pkgs/data-view/core/utils/wc-dnd/utils/has-exceeded-distance.ts +27 -0
- package/src/_pkgs/data-view/core/utils/wc-dnd/utils/linear-move.ts +60 -0
- package/src/_pkgs/data-view/core/utils/wc-dnd/utils/listeners.ts +20 -0
- package/src/_pkgs/data-view/core/utils/wc-dnd/utils/raf.ts +24 -0
- package/src/_pkgs/data-view/core/utils/wc-dnd/utils/rect-adjustment.ts +14 -0
- package/src/_pkgs/data-view/core/utils/wc-dnd/utils/rect.ts +16 -0
- package/src/_pkgs/data-view/core/utils/wc-dnd/utils/signal.ts +18 -0
- package/src/_pkgs/data-view/core/view/convert.ts +27 -0
- package/src/_pkgs/data-view/core/view/data-view-base.ts +106 -0
- package/src/_pkgs/data-view/core/view/data-view.ts +80 -0
- package/src/_pkgs/data-view/core/view/index.ts +4 -0
- package/src/_pkgs/data-view/core/view/types.ts +43 -0
- package/src/_pkgs/data-view/core/view-manager/cell.ts +125 -0
- package/src/_pkgs/data-view/core/view-manager/index.ts +5 -0
- package/src/_pkgs/data-view/core/view-manager/property.ts +270 -0
- package/src/_pkgs/data-view/core/view-manager/row.ts +65 -0
- package/src/_pkgs/data-view/core/view-manager/single-view.ts +286 -0
- package/src/_pkgs/data-view/core/view-manager/view-manager.ts +130 -0
- package/src/_pkgs/data-view/core/widget/index.ts +1 -0
- package/src/_pkgs/data-view/core/widget/types.ts +10 -0
- package/src/_pkgs/data-view/core/widget/widget-base.ts +28 -0
- package/src/_pkgs/data-view/effects.ts +11 -0
- package/src/_pkgs/data-view/index.ts +1 -0
- package/src/_pkgs/data-view/property-presets/checkbox/cell-renderer.ts +121 -0
- package/src/_pkgs/data-view/property-presets/checkbox/define.ts +44 -0
- package/src/_pkgs/data-view/property-presets/converts.ts +45 -0
- package/src/_pkgs/data-view/property-presets/date/cell-renderer-css.ts +33 -0
- package/src/_pkgs/data-view/property-presets/date/cell-renderer.ts +167 -0
- package/src/_pkgs/data-view/property-presets/date/define.ts +30 -0
- package/src/_pkgs/data-view/property-presets/effect.ts +19 -0
- package/src/_pkgs/data-view/property-presets/image/cell-renderer.ts +32 -0
- package/src/_pkgs/data-view/property-presets/image/define.ts +32 -0
- package/src/_pkgs/data-view/property-presets/index.ts +22 -0
- package/src/_pkgs/data-view/property-presets/multi-select/cell-renderer-css.ts +17 -0
- package/src/_pkgs/data-view/property-presets/multi-select/cell-renderer.ts +89 -0
- package/src/_pkgs/data-view/property-presets/multi-select/define.ts +76 -0
- package/src/_pkgs/data-view/property-presets/number/cell-renderer-css.ts +37 -0
- package/src/_pkgs/data-view/property-presets/number/cell-renderer.ts +133 -0
- package/src/_pkgs/data-view/property-presets/number/define.ts +30 -0
- package/src/_pkgs/data-view/property-presets/number/index.ts +1 -0
- package/src/_pkgs/data-view/property-presets/number/types.ts +9 -0
- package/src/_pkgs/data-view/property-presets/number/utils/formats.ts +19 -0
- package/src/_pkgs/data-view/property-presets/number/utils/formatter.ts +104 -0
- package/src/_pkgs/data-view/property-presets/progress/cell-renderer-css.ts +57 -0
- package/src/_pkgs/data-view/property-presets/progress/cell-renderer.ts +166 -0
- package/src/_pkgs/data-view/property-presets/progress/define.ts +29 -0
- package/src/_pkgs/data-view/property-presets/pure-index.ts +19 -0
- package/src/_pkgs/data-view/property-presets/select/cell-renderer-css.ts +18 -0
- package/src/_pkgs/data-view/property-presets/select/cell-renderer.ts +88 -0
- package/src/_pkgs/data-view/property-presets/select/define.ts +73 -0
- package/src/_pkgs/data-view/property-presets/text/cell-renderer-css.ts +42 -0
- package/src/_pkgs/data-view/property-presets/text/cell-renderer.ts +65 -0
- package/src/_pkgs/data-view/property-presets/text/define.ts +29 -0
- package/src/_pkgs/data-view/view-presets/convert.ts +21 -0
- package/src/_pkgs/data-view/view-presets/effect.ts +7 -0
- package/src/_pkgs/data-view/view-presets/index.ts +11 -0
- package/src/_pkgs/data-view/view-presets/kanban/define.ts +91 -0
- package/src/_pkgs/data-view/view-presets/kanban/effect.ts +7 -0
- package/src/_pkgs/data-view/view-presets/kanban/index.ts +4 -0
- package/src/_pkgs/data-view/view-presets/kanban/kanban-view-manager.ts +328 -0
- package/src/_pkgs/data-view/view-presets/kanban/mobile/card.ts +225 -0
- package/src/_pkgs/data-view/view-presets/kanban/mobile/cell.ts +178 -0
- package/src/_pkgs/data-view/view-presets/kanban/mobile/effect.ts +11 -0
- package/src/_pkgs/data-view/view-presets/kanban/mobile/group.ts +153 -0
- package/src/_pkgs/data-view/view-presets/kanban/mobile/kanban-view-ui-logic.ts +170 -0
- package/src/_pkgs/data-view/view-presets/kanban/mobile/menu.ts +122 -0
- package/src/_pkgs/data-view/view-presets/kanban/pc/card.ts +337 -0
- package/src/_pkgs/data-view/view-presets/kanban/pc/cell.ts +185 -0
- package/src/_pkgs/data-view/view-presets/kanban/pc/controller/clipboard.ts +53 -0
- package/src/_pkgs/data-view/view-presets/kanban/pc/controller/drag.ts +255 -0
- package/src/_pkgs/data-view/view-presets/kanban/pc/controller/hotkeys.ts +67 -0
- package/src/_pkgs/data-view/view-presets/kanban/pc/controller/selection.ts +801 -0
- package/src/_pkgs/data-view/view-presets/kanban/pc/effect.ts +11 -0
- package/src/_pkgs/data-view/view-presets/kanban/pc/group.ts +211 -0
- package/src/_pkgs/data-view/view-presets/kanban/pc/header.ts +76 -0
- package/src/_pkgs/data-view/view-presets/kanban/pc/kanban-view-ui-logic.ts +331 -0
- package/src/_pkgs/data-view/view-presets/kanban/pc/menu.ts +114 -0
- package/src/_pkgs/data-view/view-presets/kanban/renderer.ts +12 -0
- package/src/_pkgs/data-view/view-presets/kanban/selection.ts +50 -0
- package/src/_pkgs/data-view/view-presets/table/consts.ts +10 -0
- package/src/_pkgs/data-view/view-presets/table/define.ts +51 -0
- package/src/_pkgs/data-view/view-presets/table/effect.ts +11 -0
- package/src/_pkgs/data-view/view-presets/table/index.ts +6 -0
- package/src/_pkgs/data-view/view-presets/table/mobile/cell.ts +170 -0
- package/src/_pkgs/data-view/view-presets/table/mobile/column-header.ts +272 -0
- package/src/_pkgs/data-view/view-presets/table/mobile/effect.ts +15 -0
- package/src/_pkgs/data-view/view-presets/table/mobile/group.ts +166 -0
- package/src/_pkgs/data-view/view-presets/table/mobile/header.ts +90 -0
- package/src/_pkgs/data-view/view-presets/table/mobile/menu.ts +47 -0
- package/src/_pkgs/data-view/view-presets/table/mobile/row.ts +150 -0
- package/src/_pkgs/data-view/view-presets/table/mobile/table-view-style.ts +27 -0
- package/src/_pkgs/data-view/view-presets/table/mobile/table-view-ui-logic.ts +160 -0
- package/src/_pkgs/data-view/view-presets/table/pc/cell.ts +161 -0
- package/src/_pkgs/data-view/view-presets/table/pc/controller/clipboard.ts +323 -0
- package/src/_pkgs/data-view/view-presets/table/pc/controller/drag-to-fill.ts +112 -0
- package/src/_pkgs/data-view/view-presets/table/pc/controller/drag.ts +209 -0
- package/src/_pkgs/data-view/view-presets/table/pc/controller/hotkeys.ts +416 -0
- package/src/_pkgs/data-view/view-presets/table/pc/controller/selection.ts +1180 -0
- package/src/_pkgs/data-view/view-presets/table/pc/effect.ts +36 -0
- package/src/_pkgs/data-view/view-presets/table/pc/group.ts +311 -0
- package/src/_pkgs/data-view/view-presets/table/pc/header/column-header.ts +143 -0
- package/src/_pkgs/data-view/view-presets/table/pc/header/column-renderer.ts +98 -0
- package/src/_pkgs/data-view/view-presets/table/pc/header/database-header-column.ts +500 -0
- package/src/_pkgs/data-view/view-presets/table/pc/header/number-format-bar.ts +145 -0
- package/src/_pkgs/data-view/view-presets/table/pc/header/styles.ts +349 -0
- package/src/_pkgs/data-view/view-presets/table/pc/header/vertical-indicator.ts +163 -0
- package/src/_pkgs/data-view/view-presets/table/pc/menu.ts +132 -0
- package/src/_pkgs/data-view/view-presets/table/pc/row/row-select-checkbox.ts +80 -0
- package/src/_pkgs/data-view/view-presets/table/pc/row/row.ts +306 -0
- package/src/_pkgs/data-view/view-presets/table/pc/table-view-style.ts +112 -0
- package/src/_pkgs/data-view/view-presets/table/pc/table-view-ui-logic.ts +220 -0
- package/src/_pkgs/data-view/view-presets/table/pc-virtual/controller/clipboard.ts +324 -0
- package/src/_pkgs/data-view/view-presets/table/pc-virtual/controller/drag-to-fill.ts +117 -0
- package/src/_pkgs/data-view/view-presets/table/pc-virtual/controller/drag.ts +212 -0
- package/src/_pkgs/data-view/view-presets/table/pc-virtual/controller/hotkeys.ts +418 -0
- package/src/_pkgs/data-view/view-presets/table/pc-virtual/controller/selection.ts +1110 -0
- package/src/_pkgs/data-view/view-presets/table/pc-virtual/effect.ts +55 -0
- package/src/_pkgs/data-view/view-presets/table/pc-virtual/group/bottom/group-footer-css.ts +33 -0
- package/src/_pkgs/data-view/view-presets/table/pc-virtual/group/bottom/group-footer.ts +105 -0
- package/src/_pkgs/data-view/view-presets/table/pc-virtual/group/bottom/stats/column-stats-bar.ts +51 -0
- package/src/_pkgs/data-view/view-presets/table/pc-virtual/group/bottom/stats/column-stats-column.ts +246 -0
- package/src/_pkgs/data-view/view-presets/table/pc-virtual/group/top/group-header-css.ts +5 -0
- package/src/_pkgs/data-view/view-presets/table/pc-virtual/group/top/group-header.ts +138 -0
- package/src/_pkgs/data-view/view-presets/table/pc-virtual/group/top/group-title-css.ts +63 -0
- package/src/_pkgs/data-view/view-presets/table/pc-virtual/group/top/group-title.ts +78 -0
- package/src/_pkgs/data-view/view-presets/table/pc-virtual/group/top/header/column-header-css.ts +42 -0
- package/src/_pkgs/data-view/view-presets/table/pc-virtual/group/top/header/column-header.ts +135 -0
- package/src/_pkgs/data-view/view-presets/table/pc-virtual/group/top/header/column-move-preview.ts +98 -0
- package/src/_pkgs/data-view/view-presets/table/pc-virtual/group/top/header/number-format-bar.ts +147 -0
- package/src/_pkgs/data-view/view-presets/table/pc-virtual/group/top/header/single-column-header.ts +497 -0
- package/src/_pkgs/data-view/view-presets/table/pc-virtual/group/top/header/vertical-indicator.ts +169 -0
- package/src/_pkgs/data-view/view-presets/table/pc-virtual/row/cell.ts +225 -0
- package/src/_pkgs/data-view/view-presets/table/pc-virtual/row/menu.ts +132 -0
- package/src/_pkgs/data-view/view-presets/table/pc-virtual/row/row-header-css.ts +52 -0
- package/src/_pkgs/data-view/view-presets/table/pc-virtual/row/row-header.ts +128 -0
- package/src/_pkgs/data-view/view-presets/table/pc-virtual/row/row-last.ts +65 -0
- package/src/_pkgs/data-view/view-presets/table/pc-virtual/table-view-css.ts +60 -0
- package/src/_pkgs/data-view/view-presets/table/pc-virtual/table-view-ui-logic.ts +321 -0
- package/src/_pkgs/data-view/view-presets/table/pc-virtual/types.ts +41 -0
- package/src/_pkgs/data-view/view-presets/table/pc-virtual/virtual/batch-task-manager.ts +119 -0
- package/src/_pkgs/data-view/view-presets/table/pc-virtual/virtual/linked-list.ts +169 -0
- package/src/_pkgs/data-view/view-presets/table/pc-virtual/virtual/virtual-cell-css.ts +6 -0
- package/src/_pkgs/data-view/view-presets/table/pc-virtual/virtual/virtual-cell.ts +60 -0
- package/src/_pkgs/data-view/view-presets/table/pc-virtual/virtual/virtual-scroll.ts +959 -0
- package/src/_pkgs/data-view/view-presets/table/renderer.ts +19 -0
- package/src/_pkgs/data-view/view-presets/table/selection.ts +123 -0
- package/src/_pkgs/data-view/view-presets/table/stats/column-stats-bar.ts +55 -0
- package/src/_pkgs/data-view/view-presets/table/stats/column-stats-column.ts +246 -0
- package/src/_pkgs/data-view/view-presets/table/stats/effect.ts +10 -0
- package/src/_pkgs/data-view/view-presets/table/styles.ts +8 -0
- package/src/_pkgs/data-view/view-presets/table/table-view-manager.ts +395 -0
- package/src/_pkgs/data-view/view-presets/table/types.ts +12 -0
- package/src/_pkgs/data-view/view-presets/table/utils.ts +58 -0
- package/src/_pkgs/data-view/widget-presets/effect.ts +41 -0
- package/src/_pkgs/data-view/widget-presets/index.ts +10 -0
- package/src/_pkgs/data-view/widget-presets/quick-setting-bar/context.ts +10 -0
- package/src/_pkgs/data-view/widget-presets/quick-setting-bar/filter/condition-view.ts +311 -0
- package/src/_pkgs/data-view/widget-presets/quick-setting-bar/filter/group-panel-view.ts +480 -0
- package/src/_pkgs/data-view/widget-presets/quick-setting-bar/filter/index.ts +21 -0
- package/src/_pkgs/data-view/widget-presets/quick-setting-bar/filter/list-view.ts +220 -0
- package/src/_pkgs/data-view/widget-presets/quick-setting-bar/filter/root-panel-view.ts +437 -0
- package/src/_pkgs/data-view/widget-presets/quick-setting-bar/index.ts +52 -0
- package/src/_pkgs/data-view/widget-presets/quick-setting-bar/sort/index.ts +32 -0
- package/src/_pkgs/data-view/widget-presets/quick-setting-bar/sort/root-panel.ts +240 -0
- package/src/_pkgs/data-view/widget-presets/tools/index.ts +33 -0
- package/src/_pkgs/data-view/widget-presets/tools/presets/filter/filter.ts +122 -0
- package/src/_pkgs/data-view/widget-presets/tools/presets/search/search.ts +189 -0
- package/src/_pkgs/data-view/widget-presets/tools/presets/sort/sort.ts +127 -0
- package/src/_pkgs/data-view/widget-presets/tools/presets/table-add-row/add-row.ts +51 -0
- package/src/_pkgs/data-view/widget-presets/tools/presets/table-add-row/new-record-preview.ts +44 -0
- package/src/_pkgs/data-view/widget-presets/tools/presets/view-options/view-options.ts +384 -0
- package/src/_pkgs/data-view/widget-presets/tools/tools-view.ts +83 -0
- package/src/_pkgs/data-view/widget-presets/views-bar/index.ts +11 -0
- package/src/_pkgs/data-view/widget-presets/views-bar/views-view.ts +319 -0
- package/src/_pkgs/global/di/consts.ts +4 -0
- package/src/_pkgs/global/di/container.ts +459 -0
- package/src/_pkgs/global/di/error.ts +59 -0
- package/src/_pkgs/global/di/identifier.ts +114 -0
- package/src/_pkgs/global/di/index.ts +7 -0
- package/src/_pkgs/global/di/provider.ts +219 -0
- package/src/_pkgs/global/di/scope.ts +13 -0
- package/src/_pkgs/global/di/stable-hash.ts +59 -0
- package/src/_pkgs/global/di/types.ts +37 -0
- package/src/_pkgs/global/disposable/index.ts +106 -0
- package/src/_pkgs/global/env/index.ts +31 -0
- package/src/_pkgs/global/exceptions/code.ts +30 -0
- package/src/_pkgs/global/exceptions/index.ts +36 -0
- package/src/_pkgs/global/gfx/bound.ts +175 -0
- package/src/_pkgs/global/gfx/curve.ts +402 -0
- package/src/_pkgs/global/gfx/index.ts +8 -0
- package/src/_pkgs/global/gfx/math.ts +660 -0
- package/src/_pkgs/global/gfx/model/bound.ts +373 -0
- package/src/_pkgs/global/gfx/model/index.ts +4 -0
- package/src/_pkgs/global/gfx/model/point-location.ts +94 -0
- package/src/_pkgs/global/gfx/model/point.ts +268 -0
- package/src/_pkgs/global/gfx/model/vec.ts +601 -0
- package/src/_pkgs/global/gfx/perfect-freehand/LICENSE +21 -0
- package/src/_pkgs/global/gfx/perfect-freehand/get-solid-stroke-points.ts +16 -0
- package/src/_pkgs/global/gfx/perfect-freehand/get-stroke-outline-points.ts +398 -0
- package/src/_pkgs/global/gfx/perfect-freehand/get-stroke-points.ts +132 -0
- package/src/_pkgs/global/gfx/perfect-freehand/get-stroke-radius.ts +16 -0
- package/src/_pkgs/global/gfx/perfect-freehand/get-stroke.ts +26 -0
- package/src/_pkgs/global/gfx/perfect-freehand/index.ts +5 -0
- package/src/_pkgs/global/gfx/perfect-freehand/types.ts +46 -0
- package/src/_pkgs/global/gfx/perfect-freehand/vec.ts +178 -0
- package/src/_pkgs/global/gfx/polyline.ts +136 -0
- package/src/_pkgs/global/gfx/svg-path.ts +160 -0
- package/src/_pkgs/global/gfx/xywh.ts +29 -0
- package/src/_pkgs/global/index.ts +1 -0
- package/src/_pkgs/global/lit/index.ts +3 -0
- package/src/_pkgs/global/lit/signal-watcher.ts +73 -0
- package/src/_pkgs/global/lit/watch.ts +68 -0
- package/src/_pkgs/global/lit/with-disposable.ts +53 -0
- package/src/_pkgs/global/types/index.ts +1 -0
- package/src/_pkgs/global/types/virtual-keyboard.ts +43 -0
- package/src/_pkgs/global/utils/crypto.ts +12 -0
- package/src/_pkgs/global/utils/function.ts +36 -0
- package/src/_pkgs/global/utils/index.ts +4 -0
- package/src/_pkgs/global/utils/logger.ts +34 -0
- package/src/_pkgs/global/utils/types.ts +14 -0
- package/src/_pkgs/std/clipboard/clipboard-adapter.ts +33 -0
- package/src/_pkgs/std/clipboard/clipboard.ts +323 -0
- package/src/_pkgs/std/clipboard/index.ts +2 -0
- package/src/_pkgs/std/clipboard/utils.ts +33 -0
- package/src/_pkgs/std/command/consts.ts +1 -0
- package/src/_pkgs/std/command/index.ts +3 -0
- package/src/_pkgs/std/command/manager.ts +237 -0
- package/src/_pkgs/std/command/types.ts +42 -0
- package/src/_pkgs/std/effects.ts +14 -0
- package/src/_pkgs/std/event/base.ts +62 -0
- package/src/_pkgs/std/event/control/clipboard.ts +56 -0
- package/src/_pkgs/std/event/control/keyboard.ts +149 -0
- package/src/_pkgs/std/event/control/pointer.ts +626 -0
- package/src/_pkgs/std/event/control/range.ts +156 -0
- package/src/_pkgs/std/event/dispatcher.ts +435 -0
- package/src/_pkgs/std/event/index.ts +4 -0
- package/src/_pkgs/std/event/keymap.ts +127 -0
- package/src/_pkgs/std/event/state/clipboard.ts +23 -0
- package/src/_pkgs/std/event/state/dnd.ts +23 -0
- package/src/_pkgs/std/event/state/index.ts +5 -0
- package/src/_pkgs/std/event/state/keyboard.ts +27 -0
- package/src/_pkgs/std/event/state/pointer.ts +83 -0
- package/src/_pkgs/std/event/state/source.ts +31 -0
- package/src/_pkgs/std/event/utils.ts +17 -0
- package/src/_pkgs/std/extension/block-view.ts +33 -0
- package/src/_pkgs/std/extension/config.ts +44 -0
- package/src/_pkgs/std/extension/dnd/index.ts +373 -0
- package/src/_pkgs/std/extension/dnd/types.ts +118 -0
- package/src/_pkgs/std/extension/editor-life-cycle.ts +49 -0
- package/src/_pkgs/std/extension/flavour.ts +26 -0
- package/src/_pkgs/std/extension/index.ts +10 -0
- package/src/_pkgs/std/extension/keymap.ts +49 -0
- package/src/_pkgs/std/extension/lifecycle-watcher.ts +70 -0
- package/src/_pkgs/std/extension/service-manager.ts +22 -0
- package/src/_pkgs/std/extension/service.ts +113 -0
- package/src/_pkgs/std/extension/widget-view-map.ts +40 -0
- package/src/_pkgs/std/gfx/controller.ts +284 -0
- package/src/_pkgs/std/gfx/cursor.ts +54 -0
- package/src/_pkgs/std/gfx/extension.ts +53 -0
- package/src/_pkgs/std/gfx/grid.ts +513 -0
- package/src/_pkgs/std/gfx/identifiers.ts +10 -0
- package/src/_pkgs/std/gfx/index.ts +117 -0
- package/src/_pkgs/std/gfx/interactivity/event.ts +48 -0
- package/src/_pkgs/std/gfx/interactivity/extension/base.ts +211 -0
- package/src/_pkgs/std/gfx/interactivity/extension/view.ts +134 -0
- package/src/_pkgs/std/gfx/interactivity/gfx-view-event-handler.ts +108 -0
- package/src/_pkgs/std/gfx/interactivity/index.ts +33 -0
- package/src/_pkgs/std/gfx/interactivity/manager.ts +1111 -0
- package/src/_pkgs/std/gfx/interactivity/resize/manager.ts +657 -0
- package/src/_pkgs/std/gfx/interactivity/types/clone.ts +7 -0
- package/src/_pkgs/std/gfx/interactivity/types/drag.ts +73 -0
- package/src/_pkgs/std/gfx/interactivity/types/resize.ts +41 -0
- package/src/_pkgs/std/gfx/interactivity/types/select.ts +33 -0
- package/src/_pkgs/std/gfx/interactivity/types/view.ts +173 -0
- package/src/_pkgs/std/gfx/keyboard.ts +51 -0
- package/src/_pkgs/std/gfx/layer.ts +909 -0
- package/src/_pkgs/std/gfx/model/base.ts +173 -0
- package/src/_pkgs/std/gfx/model/gfx-block-model.ts +315 -0
- package/src/_pkgs/std/gfx/model/model.ts +18 -0
- package/src/_pkgs/std/gfx/model/surface/decorators/common.ts +53 -0
- package/src/_pkgs/std/gfx/model/surface/decorators/convert.ts +49 -0
- package/src/_pkgs/std/gfx/model/surface/decorators/derive.ts +103 -0
- package/src/_pkgs/std/gfx/model/surface/decorators/field.ts +88 -0
- package/src/_pkgs/std/gfx/model/surface/decorators/index.ts +6 -0
- package/src/_pkgs/std/gfx/model/surface/decorators/local.ts +58 -0
- package/src/_pkgs/std/gfx/model/surface/decorators/observer.ts +122 -0
- package/src/_pkgs/std/gfx/model/surface/decorators/watch.ts +59 -0
- package/src/_pkgs/std/gfx/model/surface/element-model.ts +598 -0
- package/src/_pkgs/std/gfx/model/surface/local-element-model.ts +254 -0
- package/src/_pkgs/std/gfx/model/surface/surface-model.ts +697 -0
- package/src/_pkgs/std/gfx/selection.ts +408 -0
- package/src/_pkgs/std/gfx/surface-middleware.ts +61 -0
- package/src/_pkgs/std/gfx/tool/tool-controller.ts +635 -0
- package/src/_pkgs/std/gfx/tool/tool.ts +125 -0
- package/src/_pkgs/std/gfx/view/view-manager.ts +139 -0
- package/src/_pkgs/std/gfx/view/view.ts +225 -0
- package/src/_pkgs/std/gfx/viewport-element.ts +230 -0
- package/src/_pkgs/std/gfx/viewport.ts +659 -0
- package/src/_pkgs/std/identifier.ts +34 -0
- package/src/_pkgs/std/index.ts +9 -0
- package/src/_pkgs/std/inline/components/embed-gap.ts +12 -0
- package/src/_pkgs/std/inline/components/index.ts +3 -0
- package/src/_pkgs/std/inline/components/v-element.ts +113 -0
- package/src/_pkgs/std/inline/components/v-line.ts +156 -0
- package/src/_pkgs/std/inline/components/v-text.ts +34 -0
- package/src/_pkgs/std/inline/consts.ts +6 -0
- package/src/_pkgs/std/inline/extensions/index.ts +4 -0
- package/src/_pkgs/std/inline/extensions/inline-manager.ts +124 -0
- package/src/_pkgs/std/inline/extensions/inline-spec.ts +49 -0
- package/src/_pkgs/std/inline/extensions/markdown-matcher.ts +30 -0
- package/src/_pkgs/std/inline/extensions/type.ts +44 -0
- package/src/_pkgs/std/inline/index.ts +8 -0
- package/src/_pkgs/std/inline/inline-editor.ts +296 -0
- package/src/_pkgs/std/inline/range/active.ts +19 -0
- package/src/_pkgs/std/inline/range/consts.ts +9 -0
- package/src/_pkgs/std/inline/range/index.ts +4 -0
- package/src/_pkgs/std/inline/range/inline-range-provider.ts +118 -0
- package/src/_pkgs/std/inline/range/range-binding.ts +392 -0
- package/src/_pkgs/std/inline/range/range-manager.ts +261 -0
- package/src/_pkgs/std/inline/services/attribute.ts +106 -0
- package/src/_pkgs/std/inline/services/delta.ts +153 -0
- package/src/_pkgs/std/inline/services/event.ts +382 -0
- package/src/_pkgs/std/inline/services/hook.ts +35 -0
- package/src/_pkgs/std/inline/services/index.ts +6 -0
- package/src/_pkgs/std/inline/services/range.ts +394 -0
- package/src/_pkgs/std/inline/services/render.ts +185 -0
- package/src/_pkgs/std/inline/services/text.ts +140 -0
- package/src/_pkgs/std/inline/types.ts +37 -0
- package/src/_pkgs/std/inline/utils/attribute-renderer.ts +49 -0
- package/src/_pkgs/std/inline/utils/delta-convert.ts +63 -0
- package/src/_pkgs/std/inline/utils/dynamic-schema.ts +26 -0
- package/src/_pkgs/std/inline/utils/embed.ts +47 -0
- package/src/_pkgs/std/inline/utils/guard.ts +29 -0
- package/src/_pkgs/std/inline/utils/index.ts +11 -0
- package/src/_pkgs/std/inline/utils/inline-range.ts +74 -0
- package/src/_pkgs/std/inline/utils/point-conversion.ts +191 -0
- package/src/_pkgs/std/inline/utils/query.ts +20 -0
- package/src/_pkgs/std/inline/utils/range-conversion.ts +368 -0
- package/src/_pkgs/std/inline/utils/renderer.ts +18 -0
- package/src/_pkgs/std/inline/utils/text.ts +25 -0
- package/src/_pkgs/std/inline/utils/transform-input.ts +78 -0
- package/src/_pkgs/std/scope/index.ts +1 -0
- package/src/_pkgs/std/scope/std-scope.ts +169 -0
- package/src/_pkgs/std/selection/block.ts +33 -0
- package/src/_pkgs/std/selection/cursor.ts +45 -0
- package/src/_pkgs/std/selection/index.ts +4 -0
- package/src/_pkgs/std/selection/surface.ts +72 -0
- package/src/_pkgs/std/selection/text.ts +117 -0
- package/src/_pkgs/std/spec/index.ts +1 -0
- package/src/_pkgs/std/spec/type.ts +5 -0
- package/src/_pkgs/std/utils/fractional-indexing.ts +66 -0
- package/src/_pkgs/std/utils/gfx.ts +32 -0
- package/src/_pkgs/std/utils/layer.ts +175 -0
- package/src/_pkgs/std/utils/tree.ts +137 -0
- package/src/_pkgs/std/view/decorators/index.ts +1 -0
- package/src/_pkgs/std/view/decorators/required.ts +58 -0
- package/src/_pkgs/std/view/element/block-component.ts +315 -0
- package/src/_pkgs/std/view/element/consts.ts +10 -0
- package/src/_pkgs/std/view/element/gfx-block-component.ts +303 -0
- package/src/_pkgs/std/view/element/index.ts +6 -0
- package/src/_pkgs/std/view/element/lit-host.ts +197 -0
- package/src/_pkgs/std/view/element/shadowless-element.ts +97 -0
- package/src/_pkgs/std/view/element/widget-component.ts +98 -0
- package/src/_pkgs/std/view/index.ts +3 -0
- package/src/_pkgs/std/view/view-store.ts +145 -0
- package/src/_pkgs/store/adapter/assets.ts +159 -0
- package/src/_pkgs/store/adapter/base.ts +324 -0
- package/src/_pkgs/store/adapter/context.ts +119 -0
- package/src/_pkgs/store/adapter/index.ts +3 -0
- package/src/_pkgs/store/consts.ts +7 -0
- package/src/_pkgs/store/extension/extension.ts +134 -0
- package/src/_pkgs/store/extension/history/history-extension.ts +79 -0
- package/src/_pkgs/store/extension/history/index.ts +1 -0
- package/src/_pkgs/store/extension/index.ts +6 -0
- package/src/_pkgs/store/extension/schema.ts +20 -0
- package/src/_pkgs/store/extension/selection/base.ts +46 -0
- package/src/_pkgs/store/extension/selection/identifier.ts +17 -0
- package/src/_pkgs/store/extension/selection/index.ts +4 -0
- package/src/_pkgs/store/extension/selection/selection-extension.ts +189 -0
- package/src/_pkgs/store/extension/selection/types.ts +9 -0
- package/src/_pkgs/store/extension/store-extension.ts +61 -0
- package/src/_pkgs/store/extension/workspace/doc.ts +38 -0
- package/src/_pkgs/store/extension/workspace/index.ts +3 -0
- package/src/_pkgs/store/extension/workspace/workspace-meta.ts +39 -0
- package/src/_pkgs/store/extension/workspace/workspace.ts +30 -0
- package/src/_pkgs/store/index.ts +27 -0
- package/src/_pkgs/store/model/block/block-model.ts +158 -0
- package/src/_pkgs/store/model/block/block.ts +65 -0
- package/src/_pkgs/store/model/block/draft.ts +42 -0
- package/src/_pkgs/store/model/block/flat-sync-controller.ts +173 -0
- package/src/_pkgs/store/model/block/index.ts +5 -0
- package/src/_pkgs/store/model/block/sync-controller.ts +391 -0
- package/src/_pkgs/store/model/block/types.ts +23 -0
- package/src/_pkgs/store/model/block/zod.ts +117 -0
- package/src/_pkgs/store/model/index.ts +3 -0
- package/src/_pkgs/store/model/store/crud.ts +397 -0
- package/src/_pkgs/store/model/store/identifier.ts +5 -0
- package/src/_pkgs/store/model/store/index.ts +3 -0
- package/src/_pkgs/store/model/store/query.ts +82 -0
- package/src/_pkgs/store/model/store/store.ts +1298 -0
- package/src/_pkgs/store/model/store/utils.ts +36 -0
- package/src/_pkgs/store/model/store-container.ts +86 -0
- package/src/_pkgs/store/reactive/base-reactive-data.ts +76 -0
- package/src/_pkgs/store/reactive/boxed.ts +137 -0
- package/src/_pkgs/store/reactive/flat-native-y/index.ts +147 -0
- package/src/_pkgs/store/reactive/flat-native-y/initialize.ts +59 -0
- package/src/_pkgs/store/reactive/flat-native-y/proxy.ts +203 -0
- package/src/_pkgs/store/reactive/flat-native-y/signal-updater.ts +58 -0
- package/src/_pkgs/store/reactive/flat-native-y/types.ts +26 -0
- package/src/_pkgs/store/reactive/flat-native-y/utils.ts +50 -0
- package/src/_pkgs/store/reactive/flat-native-y/y-event-handler.ts +117 -0
- package/src/_pkgs/store/reactive/flat-native-y/y-map-updater.ts +61 -0
- package/src/_pkgs/store/reactive/index.ts +8 -0
- package/src/_pkgs/store/reactive/is-pure-object.ts +8 -0
- package/src/_pkgs/store/reactive/memory.ts +4 -0
- package/src/_pkgs/store/reactive/native-y.ts +74 -0
- package/src/_pkgs/store/reactive/proxy.ts +390 -0
- package/src/_pkgs/store/reactive/stash-pop.ts +17 -0
- package/src/_pkgs/store/reactive/text/attributes.ts +12 -0
- package/src/_pkgs/store/reactive/text/index.ts +3 -0
- package/src/_pkgs/store/reactive/text/text.ts +472 -0
- package/src/_pkgs/store/reactive/text/types.ts +22 -0
- package/src/_pkgs/store/reactive/types.ts +19 -0
- package/src/_pkgs/store/schema/error.ts +10 -0
- package/src/_pkgs/store/schema/index.ts +1 -0
- package/src/_pkgs/store/schema/schema.ts +325 -0
- package/src/_pkgs/store/test/index.ts +10 -0
- package/src/_pkgs/store/test/test-doc.ts +182 -0
- package/src/_pkgs/store/test/test-meta.ts +179 -0
- package/src/_pkgs/store/test/test-workspace.ts +231 -0
- package/src/_pkgs/store/transformer/assets.ts +105 -0
- package/src/_pkgs/store/transformer/base.ts +89 -0
- package/src/_pkgs/store/transformer/index.ts +7 -0
- package/src/_pkgs/store/transformer/json.ts +51 -0
- package/src/_pkgs/store/transformer/middleware.ts +120 -0
- package/src/_pkgs/store/transformer/slice.ts +42 -0
- package/src/_pkgs/store/transformer/transformer.ts +660 -0
- package/src/_pkgs/store/transformer/type.ts +74 -0
- package/src/_pkgs/store/utils/id-generator.ts +12 -0
- package/src/_pkgs/store/yjs/awareness.ts +69 -0
- package/src/_pkgs/store/yjs/index.ts +2 -0
- package/src/_pkgs/store/yjs/utils.ts +11 -0
- package/src/_pkgs/sync/awareness/engine.ts +18 -0
- package/src/_pkgs/sync/awareness/impl/broadcast.ts +73 -0
- package/src/_pkgs/sync/awareness/impl/index.ts +1 -0
- package/src/_pkgs/sync/awareness/index.ts +3 -0
- package/src/_pkgs/sync/awareness/source.ts +6 -0
- package/src/_pkgs/sync/blob/engine.ts +205 -0
- package/src/_pkgs/sync/blob/impl/index.ts +2 -0
- package/src/_pkgs/sync/blob/impl/indexeddb.ts +39 -0
- package/src/_pkgs/sync/blob/impl/memory.ts +27 -0
- package/src/_pkgs/sync/blob/index.ts +3 -0
- package/src/_pkgs/sync/blob/source.ts +23 -0
- package/src/_pkgs/sync/doc/consts.ts +15 -0
- package/src/_pkgs/sync/doc/engine.ts +291 -0
- package/src/_pkgs/sync/doc/impl/broadcast.ts +96 -0
- package/src/_pkgs/sync/doc/impl/index.ts +3 -0
- package/src/_pkgs/sync/doc/impl/indexeddb.ts +116 -0
- package/src/_pkgs/sync/doc/impl/noop.ts +18 -0
- package/src/_pkgs/sync/doc/index.ts +21 -0
- package/src/_pkgs/sync/doc/peer.ts +451 -0
- package/src/_pkgs/sync/doc/source.ts +28 -0
- package/src/_pkgs/sync/index.ts +3 -0
- package/src/_pkgs/sync/utils/async-queue.ts +102 -0
- package/src/_pkgs/sync/utils/throw-if-aborted.ts +9 -0
- package/src/blocks/attachment/index.ts +1 -0
- package/src/blocks/attachment/store.ts +1 -0
- package/src/blocks/attachment/view.ts +1 -0
- package/src/blocks/bookmark/index.ts +1 -0
- package/src/blocks/bookmark/store.ts +1 -0
- package/src/blocks/bookmark/view.ts +1 -0
- package/src/blocks/callout/index.ts +1 -0
- package/src/blocks/callout/store.ts +1 -0
- package/src/blocks/callout/view.ts +1 -0
- package/src/blocks/code/index.ts +1 -0
- package/src/blocks/code/store.ts +1 -0
- package/src/blocks/code/view.ts +1 -0
- package/src/blocks/data-view/index.ts +1 -0
- package/src/blocks/data-view/store.ts +1 -0
- package/src/blocks/data-view/view.ts +1 -0
- package/src/blocks/database/index.ts +1 -0
- package/src/blocks/database/store.ts +1 -0
- package/src/blocks/database/view.ts +1 -0
- package/src/blocks/divider/index.ts +1 -0
- package/src/blocks/divider/store.ts +1 -0
- package/src/blocks/divider/view.ts +1 -0
- package/src/blocks/edgeless-text/index.ts +1 -0
- package/src/blocks/edgeless-text/store.ts +1 -0
- package/src/blocks/edgeless-text/view.ts +1 -0
- package/src/blocks/embed/index.ts +1 -0
- package/src/blocks/embed/store.ts +1 -0
- package/src/blocks/embed/view.ts +1 -0
- package/src/blocks/embed-doc/index.ts +1 -0
- package/src/blocks/embed-doc/store.ts +1 -0
- package/src/blocks/embed-doc/view.ts +1 -0
- package/src/blocks/frame/index.ts +1 -0
- package/src/blocks/frame/store.ts +1 -0
- package/src/blocks/frame/view.ts +1 -0
- package/src/blocks/image/index.ts +1 -0
- package/src/blocks/image/store.ts +1 -0
- package/src/blocks/image/view.ts +1 -0
- package/src/blocks/latex/index.ts +1 -0
- package/src/blocks/latex/store.ts +1 -0
- package/src/blocks/latex/view.ts +1 -0
- package/src/blocks/list/index.ts +1 -0
- package/src/blocks/list/store.ts +1 -0
- package/src/blocks/list/view.ts +1 -0
- package/src/blocks/note/index.ts +1 -0
- package/src/blocks/note/store.ts +1 -0
- package/src/blocks/note/view.ts +1 -0
- package/src/blocks/paragraph/index.ts +1 -0
- package/src/blocks/paragraph/store.ts +1 -0
- package/src/blocks/paragraph/view.ts +1 -0
- package/src/blocks/root/index.ts +1 -0
- package/src/blocks/root/store.ts +1 -0
- package/src/blocks/root/view.ts +1 -0
- package/src/blocks/surface/index.ts +1 -0
- package/src/blocks/surface/store.ts +1 -0
- package/src/blocks/surface/view.ts +1 -0
- package/src/blocks/surface-ref/index.ts +1 -0
- package/src/blocks/surface-ref/store.ts +1 -0
- package/src/blocks/surface-ref/view.ts +1 -0
- package/src/blocks/table/index.ts +1 -0
- package/src/blocks/table/store.ts +1 -0
- package/src/blocks/table/view.ts +1 -0
- package/src/components/block-selection.ts +1 -0
- package/src/components/block-zero-width.ts +1 -0
- package/src/components/caption.ts +1 -0
- package/src/components/card-style-dropdown-menu.ts +1 -0
- package/src/components/citation.ts +1 -0
- package/src/components/color-picker.ts +1 -0
- package/src/components/context-menu.ts +1 -0
- package/src/components/date-picker.ts +1 -0
- package/src/components/drop-indicator.ts +1 -0
- package/src/components/edgeless-line-styles-panel.ts +1 -0
- package/src/components/edgeless-line-width-panel.ts +1 -0
- package/src/components/edgeless-shape-color-picker.ts +1 -0
- package/src/components/embed-card-modal.ts +1 -0
- package/src/components/filterable-list.ts +1 -0
- package/src/components/highlight-dropdown-menu.ts +1 -0
- package/src/components/hover.ts +1 -0
- package/src/components/icon-button.ts +1 -0
- package/src/components/icons.ts +1 -0
- package/src/components/link-preview.ts +1 -0
- package/src/components/linked-doc-title.ts +1 -0
- package/src/components/notification.ts +1 -0
- package/src/components/open-doc-dropdown-menu.ts +1 -0
- package/src/components/peek.ts +1 -0
- package/src/components/portal.ts +1 -0
- package/src/components/resource.ts +1 -0
- package/src/components/size-dropdown-menu.ts +1 -0
- package/src/components/smooth-corner.ts +1 -0
- package/src/components/toast.ts +1 -0
- package/src/components/toggle-button.ts +1 -0
- package/src/components/toggle-switch.ts +1 -0
- package/src/components/toolbar.ts +1 -0
- package/src/components/tooltip-content-with-shortcut.ts +1 -0
- package/src/components/view-dropdown-menu.ts +1 -0
- package/src/data-view/effects.ts +1 -0
- package/src/data-view/index.ts +1 -0
- package/src/effects.ts +34 -0
- package/src/ext-loader/index.ts +1 -0
- package/src/extensions/store.ts +83 -0
- package/src/extensions/view.ts +143 -0
- package/src/flags.ts +60 -0
- package/src/foundation/clipboard.ts +1 -0
- package/src/foundation/store.ts +1 -0
- package/src/foundation/view.ts +1 -0
- package/src/fragments/adapter-panel/index.ts +1 -0
- package/src/fragments/adapter-panel/view.ts +1 -0
- package/src/fragments/doc-title/index.ts +1 -0
- package/src/fragments/doc-title/view.ts +1 -0
- package/src/fragments/frame-panel/index.ts +1 -0
- package/src/fragments/frame-panel/view.ts +1 -0
- package/src/fragments/outline/index.ts +1 -0
- package/src/fragments/outline/view.ts +1 -0
- package/src/gfx/brush/index.ts +1 -0
- package/src/gfx/brush/store.ts +1 -0
- package/src/gfx/brush/view.ts +1 -0
- package/src/gfx/connector/index.ts +1 -0
- package/src/gfx/connector/store.ts +1 -0
- package/src/gfx/connector/view.ts +1 -0
- package/src/gfx/group/index.ts +1 -0
- package/src/gfx/group/store.ts +1 -0
- package/src/gfx/group/view.ts +1 -0
- package/src/gfx/link/index.ts +1 -0
- package/src/gfx/link/view.ts +1 -0
- package/src/gfx/mindmap/index.ts +1 -0
- package/src/gfx/mindmap/store.ts +1 -0
- package/src/gfx/mindmap/view.ts +1 -0
- package/src/gfx/note/index.ts +1 -0
- package/src/gfx/note/view.ts +1 -0
- package/src/gfx/pointer/index.ts +1 -0
- package/src/gfx/pointer/view.ts +1 -0
- package/src/gfx/shape/index.ts +1 -0
- package/src/gfx/shape/store.ts +1 -0
- package/src/gfx/shape/view.ts +1 -0
- package/src/gfx/template/index.ts +1 -0
- package/src/gfx/template/view.ts +1 -0
- package/src/gfx/text/index.ts +1 -0
- package/src/gfx/text/store.ts +1 -0
- package/src/gfx/text/view.ts +1 -0
- package/src/gfx/turbo-renderer.ts +1 -0
- package/src/global/di.ts +1 -0
- package/src/global/disposable.ts +1 -0
- package/src/global/env.ts +1 -0
- package/src/global/exceptions.ts +1 -0
- package/src/global/gfx.ts +1 -0
- package/src/global/index.ts +1 -0
- package/src/global/lit.ts +1 -0
- package/src/global/types.ts +1 -0
- package/src/global/utils.ts +1 -0
- package/src/index.ts +1 -0
- package/src/inlines/comment/index.ts +1 -0
- package/src/inlines/footnote/index.ts +1 -0
- package/src/inlines/footnote/store.ts +1 -0
- package/src/inlines/footnote/view.ts +1 -0
- package/src/inlines/latex/index.ts +1 -0
- package/src/inlines/latex/store.ts +1 -0
- package/src/inlines/latex/view.ts +1 -0
- package/src/inlines/link/index.ts +1 -0
- package/src/inlines/link/store.ts +1 -0
- package/src/inlines/link/view.ts +1 -0
- package/src/inlines/mention/index.ts +1 -0
- package/src/inlines/mention/view.ts +1 -0
- package/src/inlines/preset/index.ts +1 -0
- package/src/inlines/preset/store.ts +1 -0
- package/src/inlines/preset/view.ts +1 -0
- package/src/inlines/reference/index.ts +1 -0
- package/src/inlines/reference/store.ts +1 -0
- package/src/inlines/reference/view.ts +1 -0
- package/src/model/index.ts +1 -0
- package/src/rich-text/effects.ts +1 -0
- package/src/rich-text/index.ts +1 -0
- package/src/schemas.ts +78 -0
- package/src/shared/adapters.ts +1 -0
- package/src/shared/commands.ts +1 -0
- package/src/shared/consts.ts +1 -0
- package/src/shared/selection.ts +1 -0
- package/src/shared/services.ts +1 -0
- package/src/shared/styles.ts +1 -0
- package/src/shared/theme.ts +1 -0
- package/src/shared/types.ts +1 -0
- package/src/shared/utils.ts +1 -0
- package/src/std/effects.ts +1 -0
- package/src/std/gfx.ts +1 -0
- package/src/std/index.ts +1 -0
- package/src/std/inline.ts +1 -0
- package/src/store/index.ts +3 -0
- package/src/store/test.ts +1 -0
- package/src/sync/index.ts +1 -0
- package/src/widgets/drag-handle/index.ts +1 -0
- package/src/widgets/drag-handle/view.ts +1 -0
- package/src/widgets/edgeless-auto-connect/index.ts +1 -0
- package/src/widgets/edgeless-auto-connect/view.ts +1 -0
- package/src/widgets/edgeless-dragging-area/index.ts +1 -0
- package/src/widgets/edgeless-dragging-area/view.ts +1 -0
- package/src/widgets/edgeless-selected-rect/index.ts +1 -0
- package/src/widgets/edgeless-selected-rect/view.ts +1 -0
- package/src/widgets/edgeless-toolbar/index.ts +1 -0
- package/src/widgets/edgeless-toolbar/view.ts +1 -0
- package/src/widgets/edgeless-zoom-toolbar/index.ts +1 -0
- package/src/widgets/edgeless-zoom-toolbar/view.ts +1 -0
- package/src/widgets/frame-title/index.ts +1 -0
- package/src/widgets/frame-title/view.ts +1 -0
- package/src/widgets/keyboard-toolbar/index.ts +1 -0
- package/src/widgets/keyboard-toolbar/view.ts +1 -0
- package/src/widgets/linked-doc/index.ts +1 -0
- package/src/widgets/linked-doc/view.ts +1 -0
- package/src/widgets/note-slicer/index.ts +1 -0
- package/src/widgets/note-slicer/view.ts +1 -0
- package/src/widgets/page-dragging-area/index.ts +1 -0
- package/src/widgets/page-dragging-area/view.ts +1 -0
- package/src/widgets/remote-selection/index.ts +1 -0
- package/src/widgets/remote-selection/view.ts +1 -0
- package/src/widgets/scroll-anchoring/index.ts +1 -0
- package/src/widgets/scroll-anchoring/view.ts +1 -0
- package/src/widgets/slash-menu/index.ts +1 -0
- package/src/widgets/slash-menu/view.ts +1 -0
- package/src/widgets/toolbar/index.ts +1 -0
- package/src/widgets/toolbar/view.ts +1 -0
- package/src/widgets/viewport-overlay/index.ts +1 -0
- package/src/widgets/viewport-overlay/view.ts +1 -0
|
@@ -0,0 +1,619 @@
|
|
|
1
|
+
import { svg } from 'lit';
|
|
2
|
+
|
|
3
|
+
export const basketIconLight = svg`<svg width="76" height="17" viewBox="0 0 76 17" fill="none" xmlns="http://www.w3.org/2000/svg"
|
|
4
|
+
xmlns:xlink="http://www.w3.org/1999/xlink">
|
|
5
|
+
<g filter="url(#filter0_b_5310_64490)">
|
|
6
|
+
<mask id="path-1-inside-1_5310_64490" fill="white">
|
|
7
|
+
<path fill-rule="evenodd" clip-rule="evenodd"
|
|
8
|
+
d="M4 1.62744C2.89543 1.62744 2 2.52287 2 3.62744V29.6088H73.943V3.62744C73.943 2.52287 73.0476 1.62744 71.943 1.62744H4ZM25.5294 5.94132C23.97 5.94132 22.7059 7.20546 22.7059 8.76485C22.7059 10.3242 23.97 11.5884 25.5294 11.5884H50.9412C52.5006 11.5884 53.7647 10.3242 53.7647 8.76485C53.7647 7.20546 52.5006 5.94132 50.9412 5.94132H25.5294Z" />
|
|
9
|
+
</mask>
|
|
10
|
+
<path fill-rule="evenodd" clip-rule="evenodd"
|
|
11
|
+
d="M4 1.62744C2.89543 1.62744 2 2.52287 2 3.62744V29.6088H73.943V3.62744C73.943 2.52287 73.0476 1.62744 71.943 1.62744H4ZM25.5294 5.94132C23.97 5.94132 22.7059 7.20546 22.7059 8.76485C22.7059 10.3242 23.97 11.5884 25.5294 11.5884H50.9412C52.5006 11.5884 53.7647 10.3242 53.7647 8.76485C53.7647 7.20546 52.5006 5.94132 50.9412 5.94132H25.5294Z"
|
|
12
|
+
fill="url(#paint0_linear_5310_64490)" fill-opacity="0.2" />
|
|
13
|
+
<path fill-rule="evenodd" clip-rule="evenodd"
|
|
14
|
+
d="M4 1.62744C2.89543 1.62744 2 2.52287 2 3.62744V29.6088H73.943V3.62744C73.943 2.52287 73.0476 1.62744 71.943 1.62744H4ZM25.5294 5.94132C23.97 5.94132 22.7059 7.20546 22.7059 8.76485C22.7059 10.3242 23.97 11.5884 25.5294 11.5884H50.9412C52.5006 11.5884 53.7647 10.3242 53.7647 8.76485C53.7647 7.20546 52.5006 5.94132 50.9412 5.94132H25.5294Z"
|
|
15
|
+
fill="url(#pattern0_5310_64490)" fill-opacity="0.2" />
|
|
16
|
+
<path
|
|
17
|
+
d="M2 29.6088H1V30.6088H2V29.6088ZM73.943 29.6088V30.6088H74.943V29.6088H73.943ZM3 3.62744C3 3.07516 3.44772 2.62744 4 2.62744V0.627441C2.34315 0.627441 1 1.97059 1 3.62744H3ZM3 29.6088V3.62744H1V29.6088H3ZM73.943 28.6088H2V30.6088H73.943V28.6088ZM72.943 3.62744V29.6088H74.943V3.62744H72.943ZM71.943 2.62744C72.4953 2.62744 72.943 3.07515 72.943 3.62744H74.943C74.943 1.97059 73.5999 0.627441 71.943 0.627441V2.62744ZM4 2.62744H71.943V0.627441H4V2.62744ZM23.7059 8.76485C23.7059 7.75774 24.5223 6.94132 25.5294 6.94132V4.94132C23.4177 4.94132 21.7059 6.65317 21.7059 8.76485H23.7059ZM25.5294 10.5884C24.5223 10.5884 23.7059 9.77196 23.7059 8.76485H21.7059C21.7059 10.8765 23.4177 12.5884 25.5294 12.5884V10.5884ZM50.9412 10.5884H25.5294V12.5884H50.9412V10.5884ZM52.7647 8.76485C52.7647 9.77196 51.9483 10.5884 50.9412 10.5884V12.5884C53.0529 12.5884 54.7647 10.8765 54.7647 8.76485H52.7647ZM50.9412 6.94132C51.9483 6.94132 52.7647 7.75774 52.7647 8.76485H54.7647C54.7647 6.65317 53.0529 4.94132 50.9412 4.94132V6.94132ZM25.5294 6.94132H50.9412V4.94132H25.5294V6.94132Z"
|
|
18
|
+
fill="#DFDFDF" mask="url(#path-1-inside-1_5310_64490)" />
|
|
19
|
+
<path
|
|
20
|
+
d="M2 29.6088H1V30.6088H2V29.6088ZM73.943 29.6088V30.6088H74.943V29.6088H73.943ZM3 3.62744C3 3.07516 3.44772 2.62744 4 2.62744V0.627441C2.34315 0.627441 1 1.97059 1 3.62744H3ZM3 29.6088V3.62744H1V29.6088H3ZM73.943 28.6088H2V30.6088H73.943V28.6088ZM72.943 3.62744V29.6088H74.943V3.62744H72.943ZM71.943 2.62744C72.4953 2.62744 72.943 3.07515 72.943 3.62744H74.943C74.943 1.97059 73.5999 0.627441 71.943 0.627441V2.62744ZM4 2.62744H71.943V0.627441H4V2.62744ZM23.7059 8.76485C23.7059 7.75774 24.5223 6.94132 25.5294 6.94132V4.94132C23.4177 4.94132 21.7059 6.65317 21.7059 8.76485H23.7059ZM25.5294 10.5884C24.5223 10.5884 23.7059 9.77196 23.7059 8.76485H21.7059C21.7059 10.8765 23.4177 12.5884 25.5294 12.5884V10.5884ZM50.9412 10.5884H25.5294V12.5884H50.9412V10.5884ZM52.7647 8.76485C52.7647 9.77196 51.9483 10.5884 50.9412 10.5884V12.5884C53.0529 12.5884 54.7647 10.8765 54.7647 8.76485H52.7647ZM50.9412 6.94132C51.9483 6.94132 52.7647 7.75774 52.7647 8.76485H54.7647C54.7647 6.65317 53.0529 4.94132 50.9412 4.94132V6.94132ZM25.5294 6.94132H50.9412V4.94132H25.5294V6.94132Z"
|
|
21
|
+
fill="url(#paint1_linear_5310_64490)" fill-opacity="0.2" mask="url(#path-1-inside-1_5310_64490)" />
|
|
22
|
+
</g>
|
|
23
|
+
<g filter="url(#filter1_f_5310_64490)">
|
|
24
|
+
<path
|
|
25
|
+
d="M70.2669 3.15204C71.3826 3.15204 72.2871 4.05651 72.2871 5.17224L72.2871 17.0683C72.2871 18.2224 71.3515 19.158 70.1974 19.158C68.779 19.158 67.7727 17.775 68.209 16.4254L69.6661 11.919C69.9708 10.9766 69.9431 9.95821 69.5876 9.03381L68.3813 5.8974C67.8725 4.57417 68.8492 3.15204 70.2669 3.15204Z"
|
|
26
|
+
fill="url(#paint2_linear_5310_64490)" />
|
|
27
|
+
</g>
|
|
28
|
+
<g filter="url(#filter2_f_5310_64490)">
|
|
29
|
+
<path
|
|
30
|
+
d="M6.71501 5.1665C5.1902 5.1665 3.9541 6.40261 3.9541 7.92741L3.9541 13.7517C3.9541 15.4078 5.29667 16.7504 6.9528 16.7504L7.67637 16.7504C9.95388 16.7504 11.1826 14.079 9.70058 12.3497L9.43766 12.0429C8.67279 11.1505 8.73042 9.8179 9.56949 8.9948C10.9975 7.59395 10.0056 5.1665 8.00525 5.1665L6.71501 5.1665Z"
|
|
31
|
+
fill="url(#paint3_linear_5310_64490)" />
|
|
32
|
+
</g>
|
|
33
|
+
<defs>
|
|
34
|
+
<filter id="filter0_b_5310_64490" x="0" y="-0.372559" width="75.9434" height="31.9814" filterUnits="userSpaceOnUse"
|
|
35
|
+
color-interpolation-filters="sRGB">
|
|
36
|
+
<feFlood flood-opacity="0" result="BackgroundImageFix" />
|
|
37
|
+
<feGaussianBlur in="BackgroundImageFix" stdDeviation="1" />
|
|
38
|
+
<feComposite in2="SourceAlpha" operator="in" result="effect1_backgroundBlur_5310_64490" />
|
|
39
|
+
<feBlend mode="normal" in="SourceGraphic" in2="effect1_backgroundBlur_5310_64490" result="shape" />
|
|
40
|
+
</filter>
|
|
41
|
+
<pattern id="pattern0_5310_64490" patternContentUnits="objectBoundingBox" width="1.49325" height="3.83929">
|
|
42
|
+
<use xlink:href="#image0_5310_64490" transform="scale(0.000729125 0.00187465)" />
|
|
43
|
+
</pattern>
|
|
44
|
+
<filter id="filter1_f_5310_64490" x="65.1064" y="0.152039" width="10.1807" height="22.006"
|
|
45
|
+
filterUnits="userSpaceOnUse" color-interpolation-filters="sRGB">
|
|
46
|
+
<feFlood flood-opacity="0" result="BackgroundImageFix" />
|
|
47
|
+
<feBlend mode="normal" in="SourceGraphic" in2="BackgroundImageFix" result="shape" />
|
|
48
|
+
<feGaussianBlur stdDeviation="1.5" result="effect1_foregroundBlur_5310_64490" />
|
|
49
|
+
</filter>
|
|
50
|
+
<filter id="filter2_f_5310_64490" x="0.954102" y="2.1665" width="12.3936" height="17.5839"
|
|
51
|
+
filterUnits="userSpaceOnUse" color-interpolation-filters="sRGB">
|
|
52
|
+
<feFlood flood-opacity="0" result="BackgroundImageFix" />
|
|
53
|
+
<feBlend mode="normal" in="SourceGraphic" in2="BackgroundImageFix" result="shape" />
|
|
54
|
+
<feGaussianBlur stdDeviation="1.5" result="effect1_foregroundBlur_5310_64490" />
|
|
55
|
+
</filter>
|
|
56
|
+
<linearGradient id="paint0_linear_5310_64490" x1="3.19554" y1="11.2178" x2="72.9973" y2="11.6556"
|
|
57
|
+
gradientUnits="userSpaceOnUse">
|
|
58
|
+
<stop stop-opacity="0" />
|
|
59
|
+
<stop offset="0.848958" stop-opacity="0.66" />
|
|
60
|
+
<stop offset="1" stop-opacity="0" />
|
|
61
|
+
</linearGradient>
|
|
62
|
+
<linearGradient id="paint1_linear_5310_64490" x1="2" y1="5.50025" x2="74" y2="7.50025"
|
|
63
|
+
gradientUnits="userSpaceOnUse">
|
|
64
|
+
<stop stop-color="white" stop-opacity="0.12" />
|
|
65
|
+
<stop offset="0.71" stop-opacity="0.77" />
|
|
66
|
+
<stop offset="1" stop-opacity="0.12" />
|
|
67
|
+
</linearGradient>
|
|
68
|
+
<linearGradient id="paint2_linear_5310_64490" x1="70.1607" y1="3.80093" x2="70.1607" y2="20.4558"
|
|
69
|
+
gradientUnits="userSpaceOnUse">
|
|
70
|
+
<stop stop-color="white" />
|
|
71
|
+
<stop offset="1" stop-color="white" stop-opacity="0" />
|
|
72
|
+
</linearGradient>
|
|
73
|
+
<linearGradient id="paint3_linear_5310_64490" x1="8.03322" y1="5.63612" x2="8.03322" y2="17.6896"
|
|
74
|
+
gradientUnits="userSpaceOnUse">
|
|
75
|
+
<stop stop-color="white" />
|
|
76
|
+
<stop offset="1" stop-color="white" stop-opacity="0" />
|
|
77
|
+
</linearGradient>
|
|
78
|
+
</defs>
|
|
79
|
+
</svg>`;
|
|
80
|
+
|
|
81
|
+
export const basketIconDark = svg`<svg width="75" height="17" viewBox="0 0 75 17" fill="none" xmlns="http://www.w3.org/2000/svg"
|
|
82
|
+
xmlns:xlink="http://www.w3.org/1999/xlink">
|
|
83
|
+
<g filter="url(#filter0_b_5310_64515)">
|
|
84
|
+
<mask id="path-1-inside-1_5310_64515" fill="white">
|
|
85
|
+
<path fill-rule="evenodd" clip-rule="evenodd"
|
|
86
|
+
d="M3 1.62744C1.89543 1.62744 1 2.52287 1 3.62744V29.6088H72.943V3.62744C72.943 2.52287 72.0476 1.62744 70.943 1.62744H3ZM24.5294 5.94132C22.97 5.94132 21.7059 7.20546 21.7059 8.76485C21.7059 10.3242 22.97 11.5884 24.5294 11.5884H49.9412C51.5006 11.5884 52.7647 10.3242 52.7647 8.76485C52.7647 7.20546 51.5006 5.94132 49.9412 5.94132H24.5294Z" />
|
|
87
|
+
</mask>
|
|
88
|
+
<path fill-rule="evenodd" clip-rule="evenodd"
|
|
89
|
+
d="M3 1.62744C1.89543 1.62744 1 2.52287 1 3.62744V29.6088H72.943V3.62744C72.943 2.52287 72.0476 1.62744 70.943 1.62744H3ZM24.5294 5.94132C22.97 5.94132 21.7059 7.20546 21.7059 8.76485C21.7059 10.3242 22.97 11.5884 24.5294 11.5884H49.9412C51.5006 11.5884 52.7647 10.3242 52.7647 8.76485C52.7647 7.20546 51.5006 5.94132 49.9412 5.94132H24.5294Z"
|
|
90
|
+
fill="url(#paint0_linear_5310_64515)" fill-opacity="0.2" />
|
|
91
|
+
<path fill-rule="evenodd" clip-rule="evenodd"
|
|
92
|
+
d="M3 1.62744C1.89543 1.62744 1 2.52287 1 3.62744V29.6088H72.943V3.62744C72.943 2.52287 72.0476 1.62744 70.943 1.62744H3ZM24.5294 5.94132C22.97 5.94132 21.7059 7.20546 21.7059 8.76485C21.7059 10.3242 22.97 11.5884 24.5294 11.5884H49.9412C51.5006 11.5884 52.7647 10.3242 52.7647 8.76485C52.7647 7.20546 51.5006 5.94132 49.9412 5.94132H24.5294Z"
|
|
93
|
+
fill="url(#pattern0_5310_64515)" fill-opacity="0.2" />
|
|
94
|
+
<path
|
|
95
|
+
d="M1 29.6088H0V30.6088H1V29.6088ZM72.943 29.6088V30.6088H73.943V29.6088H72.943ZM2 3.62744C2 3.07516 2.44772 2.62744 3 2.62744V0.627441C1.34315 0.627441 0 1.97059 0 3.62744H2ZM2 29.6088V3.62744H0V29.6088H2ZM72.943 28.6088H1V30.6088H72.943V28.6088ZM71.943 3.62744V29.6088H73.943V3.62744H71.943ZM70.943 2.62744C71.4953 2.62744 71.943 3.07515 71.943 3.62744H73.943C73.943 1.97059 72.5999 0.627441 70.943 0.627441V2.62744ZM3 2.62744H70.943V0.627441H3V2.62744ZM22.7059 8.76485C22.7059 7.75774 23.5223 6.94132 24.5294 6.94132V4.94132C22.4177 4.94132 20.7059 6.65317 20.7059 8.76485H22.7059ZM24.5294 10.5884C23.5223 10.5884 22.7059 9.77196 22.7059 8.76485H20.7059C20.7059 10.8765 22.4177 12.5884 24.5294 12.5884V10.5884ZM49.9412 10.5884H24.5294V12.5884H49.9412V10.5884ZM51.7647 8.76485C51.7647 9.77196 50.9483 10.5884 49.9412 10.5884V12.5884C52.0529 12.5884 53.7647 10.8765 53.7647 8.76485H51.7647ZM49.9412 6.94132C50.9483 6.94132 51.7647 7.75774 51.7647 8.76485H53.7647C53.7647 6.65317 52.0529 4.94132 49.9412 4.94132V6.94132ZM24.5294 6.94132H49.9412V4.94132H24.5294V6.94132Z"
|
|
96
|
+
fill="#7C7C7C" mask="url(#path-1-inside-1_5310_64515)" />
|
|
97
|
+
<path
|
|
98
|
+
d="M1 29.6088H0V30.6088H1V29.6088ZM72.943 29.6088V30.6088H73.943V29.6088H72.943ZM2 3.62744C2 3.07516 2.44772 2.62744 3 2.62744V0.627441C1.34315 0.627441 0 1.97059 0 3.62744H2ZM2 29.6088V3.62744H0V29.6088H2ZM72.943 28.6088H1V30.6088H72.943V28.6088ZM71.943 3.62744V29.6088H73.943V3.62744H71.943ZM70.943 2.62744C71.4953 2.62744 71.943 3.07515 71.943 3.62744H73.943C73.943 1.97059 72.5999 0.627441 70.943 0.627441V2.62744ZM3 2.62744H70.943V0.627441H3V2.62744ZM22.7059 8.76485C22.7059 7.75774 23.5223 6.94132 24.5294 6.94132V4.94132C22.4177 4.94132 20.7059 6.65317 20.7059 8.76485H22.7059ZM24.5294 10.5884C23.5223 10.5884 22.7059 9.77196 22.7059 8.76485H20.7059C20.7059 10.8765 22.4177 12.5884 24.5294 12.5884V10.5884ZM49.9412 10.5884H24.5294V12.5884H49.9412V10.5884ZM51.7647 8.76485C51.7647 9.77196 50.9483 10.5884 49.9412 10.5884V12.5884C52.0529 12.5884 53.7647 10.8765 53.7647 8.76485H51.7647ZM49.9412 6.94132C50.9483 6.94132 51.7647 7.75774 51.7647 8.76485H53.7647C53.7647 6.65317 52.0529 4.94132 49.9412 4.94132V6.94132ZM24.5294 6.94132H49.9412V4.94132H24.5294V6.94132Z"
|
|
99
|
+
fill="url(#paint1_linear_5310_64515)" fill-opacity="0.2" mask="url(#path-1-inside-1_5310_64515)" />
|
|
100
|
+
</g>
|
|
101
|
+
<g filter="url(#filter1_f_5310_64515)">
|
|
102
|
+
<path d="M71.5225 3.15186L71.5225 19.1578L66.5609 19.1578L68.0588 10.647L66.5609 3.15186L71.5225 3.15186Z"
|
|
103
|
+
fill="url(#paint2_linear_5310_64515)" fill-opacity="0.6" />
|
|
104
|
+
</g>
|
|
105
|
+
<g filter="url(#filter2_f_5310_64515)">
|
|
106
|
+
<path
|
|
107
|
+
d="M4.11816 3.11768C3.56588 3.11768 3.11816 3.56539 3.11816 4.11768L3.11816 18.1177C3.11816 18.67 3.56588 19.1177 4.11816 19.1177L10.2348 19.1177C10.9076 19.1177 11.3884 18.4666 11.1906 17.8236L9.77942 13.2373C9.73147 13.0815 9.72235 12.9163 9.75286 12.7561L11.3626 4.30479C11.48 3.68856 11.0076 3.11768 10.3803 3.11768L4.11816 3.11768Z"
|
|
108
|
+
fill="url(#paint3_linear_5310_64515)" fill-opacity="0.5" />
|
|
109
|
+
</g>
|
|
110
|
+
<defs>
|
|
111
|
+
<filter id="filter0_b_5310_64515" x="-1" y="-0.372559" width="75.9434" height="31.9814" filterUnits="userSpaceOnUse"
|
|
112
|
+
color-interpolation-filters="sRGB">
|
|
113
|
+
<feFlood flood-opacity="0" result="BackgroundImageFix" />
|
|
114
|
+
<feGaussianBlur in="BackgroundImageFix" stdDeviation="1" />
|
|
115
|
+
<feComposite in2="SourceAlpha" operator="in" result="effect1_backgroundBlur_5310_64515" />
|
|
116
|
+
<feBlend mode="normal" in="SourceGraphic" in2="effect1_backgroundBlur_5310_64515" result="shape" />
|
|
117
|
+
</filter>
|
|
118
|
+
<pattern id="pattern0_5310_64515" patternContentUnits="objectBoundingBox" width="1.49325" height="3.83929">
|
|
119
|
+
<use xlink:href="#image0_5310_64515" transform="scale(0.000729125 0.00187465)" />
|
|
120
|
+
</pattern>
|
|
121
|
+
<filter id="filter1_f_5310_64515" x="63.5605" y="0.151855" width="10.9619" height="22.006"
|
|
122
|
+
filterUnits="userSpaceOnUse" color-interpolation-filters="sRGB">
|
|
123
|
+
<feFlood flood-opacity="0" result="BackgroundImageFix" />
|
|
124
|
+
<feBlend mode="normal" in="SourceGraphic" in2="BackgroundImageFix" result="shape" />
|
|
125
|
+
<feGaussianBlur stdDeviation="1.5" result="effect1_foregroundBlur_5310_64515" />
|
|
126
|
+
</filter>
|
|
127
|
+
<filter id="filter2_f_5310_64515" x="0.118164" y="0.117676" width="14.2627" height="22" filterUnits="userSpaceOnUse"
|
|
128
|
+
color-interpolation-filters="sRGB">
|
|
129
|
+
<feFlood flood-opacity="0" result="BackgroundImageFix" />
|
|
130
|
+
<feBlend mode="normal" in="SourceGraphic" in2="BackgroundImageFix" result="shape" />
|
|
131
|
+
<feGaussianBlur stdDeviation="1.5" result="effect1_foregroundBlur_5310_64515" />
|
|
132
|
+
</filter>
|
|
133
|
+
<linearGradient id="paint0_linear_5310_64515" x1="2.19554" y1="11.2178" x2="71.9973" y2="11.6556"
|
|
134
|
+
gradientUnits="userSpaceOnUse">
|
|
135
|
+
<stop stop-opacity="0" />
|
|
136
|
+
<stop offset="0.848958" stop-opacity="0.66" />
|
|
137
|
+
<stop offset="1" stop-opacity="0" />
|
|
138
|
+
</linearGradient>
|
|
139
|
+
<linearGradient id="paint1_linear_5310_64515" x1="1" y1="5.50025" x2="73" y2="7.50025"
|
|
140
|
+
gradientUnits="userSpaceOnUse">
|
|
141
|
+
<stop stop-color="white" stop-opacity="0.12" />
|
|
142
|
+
<stop offset="0.71" stop-opacity="0.77" />
|
|
143
|
+
<stop offset="1" stop-opacity="0.12" />
|
|
144
|
+
</linearGradient>
|
|
145
|
+
<linearGradient id="paint2_linear_5310_64515" x1="69.3961" y1="3.80075" x2="69.3961" y2="20.4556"
|
|
146
|
+
gradientUnits="userSpaceOnUse">
|
|
147
|
+
<stop stop-color="white" stop-opacity="0.2" />
|
|
148
|
+
<stop offset="1" stop-color="white" stop-opacity="0.12" />
|
|
149
|
+
</linearGradient>
|
|
150
|
+
<linearGradient id="paint3_linear_5310_64515" x1="6.74843" y1="3.76632" x2="6.74843" y2="20.415"
|
|
151
|
+
gradientUnits="userSpaceOnUse">
|
|
152
|
+
<stop stop-color="white" stop-opacity="0.2" />
|
|
153
|
+
<stop offset="1" stop-color="white" stop-opacity="0.12" />
|
|
154
|
+
</linearGradient>
|
|
155
|
+
</defs>
|
|
156
|
+
</svg>`;
|
|
157
|
+
|
|
158
|
+
export const textIcon = svg`<svg width="54" height="24" viewBox="0 0 54 24" fill="none" xmlns="http://www.w3.org/2000/svg">
|
|
159
|
+
<g filter="url(#filter0_d_740_3589)">
|
|
160
|
+
<mask id="path-1-outside-1_740_3589" maskUnits="userSpaceOnUse" x="0.875977" y="0.511719" width="52" height="22" fill="black">
|
|
161
|
+
<rect fill="white" x="0.875977" y="0.511719" width="52" height="22"/>
|
|
162
|
+
<path d="M7.52094 6.01159C5.67018 6.11441 4.65911 6.16582 4.48774 6.16582C4.07646 6.16582 3.66518 5.91734 3.2539 5.42037C2.84262 4.90627 2.63698 4.37503 2.63698 3.82666C2.63698 2.98696 5.07896 2.56711 9.96291 2.56711C12.4649 2.56711 14.3071 2.82416 15.4895 3.33826C16.6719 3.85236 17.2631 4.47785 17.2631 5.21473C17.2631 5.43751 17.1346 5.65172 16.8776 5.85736C16.6205 6.04586 16.2949 6.14011 15.9008 6.14011C15.5066 6.14011 14.7869 6.11441 13.7416 6.063C12.6962 6.01159 11.7451 5.97731 10.8883 5.96018C10.9568 6.16582 10.9911 6.40573 10.9911 6.67992C10.9911 6.9541 10.8883 7.49391 10.6827 8.29934C10.4942 9.10476 10.22 10.2272 9.8601 11.6667C9.50022 13.089 9.10608 14.8198 8.67766 16.8591C8.24925 18.8812 7.94935 20.0894 7.77799 20.4835C7.62376 20.8605 7.46953 21.049 7.3153 21.049C6.95543 21.049 6.5013 20.7234 5.95293 20.0722C5.42169 19.4039 5.15607 18.8641 5.15607 18.4528C5.15607 18.0415 5.50738 16.345 6.20998 13.3632C6.91259 10.3643 7.34957 7.91376 7.52094 6.01159ZM27.3638 12.7463C27.3638 13.586 26.7897 14.34 25.6416 15.0083C24.5106 15.6767 23.3453 16.0108 22.1457 16.0108C20.9461 16.0108 19.9608 15.9252 19.1896 15.7538C19.0354 16.2165 18.9583 16.6792 18.9583 17.1419C18.9583 17.6046 19.0354 17.9387 19.1896 18.1444C19.3438 18.3329 19.7294 18.4271 20.3463 18.4271C21.6316 18.4271 22.7283 18.3072 23.6366 18.0672C24.562 17.8273 25.0418 17.7074 25.0761 17.7074C25.7787 17.7074 26.13 17.9387 26.13 18.4014C26.13 19.0697 25.573 19.7038 24.4591 20.3036C23.3624 20.9034 22.0857 21.2033 20.6291 21.2033C19.1896 21.2033 18.0329 20.7491 17.1589 19.8409C16.2849 18.9326 15.848 17.8616 15.848 16.6278C15.848 15.3768 16.2078 14.0744 16.9276 12.7206C17.6644 11.3668 18.5813 10.2358 19.678 9.32754C20.7748 8.40215 21.8629 7.93946 22.9425 7.93946C24.0393 7.93946 25.0504 8.47927 25.9757 9.55888C26.9011 10.6214 27.3638 11.6838 27.3638 12.7463ZM24.382 12.335C24.382 12.1637 24.2021 11.9152 23.8422 11.5896C23.4824 11.264 23.1396 11.1012 22.814 11.1012C22.5056 11.1012 22.1029 11.3325 21.6059 11.7952C21.1089 12.2408 20.6377 12.8234 20.1921 13.5432C20.3463 13.5603 20.5691 13.5689 20.8604 13.5689C23.2082 13.5689 24.382 13.1576 24.382 12.335ZM38.1414 20.2522C38.1414 20.8862 37.8587 21.2033 37.2932 21.2033C36.3678 21.2033 35.1511 20.0722 33.6431 17.8102C31.6895 20.0722 30.3785 21.2033 29.7102 21.2033C29.2475 21.2033 28.802 20.9805 28.3735 20.5349C27.9623 20.0722 27.7566 19.6695 27.7566 19.3268C27.7566 19.2411 27.9366 19.0269 28.2964 18.6842C29.7188 17.3304 30.9098 16.0537 31.8694 14.8541C31.1325 13.5175 30.5071 12.2408 29.993 11.0241C29.4789 9.80736 29.2218 9.07049 29.2218 8.81344C29.2218 8.53925 29.2304 8.35931 29.2475 8.27363C29.2989 8.05085 29.4532 7.93946 29.7102 7.93946C30.4299 7.93946 31.184 8.08513 31.9722 8.37645C32.7777 8.65064 33.1804 8.97623 33.1804 9.35324C33.1804 9.95302 33.4374 10.827 33.9515 11.9752C34.9969 10.5014 35.8451 9.45606 36.4963 8.83914C37.1647 8.22222 37.7045 7.91376 38.1157 7.91376C38.5442 7.91376 39.0154 8.16224 39.5295 8.65921C40.0608 9.15617 40.3264 9.60172 40.3264 9.99587C40.3264 10.1844 40.2493 10.3643 40.095 10.5357C39.9408 10.707 39.7095 10.9127 39.401 11.1526C39.0925 11.3754 38.7926 11.6324 38.5013 11.9237C38.2271 12.2151 37.2932 13.3375 35.6995 15.2911L36.4449 16.6021C37.5759 18.5899 38.1414 19.8066 38.1414 20.2522ZM47.2316 10.9984C47.0945 11.4611 46.8889 12.1122 46.6147 12.9519C46.3576 13.7745 46.032 14.8113 45.6379 16.0623C45.2609 17.3132 45.0724 17.9816 45.0724 18.0672C45.0724 18.1358 45.2095 18.1701 45.4836 18.1701C45.775 18.1701 46.4519 17.9816 47.5143 17.6046C48.5768 17.2104 49.2023 17.0133 49.3908 17.0133C49.8192 17.0133 50.0334 17.3047 50.0334 17.8873C50.0334 18.47 49.4594 19.1726 48.3112 19.9951C47.163 20.8005 45.9635 21.2033 44.7125 21.2033C44.1641 21.2033 43.5129 20.9034 42.7589 20.3036C42.0049 19.7038 41.6279 19.0954 41.6279 18.4785C41.6279 17.9644 41.8849 16.8848 42.399 15.2397C42.9303 13.5774 43.2902 12.4378 43.4787 11.8209C42.8103 12.0094 42.3048 12.1037 41.9621 12.1037C41.6193 12.1037 41.2595 11.8723 40.8824 11.4096C40.5054 10.9298 40.3169 10.4757 40.3169 10.0473C40.3169 9.4989 41.645 9.03621 44.3012 8.65921C44.6268 7.06549 44.7896 5.68599 44.7896 4.5207C44.7896 4.00659 45.0467 3.74954 45.5608 3.74954C46.0063 3.74954 46.5718 4.02373 47.2573 4.57211C47.9599 5.10334 48.3112 5.63458 48.3112 6.16582C48.3112 6.67992 48.1998 7.40823 47.977 8.35074C48.7996 8.31647 49.4251 8.29934 49.8535 8.29934C51.1388 8.29934 51.7814 8.59066 51.7814 9.17331C51.7814 9.55031 51.4044 9.87591 50.6504 10.1501C49.9135 10.4071 48.7739 10.6899 47.2316 10.9984Z"/>
|
|
163
|
+
</mask>
|
|
164
|
+
<path d="M7.52094 6.01159C5.67018 6.11441 4.65911 6.16582 4.48774 6.16582C4.07646 6.16582 3.66518 5.91734 3.2539 5.42037C2.84262 4.90627 2.63698 4.37503 2.63698 3.82666C2.63698 2.98696 5.07896 2.56711 9.96291 2.56711C12.4649 2.56711 14.3071 2.82416 15.4895 3.33826C16.6719 3.85236 17.2631 4.47785 17.2631 5.21473C17.2631 5.43751 17.1346 5.65172 16.8776 5.85736C16.6205 6.04586 16.2949 6.14011 15.9008 6.14011C15.5066 6.14011 14.7869 6.11441 13.7416 6.063C12.6962 6.01159 11.7451 5.97731 10.8883 5.96018C10.9568 6.16582 10.9911 6.40573 10.9911 6.67992C10.9911 6.9541 10.8883 7.49391 10.6827 8.29934C10.4942 9.10476 10.22 10.2272 9.8601 11.6667C9.50022 13.089 9.10608 14.8198 8.67766 16.8591C8.24925 18.8812 7.94935 20.0894 7.77799 20.4835C7.62376 20.8605 7.46953 21.049 7.3153 21.049C6.95543 21.049 6.5013 20.7234 5.95293 20.0722C5.42169 19.4039 5.15607 18.8641 5.15607 18.4528C5.15607 18.0415 5.50738 16.345 6.20998 13.3632C6.91259 10.3643 7.34957 7.91376 7.52094 6.01159ZM27.3638 12.7463C27.3638 13.586 26.7897 14.34 25.6416 15.0083C24.5106 15.6767 23.3453 16.0108 22.1457 16.0108C20.9461 16.0108 19.9608 15.9252 19.1896 15.7538C19.0354 16.2165 18.9583 16.6792 18.9583 17.1419C18.9583 17.6046 19.0354 17.9387 19.1896 18.1444C19.3438 18.3329 19.7294 18.4271 20.3463 18.4271C21.6316 18.4271 22.7283 18.3072 23.6366 18.0672C24.562 17.8273 25.0418 17.7074 25.0761 17.7074C25.7787 17.7074 26.13 17.9387 26.13 18.4014C26.13 19.0697 25.573 19.7038 24.4591 20.3036C23.3624 20.9034 22.0857 21.2033 20.6291 21.2033C19.1896 21.2033 18.0329 20.7491 17.1589 19.8409C16.2849 18.9326 15.848 17.8616 15.848 16.6278C15.848 15.3768 16.2078 14.0744 16.9276 12.7206C17.6644 11.3668 18.5813 10.2358 19.678 9.32754C20.7748 8.40215 21.8629 7.93946 22.9425 7.93946C24.0393 7.93946 25.0504 8.47927 25.9757 9.55888C26.9011 10.6214 27.3638 11.6838 27.3638 12.7463ZM24.382 12.335C24.382 12.1637 24.2021 11.9152 23.8422 11.5896C23.4824 11.264 23.1396 11.1012 22.814 11.1012C22.5056 11.1012 22.1029 11.3325 21.6059 11.7952C21.1089 12.2408 20.6377 12.8234 20.1921 13.5432C20.3463 13.5603 20.5691 13.5689 20.8604 13.5689C23.2082 13.5689 24.382 13.1576 24.382 12.335ZM38.1414 20.2522C38.1414 20.8862 37.8587 21.2033 37.2932 21.2033C36.3678 21.2033 35.1511 20.0722 33.6431 17.8102C31.6895 20.0722 30.3785 21.2033 29.7102 21.2033C29.2475 21.2033 28.802 20.9805 28.3735 20.5349C27.9623 20.0722 27.7566 19.6695 27.7566 19.3268C27.7566 19.2411 27.9366 19.0269 28.2964 18.6842C29.7188 17.3304 30.9098 16.0537 31.8694 14.8541C31.1325 13.5175 30.5071 12.2408 29.993 11.0241C29.4789 9.80736 29.2218 9.07049 29.2218 8.81344C29.2218 8.53925 29.2304 8.35931 29.2475 8.27363C29.2989 8.05085 29.4532 7.93946 29.7102 7.93946C30.4299 7.93946 31.184 8.08513 31.9722 8.37645C32.7777 8.65064 33.1804 8.97623 33.1804 9.35324C33.1804 9.95302 33.4374 10.827 33.9515 11.9752C34.9969 10.5014 35.8451 9.45606 36.4963 8.83914C37.1647 8.22222 37.7045 7.91376 38.1157 7.91376C38.5442 7.91376 39.0154 8.16224 39.5295 8.65921C40.0608 9.15617 40.3264 9.60172 40.3264 9.99587C40.3264 10.1844 40.2493 10.3643 40.095 10.5357C39.9408 10.707 39.7095 10.9127 39.401 11.1526C39.0925 11.3754 38.7926 11.6324 38.5013 11.9237C38.2271 12.2151 37.2932 13.3375 35.6995 15.2911L36.4449 16.6021C37.5759 18.5899 38.1414 19.8066 38.1414 20.2522ZM47.2316 10.9984C47.0945 11.4611 46.8889 12.1122 46.6147 12.9519C46.3576 13.7745 46.032 14.8113 45.6379 16.0623C45.2609 17.3132 45.0724 17.9816 45.0724 18.0672C45.0724 18.1358 45.2095 18.1701 45.4836 18.1701C45.775 18.1701 46.4519 17.9816 47.5143 17.6046C48.5768 17.2104 49.2023 17.0133 49.3908 17.0133C49.8192 17.0133 50.0334 17.3047 50.0334 17.8873C50.0334 18.47 49.4594 19.1726 48.3112 19.9951C47.163 20.8005 45.9635 21.2033 44.7125 21.2033C44.1641 21.2033 43.5129 20.9034 42.7589 20.3036C42.0049 19.7038 41.6279 19.0954 41.6279 18.4785C41.6279 17.9644 41.8849 16.8848 42.399 15.2397C42.9303 13.5774 43.2902 12.4378 43.4787 11.8209C42.8103 12.0094 42.3048 12.1037 41.9621 12.1037C41.6193 12.1037 41.2595 11.8723 40.8824 11.4096C40.5054 10.9298 40.3169 10.4757 40.3169 10.0473C40.3169 9.4989 41.645 9.03621 44.3012 8.65921C44.6268 7.06549 44.7896 5.68599 44.7896 4.5207C44.7896 4.00659 45.0467 3.74954 45.5608 3.74954C46.0063 3.74954 46.5718 4.02373 47.2573 4.57211C47.9599 5.10334 48.3112 5.63458 48.3112 6.16582C48.3112 6.67992 48.1998 7.40823 47.977 8.35074C48.7996 8.31647 49.4251 8.29934 49.8535 8.29934C51.1388 8.29934 51.7814 8.59066 51.7814 9.17331C51.7814 9.55031 51.4044 9.87591 50.6504 10.1501C49.9135 10.4071 48.7739 10.6899 47.2316 10.9984Z" fill="#6E52DF"/>
|
|
165
|
+
<path d="M7.52094 6.01159L8.58766 6.10769L8.69885 4.87345L7.46153 4.94219L7.52094 6.01159ZM3.2539 5.42037L2.41756 6.08945L2.42311 6.09639L2.42878 6.10323L3.2539 5.42037ZM15.4895 3.33826L15.0624 4.32049L15.0624 4.32049L15.4895 3.33826ZM16.8776 5.85736L17.5109 6.72105L17.5291 6.70775L17.5466 6.6937L16.8776 5.85736ZM13.7416 6.063L13.6889 7.13275L13.6889 7.13275L13.7416 6.063ZM10.8883 5.96018L10.9097 4.88935L9.39226 4.859L9.87222 6.29887L10.8883 5.96018ZM10.6827 8.29934L9.6449 8.03438L9.64224 8.04479L9.63979 8.05526L10.6827 8.29934ZM9.8601 11.6667L10.8984 11.9294L10.8992 11.9265L9.8601 11.6667ZM8.67766 16.8591L9.72545 17.0811L9.72583 17.0793L8.67766 16.8591ZM7.77799 20.4835L6.79577 20.0565L6.79111 20.0672L6.78669 20.078L7.77799 20.4835ZM5.95293 20.0722L5.11449 20.7387L5.12392 20.7505L5.13368 20.7621L5.95293 20.0722ZM6.20998 13.3632L7.25247 13.6089L7.25279 13.6075L6.20998 13.3632ZM7.46153 4.94219C6.53669 4.99357 5.8232 5.03202 5.32018 5.0576C5.06848 5.0704 4.87118 5.07989 4.72719 5.08615C4.6551 5.08928 4.59812 5.09153 4.55529 5.09297C4.5339 5.09369 4.51726 5.09417 4.50481 5.09446C4.49149 5.09477 4.48672 5.09478 4.48774 5.09478V7.23686C4.69818 7.23686 5.75634 7.18231 7.58035 7.08098L7.46153 4.94219ZM4.48774 5.09478C4.54101 5.09478 4.40254 5.12842 4.07903 4.73751L2.42878 6.10323C2.92782 6.70625 3.61192 7.23686 4.48774 7.23686V5.09478ZM4.09025 4.7513C3.7993 4.38762 3.70802 4.08567 3.70802 3.82666H1.56594C1.56594 4.6644 1.88594 5.42492 2.41756 6.08945L4.09025 4.7513ZM3.70802 3.82666C3.70802 4.23168 3.39464 4.3261 3.58582 4.22749C3.74524 4.14527 4.07544 4.03633 4.64995 3.93755C5.77804 3.7436 7.53527 3.63816 9.96291 3.63816V1.49607C7.5066 1.49607 5.60087 1.60055 4.28698 1.82644C3.64051 1.93759 3.05496 2.09106 2.60388 2.32373C2.18457 2.54 1.56594 3.00179 1.56594 3.82666H3.70802ZM9.96291 3.63816C12.4302 3.63816 14.0894 3.89741 15.0624 4.32049L15.9165 2.35604C14.5248 1.75092 12.4995 1.49607 9.96291 1.49607V3.63816ZM15.0624 4.32049C16.1667 4.80059 16.1921 5.16413 16.1921 5.21473H18.3342C18.3342 3.79158 17.1772 2.90414 15.9165 2.35604L15.0624 4.32049ZM16.1921 5.21473C16.1921 5.16585 16.1994 5.1193 16.2115 5.07799C16.2235 5.03741 16.2382 5.00839 16.2483 4.99142C16.2667 4.96082 16.2674 4.97386 16.2085 5.02101L17.5466 6.6937C17.9326 6.38491 18.3342 5.89499 18.3342 5.21473H16.1921ZM16.2442 4.99366C16.2105 5.01833 16.1218 5.06907 15.9008 5.06907V7.21115C16.468 7.21115 17.0305 7.07339 17.5109 6.72105L16.2442 4.99366ZM15.9008 5.06907C15.5365 5.06907 14.8415 5.04475 13.7942 4.99325L13.6889 7.13275C14.7323 7.18406 15.4768 7.21115 15.9008 7.21115V5.06907ZM13.7942 4.99325C12.7406 4.94143 11.7789 4.90673 10.9097 4.88935L10.8669 7.03101C11.7113 7.04789 12.6518 7.08174 13.6889 7.13275L13.7942 4.99325ZM9.87222 6.29887C9.89618 6.37078 9.92007 6.49179 9.92007 6.67992H12.0622C12.0622 6.31967 12.0175 5.96086 11.9044 5.62148L9.87222 6.29887ZM9.92007 6.67992C9.92007 6.79669 9.8566 7.20523 9.6449 8.03438L11.7204 8.56429C11.92 7.78259 12.0622 7.11152 12.0622 6.67992H9.92007ZM9.63979 8.05526C9.45312 8.85289 9.18044 9.96928 8.82103 11.4069L10.8992 11.9265C11.2595 10.4851 11.5352 9.35663 11.7255 8.54341L9.63979 8.05526ZM8.82177 11.404C8.4572 12.8449 8.05978 14.5908 7.6295 16.6389L9.72583 17.0793C10.1524 15.0489 10.5432 13.3332 10.8984 11.9294L8.82177 11.404ZM7.62988 16.6371C7.4168 17.6429 7.23762 18.4369 7.09194 19.0238C6.9389 19.6403 6.84011 19.9545 6.79577 20.0565L8.76021 20.9106C8.88723 20.6184 9.02408 20.1314 9.17093 19.5398C9.32514 18.9186 9.51011 18.0975 9.72545 17.0811L7.62988 16.6371ZM6.78669 20.078C6.72666 20.2247 6.69734 20.2543 6.7177 20.2294C6.73064 20.2136 6.77951 20.1566 6.87247 20.0998C6.97277 20.0385 7.12505 19.978 7.3153 19.978V22.1201C7.86215 22.1201 8.21279 21.7848 8.37558 21.5859C8.55017 21.3725 8.67508 21.1193 8.76929 20.8891L6.78669 20.078ZM7.3153 19.978C7.45213 19.978 7.4678 20.034 7.32889 19.9344C7.20132 19.8429 7.01561 19.6714 6.77218 19.3823L5.13368 20.7621C5.43863 21.1243 5.75416 21.4411 6.08072 21.6753C6.39593 21.9013 6.81859 22.1201 7.3153 22.1201V19.978ZM6.79137 19.4058C6.55531 19.1088 6.40449 18.8725 6.31629 18.6933C6.22494 18.5076 6.22712 18.4365 6.22712 18.4528H4.08503C4.08503 19.2575 4.56656 20.0494 5.11449 20.7387L6.79137 19.4058ZM6.22712 18.4528C6.22712 18.4648 6.22676 18.4426 6.23597 18.3658C6.24435 18.2959 6.25807 18.2015 6.27841 18.0795C6.31908 17.8355 6.38185 17.5069 6.46834 17.0891C6.64108 16.2549 6.90199 15.0963 7.25247 13.6089L5.16749 13.1176C4.81537 14.612 4.54932 15.7925 4.37076 16.6548C4.28161 17.0853 4.21264 17.4443 4.16547 17.7273C4.12244 17.9855 4.08503 18.2501 4.08503 18.4528H6.22712ZM7.25279 13.6075C7.96081 10.5855 8.40993 8.0805 8.58766 6.10769L6.45421 5.91549C6.28921 7.74702 5.86436 10.1431 5.16718 13.1189L7.25279 13.6075ZM25.6416 15.0083L25.1028 14.0827L25.0967 14.0863L25.6416 15.0083ZM19.1896 15.7538L19.422 14.7083L18.479 14.4987L18.1735 15.4151L19.1896 15.7538ZM19.1896 18.1444L18.3328 18.787L18.3463 18.8051L18.3607 18.8226L19.1896 18.1444ZM23.6366 18.0672L23.3678 17.0305L23.363 17.0317L23.6366 18.0672ZM24.4591 20.3036L23.9514 19.3605L23.9452 19.3639L24.4591 20.3036ZM17.1589 19.8409L17.9307 19.0983L17.9307 19.0983L17.1589 19.8409ZM16.9276 12.7206L15.9868 12.2085L15.9819 12.2178L16.9276 12.7206ZM19.678 9.32754L20.3612 10.1525L20.3687 10.1461L19.678 9.32754ZM25.9757 9.55888L25.1625 10.2559L25.1681 10.2623L25.9757 9.55888ZM23.8422 11.5896L23.1236 12.3838L23.1236 12.3838L23.8422 11.5896ZM21.6059 11.7952L22.3209 12.5927L22.3283 12.586L22.3357 12.5791L21.6059 11.7952ZM20.1921 13.5432L19.2814 12.9794L18.3893 14.4205L20.0738 14.6077L20.1921 13.5432ZM26.2928 12.7463C26.2928 13.0167 26.125 13.4877 25.1028 14.0827L26.1804 15.934C27.4545 15.1923 28.4349 14.1553 28.4349 12.7463H26.2928ZM25.0967 14.0863C24.1145 14.6666 23.1356 14.9398 22.1457 14.9398V17.0819C23.5549 17.0819 24.9066 16.6867 26.1864 15.9304L25.0967 14.0863ZM22.1457 14.9398C20.9885 14.9398 20.0884 14.8564 19.422 14.7083L18.9573 16.7993C19.8331 16.994 20.9038 17.0819 22.1457 17.0819V14.9398ZM18.1735 15.4151C17.9849 15.9811 17.8872 16.558 17.8872 17.1419H20.0293C20.0293 16.8004 20.0859 16.4519 20.2057 16.0925L18.1735 15.4151ZM17.8872 17.1419C17.8872 17.6732 17.9661 18.2981 18.3328 18.787L20.0464 17.5017C20.0835 17.5512 20.0753 17.5664 20.0597 17.4987C20.0445 17.4325 20.0293 17.3183 20.0293 17.1419H17.8872ZM18.3607 18.8226C18.652 19.1786 19.0523 19.3265 19.3401 19.3968C19.6487 19.4723 19.9938 19.4982 20.3463 19.4982V17.3561C20.0819 17.3561 19.9258 17.3348 19.8488 17.316C19.8128 17.3072 19.8171 17.3044 19.8456 17.3193C19.8749 17.3346 19.946 17.3774 20.0186 17.4661L18.3607 18.8226ZM20.3463 19.4982C21.6926 19.4982 22.8867 19.3731 23.9101 19.1028L23.363 17.0317C22.57 17.2412 21.5706 17.3561 20.3463 17.3561V19.4982ZM23.9054 19.104C24.3673 18.9843 24.715 18.8952 24.9503 18.8364C25.0686 18.8068 25.1542 18.786 25.2102 18.7729C25.239 18.7662 25.2537 18.763 25.2583 18.762C25.2613 18.7614 25.2539 18.763 25.2405 18.7653C25.2339 18.7663 25.2193 18.7687 25.1999 18.7711C25.1878 18.7725 25.1393 18.7784 25.0761 18.7784V16.6363C25.0106 16.6363 24.9591 16.6425 24.9432 16.6444C24.9199 16.6472 24.9006 16.6503 24.8883 16.6523C24.8637 16.6564 24.8416 16.6608 24.8263 16.664C24.7946 16.6705 24.7589 16.6786 24.7234 16.6868C24.6509 16.7038 24.5523 16.7279 24.4307 16.7583C24.1862 16.8194 23.8313 16.9103 23.3678 17.0305L23.9054 19.104ZM25.0761 18.7784C25.1963 18.7784 25.2699 18.7886 25.3075 18.7969C25.3457 18.8053 25.3252 18.8068 25.2774 18.7754C25.2225 18.7392 25.1557 18.6747 25.1085 18.5815C25.0634 18.4924 25.0589 18.4221 25.0589 18.4014H27.201C27.201 17.8524 26.966 17.3225 26.4556 16.9864C26.0233 16.7017 25.5109 16.6363 25.0761 16.6363V18.7784ZM25.0589 18.4014C25.0589 18.4203 25.0245 18.7827 23.9514 19.3606L24.9669 21.2466C26.1216 20.6249 27.201 19.7192 27.201 18.4014H25.0589ZM23.9452 19.3639C23.0303 19.8642 21.936 20.1322 20.6291 20.1322V22.2743C22.2355 22.2743 23.6945 21.9425 24.973 21.2433L23.9452 19.3639ZM20.6291 20.1322C19.4356 20.1322 18.5734 19.7662 17.9307 19.0983L16.3872 20.5835C17.4924 21.7321 18.9436 22.2743 20.6291 22.2743V20.1322ZM17.9307 19.0983C17.2441 18.3848 16.919 17.5781 16.919 16.6278H14.7769C14.7769 18.1451 15.3258 19.4805 16.3872 20.5835L17.9307 19.0983ZM16.919 16.6278C16.919 15.5874 17.2175 14.4569 17.8733 13.2234L15.9819 12.2178C15.1982 13.6919 14.7769 15.1662 14.7769 16.6278H16.919ZM17.8683 13.2326C18.5454 11.9886 19.3778 10.9668 20.3611 10.1524L18.9949 8.50263C17.7848 9.50475 16.7835 10.745 15.9869 12.2086L17.8683 13.2326ZM20.3687 10.1461C21.3364 9.32962 22.1886 9.01051 22.9425 9.01051V6.86842C21.5372 6.86842 20.2131 7.47469 18.9873 8.50895L20.3687 10.1461ZM22.9425 9.01051C23.6395 9.01051 24.3761 9.33838 25.1625 10.2559L26.7889 8.86185C25.7246 7.62016 24.4391 6.86842 22.9425 6.86842V9.01051ZM25.1681 10.2623C25.9798 11.1943 26.2928 12.0168 26.2928 12.7463H28.4349C28.4349 11.3509 27.8224 10.0484 26.7834 8.85544L25.1681 10.2623ZM25.4531 12.335C25.4531 11.9059 25.245 11.5721 25.1146 11.392C24.9632 11.183 24.7681 10.9829 24.5608 10.7954L23.1236 12.3838C23.1969 12.4501 23.2543 12.5064 23.2981 12.553C23.3426 12.6003 23.3677 12.6319 23.3796 12.6483C23.3928 12.6666 23.3811 12.6543 23.3638 12.6139C23.3472 12.5751 23.311 12.4769 23.311 12.335H25.4531ZM24.5608 10.7954C24.0983 10.3769 23.5096 10.0301 22.814 10.0301V12.1722C22.7697 12.1722 22.8664 12.151 23.1236 12.3838L24.5608 10.7954ZM22.814 10.0301C22.4011 10.0301 22.035 10.1806 21.7471 10.346C21.4507 10.5162 21.1595 10.7474 20.8761 11.0113L22.3357 12.5791C22.5492 12.3803 22.7078 12.2645 22.8142 12.2034C22.929 12.1374 22.9185 12.1722 22.814 12.1722V10.0301ZM20.8909 10.9978C20.3007 11.5269 19.7671 12.1949 19.2814 12.9794L21.1028 14.1069C21.5083 13.4519 21.9171 12.9547 22.3209 12.5927L20.8909 10.9978ZM20.0738 14.6077C20.2877 14.6314 20.5574 14.6399 20.8604 14.6399V12.4978C20.5808 12.4978 20.405 12.4892 20.3104 12.4787L20.0738 14.6077ZM20.8604 14.6399C22.0677 14.6399 23.0946 14.5379 23.8558 14.2712C24.2411 14.1362 24.6327 13.9338 24.9379 13.6131C25.2667 13.2675 25.4531 12.826 25.4531 12.335H23.311C23.311 12.2553 23.3507 12.1737 23.386 12.1366C23.3976 12.1243 23.3491 12.179 23.1475 12.2496C22.7348 12.3942 22.001 12.4978 20.8604 12.4978V14.6399ZM33.6431 17.8102L34.5342 17.2161L33.753 16.0443L32.8325 17.1101L33.6431 17.8102ZM28.3735 20.5349L27.573 21.2465L27.587 21.2622L27.6015 21.2773L28.3735 20.5349ZM28.2964 18.6842L27.558 17.9084L27.5578 17.9086L28.2964 18.6842ZM31.8694 14.8541L32.7058 15.5232L33.1531 14.9641L32.8074 14.337L31.8694 14.8541ZM29.2475 8.27363L28.2039 8.03279L28.2004 8.04814L28.1973 8.06358L29.2475 8.27363ZM31.9722 8.37645L31.601 9.38108L31.614 9.38589L31.6271 9.39035L31.9722 8.37645ZM33.9515 11.9752L32.974 12.4129L33.7403 14.1242L34.8251 12.5948L33.9515 11.9752ZM36.4963 8.83914L35.7698 8.05207L35.7597 8.06161L36.4963 8.83914ZM39.5295 8.65921L38.7851 9.42927L38.7914 9.43537L38.7978 9.44136L39.5295 8.65921ZM39.401 11.1526L40.0281 12.0209L40.0435 12.0097L40.0586 11.998L39.401 11.1526ZM38.5013 11.9237L37.744 11.1664L37.7325 11.1779L37.7214 11.1897L38.5013 11.9237ZM35.6995 15.2911L34.8696 14.6141L34.4057 15.1827L34.7684 15.8205L35.6995 15.2911ZM36.4449 16.6021L35.5139 17.1315L35.514 17.1317L36.4449 16.6021ZM37.0704 20.2522C37.0704 20.3345 37.0608 20.3663 37.0618 20.3631C37.0638 20.3562 37.0797 20.309 37.1301 20.2526C37.1828 20.1935 37.2435 20.1577 37.2893 20.1406C37.3289 20.1258 37.3372 20.1322 37.2932 20.1322V22.2743C37.7748 22.2743 38.3226 22.1337 38.7287 21.6784C39.114 21.2464 39.2125 20.706 39.2125 20.2522H37.0704ZM37.2932 20.1322C37.2473 20.1322 36.9686 20.0844 36.4158 19.5705C35.895 19.0863 35.2672 18.3156 34.5342 17.2161L32.7519 18.4043C33.5269 19.5669 34.2616 20.4926 34.9574 21.1395C35.6213 21.7566 36.4136 22.2743 37.2932 22.2743V20.1322ZM32.8325 17.1101C31.8692 18.2256 31.0925 19.0286 30.495 19.544C30.1956 19.8024 29.9659 19.9668 29.8006 20.0613C29.6148 20.1674 29.6021 20.1322 29.7102 20.1322V22.2743C30.1525 22.2743 30.5542 22.0977 30.8633 21.9211C31.1928 21.7329 31.5383 21.4731 31.8943 21.1659C32.6078 20.5504 33.4634 19.6569 34.4537 18.5102L32.8325 17.1101ZM29.7102 20.1322C29.6269 20.1322 29.4425 20.1014 29.1456 19.7926L27.6015 21.2773C28.1614 21.8596 28.8681 22.2743 29.7102 22.2743V20.1322ZM29.174 19.8234C29.0083 19.6369 28.9141 19.4955 28.8647 19.3988C28.8153 19.302 28.8277 19.2835 28.8277 19.3268H26.6856C26.6856 20.074 27.1135 20.7295 27.573 21.2465L29.174 19.8234ZM28.8277 19.3268C28.8277 19.4137 28.8164 19.4865 28.8045 19.5404C28.7925 19.5947 28.7778 19.6388 28.7656 19.6707C28.7422 19.7321 28.7184 19.7734 28.7088 19.7895C28.6903 19.8203 28.6842 19.8234 28.7117 19.7908C28.7638 19.7287 28.8655 19.6212 29.0351 19.4597L27.5578 17.9086C27.3675 18.0898 27.1993 18.2608 27.0715 18.413C27.0089 18.4874 26.9354 18.5816 26.8719 18.6874C26.8338 18.7509 26.6856 18.9953 26.6856 19.3268H28.8277ZM29.0348 19.46C30.4831 18.0815 31.709 16.7692 32.7058 15.5232L31.0331 14.185C30.1106 15.3382 28.9544 16.5792 27.558 17.9084L29.0348 19.46ZM32.8074 14.337C32.0858 13.028 31.4772 11.7849 30.9795 10.6072L29.0064 11.4409C29.5369 12.6966 30.1793 14.0069 30.9315 15.3712L32.8074 14.337ZM30.9795 10.6072C30.7262 10.0077 30.5435 9.54322 30.4259 9.20611C30.3669 9.03703 30.3289 8.91314 30.3069 8.82802C30.2797 8.72264 30.2928 8.73648 30.2928 8.81344H28.1508C28.1508 9.01892 28.1961 9.22125 28.2331 9.36436C28.2753 9.52773 28.3338 9.71229 28.4033 9.91165C28.5428 10.3114 28.7456 10.8237 29.0064 11.4409L30.9795 10.6072ZM30.2928 8.81344C30.2928 8.68557 30.2949 8.59048 30.2981 8.52379C30.2996 8.49066 30.3013 8.46977 30.3023 8.45873C30.3037 8.44485 30.3032 8.45653 30.2978 8.48368L28.1973 8.06358C28.1556 8.27176 28.1508 8.56097 28.1508 8.81344H30.2928ZM30.2911 8.51446C30.2709 8.60229 30.2025 8.76584 30.0288 8.89128C29.8691 9.00663 29.729 9.01051 29.7102 9.01051V6.86842C29.4343 6.86842 29.0886 6.928 28.7747 7.15473C28.4467 7.39156 28.2756 7.72219 28.2039 8.03279L30.2911 8.51446ZM29.7102 9.01051C30.2839 9.01051 30.912 9.12646 31.601 9.38108L32.3435 7.37182C31.4559 7.04379 30.5759 6.86842 29.7102 6.86842V9.01051ZM31.6271 9.39035C31.7946 9.44738 31.9253 9.50176 32.0245 9.55106C32.1252 9.60104 32.1802 9.63918 32.205 9.65916C32.23 9.6794 32.2068 9.6671 32.1756 9.61273C32.1402 9.55083 32.1093 9.45965 32.1093 9.35324H34.2514C34.2514 8.73204 33.9051 8.27913 33.5517 7.99341C33.2097 7.71684 32.7728 7.51757 32.3174 7.36255L31.6271 9.39035ZM32.1093 9.35324C32.1093 10.1946 32.4513 11.2454 32.974 12.4129L34.9291 11.5375C34.4236 10.4086 34.2514 9.71144 34.2514 9.35324H32.1093ZM34.8251 12.5948C35.862 11.1329 36.661 10.1585 37.2329 9.61667L35.7597 8.06161C35.0293 8.75364 34.1317 9.86987 33.0779 11.3555L34.8251 12.5948ZM37.2228 9.62615C37.5222 9.34977 37.7583 9.17534 37.9338 9.07503C38.1182 8.96964 38.1682 8.9848 38.1157 8.9848V6.84272C37.652 6.84272 37.2264 7.0121 36.871 7.21518C36.5068 7.42333 36.1388 7.71159 35.7699 8.05213L37.2228 9.62615ZM38.1157 8.9848C38.1305 8.9848 38.3451 9.00392 38.7851 9.42927L40.2739 7.88914C39.6857 7.32056 38.9578 6.84272 38.1157 6.84272V8.9848ZM38.7978 9.44136C39.0171 9.64646 39.1419 9.80501 39.2072 9.91454C39.2716 10.0225 39.2553 10.0437 39.2553 9.99587H41.3974C41.3974 9.13567 40.8421 8.42042 40.2612 7.87705L38.7978 9.44136ZM39.2553 9.99587C39.2553 9.93947 39.2678 9.8884 39.2841 9.85029C39.2991 9.81518 39.3112 9.8056 39.2989 9.81918L40.8911 11.2522C41.181 10.9301 41.3974 10.5049 41.3974 9.99587H39.2553ZM39.2989 9.81918C39.2061 9.92234 39.0312 10.0833 38.7434 10.3072L40.0586 11.998C40.3877 11.742 40.6755 11.4917 40.8911 11.2522L39.2989 9.81918ZM38.7739 10.2843C38.4155 10.5432 38.0724 10.838 37.744 11.1664L39.2587 12.6811C39.5129 12.4269 39.7696 12.2076 40.0281 12.0209L38.7739 10.2843ZM37.7214 11.1897C37.4138 11.5165 36.4476 12.6797 34.8696 14.6141L36.5294 15.9681C38.1388 13.9953 39.0404 12.9137 39.2813 12.6578L37.7214 11.1897ZM34.7684 15.8205L35.5139 17.1315L37.376 16.0726L36.6305 14.7617L34.7684 15.8205ZM35.514 17.1317C36.0736 18.1152 36.4813 18.8873 36.7461 19.4569C36.8788 19.7424 36.9677 19.9604 37.0214 20.1184C37.0836 20.3011 37.0704 20.3235 37.0704 20.2522H39.2125C39.2125 19.9581 39.1286 19.6613 39.0494 19.4285C38.9618 19.1709 38.8386 18.8769 38.6886 18.554C38.3878 17.907 37.9473 17.0768 37.3758 16.0724L35.514 17.1317ZM47.2316 10.9984L47.0215 9.94812L46.3882 10.0748L46.2047 10.6941L47.2316 10.9984ZM46.6147 12.9519L45.5964 12.6195L45.5924 12.6325L46.6147 12.9519ZM45.6379 16.0623L44.6163 15.7404L44.6124 15.7532L45.6379 16.0623ZM47.5143 17.6046L47.8725 18.6139L47.8797 18.6114L47.8869 18.6087L47.5143 17.6046ZM48.3112 19.9951L48.9263 20.872L48.935 20.8658L48.3112 19.9951ZM42.7589 20.3036L43.4257 19.4654L43.4257 19.4654L42.7589 20.3036ZM42.399 15.2397L41.3788 14.9136L41.3768 14.9202L42.399 15.2397ZM43.4787 11.8209L44.5029 12.1339L45.0763 10.2575L43.1879 10.7901L43.4787 11.8209ZM40.8824 11.4096L40.0403 12.0714L40.0461 12.0788L40.0521 12.0862L40.8824 11.4096ZM44.3012 8.65921L44.4517 9.71962L45.1994 9.6135L45.3506 8.87359L44.3012 8.65921ZM47.2573 4.57211L46.5882 5.40845L46.5997 5.4176L46.6113 5.42643L47.2573 4.57211ZM47.977 8.35074L46.9347 8.10438L46.6096 9.47969L48.0216 9.42086L47.977 8.35074ZM50.6504 10.1501L51.0032 11.1615L51.0164 11.1567L50.6504 10.1501ZM46.2047 10.6941C46.0718 11.1426 45.8697 11.7829 45.5965 12.6195L47.6328 13.2844C47.908 12.4416 48.1172 11.7795 48.2585 11.3026L46.2047 10.6941ZM45.5924 12.6325C45.3357 13.4539 45.0103 14.4899 44.6163 15.7404L46.6594 16.3841C47.0537 15.1327 47.3796 14.0951 47.637 13.2714L45.5924 12.6325ZM44.6124 15.7532C44.4233 16.3805 44.2798 16.8675 44.1829 17.211C44.1348 17.3817 44.0961 17.5243 44.0686 17.634C44.0551 17.688 44.0421 17.7431 44.0317 17.794C44.0281 17.8116 44.0013 17.9329 44.0013 18.0672H46.1434C46.1434 18.1801 46.1225 18.2618 46.1307 18.2216C46.1321 18.2147 46.1367 18.1937 46.1468 18.1535C46.1665 18.0746 46.1985 17.9559 46.2446 17.7925C46.3362 17.4676 46.4754 16.995 46.6634 16.3713L44.6124 15.7532ZM44.0013 18.0672C44.0013 18.5051 44.2434 18.81 44.4554 18.9691C44.6373 19.1055 44.8211 19.1598 44.9154 19.1834C45.1151 19.2333 45.3246 19.2411 45.4836 19.2411V17.099C45.3685 17.099 45.3724 17.0897 45.435 17.1053C45.4608 17.1117 45.5931 17.1447 45.7407 17.2554C45.9185 17.3887 46.1434 17.6636 46.1434 18.0672H44.0013ZM45.4836 19.2411C45.791 19.2411 46.1597 19.1544 46.4971 19.0605C46.8693 18.9568 47.33 18.8064 47.8725 18.6139L47.1562 16.5952C46.6362 16.7797 46.2273 16.912 45.9225 16.9969C45.583 17.0914 45.4676 17.099 45.4836 17.099V19.2411ZM47.8869 18.6087C48.4115 18.4141 48.8143 18.2734 49.1022 18.1827C49.2468 18.1371 49.3505 18.108 49.4195 18.0913C49.5139 18.0684 49.4813 18.0844 49.3908 18.0844V15.9423C49.2061 15.9423 49.0246 15.9829 48.9155 16.0093C48.781 16.0419 48.6266 16.0866 48.4585 16.1396C48.1208 16.246 47.6797 16.4009 47.1418 16.6004L47.8869 18.6087ZM49.3908 18.0844C49.3774 18.0844 49.3148 18.082 49.2297 18.0434C49.1386 18.0022 49.0622 17.9374 49.0099 17.8663C48.9622 17.8015 48.9519 17.7553 48.953 17.7599C48.9544 17.7654 48.9624 17.8038 48.9624 17.8873H51.1045C51.1045 17.4963 51.0382 17.0088 50.7357 16.5974C50.3879 16.1244 49.8744 15.9423 49.3908 15.9423V18.0844ZM48.9624 17.8873C48.9624 17.827 48.9866 17.9127 48.7735 18.1736C48.5697 18.423 48.2223 18.7413 47.6874 19.1245L48.935 20.8658C49.5483 20.4264 50.062 19.9821 50.4323 19.5289C50.7932 19.0872 51.1045 18.5303 51.1045 17.8873H48.9624ZM47.6961 19.1183C46.7054 19.8133 45.7171 20.1322 44.7125 20.1322V22.2743C46.2098 22.2743 47.6207 21.7878 48.9263 20.8719L47.6961 19.1183ZM44.7125 20.1322C44.5309 20.1322 44.1186 20.0166 43.4257 19.4654L42.0922 21.1418C42.9072 21.7901 43.7973 22.2743 44.7125 22.2743V20.1322ZM43.4257 19.4654C42.7823 18.9536 42.6989 18.6205 42.6989 18.4785H40.5569C40.5569 19.5704 41.2275 20.454 42.0922 21.1418L43.4257 19.4654ZM42.6989 18.4785C42.6989 18.3555 42.7365 18.0611 42.8626 17.5313C42.9832 17.0248 43.1681 16.3695 43.4213 15.5592L41.3768 14.9202C41.1159 15.755 40.9152 16.4621 40.7788 17.0352C40.6478 17.585 40.5569 18.0874 40.5569 18.4785H42.6989ZM43.4193 15.5657C43.9503 13.9041 44.3122 12.7583 44.5029 12.1339L42.4544 11.5079C42.2681 12.1174 41.9103 13.2508 41.3788 14.9136L43.4193 15.5657ZM43.1879 10.7901C42.5382 10.9734 42.1504 11.0326 41.9621 11.0326V13.1747C42.4592 13.1747 43.0825 13.0455 43.7694 12.8517L43.1879 10.7901ZM41.9621 11.0326C42.0416 11.0326 42.0643 11.0614 42.0143 11.0292C41.9587 10.9935 41.8559 10.9087 41.7128 10.7331L40.0521 12.0862C40.4881 12.6213 41.123 13.1747 41.9621 13.1747V11.0326ZM41.7246 10.7479C41.4345 10.3787 41.388 10.1524 41.388 10.0473H39.2459C39.2459 10.799 39.5763 11.4809 40.0403 12.0714L41.7246 10.7479ZM41.388 10.0473C41.388 10.3904 41.1721 10.5367 41.2147 10.5043C41.2502 10.4772 41.3775 10.4007 41.6654 10.3004C42.2291 10.104 43.1424 9.90546 44.4517 9.71962L44.1507 7.59879C42.8038 7.78996 41.725 8.01127 40.9606 8.27756C40.5845 8.40861 40.2137 8.57414 39.9172 8.79987C39.6278 9.02017 39.2459 9.42997 39.2459 10.0473H41.388ZM45.3506 8.87359C45.6854 7.23476 45.8607 5.77999 45.8607 4.5207H43.7186C43.7186 5.59198 43.5682 6.89623 43.2518 8.44482L45.3506 8.87359ZM45.8607 4.5207C45.8607 4.42874 45.8829 4.5565 45.7397 4.69967C45.5966 4.84285 45.4688 4.82059 45.5608 4.82059V2.6785C45.1386 2.6785 44.6253 2.78476 44.2251 3.18499C43.8248 3.58522 43.7186 4.09855 43.7186 4.5207H45.8607ZM45.5608 4.82059C45.6189 4.82059 45.9362 4.88686 46.5882 5.40845L47.9264 3.73576C47.2074 3.1606 46.3938 2.6785 45.5608 2.6785V4.82059ZM46.6113 5.42643C47.2209 5.88736 47.2402 6.1412 47.2402 6.16582H49.3822C49.3822 5.12796 48.6988 4.31933 47.9033 3.71778L46.6113 5.42643ZM47.2402 6.16582C47.2402 6.55349 47.152 7.18498 46.9347 8.10438L49.0194 8.59711C49.2476 7.63147 49.3822 6.80635 49.3822 6.16582H47.2402ZM48.0216 9.42086C48.8402 9.38675 49.4479 9.37038 49.8535 9.37038V7.22829C49.4023 7.22829 48.759 7.24619 47.9324 7.28063L48.0216 9.42086ZM49.8535 9.37038C50.137 9.37038 50.3625 9.38662 50.5369 9.41298C50.7147 9.43984 50.8131 9.47335 50.8572 9.49331C50.8996 9.51255 50.8543 9.50195 50.798 9.42542C50.7328 9.3368 50.7103 9.23796 50.7103 9.17331H52.8524C52.8524 8.81733 52.7496 8.46358 52.5238 8.15647C52.3068 7.86145 52.0205 7.66876 51.7416 7.54234C51.21 7.30133 50.5436 7.22829 49.8535 7.22829V9.37038ZM50.7103 9.17331C50.7103 9.08064 50.7355 8.99867 50.7669 8.94001C50.7951 8.88759 50.8175 8.87335 50.7986 8.88967C50.7795 8.90617 50.7328 8.94118 50.6434 8.98859C50.5552 9.03539 50.4374 9.0879 50.2843 9.14354L51.0164 11.1567C51.4502 10.9989 51.87 10.7947 52.1987 10.5108C52.5424 10.214 52.8524 9.76551 52.8524 9.17331H50.7103ZM50.2976 9.13882C49.6335 9.37047 48.5536 9.6417 47.0215 9.94812L47.4416 12.0486C48.9941 11.7381 50.1934 11.4438 51.0031 11.1614L50.2976 9.13882Z" fill="white" mask="url(#path-1-outside-1_740_3589)"/>
|
|
166
|
+
</g>
|
|
167
|
+
<defs>
|
|
168
|
+
<filter id="filter0_d_740_3589" x="0.494633" y="0.425297" width="53.4287" height="22.9199" filterUnits="userSpaceOnUse" color-interpolation-filters="sRGB">
|
|
169
|
+
<feFlood flood-opacity="0" result="BackgroundImageFix"/>
|
|
170
|
+
<feColorMatrix in="SourceAlpha" type="matrix" values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 127 0" result="hardAlpha"/>
|
|
171
|
+
<feOffset/>
|
|
172
|
+
<feGaussianBlur stdDeviation="1.07104"/>
|
|
173
|
+
<feComposite in2="hardAlpha" operator="out"/>
|
|
174
|
+
<feColorMatrix type="matrix" values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0.15 0"/>
|
|
175
|
+
<feBlend mode="normal" in2="BackgroundImageFix" result="effect1_dropShadow_740_3589"/>
|
|
176
|
+
<feBlend mode="normal" in="SourceGraphic" in2="effect1_dropShadow_740_3589" result="shape"/>
|
|
177
|
+
</filter>
|
|
178
|
+
</defs>
|
|
179
|
+
</svg>
|
|
180
|
+
`;
|
|
181
|
+
|
|
182
|
+
export const mindMapStyle1Light = svg`<svg width="58" height="44" viewBox="0 0 58 44" fill="none" xmlns="http://www.w3.org/2000/svg">
|
|
183
|
+
<path fill-rule="evenodd" clip-rule="evenodd" d="M40.3337 22.7009L21.0225 22.7009L21.0225 21.2996L40.3337 21.2996L40.3337 22.7009Z" fill="#E660A4"/>
|
|
184
|
+
<path fill-rule="evenodd" clip-rule="evenodd" d="M37.8158 8.32903C34.2586 8.32903 31.3749 11.2326 31.3749 14.8143C31.3749 19.1699 27.8681 22.7008 23.5423 22.7008L21.0234 22.7008L21.0234 21.2995L23.5423 21.2995C27.0995 21.2995 29.9832 18.396 29.9832 14.8143C29.9832 10.4587 33.49 6.92773 37.8158 6.92773L40.3346 6.92773L40.3346 8.32903L37.8158 8.32903Z" fill="#6E52DF"/>
|
|
185
|
+
<path fill-rule="evenodd" clip-rule="evenodd" d="M23.5413 22.7009L21.0225 22.7009L21.0225 21.2996L23.5413 21.2996C27.8671 21.2996 31.3739 24.8305 31.3739 29.1861C31.3739 32.7678 34.2576 35.6713 37.8148 35.6713L40.3337 35.6713L40.3337 37.0726L37.8148 37.0726C33.489 37.0726 29.9822 33.5417 29.9822 29.1861C29.9822 25.6044 27.0985 22.7009 23.5413 22.7009Z" fill="#FF8C38"/>
|
|
186
|
+
<g filter="url(#filter0_d_8326_40611)">
|
|
187
|
+
<path fill-rule="evenodd" clip-rule="evenodd" d="M42.0141 30.7434L52.9291 30.7434C54.6251 30.7434 56 32.1278 56 33.8355L56 38.9079C56 40.6156 54.6251 42 52.9291 42L42.0141 42C40.318 42 38.9431 40.6156 38.9431 38.9079L38.9431 33.8355C38.9431 32.1278 40.318 30.7434 42.0141 30.7434ZM42.0141 32.1447C41.0866 32.1447 40.3348 32.9017 40.3348 33.8355L40.3348 38.9079C40.3348 39.8417 41.0866 40.5987 42.0141 40.5987L52.9291 40.5987C53.8565 40.5987 54.6083 39.8417 54.6083 38.9079L54.6083 33.8355C54.6083 32.9017 53.8565 32.1447 52.9291 32.1447L42.0141 32.1447Z" fill="#FF8C38"/>
|
|
188
|
+
</g>
|
|
189
|
+
<g filter="url(#filter1_d_8326_40611)">
|
|
190
|
+
<path fill-rule="evenodd" clip-rule="evenodd" d="M42.0131 16.4124L52.9281 16.4124C54.6241 16.4124 55.9991 17.7967 55.9991 19.5044L55.9991 24.5768C55.9991 26.2846 54.6241 27.6689 52.9281 27.6689L42.0131 27.6689C40.317 27.6689 38.9421 26.2846 38.9421 24.5768L38.9421 19.5044C38.9421 17.7967 40.317 16.4124 42.0131 16.4124ZM42.0131 17.8136C41.0857 17.8136 40.3339 18.5706 40.3339 19.5044L40.3339 24.5768C40.3339 25.5106 41.0857 26.2676 42.0131 26.2676L52.9281 26.2676C53.8555 26.2676 54.6073 25.5106 54.6073 24.5768L54.6073 19.5044C54.6073 18.5706 53.8555 17.8136 52.9281 17.8136L42.0131 17.8136Z" fill="#E660A4"/>
|
|
191
|
+
</g>
|
|
192
|
+
<g filter="url(#filter2_d_8326_40611)">
|
|
193
|
+
<path fill-rule="evenodd" clip-rule="evenodd" d="M42.0131 2L52.9281 2C54.6241 2 55.9991 3.38438 55.9991 5.09209L55.9991 10.1645C55.9991 11.8722 54.6241 13.2566 52.9281 13.2566L42.0131 13.2566C40.317 13.2566 38.9421 11.8722 38.9421 10.1645L38.9421 5.09209C38.9421 3.38438 40.317 2 42.0131 2ZM42.0131 3.4013C41.0857 3.4013 40.3339 4.15829 40.3339 5.09209L40.3339 10.1645C40.3339 11.0983 41.0857 11.8553 42.0131 11.8553L52.9281 11.8553C53.8555 11.8553 54.6073 11.0983 54.6073 10.1645L54.6073 5.09209C54.6073 4.15829 53.8555 3.4013 52.9281 3.4013L42.0131 3.4013Z" fill="#6E52DF"/>
|
|
194
|
+
</g>
|
|
195
|
+
<g filter="url(#filter3_d_8326_40611)">
|
|
196
|
+
<path fill-rule="evenodd" clip-rule="evenodd" d="M5.45717 14.6809L18.1186 14.6809C20.0279 14.6809 21.5758 16.2394 21.5758 18.1619L21.5758 25.8381C21.5758 27.7606 20.0279 29.3191 18.1186 29.3191L5.45717 29.3191C3.54783 29.3191 2 27.7606 2 25.8381L2 18.1619C2 16.2394 3.54783 14.6809 5.45717 14.6809ZM5.45717 16.0822C4.31645 16.0822 3.39171 17.0133 3.39171 18.1619L3.39171 25.8381C3.39171 26.9867 4.31645 27.9178 5.45717 27.9178L18.1186 27.9178C19.2593 27.9178 20.1841 26.9867 20.1841 25.8381L20.1841 18.1619C20.1841 17.0133 19.2593 16.0822 18.1186 16.0822L5.45717 16.0822Z" fill="#84CFFF"/>
|
|
197
|
+
</g>
|
|
198
|
+
<path d="M40.3342 33.8356C40.3342 32.9018 41.086 32.1448 42.0135 32.1448L52.9285 32.1448C53.8559 32.1448 54.6077 32.9018 54.6077 33.8356L54.6077 38.908C54.6077 39.8418 53.8559 40.5988 52.9285 40.5988L42.0135 40.5988C41.086 40.5988 40.3342 39.8418 40.3342 38.908L40.3342 33.8356Z" fill="#FBFBFC"/>
|
|
199
|
+
<path d="M40.3342 19.5045C40.3342 18.5707 41.086 17.8137 42.0135 17.8137L52.9285 17.8137C53.8559 17.8137 54.6077 18.5707 54.6077 19.5045L54.6077 24.5769C54.6077 25.5107 53.8559 26.2677 52.9285 26.2677L42.0135 26.2677C41.086 26.2677 40.3342 25.5107 40.3342 24.5769L40.3342 19.5045Z" fill="#FBFBFC"/>
|
|
200
|
+
<path d="M40.3342 5.09217C40.3342 4.15836 41.086 3.40137 42.0135 3.40137L52.9285 3.40137C53.8559 3.40137 54.6077 4.15836 54.6077 5.09216L54.6077 10.1646C54.6077 11.0984 53.8559 11.8554 52.9285 11.8554L42.0135 11.8554C41.086 11.8554 40.3342 11.0984 40.3342 10.1646L40.3342 5.09217Z" fill="#FBFBFC"/>
|
|
201
|
+
<path d="M3.39111 18.1617C3.39111 17.0131 4.31585 16.082 5.45657 16.082L18.118 16.082C19.2587 16.082 20.1835 17.0131 20.1835 18.1617L20.1835 25.8379C20.1835 26.9865 19.2587 27.9176 18.118 27.9176L5.45657 27.9176C4.31585 27.9176 3.39111 26.9865 3.39111 25.8379L3.39111 18.1617Z" fill="#FBFBFC"/>
|
|
202
|
+
<defs>
|
|
203
|
+
<filter id="filter0_d_8326_40611" x="36.9431" y="28.7434" width="21.0569" height="15.2566" filterUnits="userSpaceOnUse" color-interpolation-filters="sRGB">
|
|
204
|
+
<feFlood flood-opacity="0" result="BackgroundImageFix"/>
|
|
205
|
+
<feColorMatrix in="SourceAlpha" type="matrix" values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 127 0" result="hardAlpha"/>
|
|
206
|
+
<feOffset/>
|
|
207
|
+
<feGaussianBlur stdDeviation="1"/>
|
|
208
|
+
<feComposite in2="hardAlpha" operator="out"/>
|
|
209
|
+
<feColorMatrix type="matrix" values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0.15 0"/>
|
|
210
|
+
<feBlend mode="normal" in2="BackgroundImageFix" result="effect1_dropShadow_8326_40611"/>
|
|
211
|
+
<feBlend mode="normal" in="SourceGraphic" in2="effect1_dropShadow_8326_40611" result="shape"/>
|
|
212
|
+
</filter>
|
|
213
|
+
<filter id="filter1_d_8326_40611" x="36.9421" y="14.4124" width="21.0569" height="15.2566" filterUnits="userSpaceOnUse" color-interpolation-filters="sRGB">
|
|
214
|
+
<feFlood flood-opacity="0" result="BackgroundImageFix"/>
|
|
215
|
+
<feColorMatrix in="SourceAlpha" type="matrix" values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 127 0" result="hardAlpha"/>
|
|
216
|
+
<feOffset/>
|
|
217
|
+
<feGaussianBlur stdDeviation="1"/>
|
|
218
|
+
<feComposite in2="hardAlpha" operator="out"/>
|
|
219
|
+
<feColorMatrix type="matrix" values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0.15 0"/>
|
|
220
|
+
<feBlend mode="normal" in2="BackgroundImageFix" result="effect1_dropShadow_8326_40611"/>
|
|
221
|
+
<feBlend mode="normal" in="SourceGraphic" in2="effect1_dropShadow_8326_40611" result="shape"/>
|
|
222
|
+
</filter>
|
|
223
|
+
<filter id="filter2_d_8326_40611" x="36.9421" y="0" width="21.0569" height="15.2566" filterUnits="userSpaceOnUse" color-interpolation-filters="sRGB">
|
|
224
|
+
<feFlood flood-opacity="0" result="BackgroundImageFix"/>
|
|
225
|
+
<feColorMatrix in="SourceAlpha" type="matrix" values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 127 0" result="hardAlpha"/>
|
|
226
|
+
<feOffset/>
|
|
227
|
+
<feGaussianBlur stdDeviation="1"/>
|
|
228
|
+
<feComposite in2="hardAlpha" operator="out"/>
|
|
229
|
+
<feColorMatrix type="matrix" values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0.15 0"/>
|
|
230
|
+
<feBlend mode="normal" in2="BackgroundImageFix" result="effect1_dropShadow_8326_40611"/>
|
|
231
|
+
<feBlend mode="normal" in="SourceGraphic" in2="effect1_dropShadow_8326_40611" result="shape"/>
|
|
232
|
+
</filter>
|
|
233
|
+
<filter id="filter3_d_8326_40611" x="0" y="12.6809" width="23.5758" height="18.6382" filterUnits="userSpaceOnUse" color-interpolation-filters="sRGB">
|
|
234
|
+
<feFlood flood-opacity="0" result="BackgroundImageFix"/>
|
|
235
|
+
<feColorMatrix in="SourceAlpha" type="matrix" values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 127 0" result="hardAlpha"/>
|
|
236
|
+
<feOffset/>
|
|
237
|
+
<feGaussianBlur stdDeviation="1"/>
|
|
238
|
+
<feComposite in2="hardAlpha" operator="out"/>
|
|
239
|
+
<feColorMatrix type="matrix" values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0.15 0"/>
|
|
240
|
+
<feBlend mode="normal" in2="BackgroundImageFix" result="effect1_dropShadow_8326_40611"/>
|
|
241
|
+
<feBlend mode="normal" in="SourceGraphic" in2="effect1_dropShadow_8326_40611" result="shape"/>
|
|
242
|
+
</filter>
|
|
243
|
+
</defs>
|
|
244
|
+
</svg>
|
|
245
|
+
`;
|
|
246
|
+
export const mindMapStyle1Dark = svg`<svg width="58" height="44" viewBox="0 0 58 44" fill="none" xmlns="http://www.w3.org/2000/svg">
|
|
247
|
+
<path fill-rule="evenodd" clip-rule="evenodd" d="M40.3337 22.7009L21.0225 22.7009L21.0225 21.2996L40.3337 21.2996L40.3337 22.7009Z" fill="#E660A4"/>
|
|
248
|
+
<path fill-rule="evenodd" clip-rule="evenodd" d="M37.8158 8.32903C34.2586 8.32903 31.3749 11.2326 31.3749 14.8143C31.3749 19.1699 27.8681 22.7008 23.5423 22.7008L21.0234 22.7008L21.0234 21.2995L23.5423 21.2995C27.0995 21.2995 29.9832 18.396 29.9832 14.8143C29.9832 10.4587 33.49 6.92773 37.8158 6.92773L40.3346 6.92773L40.3346 8.32903L37.8158 8.32903Z" fill="#6E52DF"/>
|
|
249
|
+
<path fill-rule="evenodd" clip-rule="evenodd" d="M23.5413 22.7009L21.0225 22.7009L21.0225 21.2996L23.5413 21.2996C27.8671 21.2996 31.3739 24.8305 31.3739 29.1861C31.3739 32.7678 34.2576 35.6713 37.8148 35.6713L40.3337 35.6713L40.3337 37.0726L37.8148 37.0726C33.489 37.0726 29.9822 33.5417 29.9822 29.1861C29.9822 25.6044 27.0985 22.7009 23.5413 22.7009Z" fill="#FF8C38"/>
|
|
250
|
+
<g filter="url(#filter0_d_8326_49080)">
|
|
251
|
+
<path fill-rule="evenodd" clip-rule="evenodd" d="M42.0141 30.7434L52.9291 30.7434C54.6251 30.7434 56 32.1278 56 33.8355L56 38.9079C56 40.6156 54.6251 42 52.9291 42L42.0141 42C40.318 42 38.9431 40.6156 38.9431 38.9079L38.9431 33.8355C38.9431 32.1278 40.318 30.7434 42.0141 30.7434ZM42.0141 32.1447C41.0866 32.1447 40.3348 32.9017 40.3348 33.8355L40.3348 38.9079C40.3348 39.8417 41.0866 40.5987 42.0141 40.5987L52.9291 40.5987C53.8565 40.5987 54.6083 39.8417 54.6083 38.9079L54.6083 33.8355C54.6083 32.9017 53.8565 32.1447 52.9291 32.1447L42.0141 32.1447Z" fill="#FF8C38"/>
|
|
252
|
+
</g>
|
|
253
|
+
<g filter="url(#filter1_d_8326_49080)">
|
|
254
|
+
<path fill-rule="evenodd" clip-rule="evenodd" d="M42.0131 16.4124L52.9281 16.4124C54.6241 16.4124 55.9991 17.7967 55.9991 19.5044L55.9991 24.5768C55.9991 26.2846 54.6241 27.6689 52.9281 27.6689L42.0131 27.6689C40.317 27.6689 38.9421 26.2846 38.9421 24.5768L38.9421 19.5044C38.9421 17.7967 40.317 16.4124 42.0131 16.4124ZM42.0131 17.8136C41.0857 17.8136 40.3339 18.5706 40.3339 19.5044L40.3339 24.5768C40.3339 25.5106 41.0857 26.2676 42.0131 26.2676L52.9281 26.2676C53.8555 26.2676 54.6073 25.5106 54.6073 24.5768L54.6073 19.5044C54.6073 18.5706 53.8555 17.8136 52.9281 17.8136L42.0131 17.8136Z" fill="#E660A4"/>
|
|
255
|
+
</g>
|
|
256
|
+
<g filter="url(#filter2_d_8326_49080)">
|
|
257
|
+
<path fill-rule="evenodd" clip-rule="evenodd" d="M42.0131 2L52.9281 2C54.6241 2 55.9991 3.38438 55.9991 5.09209L55.9991 10.1645C55.9991 11.8722 54.6241 13.2566 52.9281 13.2566L42.0131 13.2566C40.317 13.2566 38.9421 11.8722 38.9421 10.1645L38.9421 5.09209C38.9421 3.38438 40.317 2 42.0131 2ZM42.0131 3.4013C41.0857 3.4013 40.3339 4.15829 40.3339 5.09209L40.3339 10.1645C40.3339 11.0983 41.0857 11.8553 42.0131 11.8553L52.9281 11.8553C53.8555 11.8553 54.6073 11.0983 54.6073 10.1645L54.6073 5.09209C54.6073 4.15829 53.8555 3.4013 52.9281 3.4013L42.0131 3.4013Z" fill="#6E52DF"/>
|
|
258
|
+
</g>
|
|
259
|
+
<g filter="url(#filter3_d_8326_49080)">
|
|
260
|
+
<path fill-rule="evenodd" clip-rule="evenodd" d="M5.45717 14.6809L18.1186 14.6809C20.0279 14.6809 21.5758 16.2394 21.5758 18.1619L21.5758 25.8381C21.5758 27.7606 20.0279 29.3191 18.1186 29.3191L5.45717 29.3191C3.54783 29.3191 2 27.7606 2 25.8381L2 18.1619C2 16.2394 3.54783 14.6809 5.45717 14.6809ZM5.45717 16.0822C4.31645 16.0822 3.39171 17.0133 3.39171 18.1619L3.39171 25.8381C3.39171 26.9867 4.31645 27.9178 5.45717 27.9178L18.1186 27.9178C19.2593 27.9178 20.1841 26.9867 20.1841 25.8381L20.1841 18.1619C20.1841 17.0133 19.2593 16.0822 18.1186 16.0822L5.45717 16.0822Z" fill="#84CFFF"/>
|
|
261
|
+
</g>
|
|
262
|
+
<path d="M40.3342 33.8356C40.3342 32.9018 41.086 32.1448 42.0135 32.1448L52.9285 32.1448C53.8559 32.1448 54.6077 32.9018 54.6077 33.8356L54.6077 38.908C54.6077 39.8418 53.8559 40.5988 52.9285 40.5988L42.0135 40.5988C41.086 40.5988 40.3342 39.8418 40.3342 38.908L40.3342 33.8356Z" fill="#1E1E1E"/>
|
|
263
|
+
<path d="M40.3342 19.5045C40.3342 18.5707 41.086 17.8137 42.0135 17.8137L52.9285 17.8137C53.8559 17.8137 54.6077 18.5707 54.6077 19.5045L54.6077 24.5769C54.6077 25.5107 53.8559 26.2677 52.9285 26.2677L42.0135 26.2677C41.086 26.2677 40.3342 25.5107 40.3342 24.5769L40.3342 19.5045Z" fill="#1E1E1E"/>
|
|
264
|
+
<path d="M40.3342 5.09217C40.3342 4.15836 41.086 3.40137 42.0135 3.40137L52.9285 3.40137C53.8559 3.40137 54.6077 4.15836 54.6077 5.09216L54.6077 10.1646C54.6077 11.0984 53.8559 11.8554 52.9285 11.8554L42.0135 11.8554C41.086 11.8554 40.3342 11.0984 40.3342 10.1646L40.3342 5.09217Z" fill="#1E1E1E"/>
|
|
265
|
+
<path d="M3.39111 18.1617C3.39111 17.0131 4.31585 16.082 5.45657 16.082L18.118 16.082C19.2587 16.082 20.1835 17.0131 20.1835 18.1617L20.1835 25.8379C20.1835 26.9865 19.2587 27.9176 18.118 27.9176L5.45657 27.9176C4.31585 27.9176 3.39111 26.9865 3.39111 25.8379L3.39111 18.1617Z" fill="#1E1E1E"/>
|
|
266
|
+
<defs>
|
|
267
|
+
<filter id="filter0_d_8326_49080" x="36.9431" y="28.7434" width="21.0569" height="15.2566" filterUnits="userSpaceOnUse" color-interpolation-filters="sRGB">
|
|
268
|
+
<feFlood flood-opacity="0" result="BackgroundImageFix"/>
|
|
269
|
+
<feColorMatrix in="SourceAlpha" type="matrix" values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 127 0" result="hardAlpha"/>
|
|
270
|
+
<feOffset/>
|
|
271
|
+
<feGaussianBlur stdDeviation="1"/>
|
|
272
|
+
<feComposite in2="hardAlpha" operator="out"/>
|
|
273
|
+
<feColorMatrix type="matrix" values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0.15 0"/>
|
|
274
|
+
<feBlend mode="normal" in2="BackgroundImageFix" result="effect1_dropShadow_8326_49080"/>
|
|
275
|
+
<feBlend mode="normal" in="SourceGraphic" in2="effect1_dropShadow_8326_49080" result="shape"/>
|
|
276
|
+
</filter>
|
|
277
|
+
<filter id="filter1_d_8326_49080" x="36.9421" y="14.4124" width="21.0569" height="15.2566" filterUnits="userSpaceOnUse" color-interpolation-filters="sRGB">
|
|
278
|
+
<feFlood flood-opacity="0" result="BackgroundImageFix"/>
|
|
279
|
+
<feColorMatrix in="SourceAlpha" type="matrix" values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 127 0" result="hardAlpha"/>
|
|
280
|
+
<feOffset/>
|
|
281
|
+
<feGaussianBlur stdDeviation="1"/>
|
|
282
|
+
<feComposite in2="hardAlpha" operator="out"/>
|
|
283
|
+
<feColorMatrix type="matrix" values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0.15 0"/>
|
|
284
|
+
<feBlend mode="normal" in2="BackgroundImageFix" result="effect1_dropShadow_8326_49080"/>
|
|
285
|
+
<feBlend mode="normal" in="SourceGraphic" in2="effect1_dropShadow_8326_49080" result="shape"/>
|
|
286
|
+
</filter>
|
|
287
|
+
<filter id="filter2_d_8326_49080" x="36.9421" y="0" width="21.0569" height="15.2566" filterUnits="userSpaceOnUse" color-interpolation-filters="sRGB">
|
|
288
|
+
<feFlood flood-opacity="0" result="BackgroundImageFix"/>
|
|
289
|
+
<feColorMatrix in="SourceAlpha" type="matrix" values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 127 0" result="hardAlpha"/>
|
|
290
|
+
<feOffset/>
|
|
291
|
+
<feGaussianBlur stdDeviation="1"/>
|
|
292
|
+
<feComposite in2="hardAlpha" operator="out"/>
|
|
293
|
+
<feColorMatrix type="matrix" values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0.15 0"/>
|
|
294
|
+
<feBlend mode="normal" in2="BackgroundImageFix" result="effect1_dropShadow_8326_49080"/>
|
|
295
|
+
<feBlend mode="normal" in="SourceGraphic" in2="effect1_dropShadow_8326_49080" result="shape"/>
|
|
296
|
+
</filter>
|
|
297
|
+
<filter id="filter3_d_8326_49080" x="0" y="12.6809" width="23.5758" height="18.6382" filterUnits="userSpaceOnUse" color-interpolation-filters="sRGB">
|
|
298
|
+
<feFlood flood-opacity="0" result="BackgroundImageFix"/>
|
|
299
|
+
<feColorMatrix in="SourceAlpha" type="matrix" values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 127 0" result="hardAlpha"/>
|
|
300
|
+
<feOffset/>
|
|
301
|
+
<feGaussianBlur stdDeviation="1"/>
|
|
302
|
+
<feComposite in2="hardAlpha" operator="out"/>
|
|
303
|
+
<feColorMatrix type="matrix" values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0.15 0"/>
|
|
304
|
+
<feBlend mode="normal" in2="BackgroundImageFix" result="effect1_dropShadow_8326_49080"/>
|
|
305
|
+
<feBlend mode="normal" in="SourceGraphic" in2="effect1_dropShadow_8326_49080" result="shape"/>
|
|
306
|
+
</filter>
|
|
307
|
+
</defs>
|
|
308
|
+
</svg>
|
|
309
|
+
`;
|
|
310
|
+
|
|
311
|
+
export const mindMapStyle2Light = svg`<svg width="64" height="48" viewBox="0 0 64 48" fill="none" xmlns="http://www.w3.org/2000/svg">
|
|
312
|
+
<path d="M23.9766 24L43.4028 24" stroke="black" stroke-width="1.4" stroke-linejoin="round"/>
|
|
313
|
+
<path d="M23.9766 24.0001L33.5897 24.0001C33.6449 24.0001 33.6897 23.9553 33.6897 23.9001L33.6897 9.7416C33.6897 9.68637 33.7344 9.6416 33.7897 9.6416L43.4028 9.6416" stroke="black" stroke-width="1.4" stroke-linejoin="round"/>
|
|
314
|
+
<path d="M23.9766 24L33.5897 24C33.6449 24 33.6897 24.0448 33.6897 24.1L33.6897 38.2585C33.6897 38.3137 33.7344 38.3585 33.7897 38.3585L43.4028 38.3585" stroke="black" stroke-width="1.4" stroke-linejoin="round"/>
|
|
315
|
+
<g filter="url(#filter0_dd_7525_14565)">
|
|
316
|
+
<rect x="43.4023" y="34.1353" width="14.3585" height="8.44617" rx="0.1" fill="#84CFFF"/>
|
|
317
|
+
</g>
|
|
318
|
+
<g filter="url(#filter1_dd_7525_14565)">
|
|
319
|
+
<rect x="43.4023" y="19.7769" width="14.3585" height="8.44617" rx="0.1" fill="#84CFFF"/>
|
|
320
|
+
</g>
|
|
321
|
+
<g filter="url(#filter2_dd_7525_14565)">
|
|
322
|
+
<rect x="43.4023" y="5.41846" width="14.3585" height="8.44617" rx="0.1" fill="#84CFFF"/>
|
|
323
|
+
</g>
|
|
324
|
+
<g filter="url(#filter3_dd_7525_14565)">
|
|
325
|
+
<rect x="6.23926" y="18.0879" width="16.8923" height="11.8246" rx="0.1" fill="#FFC46B"/>
|
|
326
|
+
</g>
|
|
327
|
+
<defs>
|
|
328
|
+
<filter id="filter0_dd_7525_14565" x="42.4023" y="33.1353" width="17.3584" height="11.4462" filterUnits="userSpaceOnUse" color-interpolation-filters="sRGB">
|
|
329
|
+
<feFlood flood-opacity="0" result="BackgroundImageFix"/>
|
|
330
|
+
<feColorMatrix in="SourceAlpha" type="matrix" values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 127 0" result="hardAlpha"/>
|
|
331
|
+
<feMorphology radius="1" operator="dilate" in="SourceAlpha" result="effect1_dropShadow_7525_14565"/>
|
|
332
|
+
<feOffset dx="1" dy="1"/>
|
|
333
|
+
<feComposite in2="hardAlpha" operator="out"/>
|
|
334
|
+
<feColorMatrix type="matrix" values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0"/>
|
|
335
|
+
<feBlend mode="normal" in2="BackgroundImageFix" result="effect1_dropShadow_7525_14565"/>
|
|
336
|
+
<feColorMatrix in="SourceAlpha" type="matrix" values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 127 0" result="hardAlpha"/>
|
|
337
|
+
<feMorphology radius="1" operator="dilate" in="SourceAlpha" result="effect2_dropShadow_7525_14565"/>
|
|
338
|
+
<feOffset/>
|
|
339
|
+
<feComposite in2="hardAlpha" operator="out"/>
|
|
340
|
+
<feColorMatrix type="matrix" values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0"/>
|
|
341
|
+
<feBlend mode="normal" in2="effect1_dropShadow_7525_14565" result="effect2_dropShadow_7525_14565"/>
|
|
342
|
+
<feBlend mode="normal" in="SourceGraphic" in2="effect2_dropShadow_7525_14565" result="shape"/>
|
|
343
|
+
</filter>
|
|
344
|
+
<filter id="filter1_dd_7525_14565" x="42.4023" y="18.7769" width="17.3584" height="11.4462" filterUnits="userSpaceOnUse" color-interpolation-filters="sRGB">
|
|
345
|
+
<feFlood flood-opacity="0" result="BackgroundImageFix"/>
|
|
346
|
+
<feColorMatrix in="SourceAlpha" type="matrix" values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 127 0" result="hardAlpha"/>
|
|
347
|
+
<feMorphology radius="1" operator="dilate" in="SourceAlpha" result="effect1_dropShadow_7525_14565"/>
|
|
348
|
+
<feOffset dx="1" dy="1"/>
|
|
349
|
+
<feComposite in2="hardAlpha" operator="out"/>
|
|
350
|
+
<feColorMatrix type="matrix" values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0"/>
|
|
351
|
+
<feBlend mode="normal" in2="BackgroundImageFix" result="effect1_dropShadow_7525_14565"/>
|
|
352
|
+
<feColorMatrix in="SourceAlpha" type="matrix" values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 127 0" result="hardAlpha"/>
|
|
353
|
+
<feMorphology radius="1" operator="dilate" in="SourceAlpha" result="effect2_dropShadow_7525_14565"/>
|
|
354
|
+
<feOffset/>
|
|
355
|
+
<feComposite in2="hardAlpha" operator="out"/>
|
|
356
|
+
<feColorMatrix type="matrix" values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0"/>
|
|
357
|
+
<feBlend mode="normal" in2="effect1_dropShadow_7525_14565" result="effect2_dropShadow_7525_14565"/>
|
|
358
|
+
<feBlend mode="normal" in="SourceGraphic" in2="effect2_dropShadow_7525_14565" result="shape"/>
|
|
359
|
+
</filter>
|
|
360
|
+
<filter id="filter2_dd_7525_14565" x="42.4023" y="4.41846" width="17.3584" height="11.4462" filterUnits="userSpaceOnUse" color-interpolation-filters="sRGB">
|
|
361
|
+
<feFlood flood-opacity="0" result="BackgroundImageFix"/>
|
|
362
|
+
<feColorMatrix in="SourceAlpha" type="matrix" values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 127 0" result="hardAlpha"/>
|
|
363
|
+
<feMorphology radius="1" operator="dilate" in="SourceAlpha" result="effect1_dropShadow_7525_14565"/>
|
|
364
|
+
<feOffset dx="1" dy="1"/>
|
|
365
|
+
<feComposite in2="hardAlpha" operator="out"/>
|
|
366
|
+
<feColorMatrix type="matrix" values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0"/>
|
|
367
|
+
<feBlend mode="normal" in2="BackgroundImageFix" result="effect1_dropShadow_7525_14565"/>
|
|
368
|
+
<feColorMatrix in="SourceAlpha" type="matrix" values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 127 0" result="hardAlpha"/>
|
|
369
|
+
<feMorphology radius="1" operator="dilate" in="SourceAlpha" result="effect2_dropShadow_7525_14565"/>
|
|
370
|
+
<feOffset/>
|
|
371
|
+
<feComposite in2="hardAlpha" operator="out"/>
|
|
372
|
+
<feColorMatrix type="matrix" values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0"/>
|
|
373
|
+
<feBlend mode="normal" in2="effect1_dropShadow_7525_14565" result="effect2_dropShadow_7525_14565"/>
|
|
374
|
+
<feBlend mode="normal" in="SourceGraphic" in2="effect2_dropShadow_7525_14565" result="shape"/>
|
|
375
|
+
</filter>
|
|
376
|
+
<filter id="filter3_dd_7525_14565" x="5.23926" y="17.0879" width="19.8926" height="14.8246" filterUnits="userSpaceOnUse" color-interpolation-filters="sRGB">
|
|
377
|
+
<feFlood flood-opacity="0" result="BackgroundImageFix"/>
|
|
378
|
+
<feColorMatrix in="SourceAlpha" type="matrix" values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 127 0" result="hardAlpha"/>
|
|
379
|
+
<feMorphology radius="1" operator="dilate" in="SourceAlpha" result="effect1_dropShadow_7525_14565"/>
|
|
380
|
+
<feOffset dx="1" dy="1"/>
|
|
381
|
+
<feComposite in2="hardAlpha" operator="out"/>
|
|
382
|
+
<feColorMatrix type="matrix" values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0"/>
|
|
383
|
+
<feBlend mode="normal" in2="BackgroundImageFix" result="effect1_dropShadow_7525_14565"/>
|
|
384
|
+
<feColorMatrix in="SourceAlpha" type="matrix" values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 127 0" result="hardAlpha"/>
|
|
385
|
+
<feMorphology radius="1" operator="dilate" in="SourceAlpha" result="effect2_dropShadow_7525_14565"/>
|
|
386
|
+
<feOffset/>
|
|
387
|
+
<feComposite in2="hardAlpha" operator="out"/>
|
|
388
|
+
<feColorMatrix type="matrix" values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0"/>
|
|
389
|
+
<feBlend mode="normal" in2="effect1_dropShadow_7525_14565" result="effect2_dropShadow_7525_14565"/>
|
|
390
|
+
<feBlend mode="normal" in="SourceGraphic" in2="effect2_dropShadow_7525_14565" result="shape"/>
|
|
391
|
+
</filter>
|
|
392
|
+
</defs>
|
|
393
|
+
</svg>
|
|
394
|
+
`;
|
|
395
|
+
export const mindMapStyle2Dark = svg`<svg width="64" height="48" viewBox="0 0 64 48" fill="none" xmlns="http://www.w3.org/2000/svg">
|
|
396
|
+
<path d="M23.9761 24L43.4023 24" stroke="white" stroke-width="1.4" stroke-linejoin="round"/>
|
|
397
|
+
<path d="M23.9761 24.0001L33.5892 24.0001C33.6444 24.0001 33.6892 23.9553 33.6892 23.9001L33.6892 9.7416C33.6892 9.68637 33.7339 9.6416 33.7892 9.6416L43.4023 9.6416" stroke="white" stroke-width="1.4" stroke-linejoin="round"/>
|
|
398
|
+
<path d="M23.9761 24L33.5892 24C33.6444 24 33.6892 24.0448 33.6892 24.1L33.6892 38.2585C33.6892 38.3137 33.7339 38.3585 33.7892 38.3585L43.4023 38.3585" stroke="white" stroke-width="1.4" stroke-linejoin="round"/>
|
|
399
|
+
<g filter="url(#filter0_dd_7525_19591)">
|
|
400
|
+
<rect x="43.4023" y="34.1353" width="14.3585" height="8.44617" rx="0.1" fill="#84CFFF"/>
|
|
401
|
+
</g>
|
|
402
|
+
<g filter="url(#filter1_dd_7525_19591)">
|
|
403
|
+
<rect x="43.4023" y="19.7769" width="14.3585" height="8.44617" rx="0.1" fill="#84CFFF"/>
|
|
404
|
+
</g>
|
|
405
|
+
<g filter="url(#filter2_dd_7525_19591)">
|
|
406
|
+
<rect x="43.4023" y="5.41846" width="14.3585" height="8.44617" rx="0.1" fill="#84CFFF"/>
|
|
407
|
+
</g>
|
|
408
|
+
<g filter="url(#filter3_dd_7525_19591)">
|
|
409
|
+
<rect x="6.23926" y="18.0879" width="16.8923" height="11.8246" rx="0.1" fill="#FFC46B"/>
|
|
410
|
+
</g>
|
|
411
|
+
<defs>
|
|
412
|
+
<filter id="filter0_dd_7525_19591" x="42.4023" y="33.1353" width="17.3584" height="11.4462" filterUnits="userSpaceOnUse" color-interpolation-filters="sRGB">
|
|
413
|
+
<feFlood flood-opacity="0" result="BackgroundImageFix"/>
|
|
414
|
+
<feColorMatrix in="SourceAlpha" type="matrix" values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 127 0" result="hardAlpha"/>
|
|
415
|
+
<feMorphology radius="1" operator="dilate" in="SourceAlpha" result="effect1_dropShadow_7525_19591"/>
|
|
416
|
+
<feOffset dx="1" dy="1"/>
|
|
417
|
+
<feComposite in2="hardAlpha" operator="out"/>
|
|
418
|
+
<feColorMatrix type="matrix" values="0 0 0 0 1 0 0 0 0 1 0 0 0 0 1 0 0 0 1 0"/>
|
|
419
|
+
<feBlend mode="normal" in2="BackgroundImageFix" result="effect1_dropShadow_7525_19591"/>
|
|
420
|
+
<feColorMatrix in="SourceAlpha" type="matrix" values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 127 0" result="hardAlpha"/>
|
|
421
|
+
<feMorphology radius="1" operator="dilate" in="SourceAlpha" result="effect2_dropShadow_7525_19591"/>
|
|
422
|
+
<feOffset/>
|
|
423
|
+
<feComposite in2="hardAlpha" operator="out"/>
|
|
424
|
+
<feColorMatrix type="matrix" values="0 0 0 0 1 0 0 0 0 1 0 0 0 0 1 0 0 0 1 0"/>
|
|
425
|
+
<feBlend mode="normal" in2="effect1_dropShadow_7525_19591" result="effect2_dropShadow_7525_19591"/>
|
|
426
|
+
<feBlend mode="normal" in="SourceGraphic" in2="effect2_dropShadow_7525_19591" result="shape"/>
|
|
427
|
+
</filter>
|
|
428
|
+
<filter id="filter1_dd_7525_19591" x="42.4023" y="18.7769" width="17.3584" height="11.4462" filterUnits="userSpaceOnUse" color-interpolation-filters="sRGB">
|
|
429
|
+
<feFlood flood-opacity="0" result="BackgroundImageFix"/>
|
|
430
|
+
<feColorMatrix in="SourceAlpha" type="matrix" values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 127 0" result="hardAlpha"/>
|
|
431
|
+
<feMorphology radius="1" operator="dilate" in="SourceAlpha" result="effect1_dropShadow_7525_19591"/>
|
|
432
|
+
<feOffset dx="1" dy="1"/>
|
|
433
|
+
<feComposite in2="hardAlpha" operator="out"/>
|
|
434
|
+
<feColorMatrix type="matrix" values="0 0 0 0 1 0 0 0 0 1 0 0 0 0 1 0 0 0 1 0"/>
|
|
435
|
+
<feBlend mode="normal" in2="BackgroundImageFix" result="effect1_dropShadow_7525_19591"/>
|
|
436
|
+
<feColorMatrix in="SourceAlpha" type="matrix" values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 127 0" result="hardAlpha"/>
|
|
437
|
+
<feMorphology radius="1" operator="dilate" in="SourceAlpha" result="effect2_dropShadow_7525_19591"/>
|
|
438
|
+
<feOffset/>
|
|
439
|
+
<feComposite in2="hardAlpha" operator="out"/>
|
|
440
|
+
<feColorMatrix type="matrix" values="0 0 0 0 1 0 0 0 0 1 0 0 0 0 1 0 0 0 1 0"/>
|
|
441
|
+
<feBlend mode="normal" in2="effect1_dropShadow_7525_19591" result="effect2_dropShadow_7525_19591"/>
|
|
442
|
+
<feBlend mode="normal" in="SourceGraphic" in2="effect2_dropShadow_7525_19591" result="shape"/>
|
|
443
|
+
</filter>
|
|
444
|
+
<filter id="filter2_dd_7525_19591" x="42.4023" y="4.41846" width="17.3584" height="11.4462" filterUnits="userSpaceOnUse" color-interpolation-filters="sRGB">
|
|
445
|
+
<feFlood flood-opacity="0" result="BackgroundImageFix"/>
|
|
446
|
+
<feColorMatrix in="SourceAlpha" type="matrix" values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 127 0" result="hardAlpha"/>
|
|
447
|
+
<feMorphology radius="1" operator="dilate" in="SourceAlpha" result="effect1_dropShadow_7525_19591"/>
|
|
448
|
+
<feOffset dx="1" dy="1"/>
|
|
449
|
+
<feComposite in2="hardAlpha" operator="out"/>
|
|
450
|
+
<feColorMatrix type="matrix" values="0 0 0 0 1 0 0 0 0 1 0 0 0 0 1 0 0 0 1 0"/>
|
|
451
|
+
<feBlend mode="normal" in2="BackgroundImageFix" result="effect1_dropShadow_7525_19591"/>
|
|
452
|
+
<feColorMatrix in="SourceAlpha" type="matrix" values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 127 0" result="hardAlpha"/>
|
|
453
|
+
<feMorphology radius="1" operator="dilate" in="SourceAlpha" result="effect2_dropShadow_7525_19591"/>
|
|
454
|
+
<feOffset/>
|
|
455
|
+
<feComposite in2="hardAlpha" operator="out"/>
|
|
456
|
+
<feColorMatrix type="matrix" values="0 0 0 0 1 0 0 0 0 1 0 0 0 0 1 0 0 0 1 0"/>
|
|
457
|
+
<feBlend mode="normal" in2="effect1_dropShadow_7525_19591" result="effect2_dropShadow_7525_19591"/>
|
|
458
|
+
<feBlend mode="normal" in="SourceGraphic" in2="effect2_dropShadow_7525_19591" result="shape"/>
|
|
459
|
+
</filter>
|
|
460
|
+
<filter id="filter3_dd_7525_19591" x="5.23926" y="17.0879" width="19.8926" height="14.8246" filterUnits="userSpaceOnUse" color-interpolation-filters="sRGB">
|
|
461
|
+
<feFlood flood-opacity="0" result="BackgroundImageFix"/>
|
|
462
|
+
<feColorMatrix in="SourceAlpha" type="matrix" values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 127 0" result="hardAlpha"/>
|
|
463
|
+
<feMorphology radius="1" operator="dilate" in="SourceAlpha" result="effect1_dropShadow_7525_19591"/>
|
|
464
|
+
<feOffset dx="1" dy="1"/>
|
|
465
|
+
<feComposite in2="hardAlpha" operator="out"/>
|
|
466
|
+
<feColorMatrix type="matrix" values="0 0 0 0 1 0 0 0 0 1 0 0 0 0 1 0 0 0 1 0"/>
|
|
467
|
+
<feBlend mode="normal" in2="BackgroundImageFix" result="effect1_dropShadow_7525_19591"/>
|
|
468
|
+
<feColorMatrix in="SourceAlpha" type="matrix" values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 127 0" result="hardAlpha"/>
|
|
469
|
+
<feMorphology radius="1" operator="dilate" in="SourceAlpha" result="effect2_dropShadow_7525_19591"/>
|
|
470
|
+
<feOffset/>
|
|
471
|
+
<feComposite in2="hardAlpha" operator="out"/>
|
|
472
|
+
<feColorMatrix type="matrix" values="0 0 0 0 1 0 0 0 0 1 0 0 0 0 1 0 0 0 1 0"/>
|
|
473
|
+
<feBlend mode="normal" in2="effect1_dropShadow_7525_19591" result="effect2_dropShadow_7525_19591"/>
|
|
474
|
+
<feBlend mode="normal" in="SourceGraphic" in2="effect2_dropShadow_7525_19591" result="shape"/>
|
|
475
|
+
</filter>
|
|
476
|
+
</defs>
|
|
477
|
+
</svg>
|
|
478
|
+
`;
|
|
479
|
+
|
|
480
|
+
export const mindMapStyle3 = svg`<svg width="64" height="48" viewBox="0 0 64 48" fill="none" xmlns="http://www.w3.org/2000/svg">
|
|
481
|
+
<path d="M23.9766 24L43.4028 24" stroke="#FFD338" stroke-width="1.4"/>
|
|
482
|
+
<path d="M23.9766 24.0001L26.5104 24.0001C30.4754 24.0001 33.6897 20.7858 33.6897 16.8208V16.8208C33.6897 12.8559 36.9039 9.6416 40.8689 9.6416L43.4028 9.6416" stroke="#FFD338" stroke-width="1.4"/>
|
|
483
|
+
<path d="M23.9766 24L26.5104 24C30.4754 24 33.6897 27.2143 33.6897 31.1792V31.1792C33.6897 35.1442 36.9039 38.3585 40.8689 38.3585L43.4028 38.3585" stroke="#FFD338" stroke-width="1.4"/>
|
|
484
|
+
<g filter="url(#filter0_d_7525_14574)">
|
|
485
|
+
<rect x="43.4023" y="34.1353" width="14.3585" height="8.44617" rx="1.68923" fill="white"/>
|
|
486
|
+
<rect x="42.7023" y="33.4353" width="15.7585" height="9.84617" rx="2.38923" stroke="#FFD338" stroke-width="1.4"/>
|
|
487
|
+
</g>
|
|
488
|
+
<g filter="url(#filter1_d_7525_14574)">
|
|
489
|
+
<rect x="43.4023" y="19.7769" width="14.3585" height="8.44617" rx="1.68923" fill="white"/>
|
|
490
|
+
<rect x="42.7023" y="19.0769" width="15.7585" height="9.84617" rx="2.38923" stroke="#FFD338" stroke-width="1.4"/>
|
|
491
|
+
</g>
|
|
492
|
+
<g filter="url(#filter2_d_7525_14574)">
|
|
493
|
+
<rect x="43.4023" y="5.41846" width="14.3585" height="8.44617" rx="1.68923" fill="white"/>
|
|
494
|
+
<rect x="42.7023" y="4.71846" width="15.7585" height="9.84617" rx="2.38923" stroke="#FFD338" stroke-width="1.4"/>
|
|
495
|
+
</g>
|
|
496
|
+
<g filter="url(#filter3_d_7525_14574)">
|
|
497
|
+
<rect x="6.23926" y="18.0879" width="16.8923" height="11.8246" rx="2.07776" fill="#FFD338"/>
|
|
498
|
+
<rect x="5.53926" y="17.3879" width="18.2923" height="13.2246" rx="2.77776" stroke="white" stroke-width="1.4"/>
|
|
499
|
+
</g>
|
|
500
|
+
<defs>
|
|
501
|
+
<filter id="filter0_d_7525_14574" x="39.4681" y="30.2014" width="22.2269" height="16.3139" filterUnits="userSpaceOnUse" color-interpolation-filters="sRGB">
|
|
502
|
+
<feFlood flood-opacity="0" result="BackgroundImageFix"/>
|
|
503
|
+
<feColorMatrix in="SourceAlpha" type="matrix" values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 127 0" result="hardAlpha"/>
|
|
504
|
+
<feOffset/>
|
|
505
|
+
<feGaussianBlur stdDeviation="1.26693"/>
|
|
506
|
+
<feComposite in2="hardAlpha" operator="out"/>
|
|
507
|
+
<feColorMatrix type="matrix" values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0.12 0"/>
|
|
508
|
+
<feBlend mode="normal" in2="BackgroundImageFix" result="effect1_dropShadow_7525_14574"/>
|
|
509
|
+
<feBlend mode="normal" in="SourceGraphic" in2="effect1_dropShadow_7525_14574" result="shape"/>
|
|
510
|
+
</filter>
|
|
511
|
+
<filter id="filter1_d_7525_14574" x="39.4681" y="15.843" width="22.2269" height="16.3139" filterUnits="userSpaceOnUse" color-interpolation-filters="sRGB">
|
|
512
|
+
<feFlood flood-opacity="0" result="BackgroundImageFix"/>
|
|
513
|
+
<feColorMatrix in="SourceAlpha" type="matrix" values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 127 0" result="hardAlpha"/>
|
|
514
|
+
<feOffset/>
|
|
515
|
+
<feGaussianBlur stdDeviation="1.26693"/>
|
|
516
|
+
<feComposite in2="hardAlpha" operator="out"/>
|
|
517
|
+
<feColorMatrix type="matrix" values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0.12 0"/>
|
|
518
|
+
<feBlend mode="normal" in2="BackgroundImageFix" result="effect1_dropShadow_7525_14574"/>
|
|
519
|
+
<feBlend mode="normal" in="SourceGraphic" in2="effect1_dropShadow_7525_14574" result="shape"/>
|
|
520
|
+
</filter>
|
|
521
|
+
<filter id="filter2_d_7525_14574" x="39.4681" y="1.48458" width="22.2269" height="16.3139" filterUnits="userSpaceOnUse" color-interpolation-filters="sRGB">
|
|
522
|
+
<feFlood flood-opacity="0" result="BackgroundImageFix"/>
|
|
523
|
+
<feColorMatrix in="SourceAlpha" type="matrix" values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 127 0" result="hardAlpha"/>
|
|
524
|
+
<feOffset/>
|
|
525
|
+
<feGaussianBlur stdDeviation="1.26693"/>
|
|
526
|
+
<feComposite in2="hardAlpha" operator="out"/>
|
|
527
|
+
<feColorMatrix type="matrix" values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0.12 0"/>
|
|
528
|
+
<feBlend mode="normal" in2="BackgroundImageFix" result="effect1_dropShadow_7525_14574"/>
|
|
529
|
+
<feBlend mode="normal" in="SourceGraphic" in2="effect1_dropShadow_7525_14574" result="shape"/>
|
|
530
|
+
</filter>
|
|
531
|
+
<filter id="filter3_d_7525_14574" x="2.30501" y="14.154" width="24.7601" height="19.6923" filterUnits="userSpaceOnUse" color-interpolation-filters="sRGB">
|
|
532
|
+
<feFlood flood-opacity="0" result="BackgroundImageFix"/>
|
|
533
|
+
<feColorMatrix in="SourceAlpha" type="matrix" values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 127 0" result="hardAlpha"/>
|
|
534
|
+
<feOffset/>
|
|
535
|
+
<feGaussianBlur stdDeviation="1.26693"/>
|
|
536
|
+
<feComposite in2="hardAlpha" operator="out"/>
|
|
537
|
+
<feColorMatrix type="matrix" values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0.12 0"/>
|
|
538
|
+
<feBlend mode="normal" in2="BackgroundImageFix" result="effect1_dropShadow_7525_14574"/>
|
|
539
|
+
<feBlend mode="normal" in="SourceGraphic" in2="effect1_dropShadow_7525_14574" result="shape"/>
|
|
540
|
+
</filter>
|
|
541
|
+
</defs>
|
|
542
|
+
</svg>
|
|
543
|
+
`;
|
|
544
|
+
|
|
545
|
+
export const mindMapStyle4 = svg`<svg width="64" height="48" viewBox="0 0 64 48" fill="none" xmlns="http://www.w3.org/2000/svg">
|
|
546
|
+
<path d="M23.9766 24L43.4028 24" stroke="#E660A4" stroke-width="1.4" stroke-linecap="round" />
|
|
547
|
+
<path
|
|
548
|
+
d="M23.9766 24.0001L26.5104 24.0001C30.4754 24.0001 33.6897 20.7858 33.6897 16.8208V16.8208C33.6897 12.8559 36.9039 9.6416 40.8689 9.6416L43.4028 9.6416"
|
|
549
|
+
stroke="#6E52DF" stroke-width="1.4" stroke-linecap="round" />
|
|
550
|
+
<path
|
|
551
|
+
d="M23.9766 24L26.5104 24C30.4754 24 33.6897 27.2143 33.6897 31.1792V31.1792C33.6897 35.1442 36.9039 38.3585 40.8689 38.3585L43.4028 38.3585"
|
|
552
|
+
stroke="#FF8C38" stroke-width="1.4" stroke-linecap="round" />
|
|
553
|
+
<path
|
|
554
|
+
d="M7 26C9.85124 21.8236 11.8347 18.5607 11.8347 20.649C11.8347 22.7372 10.9669 24.695 11.2149 25.3475C11.4628 26 12.9504 24.0423 13.9421 22.8677C14.9339 21.6931 15.9256 21.0405 15.8017 22.8677C15.6777 24.6949 16.2975 25.739 17.2893 24.8254C18.281 23.9118 19.2727 23.5203 20.0165 23.7813C20.6116 23.9901 21.5868 24.5644 22 24.8254"
|
|
555
|
+
stroke="var(--affine-black)" stroke-width="1.4" stroke-linecap="round" />
|
|
556
|
+
<path
|
|
557
|
+
d="M44 11C46.4711 7.51964 48.1901 4.80062 48.1901 6.54079C48.1901 8.28097 47.438 9.91246 47.6529 10.4562C47.8678 11 49.157 9.36862 50.0165 8.38977C50.876 7.41092 51.7355 6.86712 51.6281 8.38977C51.5207 9.91243 52.0579 10.7825 52.9174 10.0212C53.7769 9.25986 54.6364 8.93358 55.281 9.1511C55.7967 9.32512 56.6419 9.80367 57 10.0212"
|
|
558
|
+
stroke="var(--affine-black)" stroke-width="1.4" stroke-linecap="round" />
|
|
559
|
+
<path
|
|
560
|
+
d="M44 25.5C46.4711 22.0196 48.1901 19.3006 48.1901 21.0408C48.1901 22.781 47.438 24.4125 47.6529 24.9562C47.8678 25.5 49.157 23.8686 50.0165 22.8898C50.876 21.9109 51.7355 21.3671 51.6281 22.8898C51.5207 24.4124 52.0579 25.2825 52.9174 24.5212C53.7769 23.7599 54.6364 23.4336 55.281 23.6511C55.7967 23.8251 56.6419 24.3037 57 24.5212"
|
|
561
|
+
stroke="var(--affine-black)" stroke-width="1.4" stroke-linecap="round" />
|
|
562
|
+
<path
|
|
563
|
+
d="M44 40C46.4711 36.5196 48.1901 33.8006 48.1901 35.5408C48.1901 37.281 47.438 38.9125 47.6529 39.4562C47.8678 40 49.157 38.3686 50.0165 37.3898C50.876 36.4109 51.7355 35.8671 51.6281 37.3898C51.5207 38.9124 52.0579 39.7825 52.9174 39.0212C53.7769 38.2599 54.6364 37.9336 55.281 38.1511C55.7967 38.3251 56.6419 38.8037 57 39.0212"
|
|
564
|
+
stroke="var(--affine-black)" stroke-width="1.4" stroke-linecap="round" />
|
|
565
|
+
</svg>`;
|
|
566
|
+
|
|
567
|
+
export const importMindMapIcon = svg`<svg width="64" height="48" viewBox="0 0 64 48" fill="none" xmlns="http://www.w3.org/2000/svg">
|
|
568
|
+
<path d="M24.7745 24.0001L42.2623 24.0001" stroke="#929292" stroke-width="1.4" stroke-linecap="round" stroke-linejoin="round" stroke-dasharray="2 3"/>
|
|
569
|
+
<path d="M24.7745 24.0002L26.1332 24.0002C30.212 24.0002 33.5184 20.6938 33.5184 16.615V16.615C33.5184 12.5362 36.8249 9.22974 40.9037 9.22974L41.2583 9.22974" stroke="#929292" stroke-width="1.4" stroke-linecap="round" stroke-linejoin="round" stroke-dasharray="2 3"/>
|
|
570
|
+
<path d="M24.7745 24.0001L26.1332 24.0001C30.212 24.0001 33.5184 27.3066 33.5184 31.3854V31.3854C33.5184 35.4641 36.8249 38.7706 40.9037 38.7706L41.2583 38.7706" stroke="#929292" stroke-width="1.4" stroke-linecap="round" stroke-linejoin="round" stroke-dasharray="2 3"/>
|
|
571
|
+
<rect x="43.7295" y="34.4261" width="14.7705" height="8.68854" rx="2.4" fill="black" fill-opacity="0.03" stroke="#929292" stroke-width="1.4" stroke-linecap="round" stroke-linejoin="round" stroke-dasharray="2 3"/>
|
|
572
|
+
<rect x="43.7295" y="19.6558" width="14.7705" height="8.68854" rx="2.4" fill="black" fill-opacity="0.03" stroke="#929292" stroke-width="1.4" stroke-linecap="round" stroke-linejoin="round" stroke-dasharray="2 3"/>
|
|
573
|
+
<rect x="43.7295" y="4.88538" width="14.7705" height="8.68854" rx="2.4" fill="black" fill-opacity="0.03" stroke="#929292" stroke-width="1.4" stroke-linecap="round" stroke-linejoin="round" stroke-dasharray="2 3"/>
|
|
574
|
+
<rect x="5.5" y="17.9183" width="17.3771" height="12.1639" rx="3" fill="black" fill-opacity="0.03" stroke="#929292" stroke-width="1.4" stroke-linecap="round" stroke-linejoin="round" stroke-dasharray="2 3"/>
|
|
575
|
+
</svg>
|
|
576
|
+
`;
|
|
577
|
+
|
|
578
|
+
export const mindmapMenuMediaIcon = svg`<svg width="44" height="37" viewBox="0 0 44 37" fill="none" xmlns="http://www.w3.org/2000/svg">
|
|
579
|
+
<g filter="url(#filter0_d_6221_103790)">
|
|
580
|
+
<rect x="7.18018" y="7.92468" width="21.9639" height="21.9639" rx="3" transform="rotate(5.83233 7.18018 7.92468)" fill="#53B2EF"/>
|
|
581
|
+
<rect x="9.66406" y="14.4865" width="15.6885" height="1.56885" rx="0.784426" transform="rotate(5.83233 9.66406 14.4865)" fill="white" fill-opacity="0.56"/>
|
|
582
|
+
<rect x="9.18555" y="19.1687" width="15.6885" height="1.56885" rx="0.784426" transform="rotate(5.83233 9.18555 19.1687)" fill="white" fill-opacity="0.56"/>
|
|
583
|
+
<rect x="8.70752" y="23.8508" width="15.6885" height="1.56885" rx="0.784426" transform="rotate(5.83233 8.70752 23.8508)" fill="white" fill-opacity="0.56"/>
|
|
584
|
+
</g>
|
|
585
|
+
<g filter="url(#filter1_d_6221_103790)">
|
|
586
|
+
<g clip-path="url(#clip0_6221_103790)">
|
|
587
|
+
<rect x="13.9312" y="9.77234" width="21.9639" height="21.9639" rx="3" transform="rotate(-14.7836 13.9312 9.77234)" fill="#FCD34D"/>
|
|
588
|
+
<ellipse cx="31.8182" cy="9.91952" rx="2.35328" ry="2.35328" transform="rotate(-14.7836 31.8182 9.91952)" fill="white" fill-opacity="0.56"/>
|
|
589
|
+
<path fill-rule="evenodd" clip-rule="evenodd" d="M34.7443 17.9336L39.8586 20.9121L41.1595 18.6784L35.8219 15.5697L35.1807 16.6706L35.8219 15.5697C34.7116 14.9231 33.2873 15.299 32.6406 16.4093L29.9034 21.1092L27.0605 19.4535C26.0045 18.8385 24.6527 19.1454 23.9657 20.156L17.7872 29.2449L19.925 30.6982L25.9679 21.8087L28.8258 23.4731C29.9361 24.1197 31.3604 23.7439 32.0071 22.6335L34.7443 17.9336ZM29.7735 21.3322C29.7734 21.3324 29.7734 21.3325 29.7733 21.3326L29.9967 21.4627L30.1268 21.2393C30.1267 21.2392 30.1265 21.2392 30.1264 21.2391L30.1268 21.2393L29.9967 21.4627L29.7733 21.3326L29.7735 21.3322ZM34.874 17.7108L34.8744 17.7102L34.651 17.5801L34.8744 17.7102C34.8743 17.7104 34.8742 17.7106 34.874 17.7108Z" fill="white" fill-opacity="0.56"/>
|
|
590
|
+
</g>
|
|
591
|
+
</g>
|
|
592
|
+
<path fill-rule="evenodd" clip-rule="evenodd" d="M17.4444 9.12856C17.0332 9.00875 16.797 8.57828 16.9168 8.16709L17.3564 6.65842C17.9319 4.68309 19.9998 3.54834 21.9752 4.12389C23.9505 4.69944 25.0852 6.76735 24.5097 8.74268L21.6413 18.5872C21.2448 19.9481 19.8201 20.7299 18.4593 20.3334C17.0984 19.9368 16.3167 18.5122 16.7132 17.1513L19.3341 8.1561C19.4539 7.7449 19.8844 7.50868 20.2956 7.62849C20.7068 7.7483 20.943 8.17877 20.8232 8.58997L18.2023 17.5852C18.0454 18.1237 18.3547 18.6874 18.8932 18.8443C19.4316 19.0012 19.9953 18.6918 20.1522 18.1534L23.0206 8.30881C23.3566 7.15587 22.6942 5.9489 21.5413 5.61297C20.3884 5.27703 19.1814 5.93935 18.8455 7.09229L18.4059 8.60096C18.2861 9.01216 17.8556 9.24837 17.4444 9.12856Z" fill="#929292"/>
|
|
593
|
+
<defs>
|
|
594
|
+
<filter id="filter0_d_6221_103790" x="2.41439" y="5.39083" width="29.1497" height="29.1499" filterUnits="userSpaceOnUse" color-interpolation-filters="sRGB">
|
|
595
|
+
<feFlood flood-opacity="0" result="BackgroundImageFix"/>
|
|
596
|
+
<feColorMatrix in="SourceAlpha" type="matrix" values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 127 0" result="hardAlpha"/>
|
|
597
|
+
<feOffset/>
|
|
598
|
+
<feGaussianBlur stdDeviation="1.26693"/>
|
|
599
|
+
<feComposite in2="hardAlpha" operator="out"/>
|
|
600
|
+
<feColorMatrix type="matrix" values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0.12 0"/>
|
|
601
|
+
<feBlend mode="normal" in2="BackgroundImageFix" result="effect1_dropShadow_6221_103790"/>
|
|
602
|
+
<feBlend mode="normal" in="SourceGraphic" in2="effect1_dropShadow_6221_103790" result="shape"/>
|
|
603
|
+
</filter>
|
|
604
|
+
<filter id="filter1_d_6221_103790" x="11.3973" y="1.63399" width="31.909" height="31.909" filterUnits="userSpaceOnUse" color-interpolation-filters="sRGB">
|
|
605
|
+
<feFlood flood-opacity="0" result="BackgroundImageFix"/>
|
|
606
|
+
<feColorMatrix in="SourceAlpha" type="matrix" values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 127 0" result="hardAlpha"/>
|
|
607
|
+
<feOffset/>
|
|
608
|
+
<feGaussianBlur stdDeviation="1.26693"/>
|
|
609
|
+
<feComposite in2="hardAlpha" operator="out"/>
|
|
610
|
+
<feColorMatrix type="matrix" values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0.12 0"/>
|
|
611
|
+
<feBlend mode="normal" in2="BackgroundImageFix" result="effect1_dropShadow_6221_103790"/>
|
|
612
|
+
<feBlend mode="normal" in="SourceGraphic" in2="effect1_dropShadow_6221_103790" result="shape"/>
|
|
613
|
+
</filter>
|
|
614
|
+
<clipPath id="clip0_6221_103790">
|
|
615
|
+
<rect x="13.9312" y="9.77234" width="21.9639" height="21.9639" rx="3" transform="rotate(-14.7836 13.9312 9.77234)" fill="white"/>
|
|
616
|
+
</clipPath>
|
|
617
|
+
</defs>
|
|
618
|
+
</svg>
|
|
619
|
+
`;
|