@atlaskit/editor-plugin-local-id 5.1.21 → 6.0.1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/CHANGELOG.md
CHANGED
package/afm-cc/tsconfig.json
CHANGED
|
@@ -21,6 +21,12 @@
|
|
|
21
21
|
{
|
|
22
22
|
"path": "../../adf-schema/afm-cc/tsconfig.json"
|
|
23
23
|
},
|
|
24
|
+
{
|
|
25
|
+
"path": "../../editor-plugin-collab-edit/afm-cc/tsconfig.json"
|
|
26
|
+
},
|
|
27
|
+
{
|
|
28
|
+
"path": "../../editor-plugin-composition/afm-cc/tsconfig.json"
|
|
29
|
+
},
|
|
24
30
|
{
|
|
25
31
|
"path": "../../editor-plugin-limited-mode/afm-cc/tsconfig.json"
|
|
26
32
|
},
|
package/afm-jira/tsconfig.json
CHANGED
|
@@ -21,6 +21,12 @@
|
|
|
21
21
|
{
|
|
22
22
|
"path": "../../adf-schema/afm-jira/tsconfig.json"
|
|
23
23
|
},
|
|
24
|
+
{
|
|
25
|
+
"path": "../../editor-plugin-collab-edit/afm-jira/tsconfig.json"
|
|
26
|
+
},
|
|
27
|
+
{
|
|
28
|
+
"path": "../../editor-plugin-composition/afm-jira/tsconfig.json"
|
|
29
|
+
},
|
|
24
30
|
{
|
|
25
31
|
"path": "../../editor-plugin-limited-mode/afm-jira/tsconfig.json"
|
|
26
32
|
},
|
|
@@ -21,6 +21,12 @@
|
|
|
21
21
|
{
|
|
22
22
|
"path": "../../adf-schema/afm-products/tsconfig.json"
|
|
23
23
|
},
|
|
24
|
+
{
|
|
25
|
+
"path": "../../editor-plugin-collab-edit/afm-products/tsconfig.json"
|
|
26
|
+
},
|
|
27
|
+
{
|
|
28
|
+
"path": "../../editor-plugin-composition/afm-products/tsconfig.json"
|
|
29
|
+
},
|
|
24
30
|
{
|
|
25
31
|
"path": "../../editor-plugin-limited-mode/afm-products/tsconfig.json"
|
|
26
32
|
},
|
|
@@ -2,8 +2,8 @@ import { SafePlugin } from '@atlaskit/editor-common/safe-plugin';
|
|
|
2
2
|
import type { ExtractInjectionAPI } from '@atlaskit/editor-common/types';
|
|
3
3
|
import { PluginKey, type Transaction } from '@atlaskit/editor-prosemirror/state';
|
|
4
4
|
import type { LocalIdPlugin } from '../localIdPluginType';
|
|
5
|
-
export declare const localIdPluginKey: PluginKey
|
|
6
|
-
export declare const createPlugin: (api: ExtractInjectionAPI<LocalIdPlugin> | undefined) => SafePlugin
|
|
5
|
+
export declare const localIdPluginKey: PluginKey;
|
|
6
|
+
export declare const createPlugin: (api: ExtractInjectionAPI<LocalIdPlugin> | undefined) => SafePlugin;
|
|
7
7
|
/**
|
|
8
8
|
* Adds a local ID to a ProseMirror node
|
|
9
9
|
*
|
|
@@ -2,8 +2,8 @@ import { SafePlugin } from '@atlaskit/editor-common/safe-plugin';
|
|
|
2
2
|
import type { ExtractInjectionAPI } from '@atlaskit/editor-common/types';
|
|
3
3
|
import { PluginKey, type Transaction } from '@atlaskit/editor-prosemirror/state';
|
|
4
4
|
import type { LocalIdPlugin } from '../localIdPluginType';
|
|
5
|
-
export declare const localIdPluginKey: PluginKey
|
|
6
|
-
export declare const createPlugin: (api: ExtractInjectionAPI<LocalIdPlugin> | undefined) => SafePlugin
|
|
5
|
+
export declare const localIdPluginKey: PluginKey;
|
|
6
|
+
export declare const createPlugin: (api: ExtractInjectionAPI<LocalIdPlugin> | undefined) => SafePlugin;
|
|
7
7
|
/**
|
|
8
8
|
* Adds a local ID to a ProseMirror node
|
|
9
9
|
*
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@atlaskit/editor-plugin-local-id",
|
|
3
|
-
"version": "
|
|
3
|
+
"version": "6.0.1",
|
|
4
4
|
"description": "LocalId plugin for @atlaskit/editor-core",
|
|
5
5
|
"author": "Atlassian Pty Ltd",
|
|
6
6
|
"license": "Apache-2.0",
|
|
@@ -29,15 +29,17 @@
|
|
|
29
29
|
"atlaskit:src": "src/index.ts",
|
|
30
30
|
"dependencies": {
|
|
31
31
|
"@atlaskit/adf-schema": "^52.2.0",
|
|
32
|
-
"@atlaskit/editor-plugin-
|
|
32
|
+
"@atlaskit/editor-plugin-collab-edit": "^9.0.0",
|
|
33
|
+
"@atlaskit/editor-plugin-composition": "^7.0.0",
|
|
34
|
+
"@atlaskit/editor-plugin-limited-mode": "^5.0.0",
|
|
33
35
|
"@atlaskit/editor-prosemirror": "^7.3.0",
|
|
34
36
|
"@atlaskit/platform-feature-flags": "^1.1.0",
|
|
35
|
-
"@atlaskit/tmp-editor-statsig": "^
|
|
37
|
+
"@atlaskit/tmp-editor-statsig": "^36.0.0",
|
|
36
38
|
"@babel/runtime": "^7.0.0",
|
|
37
39
|
"raf-schd": "^4.0.3"
|
|
38
40
|
},
|
|
39
41
|
"peerDependencies": {
|
|
40
|
-
"@atlaskit/editor-common": "^
|
|
42
|
+
"@atlaskit/editor-common": "^112.0.0",
|
|
41
43
|
"react": "^18.2.0"
|
|
42
44
|
},
|
|
43
45
|
"devDependencies": {
|