@atlaskit/editor-plugin-code-block 0.1.11 → 0.1.13

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,17 @@
1
1
  # @atlaskit/editor-plugin-code-block
2
2
 
3
+ ## 0.1.13
4
+
5
+ ### Patch Changes
6
+
7
+ - [#62880](https://stash.atlassian.com/projects/CONFCLOUD/repos/confluence-frontend/pull-requests/62880) [`a23ec26652ea`](https://stash.atlassian.com/projects/CONFCLOUD/repos/confluence-frontend/commits/a23ec26652ea) - Extracting breakout plugin from editor-core into new package @atlaskit/editor-plugin-breakout
8
+
9
+ ## 0.1.12
10
+
11
+ ### Patch Changes
12
+
13
+ - [#62165](https://stash.atlassian.com/projects/CONFCLOUD/repos/confluence-frontend/pull-requests/62165) [`b44ac0968d79`](https://stash.atlassian.com/projects/CONFCLOUD/repos/confluence-frontend/commits/b44ac0968d79) - [ED-21562] Bump @atlaskit/adf-schema to 35.2.0 for border mark update
14
+
3
15
  ## 0.1.11
4
16
 
5
17
  ### Patch Changes
@@ -1,15 +1,15 @@
1
1
  import { INPUT_METHOD } from '@atlaskit/editor-common/analytics';
2
2
  import type { Command, NextEditorPlugin, OptionalPlugin } from '@atlaskit/editor-common/types';
3
- import type { analyticsPlugin } from '@atlaskit/editor-plugin-analytics';
4
- import type { compositionPlugin } from '@atlaskit/editor-plugin-composition';
5
- import type { decorationsPlugin } from '@atlaskit/editor-plugin-decorations';
3
+ import type { AnalyticsPlugin } from '@atlaskit/editor-plugin-analytics';
4
+ import type { CompositionPlugin } from '@atlaskit/editor-plugin-composition';
5
+ import type { DecorationsPlugin } from '@atlaskit/editor-plugin-decorations';
6
6
  import type { CodeBlockOptions } from './types';
7
7
  export type CodeBlockPlugin = NextEditorPlugin<'codeBlock', {
8
8
  pluginConfiguration: CodeBlockOptions;
9
9
  dependencies: [
10
- typeof decorationsPlugin,
11
- typeof compositionPlugin,
12
- OptionalPlugin<typeof analyticsPlugin>
10
+ DecorationsPlugin,
11
+ CompositionPlugin,
12
+ OptionalPlugin<AnalyticsPlugin>
13
13
  ];
14
14
  actions: {
15
15
  insertCodeBlock: (inputMethod: INPUT_METHOD) => Command;
@@ -1,15 +1,15 @@
1
1
  import { INPUT_METHOD } from '@atlaskit/editor-common/analytics';
2
2
  import type { Command, NextEditorPlugin, OptionalPlugin } from '@atlaskit/editor-common/types';
3
- import type { analyticsPlugin } from '@atlaskit/editor-plugin-analytics';
4
- import type { compositionPlugin } from '@atlaskit/editor-plugin-composition';
5
- import type { decorationsPlugin } from '@atlaskit/editor-plugin-decorations';
3
+ import type { AnalyticsPlugin } from '@atlaskit/editor-plugin-analytics';
4
+ import type { CompositionPlugin } from '@atlaskit/editor-plugin-composition';
5
+ import type { DecorationsPlugin } from '@atlaskit/editor-plugin-decorations';
6
6
  import type { CodeBlockOptions } from './types';
7
7
  export type CodeBlockPlugin = NextEditorPlugin<'codeBlock', {
8
8
  pluginConfiguration: CodeBlockOptions;
9
9
  dependencies: [
10
- typeof decorationsPlugin,
11
- typeof compositionPlugin,
12
- OptionalPlugin<typeof analyticsPlugin>
10
+ DecorationsPlugin,
11
+ CompositionPlugin,
12
+ OptionalPlugin<AnalyticsPlugin>
13
13
  ];
14
14
  actions: {
15
15
  insertCodeBlock: (inputMethod: INPUT_METHOD) => Command;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@atlaskit/editor-plugin-code-block",
3
- "version": "0.1.11",
3
+ "version": "0.1.13",
4
4
  "description": "Code block plugin for @atlaskit/editor-core",
5
5
  "author": "Atlassian Pty Ltd",
6
6
  "license": "Apache-2.0",
@@ -31,9 +31,9 @@
31
31
  ".": "./src/index.ts"
32
32
  },
33
33
  "dependencies": {
34
- "@atlaskit/adf-schema": "^35.1.1",
34
+ "@atlaskit/adf-schema": "^35.2.0",
35
35
  "@atlaskit/code": "^15.1.0",
36
- "@atlaskit/editor-common": "^76.26.0",
36
+ "@atlaskit/editor-common": "^76.28.0",
37
37
  "@atlaskit/editor-plugin-analytics": "^0.4.0",
38
38
  "@atlaskit/editor-plugin-composition": "^0.1.0",
39
39
  "@atlaskit/editor-plugin-decorations": "^0.2.0",