jclib-ui 1.0.221 → 1.0.223

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.
@@ -3953,6 +3953,8 @@ const LibProvider = ({ apiConfig, children, versionApp, useTheme }) => {
3953
3953
  [modalList]
3954
3954
  );
3955
3955
  const toggleTheme = () => setTheme(theme == "dark" ? "light" : "dark");
3956
+ useEffect(() => {
3957
+ }, []);
3956
3958
  useEffect(() => {
3957
3959
  if (canChangeTheme) {
3958
3960
  localStorage.setItem(cTheme, theme);
@@ -4297,6 +4299,7 @@ const TableContainer = styled.table`
4297
4299
  .acoes {
4298
4300
  text-align: right !important;
4299
4301
  white-space: nowrap;
4302
+ cursor: default;
4300
4303
 
4301
4304
  .acoes-layout {
4302
4305
  display: flex;
@@ -4310,6 +4313,7 @@ const TableContainer = styled.table`
4310
4313
  display: inline-flex;
4311
4314
  align-items: center;
4312
4315
  justify-content: center;
4316
+ cursor: pointer;
4313
4317
  }
4314
4318
  }
4315
4319
  }