Ensure keyboard events while inline searching are not captured by the main grid keyboard manager
This commit is contained in:
parent
7f33b28294
commit
a857eb266c
|
@ -234,6 +234,7 @@
|
||||||
on:blur={onBlurInput}
|
on:blur={onBlurInput}
|
||||||
on:click={() => focusedCellId.set(null)}
|
on:click={() => focusedCellId.set(null)}
|
||||||
on:keydown={onInputKeyDown}
|
on:keydown={onInputKeyDown}
|
||||||
|
data-grid-ignore
|
||||||
/>
|
/>
|
||||||
{/if}
|
{/if}
|
||||||
|
|
||||||
|
|
|
@ -21,6 +21,7 @@
|
||||||
const ignoredOriginSelectors = [
|
const ignoredOriginSelectors = [
|
||||||
".spectrum-Modal",
|
".spectrum-Modal",
|
||||||
"#builder-side-panel-container",
|
"#builder-side-panel-container",
|
||||||
|
"[data-grid-ignore]",
|
||||||
]
|
]
|
||||||
|
|
||||||
// Global key listener which intercepts all key events
|
// Global key listener which intercepts all key events
|
||||||
|
|
Loading…
Reference in New Issue