rita-workspace 0.5.32 → 0.5.33

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
@@ -1881,7 +1881,8 @@ var DrawingsDialog = ({
1881
1881
  gap: "12px",
1882
1882
  borderRadius: "8px",
1883
1883
  marginBottom: "4px",
1884
- cursor: draggingDrawingId ? "grabbing" : "pointer",
1884
+ userSelect: "none",
1885
+ cursor: draggingDrawingId ? "grabbing" : "grab",
1885
1886
  backgroundColor: activeDrawing?.id === drawing.id ? "var(--color-primary-light, rgba(108, 99, 255, 0.1))" : selectedId === drawing.id ? "var(--color-primary-light, rgba(108, 99, 255, 0.06))" : "transparent",
1886
1887
  border: selectedId === drawing.id && activeDrawing?.id !== drawing.id ? "1px solid var(--color-primary, #6c63ff)" : "1px solid transparent",
1887
1888
  transition: "background-color 0.15s, border-color 0.15s",
@@ -1960,7 +1961,7 @@ var DrawingsDialog = ({
1960
1961
  overflow: "hidden",
1961
1962
  textOverflow: "ellipsis",
1962
1963
  whiteSpace: "nowrap",
1963
- cursor: "text"
1964
+ cursor: "pointer"
1964
1965
  },
1965
1966
  title: t.rename,
1966
1967
  children: [
package/dist/index.mjs CHANGED
@@ -1810,7 +1810,8 @@ var DrawingsDialog = ({
1810
1810
  gap: "12px",
1811
1811
  borderRadius: "8px",
1812
1812
  marginBottom: "4px",
1813
- cursor: draggingDrawingId ? "grabbing" : "pointer",
1813
+ userSelect: "none",
1814
+ cursor: draggingDrawingId ? "grabbing" : "grab",
1814
1815
  backgroundColor: activeDrawing?.id === drawing.id ? "var(--color-primary-light, rgba(108, 99, 255, 0.1))" : selectedId === drawing.id ? "var(--color-primary-light, rgba(108, 99, 255, 0.06))" : "transparent",
1815
1816
  border: selectedId === drawing.id && activeDrawing?.id !== drawing.id ? "1px solid var(--color-primary, #6c63ff)" : "1px solid transparent",
1816
1817
  transition: "background-color 0.15s, border-color 0.15s",
@@ -1889,7 +1890,7 @@ var DrawingsDialog = ({
1889
1890
  overflow: "hidden",
1890
1891
  textOverflow: "ellipsis",
1891
1892
  whiteSpace: "nowrap",
1892
- cursor: "text"
1893
+ cursor: "pointer"
1893
1894
  },
1894
1895
  title: t.rename,
1895
1896
  children: [
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "rita-workspace",
3
- "version": "0.5.32",
3
+ "version": "0.5.33",
4
4
  "description": "Multi-drawing workspace feature for Rita (Excalidraw fork)",
5
5
  "main": "dist/index.js",
6
6
  "module": "dist/index.mjs",