@tldraw/tldraw 5.2.0-canary.ff28a605ed08 → 5.2.0-next.1f1ecb7994d5
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 +2 -2
- package/tldraw.css +8 -3
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
|
-
"5.2.0-
|
|
22
|
+
"5.2.0-next.1f1ecb7994d5",
|
|
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": "5.2.0-
|
|
4
|
+
"version": "5.2.0-next.1f1ecb7994d5",
|
|
5
5
|
"author": {
|
|
6
6
|
"name": "tldraw Inc.",
|
|
7
7
|
"email": "hello@tldraw.com"
|
|
@@ -47,7 +47,7 @@
|
|
|
47
47
|
"src"
|
|
48
48
|
],
|
|
49
49
|
"dependencies": {
|
|
50
|
-
"tldraw": "5.2.0-
|
|
50
|
+
"tldraw": "5.2.0-next.1f1ecb7994d5"
|
|
51
51
|
},
|
|
52
52
|
"peerDependencies": {
|
|
53
53
|
"react": "^18.2.0 || ^19.2.1",
|
package/tldraw.css
CHANGED
|
@@ -768,17 +768,17 @@ input,
|
|
|
768
768
|
.tl-rich-text ol {
|
|
769
769
|
text-align: left;
|
|
770
770
|
margin: 0;
|
|
771
|
-
padding-left:
|
|
771
|
+
padding-left: 1.625ch;
|
|
772
772
|
/* Some resets, like Tailwind, nix the list styling. */
|
|
773
773
|
list-style: revert;
|
|
774
774
|
}
|
|
775
775
|
|
|
776
776
|
.tl-rich-text ol:has(> li:nth-child(10)) {
|
|
777
|
-
padding-left:
|
|
777
|
+
padding-left: 2.625ch;
|
|
778
778
|
}
|
|
779
779
|
|
|
780
780
|
.tl-rich-text ol:has(> li:nth-child(100)) {
|
|
781
|
-
padding-left:
|
|
781
|
+
padding-left: 3.625ch;
|
|
782
782
|
}
|
|
783
783
|
|
|
784
784
|
.tl-rich-text h1,
|
|
@@ -1991,6 +1991,11 @@ it from receiving any pointer events or affecting the cursor. */
|
|
|
1991
1991
|
height: 15px;
|
|
1992
1992
|
}
|
|
1993
1993
|
|
|
1994
|
+
.tlui-icon__tiny {
|
|
1995
|
+
width: 12px;
|
|
1996
|
+
height: 12px;
|
|
1997
|
+
}
|
|
1998
|
+
|
|
1994
1999
|
/* --------------------- Slider --------------------- */
|
|
1995
2000
|
|
|
1996
2001
|
.tlui-slider__container {
|