@tldraw/tldraw 4.4.0-canary.ac3507ffc12d → 4.4.0-canary.afdcafe834b3

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.4.0-canary.ac3507ffc12d",
22
+ "4.4.0-canary.afdcafe834b3",
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.4.0-canary.ac3507ffc12d",
5
+ "4.4.0-canary.afdcafe834b3",
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.4.0-canary.ac3507ffc12d",
4
+ "version": "4.4.0-canary.afdcafe834b3",
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.4.0-canary.ac3507ffc12d"
51
+ "tldraw": "4.4.0-canary.afdcafe834b3"
52
52
  },
53
53
  "peerDependencies": {
54
54
  "react": "^18.2.0 || ^19.2.1",
package/tldraw.css CHANGED
@@ -64,7 +64,6 @@
64
64
 
65
65
  /* Misc */
66
66
  --tl-zoom: 1;
67
- --tl-tab-size: 2;
68
67
 
69
68
  /* Cursor SVGs */
70
69
  --tl-cursor-none: none;
@@ -900,10 +899,6 @@ input,
900
899
  /* white-space: break-spaces; */
901
900
  }
902
901
 
903
- .tl-rich-text {
904
- tab-size: var(--tl-tab-size, 2);
905
- }
906
-
907
902
  .tl-rich-text p {
908
903
  margin: 0;
909
904
  /* Depending on the extensions, <p> tags can be empty, without a <br />. */
@@ -2328,52 +2323,6 @@ it from receiving any pointer events or affecting the cursor. */
2328
2323
  }
2329
2324
  }
2330
2325
 
2331
- /* --------------------- Select --------------------- */
2332
-
2333
- /* Trigger extends .tlui-button with space-between layout */
2334
- .tlui-select__trigger {
2335
- justify-content: space-between;
2336
- gap: var(--tl-space-3);
2337
- }
2338
-
2339
- .tlui-select__trigger[data-state='open']::after {
2340
- opacity: 1;
2341
- }
2342
-
2343
- .tlui-select__value {
2344
- display: flex;
2345
- align-items: center;
2346
- gap: var(--tl-space-2);
2347
- }
2348
-
2349
- .tlui-select__chevron {
2350
- flex-shrink: 0;
2351
- color: var(--tl-color-text-2);
2352
- }
2353
-
2354
- /* Content extends .tlui-menu with Radix-aware sizing */
2355
- .tlui-select__content {
2356
- min-width: var(--radix-select-trigger-width);
2357
- max-height: var(--radix-select-content-available-height);
2358
- }
2359
-
2360
- .tlui-select__viewport {
2361
- padding: 4px 0;
2362
- }
2363
-
2364
- /* Item extends .tlui-button__checkbox with left-aligned text */
2365
- .tlui-select__item {
2366
- justify-content: flex-start;
2367
- }
2368
-
2369
- .tlui-select__item-indicator {
2370
- visibility: hidden;
2371
- }
2372
-
2373
- .tlui-select__item[data-state='checked'] .tlui-select__item-indicator {
2374
- visibility: visible;
2375
- }
2376
-
2377
2326
  /* ----------------------- Kbd ---------------------- */
2378
2327
 
2379
2328
  .tlui-kbd {