@atlaskit/progress-indicator 9.4.0 → 9.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 +12 -0
- package/dist/cjs/components/progress-dots.js +2 -1
- package/dist/cjs/version.json +1 -1
- package/dist/es2019/components/progress-dots.js +2 -1
- package/dist/es2019/version.json +1 -1
- package/dist/esm/components/progress-dots.js +2 -1
- package/dist/esm/version.json +1 -1
- package/package.json +4 -4
- package/report.api.md +14 -7
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,17 @@
|
|
|
1
1
|
# @atlaskit/progress-indicator
|
|
2
2
|
|
|
3
|
+
## 9.4.2
|
|
4
|
+
|
|
5
|
+
### Patch Changes
|
|
6
|
+
|
|
7
|
+
- Updated dependencies
|
|
8
|
+
|
|
9
|
+
## 9.4.1
|
|
10
|
+
|
|
11
|
+
### Patch Changes
|
|
12
|
+
|
|
13
|
+
- [`767258f2c53`](https://bitbucket.org/atlassian/atlassian-frontend/commits/767258f2c53) - Set main container of progress indicator as display block instead of flex given display flex is now set on the direct child of the main container
|
|
14
|
+
|
|
3
15
|
## 9.4.0
|
|
4
16
|
|
|
5
17
|
### Minor Changes
|
|
@@ -41,7 +41,7 @@ function _interopRequireWildcard(obj, nodeInterop) { if (!nodeInterop && obj &&
|
|
|
41
41
|
|
|
42
42
|
/** @jsx jsx */
|
|
43
43
|
var packageName = "@atlaskit/progress-indicator";
|
|
44
|
-
var packageVersion = "9.4.
|
|
44
|
+
var packageVersion = "9.4.2";
|
|
45
45
|
/**
|
|
46
46
|
* __ProgressDots__
|
|
47
47
|
*
|
|
@@ -130,6 +130,7 @@ var ProgressDots = function ProgressDots(_ref) {
|
|
|
130
130
|
var theme = (0, _components.useGlobalTheme)();
|
|
131
131
|
return (0, _react2.jsx)(_box.default, {
|
|
132
132
|
UNSAFE_style: (_ref2 = {}, (0, _defineProperty2.default)(_ref2, _constants.varDotsSize, "".concat(_constants.sizes[size], "px")), (0, _defineProperty2.default)(_ref2, _constants.varDotsMargin, rawGapValue), _ref2),
|
|
133
|
+
display: "block",
|
|
133
134
|
role: "tablist"
|
|
134
135
|
}, (0, _react2.jsx)(_inline.default, {
|
|
135
136
|
testId: testId,
|
package/dist/cjs/version.json
CHANGED
|
@@ -11,7 +11,7 @@ import { getBgColor } from './appearances';
|
|
|
11
11
|
import { progressIndicatorGapMap, sizes, varDotsMargin, varDotsSize } from './constants';
|
|
12
12
|
import { ButtonIndicator, PresentationalIndicator } from './indicator';
|
|
13
13
|
const packageName = "@atlaskit/progress-indicator";
|
|
14
|
-
const packageVersion = "9.4.
|
|
14
|
+
const packageVersion = "9.4.2";
|
|
15
15
|
/**
|
|
16
16
|
* __ProgressDots__
|
|
17
17
|
*
|
|
@@ -95,6 +95,7 @@ const ProgressDots = ({
|
|
|
95
95
|
[varDotsSize]: `${sizes[size]}px`,
|
|
96
96
|
[varDotsMargin]: rawGapValue
|
|
97
97
|
},
|
|
98
|
+
display: "block",
|
|
98
99
|
role: "tablist"
|
|
99
100
|
}, jsx(Inline, {
|
|
100
101
|
testId: testId,
|
package/dist/es2019/version.json
CHANGED
|
@@ -14,7 +14,7 @@ import { getBgColor } from './appearances';
|
|
|
14
14
|
import { progressIndicatorGapMap, sizes, varDotsMargin, varDotsSize } from './constants';
|
|
15
15
|
import { ButtonIndicator, PresentationalIndicator } from './indicator';
|
|
16
16
|
var packageName = "@atlaskit/progress-indicator";
|
|
17
|
-
var packageVersion = "9.4.
|
|
17
|
+
var packageVersion = "9.4.2";
|
|
18
18
|
/**
|
|
19
19
|
* __ProgressDots__
|
|
20
20
|
*
|
|
@@ -103,6 +103,7 @@ var ProgressDots = function ProgressDots(_ref) {
|
|
|
103
103
|
var theme = useGlobalTheme();
|
|
104
104
|
return jsx(Box, {
|
|
105
105
|
UNSAFE_style: (_ref2 = {}, _defineProperty(_ref2, varDotsSize, "".concat(sizes[size], "px")), _defineProperty(_ref2, varDotsMargin, rawGapValue), _ref2),
|
|
106
|
+
display: "block",
|
|
106
107
|
role: "tablist"
|
|
107
108
|
}, jsx(Inline, {
|
|
108
109
|
testId: testId,
|
package/dist/esm/version.json
CHANGED
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@atlaskit/progress-indicator",
|
|
3
|
-
"version": "9.4.
|
|
3
|
+
"version": "9.4.2",
|
|
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/"
|
|
@@ -25,11 +25,11 @@
|
|
|
25
25
|
},
|
|
26
26
|
"dependencies": {
|
|
27
27
|
"@atlaskit/analytics-next": "^8.0.0",
|
|
28
|
-
"@atlaskit/ds-explorations": "^1.
|
|
28
|
+
"@atlaskit/ds-explorations": "^1.6.0",
|
|
29
29
|
"@atlaskit/ds-lib": "^2.1.0",
|
|
30
30
|
"@atlaskit/focus-ring": "^1.2.0",
|
|
31
31
|
"@atlaskit/theme": "^12.2.0",
|
|
32
|
-
"@atlaskit/tokens": "^0.
|
|
32
|
+
"@atlaskit/tokens": "^0.12.0",
|
|
33
33
|
"@babel/runtime": "^7.0.0",
|
|
34
34
|
"@emotion/react": "^11.7.1",
|
|
35
35
|
"bind-event-listener": "^2.1.1"
|
|
@@ -38,7 +38,7 @@
|
|
|
38
38
|
"react": "^16.8.0"
|
|
39
39
|
},
|
|
40
40
|
"devDependencies": {
|
|
41
|
-
"@atlaskit/button": "^16.
|
|
41
|
+
"@atlaskit/button": "^16.5.0",
|
|
42
42
|
"@atlaskit/docs": "*",
|
|
43
43
|
"@atlaskit/section-message": "^6.3.0",
|
|
44
44
|
"@atlaskit/ssr": "*",
|
package/report.api.md
CHANGED
|
@@ -1,12 +1,17 @@
|
|
|
1
|
+
<!-- API Report Version: 2.2 -->
|
|
2
|
+
|
|
1
3
|
## API Report File for "@atlaskit/progress-indicator"
|
|
2
4
|
|
|
3
|
-
> Do not edit this file.
|
|
5
|
+
> Do not edit this file. This report is auto-generated using [API Extractor](https://api-extractor.com/).
|
|
6
|
+
> [Learn more about API reports](https://hello.atlassian.net/wiki/spaces/UR/pages/1825484529/Package+API+Reports)
|
|
7
|
+
|
|
8
|
+
### Table of contents
|
|
4
9
|
|
|
5
|
-
|
|
6
|
-
Generated API Report version: 2.0
|
|
7
|
-
-->
|
|
10
|
+
- [Main Entry Types](#main-entry-types)
|
|
8
11
|
|
|
9
|
-
|
|
12
|
+
### Main Entry Types
|
|
13
|
+
|
|
14
|
+
<!--SECTION START: Main Entry Types-->
|
|
10
15
|
|
|
11
16
|
```ts
|
|
12
17
|
/// <reference types="react" />
|
|
@@ -40,10 +45,12 @@ export interface ProgressDotsProps {
|
|
|
40
45
|
export const ProgressIndicator: FC<ProgressDotsProps>;
|
|
41
46
|
|
|
42
47
|
// @public (undocumented)
|
|
43
|
-
type Size = '
|
|
48
|
+
type Size = 'default' | 'large' | 'small';
|
|
44
49
|
|
|
45
50
|
// @public (undocumented)
|
|
46
|
-
type Spacing = 'comfortable' | '
|
|
51
|
+
type Spacing = 'comfortable' | 'compact' | 'cozy';
|
|
47
52
|
|
|
48
53
|
// (No @packageDocumentation comment for this package)
|
|
49
54
|
```
|
|
55
|
+
|
|
56
|
+
<!--SECTION END: Main Entry Types-->
|