@oliasoft-open-source/react-ui-library 4.15.6-beta-3 → 4.15.6-beta-4

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.
package/dist/index.js CHANGED
@@ -20941,10 +20941,12 @@ const Trigger = ({
20941
20941
  ),
20942
20942
  onClick: (evt) => {
20943
20943
  evt.stopPropagation();
20944
- onClickTrigger(evt);
20945
- if (typeof setInputFocus === "function") {
20946
- setInputFocus();
20947
- }
20944
+ requestAnimationFrame(() => {
20945
+ onClickTrigger(evt);
20946
+ if (typeof setInputFocus === "function") {
20947
+ setInputFocus();
20948
+ }
20949
+ });
20948
20950
  },
20949
20951
  onFocus,
20950
20952
  onBlur,