@atlaskit/editor-plugin-status 0.2.14 → 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-status
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.14
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.14",
3
+ "version": "0.3.1",
4
4
  "description": "Status plugin for @atlaskit/editor-core",
5
5
  "author": "Atlassian Pty Ltd",
6
6
  "license": "Apache-2.0",
@@ -33,15 +33,15 @@
33
33
  ".": "./src/index.ts"
34
34
  },
35
35
  "dependencies": {
36
- "@atlaskit/adf-schema": "^35.3.0",
36
+ "@atlaskit/adf-schema": "^35.5.1",
37
37
  "@atlaskit/analytics-next": "^9.1.0",
38
- "@atlaskit/editor-common": "^77.0.0",
38
+ "@atlaskit/editor-common": "^77.2.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
  },