js-draw 1.16.0 → 1.16.1
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/Editor.css +11 -0
- package/dist/bundle.js +1 -1
- package/dist/bundledStyles.js +1 -1
- package/dist/cjs/Editor.d.ts +4 -1
- package/dist/cjs/Editor.js +25 -2
- package/dist/cjs/tools/PasteHandler.js +4 -0
- package/dist/cjs/version.js +1 -1
- package/dist/mjs/Editor.d.ts +4 -1
- package/dist/mjs/Editor.mjs +25 -2
- package/dist/mjs/tools/PasteHandler.mjs +4 -0
- package/dist/mjs/version.mjs +1 -1
- package/package.json +2 -2
- package/src/Editor.scss +10 -0
- package/src/toolbar/EdgeToolbar.scss +2 -0
- package/src/tools/SoundUITool.scss +4 -1
package/dist/Editor.css
CHANGED
@@ -933,6 +933,7 @@
|
|
933
933
|
--toolbar-button-height: 48px;
|
934
934
|
touch-action: none;
|
935
935
|
user-select: none;
|
936
|
+
-webkit-user-select: none;
|
936
937
|
background-color: var(--background-color-2);
|
937
938
|
color: var(--foreground-color-2);
|
938
939
|
--icon-color: var(--foreground-color-2);
|
@@ -947,6 +948,7 @@
|
|
947
948
|
}
|
948
949
|
.toolbar-edgemenu-container .toolbar-edgemenu input, .toolbar-edgemenu-container .toolbar-edgemenu textarea {
|
949
950
|
user-select: auto;
|
951
|
+
-webkit-user-select: auto;
|
950
952
|
}
|
951
953
|
.toolbar-edgemenu-container .toolbar-edgemenu .toolbar-toolContainer {
|
952
954
|
display: inline-block;
|
@@ -1468,6 +1470,8 @@
|
|
1468
1470
|
width: 0px;
|
1469
1471
|
height: 0px;
|
1470
1472
|
overflow: hidden;
|
1473
|
+
user-select: none;
|
1474
|
+
-webkit-user-select: none;
|
1471
1475
|
}
|
1472
1476
|
|
1473
1477
|
.js-draw-sound-ui-toggle button {
|
@@ -1664,6 +1668,9 @@ visible.
|
|
1664
1668
|
max-width: inherit;
|
1665
1669
|
min-height: 0px;
|
1666
1670
|
max-height: inherit;
|
1671
|
+
user-select: none;
|
1672
|
+
-webkit-user-select: none;
|
1673
|
+
-webkit-user-drag: none;
|
1667
1674
|
}
|
1668
1675
|
|
1669
1676
|
.imageEditorContainer .loadingMessage {
|
@@ -1682,12 +1689,16 @@ visible.
|
|
1682
1689
|
height: 0;
|
1683
1690
|
overflow: hidden;
|
1684
1691
|
pointer-events: none;
|
1692
|
+
user-select: none;
|
1693
|
+
-webkit-user-select: none;
|
1685
1694
|
}
|
1686
1695
|
|
1687
1696
|
.imageEditorContainer .textRendererOutputContainer {
|
1688
1697
|
width: 0.001px;
|
1689
1698
|
height: 0.001px;
|
1690
1699
|
overflow: hidden;
|
1700
|
+
-webkit-user-select: none;
|
1701
|
+
user-select: none;
|
1691
1702
|
}
|
1692
1703
|
|
1693
1704
|
.imageEditorContainer .textRendererOutputContainer:focus-within {
|