mirror of
https://github.com/toeverything/AFFiNE.git
synced 2024-12-16 01:02:04 +03:00
24cb0d3757
This PR provide `DocModeService` to manage document mode, which is used by blocksuite. ### What Changed? - Add document mode apis from `DocService` and `DocsService` - Remove useless `pageService.getEditorMode` and `pageService.slots.editorModeSwitch` api [Related PR in blocksuite](https://github.com/toeverything/blocksuite/pull/7288) [Bump Blocksuite](https://github.com/toeverything/AFFiNE/pull/7209) > ## Features > * [feat(presets): support different tracker control for actions blocksuite#7285](https://github.com/toeverything/blocksuite/pull/7285) @donteatfriedrice > * [feat(edgeless): add default color and editing border for edgeless text blocksuite#7278](https://github.com/toeverything/blocksuite/pull/7278) @Flrande > * [feat(blocks): center peek entries blocksuite#7275](https://github.com/toeverything/blocksuite/pull/7275) @pengx17 > > ## Bugfix > * [fix(blocks): affine-embed-synced-doc-block peek on dblclick blocksuite#7284](https://github.com/toeverything/blocksuite/pull/7284) @pengx17 > * [fix(edgeless): edgeless text rect should automatically update when changing font blocksuite#7292](https://github.com/toeverything/blocksuite/pull/7292) @Flrande > * [fix(edgeless): align panel not work blocksuite#7293](https://github.com/toeverything/blocksuite/pull/7293) @Flrande > * [fix(blocks): filterable list unexpected hover style blocksuite#7291](https://github.com/toeverything/blocksuite/pull/7291) @golok727 > * [fix(blocks): slash menu unexpected hover style blocksuite#7290](https://github.com/toeverything/blocksuite/pull/7290) @golok727 > * [fix(blocks): bookmark block error on undo or delete while loading blocksuite#7276](https://github.com/toeverything/blocksuite/pull/7276) @golok727 > * [fix(presets): chat input max-height blocksuite#7283](https://github.com/toeverything/blocksuite/pull/7283) @fundon > * [fix(presets): get image blob from selection blocksuite#7286](https://github.com/toeverything/blocksuite/pull/7286) @donteatfriedrice > * [fix(blocks): connectors resize and rotate blocksuite#7256](https://github.com/toeverything/blocksuite/pull/7256) @fundon > > ## Refactor > * [refactor: add DocModeService for doc mode get, set, toogle and observe change blocksuite#7288](https://github.com/toeverything/blocksuite/pull/7288) @akumatus > * [refactor(edgeless): rewrite auto-connect component as a widget blocksuite#7287](https://github.com/toeverything/blocksuite/pull/7287) @doouding > > ## Misc > * [test: fix flaky blocksuite#7295](https://github.com/toeverything/blocksuite/pull/7295) @L-Sun > * [style(page): adjust heading font-weight and letter-spacing blocksuite#7277](https://github.com/toeverything/blocksuite/pull/7277) @CatsJuice > * [chore: apply member ordering rule blocksuite#7279](https://github.com/toeverything/blocksuite/pull/7279) @Saul-Mirone ---
47 lines
1.4 KiB
JSON
47 lines
1.4 KiB
JSON
{
|
|
"name": "@affine/cli",
|
|
"type": "module",
|
|
"private": true,
|
|
"devDependencies": {
|
|
"@affine/env": "workspace:*",
|
|
"@affine/templates": "workspace:*",
|
|
"@aws-sdk/client-s3": "3.592.0",
|
|
"@blocksuite/presets": "0.15.0-canary-202406121423-a4241b5",
|
|
"@clack/core": "^0.3.4",
|
|
"@clack/prompts": "^0.7.0",
|
|
"@magic-works/i18n-codegen": "^0.6.0",
|
|
"@napi-rs/simple-git": "^0.1.16",
|
|
"@perfsee/webpack": "^1.12.2",
|
|
"@pmmmwh/react-refresh-webpack-plugin": "^0.5.11",
|
|
"@sentry/webpack-plugin": "^2.16.1",
|
|
"@types/webpack-env": "^1.18.4",
|
|
"@vanilla-extract/webpack-plugin": "^2.3.7",
|
|
"copy-webpack-plugin": "^12.0.2",
|
|
"css-loader": "^7.1.1",
|
|
"cssnano": "^7.0.0",
|
|
"dotenv": "^16.4.5",
|
|
"html-webpack-plugin": "^5.6.0",
|
|
"lodash-es": "^4.17.21",
|
|
"mime-types": "^2.1.35",
|
|
"mini-css-extract-plugin": "^2.8.1",
|
|
"postcss-loader": "^8.1.1",
|
|
"raw-loader": "^4.0.2",
|
|
"source-map-loader": "^5.0.0",
|
|
"style-loader": "^4.0.0",
|
|
"swc-loader": "^0.2.6",
|
|
"terser-webpack-plugin": "^5.3.10",
|
|
"thread-loader": "^4.0.2",
|
|
"ts-node": "^10.9.2",
|
|
"vite": "^5.2.8",
|
|
"webpack": "^5.91.0",
|
|
"webpack-cli": "^5.1.4",
|
|
"webpack-dev-server": "^5.0.4",
|
|
"webpack-merge": "^5.10.0"
|
|
},
|
|
"scripts": {
|
|
"build": "node --loader ts-node/esm/transpile-only.mjs ./src/bin/build.ts",
|
|
"dev": "node --loader ts-node/esm/transpile-only.mjs ./src/bin/dev.ts"
|
|
},
|
|
"version": "0.14.0"
|
|
}
|