zuii 0.0.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.
Files changed (4) hide show
  1. package/LICENSE +21 -0
  2. package/README.md +32 -0
  3. package/ROADMAP.md +45 -0
  4. package/package.json +12 -0
package/LICENSE ADDED
@@ -0,0 +1,21 @@
1
+ MIT License
2
+
3
+ Copyright (c) 2026 macvincent
4
+
5
+ Permission is hereby granted, free of charge, to any person obtaining a copy
6
+ of this software and associated documentation files (the "Software"), to deal
7
+ in the Software without restriction, including without limitation the rights
8
+ to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
9
+ copies of the Software, and to permit persons to whom the Software is
10
+ furnished to do so, subject to the following conditions:
11
+
12
+ The above copyright notice and this permission notice shall be included in all
13
+ copies or substantial portions of the Software.
14
+
15
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
16
+ IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
17
+ FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
18
+ AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
19
+ LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
20
+ OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
21
+ SOFTWARE.
package/README.md ADDED
@@ -0,0 +1,32 @@
1
+ # zuii
2
+
3
+ > Une boîte à outils UI légère, intuitive et modulaire pour les interfaces web modernes.
4
+
5
+ [![npm version](https://img.shields.io/npm/v/zuii.svg)](https://www.npmjs.com/package/zuii)
6
+ [![License: MIT](https://img.shields.io/badge/License-MIT-yellow.svg)](https://opensource.org/licenses/MIT)
7
+
8
+ **zuii** (prononcé /zwi/) a été conçu pour être le lien minimaliste entre votre logique métier et votre interface utilisateur. Cette librairie propose des composants hautement composables avec une priorité absolue sur la performance, l'accessibilité et une empreinte numérique réduite.
9
+
10
+ ---
11
+
12
+ ## ✨ Points forts
13
+
14
+ * **⚡ Ultra-léger :** Zéro dépendance inutile, uniquement l'essentiel.
15
+ * **🧩 Design Atomique :** Pensé pour une composition fluide et logique.
16
+ * **🎨 Personnalisable :** Thémage simplifié via les variables CSS (Design Tokens).
17
+ * **♿ Accessible :** Conforme aux standards WAI-ARIA pour une inclusion maximale.
18
+
19
+ ## 🚀 Installation
20
+
21
+ ### JavaScript (npm)
22
+ ```bash
23
+ npm install zuii
24
+ ```
25
+
26
+ ---
27
+
28
+ ## 🗺️ Roadmap
29
+
30
+ Le développement de **zuii** est structuré en plusieurs phases. Vous pouvez suivre l'avancement détaillé dans notre fichier dédié :
31
+
32
+ 👉 **[Consulter la Roadmap complète](ROADMAP.md)**
package/ROADMAP.md ADDED
@@ -0,0 +1,45 @@
1
+ # 🗺️ Roadmap - zuii
2
+
3
+ Ce document détaille la vision à long terme et les étapes de développement de **zuii**.
4
+
5
+ ## 🎯 Vision
6
+ Proposer l'écosystème UI le plus léger et modulaire du marché, sans compromis sur l'accessibilité ou l'expérience développeur.
7
+
8
+ ---
9
+
10
+ ## 🏗️ État actuel : Phase 1
11
+
12
+ ### 🟢 Phase 1 : Fondations
13
+ L'objectif est de poser des bases solides pour la librairie.
14
+ - [x] Configuration initiale du projet.
15
+ - [x] Architecture de fichiers modulaire.
16
+ - [x] Licence MIT.
17
+ - [ ] **Design Tokens** : Couleurs, Typographie, Espacement (Variables CSS).
18
+ - [ ] **Base Components** :
19
+ - [ ] `Button`
20
+ - [ ] `Input`
21
+ - [ ] `Checkbox`
22
+ - [ ] `Radio`
23
+
24
+ ### 🟡 Phase 2 : Structure & Layout
25
+ - [ ] **Grid System** : Utilitaires Flexbox et Grid.
26
+ - [ ] **Layout Components** : `Container`, `Stack`, `Box`.
27
+ - [ ] **Navigation** : `Navbar`, `Tabs`, `Breadcrumbs`.
28
+
29
+ ### 🔵 Phase 3 : Composants Avancés
30
+ - [ ] **Overlays** : `Modal`, `Popovover`, `Tooltip`.
31
+ - [ ] **Feedback** : `Toast`, `Alert`, `Spinner`.
32
+ - [ ] **Data Display** : `Table`, `Badge`, `Card`.
33
+
34
+ ### 🟣 Phase 4 : Écosystème & Qualité
35
+ - [ ] **Documentation** : Storybook complet avec exemples interactifs.
36
+ - [ ] **Testing** : 100% de couverture sur les composants critiques.
37
+ - [ ] **Accessibilité** : Audit WCAG 2.1 complet.
38
+ - [ ] **Thématisation** : Support natif du Mode Sombre et thèmes personnalisés.
39
+
40
+ ---
41
+
42
+ ## 📈 Évolutions futures
43
+ - [ ] Intégration optionnelle avec des frameworks (React, Vue).
44
+ - [ ] Générateur de thèmes en ligne.
45
+ - [ ] Librairie d'icônes dédiée.
package/package.json ADDED
@@ -0,0 +1,12 @@
1
+ {
2
+ "name": "zuii",
3
+ "version": "0.0.1",
4
+ "description": "",
5
+ "main": "index.js",
6
+ "scripts": {
7
+ "test": "echo \"Error: no test specified\" && exit 1"
8
+ },
9
+ "keywords": [],
10
+ "author": "Vincent Moreau",
11
+ "license": "MIT"
12
+ }