@atlaskit/progress-bar 0.5.2 → 0.5.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 +6 -0
- package/dist/cjs/components/transparent-progress-bar.js +1 -1
- package/dist/cjs/version.json +1 -1
- package/dist/es2019/components/transparent-progress-bar.js +1 -1
- package/dist/es2019/version.json +1 -1
- package/dist/esm/components/transparent-progress-bar.js +1 -1
- package/dist/esm/version.json +1 -1
- package/package.json +1 -1
package/CHANGELOG.md
CHANGED
|
@@ -54,7 +54,7 @@ var TransparentProgressBar = /*#__PURE__*/function (_React$PureComponent) {
|
|
|
54
54
|
var theme = currentTheme(props);
|
|
55
55
|
return _objectSpread(_objectSpread({}, theme), {}, {
|
|
56
56
|
container: _objectSpread(_objectSpread({}, theme.container), {}, {
|
|
57
|
-
background: "var(--ds-background-inverse, rgba(255, 255, 255, 0.5))"
|
|
57
|
+
background: "var(--ds-background-inverse-subtle, rgba(255, 255, 255, 0.5))"
|
|
58
58
|
}),
|
|
59
59
|
bar: _objectSpread(_objectSpread({}, theme.bar), {}, {
|
|
60
60
|
background: "var(--ds-surface, white)"
|
package/dist/cjs/version.json
CHANGED
|
@@ -11,7 +11,7 @@ export default class TransparentProgressBar extends React.PureComponent {
|
|
|
11
11
|
const theme = currentTheme(props);
|
|
12
12
|
return { ...theme,
|
|
13
13
|
container: { ...theme.container,
|
|
14
|
-
background: "var(--ds-background-inverse, rgba(255, 255, 255, 0.5))"
|
|
14
|
+
background: "var(--ds-background-inverse-subtle, rgba(255, 255, 255, 0.5))"
|
|
15
15
|
},
|
|
16
16
|
bar: { ...theme.bar,
|
|
17
17
|
background: "var(--ds-surface, white)"
|
package/dist/es2019/version.json
CHANGED
|
@@ -38,7 +38,7 @@ var TransparentProgressBar = /*#__PURE__*/function (_React$PureComponent) {
|
|
|
38
38
|
var theme = currentTheme(props);
|
|
39
39
|
return _objectSpread(_objectSpread({}, theme), {}, {
|
|
40
40
|
container: _objectSpread(_objectSpread({}, theme.container), {}, {
|
|
41
|
-
background: "var(--ds-background-inverse, rgba(255, 255, 255, 0.5))"
|
|
41
|
+
background: "var(--ds-background-inverse-subtle, rgba(255, 255, 255, 0.5))"
|
|
42
42
|
}),
|
|
43
43
|
bar: _objectSpread(_objectSpread({}, theme.bar), {}, {
|
|
44
44
|
background: "var(--ds-surface, white)"
|
package/dist/esm/version.json
CHANGED