This commit is contained in:
Adria Navarro 2025-01-13 12:17:03 +01:00
parent c38d694727
commit 92a1b0b4ac
1 changed files with 1 additions and 1 deletions

View File

@ -83,7 +83,7 @@ export const isGridEvent = (e: Event & { target: HTMLElement }): boolean => {
// Svelte action to apply required class names and styles to our component // Svelte action to apply required class names and styles to our component
// wrappers // wrappers
export const gridLayout = (node: HTMLDivElement, metadata: GridMetadata) => { export const gridLayout = (node: HTMLDivElement, metadata: GridMetadata) => {
let selectComponent: any let selectComponent: ((e: Event) => void) | null
// Applies the required listeners, CSS and classes to a component DOM node // Applies the required listeners, CSS and classes to a component DOM node
const applyMetadata = (metadata: GridMetadata) => { const applyMetadata = (metadata: GridMetadata) => {