Socket
Socket
Sign inDemoInstall

@vaadin/field-base

Package Overview
Dependencies
Maintainers
14
Versions
378
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@vaadin/field-base - npm Package Compare versions

Comparing version 23.0.4 to 23.0.5

6

package.json
{
"name": "@vaadin/field-base",
"version": "23.0.4",
"version": "23.0.5",
"publishConfig": {

@@ -35,3 +35,3 @@ "access": "public"

"@polymer/polymer": "^3.0.0",
"@vaadin/component-base": "^23.0.4",
"@vaadin/component-base": "^23.0.5",
"lit": "^2.0.0"

@@ -44,3 +44,3 @@ },

},
"gitHead": "d8db2046661c42fb5aac09ed683b500bf4613b26"
"gitHead": "4cd2b11eb053d36fba9f0a8128da4e63984753e2"
}

@@ -36,2 +36,4 @@ /**

*
* Toggling `tabindex` attribute on the host element propagates its value to `focusElement`.
*
* @protected

@@ -47,12 +49,11 @@ * @type {!HTMLElement}

/**
* Indicates whether the element can be focused and where it participates in sequential keyboard navigation.
* Override the property from `TabIndexMixin`
* to ensure the `tabindex` attribute of the focus element
* will be restored to `0` after re-enabling the element.
*
* By default, the host element does not have tabindex attribute. Instead, `focusElement` should have it.
* Toggling `tabindex` attribute on the host element propagates its value to `focusElement`.
*
* @protected
* @override
*/
tabindex: {
type: Number,
value: undefined
_lastTabIndex: {
value: 0
}

@@ -223,3 +224,3 @@ };

if (tabindex !== -1) {
this.__lastTabIndex = tabindex;
this._lastTabIndex = tabindex;
}

@@ -226,0 +227,0 @@ this.tabindex = undefined;

@@ -23,2 +23,3 @@ /**

*
* @override
* @protected

@@ -92,3 +93,3 @@ */

if (tabindex !== -1) {
this.__lastTabIndex = tabindex;
this._lastTabIndex = tabindex;
}

@@ -95,0 +96,0 @@ this.tabindex = undefined;

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