@tldraw/tldraw 4.6.0-next.1f489710ee41 → 4.6.0-next.4dde09fa17ab

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-cjs/index.js CHANGED
@@ -19,7 +19,7 @@ var import_tldraw = require("tldraw");
19
19
  __reExport(index_exports, require("tldraw"), module.exports);
20
20
  (0, import_tldraw.registerTldrawLibraryVersion)(
21
21
  "@tldraw/tldraw",
22
- "4.6.0-next.1f489710ee41",
22
+ "4.6.0-next.4dde09fa17ab",
23
23
  "cjs"
24
24
  );
25
25
  //# sourceMappingURL=index.js.map
@@ -2,7 +2,7 @@ import { registerTldrawLibraryVersion } from "tldraw";
2
2
  export * from "tldraw";
3
3
  registerTldrawLibraryVersion(
4
4
  "@tldraw/tldraw",
5
- "4.6.0-next.1f489710ee41",
5
+ "4.6.0-next.4dde09fa17ab",
6
6
  "esm"
7
7
  );
8
8
  //# sourceMappingURL=index.mjs.map
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@tldraw/tldraw",
3
3
  "description": "A tiny little drawing editor.",
4
- "version": "4.6.0-next.1f489710ee41",
4
+ "version": "4.6.0-next.4dde09fa17ab",
5
5
  "author": {
6
6
  "name": "tldraw Inc.",
7
7
  "email": "hello@tldraw.com"
@@ -38,7 +38,7 @@
38
38
  "prepack": "yarn run -T tsx ../../internal/scripts/prepack.ts",
39
39
  "postpack": "../../internal/scripts/postpack.sh",
40
40
  "pack-tarball": "yarn pack",
41
- "lint": "cd ../.. && yarn run -T oxlint packages/namespaced-tldraw"
41
+ "lint": "yarn run -T tsx ../../internal/scripts/lint.ts"
42
42
  },
43
43
  "files": [
44
44
  "tldraw.css",
@@ -47,7 +47,7 @@
47
47
  "src"
48
48
  ],
49
49
  "dependencies": {
50
- "tldraw": "4.6.0-next.1f489710ee41"
50
+ "tldraw": "4.6.0-next.4dde09fa17ab"
51
51
  },
52
52
  "peerDependencies": {
53
53
  "react": "^18.2.0 || ^19.2.1",
package/tldraw.css CHANGED
@@ -1482,6 +1482,19 @@ input,
1482
1482
  color: currentColor;
1483
1483
  }
1484
1484
 
1485
+ .tl-note__attribution {
1486
+ position: absolute;
1487
+ bottom: calc(4px * var(--note-attribution-scale, 1));
1488
+ right: calc(8px * var(--note-attribution-scale, 1));
1489
+ font-family: var(--tl-font-sans);
1490
+ pointer-events: auto;
1491
+ white-space: nowrap;
1492
+ overflow: hidden;
1493
+ text-overflow: ellipsis;
1494
+ max-width: 60%;
1495
+ z-index: 1;
1496
+ }
1497
+
1485
1498
  /* ------------------- Frame shape ------------------- */
1486
1499
 
1487
1500
  .tl-frame__body {
@@ -2841,6 +2854,14 @@ it from receiving any pointer events or affecting the cursor. */
2841
2854
  left: 8px;
2842
2855
  }
2843
2856
 
2857
+ /*
2858
+ * focusing skip-to-main-content hide top ui buttons to make sure we avoid
2859
+ * z-index clashes on hover (see issue #8328)
2860
+ */
2861
+ .tl-skip-to-main-content:focus + .tlui-layout__top .tlui-helper-buttons {
2862
+ display: none;
2863
+ }
2864
+
2844
2865
  /* ---------------- Offline indicator --------------- */
2845
2866
 
2846
2867
  .tlui-offline-indicator {