@atlaskit/editor-plugin-status 0.2.13 → 0.3.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,23 @@
1
1
  # @atlaskit/editor-plugin-status
2
2
 
3
+ ## 0.3.0
4
+
5
+ ### Minor Changes
6
+
7
+ - [#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.
8
+
9
+ Now when using the editor API with the universal preset
10
+
11
+ ### Patch Changes
12
+
13
+ - Updated dependencies
14
+
15
+ ## 0.2.14
16
+
17
+ ### Patch Changes
18
+
19
+ - Updated dependencies
20
+
3
21
  ## 0.2.13
4
22
 
5
23
  ### Patch Changes
@@ -1,3 +1,4 @@
1
1
  export { statusPlugin } from './plugin';
2
2
  export type { StatusPlugin } from './plugin';
3
- export type { StatusState, StatusType } from './types';
3
+ export type { StatusState, StatusType, StatusPluginOptions, ClosingPayload, } from './types';
4
+ export type { UpdateStatus } from './actions';
@@ -1,3 +1,4 @@
1
1
  export { statusPlugin } from './plugin';
2
2
  export type { StatusPlugin } from './plugin';
3
- export type { StatusState, StatusType } from './types';
3
+ export type { StatusState, StatusType, StatusPluginOptions, ClosingPayload, } from './types';
4
+ export type { UpdateStatus } from './actions';
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@atlaskit/editor-plugin-status",
3
- "version": "0.2.13",
3
+ "version": "0.3.0",
4
4
  "description": "Status plugin for @atlaskit/editor-core",
5
5
  "author": "Atlassian Pty Ltd",
6
6
  "license": "Apache-2.0",
@@ -35,13 +35,13 @@
35
35
  "dependencies": {
36
36
  "@atlaskit/adf-schema": "^35.3.0",
37
37
  "@atlaskit/analytics-next": "^9.1.0",
38
- "@atlaskit/editor-common": "^76.41.0",
38
+ "@atlaskit/editor-common": "^77.1.0",
39
39
  "@atlaskit/editor-plugin-analytics": "^0.4.0",
40
40
  "@atlaskit/editor-prosemirror": "1.1.0",
41
41
  "@atlaskit/editor-shared-styles": "^2.9.0",
42
42
  "@atlaskit/status": "^1.4.0",
43
43
  "@atlaskit/theme": "^12.6.0",
44
- "@atlaskit/tokens": "^1.34.0",
44
+ "@atlaskit/tokens": "^1.35.0",
45
45
  "@babel/runtime": "^7.0.0",
46
46
  "@emotion/react": "^11.7.1"
47
47
  },