New Case Study:See how Anthropic automated 95% of dependency reviews with Socket.Learn More
Socket
Sign inDemoInstall
Socket

@blocksuite/affine-shared

Package Overview
Dependencies
Maintainers
0
Versions
296
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@blocksuite/affine-shared - npm Package Compare versions

Comparing version 0.0.0-canary-20240913094504 to 0.0.0-canary-20240914001315

32

CHANGELOG.md
# @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 @@

2

dist/services/edit-props-store.d.ts
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

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap
  • Changelog

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc