@moriajs/ui 0.4.1 → 0.4.3

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.
@@ -1,4 +1,4 @@
1
1
 
2
- > @moriajs/ui@0.4.1 build C:\Codes\node\2026\github\moriajs\packages\ui
2
+ > @moriajs/ui@0.4.3 build C:\Codes\node\2026\github\moriajs\packages\ui
3
3
  > tsc
4
4
 
package/README.md ADDED
@@ -0,0 +1,18 @@
1
+ # @moriajs/ui
2
+
3
+ A collection of premium UI components for MoriaJS apps.
4
+
5
+ ## Components
6
+
7
+ - **Toast**: Beautiful notifications (`toast`, `Toaster`).
8
+ - **Modal**: Interactive modal dialogs with smooth animations.
9
+ - **MoriaUI**: Aggregate export for easy discovery.
10
+
11
+ ## Usage
12
+
13
+ ```ts
14
+ import { MoriaUI } from '@moriajs/ui';
15
+
16
+ // In your Mithril component
17
+ m(MoriaUI.Modal, { title: 'Hello' }, 'World');
18
+ ```
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@moriajs/ui",
3
- "version": "0.4.1",
3
+ "version": "0.4.3",
4
4
  "type": "module",
5
5
  "description": "MoriaJS UI — Toaster, modals, and component primitives for Mithril.js",
6
6
  "main": "./dist/index.js",