@spectrum-web-components/overlay
Advanced tools
Comparing version 0.3.6 to 0.3.7
@@ -6,2 +6,8 @@ # Change Log | ||
## [0.3.7](https://github.com/adobe/spectrum-web-components/compare/@spectrum-web-components/overlay@0.3.6...@spectrum-web-components/overlay@0.3.7) (2020-05-08) | ||
### Bug Fixes | ||
- **dropdown:** correct conditional check ([a3a790f](https://github.com/adobe/spectrum-web-components/commit/a3a790f6c3f5f8f0837d619ca57c1090ab14e638)) | ||
## [0.3.6](https://github.com/adobe/spectrum-web-components/compare/@spectrum-web-components/overlay@0.3.5...@spectrum-web-components/overlay@0.3.6) (2020-05-08) | ||
@@ -8,0 +14,0 @@ |
@@ -24,3 +24,3 @@ /* | ||
const actualHeight = appliedSizeDefaults.get(state.elements.popper); | ||
const constrainHeight = maxHeight > actualHeight; | ||
const constrainHeight = maxHeight < actualHeight; | ||
const appliedHeight = constrainHeight ? `${maxHeight}px` : ''; | ||
@@ -27,0 +27,0 @@ state.styles.popper.maxHeight = appliedHeight; |
@@ -21,3 +21,3 @@ { | ||
], | ||
"version": "0.3.6", | ||
"version": "0.3.7", | ||
"description": "", | ||
@@ -53,3 +53,3 @@ "main": "lib/index.js", | ||
}, | ||
"gitHead": "4068602ee6a355db24878fad4762815eacc0a730" | ||
"gitHead": "1f8f11ef9dfb81e9b2ad7998fcc2955b331440ab" | ||
} |
@@ -54,3 +54,3 @@ /* | ||
const actualHeight = appliedSizeDefaults.get(state.elements.popper); | ||
const constrainHeight = maxHeight > actualHeight; | ||
const constrainHeight = maxHeight < actualHeight; | ||
const appliedHeight = constrainHeight ? `${maxHeight}px` : ''; | ||
@@ -57,0 +57,0 @@ state.styles.popper.maxHeight = appliedHeight; |
Sorry, the diff of this file is not supported yet
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
183433