@atlaskit/reactions 26.4.0 → 26.4.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.
package/CHANGELOG.md CHANGED
@@ -1,5 +1,23 @@
1
1
  # @atlaskit/reactions
2
2
 
3
+ ## 26.4.2
4
+
5
+ ### Patch Changes
6
+
7
+ - Updated dependencies
8
+
9
+ ## 26.4.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
  ## 26.4.0
4
22
 
5
23
  ### Minor Changes
@@ -3,6 +3,9 @@
3
3
  "main": "../dist/cjs/MockReactionsClient.js",
4
4
  "module": "../dist/esm/MockReactionsClient.js",
5
5
  "module:es2019": "../dist/es2019/MockReactionsClient.js",
6
+ "sideEffects": [
7
+ "*.compiled.css"
8
+ ],
6
9
  "types": "../dist/types/MockReactionsClient.d.ts",
7
10
  "typesVersions": {
8
11
  ">=4.5 <5.4": {
@@ -11,7 +11,7 @@ var _analyticsGasTypes = require("@atlaskit/analytics-gas-types");
11
11
  function ownKeys(e, r) { var t = Object.keys(e); if (Object.getOwnPropertySymbols) { var o = Object.getOwnPropertySymbols(e); r && (o = o.filter(function (r) { return Object.getOwnPropertyDescriptor(e, r).enumerable; })), t.push.apply(t, o); } return t; }
12
12
  function _objectSpread(e) { for (var r = 1; r < arguments.length; r++) { var t = null != arguments[r] ? arguments[r] : {}; r % 2 ? ownKeys(Object(t), !0).forEach(function (r) { (0, _defineProperty2.default)(e, r, t[r]); }) : Object.getOwnPropertyDescriptors ? Object.defineProperties(e, Object.getOwnPropertyDescriptors(t)) : ownKeys(Object(t)).forEach(function (r) { Object.defineProperty(e, r, Object.getOwnPropertyDescriptor(t, r)); }); } return e; }
13
13
  var packageName = "@atlaskit/reactions";
14
- var packageVersion = "26.4.0";
14
+ var packageVersion = "26.4.2";
15
15
  /**
16
16
  * TODO: move to utility package?
17
17
  * A random sampling function
@@ -1,7 +1,7 @@
1
1
  import { createAndFireEvent } from '@atlaskit/analytics-next';
2
2
  import { UI_EVENT_TYPE, OPERATIONAL_EVENT_TYPE } from '@atlaskit/analytics-gas-types';
3
3
  const packageName = "@atlaskit/reactions";
4
- const packageVersion = "26.4.0";
4
+ const packageVersion = "26.4.2";
5
5
  /**
6
6
  * TODO: move to utility package?
7
7
  * A random sampling function
@@ -4,7 +4,7 @@ function _objectSpread(e) { for (var r = 1; r < arguments.length; r++) { var t =
4
4
  import { createAndFireEvent } from '@atlaskit/analytics-next';
5
5
  import { UI_EVENT_TYPE, OPERATIONAL_EVENT_TYPE } from '@atlaskit/analytics-gas-types';
6
6
  var packageName = "@atlaskit/reactions";
7
- var packageVersion = "26.4.0";
7
+ var packageVersion = "26.4.2";
8
8
  /**
9
9
  * TODO: move to utility package?
10
10
  * A random sampling function
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@atlaskit/reactions",
3
- "version": "26.4.0",
3
+ "version": "26.4.2",
4
4
  "description": "Reactions component",
5
5
  "publishConfig": {
6
6
  "registry": "https://registry.npmjs.org/"
@@ -35,7 +35,7 @@
35
35
  "@atlaskit/analytics-gas-types": "^5.1.0",
36
36
  "@atlaskit/analytics-namespaced-context": "^7.0.0",
37
37
  "@atlaskit/analytics-next": "^11.0.0",
38
- "@atlaskit/avatar": "^23.0.0",
38
+ "@atlaskit/avatar": "^24.0.0",
39
39
  "@atlaskit/button": "^21.1.0",
40
40
  "@atlaskit/emoji": "^68.0.0",
41
41
  "@atlaskit/heading": "^5.1.0",
@@ -119,5 +119,8 @@
119
119
  "platform_fix_analytics_error": {
120
120
  "type": "boolean"
121
121
  }
122
- }
122
+ },
123
+ "sideEffects": [
124
+ "*.compiled.css"
125
+ ]
123
126
  }