From fa4e4c738ae7f4d429c3258c38cae60f051ecee8 Mon Sep 17 00:00:00 2001 From: pengx17 Date: Wed, 5 Jun 2024 09:33:18 +0000 Subject: [PATCH] chore: bump blocksuite (#7152) ## Features - https://github.com/toeverything/BlockSuite/pull/7208 @pengx17 - https://github.com/toeverything/BlockSuite/pull/7207 @pengx17 - https://github.com/toeverything/BlockSuite/pull/7206 @regischen - https://github.com/toeverything/BlockSuite/pull/7194 @akumatus - https://github.com/toeverything/BlockSuite/pull/7209 @Saul-Mirone ## Bugfix - https://github.com/toeverything/BlockSuite/pull/7205 @fundon - https://github.com/toeverything/BlockSuite/pull/7211 @L-Sun - https://github.com/toeverything/BlockSuite/pull/7210 @fundon ## Refactor ## Misc - https://github.com/toeverything/BlockSuite/pull/7203 @fundon Also added prompt implementation to fix type change issue ![image.png](https://graphite-user-uploaded-assets-prod.s3.amazonaws.com/T2klNLEk0wxLh4NRDzhk/2c0efce1-c50f-4a8f-892c-bf8e2d99bef2.png) --- packages/common/env/package.json | 4 +- packages/common/infra/package.json | 10 +- packages/frontend/component/package.json | 10 +- .../src/ui/modal/confirm-modal.stories.tsx | 18 +++ .../component/src/ui/modal/confirm-modal.tsx | 55 ++++++- .../component/src/ui/modal/styles.css.ts | 6 + packages/frontend/core/package.json | 12 +- .../block-suite-editor/lit-adaper.tsx | 5 +- .../specs/custom/spec-patchers.ts | 48 +++++-- packages/frontend/electron/package.json | 8 +- tools/cli/package.json | 2 +- yarn.lock | 136 +++++++++--------- 12 files changed, 206 insertions(+), 108 deletions(-) diff --git a/packages/common/env/package.json b/packages/common/env/package.json index 4289849e89..69e04ed042 100644 --- a/packages/common/env/package.json +++ b/packages/common/env/package.json @@ -3,8 +3,8 @@ "private": true, "type": "module", "devDependencies": { - "@blocksuite/global": "0.15.0-canary-202406041254-00772be", - "@blocksuite/store": "0.15.0-canary-202406041254-00772be", + "@blocksuite/global": "0.15.0-canary-202406050645-7721c3e", + "@blocksuite/store": "0.15.0-canary-202406050645-7721c3e", "react": "18.3.1", "react-dom": "18.3.1", "vitest": "1.6.0" diff --git a/packages/common/infra/package.json b/packages/common/infra/package.json index 5f90928df7..42b27bfc36 100644 --- a/packages/common/infra/package.json +++ b/packages/common/infra/package.json @@ -13,9 +13,9 @@ "@affine/debug": "workspace:*", "@affine/env": "workspace:*", "@affine/templates": "workspace:*", - "@blocksuite/blocks": "0.15.0-canary-202406041254-00772be", - "@blocksuite/global": "0.15.0-canary-202406041254-00772be", - "@blocksuite/store": "0.15.0-canary-202406041254-00772be", + "@blocksuite/blocks": "0.15.0-canary-202406050645-7721c3e", + "@blocksuite/global": "0.15.0-canary-202406050645-7721c3e", + "@blocksuite/store": "0.15.0-canary-202406050645-7721c3e", "@datastructures-js/binary-search-tree": "^5.3.2", "foxact": "^0.2.33", "jotai": "^2.8.0", @@ -30,8 +30,8 @@ "devDependencies": { "@affine-test/fixtures": "workspace:*", "@affine/templates": "workspace:*", - "@blocksuite/block-std": "0.15.0-canary-202406041254-00772be", - "@blocksuite/presets": "0.15.0-canary-202406041254-00772be", + "@blocksuite/block-std": "0.15.0-canary-202406050645-7721c3e", + "@blocksuite/presets": "0.15.0-canary-202406050645-7721c3e", "@testing-library/react": "^15.0.0", "async-call-rpc": "^6.4.0", "react": "^18.2.0", diff --git a/packages/frontend/component/package.json b/packages/frontend/component/package.json index 87db1e9a72..23888c232f 100644 --- a/packages/frontend/component/package.json +++ b/packages/frontend/component/package.json @@ -75,12 +75,12 @@ "zod": "^3.22.4" }, "devDependencies": { - "@blocksuite/block-std": "0.15.0-canary-202406041254-00772be", - "@blocksuite/blocks": "0.15.0-canary-202406041254-00772be", - "@blocksuite/global": "0.15.0-canary-202406041254-00772be", + "@blocksuite/block-std": "0.15.0-canary-202406050645-7721c3e", + "@blocksuite/blocks": "0.15.0-canary-202406050645-7721c3e", + "@blocksuite/global": "0.15.0-canary-202406050645-7721c3e", "@blocksuite/icons": "2.1.52", - "@blocksuite/presets": "0.15.0-canary-202406041254-00772be", - "@blocksuite/store": "0.15.0-canary-202406041254-00772be", + "@blocksuite/presets": "0.15.0-canary-202406050645-7721c3e", + "@blocksuite/store": "0.15.0-canary-202406050645-7721c3e", "@storybook/addon-actions": "^7.6.17", "@storybook/addon-essentials": "^7.6.17", "@storybook/addon-interactions": "^7.6.17", diff --git a/packages/frontend/component/src/ui/modal/confirm-modal.stories.tsx b/packages/frontend/component/src/ui/modal/confirm-modal.stories.tsx index 80ce8b2333..f7411e94bc 100644 --- a/packages/frontend/component/src/ui/modal/confirm-modal.stories.tsx +++ b/packages/frontend/component/src/ui/modal/confirm-modal.stories.tsx @@ -5,6 +5,7 @@ import { ConfirmModal, type ConfirmModalProps, useConfirmModal, + usePromptModal, } from './confirm-modal'; export default { @@ -57,3 +58,20 @@ export const AutoClose = () => { return ; }; + +export const Prompt = () => { + const openPrompt = usePromptModal(); + + const showPrompt = async () => { + const value = await openPrompt({ + placeholder: 'Enter your name', + title: 'Give me a string', + message: 'What is your name?', + }); + if (value) { + alert('your name is ' + value); + } + }; + + return ; +}; diff --git a/packages/frontend/component/src/ui/modal/confirm-modal.tsx b/packages/frontend/component/src/ui/modal/confirm-modal.tsx index 935b159d7d..c88ed86c6e 100644 --- a/packages/frontend/component/src/ui/modal/confirm-modal.tsx +++ b/packages/frontend/component/src/ui/modal/confirm-modal.tsx @@ -1,10 +1,12 @@ +import { useAFFiNEI18N } from '@affine/i18n/hooks'; import { DialogTrigger } from '@radix-ui/react-dialog'; import clsx from 'clsx'; -import type { PropsWithChildren } from 'react'; +import type { PropsWithChildren, ReactNode } from 'react'; import { createContext, useCallback, useContext, useState } from 'react'; import type { ButtonProps } from '../button'; import { Button } from '../button'; +import Input from '../input'; import type { ModalProps } from './modal'; import { Modal } from './modal'; import * as styles from './styles.css'; @@ -147,6 +149,7 @@ export const ConfirmModalProvider = ({ children }: PropsWithChildren) => { ); }; + export const useConfirmModal = () => { const context = useContext(ConfirmModalContext); if (!context) { @@ -159,3 +162,53 @@ export const useConfirmModal = () => { closeConfirmModal: context.closeConfirmModal, }; }; + +export const usePromptModal = () => { + const { closeConfirmModal, openConfirmModal } = useConfirmModal(); + const t = useAFFiNEI18N(); + return useCallback( + (props: { + confirmText?: string; + cancelText?: string; + placeholder?: string; + message: ReactNode; + title: ReactNode; + abort?: AbortSignal; + }) => { + return new Promise(resolve => { + let value = ''; + const message = ( +
+ {props.message} + (value = e)} + /> +
+ ); + openConfirmModal({ + ...props, + confirmButtonOptions: { + children: props.confirmText ?? t['Confirm'](), + type: 'primary', + }, + cancelButtonOptions: { + children: props.cancelText ?? t['Cancel'](), + }, + description: message, + onConfirm: () => { + resolve(value); + }, + onCancel: () => { + resolve(null); + }, + }); + props.abort?.addEventListener('abort', () => { + resolve(null); + closeConfirmModal(); + }); + }); + }, + [closeConfirmModal, openConfirmModal, t] + ); +}; diff --git a/packages/frontend/component/src/ui/modal/styles.css.ts b/packages/frontend/component/src/ui/modal/styles.css.ts index 196f5e2f2d..64b0d7f860 100644 --- a/packages/frontend/component/src/ui/modal/styles.css.ts +++ b/packages/frontend/component/src/ui/modal/styles.css.ts @@ -91,3 +91,9 @@ globalStyle(`[data-modal="false"]${modalContentWrapper}`, { globalStyle(`[data-modal="false"] ${modalContent}`, { pointerEvents: 'auto', }); + +export const promptModalContent = style({ + display: 'flex', + flexDirection: 'column', + gap: '12px', +}); diff --git a/packages/frontend/core/package.json b/packages/frontend/core/package.json index 1cb1f25f5e..d73370d5e9 100644 --- a/packages/frontend/core/package.json +++ b/packages/frontend/core/package.json @@ -18,13 +18,13 @@ "@affine/graphql": "workspace:*", "@affine/i18n": "workspace:*", "@affine/templates": "workspace:*", - "@blocksuite/block-std": "0.15.0-canary-202406041254-00772be", - "@blocksuite/blocks": "0.15.0-canary-202406041254-00772be", - "@blocksuite/global": "0.15.0-canary-202406041254-00772be", + "@blocksuite/block-std": "0.15.0-canary-202406050645-7721c3e", + "@blocksuite/blocks": "0.15.0-canary-202406050645-7721c3e", + "@blocksuite/global": "0.15.0-canary-202406050645-7721c3e", "@blocksuite/icons": "2.1.52", - "@blocksuite/inline": "0.15.0-canary-202406041254-00772be", - "@blocksuite/presets": "0.15.0-canary-202406041254-00772be", - "@blocksuite/store": "0.15.0-canary-202406041254-00772be", + "@blocksuite/inline": "0.15.0-canary-202406050645-7721c3e", + "@blocksuite/presets": "0.15.0-canary-202406050645-7721c3e", + "@blocksuite/store": "0.15.0-canary-202406050645-7721c3e", "@dnd-kit/core": "^6.1.0", "@dnd-kit/modifiers": "^7.0.0", "@dnd-kit/sortable": "^8.0.0", diff --git a/packages/frontend/core/src/components/blocksuite/block-suite-editor/lit-adaper.tsx b/packages/frontend/core/src/components/blocksuite/block-suite-editor/lit-adaper.tsx index eed0bf0f5e..ffec63a11e 100644 --- a/packages/frontend/core/src/components/blocksuite/block-suite-editor/lit-adaper.tsx +++ b/packages/frontend/core/src/components/blocksuite/block-suite-editor/lit-adaper.tsx @@ -2,6 +2,7 @@ import { createReactComponentFromLit, useConfirmModal, useLitPortalFactory, + usePromptModal, } from '@affine/component'; import { useJournalInfoHelper } from '@affine/core/hooks/use-journal'; import { PeekViewService } from '@affine/core/modules/peek-view'; @@ -80,11 +81,12 @@ const usePatchSpecs = (page: Doc, specs: BlockSpec[]) => { }, [page.collection]); const confirmModal = useConfirmModal(); + const openPromptModal = usePromptModal(); const patchedSpecs = useMemo(() => { let patched = patchReferenceRenderer(specs, reactToLit, referenceRenderer); patched = patchNotificationService( patchReferenceRenderer(patched, reactToLit, referenceRenderer), - confirmModal + { ...confirmModal, prompt: openPromptModal } ); if (!page.readonly && runtimeConfig.enablePeekView) { patched = patchPeekViewService(patched, peekViewService); @@ -92,6 +94,7 @@ const usePatchSpecs = (page: Doc, specs: BlockSpec[]) => { return patched; }, [ confirmModal, + openPromptModal, page.readonly, peekViewService, reactToLit, diff --git a/packages/frontend/core/src/components/blocksuite/block-suite-editor/specs/custom/spec-patchers.ts b/packages/frontend/core/src/components/blocksuite/block-suite-editor/specs/custom/spec-patchers.ts index 8734c2e884..1db44347f5 100644 --- a/packages/frontend/core/src/components/blocksuite/block-suite-editor/specs/custom/spec-patchers.ts +++ b/packages/frontend/core/src/components/blocksuite/block-suite-editor/specs/custom/spec-patchers.ts @@ -5,6 +5,7 @@ import { toast, type ToastOptions, type useConfirmModal, + type usePromptModal, } from '@affine/component'; import type { PeekViewService } from '@affine/core/modules/peek-view'; import type { ActivePeekView } from '@affine/core/modules/peek-view/entities/peek-view'; @@ -114,7 +115,13 @@ export function patchReferenceRenderer( export function patchNotificationService( specs: BlockSpec[], - { closeConfirmModal, openConfirmModal }: ReturnType + { + closeConfirmModal, + openConfirmModal, + prompt, + }: ReturnType & { + prompt: ReturnType; + } ) { const rootSpec = specs.find( spec => spec.schema.model.flavour === 'affine:page' @@ -126,22 +133,10 @@ export function patchNotificationService( patchSpecService(rootSpec, service => { service.notificationService = { - confirm: async ({ - title, - message, - confirmText, - cancelText, - abort, - }: { - title: string; - message: string | TemplateResult; - confirmText: string; - cancelText: string; - abort?: AbortSignal; - }) => { + confirm: async ({ title, message, confirmText, cancelText, abort }) => { return new Promise(resolve => { openConfirmModal({ - title, + title: toReactNode(title), description: toReactNode(message), confirmButtonOptions: { children: confirmText, @@ -161,6 +156,23 @@ export function patchNotificationService( }); }); }, + prompt: async ({ + title, + message, + confirmText, + placeholder, + cancelText, + abort, + }) => { + return prompt({ + message: toReactNode(message), + title: toReactNode(title), + confirmText, + cancelText, + placeholder, + abort, + }); + }, toast: (message: string, options: ToastOptions) => { return toast(message, options); }, @@ -181,6 +193,12 @@ export function patchNotificationService( { title: toReactNode(notification.title), message: toReactNode(notification.message), + action: notification.action?.onClick + ? { + label: toReactNode(notification.action?.label), + onClick: notification.action.onClick, + } + : undefined, }, { duration: notification.duration || 0, diff --git a/packages/frontend/electron/package.json b/packages/frontend/electron/package.json index b1a471ec7b..b8166bcaf5 100644 --- a/packages/frontend/electron/package.json +++ b/packages/frontend/electron/package.json @@ -29,10 +29,10 @@ "@affine/env": "workspace:*", "@affine/i18n": "workspace:*", "@affine/native": "workspace:*", - "@blocksuite/block-std": "0.15.0-canary-202406041254-00772be", - "@blocksuite/blocks": "0.15.0-canary-202406041254-00772be", - "@blocksuite/presets": "0.15.0-canary-202406041254-00772be", - "@blocksuite/store": "0.15.0-canary-202406041254-00772be", + "@blocksuite/block-std": "0.15.0-canary-202406050645-7721c3e", + "@blocksuite/blocks": "0.15.0-canary-202406050645-7721c3e", + "@blocksuite/presets": "0.15.0-canary-202406050645-7721c3e", + "@blocksuite/store": "0.15.0-canary-202406050645-7721c3e", "@electron-forge/cli": "^7.3.0", "@electron-forge/core": "^7.3.0", "@electron-forge/core-utils": "^7.3.0", diff --git a/tools/cli/package.json b/tools/cli/package.json index 4573ea58f5..d69861b5fc 100644 --- a/tools/cli/package.json +++ b/tools/cli/package.json @@ -6,7 +6,7 @@ "@affine/env": "workspace:*", "@affine/templates": "workspace:*", "@aws-sdk/client-s3": "3.583.0", - "@blocksuite/presets": "0.15.0-canary-202406041254-00772be", + "@blocksuite/presets": "0.15.0-canary-202406050645-7721c3e", "@clack/core": "^0.3.4", "@clack/prompts": "^0.7.0", "@magic-works/i18n-codegen": "^0.6.0", diff --git a/yarn.lock b/yarn.lock index 38688deafe..ef84cb8241 100644 --- a/yarn.lock +++ b/yarn.lock @@ -166,7 +166,7 @@ __metadata: "@affine/env": "workspace:*" "@affine/templates": "workspace:*" "@aws-sdk/client-s3": "npm:3.583.0" - "@blocksuite/presets": "npm:0.15.0-canary-202406041254-00772be" + "@blocksuite/presets": "npm:0.15.0-canary-202406050645-7721c3e" "@clack/core": "npm:^0.3.4" "@clack/prompts": "npm:^0.7.0" "@magic-works/i18n-codegen": "npm:^0.6.0" @@ -219,12 +219,12 @@ __metadata: "@affine/electron-api": "workspace:*" "@affine/graphql": "workspace:*" "@affine/i18n": "workspace:*" - "@blocksuite/block-std": "npm:0.15.0-canary-202406041254-00772be" - "@blocksuite/blocks": "npm:0.15.0-canary-202406041254-00772be" - "@blocksuite/global": "npm:0.15.0-canary-202406041254-00772be" + "@blocksuite/block-std": "npm:0.15.0-canary-202406050645-7721c3e" + "@blocksuite/blocks": "npm:0.15.0-canary-202406050645-7721c3e" + "@blocksuite/global": "npm:0.15.0-canary-202406050645-7721c3e" "@blocksuite/icons": "npm:2.1.52" - "@blocksuite/presets": "npm:0.15.0-canary-202406041254-00772be" - "@blocksuite/store": "npm:0.15.0-canary-202406041254-00772be" + "@blocksuite/presets": "npm:0.15.0-canary-202406050645-7721c3e" + "@blocksuite/store": "npm:0.15.0-canary-202406050645-7721c3e" "@dnd-kit/core": "npm:^6.1.0" "@dnd-kit/modifiers": "npm:^7.0.0" "@dnd-kit/sortable": "npm:^8.0.0" @@ -320,13 +320,13 @@ __metadata: "@affine/graphql": "workspace:*" "@affine/i18n": "workspace:*" "@affine/templates": "workspace:*" - "@blocksuite/block-std": "npm:0.15.0-canary-202406041254-00772be" - "@blocksuite/blocks": "npm:0.15.0-canary-202406041254-00772be" - "@blocksuite/global": "npm:0.15.0-canary-202406041254-00772be" + "@blocksuite/block-std": "npm:0.15.0-canary-202406050645-7721c3e" + "@blocksuite/blocks": "npm:0.15.0-canary-202406050645-7721c3e" + "@blocksuite/global": "npm:0.15.0-canary-202406050645-7721c3e" "@blocksuite/icons": "npm:2.1.52" - "@blocksuite/inline": "npm:0.15.0-canary-202406041254-00772be" - "@blocksuite/presets": "npm:0.15.0-canary-202406041254-00772be" - "@blocksuite/store": "npm:0.15.0-canary-202406041254-00772be" + "@blocksuite/inline": "npm:0.15.0-canary-202406050645-7721c3e" + "@blocksuite/presets": "npm:0.15.0-canary-202406050645-7721c3e" + "@blocksuite/store": "npm:0.15.0-canary-202406050645-7721c3e" "@dnd-kit/core": "npm:^6.1.0" "@dnd-kit/modifiers": "npm:^7.0.0" "@dnd-kit/sortable": "npm:^8.0.0" @@ -448,10 +448,10 @@ __metadata: "@affine/env": "workspace:*" "@affine/i18n": "workspace:*" "@affine/native": "workspace:*" - "@blocksuite/block-std": "npm:0.15.0-canary-202406041254-00772be" - "@blocksuite/blocks": "npm:0.15.0-canary-202406041254-00772be" - "@blocksuite/presets": "npm:0.15.0-canary-202406041254-00772be" - "@blocksuite/store": "npm:0.15.0-canary-202406041254-00772be" + "@blocksuite/block-std": "npm:0.15.0-canary-202406050645-7721c3e" + "@blocksuite/blocks": "npm:0.15.0-canary-202406050645-7721c3e" + "@blocksuite/presets": "npm:0.15.0-canary-202406050645-7721c3e" + "@blocksuite/store": "npm:0.15.0-canary-202406050645-7721c3e" "@electron-forge/cli": "npm:^7.3.0" "@electron-forge/core": "npm:^7.3.0" "@electron-forge/core-utils": "npm:^7.3.0" @@ -508,8 +508,8 @@ __metadata: version: 0.0.0-use.local resolution: "@affine/env@workspace:packages/common/env" dependencies: - "@blocksuite/global": "npm:0.15.0-canary-202406041254-00772be" - "@blocksuite/store": "npm:0.15.0-canary-202406041254-00772be" + "@blocksuite/global": "npm:0.15.0-canary-202406050645-7721c3e" + "@blocksuite/store": "npm:0.15.0-canary-202406050645-7721c3e" lit: "npm:^3.1.2" react: "npm:18.3.1" react-dom: "npm:18.3.1" @@ -3335,30 +3335,30 @@ __metadata: languageName: node linkType: hard -"@blocksuite/block-std@npm:0.15.0-canary-202406041254-00772be": - version: 0.15.0-canary-202406041254-00772be - resolution: "@blocksuite/block-std@npm:0.15.0-canary-202406041254-00772be" +"@blocksuite/block-std@npm:0.15.0-canary-202406050645-7721c3e": + version: 0.15.0-canary-202406050645-7721c3e + resolution: "@blocksuite/block-std@npm:0.15.0-canary-202406050645-7721c3e" dependencies: - "@blocksuite/global": "npm:0.15.0-canary-202406041254-00772be" + "@blocksuite/global": "npm:0.15.0-canary-202406050645-7721c3e" lit: "npm:^3.1.3" lz-string: "npm:^1.5.0" w3c-keyname: "npm:^2.2.8" zod: "npm:^3.23.8" peerDependencies: - "@blocksuite/inline": 0.15.0-canary-202406041254-00772be - "@blocksuite/store": 0.15.0-canary-202406041254-00772be - checksum: 10/5f53c42b4aad03ac7c32c2697db3eedd1d8e0a0b407ad75f624cf81f5a14d51b9b6c9c753300487cf9eeccb236f161051fc0da208d0e36aa50d67cd0f53104d5 + "@blocksuite/inline": 0.15.0-canary-202406050645-7721c3e + "@blocksuite/store": 0.15.0-canary-202406050645-7721c3e + checksum: 10/36bf9c07be71b137729fccc401307375ebc8558f582c58e08f4fa6f4c843bb1a59fc7a814276f73f344528b45eb55eb132ce3a2a0dbb0b91eaf4f247e527c809 languageName: node linkType: hard -"@blocksuite/blocks@npm:0.15.0-canary-202406041254-00772be": - version: 0.15.0-canary-202406041254-00772be - resolution: "@blocksuite/blocks@npm:0.15.0-canary-202406041254-00772be" +"@blocksuite/blocks@npm:0.15.0-canary-202406050645-7721c3e": + version: 0.15.0-canary-202406050645-7721c3e + resolution: "@blocksuite/blocks@npm:0.15.0-canary-202406050645-7721c3e" dependencies: - "@blocksuite/block-std": "npm:0.15.0-canary-202406041254-00772be" - "@blocksuite/global": "npm:0.15.0-canary-202406041254-00772be" - "@blocksuite/inline": "npm:0.15.0-canary-202406041254-00772be" - "@blocksuite/store": "npm:0.15.0-canary-202406041254-00772be" + "@blocksuite/block-std": "npm:0.15.0-canary-202406050645-7721c3e" + "@blocksuite/global": "npm:0.15.0-canary-202406050645-7721c3e" + "@blocksuite/inline": "npm:0.15.0-canary-202406050645-7721c3e" + "@blocksuite/store": "npm:0.15.0-canary-202406050645-7721c3e" "@dotlottie/player-component": "npm:^2.7.12" "@fal-ai/serverless-client": "npm:^0.10.0" "@floating-ui/dom": "npm:^1.6.5" @@ -3395,17 +3395,17 @@ __metadata: sortablejs: "npm:^1.15.2" unified: "npm:^11.0.4" zod: "npm:^3.23.8" - checksum: 10/8e11f63aea6a2532462a948085a0e38a833b905faa1c5e78ecc33ccc8b07d4e0cc28ea14677eeffbf69ba29c7372a83d6f905876c8bfa7f053a5b3e5b02d47c0 + checksum: 10/ffbbce73dde483edc072f5dff1462a82b440b84152391dae4795a72c96695ae10bcd40610e44043c946516b5e4887cdc18ed6129e0dbcb0e790bb6a70a89cd41 languageName: node linkType: hard -"@blocksuite/global@npm:0.15.0-canary-202406041254-00772be": - version: 0.15.0-canary-202406041254-00772be - resolution: "@blocksuite/global@npm:0.15.0-canary-202406041254-00772be" +"@blocksuite/global@npm:0.15.0-canary-202406050645-7721c3e": + version: 0.15.0-canary-202406050645-7721c3e + resolution: "@blocksuite/global@npm:0.15.0-canary-202406050645-7721c3e" dependencies: lib0: "npm:^0.2.94" zod: "npm:^3.23.8" - checksum: 10/616db63f19011c3756bc9a792296638ef68b23092c69a3df4a846107fa4566cda865e5f937ef4c428fba3a3889ff329ee6666bd491e52bb73c745fe1b02b655f + checksum: 10/1c86ccc9065a7a3be22679ee9dd0fa7344758f77074714f582715fc9c717247adc639e6e95bae16f5d8a442894afd42c071b9777f4cfcea7f87f7228267a07a5 languageName: node linkType: hard @@ -3419,45 +3419,45 @@ __metadata: languageName: node linkType: hard -"@blocksuite/inline@npm:0.15.0-canary-202406041254-00772be": - version: 0.15.0-canary-202406041254-00772be - resolution: "@blocksuite/inline@npm:0.15.0-canary-202406041254-00772be" +"@blocksuite/inline@npm:0.15.0-canary-202406050645-7721c3e": + version: 0.15.0-canary-202406050645-7721c3e + resolution: "@blocksuite/inline@npm:0.15.0-canary-202406050645-7721c3e" dependencies: - "@blocksuite/global": "npm:0.15.0-canary-202406041254-00772be" + "@blocksuite/global": "npm:0.15.0-canary-202406050645-7721c3e" zod: "npm:^3.23.8" peerDependencies: lit: ^3.1.1 yjs: ^13.6.15 - checksum: 10/014f5bf1570c7379916e3e1a9bede10c5f41bd203988768a639e9a3297ac6043f8e2c5d1564934bdf00c5e6331ec1dfe02eca43250f7e9ac22ba44f7771abc80 + checksum: 10/b57089a3beebcd0a1258d476356df699cf646d73b56f27e267208e3b06f57fb70d45e7aa3152a82be764153a3ad6af57fab1ed728f32175502658ea21ca27d9e languageName: node linkType: hard -"@blocksuite/presets@npm:0.15.0-canary-202406041254-00772be": - version: 0.15.0-canary-202406041254-00772be - resolution: "@blocksuite/presets@npm:0.15.0-canary-202406041254-00772be" +"@blocksuite/presets@npm:0.15.0-canary-202406050645-7721c3e": + version: 0.15.0-canary-202406050645-7721c3e + resolution: "@blocksuite/presets@npm:0.15.0-canary-202406050645-7721c3e" dependencies: - "@blocksuite/block-std": "npm:0.15.0-canary-202406041254-00772be" - "@blocksuite/blocks": "npm:0.15.0-canary-202406041254-00772be" - "@blocksuite/global": "npm:0.15.0-canary-202406041254-00772be" - "@blocksuite/inline": "npm:0.15.0-canary-202406041254-00772be" - "@blocksuite/store": "npm:0.15.0-canary-202406041254-00772be" + "@blocksuite/block-std": "npm:0.15.0-canary-202406050645-7721c3e" + "@blocksuite/blocks": "npm:0.15.0-canary-202406050645-7721c3e" + "@blocksuite/global": "npm:0.15.0-canary-202406050645-7721c3e" + "@blocksuite/inline": "npm:0.15.0-canary-202406050645-7721c3e" + "@blocksuite/store": "npm:0.15.0-canary-202406050645-7721c3e" "@dotlottie/player-component": "npm:^2.7.12" "@fal-ai/serverless-client": "npm:^0.10.0" "@floating-ui/dom": "npm:^1.6.5" "@toeverything/theme": "npm:^0.7.30" lit: "npm:^3.1.3" openai: "npm:^4.47.2" - checksum: 10/08008fe2599aed3bc0e52d355e7aca88a5d28c0494c0bd93b271ee18385895b8ae4696e8db27f71cc50686b1c7818bab3ce1099f713fb5f1818a1280ce1aad3f + checksum: 10/46f227322184e652d20db454be69f1436cbc7c4c07991fba158abe0153ef1a575e5b55c288e2596648a7377ff9d2e86f82b3c41c4b5ef80588a0a636837e8410 languageName: node linkType: hard -"@blocksuite/store@npm:0.15.0-canary-202406041254-00772be": - version: 0.15.0-canary-202406041254-00772be - resolution: "@blocksuite/store@npm:0.15.0-canary-202406041254-00772be" +"@blocksuite/store@npm:0.15.0-canary-202406050645-7721c3e": + version: 0.15.0-canary-202406050645-7721c3e + resolution: "@blocksuite/store@npm:0.15.0-canary-202406050645-7721c3e" dependencies: - "@blocksuite/global": "npm:0.15.0-canary-202406041254-00772be" - "@blocksuite/inline": "npm:0.15.0-canary-202406041254-00772be" - "@blocksuite/sync": "npm:0.15.0-canary-202406041254-00772be" + "@blocksuite/global": "npm:0.15.0-canary-202406050645-7721c3e" + "@blocksuite/inline": "npm:0.15.0-canary-202406050645-7721c3e" + "@blocksuite/sync": "npm:0.15.0-canary-202406050645-7721c3e" "@types/flexsearch": "npm:^0.7.6" flexsearch: "npm:0.7.43" idb-keyval: "npm:^6.2.1" @@ -3469,21 +3469,21 @@ __metadata: zod: "npm:^3.23.8" peerDependencies: yjs: ^13.6.15 - checksum: 10/4274a14c9e7735c6d6de47622580595e9a070761bd14b326d20522dec1b01505c5ebd295f01dc301a4a089822405e6005e167e6ae4c298d8dd4580af3f681881 + checksum: 10/1eab1cb6193030b63496f7291debc3be42d0a65657a0e01a2fcd0f05323d24fe747982b3b3fe84bf0f5b407aa9397af6c0daac49f3bb7cad6308584d91ab5809 languageName: node linkType: hard -"@blocksuite/sync@npm:0.15.0-canary-202406041254-00772be": - version: 0.15.0-canary-202406041254-00772be - resolution: "@blocksuite/sync@npm:0.15.0-canary-202406041254-00772be" +"@blocksuite/sync@npm:0.15.0-canary-202406050645-7721c3e": + version: 0.15.0-canary-202406050645-7721c3e + resolution: "@blocksuite/sync@npm:0.15.0-canary-202406050645-7721c3e" dependencies: - "@blocksuite/global": "npm:0.15.0-canary-202406041254-00772be" + "@blocksuite/global": "npm:0.15.0-canary-202406050645-7721c3e" idb: "npm:^8.0.0" idb-keyval: "npm:^6.2.1" y-protocols: "npm:^1.0.6" peerDependencies: yjs: ^13.6.15 - checksum: 10/039933ea316bac05932f5293dc7805682658c662bdcd926a25fefa399a4d0f380e4a802dee1ada4c7611d299ecc4ea10eed266059a0acf5927aebfd5b2e0a437 + checksum: 10/9e95f57339634d22696d71aac57ec273eb1d05df69b3f73ca29bbc5fc5a9f7db70860b6cd26377c454ee5f7745bd45ec5580f8d27911d85a07ccaa1675e8083f languageName: node linkType: hard @@ -13893,11 +13893,11 @@ __metadata: "@affine/debug": "workspace:*" "@affine/env": "workspace:*" "@affine/templates": "workspace:*" - "@blocksuite/block-std": "npm:0.15.0-canary-202406041254-00772be" - "@blocksuite/blocks": "npm:0.15.0-canary-202406041254-00772be" - "@blocksuite/global": "npm:0.15.0-canary-202406041254-00772be" - "@blocksuite/presets": "npm:0.15.0-canary-202406041254-00772be" - "@blocksuite/store": "npm:0.15.0-canary-202406041254-00772be" + "@blocksuite/block-std": "npm:0.15.0-canary-202406050645-7721c3e" + "@blocksuite/blocks": "npm:0.15.0-canary-202406050645-7721c3e" + "@blocksuite/global": "npm:0.15.0-canary-202406050645-7721c3e" + "@blocksuite/presets": "npm:0.15.0-canary-202406050645-7721c3e" + "@blocksuite/store": "npm:0.15.0-canary-202406050645-7721c3e" "@datastructures-js/binary-search-tree": "npm:^5.3.2" "@testing-library/react": "npm:^15.0.0" async-call-rpc: "npm:^6.4.0"