tiny-essentials 1.22.15 → 1.23.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/changelog/1/23/0.md +16 -0
- package/changelog/1/23/1.md +6 -0
- package/dist/v1/TinyEssentials.min.js +1 -1
- package/dist/v1/TinyLoadingScreen.min.js +1 -0
- package/dist/v1/build/TinyLoadingScreen.cjs +7 -0
- package/dist/v1/build/TinyLoadingScreen.d.mts +3 -0
- package/dist/v1/build/TinyLoadingScreen.mjs +2 -0
- package/dist/v1/css/TinyLoadingScreen.min.css +1 -0
- package/dist/v1/index.cjs +2 -0
- package/dist/v1/index.d.mts +2 -1
- package/dist/v1/index.mjs +2 -1
- package/dist/v1/libs/TinyHtml.cjs +18 -18
- package/dist/v1/libs/TinyLoadingScreen.cjs +365 -0
- package/dist/v1/libs/TinyLoadingScreen.d.mts +154 -0
- package/dist/v1/libs/TinyLoadingScreen.mjs +317 -0
- package/docs/v1/README.md +1 -0
- package/docs/v1/libs/TinyLoadingScreen.md +186 -0
- package/package.json +180 -2
|
@@ -0,0 +1,16 @@
|
|
|
1
|
+
### 🚀 What's New
|
|
2
|
+
|
|
3
|
+
* **✨ Added `TinyLoadingScreen`** — A new, lightweight and fully customizable loading overlay component!
|
|
4
|
+
|
|
5
|
+
* Supports `fadeIn` and `fadeOut` animations with configurable durations.
|
|
6
|
+
* Displays messages as strings or HTMLElements, with optional HTML rendering.
|
|
7
|
+
* Can be attached to any container or `document.body` by default.
|
|
8
|
+
* Exposes a handy `onChange` callback to track loading status: `'none'`, `'fadeIn'`, `'active'`, `'fadeOut'`.
|
|
9
|
+
* Provides a clean, flexible API for `start`, `update`, and `stop`.
|
|
10
|
+
|
|
11
|
+
### 📚 Notes
|
|
12
|
+
|
|
13
|
+
* `TinyLoadingScreen` is now included in the official Tiny Essentials suite and fully documented in `TinyLoadingScreen.md`.
|
|
14
|
+
* Recommended for any UI that requires smooth loading states with professional fade animations.
|
|
15
|
+
|
|
16
|
+
**Full Changelog**: https://github.com/JasminDreasond/Tiny-Essentials/compare/1.22.14...1.23.0
|
|
@@ -0,0 +1,6 @@
|
|
|
1
|
+
### ✨ Improvements in TinyLoadingScreen
|
|
2
|
+
|
|
3
|
+
* 🌀 **Customizable Center Slot** — The loading spinner now includes a **central empty spot**, allowing developers to easily place icons, logos, or any custom elements inside the spinner.
|
|
4
|
+
* 🎨 **Better Structure** — The spinner is now wrapped with a `loading-container`, making it cleaner and easier to style.
|
|
5
|
+
|
|
6
|
+
**Full Changelog**: https://github.com/JasminDreasond/Tiny-Essentials/compare/1.23.0...1.23.1
|