@atlaskit/editor-plugin-caption 16.0.1 → 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
@@ -1,5 +1,22 @@
1
1
  # @atlaskit/editor-plugin-caption
2
2
 
3
+ ## 17.0.0
4
+
5
+ ### Patch Changes
6
+
7
+ - Updated dependencies
8
+
9
+ ## 16.1.0
10
+
11
+ ### Minor Changes
12
+
13
+ - [`bd2c5b0112185`](https://bitbucket.org/atlassian/atlassian-frontend-monorepo/commits/bd2c5b0112185) -
14
+ Remove stale API report artifacts from published Platform packages.
15
+
16
+ ### Patch Changes
17
+
18
+ - Updated dependencies
19
+
3
20
  ## 16.0.1
4
21
 
5
22
  ### Patch Changes
@@ -5,7 +5,7 @@ Object.defineProperty(exports, "__esModule", {
5
5
  value: true
6
6
  });
7
7
  exports.default = void 0;
8
- var _adfSchema = require("@atlaskit/adf-schema");
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: _adfSchema.caption
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
  const captionPlugin = ({
@@ -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": "16.0.1",
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.2.0",
22
+ "@atlaskit/adf-schema": "^57.4.0",
23
23
  "@atlaskit/browser-apis": "^1.2.0",
24
- "@atlaskit/editor-plugin-analytics": "^16.0.0",
25
- "@atlaskit/editor-plugin-editor-disabled": "^16.0.0",
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": "^120.3.0",
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
  }
package/report.api.md DELETED
@@ -1,48 +0,0 @@
1
- <!-- API Report Version: 2.3 -->
2
-
3
- ## API Report File for "@atlaskit/editor-plugin-caption"
4
-
5
- > Do not edit this file. This report is auto-generated using
6
- > [API Extractor](https://api-extractor.com/).
7
- > [Learn more about API reports](https://hello.atlassian.net/wiki/spaces/UR/pages/1825484529/Package+API+Reports)
8
-
9
- ### Table of contents
10
-
11
- - [Main Entry Types](#main-entry-types)
12
- - [Peer Dependencies](#peer-dependencies)
13
-
14
- ### Main Entry Types
15
-
16
- <!--SECTION START: Main Entry Types-->
17
-
18
- ```ts
19
- import type { analyticsPlugin } from '@atlaskit/editor-plugin-analytics';
20
- import type { NextEditorPlugin } from '@atlaskit/editor-common/types';
21
-
22
- // @public (undocumented)
23
- export type CaptionPlugin = NextEditorPlugin<
24
- 'caption',
25
- {
26
- dependencies: [typeof analyticsPlugin];
27
- }
28
- >;
29
-
30
- // @public (undocumented)
31
- export const captionPlugin: CaptionPlugin;
32
-
33
- // (No @packageDocumentation comment for this package)
34
- ```
35
-
36
- <!--SECTION END: Main Entry Types-->
37
-
38
- ### Peer Dependencies
39
-
40
- <!--SECTION START: Peer Dependencies-->
41
-
42
- ```json
43
- {
44
- "react": "^16.8.0"
45
- }
46
- ```
47
-
48
- <!--SECTION END: Peer Dependencies-->