@spectrum-web-components/dropdown
Advanced tools
Comparing version 0.4.0 to 0.4.1
@@ -6,2 +6,8 @@ # Change Log | ||
## [0.4.1](https://github.com/adobe/spectrum-web-components/compare/@spectrum-web-components/dropdown@0.4.0...@spectrum-web-components/dropdown@0.4.1) (2020-03-11) | ||
### Bug Fixes | ||
- **dropdown:** correctly support "quiet" variant ([2a51a2b](https://github.com/adobe/spectrum-web-components/commit/2a51a2b)) | ||
# [0.4.0](https://github.com/adobe/spectrum-web-components/compare/@spectrum-web-components/dropdown@0.3.8...@spectrum-web-components/dropdown@0.4.0) (2020-02-24) | ||
@@ -8,0 +14,0 @@ |
@@ -33,2 +33,3 @@ import { PropertyValues, CSSResultArray, TemplateResult } from 'lit-element'; | ||
readonly focusElement: HTMLElement; | ||
click(): void; | ||
onButtonBlur(): void; | ||
@@ -35,0 +36,0 @@ protected onButtonClick(): void; |
@@ -72,2 +72,5 @@ /* | ||
} | ||
click() { | ||
this.focusElement.click(); | ||
} | ||
onButtonBlur() { | ||
@@ -74,0 +77,0 @@ /* istanbul ignore if */ |
@@ -21,3 +21,3 @@ { | ||
], | ||
"version": "0.4.0", | ||
"version": "0.4.1", | ||
"description": "", | ||
@@ -42,16 +42,16 @@ "main": "lib/index.js", | ||
"devDependencies": { | ||
"@spectrum-css/dropdown": "^2.1.3" | ||
"@spectrum-css/dropdown": "^2.1.5" | ||
}, | ||
"dependencies": { | ||
"@spectrum-web-components/button": "^0.4.5", | ||
"@spectrum-web-components/icon": "^0.4.3", | ||
"@spectrum-web-components/button": "^0.4.6", | ||
"@spectrum-web-components/icon": "^0.4.4", | ||
"@spectrum-web-components/icons": "^0.2.3", | ||
"@spectrum-web-components/menu": "^0.2.3", | ||
"@spectrum-web-components/menu-item": "^0.4.0", | ||
"@spectrum-web-components/overlay": "^0.3.0", | ||
"@spectrum-web-components/popover": "^0.3.2", | ||
"@spectrum-web-components/menu": "^0.2.4", | ||
"@spectrum-web-components/menu-item": "^0.4.1", | ||
"@spectrum-web-components/overlay": "^0.3.1", | ||
"@spectrum-web-components/popover": "^0.3.3", | ||
"@spectrum-web-components/shared": "^0.4.3", | ||
"tslib": "^1.10.0" | ||
}, | ||
"gitHead": "458efe94228954db66b17c16312987c0778813c1" | ||
"gitHead": "d5b370be9515cb1458c436fd4b7c8689e2bfb933" | ||
} |
@@ -126,2 +126,6 @@ /* | ||
public click(): void { | ||
this.focusElement.click(); | ||
} | ||
public onButtonBlur(): void { | ||
@@ -128,0 +132,0 @@ /* istanbul ignore if */ |
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
120094
1473