@atlaskit/editor-plugin-panel 0.2.7 → 0.3.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 CHANGED
@@ -1,5 +1,23 @@
1
1
  # @atlaskit/editor-plugin-panel
2
2
 
3
+ ## 0.3.1
4
+
5
+ ### Patch Changes
6
+
7
+ - [#70152](https://stash.atlassian.com/projects/CONFCLOUD/repos/confluence-frontend/pull-requests/70152) [`53ed3673df28`](https://stash.atlassian.com/projects/CONFCLOUD/repos/confluence-frontend/commits/53ed3673df28) - Updating adf-schema version to 35.5.1
8
+
9
+ ## 0.3.0
10
+
11
+ ### Minor Changes
12
+
13
+ - [#68790](https://stash.atlassian.com/projects/CONFCLOUD/repos/confluence-frontend/pull-requests/68790) [`c6d8affc52d1`](https://stash.atlassian.com/projects/CONFCLOUD/repos/confluence-frontend/commits/c6d8affc52d1) - Support maybeAdd plugins in usePreset. Add typing support for universal preset.
14
+
15
+ Now when using the editor API with the universal preset
16
+
17
+ ### Patch Changes
18
+
19
+ - Updated dependencies
20
+
3
21
  ## 0.2.7
4
22
 
5
23
  ### Patch Changes
@@ -1,3 +1,3 @@
1
1
  export { default as panelPlugin } from './plugin';
2
2
  export type { PanelPlugin } from './plugin';
3
- export type { PanelPluginConfig } from './types';
3
+ export type { PanelPluginConfig, PanelPluginOptions } from './types';
@@ -1,3 +1,3 @@
1
1
  export { default as panelPlugin } from './plugin';
2
2
  export type { PanelPlugin } from './plugin';
3
- export type { PanelPluginConfig } from './types';
3
+ export type { PanelPluginConfig, PanelPluginOptions } from './types';
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@atlaskit/editor-plugin-panel",
3
- "version": "0.2.7",
3
+ "version": "0.3.1",
4
4
  "description": "Panel plugin for @atlaskit/editor-core.",
5
5
  "author": "Atlassian Pty Ltd",
6
6
  "license": "Apache-2.0",
@@ -33,8 +33,8 @@
33
33
  ".": "./src/index.ts"
34
34
  },
35
35
  "dependencies": {
36
- "@atlaskit/adf-schema": "^35.3.0",
37
- "@atlaskit/editor-common": "^77.0.0",
36
+ "@atlaskit/adf-schema": "^35.5.1",
37
+ "@atlaskit/editor-common": "^77.2.0",
38
38
  "@atlaskit/editor-palette": "1.5.2",
39
39
  "@atlaskit/editor-plugin-analytics": "^0.4.0",
40
40
  "@atlaskit/editor-plugin-decorations": "^0.2.0",
@@ -52,18 +52,11 @@
52
52
  "react-intl-next": "npm:react-intl@^5.18.1"
53
53
  },
54
54
  "devDependencies": {
55
- "@af/integration-testing": "*",
56
- "@af/visual-regression": "*",
57
- "@atlaskit/editor-plugin-emoji": "^1.0.0",
58
55
  "@atlaskit/editor-plugin-feature-flags": "^1.0.0",
59
- "@atlaskit/ssr": "*",
60
56
  "@atlaskit/util-data-test": "^17.8.0",
61
- "@atlaskit/visual-regression": "*",
62
57
  "@atlassian/atlassian-frontend-prettier-config-1.0.0": "npm:@atlassian/atlassian-frontend-prettier-config@1.0.0",
63
- "@testing-library/react": "^12.1.5",
64
58
  "react-dom": "^16.8.0",
65
- "typescript": "~4.9.5",
66
- "wait-for-expect": "^1.2.0"
59
+ "typescript": "~4.9.5"
67
60
  },
68
61
  "techstack": {
69
62
  "@atlassian/frontend": {
@@ -108,5 +101,10 @@
108
101
  "platform.editor.allow-extended-panel": {
109
102
  "type": "boolean"
110
103
  }
104
+ },
105
+ "stricter": {
106
+ "no-unused-dependencies": {
107
+ "checkDevDependencies": true
108
+ }
111
109
  }
112
110
  }