jodit 4.11.4 → 4.11.6
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/CHANGELOG.md +16 -0
- package/es2015/jodit.css +17 -2
- package/es2015/jodit.fat.min.css +1 -1
- package/es2015/jodit.fat.min.js +14 -14
- package/es2015/jodit.js +64 -6
- package/es2015/jodit.min.css +1 -1
- package/es2015/jodit.min.js +3 -3
- package/es2015/plugins/debug/debug.css +1 -1
- package/es2015/plugins/debug/debug.js +1 -1
- package/es2015/plugins/debug/debug.min.js +1 -1
- package/es2015/plugins/speech-recognize/speech-recognize.css +1 -1
- package/es2015/plugins/speech-recognize/speech-recognize.js +1 -1
- package/es2015/plugins/speech-recognize/speech-recognize.min.js +1 -1
- package/es2018/jodit.fat.min.css +1 -1
- package/es2018/jodit.fat.min.js +3 -3
- package/es2018/jodit.min.css +1 -1
- package/es2018/jodit.min.js +14 -14
- package/es2018/plugins/debug/debug.min.js +1 -1
- package/es2018/plugins/speech-recognize/speech-recognize.min.js +1 -1
- package/es2021/jodit.css +17 -2
- package/es2021/jodit.fat.min.css +1 -1
- package/es2021/jodit.fat.min.js +3 -3
- package/es2021/jodit.js +64 -6
- package/es2021/jodit.min.css +1 -1
- package/es2021/jodit.min.js +3 -3
- package/es2021/plugins/debug/debug.css +1 -1
- package/es2021/plugins/debug/debug.js +1 -1
- package/es2021/plugins/debug/debug.min.js +1 -1
- package/es2021/plugins/speech-recognize/speech-recognize.css +1 -1
- package/es2021/plugins/speech-recognize/speech-recognize.js +1 -1
- package/es2021/plugins/speech-recognize/speech-recognize.min.js +1 -1
- package/es2021.en/jodit.css +17 -2
- package/es2021.en/jodit.fat.min.css +1 -1
- package/es2021.en/jodit.fat.min.js +4 -4
- package/es2021.en/jodit.js +64 -6
- package/es2021.en/jodit.min.css +1 -1
- package/es2021.en/jodit.min.js +3 -3
- package/es2021.en/plugins/debug/debug.css +1 -1
- package/es2021.en/plugins/debug/debug.js +1 -1
- package/es2021.en/plugins/debug/debug.min.js +1 -1
- package/es2021.en/plugins/speech-recognize/speech-recognize.css +1 -1
- package/es2021.en/plugins/speech-recognize/speech-recognize.js +1 -1
- package/es2021.en/plugins/speech-recognize/speech-recognize.min.js +1 -1
- package/es5/jodit.css +23 -3
- package/es5/jodit.fat.min.css +1 -1
- package/es5/jodit.fat.min.js +2 -2
- package/es5/jodit.js +76 -12
- package/es5/jodit.min.css +3 -3
- package/es5/jodit.min.js +2 -2
- package/es5/plugins/debug/debug.css +1 -1
- package/es5/plugins/debug/debug.js +1 -1
- package/es5/plugins/debug/debug.min.js +1 -1
- package/es5/plugins/speech-recognize/speech-recognize.css +1 -1
- package/es5/plugins/speech-recognize/speech-recognize.js +1 -1
- package/es5/plugins/speech-recognize/speech-recognize.min.js +1 -1
- package/es5/polyfills.fat.min.js +1 -1
- package/es5/polyfills.js +1 -1
- package/es5/polyfills.min.js +1 -1
- package/esm/core/constants.js +1 -1
- package/esm/core/ui/progress-bar/progress-bar.d.ts +9 -0
- package/esm/core/ui/progress-bar/progress-bar.js +53 -0
- package/esm/types/toolbar.d.ts +10 -0
- package/package.json +1 -1
- package/types/core/ui/progress-bar/progress-bar.d.ts +9 -0
- package/types/types/toolbar.d.ts +10 -0
package/CHANGELOG.md
CHANGED
|
@@ -9,6 +9,22 @@
|
|
|
9
9
|
> - :house: [Internal]
|
|
10
10
|
> - :nail_care: [Polish]
|
|
11
11
|
|
|
12
|
+
## 4.11.6
|
|
13
|
+
|
|
14
|
+
#### :house: Internal
|
|
15
|
+
|
|
16
|
+
- Release workflow now populates GitHub Release notes from CHANGELOG.md instead of relying on auto-generated notes
|
|
17
|
+
|
|
18
|
+
## 4.11.5
|
|
19
|
+
|
|
20
|
+
#### :rocket: New Feature
|
|
21
|
+
|
|
22
|
+
- `ProgressBar.showFileUploadAnimation(from?, to?)` — animated file icon that flies from a given point and fades out. Coordinates are relative to the editor container. Both `from` and `to` are optional with sensible defaults. The animation is automatically cleaned up on `destruct()`.
|
|
23
|
+
```js
|
|
24
|
+
const editor = Jodit.make('#editor')
|
|
25
|
+
jodit.progressbar.showFileUploadAnimation();
|
|
26
|
+
```
|
|
27
|
+
|
|
12
28
|
## 4.11.4
|
|
13
29
|
|
|
14
30
|
#### :boom: Breaking Change
|
package/es2015/jodit.css
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
/*!
|
|
2
2
|
* jodit - Jodit is an awesome and useful wysiwyg editor with filebrowser
|
|
3
3
|
* Author: Chupurnov <chupurnov@gmail.com> (https://xdsoft.net/jodit/)
|
|
4
|
-
* Version: v4.11.
|
|
4
|
+
* Version: v4.11.6
|
|
5
5
|
* Url: https://xdsoft.net/jodit/
|
|
6
6
|
* License(s): MIT
|
|
7
7
|
*/
|
|
@@ -1300,7 +1300,7 @@
|
|
|
1300
1300
|
}
|
|
1301
1301
|
.jodit-progress-bar {
|
|
1302
1302
|
position: absolute;
|
|
1303
|
-
z-index:
|
|
1303
|
+
z-index: var(--jd-z-index-tooltip);
|
|
1304
1304
|
top: 0;
|
|
1305
1305
|
left: 0;
|
|
1306
1306
|
height: 2px;
|
|
@@ -1336,6 +1336,21 @@
|
|
|
1336
1336
|
width: 20px;
|
|
1337
1337
|
clip: rect(-6px, 22px, 14px, var(--jd-padding-default));
|
|
1338
1338
|
}
|
|
1339
|
+
.jodit-progress-bar__file-animation {
|
|
1340
|
+
position: fixed;
|
|
1341
|
+
width: 32px;
|
|
1342
|
+
height: 32px;
|
|
1343
|
+
opacity: 0.8;
|
|
1344
|
+
pointer-events: none;
|
|
1345
|
+
z-index: 2147483647;
|
|
1346
|
+
transform: scale(1);
|
|
1347
|
+
transition: left 800ms ease-in, top 800ms ease-in, opacity 800ms ease-in, transform 800ms ease-in;
|
|
1348
|
+
}
|
|
1349
|
+
.jodit-progress-bar__file-animation svg {
|
|
1350
|
+
width: 100%;
|
|
1351
|
+
height: 100%;
|
|
1352
|
+
fill: var(--jd-color-background-progress);
|
|
1353
|
+
}
|
|
1339
1354
|
|
|
1340
1355
|
/*!
|
|
1341
1356
|
* Jodit Editor (https://xdsoft.net/jodit/)
|