{"version":3,"file":"app_src_js_keyboard-accessibility-check_js.427aadd4ba05fe6f414a.js","mappings":";;;;;;;;;;;;;AAAA;;AAEO,IAAMA,eAAe,GAAG;EAC3BC,MAAM,EAAE;AACZ,CAAC;AAED,IAAIC,oBAAoB,GAAG,IAAI;AAC/B,IAAMC,wBAAwB,GAAG,SAA3BA,wBAAwBA,CAAIC,IAAI,EAAK;EACvCC,YAAY,CAACH,oBAAoB,CAAC;EAClCA,oBAAoB,GAAGI,UAAU,CAAC,YAAM;IACpCC,QAAQ,CAACC,IAAI,CAACC,SAAS,CAACC,MAAM,CAAC,kBAAkB,EAAEN,IAAI,CAAC;IACxDJ,eAAe,CAACC,MAAM,GAAGG,IAAI;EACjC,CAAC,EAAE,GAAG,CAAC;AACX,CAAC;AACDG,QAAQ,CAACC,IAAI,CAACG,gBAAgB,CAAC,SAAS,EAAE,UAASC,CAAC,EAAE;EAClD,QAAQA,CAAC,CAACC,GAAG;IACT,KAAK,QAAQ;IACb,KAAK,IAAI;IACT,KAAK,SAAS;IACd,KAAK,MAAM;IACX,KAAK,WAAW;IAChB,KAAK,MAAM;IACX,KAAK,WAAW;IAChB,KAAK,KAAK;IACV,KAAK,OAAO;IACZ,KAAK,YAAY;IACjB,KAAK,QAAQ;IACb,KAAK,UAAU;IACf,KAAK,UAAU;IACf,KAAK,GAAG;IACR,KAAK,OAAO;IACZ,KAAK,QAAQ;MACTV,wBAAwB,CAAC,IAAI,CAAC;MAC9B;EACR;AACJ,CAAC,CAAC;AACFI,QAAQ,CAACC,IAAI,CAACG,gBAAgB,CAAC,WAAW,EAAE,YAAW;EACnDR,wBAAwB,CAAC,KAAK,CAAC;AACnC,CAAC,CAAC;AACFI,QAAQ,CAACC,IAAI,CAACG,gBAAgB,CAAC,YAAY,EAAE,YAAW;EACpDR,wBAAwB,CAAC,KAAK,CAAC;AACnC,CAAC,CAAC","sources":["webpack://WebpackConfig.Web/./app/src/js/keyboard-accessibility-check.js"],"sourcesContent":["// keyboard control detection\r\n\r\nexport const keyboardControl = {\r\n active: false\r\n}\r\n\r\nlet accessibilityTimeout = null;\r\nconst toggleAccessibilityClass = (mode) => {\r\n clearTimeout(accessibilityTimeout);\r\n accessibilityTimeout = setTimeout(() => {\r\n document.body.classList.toggle('keyboard-control', mode);\r\n keyboardControl.active = mode;\r\n }, 100);\r\n}\r\ndocument.body.addEventListener('keydown', function(e) {\r\n switch (e.key) {\r\n case 'Escape':\r\n case 'Up':\r\n case 'ArrowUp':\r\n case 'Down':\r\n case 'ArrowDown':\r\n case 'Left':\r\n case 'ArrowLeft':\r\n case 'Tab':\r\n case 'Right':\r\n case 'ArrowRight':\r\n case 'PageUp':\r\n case 'PageDown':\r\n case 'Spacebar':\r\n case ' ':\r\n case 'Enter':\r\n case 'Return':\r\n toggleAccessibilityClass(true);\r\n break;\r\n }\r\n});\r\ndocument.body.addEventListener('mousedown', function() {\r\n toggleAccessibilityClass(false);\r\n});\r\ndocument.body.addEventListener('touchstart', function() {\r\n toggleAccessibilityClass(false);\r\n});"],"names":["keyboardControl","active","accessibilityTimeout","toggleAccessibilityClass","mode","clearTimeout","setTimeout","document","body","classList","toggle","addEventListener","e","key"],"sourceRoot":""}