@atlaskit/progress-indicator 11.0.6 → 11.0.7

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,13 @@
1
1
  # @atlaskit/progress-indicator
2
2
 
3
+ ## 11.0.7
4
+
5
+ ### Patch Changes
6
+
7
+ - [#165531](https://stash.atlassian.com/projects/CONFCLOUD/repos/confluence-frontend/pull-requests/165531)
8
+ [`57f451bda8919`](https://stash.atlassian.com/projects/CONFCLOUD/repos/confluence-frontend/commits/57f451bda8919) -
9
+ Adds side-effect config to support Compiled css extraction in third-party apps
10
+
3
11
  ## 11.0.6
4
12
 
5
13
  ### Patch Changes
@@ -26,7 +26,7 @@ function _interopRequireWildcard(e, r) { if (!r && e && e.__esModule) return e;
26
26
  // eslint-disable-next-line @atlaskit/ui-styling-standard/use-compiled -- Ignored via go/DSP-18766
27
27
 
28
28
  var packageName = "@atlaskit/progress-indicator";
29
- var packageVersion = "11.0.6";
29
+ var packageVersion = "11.0.7";
30
30
 
31
31
  /**
32
32
  * __ProgressDots__
@@ -106,9 +106,7 @@ var ProgressDots = function ProgressDots(_ref) {
106
106
  }
107
107
  });
108
108
  }, [onSelect, handleKeyDown]);
109
- return (0, _react2.jsx)(_primitives.Box
110
- // eslint-disable-next-line @atlaskit/ui-styling-standard/enforce-style-prop -- Ignored via go/DSP-18766
111
- , {
109
+ return (0, _react2.jsx)(_primitives.Box, {
112
110
  style: (_ref2 = {}, (0, _defineProperty2.default)(_ref2, _constants.varDotsSize, "".concat(_constants.sizes[size], "px")), (0, _defineProperty2.default)(_ref2, _constants.varDotsMargin, rawGapValue), _ref2),
113
111
  role: onSelect && 'tablist'
114
112
  }, (0, _react2.jsx)(_primitives.Inline, {
@@ -13,7 +13,7 @@ import { Box, Inline } from '@atlaskit/primitives';
13
13
  import { progressIndicatorGapMap, sizes, varDotsMargin, varDotsSize } from './constants';
14
14
  import { ButtonIndicator, PresentationalIndicator } from './indicator';
15
15
  const packageName = "@atlaskit/progress-indicator";
16
- const packageVersion = "11.0.6";
16
+ const packageVersion = "11.0.7";
17
17
 
18
18
  /**
19
19
  * __ProgressDots__
@@ -88,13 +88,11 @@ const ProgressDots = ({
88
88
  }
89
89
  });
90
90
  }, [onSelect, handleKeyDown]);
91
- return jsx(Box
92
- // eslint-disable-next-line @atlaskit/ui-styling-standard/enforce-style-prop -- Ignored via go/DSP-18766
93
- , {
91
+ return jsx(Box, {
94
92
  style: {
95
93
  // eslint-disable-next-line @atlaskit/ui-styling-standard/no-imported-style-values -- Ignored via go/DSP-18766
96
94
  [varDotsSize]: `${sizes[size]}px`,
97
- // eslint-disable-next-line @atlaskit/ui-styling-standard/no-imported-style-values -- Ignored via go/DSP-18766
95
+ // eslint-disable-next-line @atlaskit/ui-styling-standard/no-imported-style-values, @atlaskit/ui-styling-standard/enforce-style-prop -- Ignored via go/DSP-18766
98
96
  [varDotsMargin]: rawGapValue
99
97
  // eslint-disable-next-line @atlaskit/ui-styling-standard/no-imported-style-values -- Ignored via go/DSP-18766
100
98
  },
@@ -15,7 +15,7 @@ import { Box, Inline } from '@atlaskit/primitives';
15
15
  import { progressIndicatorGapMap, sizes, varDotsMargin, varDotsSize } from './constants';
16
16
  import { ButtonIndicator, PresentationalIndicator } from './indicator';
17
17
  var packageName = "@atlaskit/progress-indicator";
18
- var packageVersion = "11.0.6";
18
+ var packageVersion = "11.0.7";
19
19
 
20
20
  /**
21
21
  * __ProgressDots__
@@ -95,9 +95,7 @@ var ProgressDots = function ProgressDots(_ref) {
95
95
  }
96
96
  });
97
97
  }, [onSelect, handleKeyDown]);
98
- return jsx(Box
99
- // eslint-disable-next-line @atlaskit/ui-styling-standard/enforce-style-prop -- Ignored via go/DSP-18766
100
- , {
98
+ return jsx(Box, {
101
99
  style: (_ref2 = {}, _defineProperty(_ref2, varDotsSize, "".concat(sizes[size], "px")), _defineProperty(_ref2, varDotsMargin, rawGapValue), _ref2),
102
100
  role: onSelect && 'tablist'
103
101
  }, jsx(Inline, {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@atlaskit/progress-indicator",
3
- "version": "11.0.6",
3
+ "version": "11.0.7",
4
4
  "description": "A progress indicator shows the user where they are along the steps of a journey.",
5
5
  "publishConfig": {
6
6
  "registry": "https://registry.npmjs.org/"
@@ -12,7 +12,9 @@
12
12
  "module": "dist/esm/index.js",
13
13
  "module:es2019": "dist/es2019/index.js",
14
14
  "types": "dist/types/index.d.ts",
15
- "sideEffects": false,
15
+ "sideEffects": [
16
+ "**/*.compiled.css"
17
+ ],
16
18
  "atlaskit:src": "src/index.tsx",
17
19
  "atlassian": {
18
20
  "team": "Design System Team",
@@ -24,9 +26,9 @@
24
26
  },
25
27
  "dependencies": {
26
28
  "@atlaskit/analytics-next": "^10.1.0",
27
- "@atlaskit/ds-lib": "^3.1.0",
28
- "@atlaskit/primitives": "^13.0.0",
29
- "@atlaskit/tokens": "^2.0.0",
29
+ "@atlaskit/ds-lib": "^3.2.0",
30
+ "@atlaskit/primitives": "^13.2.0",
31
+ "@atlaskit/tokens": "^2.2.0",
30
32
  "@atlaskit/visually-hidden": "^1.5.0",
31
33
  "@babel/runtime": "^7.0.0",
32
34
  "@emotion/react": "^11.7.1",
@@ -3,7 +3,9 @@
3
3
  "main": "../dist/cjs/types.js",
4
4
  "module": "../dist/esm/types.js",
5
5
  "module:es2019": "../dist/es2019/types.js",
6
- "sideEffects": false,
6
+ "sideEffects": [
7
+ "**/*.compiled.css"
8
+ ],
7
9
  "types": "../dist/types/types.d.ts",
8
10
  "typesVersions": {
9
11
  ">=4.5 <5.4": {