@tldraw/tldraw 4.6.0-next.0eb36d65eec3 → 4.6.0-next.27ab3f52b386
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 +1 -1
- package/dist-esm/index.mjs +1 -1
- package/package.json +3 -3
- package/tldraw.css +13 -0
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.
|
|
22
|
+
"4.6.0-next.27ab3f52b386",
|
|
23
23
|
"cjs"
|
|
24
24
|
);
|
|
25
25
|
//# sourceMappingURL=index.js.map
|
package/dist-esm/index.mjs
CHANGED
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.
|
|
4
|
+
"version": "4.6.0-next.27ab3f52b386",
|
|
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": "
|
|
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.
|
|
50
|
+
"tldraw": "4.6.0-next.27ab3f52b386"
|
|
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 {
|