@atlaskit/editor-plugin-loom 12.0.0 → 12.1.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 +17 -0
- package/dist/cjs/entry-points/loom-plugin-state-type.js +1 -0
- package/dist/cjs/entry-points/loom-plugin-type.js +1 -0
- package/dist/cjs/entry-points/loom-plugin.js +12 -0
- package/dist/cjs/entry-points/types.js +1 -0
- package/dist/es2019/entry-points/loom-plugin-state-type.js +0 -0
- package/dist/es2019/entry-points/loom-plugin-type.js +0 -0
- package/dist/es2019/entry-points/loom-plugin.js +2 -0
- package/dist/es2019/entry-points/types.js +0 -0
- package/dist/esm/entry-points/loom-plugin-state-type.js +0 -0
- package/dist/esm/entry-points/loom-plugin-type.js +0 -0
- package/dist/esm/entry-points/loom-plugin.js +2 -0
- package/dist/esm/entry-points/types.js +0 -0
- package/dist/types/entry-points/loom-plugin-state-type.d.ts +1 -0
- package/dist/types/entry-points/loom-plugin-type.d.ts +1 -0
- package/dist/types/entry-points/loom-plugin.d.ts +1 -0
- package/dist/types/entry-points/types.d.ts +1 -0
- package/dist/types-ts4.5/entry-points/loom-plugin-state-type.d.ts +1 -0
- package/dist/types-ts4.5/entry-points/loom-plugin-type.d.ts +1 -0
- package/dist/types-ts4.5/entry-points/loom-plugin.d.ts +1 -0
- package/dist/types-ts4.5/entry-points/types.d.ts +1 -0
- package/loom-plugin/package.json +17 -0
- package/loom-plugin-state-type/package.json +17 -0
- package/loom-plugin-type/package.json +17 -0
- package/package.json +13 -13
- package/types/package.json +17 -0
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,22 @@
|
|
|
1
1
|
# @atlaskit/editor-plugin-loom
|
|
2
2
|
|
|
3
|
+
## 12.1.1
|
|
4
|
+
|
|
5
|
+
### Patch Changes
|
|
6
|
+
|
|
7
|
+
- Updated dependencies
|
|
8
|
+
|
|
9
|
+
## 12.1.0
|
|
10
|
+
|
|
11
|
+
### Minor Changes
|
|
12
|
+
|
|
13
|
+
- [`a94a013546f69`](https://bitbucket.org/atlassian/atlassian-frontend-monorepo/commits/a94a013546f69) -
|
|
14
|
+
Autofix: add explicit package exports (barrel removal)
|
|
15
|
+
|
|
16
|
+
### Patch Changes
|
|
17
|
+
|
|
18
|
+
- Updated dependencies
|
|
19
|
+
|
|
3
20
|
## 12.0.0
|
|
4
21
|
|
|
5
22
|
### Major Changes
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
"use strict";
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
"use strict";
|
|
@@ -0,0 +1,12 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
|
|
3
|
+
Object.defineProperty(exports, "__esModule", {
|
|
4
|
+
value: true
|
|
5
|
+
});
|
|
6
|
+
Object.defineProperty(exports, "loomPlugin", {
|
|
7
|
+
enumerable: true,
|
|
8
|
+
get: function get() {
|
|
9
|
+
return _loomPlugin.loomPlugin;
|
|
10
|
+
}
|
|
11
|
+
});
|
|
12
|
+
var _loomPlugin = require("../loomPlugin");
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
"use strict";
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export type { LoomPluginState } from '../pm-plugins/main';
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export type { LoomPlugin } from '../loomPluginType';
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export { loomPlugin } from '../loomPlugin';
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export type { LoomPluginOptions, LoomPluginOptionsWithProvider, LoomPluginOptionsWithoutProvider, LoomProviderOptions, VideoMeta, GetClient, GetClientResult, LoomPluginErrorMessages, LoomSDKErrorMessages, ButtonComponentProps, ButtonComponent, RenderButton, PositionType, } from '../types/index';
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export type { LoomPluginState } from '../pm-plugins/main';
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export type { LoomPlugin } from '../loomPluginType';
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export { loomPlugin } from '../loomPlugin';
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export type { LoomPluginOptions, LoomPluginOptionsWithProvider, LoomPluginOptionsWithoutProvider, LoomProviderOptions, VideoMeta, GetClient, GetClientResult, LoomPluginErrorMessages, LoomSDKErrorMessages, ButtonComponentProps, ButtonComponent, RenderButton, PositionType, } from '../types/index';
|
|
@@ -0,0 +1,17 @@
|
|
|
1
|
+
{
|
|
2
|
+
"name": "@atlaskit/editor-plugin-loom/loom-plugin",
|
|
3
|
+
"main": "../dist/cjs/entry-points/loom-plugin.js",
|
|
4
|
+
"module": "../dist/esm/entry-points/loom-plugin.js",
|
|
5
|
+
"module:es2019": "../dist/es2019/entry-points/loom-plugin.js",
|
|
6
|
+
"sideEffects": [
|
|
7
|
+
"*.compiled.css"
|
|
8
|
+
],
|
|
9
|
+
"types": "../dist/types/entry-points/loom-plugin.d.ts",
|
|
10
|
+
"typesVersions": {
|
|
11
|
+
">=4.5 <5.9": {
|
|
12
|
+
"*": [
|
|
13
|
+
"../dist/types-ts4.5/entry-points/loom-plugin.d.ts"
|
|
14
|
+
]
|
|
15
|
+
}
|
|
16
|
+
}
|
|
17
|
+
}
|
|
@@ -0,0 +1,17 @@
|
|
|
1
|
+
{
|
|
2
|
+
"name": "@atlaskit/editor-plugin-loom/loom-plugin-state-type",
|
|
3
|
+
"main": "../dist/cjs/entry-points/loom-plugin-state-type.js",
|
|
4
|
+
"module": "../dist/esm/entry-points/loom-plugin-state-type.js",
|
|
5
|
+
"module:es2019": "../dist/es2019/entry-points/loom-plugin-state-type.js",
|
|
6
|
+
"sideEffects": [
|
|
7
|
+
"*.compiled.css"
|
|
8
|
+
],
|
|
9
|
+
"types": "../dist/types/entry-points/loom-plugin-state-type.d.ts",
|
|
10
|
+
"typesVersions": {
|
|
11
|
+
">=4.5 <5.9": {
|
|
12
|
+
"*": [
|
|
13
|
+
"../dist/types-ts4.5/entry-points/loom-plugin-state-type.d.ts"
|
|
14
|
+
]
|
|
15
|
+
}
|
|
16
|
+
}
|
|
17
|
+
}
|
|
@@ -0,0 +1,17 @@
|
|
|
1
|
+
{
|
|
2
|
+
"name": "@atlaskit/editor-plugin-loom/loom-plugin-type",
|
|
3
|
+
"main": "../dist/cjs/entry-points/loom-plugin-type.js",
|
|
4
|
+
"module": "../dist/esm/entry-points/loom-plugin-type.js",
|
|
5
|
+
"module:es2019": "../dist/es2019/entry-points/loom-plugin-type.js",
|
|
6
|
+
"sideEffects": [
|
|
7
|
+
"*.compiled.css"
|
|
8
|
+
],
|
|
9
|
+
"types": "../dist/types/entry-points/loom-plugin-type.d.ts",
|
|
10
|
+
"typesVersions": {
|
|
11
|
+
">=4.5 <5.9": {
|
|
12
|
+
"*": [
|
|
13
|
+
"../dist/types-ts4.5/entry-points/loom-plugin-type.d.ts"
|
|
14
|
+
]
|
|
15
|
+
}
|
|
16
|
+
}
|
|
17
|
+
}
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@atlaskit/editor-plugin-loom",
|
|
3
|
-
"version": "12.
|
|
3
|
+
"version": "12.1.1",
|
|
4
4
|
"description": "Loom plugin for @atlaskit/editor-core",
|
|
5
5
|
"author": "Atlassian Pty Ltd",
|
|
6
6
|
"license": "Apache-2.0",
|
|
@@ -33,25 +33,25 @@
|
|
|
33
33
|
"atlaskit:src": "src/index.ts",
|
|
34
34
|
"dependencies": {
|
|
35
35
|
"@atlaskit/button": "^23.11.0",
|
|
36
|
-
"@atlaskit/editor-plugin-analytics": "^10.
|
|
37
|
-
"@atlaskit/editor-plugin-connectivity": "^10.
|
|
38
|
-
"@atlaskit/editor-plugin-editor-viewmode": "^12.
|
|
39
|
-
"@atlaskit/editor-plugin-hyperlink": "^12.
|
|
40
|
-
"@atlaskit/editor-plugin-primary-toolbar": "^11.
|
|
41
|
-
"@atlaskit/editor-plugin-quick-insert": "^10.
|
|
42
|
-
"@atlaskit/editor-plugin-toolbar": "^7.
|
|
43
|
-
"@atlaskit/editor-plugin-width": "^11.
|
|
36
|
+
"@atlaskit/editor-plugin-analytics": "^10.1.0",
|
|
37
|
+
"@atlaskit/editor-plugin-connectivity": "^10.1.0",
|
|
38
|
+
"@atlaskit/editor-plugin-editor-viewmode": "^12.1.0",
|
|
39
|
+
"@atlaskit/editor-plugin-hyperlink": "^12.1.0",
|
|
40
|
+
"@atlaskit/editor-plugin-primary-toolbar": "^11.1.0",
|
|
41
|
+
"@atlaskit/editor-plugin-quick-insert": "^10.4.0",
|
|
42
|
+
"@atlaskit/editor-plugin-toolbar": "^7.3.0",
|
|
43
|
+
"@atlaskit/editor-plugin-width": "^11.1.0",
|
|
44
44
|
"@atlaskit/editor-prosemirror": "^7.3.0",
|
|
45
|
-
"@atlaskit/editor-toolbar": "^1.
|
|
46
|
-
"@atlaskit/icon": "^
|
|
45
|
+
"@atlaskit/editor-toolbar": "^1.5.0",
|
|
46
|
+
"@atlaskit/icon": "^35.0.0",
|
|
47
47
|
"@atlaskit/platform-feature-flags": "^1.1.0",
|
|
48
48
|
"@atlaskit/tokens": "^13.0.0",
|
|
49
49
|
"@babel/runtime": "^7.0.0",
|
|
50
50
|
"@emotion/react": "^11.7.1",
|
|
51
|
-
"@loomhq/record-sdk": "^4.
|
|
51
|
+
"@loomhq/record-sdk": "^4.11.0"
|
|
52
52
|
},
|
|
53
53
|
"peerDependencies": {
|
|
54
|
-
"@atlaskit/editor-common": "^114.
|
|
54
|
+
"@atlaskit/editor-common": "^114.35.0",
|
|
55
55
|
"react": "^18.2.0",
|
|
56
56
|
"react-dom": "^18.2.0",
|
|
57
57
|
"react-intl": "^5.25.1 || ^6.0.0 || ^7.0.0"
|
|
@@ -0,0 +1,17 @@
|
|
|
1
|
+
{
|
|
2
|
+
"name": "@atlaskit/editor-plugin-loom/types",
|
|
3
|
+
"main": "../dist/cjs/entry-points/types.js",
|
|
4
|
+
"module": "../dist/esm/entry-points/types.js",
|
|
5
|
+
"module:es2019": "../dist/es2019/entry-points/types.js",
|
|
6
|
+
"sideEffects": [
|
|
7
|
+
"*.compiled.css"
|
|
8
|
+
],
|
|
9
|
+
"types": "../dist/types/entry-points/types.d.ts",
|
|
10
|
+
"typesVersions": {
|
|
11
|
+
">=4.5 <5.9": {
|
|
12
|
+
"*": [
|
|
13
|
+
"../dist/types-ts4.5/entry-points/types.d.ts"
|
|
14
|
+
]
|
|
15
|
+
}
|
|
16
|
+
}
|
|
17
|
+
}
|