New Case Study:See how Anthropic automated 95% of dependency reviews with Socket.Learn More
Socket
Sign inDemoInstall
Socket

@evs-chris/raui

Package Overview
Dependencies
Maintainers
1
Versions
175
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@evs-chris/raui - npm Package Compare versions

Comparing version

to
0.8.9

2

package.json
{
"name": "@evs-chris/raui",
"version": "0.8.8",
"version": "0.8.9",
"description": "Components, decorators, and helpers for Ractive apps that are generally Material-ish",

@@ -5,0 +5,0 @@ "homepage": "https://github.com/evs-chris/raui",

import Ractive, { Plugin } from 'ractive';
export class Table<V = any, T extends Table<T> = Table<any>> extends Ractive<T> {
readonly selections: V[];
selections: V[];
selected: V;
/** Remove any selections. */
deselect(): void;
/** Move the selection up or down the list by the given offset.
*
* @param offset - the positive (down) or negative (up) offset to move the selection
*/
selectionOffset(offset: number): void;
/** Move the selection down by one row. */
selectionDown(): void;
/** Move the selection up by one row. */
selectionUp(): void;
}

@@ -11,2 +27,2 @@

export default function plugin(opts?: PluginOpts): Plugin;
export default function plugin(opts?: PluginOpts): Plugin;