js-draw 1.20.0 → 1.20.2
Sign up to get free protection for your applications and to get access to all the features.
- package/README.md +1 -1
- package/dist/Editor.css +3 -2
- package/dist/bundle.js +1 -1
- package/dist/bundledStyles.js +1 -1
- package/dist/cjs/toolbar/widgets/InsertImageWidget/index.js +4 -1
- package/dist/cjs/version.js +1 -1
- package/dist/mjs/toolbar/widgets/InsertImageWidget/index.mjs +4 -1
- package/dist/mjs/version.mjs +1 -1
- package/docs/img/readme-images/unsupported-elements--in-editor.png +0 -0
- package/package.json +2 -2
- package/src/toolbar/widgets/components/makeFileInput.scss +3 -2
package/README.md
CHANGED
@@ -172,7 +172,7 @@ For example, although `js-draw` doesn't support `<circle/>` elements,
|
|
172
172
|
```
|
173
173
|
renders as
|
174
174
|
|
175
|
-
|
175
|
+
<img alt="screenshot of the image editor, displaying a green checkmark. The circle is invisible" src="docs/img/readme-images/unsupported-elements--in-editor.png" width="600"/>
|
176
176
|
|
177
177
|
but exports to
|
178
178
|
```xml
|
package/dist/Editor.css
CHANGED
@@ -232,8 +232,9 @@
|
|
232
232
|
in srgb, var(--foreground-color-1), transparent
|
233
233
|
);
|
234
234
|
}
|
235
|
-
.toolbar-element .toolbar--file-input-container > label
|
236
|
-
|
235
|
+
.toolbar-element .toolbar--file-input-container > label .cancel-button {
|
236
|
+
padding-left: 3px;
|
237
|
+
padding-right: 3px;
|
237
238
|
}
|
238
239
|
.toolbar-element .toolbar--file-input-container > label > .toolbar--file-input-description {
|
239
240
|
background-color: var(--background-color-3);
|