@atlaskit/editor-plugin-loom 5.1.1 → 5.1.2
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
|
@@ -30,7 +30,11 @@ export declare const insertVideo: ({ editorAnalyticsAPI, video, }: {
|
|
|
30
30
|
}) => EditorCommand;
|
|
31
31
|
export declare const insertLoom: (editorView: EditorView | null, api: ExtractInjectionAPI<LoomPlugin> | undefined, video: VideoMeta, positionType: PositionType) => boolean;
|
|
32
32
|
export declare const executeRecordVideo: (api: ExtractInjectionAPI<LoomPlugin> | undefined) => void;
|
|
33
|
-
export declare const setupLoom: (loomProvider: LoomProviderOptions, api: ExtractInjectionAPI<LoomPlugin> | undefined, editorView: EditorView | null,
|
|
33
|
+
export declare const setupLoom: (loomProvider: LoomProviderOptions, api: ExtractInjectionAPI<LoomPlugin> | undefined, editorView: EditorView | null,
|
|
34
|
+
/**
|
|
35
|
+
* Whether loom initialisation is evoked via `initLoom` command.
|
|
36
|
+
*/
|
|
37
|
+
initViaCommand?: boolean) => Promise<{
|
|
34
38
|
error?: string;
|
|
35
39
|
}>;
|
|
36
40
|
export {};
|
|
@@ -30,7 +30,11 @@ export declare const insertVideo: ({ editorAnalyticsAPI, video, }: {
|
|
|
30
30
|
}) => EditorCommand;
|
|
31
31
|
export declare const insertLoom: (editorView: EditorView | null, api: ExtractInjectionAPI<LoomPlugin> | undefined, video: VideoMeta, positionType: PositionType) => boolean;
|
|
32
32
|
export declare const executeRecordVideo: (api: ExtractInjectionAPI<LoomPlugin> | undefined) => void;
|
|
33
|
-
export declare const setupLoom: (loomProvider: LoomProviderOptions, api: ExtractInjectionAPI<LoomPlugin> | undefined, editorView: EditorView | null,
|
|
33
|
+
export declare const setupLoom: (loomProvider: LoomProviderOptions, api: ExtractInjectionAPI<LoomPlugin> | undefined, editorView: EditorView | null,
|
|
34
|
+
/**
|
|
35
|
+
* Whether loom initialisation is evoked via `initLoom` command.
|
|
36
|
+
*/
|
|
37
|
+
initViaCommand?: boolean) => Promise<{
|
|
34
38
|
error?: string;
|
|
35
39
|
}>;
|
|
36
40
|
export {};
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@atlaskit/editor-plugin-loom",
|
|
3
|
-
"version": "5.1.
|
|
3
|
+
"version": "5.1.2",
|
|
4
4
|
"description": "Loom plugin for @atlaskit/editor-core",
|
|
5
5
|
"author": "Atlassian Pty Ltd",
|
|
6
6
|
"license": "Apache-2.0",
|
|
@@ -35,14 +35,14 @@
|
|
|
35
35
|
".": "./src/index.ts"
|
|
36
36
|
},
|
|
37
37
|
"dependencies": {
|
|
38
|
-
"@atlaskit/button": "^23.
|
|
38
|
+
"@atlaskit/button": "^23.4.0",
|
|
39
39
|
"@atlaskit/editor-plugin-analytics": "^3.0.0",
|
|
40
|
-
"@atlaskit/editor-plugin-hyperlink": "^5.
|
|
40
|
+
"@atlaskit/editor-plugin-hyperlink": "^5.4.0",
|
|
41
41
|
"@atlaskit/editor-plugin-primary-toolbar": "^4.1.0",
|
|
42
42
|
"@atlaskit/editor-plugin-quick-insert": "^3.0.0",
|
|
43
43
|
"@atlaskit/editor-plugin-width": "^4.0.0",
|
|
44
44
|
"@atlaskit/editor-prosemirror": "7.0.0",
|
|
45
|
-
"@atlaskit/icon": "^
|
|
45
|
+
"@atlaskit/icon": "^28.0.0",
|
|
46
46
|
"@atlaskit/platform-feature-flags": "^1.1.0",
|
|
47
47
|
"@atlaskit/tokens": "^6.0.0",
|
|
48
48
|
"@babel/runtime": "^7.0.0",
|
|
@@ -50,14 +50,14 @@
|
|
|
50
50
|
"@loomhq/record-sdk": "^2.36.18"
|
|
51
51
|
},
|
|
52
52
|
"peerDependencies": {
|
|
53
|
-
"@atlaskit/editor-common": "^107.
|
|
53
|
+
"@atlaskit/editor-common": "^107.26.0",
|
|
54
54
|
"react": "^18.2.0",
|
|
55
55
|
"react-dom": "^18.2.0",
|
|
56
56
|
"react-intl-next": "npm:react-intl@^5.18.1"
|
|
57
57
|
},
|
|
58
58
|
"devDependencies": {
|
|
59
59
|
"@atlaskit/editor-plugin-base": "^4.1.0",
|
|
60
|
-
"@atlaskit/editor-plugin-card": "^7.
|
|
60
|
+
"@atlaskit/editor-plugin-card": "^7.4.0",
|
|
61
61
|
"@atlaskit/editor-plugin-copy-button": "^3.0.0",
|
|
62
62
|
"@atlaskit/editor-plugin-decorations": "^3.0.0",
|
|
63
63
|
"@atlaskit/editor-plugin-editor-disabled": "^3.0.0",
|
|
@@ -66,8 +66,7 @@
|
|
|
66
66
|
"@atlaskit/editor-plugin-grid": "^3.1.0",
|
|
67
67
|
"@testing-library/react": "^13.4.0",
|
|
68
68
|
"@testing-library/user-event": "^14.4.3",
|
|
69
|
-
"raf-stub": "^2.0.1"
|
|
70
|
-
"typescript": "~5.4.2"
|
|
69
|
+
"raf-stub": "^2.0.1"
|
|
71
70
|
},
|
|
72
71
|
"techstack": {
|
|
73
72
|
"@atlassian/frontend": {
|