@blocksuite/affine-shared
Advanced tools
Comparing version 0.0.0-canary-20240913094504 to 0.0.0-canary-20240914001315
# @blocksuite/affine-shared | ||
## 0.0.0-canary-20240913094504 | ||
## 0.0.0-canary-20240914001315 | ||
@@ -9,8 +9,28 @@ ### Patch Changes | ||
- Updated dependencies | ||
- @blocksuite/global@0.0.0-canary-20240913094504 | ||
- @blocksuite/block-std@0.0.0-canary-20240913094504 | ||
- @blocksuite/store@0.0.0-canary-20240913094504 | ||
- @blocksuite/inline@0.0.0-canary-20240913094504 | ||
- @blocksuite/affine-model@0.0.0-canary-20240913094504 | ||
- @blocksuite/global@0.0.0-canary-20240914001315 | ||
- @blocksuite/block-std@0.0.0-canary-20240914001315 | ||
- @blocksuite/store@0.0.0-canary-20240914001315 | ||
- @blocksuite/inline@0.0.0-canary-20240914001315 | ||
- @blocksuite/affine-model@0.0.0-canary-20240914001315 | ||
## 0.17.10 | ||
### Patch Changes | ||
- e0d0016: - Fix database performance issue | ||
- Fix frame panel display issue | ||
- Fix editor settings for color with transparency | ||
- Fix portal in modals | ||
- Fix group selection rendering delay | ||
- Remove unused and duplicated code | ||
- Improve frame model | ||
- Improve ParseDocUrl service | ||
- Support custom max zoom | ||
- Updated dependencies [e0d0016] | ||
- @blocksuite/affine-model@0.17.10 | ||
- @blocksuite/block-std@0.17.10 | ||
- @blocksuite/global@0.17.10 | ||
- @blocksuite/inline@0.17.10 | ||
- @blocksuite/store@0.17.10 | ||
## 0.17.9 | ||
@@ -17,0 +37,0 @@ |
import { type BlockStdScope, LifeCycleWatcher } from '@blocksuite/block-std'; | ||
import { Slot } from '@blocksuite/global/utils'; | ||
import { type Signal } from '@lit-labs/preact-signals'; | ||
import { type Signal } from '@preact/signals-core'; | ||
import { z } from 'zod'; | ||
@@ -5,0 +5,0 @@ import { NodePropsSchema } from '../utils/index.js'; |
import { LifeCycleWatcher } from '@blocksuite/block-std'; | ||
import { DisposableGroup, Slot, } from '@blocksuite/global/utils'; | ||
import { computed, signal } from '@lit-labs/preact-signals'; | ||
import { computed, signal } from '@preact/signals-core'; | ||
import clonedeep from 'lodash.clonedeep'; | ||
@@ -5,0 +5,0 @@ import mergeWith from 'lodash.mergewith'; |
import { ColorScheme } from '@blocksuite/affine-model'; | ||
import { signal } from '@lit-labs/preact-signals'; | ||
import { signal } from '@preact/signals-core'; | ||
const TRANSPARENT = 'transparent'; | ||
@@ -4,0 +4,0 @@ /** |
@@ -11,3 +11,3 @@ interface Observable<T> { | ||
}; | ||
export { type Signal } from '@lit-labs/preact-signals'; | ||
export { type Signal } from '@preact/signals-core'; | ||
//# sourceMappingURL=signal.d.ts.map |
@@ -1,2 +0,2 @@ | ||
import { signal } from '@lit-labs/preact-signals'; | ||
import { signal } from '@preact/signals-core'; | ||
export function createSignalFromObservable(observable$, initValue) { | ||
@@ -12,3 +12,3 @@ const newSignal = signal(initValue); | ||
} | ||
export {} from '@lit-labs/preact-signals'; | ||
export {} from '@preact/signals-core'; | ||
//# sourceMappingURL=signal.js.map |
{ | ||
"name": "@blocksuite/affine-shared", | ||
"version": "0.0.0-canary-20240913094504", | ||
"version": "0.0.0-canary-20240914001315", | ||
"description": "Default BlockSuite editable blocks.", | ||
@@ -18,10 +18,10 @@ "type": "module", | ||
"dependencies": { | ||
"@blocksuite/affine-model": "0.0.0-canary-20240913094504", | ||
"@blocksuite/block-std": "0.0.0-canary-20240913094504", | ||
"@blocksuite/global": "0.0.0-canary-20240913094504", | ||
"@blocksuite/inline": "0.0.0-canary-20240913094504", | ||
"@blocksuite/store": "0.0.0-canary-20240913094504", | ||
"@blocksuite/affine-model": "0.0.0-canary-20240914001315", | ||
"@blocksuite/block-std": "0.0.0-canary-20240914001315", | ||
"@blocksuite/global": "0.0.0-canary-20240914001315", | ||
"@blocksuite/inline": "0.0.0-canary-20240914001315", | ||
"@blocksuite/store": "0.0.0-canary-20240914001315", | ||
"@floating-ui/dom": "^1.6.10", | ||
"@lit-labs/preact-signals": "^1.0.2", | ||
"@lit/context": "^1.1.2", | ||
"@preact/signals-core": "^1.8.0", | ||
"@toeverything/theme": "^1.0.8", | ||
@@ -28,0 +28,0 @@ "lit": "^3.2.0", |
@@ -7,3 +7,3 @@ import { type BlockStdScope, LifeCycleWatcher } from '@blocksuite/block-std'; | ||
} from '@blocksuite/global/utils'; | ||
import { computed, type Signal, signal } from '@lit-labs/preact-signals'; | ||
import { computed, type Signal, signal } from '@preact/signals-core'; | ||
import clonedeep from 'lodash.clonedeep'; | ||
@@ -10,0 +10,0 @@ import mergeWith from 'lodash.mergewith'; |
import type { ExtensionType } from '@blocksuite/block-std'; | ||
import type { DeepPartial } from '@blocksuite/global/utils'; | ||
import type { Signal } from '@lit-labs/preact-signals'; | ||
import type { Signal } from '@preact/signals-core'; | ||
import type { z } from 'zod'; | ||
@@ -5,0 +5,0 @@ |
import { type Color, ColorScheme } from '@blocksuite/affine-model'; | ||
import { signal } from '@lit-labs/preact-signals'; | ||
import { signal } from '@preact/signals-core'; | ||
@@ -4,0 +4,0 @@ const TRANSPARENT = 'transparent'; |
@@ -1,2 +0,2 @@ | ||
import { signal } from '@lit-labs/preact-signals'; | ||
import { signal } from '@preact/signals-core'; | ||
@@ -25,2 +25,2 @@ interface Observable<T> { | ||
export { type Signal } from '@lit-labs/preact-signals'; | ||
export { type Signal } from '@preact/signals-core'; |
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is too big to display
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
702788
+ Added@preact/signals-core@^1.8.0
+ Added@blocksuite/affine-model@0.0.0-canary-20240914001315(transitive)
+ Added@blocksuite/block-std@0.0.0-canary-20240914001315(transitive)
+ Added@blocksuite/global@0.0.0-canary-20240914001315(transitive)
+ Added@blocksuite/inline@0.0.0-canary-20240914001315(transitive)
+ Added@blocksuite/store@0.0.0-canary-20240914001315(transitive)
+ Added@blocksuite/sync@0.0.0-canary-20240914001315(transitive)
- Removed@lit-labs/preact-signals@^1.0.2
- Removed@blocksuite/affine-model@0.0.0-canary-20240913094504(transitive)
- Removed@blocksuite/block-std@0.0.0-canary-20240913094504(transitive)
- Removed@blocksuite/global@0.0.0-canary-20240913094504(transitive)
- Removed@blocksuite/inline@0.0.0-canary-20240913094504(transitive)
- Removed@blocksuite/store@0.0.0-canary-20240913094504(transitive)
- Removed@blocksuite/sync@0.0.0-canary-20240913094504(transitive)
- Removed@lit-labs/preact-signals@1.0.3(transitive)