@blocksuite/inline
Advanced tools
Comparing version 0.0.0-canary-20241217001530 to 0.0.0-canary-20241218001453
# @blocksuite/inline | ||
## 0.0.0-canary-20241217001530 | ||
## 0.0.0-canary-20241218001453 | ||
@@ -9,4 +9,27 @@ ### Patch Changes | ||
- Updated dependencies | ||
- @blocksuite/global@0.0.0-canary-20241217001530 | ||
- @blocksuite/global@0.0.0-canary-20241218001453 | ||
## 0.19.2 | ||
### Patch Changes | ||
- bc04f27: ## Feat | ||
- feat: support heading toggle (#8829) | ||
- feat(blocks): add surface element plain text adapter (#8977) | ||
- feat: add doc display meta extension (#8953) | ||
## Fix | ||
- fix(blocks): incorrect image icon in keyboard tool panel (#8998) | ||
- fix(inline): incorrect caret position in safari when using IME (#8993) | ||
- fix(blocks): toolbar color should be light when app theme is light and edgeless theme is dark (#8996) | ||
- fix: dnd in edgeless (#8995) | ||
- fix: dnd status error (#8994) | ||
- fix(blocks): the width of the card view is not fully filled (#8988) | ||
- fix(blocks): prevent hiding keyboard when scrolling (#8989) | ||
- Updated dependencies [bc04f27] | ||
- @blocksuite/global@0.19.2 | ||
## 0.19.1 | ||
@@ -13,0 +36,0 @@ |
@@ -1,4 +0,4 @@ | ||
export declare const ZERO_WIDTH_SPACE = "\u200B"; | ||
export declare const ZERO_WIDTH_SPACE: string; | ||
export declare const ZERO_WIDTH_NON_JOINER = "\u200C"; | ||
export declare const INLINE_ROOT_ATTR = "data-v-root"; | ||
//# sourceMappingURL=consts.d.ts.map |
@@ -1,2 +0,3 @@ | ||
export const ZERO_WIDTH_SPACE = '\u200B'; | ||
import { IS_SAFARI } from '@blocksuite/global/env'; | ||
export const ZERO_WIDTH_SPACE = IS_SAFARI ? '\u200C' : '\u200B'; | ||
// see https://en.wikipedia.org/wiki/Zero-width_non-joiner | ||
@@ -3,0 +4,0 @@ export const ZERO_WIDTH_NON_JOINER = '\u200C'; |
{ | ||
"name": "@blocksuite/inline", | ||
"version": "0.0.0-canary-20241217001530", | ||
"version": "0.0.0-canary-20241218001453", | ||
"description": "A micro editor.", | ||
@@ -85,3 +85,3 @@ "type": "module", | ||
"dependencies": { | ||
"@blocksuite/global": "0.0.0-canary-20241217001530", | ||
"@blocksuite/global": "0.0.0-canary-20241218001453", | ||
"@preact/signals-core": "^1.8.0", | ||
@@ -88,0 +88,0 @@ "zod": "^3.23.8" |
@@ -1,2 +0,4 @@ | ||
export const ZERO_WIDTH_SPACE = '\u200B'; | ||
import { IS_SAFARI } from '@blocksuite/global/env'; | ||
export const ZERO_WIDTH_SPACE = IS_SAFARI ? '\u200C' : '\u200B'; | ||
// see https://en.wikipedia.org/wiki/Zero-width_non-joiner | ||
@@ -3,0 +5,0 @@ export const ZERO_WIDTH_NON_JOINER = '\u200C'; |
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
462912
5869
+ Added@blocksuite/global@0.0.0-canary-20241218001453(transitive)
- Removed@blocksuite/global@0.0.0-canary-20241217001530(transitive)