@atlaskit/editor-plugin-guideline 0.3.7 → 0.3.8

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,12 @@
1
1
  # @atlaskit/editor-plugin-guideline
2
2
 
3
+ ## 0.3.8
4
+
5
+ ### Patch Changes
6
+
7
+ - [`936c30f8dc9`](https://bitbucket.org/atlassian/atlassian-frontend/commits/936c30f8dc9) - support new image resize experience under feature flag
8
+ - Updated dependencies
9
+
3
10
  ## 0.3.7
4
11
 
5
12
  ### Patch Changes
@@ -1,5 +1,5 @@
1
1
  {
2
2
  "name": "@atlaskit/editor-plugin-guideline",
3
- "version": "0.3.7",
3
+ "version": "0.3.8",
4
4
  "sideEffects": false
5
5
  }
@@ -1,5 +1,5 @@
1
1
  {
2
2
  "name": "@atlaskit/editor-plugin-guideline",
3
- "version": "0.3.7",
3
+ "version": "0.3.8",
4
4
  "sideEffects": false
5
5
  }
@@ -1,5 +1,5 @@
1
1
  {
2
2
  "name": "@atlaskit/editor-plugin-guideline",
3
- "version": "0.3.7",
3
+ "version": "0.3.8",
4
4
  "sideEffects": false
5
5
  }
@@ -1,2 +1 @@
1
1
  export { guidelinePlugin } from './plugin';
2
- export type { GuidelineConfig } from './types';
@@ -1,2 +1 @@
1
1
  export { guidelinePlugin } from './plugin';
2
- export type { GuidelineConfig } from './types';
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@atlaskit/editor-plugin-guideline",
3
- "version": "0.3.7",
3
+ "version": "0.3.8",
4
4
  "description": "guideline plugin for @atlaskit/editor-core",
5
5
  "author": "Atlassian Pty Ltd",
6
6
  "license": "Apache-2.0",
@@ -23,7 +23,7 @@
23
23
  ".": "./src/index.ts"
24
24
  },
25
25
  "dependencies": {
26
- "@atlaskit/editor-common": "^74.29.0",
26
+ "@atlaskit/editor-common": "^74.33.0",
27
27
  "@atlaskit/editor-plugin-width": "^0.1.0",
28
28
  "@atlaskit/editor-prosemirror": "1.0.2",
29
29
  "@atlaskit/editor-shared-styles": "^2.5.0",
package/report.api.md CHANGED
@@ -16,13 +16,10 @@
16
16
 
17
17
  ```ts
18
18
  import { DisplayGuideline } from '@atlaskit/editor-common/guideline';
19
- import { GuidelineConfig } from '@atlaskit/editor-common/guideline';
20
19
  import { GuidelinePluginState } from '@atlaskit/editor-common/guideline';
21
20
  import { NextEditorPlugin } from '@atlaskit/editor-common/types';
22
21
  import type { widthPlugin } from '@atlaskit/editor-plugin-width';
23
22
 
24
- export { GuidelineConfig };
25
-
26
23
  // @public (undocumented)
27
24
  export const guidelinePlugin: NextEditorPlugin<
28
25
  'guideline',
@@ -5,13 +5,10 @@
5
5
  ```ts
6
6
 
7
7
  import { DisplayGuideline } from '@atlaskit/editor-common/guideline';
8
- import { GuidelineConfig } from '@atlaskit/editor-common/guideline';
9
8
  import { GuidelinePluginState } from '@atlaskit/editor-common/guideline';
10
9
  import { NextEditorPlugin } from '@atlaskit/editor-common/types';
11
10
  import type { widthPlugin } from '@atlaskit/editor-plugin-width';
12
11
 
13
- export { GuidelineConfig }
14
-
15
12
  // @public (undocumented)
16
13
  export const guidelinePlugin: NextEditorPlugin<'guideline', {
17
14
  dependencies: [typeof widthPlugin];