Huge News!Announcing our $40M Series B led by Abstract Ventures.Learn More
Socket
Socket
Sign inDemoInstall

@vaadin/vaadin-list-mixin

Package Overview
Dependencies
Maintainers
19
Versions
254
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@vaadin/vaadin-list-mixin - npm Package Compare versions

Comparing version 22.0.0-alpha7 to 22.0.0-alpha8

6

package.json
{
"name": "@vaadin/vaadin-list-mixin",
"version": "22.0.0-alpha7",
"version": "22.0.0-alpha8",
"publishConfig": {

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

"@polymer/polymer": "^3.0.0",
"@vaadin/component-base": "22.0.0-alpha7"
"@vaadin/component-base": "22.0.0-alpha8"
},

@@ -42,3 +42,3 @@ "devDependencies": {

},
"gitHead": "8e89419c6b44a1d225d5859e180d7b35e47ddb52"
"gitHead": "c24468526298ee26ad7f7280b59f6c8789e1f75f"
}

@@ -1,2 +0,6 @@

import { ListOrientation } from './interfaces';
/**
* @license
* Copyright (c) 2021 Vaadin Ltd.
* This program is available under Apache License Version 2.0, available at https://vaadin.com/license/
*/

@@ -15,8 +19,4 @@ /**

readonly _isRTL: boolean;
readonly _scrollerElement: HTMLElement;
readonly _vertical: boolean;
/**

@@ -38,3 +38,3 @@ * Used for mixin detection because `instanceof` does not work with mixins.

*/
orientation: ListOrientation;
orientation: 'horizontal' | 'vertical';

@@ -53,31 +53,4 @@ /**

readonly items: Element[] | undefined;
ready(): void;
_filterItems(array: Element[]): Element[];
_onClick(event: MouseEvent): void;
_searchKey(currentIdx: number, key: string): number;
_onKeydown(event: KeyboardEvent): void;
_getAvailableIndex(idx: number, increment: number, condition: (p0: Element) => boolean): number;
_isItemHidden(item: Element): boolean;
_setFocusable(idx: number): void;
_focus(idx: number): void;
focus(): void;
/**
* Scroll the container to have the next item by the edge of the viewport.
*/
_scrollToItem(idx: number): void;
_scroll(pixels: number): void;
}
export { ListMixin, ListMixinConstructor };

@@ -0,1 +1,6 @@

/**
* @license
* Copyright (c) 2021 Vaadin Ltd.
* This program is available under Apache License Version 2.0, available at https://vaadin.com/license/
*/
import { ListMixin, ListMixinConstructor } from './vaadin-list-mixin.js';

@@ -25,6 +30,4 @@

selectedValues: number[] | null | undefined;
_onMultipleClick(event: MouseEvent): void;
}
export { MultiSelectListMixin, MultiSelectListMixinConstructor };
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