@spectrum-web-components/accordion
Advanced tools
Comparing version 0.4.3 to 0.4.4
@@ -6,2 +6,8 @@ # Change Log | ||
## [0.4.4](https://github.com/adobe/spectrum-web-components/compare/@spectrum-web-components/accordion@0.4.3...@spectrum-web-components/accordion@0.4.4) (2021-03-29) | ||
### Bug Fixes | ||
- **accordion:** update a11y tree to not double label ([cc91a6b](https://github.com/adobe/spectrum-web-components/commit/cc91a6bc597582ef08a5d3cf1a329b9866b3cbf1)) | ||
## [0.4.3](https://github.com/adobe/spectrum-web-components/compare/@spectrum-web-components/accordion@0.4.2...@spectrum-web-components/accordion@0.4.3) (2021-03-22) | ||
@@ -8,0 +14,0 @@ |
@@ -21,3 +21,3 @@ { | ||
], | ||
"version": "0.4.3", | ||
"version": "0.4.4", | ||
"description": "", | ||
@@ -55,12 +55,12 @@ "main": "./src/index.js", | ||
"devDependencies": { | ||
"@spectrum-css/accordion": "^3.0.0" | ||
"@spectrum-css/accordion": "^3.0.1" | ||
}, | ||
"dependencies": { | ||
"@spectrum-web-components/base": "^0.4.2", | ||
"@spectrum-web-components/icon": "^0.9.3", | ||
"@spectrum-web-components/icons-ui": "^0.6.3", | ||
"@spectrum-web-components/shared": "^0.12.0", | ||
"@spectrum-web-components/icon": "^0.9.4", | ||
"@spectrum-web-components/icons-ui": "^0.6.4", | ||
"@spectrum-web-components/shared": "^0.12.1", | ||
"tslib": "^2.0.0" | ||
}, | ||
"gitHead": "1bdbe17c20ca0be44b4683470041f8f4c7c5909f" | ||
"gitHead": "4defd67aae71ad095d1c001bd1d23665edf39b24" | ||
} |
@@ -13,3 +13,3 @@ /* | ||
import { __decorate } from "tslib"; | ||
import { html, property, ifDefined, } from '@spectrum-web-components/base'; | ||
import { html, property, } from '@spectrum-web-components/base'; | ||
import { Focusable } from '@spectrum-web-components/shared/src/focusable.js'; | ||
@@ -71,3 +71,2 @@ import '@spectrum-web-components/icons-ui/icons/sp-icon-chevron100.js'; | ||
@click=${this.onClick} | ||
aria-label=${ifDefined(this.label || undefined)} | ||
aria-expanded=${this.open} | ||
@@ -74,0 +73,0 @@ aria-controls="content" |
@@ -19,3 +19,2 @@ /* | ||
PropertyValues, | ||
ifDefined, | ||
} from '@spectrum-web-components/base'; | ||
@@ -94,3 +93,2 @@ import { Focusable } from '@spectrum-web-components/shared/src/focusable.js'; | ||
@click=${this.onClick} | ||
aria-label=${ifDefined(this.label || undefined)} | ||
aria-expanded=${this.open} | ||
@@ -97,0 +95,0 @@ aria-controls="content" |
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
127781
1415