windmill-components 1.82.3 → 1.82.5

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -144,8 +144,7 @@ function handlePaste(event) {
144
144
  function keydown(event) {
145
145
  // Ignore keydown events if the user is typing in monaco
146
146
  let classes = event.target?.['className'];
147
- if ((typeof classes === 'string' && classes.includes('inputarea')) ||
148
- ['INPUT', 'TEXTAREA'].includes(document.activeElement?.tagName)) {
147
+ if (typeof classes === 'string' && classes.includes('inputarea')) {
149
148
  return;
150
149
  }
151
150
  switch (event.key) {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "windmill-components",
3
- "version": "1.82.3",
3
+ "version": "1.82.5",
4
4
  "devDependencies": {
5
5
  "@playwright/test": "^1.31.1",
6
6
  "@sveltejs/adapter-static": "^1.0.0",