@spectrum-web-components/base
Advanced tools
Comparing version 0.4.3-beta.40 to 0.4.3-beta.41
@@ -21,3 +21,3 @@ { | ||
], | ||
"version": "0.4.3-beta.40+7521af0d", | ||
"version": "0.4.3-beta.41+2c7da9c1", | ||
"description": "", | ||
@@ -53,3 +53,3 @@ "main": "./src/index.js", | ||
}, | ||
"gitHead": "7521af0d382814db9441f3be22dabdb3d7509fdc" | ||
"gitHead": "2c7da9c1b1d1ee734dffff194af3fc6a98973bea" | ||
} |
@@ -62,7 +62,6 @@ /* | ||
else { | ||
if (dirParent.tagName.search('-') > -1 && | ||
!customElements.get('dirParent.tagName')) { | ||
customElements | ||
.whenDefined(dirParent.tagName) | ||
.then(() => { | ||
const tagName = dirParent.tagName.toLocaleLowerCase(); | ||
if (tagName.search('-') > -1 && | ||
!customElements.get(tagName)) { | ||
customElements.whenDefined(tagName).then(() => { | ||
dirParent.startManagingContentDirection(this); | ||
@@ -69,0 +68,0 @@ }); |
@@ -101,13 +101,12 @@ /* | ||
} else { | ||
const tagName = dirParent.tagName.toLocaleLowerCase(); | ||
if ( | ||
dirParent.tagName.search('-') > -1 && | ||
!customElements.get('dirParent.tagName') | ||
tagName.search('-') > -1 && | ||
!customElements.get(tagName) | ||
) { | ||
customElements | ||
.whenDefined(dirParent.tagName) | ||
.then(() => { | ||
(dirParent as ThemeRoot).startManagingContentDirection( | ||
this | ||
); | ||
}); | ||
customElements.whenDefined(tagName).then(() => { | ||
(dirParent as ThemeRoot).startManagingContentDirection( | ||
this | ||
); | ||
}); | ||
} else { | ||
@@ -114,0 +113,0 @@ (dirParent as ThemeRoot).startManagingContentDirection( |
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
Manifest confusion
Supply chain riskThis package has inconsistent metadata. This could be malicious or caused by an error when publishing the package.
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
Manifest confusion
Supply chain riskThis package has inconsistent metadata. This could be malicious or caused by an error when publishing the package.
Found 1 instance in 1 package
68943
667