@atlaskit/editor-plugin-grid 2.0.0 → 2.0.2

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.
Files changed (2) hide show
  1. package/CHANGELOG.md +18 -0
  2. package/package.json +6 -4
package/CHANGELOG.md CHANGED
@@ -1,5 +1,23 @@
1
1
  # @atlaskit/editor-plugin-grid
2
2
 
3
+ ## 2.0.2
4
+
5
+ ### Patch Changes
6
+
7
+ - Updated dependencies
8
+
9
+ ## 2.0.1
10
+
11
+ ### Patch Changes
12
+
13
+ - [#120533](https://bitbucket.org/atlassian/atlassian-frontend-monorepo/pull-requests/120533)
14
+ [`f1bec731e278f`](https://bitbucket.org/atlassian/atlassian-frontend-monorepo/commits/f1bec731e278f) -
15
+ Adds a `sideEffects` field to ensure this package does not have Compiled styles tree-shaken in the
16
+ future to avoid an accidental regression.
17
+
18
+ This is related to
19
+ https://community.developer.atlassian.com/t/rfc-73-migrating-our-components-to-compiled-css-in-js/85953
20
+
3
21
  ## 2.0.0
4
22
 
5
23
  ### Major Changes
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@atlaskit/editor-plugin-grid",
3
- "version": "2.0.0",
3
+ "version": "2.0.2",
4
4
  "description": "Grid plugin for @atlaskit/editor-core",
5
5
  "author": "Atlassian Pty Ltd",
6
6
  "license": "Apache-2.0",
@@ -17,16 +17,18 @@
17
17
  "module": "dist/esm/index.js",
18
18
  "module:es2019": "dist/es2019/index.js",
19
19
  "types": "dist/types/index.d.ts",
20
- "sideEffects": false,
20
+ "sideEffects": [
21
+ "*.compiled.css"
22
+ ],
21
23
  "atlaskit:src": "src/index.ts",
22
24
  "af:exports": {
23
25
  ".": "./src/index.ts"
24
26
  },
25
27
  "dependencies": {
26
- "@atlaskit/editor-common": "^100.0.0",
28
+ "@atlaskit/editor-common": "^101.0.0",
27
29
  "@atlaskit/editor-plugin-width": "^3.0.0",
28
30
  "@atlaskit/editor-prosemirror": "7.0.0",
29
- "@atlaskit/editor-shared-styles": "^3.3.0",
31
+ "@atlaskit/editor-shared-styles": "^3.4.0",
30
32
  "@babel/runtime": "^7.0.0",
31
33
  "@emotion/react": "^11.7.1",
32
34
  "classnames": "^2.2.5"