You're Invited:Meet the Socket Team at BlackHat and DEF CON in Las Vegas, Aug 7-8.RSVP
Socket
Socket
Sign inDemoInstall

@spectrum-web-components/field-label

Package Overview
Dependencies
Maintainers
6
Versions
177
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

Comparing version 0.4.3 to 0.4.4

4

CHANGELOG.md

@@ -6,2 +6,6 @@ # Change Log

## [0.4.4](https://github.com/adobe/spectrum-web-components/compare/@spectrum-web-components/field-label@0.4.3...@spectrum-web-components/field-label@0.4.4) (2021-04-15)
**Note:** Version bump only for package @spectrum-web-components/field-label
## [0.4.3](https://github.com/adobe/spectrum-web-components/compare/@spectrum-web-components/field-label@0.4.2...@spectrum-web-components/field-label@0.4.3) (2021-04-09)

@@ -8,0 +12,0 @@

6

package.json
{
"name": "@spectrum-web-components/field-label",
"version": "0.4.3",
"version": "0.4.4",
"publishConfig": {

@@ -32,3 +32,2 @@ "access": "public"

},
"customElementsManifest": "custom-elements.json",
"files": [

@@ -57,2 +56,3 @@ "*.d.ts",

},
"customElementsManifest": "custom-elements.json",
"sideEffects": [

@@ -62,3 +62,3 @@ "./sp-*.js",

],
"gitHead": "1bd2f11dc1f2485a583e02fb5163ec5f5804df66"
"gitHead": "8acfee43ce3be5d4a6da4cf1179d3400bca77968"
}

@@ -39,3 +39,3 @@ /*

const targetHost = targetParent.host;
if (targetParent.isSameNode(parent) && target.forceFocusVisible) {
if (targetParent === parent && target.forceFocusVisible) {
target.forceFocusVisible();

@@ -62,3 +62,3 @@ }

const targetParent = this.target.getRootNode();
if (targetParent.isSameNode(parent)) {
if (targetParent === parent) {
this.target.setAttribute('aria-labelledby', this.id);

@@ -65,0 +65,0 @@ }

@@ -67,3 +67,3 @@ /*

const targetHost = targetParent.host as AcceptsFocusVisisble;
if (targetParent.isSameNode(parent) && target.forceFocusVisible) {
if (targetParent === parent && target.forceFocusVisible) {
target.forceFocusVisible();

@@ -90,3 +90,3 @@ } else if (targetHost && targetHost.forceFocusVisible) {

const targetParent = this.target.getRootNode() as HTMLElement;
if (targetParent.isSameNode(parent)) {
if (targetParent === parent) {
this.target.setAttribute('aria-labelledby', this.id);

@@ -93,0 +93,0 @@ } else {

Sorry, the diff of this file is not supported yet

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap
  • Changelog

Packages

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc