@tldraw/tldraw 4.2.0-next.f100cedfc45b → 4.3.0-canary.d8da2a99f394

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.2.0-next.f100cedfc45b",
22
+ "4.3.0-canary.d8da2a99f394",
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.2.0-next.f100cedfc45b",
5
+ "4.3.0-canary.d8da2a99f394",
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.2.0-next.f100cedfc45b",
4
+ "version": "4.3.0-canary.d8da2a99f394",
5
5
  "author": {
6
6
  "name": "tldraw Inc.",
7
7
  "email": "hello@tldraw.com"
@@ -48,7 +48,7 @@
48
48
  "src"
49
49
  ],
50
50
  "dependencies": {
51
- "tldraw": "4.2.0-next.f100cedfc45b"
51
+ "tldraw": "4.3.0-canary.d8da2a99f394"
52
52
  },
53
53
  "peerDependencies": {
54
54
  "react": "^18.2.0 || ^19.0.0",
package/tldraw.css CHANGED
@@ -2315,12 +2315,10 @@ it from receiving any pointer events or affecting the cursor. */
2315
2315
  /* If mobile use 16px as font size */
2316
2316
  /* On iOS, font size under 16px in an input will make the page zoom into the input 🤦‍♂️ */
2317
2317
  /* https://css-tricks.com/16px-or-larger-text-prevents-ios-form-zoom/ */
2318
- @media (max-width: 600px) {
2319
- @supports (-webkit-touch-callout: none) {
2320
- /* CSS specific to iOS devices */
2321
- .tlui-input {
2322
- font-size: 16px;
2323
- }
2318
+ @supports (-webkit-touch-callout: none) {
2319
+ /* CSS specific to iOS devices */
2320
+ .tlui-input {
2321
+ font-size: 16px;
2324
2322
  }
2325
2323
  }
2326
2324