@hig/progress-bar
Advanced tools
Comparing version 1.1.0 to 1.1.1
@@ -29,3 +29,3 @@ import { keyframes, cx, css } from 'emotion'; | ||
height: "4px", | ||
backgroundImage: "linear-gradient(135deg, transparent, " + themeData["progressBar.highlightColor"] + " 100%)", | ||
backgroundImage: "linear-gradient(135deg, transparent, " + themeData["progress.bar.highlightColor"] + " 100%)", | ||
backgroundSize: "200px 4px" | ||
@@ -61,7 +61,7 @@ } | ||
position: "relative", | ||
borderRadius: themeData["progressBar.borderRadius"], | ||
backgroundColor: themeData["progressBar.backgroundColor"], | ||
borderRadius: themeData["progress.bar.borderRadius"], | ||
backgroundColor: themeData["progress.bar.backgroundColor"], | ||
overflow: "hidden", | ||
width: "100%", | ||
height: themeData["progressBar.height"] | ||
height: themeData["progress.bar.minHeight"] | ||
}, | ||
@@ -79,7 +79,7 @@ progressBar: _extends({ | ||
progressBarFill: _extends({ | ||
backgroundColor: isIndeterminate ? "transparent" : themeData["progressBar.highlightColor"], | ||
backgroundColor: isIndeterminate ? "transparent" : themeData["progress.bar.highlightColor"], | ||
flex: "1 1 0" | ||
}, isIndeterminate ? getProgressBarFillIndeterminateRules(themeData) : {}), | ||
polygon: { | ||
fill: themeData["progressBar.highlightColor"] | ||
fill: themeData["progress.bar.highlightColor"] | ||
} | ||
@@ -86,0 +86,0 @@ }; |
@@ -36,3 +36,3 @@ 'use strict'; | ||
height: "4px", | ||
backgroundImage: "linear-gradient(135deg, transparent, " + themeData["progressBar.highlightColor"] + " 100%)", | ||
backgroundImage: "linear-gradient(135deg, transparent, " + themeData["progress.bar.highlightColor"] + " 100%)", | ||
backgroundSize: "200px 4px" | ||
@@ -68,7 +68,7 @@ } | ||
position: "relative", | ||
borderRadius: themeData["progressBar.borderRadius"], | ||
backgroundColor: themeData["progressBar.backgroundColor"], | ||
borderRadius: themeData["progress.bar.borderRadius"], | ||
backgroundColor: themeData["progress.bar.backgroundColor"], | ||
overflow: "hidden", | ||
width: "100%", | ||
height: themeData["progressBar.height"] | ||
height: themeData["progress.bar.minHeight"] | ||
}, | ||
@@ -86,7 +86,7 @@ progressBar: _extends({ | ||
progressBarFill: _extends({ | ||
backgroundColor: isIndeterminate ? "transparent" : themeData["progressBar.highlightColor"], | ||
backgroundColor: isIndeterminate ? "transparent" : themeData["progress.bar.highlightColor"], | ||
flex: "1 1 0" | ||
}, isIndeterminate ? getProgressBarFillIndeterminateRules(themeData) : {}), | ||
polygon: { | ||
fill: themeData["progressBar.highlightColor"] | ||
fill: themeData["progress.bar.highlightColor"] | ||
} | ||
@@ -93,0 +93,0 @@ }; |
@@ -0,1 +1,8 @@ | ||
# [@hig/progress-bar-v1.1.1](https://github.com/Autodesk/hig/compare/@hig/progress-bar@1.1.0...@hig/progress-bar@1.1.1) (2020-05-12) | ||
### Bug Fixes | ||
* stop using deprecated theme-data roles ([e5b22db](https://github.com/Autodesk/hig/commit/e5b22db)) | ||
# [@hig/progress-bar-v1.1.0](https://github.com/Autodesk/hig/compare/@hig/progress-bar@1.0.3...@hig/progress-bar@1.1.0) (2019-09-25) | ||
@@ -2,0 +9,0 @@ |
{ | ||
"name": "@hig/progress-bar", | ||
"version": "1.1.0", | ||
"version": "1.1.1", | ||
"description": "HIG Progress Bar", | ||
@@ -25,3 +25,3 @@ "author": "Autodesk Inc.", | ||
"@hig/theme-context": "^3.0.0", | ||
"@hig/theme-data": "^2.12.0", | ||
"@hig/theme-data": "^2.16.0", | ||
"react": "^15.4.1 || ^16.3.2" | ||
@@ -28,0 +28,0 @@ }, |
@@ -42,3 +42,3 @@ # Progress Bar | ||
...styles.wrapper, | ||
backgroundColor: themeData["colorScheme.surfaceLevel100Color"] | ||
backgroundColor: themeData["colorScheme.surface.level100"] | ||
} | ||
@@ -45,0 +45,0 @@ }); |
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
21100