@slim-select/vue
Advanced tools
Comparing version 1.3.3 to 1.4.0
export declare function generateID(): string; | ||
export declare function hasClassInTree(element: HTMLElement, className: string): any; | ||
export declare function debounce(func: (...params: any[]) => void, wait?: number, immediate?: boolean): () => void; | ||
export declare function debounce<T extends (...args: any[]) => void>(func: T, wait?: number, immediate?: boolean): () => void; | ||
export declare function isEqual(a: any, b: any): boolean; | ||
export declare function kebabCase(str: string): string; |
@@ -39,3 +39,3 @@ import Settings, { SettingsPartial } from './settings'; | ||
open(): void; | ||
close(): void; | ||
close(eventType?: string | null): void; | ||
search(value: string): void; | ||
@@ -42,0 +42,0 @@ destroy(): void; |
@@ -94,4 +94,5 @@ import Settings from './settings'; | ||
updateClassStyles(): void; | ||
updateAriaAttributes(): void; | ||
mainDiv(): Main; | ||
mainFocus(trigger: boolean): void; | ||
mainFocus(trigger: boolean, eventType: string | null): void; | ||
placeholder(): HTMLDivElement; | ||
@@ -98,0 +99,0 @@ renderValues(): void; |
@@ -246,4 +246,5 @@ /// <reference types="node" /> | ||
updateClassStyles: () => void; | ||
updateAriaAttributes: () => void; | ||
mainDiv: () => import("../slim-select/render").Main; | ||
mainFocus: (trigger: boolean) => void; | ||
mainFocus: (trigger: boolean, eventType: string | null) => void; | ||
placeholder: () => HTMLDivElement; | ||
@@ -289,3 +290,3 @@ renderValues: () => void; | ||
open: () => void; | ||
close: () => void; | ||
close: (eventType?: string | null) => void; | ||
search: (value: string) => void; | ||
@@ -292,0 +293,0 @@ destroy: () => void; |
{ | ||
"name": "@slim-select/vue", | ||
"private": false, | ||
"version": "1.3.3", | ||
"version": "1.4.0", | ||
"description": "Vue integration", | ||
@@ -19,2 +19,3 @@ "repository": { | ||
}, | ||
"type": "module", | ||
"main": "dist/slimselectvue.ssr.js", | ||
@@ -21,0 +22,0 @@ "browser": "dist/slimselect.global.js", |
Sorry, the diff of this file is too big to display
Sorry, the diff of this file is too big to display
Sorry, the diff of this file is too big to display
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
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
261471
6372
Yes