@aiandralves/ai-ui 1.0.0 → 1.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 (3) hide show
  1. package/LICENSE +21 -0
  2. package/README.md +105 -0
  3. package/package.json +1 -1
package/LICENSE ADDED
@@ -0,0 +1,21 @@
1
+ MIT License
2
+
3
+ Copyright (c) 2026 Aiandra Meira
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 CHANGED
@@ -0,0 +1,105 @@
1
+ # @aiandralves/ai-ui
2
+
3
+ <p align="center">
4
+ <strong>@aiandralves/ai-ui</strong> é uma biblioteca de componentes Angular moderna, acessível e personalizável, projetada para desenvolvedores que valorizam tanto a estética quanto a funcionalidade.
5
+ </p>
6
+
7
+ <p align="center">
8
+ <img src="https://img.shields.io/badge/Angular-21-E90464" alt="Angular" />
9
+ <img src="https://img.shields.io/npm/v/@aiandralves/ai-ui" alt="npm version" />
10
+ <img src="https://img.shields.io/badge/TailwindCSS-4.1-00bcff" alt="Tailwind CSS" />
11
+ <img src="https://img.shields.io/badge/License-MIT-green" alt="MIT License" />
12
+ </p>
13
+
14
+ ---
15
+
16
+ ## ✨ Recursos
17
+
18
+ - 🎨 Componentes modernos e reutilizáveis
19
+ - ⚡ Desenvolvido para Angular 21+
20
+ - 🎯 Integração com Tailwind CSS 4
21
+ - 🌙 Suporte a temas personalizados
22
+ - ♿ Componentes acessíveis
23
+ - 📦 Fácil instalação e configuração
24
+ - 🧩 Arquitetura escalável e extensível
25
+
26
+ ---
27
+
28
+ ## 🚀 Instalação
29
+
30
+ Adicione a biblioteca ao seu projeto Angular:
31
+
32
+ ```bash
33
+ npm install @aiandralves/ai-ui
34
+ ```
35
+
36
+ ---
37
+
38
+ ## 🧩 Requisitos
39
+
40
+ | Requisito | Descrição | Versão >= |
41
+ | ------------ | ------------------------------------------- | --------- |
42
+ | Angular | Framework para construção de aplicações web | 21 |
43
+ | Tailwind CSS | Framework de utilitários CSS | 4 |
44
+ | Node.js | Ambiente de execução JavaScript | 20 |
45
+
46
+ ---
47
+
48
+ ## 📖 Uso Rápido
49
+
50
+ ### Importar um Componente
51
+
52
+ ```typescript
53
+ import { Component } from "@angular/core";
54
+ import { AiButtonModule } from "@aiandralves/ai-ui";
55
+
56
+ @Component({
57
+ selector: "app-root",
58
+ standalone: true,
59
+ imports: [AiButtonModule],
60
+ template: ` <button aiButton variant="primary">Clique aqui</button> `,
61
+ })
62
+ export class AppComponent {}
63
+ ```
64
+
65
+ ---
66
+
67
+ ## 📚 Documentação
68
+
69
+ Para documentação completa, exemplos e temas, visite:
70
+
71
+ - [Documentação Official](https://ai-ui-demo.vercel.app)
72
+
73
+ ---
74
+
75
+ ## 🤝 Contribuindo
76
+
77
+ Contribuições são bem-vindas! Siga os passos:
78
+
79
+ 1. Fork o repositório
80
+ 2. Crie uma branch de feature (`git checkout -b feature/AmazingFeature`)
81
+ 3. Commit suas mudanças (`git commit -m 'Add some AmazingFeature'`)
82
+ 4. Push para a branch (`git push origin feature/AmazingFeature`)
83
+ 5. Abra um Pull Request
84
+
85
+ ---
86
+
87
+ ## 📄 Licença
88
+
89
+ Este projeto é licenciado sob a Licença MIT - veja o arquivo [LICENSE](LICENSE) para detalhes.
90
+
91
+ ---
92
+
93
+ ## 👤 Autor
94
+
95
+ **Aiandra Meira**
96
+
97
+ - GitHub: [@aiandralves](https://github.com/aiandralves)
98
+
99
+ ---
100
+
101
+ ## 🙏 Agradecimentos
102
+
103
+ - Angular team
104
+ - Tailwind CSS
105
+ - Comunidade open source
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@aiandralves/ai-ui",
3
- "version": "1.0.0",
3
+ "version": "1.0.1",
4
4
  "description": "A comprehensive Angular UI component library with Tailwind CSS",
5
5
  "sideEffects": false,
6
6
  "peerDependencies": {