Procházet zdrojové kódy

Add directionality fallback

Refer to the element's direction when run in non-browser contexts.
master
TheoryOfNekomata před 1 rokem
rodič
revize
8e94d6057a
1 změnil soubory, kde provedl 8 přidání a 7 odebrání
  1. +8
    -7
      src/index.ts

+ 8
- 7
src/index.ts Zobrazit soubor

@@ -666,16 +666,17 @@ const getInputTextualFieldValue = (
inputEl: HTMLInputTextualElement,
options = {} as GetInputTextualFieldValueOptions,
) => {
if (
options.includeDirectionality
&& typeof window !== 'undefined'
&& typeof window.getComputedStyle === 'function'
&& typeof (inputEl.dirName as unknown) === 'string'
) {
if (options.includeDirectionality) {
return new TextualValueString(
inputEl.value,
inputEl.dirName,
window.getComputedStyle(inputEl).direction || 'ltr',
(
typeof window !== 'undefined'
&& typeof window.getComputedStyle === 'function'
&& typeof (inputEl.dirName as unknown) === 'string'
? window.getComputedStyle(inputEl).direction || 'ltr'
: inputEl.dir
),
);
}



Načítá se…
Zrušit
Uložit