@atlaskit/progress-indicator 9.5.14 → 9.5.15
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 +8 -0
- package/dist/cjs/components/progress-dots.js +5 -7
- package/dist/es2019/components/progress-dots.js +3 -5
- package/dist/esm/components/progress-dots.js +3 -5
- package/package.json +5 -5
- package/dist/cjs/version.json +0 -5
- package/dist/es2019/version.json +0 -5
- package/dist/esm/version.json +0 -5
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,13 @@
|
|
|
1
1
|
# @atlaskit/progress-indicator
|
|
2
2
|
|
|
3
|
+
## 9.5.15
|
|
4
|
+
|
|
5
|
+
### Patch Changes
|
|
6
|
+
|
|
7
|
+
- [`4ce6b505282`](https://bitbucket.org/atlassian/atlassian-frontend/commits/4ce6b505282) - The internal composition of this component has changed. There is no expected change in behavior.
|
|
8
|
+
- [`fd6bb9c9184`](https://bitbucket.org/atlassian/atlassian-frontend/commits/fd6bb9c9184) - Delete version.json
|
|
9
|
+
- Updated dependencies
|
|
10
|
+
|
|
3
11
|
## 9.5.14
|
|
4
12
|
|
|
5
13
|
### Patch Changes
|
|
@@ -12,9 +12,8 @@ var _react = _interopRequireWildcard(require("react"));
|
|
|
12
12
|
var _react2 = require("@emotion/react");
|
|
13
13
|
var _bindEventListener = require("bind-event-listener");
|
|
14
14
|
var _analyticsNext = require("@atlaskit/analytics-next");
|
|
15
|
-
var _box = _interopRequireDefault(require("@atlaskit/ds-explorations/box"));
|
|
16
15
|
var _noop = _interopRequireDefault(require("@atlaskit/ds-lib/noop"));
|
|
17
|
-
var
|
|
16
|
+
var _primitives = require("@atlaskit/primitives");
|
|
18
17
|
var _components = require("@atlaskit/theme/components");
|
|
19
18
|
var _appearances = require("./appearances");
|
|
20
19
|
var _constants = require("./constants");
|
|
@@ -24,7 +23,7 @@ function _interopRequireWildcard(obj, nodeInterop) { if (!nodeInterop && obj &&
|
|
|
24
23
|
/** @jsx jsx */
|
|
25
24
|
|
|
26
25
|
var packageName = "@atlaskit/progress-indicator";
|
|
27
|
-
var packageVersion = "9.5.
|
|
26
|
+
var packageVersion = "9.5.15";
|
|
28
27
|
|
|
29
28
|
/**
|
|
30
29
|
* __ProgressDots__
|
|
@@ -105,11 +104,10 @@ var ProgressDots = function ProgressDots(_ref) {
|
|
|
105
104
|
});
|
|
106
105
|
}, [onSelect, handleKeyDown]);
|
|
107
106
|
var theme = (0, _components.useGlobalTheme)();
|
|
108
|
-
return (0, _react2.jsx)(
|
|
109
|
-
|
|
110
|
-
display: "block",
|
|
107
|
+
return (0, _react2.jsx)(_primitives.Box, {
|
|
108
|
+
style: (_ref2 = {}, (0, _defineProperty2.default)(_ref2, _constants.varDotsSize, "".concat(_constants.sizes[size], "px")), (0, _defineProperty2.default)(_ref2, _constants.varDotsMargin, rawGapValue), _ref2),
|
|
111
109
|
role: "tablist"
|
|
112
|
-
}, (0, _react2.jsx)(
|
|
110
|
+
}, (0, _react2.jsx)(_primitives.Inline, {
|
|
113
111
|
testId: testId,
|
|
114
112
|
ref: function ref(r) {
|
|
115
113
|
tablistRef.current = r;
|
|
@@ -3,15 +3,14 @@ import React, { useCallback, useEffect, useRef } from 'react';
|
|
|
3
3
|
import { jsx } from '@emotion/react';
|
|
4
4
|
import { bind } from 'bind-event-listener';
|
|
5
5
|
import { usePlatformLeafEventHandler } from '@atlaskit/analytics-next';
|
|
6
|
-
import Box from '@atlaskit/ds-explorations/box';
|
|
7
6
|
import noop from '@atlaskit/ds-lib/noop';
|
|
8
|
-
import Inline from '@atlaskit/primitives
|
|
7
|
+
import { Box, Inline } from '@atlaskit/primitives';
|
|
9
8
|
import { useGlobalTheme } from '@atlaskit/theme/components';
|
|
10
9
|
import { getBgColor } from './appearances';
|
|
11
10
|
import { progressIndicatorGapMap, sizes, varDotsMargin, varDotsSize } from './constants';
|
|
12
11
|
import { ButtonIndicator, PresentationalIndicator } from './indicator';
|
|
13
12
|
const packageName = "@atlaskit/progress-indicator";
|
|
14
|
-
const packageVersion = "9.5.
|
|
13
|
+
const packageVersion = "9.5.15";
|
|
15
14
|
|
|
16
15
|
/**
|
|
17
16
|
* __ProgressDots__
|
|
@@ -88,11 +87,10 @@ const ProgressDots = ({
|
|
|
88
87
|
}, [onSelect, handleKeyDown]);
|
|
89
88
|
const theme = useGlobalTheme();
|
|
90
89
|
return jsx(Box, {
|
|
91
|
-
|
|
90
|
+
style: {
|
|
92
91
|
[varDotsSize]: `${sizes[size]}px`,
|
|
93
92
|
[varDotsMargin]: rawGapValue
|
|
94
93
|
},
|
|
95
|
-
display: "block",
|
|
96
94
|
role: "tablist"
|
|
97
95
|
}, jsx(Inline, {
|
|
98
96
|
testId: testId,
|
|
@@ -5,15 +5,14 @@ import React, { useCallback, useEffect, useRef } from 'react';
|
|
|
5
5
|
import { jsx } from '@emotion/react';
|
|
6
6
|
import { bind } from 'bind-event-listener';
|
|
7
7
|
import { usePlatformLeafEventHandler } from '@atlaskit/analytics-next';
|
|
8
|
-
import Box from '@atlaskit/ds-explorations/box';
|
|
9
8
|
import noop from '@atlaskit/ds-lib/noop';
|
|
10
|
-
import Inline from '@atlaskit/primitives
|
|
9
|
+
import { Box, Inline } from '@atlaskit/primitives';
|
|
11
10
|
import { useGlobalTheme } from '@atlaskit/theme/components';
|
|
12
11
|
import { getBgColor } from './appearances';
|
|
13
12
|
import { progressIndicatorGapMap, sizes, varDotsMargin, varDotsSize } from './constants';
|
|
14
13
|
import { ButtonIndicator, PresentationalIndicator } from './indicator';
|
|
15
14
|
var packageName = "@atlaskit/progress-indicator";
|
|
16
|
-
var packageVersion = "9.5.
|
|
15
|
+
var packageVersion = "9.5.15";
|
|
17
16
|
|
|
18
17
|
/**
|
|
19
18
|
* __ProgressDots__
|
|
@@ -95,8 +94,7 @@ var ProgressDots = function ProgressDots(_ref) {
|
|
|
95
94
|
}, [onSelect, handleKeyDown]);
|
|
96
95
|
var theme = useGlobalTheme();
|
|
97
96
|
return jsx(Box, {
|
|
98
|
-
|
|
99
|
-
display: "block",
|
|
97
|
+
style: (_ref2 = {}, _defineProperty(_ref2, varDotsSize, "".concat(sizes[size], "px")), _defineProperty(_ref2, varDotsMargin, rawGapValue), _ref2),
|
|
100
98
|
role: "tablist"
|
|
101
99
|
}, jsx(Inline, {
|
|
102
100
|
testId: testId,
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@atlaskit/progress-indicator",
|
|
3
|
-
"version": "9.5.
|
|
3
|
+
"version": "9.5.15",
|
|
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/"
|
|
@@ -15,7 +15,7 @@
|
|
|
15
15
|
"sideEffects": false,
|
|
16
16
|
"atlaskit:src": "src/index.tsx",
|
|
17
17
|
"atlassian": {
|
|
18
|
-
"team": "Design System
|
|
18
|
+
"team": "Design System Team",
|
|
19
19
|
"releaseModel": "continuous",
|
|
20
20
|
"website": {
|
|
21
21
|
"name": "Progress indicator",
|
|
@@ -24,12 +24,11 @@
|
|
|
24
24
|
},
|
|
25
25
|
"dependencies": {
|
|
26
26
|
"@atlaskit/analytics-next": "^9.1.0",
|
|
27
|
-
"@atlaskit/ds-explorations": "^2.2.0",
|
|
28
27
|
"@atlaskit/ds-lib": "^2.2.0",
|
|
29
28
|
"@atlaskit/focus-ring": "^1.3.0",
|
|
30
|
-
"@atlaskit/primitives": "^1.0
|
|
29
|
+
"@atlaskit/primitives": "^1.2.0",
|
|
31
30
|
"@atlaskit/theme": "^12.5.0",
|
|
32
|
-
"@atlaskit/tokens": "^1.
|
|
31
|
+
"@atlaskit/tokens": "^1.15.0",
|
|
33
32
|
"@babel/runtime": "^7.0.0",
|
|
34
33
|
"@emotion/react": "^11.7.1",
|
|
35
34
|
"bind-event-listener": "^2.1.1"
|
|
@@ -40,6 +39,7 @@
|
|
|
40
39
|
"devDependencies": {
|
|
41
40
|
"@af/accessibility-testing": "*",
|
|
42
41
|
"@af/visual-regression": "*",
|
|
42
|
+
"@atlaskit/ds-explorations": "^2.2.0",
|
|
43
43
|
"@atlaskit/ssr": "*",
|
|
44
44
|
"@atlaskit/visual-regression": "*",
|
|
45
45
|
"@atlassian/atlassian-frontend-prettier-config-1.0.1": "npm:@atlassian/atlassian-frontend-prettier-config@1.0.1",
|
package/dist/cjs/version.json
DELETED
package/dist/es2019/version.json
DELETED