@tldraw/tldraw 5.4.0-next.b120f7febb0f → 5.4.0-next.ebc95cf01337
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 +7 -16
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.4.0-next.
|
|
22
|
+
"5.4.0-next.ebc95cf01337",
|
|
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.4.0-next.
|
|
4
|
+
"version": "5.4.0-next.ebc95cf01337",
|
|
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.4.0-next.
|
|
50
|
+
"tldraw": "5.4.0-next.ebc95cf01337"
|
|
51
51
|
},
|
|
52
52
|
"peerDependencies": {
|
|
53
53
|
"react": "^18.2.0 || ^19.2.1",
|
package/tldraw.css
CHANGED
|
@@ -3726,7 +3726,8 @@ tldraw? probably.
|
|
|
3726
3726
|
align-items: center;
|
|
3727
3727
|
}
|
|
3728
3728
|
|
|
3729
|
-
.tlui-people-menu__user__color
|
|
3729
|
+
.tlui-people-menu__user__color,
|
|
3730
|
+
.tlui-people-menu__user__edit {
|
|
3730
3731
|
flex-shrink: 0;
|
|
3731
3732
|
}
|
|
3732
3733
|
|
|
@@ -3772,7 +3773,8 @@ tldraw? probably.
|
|
|
3772
3773
|
}
|
|
3773
3774
|
|
|
3774
3775
|
.tlui-people-menu__item {
|
|
3775
|
-
|
|
3776
|
+
display: flex;
|
|
3777
|
+
align-items: center;
|
|
3776
3778
|
}
|
|
3777
3779
|
|
|
3778
3780
|
.tlui-people-menu__item:last-of-type .tlui-button__menu {
|
|
@@ -3780,7 +3782,8 @@ tldraw? probably.
|
|
|
3780
3782
|
}
|
|
3781
3783
|
|
|
3782
3784
|
.tlui-people-menu__item__button {
|
|
3783
|
-
padding:
|
|
3785
|
+
padding-inline-start: 12px;
|
|
3786
|
+
padding-inline-end: 0px;
|
|
3784
3787
|
overflow: hidden;
|
|
3785
3788
|
}
|
|
3786
3789
|
|
|
@@ -3790,7 +3793,7 @@ tldraw? probably.
|
|
|
3790
3793
|
align-items: auto;
|
|
3791
3794
|
justify-content: flex-start;
|
|
3792
3795
|
flex-grow: 2;
|
|
3793
|
-
gap:
|
|
3796
|
+
gap: 12px;
|
|
3794
3797
|
}
|
|
3795
3798
|
|
|
3796
3799
|
.tlui-people-menu__name {
|
|
@@ -3801,18 +3804,9 @@ tldraw? probably.
|
|
|
3801
3804
|
}
|
|
3802
3805
|
|
|
3803
3806
|
.tlui-people-menu__item__follow {
|
|
3804
|
-
position: absolute;
|
|
3805
|
-
top: 0px;
|
|
3806
|
-
inset-inline-end: 0px;
|
|
3807
|
-
max-width: 40px;
|
|
3808
3807
|
flex-shrink: 0;
|
|
3809
3808
|
}
|
|
3810
3809
|
|
|
3811
|
-
.tlui-people-menu__item[data-follow='true'],
|
|
3812
|
-
.tlui-people-menu__item:has(.tlui-button:focus-visible) {
|
|
3813
|
-
padding-inline-end: 36px;
|
|
3814
|
-
}
|
|
3815
|
-
|
|
3816
3810
|
.tlui-people-menu__item[data-follow='true'] .tlui-people-menu__item__follow,
|
|
3817
3811
|
.tlui-people-menu__item:has(.tlui-button:focus-visible) .tlui-people-menu__item__follow {
|
|
3818
3812
|
opacity: 1;
|
|
@@ -3823,9 +3817,6 @@ tldraw? probably.
|
|
|
3823
3817
|
opacity: 0;
|
|
3824
3818
|
}
|
|
3825
3819
|
|
|
3826
|
-
.tlui-people-menu__item:hover {
|
|
3827
|
-
padding-right: 36px;
|
|
3828
|
-
}
|
|
3829
3820
|
.tlui-people-menu__item:hover .tlui-people-menu__item__follow {
|
|
3830
3821
|
opacity: 1;
|
|
3831
3822
|
}
|