juice-toast 1.4.4-fr.1 → 1.4.4
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/API.md +15 -0
- package/CHANGELOG.md +7 -2
- package/README.md +6 -1
- package/package.json +1 -1
package/API.md
CHANGED
|
@@ -311,6 +311,21 @@ juiceToast.success({
|
|
|
311
311
|
});
|
|
312
312
|
```
|
|
313
313
|
|
|
314
|
+
# Urgent Skip Queue
|
|
315
|
+
```js
|
|
316
|
+
juiceToast.setup({
|
|
317
|
+
urgentSkipsQueue: true
|
|
318
|
+
});
|
|
319
|
+
```
|
|
320
|
+
|
|
321
|
+
# Utility
|
|
322
|
+
```js
|
|
323
|
+
juiceToast.pauseAll();
|
|
324
|
+
juiceToast.resumeAll();
|
|
325
|
+
juiceToast.dismissAll();
|
|
326
|
+
juiceToast.listActive(filter);
|
|
327
|
+
```
|
|
328
|
+
|
|
314
329
|
---
|
|
315
330
|
|
|
316
331
|
# License
|
package/CHANGELOG.md
CHANGED
|
@@ -1,9 +1,14 @@
|
|
|
1
|
-
## v1.4.
|
|
1
|
+
## v1.4.4 (Stable)
|
|
2
|
+
- Fix priority queue
|
|
3
|
+
- Reduce memory leak's
|
|
4
|
+
- Fix documentation
|
|
5
|
+
|
|
6
|
+
v1.4.3 LTS / v1.4.4 (Final)
|
|
2
7
|
- Fix priority queue
|
|
3
8
|
- Fix Promise
|
|
4
9
|
- Adding `urgentSkipsQueue`
|
|
5
10
|
|
|
6
|
-
|
|
11
|
+
v1.4.4 Pack 1 (Beta 2)
|
|
7
12
|
- Fix Parallax, 3D Mode, Promise, & Toast Animation
|
|
8
13
|
- Adding `pauseAll()`, `resumeAll()` & `listActive(filter)`
|
|
9
14
|
- Fix RAF
|
package/README.md
CHANGED
|
@@ -327,6 +327,10 @@ juiceToast.setup({
|
|
|
327
327
|
```js
|
|
328
328
|
juiceToast.clear(); // Clear queue
|
|
329
329
|
juiceToast.destroy(); // Remove all toast roots
|
|
330
|
+
juiceToast.pauseAll(); // Pause all toast
|
|
331
|
+
juiceToast.resumeAll(); // Resume all toast
|
|
332
|
+
juiceToast.dismissAll(); // Dismiss all toast
|
|
333
|
+
juiceToast.listActive(filter); // See all active toast
|
|
330
334
|
```
|
|
331
335
|
|
|
332
336
|
## Modal
|
|
@@ -362,7 +366,6 @@ juiceToast.modal({
|
|
|
362
366
|
| Avatar Support | ✅ | ❌ | ❌ |
|
|
363
367
|
| Custom Themes | ✅ | ✅ | Limited |
|
|
364
368
|
| Modal Support | ✅ | ✅ | ❌ |
|
|
365
|
-
| Designed for Toast Only | ✅ | ❌ (modal-focused) | ✅ |
|
|
366
369
|
|
|
367
370
|
### Compared to SweetAlert2
|
|
368
371
|
|
|
@@ -423,3 +426,5 @@ JuiceToast gives you:
|
|
|
423
426
|
- Advanced control
|
|
424
427
|
- Performance focus
|
|
425
428
|
- Clean modern UI
|
|
429
|
+
|
|
430
|
+
:)
|
package/package.json
CHANGED