Socket
Socket
Sign inDemoInstall

@spectrum-web-components/base

Package Overview
Dependencies
Maintainers
6
Versions
173
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@spectrum-web-components/base - npm Package Compare versions

Comparing version 0.4.3-beta.40 to 0.4.3-beta.41

4

package.json

@@ -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

SocketSocket SOC 2 Logo

Product

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

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc