@atlaskit/editor-plugin-caption 16.1.0 → 17.0.0
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
|
@@ -5,7 +5,7 @@ Object.defineProperty(exports, "__esModule", {
|
|
|
5
5
|
value: true
|
|
6
6
|
});
|
|
7
7
|
exports.default = void 0;
|
|
8
|
-
var
|
|
8
|
+
var _caption = require("@atlaskit/adf-schema/caption");
|
|
9
9
|
var _keymap = require("./pm-plugins/keymap");
|
|
10
10
|
var _main = _interopRequireDefault(require("./pm-plugins/main"));
|
|
11
11
|
var captionPlugin = function captionPlugin(_ref) {
|
|
@@ -15,7 +15,7 @@ var captionPlugin = function captionPlugin(_ref) {
|
|
|
15
15
|
nodes: function nodes() {
|
|
16
16
|
return [{
|
|
17
17
|
name: 'caption',
|
|
18
|
-
node:
|
|
18
|
+
node: _caption.caption
|
|
19
19
|
}];
|
|
20
20
|
},
|
|
21
21
|
pmPlugins: function pmPlugins() {
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import { caption } from '@atlaskit/adf-schema';
|
|
1
|
+
import { caption } from '@atlaskit/adf-schema/caption';
|
|
2
2
|
import { captionKeymap } from './pm-plugins/keymap';
|
|
3
3
|
import { default as createCaptionPlugin } from './pm-plugins/main';
|
|
4
4
|
var captionPlugin = function captionPlugin(_ref) {
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@atlaskit/editor-plugin-caption",
|
|
3
|
-
"version": "
|
|
3
|
+
"version": "17.0.0",
|
|
4
4
|
"description": "Caption plugin for @atlaskit/editor-core",
|
|
5
5
|
"author": "Atlassian Pty Ltd",
|
|
6
6
|
"license": "Apache-2.0",
|
|
@@ -19,52 +19,19 @@
|
|
|
19
19
|
"sideEffects": false,
|
|
20
20
|
"atlaskit:src": "src/index.ts",
|
|
21
21
|
"dependencies": {
|
|
22
|
-
"@atlaskit/adf-schema": "^57.
|
|
22
|
+
"@atlaskit/adf-schema": "^57.4.0",
|
|
23
23
|
"@atlaskit/browser-apis": "^1.2.0",
|
|
24
|
-
"@atlaskit/editor-plugin-analytics": "^
|
|
25
|
-
"@atlaskit/editor-plugin-editor-disabled": "^
|
|
24
|
+
"@atlaskit/editor-plugin-analytics": "^17.0.0",
|
|
25
|
+
"@atlaskit/editor-plugin-editor-disabled": "^17.0.0",
|
|
26
26
|
"@atlaskit/editor-prosemirror": "^8.0.0",
|
|
27
27
|
"@atlaskit/platform-feature-experiments": "^0.3.0",
|
|
28
28
|
"@babel/runtime": "^7.0.0"
|
|
29
29
|
},
|
|
30
30
|
"peerDependencies": {
|
|
31
|
-
"@atlaskit/editor-common": "^
|
|
31
|
+
"@atlaskit/editor-common": "^121.0.0",
|
|
32
32
|
"react": "^18.2.0 || ^19.2.0",
|
|
33
33
|
"react-intl": "^5.25.1 || ^6.0.0 || ^7.0.0"
|
|
34
34
|
},
|
|
35
|
-
"techstack": {
|
|
36
|
-
"@atlassian/frontend": {
|
|
37
|
-
"code-structure": [
|
|
38
|
-
"editor-plugin"
|
|
39
|
-
],
|
|
40
|
-
"import-structure": [
|
|
41
|
-
"atlassian-conventions"
|
|
42
|
-
],
|
|
43
|
-
"circular-dependencies": [
|
|
44
|
-
"file-and-folder-level"
|
|
45
|
-
]
|
|
46
|
-
},
|
|
47
|
-
"@repo/internal": {
|
|
48
|
-
"dom-events": "use-bind-event-listener",
|
|
49
|
-
"analytics": [
|
|
50
|
-
"analytics-next"
|
|
51
|
-
],
|
|
52
|
-
"design-tokens": [
|
|
53
|
-
"color"
|
|
54
|
-
],
|
|
55
|
-
"theming": [
|
|
56
|
-
"react-context"
|
|
57
|
-
],
|
|
58
|
-
"ui-components": [
|
|
59
|
-
"lite-mode"
|
|
60
|
-
],
|
|
61
|
-
"deprecation": "no-deprecated-imports",
|
|
62
|
-
"styling": [
|
|
63
|
-
"emotion",
|
|
64
|
-
"emotion"
|
|
65
|
-
]
|
|
66
|
-
}
|
|
67
|
-
},
|
|
68
35
|
"devDependencies": {
|
|
69
36
|
"react": "^19.2.0"
|
|
70
37
|
}
|