Does Uploadcare widget support Hebrew (RTL)?

:bulb: Our widget has Hebrew localization, but it doesn’t support RTL out-of-the-box. However, it’s possible to have the widget display content correctly when the page direction is set to RTL with some CSS customization:

JS

UPLOADCARE_LOCALE = 'he';

CSS

html {
  direction: rtl;
}

.uploadcare--dialog {
  direction: ltr;
}