@oliasoft-open-source/react-ui-library 4.1.10-beta-1 → 4.1.10-beta-2

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.
Files changed (32) hide show
  1. package/dist/index.js +4 -5
  2. package/dist/index.js.map +1 -1
  3. package/dist/storybook/assets/{Color-6VNJS4EI-58fc5434.js → Color-6VNJS4EI-af78e932.js} +1 -1
  4. package/dist/storybook/assets/{DocsRenderer-NNNQARDV-205a83c1.js → DocsRenderer-NNNQARDV-a38ee039.js} +1 -1
  5. package/dist/storybook/assets/{WithTooltip-4HIR6TLV-6d39c4c7.js → WithTooltip-4HIR6TLV-51fff697.js} +1 -1
  6. package/dist/storybook/assets/{accordion.stories-be3e5624.js → accordion.stories-5cd30e17.js} +1 -1
  7. package/dist/storybook/assets/{buttons-and-links-9f4b5063.js → buttons-and-links-1a4a35fc.js} +1 -1
  8. package/dist/storybook/assets/{casing-loads.stories-886fae94.js → casing-loads.stories-8295245b.js} +1 -1
  9. package/dist/storybook/assets/{cell.stories-f33ea7e2.js → cell.stories-5ae9d3e4.js} +1 -1
  10. package/dist/storybook/assets/{chunk-HLWAVYOI-64695eb6.js → chunk-HLWAVYOI-1e15c977.js} +1 -1
  11. package/dist/storybook/assets/{color-879e6723.js → color-0154d0d6.js} +1 -1
  12. package/dist/storybook/assets/{footer.stories-5b5aac14.js → footer.stories-ab358144.js} +1 -1
  13. package/dist/storybook/assets/{formation.stories-eca61e0d.js → formation.stories-4a785556.js} +1 -1
  14. package/dist/storybook/assets/{formatter-SWP5E3XI-df13ec72.js → formatter-SWP5E3XI-a5e21c9c.js} +1 -1
  15. package/dist/storybook/assets/{iframe-158fbbc7.js → iframe-14486f52.js} +1 -1
  16. package/dist/storybook/assets/{index-8ca56bf2.js → index-0e45c5fd.js} +4 -4
  17. package/dist/storybook/assets/{input-validation-16e610fb.js → input-validation-8864e3e1.js} +1 -1
  18. package/dist/storybook/assets/{inputs-68224f7c.js → inputs-29b185e1.js} +1 -1
  19. package/dist/storybook/assets/{layout-forms-323f657f.js → layout-forms-d352f78e.js} +1 -1
  20. package/dist/storybook/assets/{layout-general-da692e39.js → layout-general-4625cf0c.js} +1 -1
  21. package/dist/storybook/assets/{padding-and-spacing-7bc69b95.js → padding-and-spacing-cef2c36e.js} +1 -1
  22. package/dist/storybook/assets/preview-a74a20e2.js +1 -0
  23. package/dist/storybook/assets/{preview-1f43c96b.js → preview-ef7d661e.js} +1 -1
  24. package/dist/storybook/assets/{row.stories-b8528dc1.js → row.stories-b7cef4fe.js} +1 -1
  25. package/dist/storybook/assets/{syntaxhighlighter-NMPM6SWI-2d15899a.js → syntaxhighlighter-NMPM6SWI-54037e59.js} +1 -1
  26. package/dist/storybook/assets/{table-4012a516.js → table-3ce364b4.js} +1 -1
  27. package/dist/storybook/assets/{table.stories-c6cc6cda.js → table.stories-0a23ee2b.js} +1 -1
  28. package/dist/storybook/assets/{title.stories-6b74cf80.js → title.stories-8bc61482.js} +1 -1
  29. package/dist/storybook/iframe.html +1 -1
  30. package/dist/storybook/project.json +1 -1
  31. package/package.json +1 -1
  32. package/dist/storybook/assets/preview-f1b25bcd.js +0 -1
package/dist/index.js CHANGED
@@ -56332,11 +56332,10 @@ const Table = (props) => {
56332
56332
  const focusedElementRef = useRef(null);
56333
56333
  useEffect(() => {
56334
56334
  focusedElementRef.current = document.activeElement;
56335
- return () => {
56336
- if (focusedElementRef.current && document.body.contains(focusedElementRef.current)) {
56337
- focusedElementRef.current.focus();
56338
- }
56339
- };
56335
+ console.log(focusedElementRef == null ? void 0 : focusedElementRef.current);
56336
+ if (focusedElementRef.current && document.body.contains(focusedElementRef.current)) {
56337
+ focusedElementRef.current.focus();
56338
+ }
56340
56339
  }, [propRows]);
56341
56340
  useEffect(() => {
56342
56341
  if (targetRef.current) {