Skip to content

Commit

Permalink
Merge branch 'master' into issue/SITES-10934
Browse files Browse the repository at this point in the history
  • Loading branch information
ens13533 committed Aug 6, 2024
2 parents a0d0093 + 8bf887d commit 525225b
Show file tree
Hide file tree
Showing 4 changed files with 12 additions and 5 deletions.
7 changes: 7 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,10 @@
## [4.16.4](https://github.com/adobe/coral-spectrum/compare/v4.16.3...v4.16.4) (2024-07-30)


### Bug Fixes

* **bug:** Custom color coral ui element is non-functional ([#354](https://github.com/adobe/coral-spectrum/issues/354)) ([a6e038e](https://github.com/adobe/coral-spectrum/commit/a6e038e0fc669e23f9043551b236e25494e897d4))

## [4.16.3](https://github.com/adobe/coral-spectrum/compare/v4.16.2...v4.16.3) (2024-07-30)


Expand Down
4 changes: 2 additions & 2 deletions coral-component-colorinput/src/scripts/ColorInput.js
Original file line number Diff line number Diff line change
Expand Up @@ -687,8 +687,8 @@ const ColorInput = Decorator(class extends BaseFormField(BaseComponent(HTMLEleme
if (this.showProperties === showProperties.OFF &&
this.showSwatches === showSwatches.ON) {
this._elements.colorPreview.label.textContent = i18n.get('Swatches');
if (this.previousSibling) {
this.previousSibling.setAttribute('aria-label', i18n.get('Confirm hex value'));
if (this.previousElementSibling) {
this.previousElementSibling.setAttribute('aria-label', i18n.get('Confirm hex value'));
}
this._elements.overlay.setAttribute('aria-label', i18n.get('Swatches'));
} else {
Expand Down
4 changes: 2 additions & 2 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"name": "@adobe/coral-spectrum",
"description": "Coral Spectrum is a JavaScript library of Web Components following Spectrum design patterns.",
"version": "4.16.3",
"version": "4.16.4",
"homepage": "https://github.com/adobe/coral-spectrum#readme",
"license": "Apache-2.0",
"repository": {
Expand Down

0 comments on commit 525225b

Please sign in to comment.