eleva 1.2.7-alpha → 1.2.9-alpha

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/LICENSE CHANGED
@@ -1,6 +1,6 @@
1
1
  MIT License
2
2
 
3
- Copyright (c) 2024 Tarek
3
+ Copyright (c) 2025 Eleva
4
4
 
5
5
  Permission is hereby granted, free of charge, to any person obtaining a copy
6
6
  of this software and associated documentation files (the "Software"), to deal
package/README.md CHANGED
@@ -29,10 +29,10 @@ Pure JavaScript, Pure Performance, Simply Elegant.
29
29
  **A minimalist, lightweight, pure vanilla JavaScript frontend runtime framework.**
30
30
  _Built with love for native JavaScript—because sometimes, less really is more!_ 😊
31
31
 
32
- > **Stability Notice**: This is `v1.2.7-alpha` - The core functionality is stable, but I'm seeking community feedback before the final v1.0.0 release.
32
+ > **Stability Notice**: This is `v1.2.9-alpha` - The core functionality is stable, but I'm seeking community feedback before the final v1.0.0 release.
33
33
  > While suitable for production use, please be aware of the [known limitations](docs/known-limitations.md).
34
34
 
35
- **Version:** `1.2.7-alpha`
35
+ **Version:** `1.2.9-alpha`
36
36
 
37
37
 
38
38
 
@@ -223,7 +223,7 @@ or
223
223
 
224
224
  ```html
225
225
  <!-- unpkg -->
226
- <script src="https://unpkg.com/eleva/dist/eleva.min.js"></script>
226
+ <script src="https://unpkg.com/eleva"></script>
227
227
  ```
228
228
 
229
229
  ---
@@ -345,8 +345,7 @@ Interactive Demo: [CodePen](https://codepen.io/tarekraafat/pen/jEOyzYN?editors=1
345
345
  - **`.component(name, definition)`**
346
346
  Register a component.
347
347
  - **`.mount(container, compName, props)`**
348
- Mount a component to the DOM.
349
- _Note:_ The mounting context now includes an `emitter` property (the full event emitter instance) for simplified event handling. Use `context.emitter.on(...)` and `context.emitter.emit(...)` for event management.
348
+ Mount a component to the DOM.
350
349
 
351
350
  For detailed API documentation, please check the [docs](docs/index.md) folder.
352
351