@tldraw/tldraw 5.2.0-next.79b13319d317 → 5.2.0-next.7b677d60c152

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/README.md CHANGED
@@ -2,6 +2,12 @@
2
2
 
3
3
  This package is kept around for legacy purposes. It just tracks the normal `tldraw` package. Please install that one instead.
4
4
 
5
+ ## Documentation
6
+
7
+ Documentation for the most recent release can be found on [tldraw.dev/docs](https://tldraw.dev/docs), including [reference docs](https://tldraw.dev/reference/editor/Editor). Our release notes can be found [here](https://tldraw.dev/releases).
8
+
9
+ For more agent-friendly docs, see our [LLMs.txt](https://tldraw.dev/llms.txt).
10
+
5
11
  ## License
6
12
 
7
13
  This project is part of the tldraw SDK. It is provided under the [tldraw SDK license](https://github.com/tldraw/tldraw/blob/main/LICENSE.md).
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-next.79b13319d317",
22
+ "5.2.0-next.7b677d60c152",
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
- "5.2.0-next.79b13319d317",
5
+ "5.2.0-next.7b677d60c152",
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": "5.2.0-next.79b13319d317",
4
+ "version": "5.2.0-next.7b677d60c152",
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-next.79b13319d317"
50
+ "tldraw": "5.2.0-next.7b677d60c152"
51
51
  },
52
52
  "peerDependencies": {
53
53
  "react": "^18.2.0 || ^19.2.1",
@@ -61,6 +61,9 @@
61
61
  "react": "^19.2.1",
62
62
  "react-dom": "^19.2.1"
63
63
  },
64
+ "engines": {
65
+ "node": ">=22.12.0"
66
+ },
64
67
  "module": "dist-esm/index.mjs",
65
68
  "source": "src/index.ts",
66
69
  "exports": {
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: 3.25ch;
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: 4.25ch;
777
+ padding-left: 2.625ch;
778
778
  }
779
779
 
780
780
  .tl-rich-text ol:has(> li:nth-child(100)) {
781
- padding-left: 5.25ch;
781
+ padding-left: 3.625ch;
782
782
  }
783
783
 
784
784
  .tl-rich-text h1,
@@ -817,6 +817,7 @@ input,
817
817
  .tl-theme__dark .tl-rich-text mark {
818
818
  background-color: var(--tl-color-text-highlight);
819
819
  color: currentColor;
820
+ text-shadow: none;
820
821
  }
821
822
 
822
823
  @supports (color: color(display-p3 1 1 1)) {
@@ -989,6 +990,15 @@ input,
989
990
  color: var(--tl-color-text-1);
990
991
  }
991
992
 
993
+ .tl-content-slot {
994
+ position: absolute;
995
+ inset: 0px;
996
+ height: 100%;
997
+ width: 100%;
998
+ pointer-events: none;
999
+ transform-origin: top left;
1000
+ }
1001
+
992
1002
  /* -------------------- Group shape ------------------ */
993
1003
 
994
1004
  .tl-group {
@@ -1575,9 +1585,8 @@ it from receiving any pointer events or affecting the cursor. */
1575
1585
  * (which creates its own stacking context at z-index 300), so their
1576
1586
  * z-indices are relative to the layout, not the container.
1577
1587
  *
1578
- * cursor and following-indicator are rendered inside canvas-in-front
1579
- * (stacking context at z-index 250), so their z-indices are relative
1580
- * to that context.
1588
+ * cursor is rendered inside canvas-in-front (stacking context at
1589
+ * z-index 250), so their z-indices are relative to that context.
1581
1590
  */
1582
1591
  --tl-layer-above: 1;
1583
1592
  --tl-layer-focused-input: 10;
@@ -1587,7 +1596,6 @@ it from receiving any pointer events or affecting the cursor. */
1587
1596
  --tl-layer-toasts: 650;
1588
1597
  --tl-layer-cursor: 700;
1589
1598
  --tl-layer-header-footer: 999;
1590
- --tl-layer-following-indicator: 1000;
1591
1599
  }
1592
1600
 
1593
1601
  /* Button */
@@ -1993,6 +2001,11 @@ it from receiving any pointer events or affecting the cursor. */
1993
2001
  height: 15px;
1994
2002
  }
1995
2003
 
2004
+ .tlui-icon__tiny {
2005
+ width: 12px;
2006
+ height: 12px;
2007
+ }
2008
+
1996
2009
  /* --------------------- Slider --------------------- */
1997
2010
 
1998
2011
  .tlui-slider__container {
@@ -2606,7 +2619,7 @@ it from receiving any pointer events or affecting the cursor. */
2606
2619
  left: 8px;
2607
2620
  }
2608
2621
 
2609
- /*
2622
+ /*
2610
2623
  * focusing skip-to-main-content hide top ui buttons to make sure we avoid
2611
2624
  * z-index clashes on hover (see issue #8328)
2612
2625
  */
@@ -3253,8 +3266,17 @@ tldraw? probably.
3253
3266
  height: 100%;
3254
3267
  z-index: var(--tl-layer-canvas-overlays);
3255
3268
  background-color: var(--tl-color-overlay);
3256
- pointer-events: all;
3257
3269
  animation: tl-fade-in 0.12s ease-out;
3270
+ }
3271
+
3272
+ .tlui-dialog__positioner {
3273
+ position: absolute;
3274
+ top: 0px;
3275
+ left: 0px;
3276
+ width: 100%;
3277
+ height: 100%;
3278
+ z-index: var(--tl-layer-canvas-overlays);
3279
+ pointer-events: all;
3258
3280
  display: grid;
3259
3281
  place-items: center;
3260
3282
  overflow-y: auto;
@@ -3744,7 +3766,6 @@ tldraw? probably.
3744
3766
  inset: 0px;
3745
3767
  border-width: 2px;
3746
3768
  border-style: solid;
3747
- z-index: var(--tl-layer-following-indicator);
3748
3769
  pointer-events: none;
3749
3770
  }
3750
3771