@atlaskit/progress-indicator 11.0.2 → 11.0.3
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/indicator.js +3 -3
- package/dist/cjs/components/progress-dots.js +1 -1
- package/dist/es2019/components/indicator.js +3 -3
- package/dist/es2019/components/progress-dots.js +1 -1
- package/dist/esm/components/indicator.js +3 -3
- package/dist/esm/components/progress-dots.js +1 -1
- package/dist/types/types.d.ts +4 -0
- package/dist/types-ts4.5/types.d.ts +4 -0
- package/package.json +4 -4
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,13 @@
|
|
|
1
1
|
# @atlaskit/progress-indicator
|
|
2
2
|
|
|
3
|
+
## 11.0.3
|
|
4
|
+
|
|
5
|
+
### Patch Changes
|
|
6
|
+
|
|
7
|
+
- [#144637](https://stash.atlassian.com/projects/CONFCLOUD/repos/confluence-frontend/pull-requests/144637)
|
|
8
|
+
[`0878427e3e316`](https://stash.atlassian.com/projects/CONFCLOUD/repos/confluence-frontend/commits/0878427e3e316) -
|
|
9
|
+
[ux] Update border for inverted appearance
|
|
10
|
+
|
|
3
11
|
## 11.0.2
|
|
4
12
|
|
|
5
13
|
### Patch Changes
|
|
@@ -20,9 +20,9 @@ var colorMap = {
|
|
|
20
20
|
border: "var(--ds-border-width, 1px)".concat(" solid ", "var(--ds-border-bold, #758195)")
|
|
21
21
|
}),
|
|
22
22
|
inverted: (0, _primitives.xcss)({
|
|
23
|
-
// @ts-
|
|
24
|
-
backgroundColor: "var(--ds-
|
|
25
|
-
border: "var(--ds-border-width, 1px)".concat(" solid ", "var(--ds-border-
|
|
23
|
+
// @ts-ignore
|
|
24
|
+
backgroundColor: "var(--ds-background-neutral-subtle, #00000000)",
|
|
25
|
+
border: "var(--ds-border-width, 1px)".concat(" solid ", "var(--ds-border-inverse, #FFFFFF)")
|
|
26
26
|
}),
|
|
27
27
|
primary: (0, _primitives.xcss)({
|
|
28
28
|
backgroundColor: 'elevation.surface',
|
|
@@ -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.
|
|
29
|
+
var packageVersion = "11.0.3";
|
|
30
30
|
|
|
31
31
|
/**
|
|
32
32
|
* __ProgressDots__
|
|
@@ -13,9 +13,9 @@ const colorMap = {
|
|
|
13
13
|
border: `${"var(--ds-border-width, 1px)"} solid ${"var(--ds-border-bold, #758195)"}`
|
|
14
14
|
}),
|
|
15
15
|
inverted: xcss({
|
|
16
|
-
// @ts-
|
|
17
|
-
backgroundColor: "var(--ds-
|
|
18
|
-
border: `${"var(--ds-border-width, 1px)"} solid ${"var(--ds-border-
|
|
16
|
+
// @ts-ignore
|
|
17
|
+
backgroundColor: "var(--ds-background-neutral-subtle, #00000000)",
|
|
18
|
+
border: `${"var(--ds-border-width, 1px)"} solid ${"var(--ds-border-inverse, #FFFFFF)"}`
|
|
19
19
|
}),
|
|
20
20
|
primary: xcss({
|
|
21
21
|
backgroundColor: 'elevation.surface',
|
|
@@ -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.
|
|
16
|
+
const packageVersion = "11.0.3";
|
|
17
17
|
|
|
18
18
|
/**
|
|
19
19
|
* __ProgressDots__
|
|
@@ -13,9 +13,9 @@ var colorMap = {
|
|
|
13
13
|
border: "var(--ds-border-width, 1px)".concat(" solid ", "var(--ds-border-bold, #758195)")
|
|
14
14
|
}),
|
|
15
15
|
inverted: xcss({
|
|
16
|
-
// @ts-
|
|
17
|
-
backgroundColor: "var(--ds-
|
|
18
|
-
border: "var(--ds-border-width, 1px)".concat(" solid ", "var(--ds-border-
|
|
16
|
+
// @ts-ignore
|
|
17
|
+
backgroundColor: "var(--ds-background-neutral-subtle, #00000000)",
|
|
18
|
+
border: "var(--ds-border-width, 1px)".concat(" solid ", "var(--ds-border-inverse, #FFFFFF)")
|
|
19
19
|
}),
|
|
20
20
|
primary: xcss({
|
|
21
21
|
backgroundColor: 'elevation.surface',
|
|
@@ -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.
|
|
18
|
+
var packageVersion = "11.0.3";
|
|
19
19
|
|
|
20
20
|
/**
|
|
21
21
|
* __ProgressDots__
|
package/dist/types/types.d.ts
CHANGED
|
@@ -8,10 +8,14 @@ export interface ProgressDotsProps {
|
|
|
8
8
|
appearance?: DotsAppearance;
|
|
9
9
|
/**
|
|
10
10
|
* If interaction is enabled, use `ariaControls` to tell assistive technology what elements are controlled by the progress indicator.
|
|
11
|
+
*
|
|
12
|
+
* @default 'panel'
|
|
11
13
|
*/
|
|
12
14
|
ariaControls?: string;
|
|
13
15
|
/**
|
|
14
16
|
* Describes what the indicator represents to assistive technology. The selected index number will be appended to the label.
|
|
17
|
+
*
|
|
18
|
+
* @default 'tab'
|
|
15
19
|
*/
|
|
16
20
|
ariaLabel?: string;
|
|
17
21
|
/**
|
|
@@ -8,10 +8,14 @@ export interface ProgressDotsProps {
|
|
|
8
8
|
appearance?: DotsAppearance;
|
|
9
9
|
/**
|
|
10
10
|
* If interaction is enabled, use `ariaControls` to tell assistive technology what elements are controlled by the progress indicator.
|
|
11
|
+
*
|
|
12
|
+
* @default 'panel'
|
|
11
13
|
*/
|
|
12
14
|
ariaControls?: string;
|
|
13
15
|
/**
|
|
14
16
|
* Describes what the indicator represents to assistive technology. The selected index number will be appended to the label.
|
|
17
|
+
*
|
|
18
|
+
* @default 'tab'
|
|
15
19
|
*/
|
|
16
20
|
ariaLabel?: string;
|
|
17
21
|
/**
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@atlaskit/progress-indicator",
|
|
3
|
-
"version": "11.0.
|
|
3
|
+
"version": "11.0.3",
|
|
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/"
|
|
@@ -24,9 +24,9 @@
|
|
|
24
24
|
},
|
|
25
25
|
"dependencies": {
|
|
26
26
|
"@atlaskit/analytics-next": "^10.1.0",
|
|
27
|
-
"@atlaskit/ds-lib": "^2.
|
|
28
|
-
"@atlaskit/primitives": "^12.
|
|
29
|
-
"@atlaskit/tokens": "^1.
|
|
27
|
+
"@atlaskit/ds-lib": "^2.6.0",
|
|
28
|
+
"@atlaskit/primitives": "^12.2.0",
|
|
29
|
+
"@atlaskit/tokens": "^1.61.0",
|
|
30
30
|
"@atlaskit/visually-hidden": "^1.5.0",
|
|
31
31
|
"@babel/runtime": "^7.0.0",
|
|
32
32
|
"@emotion/react": "^11.7.1",
|