@datametria/vue-components 2.1.1 → 2.2.0
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/README.md +11 -3
- package/dist/index.es.js +1814 -1735
- package/dist/index.umd.js +9 -9
- package/dist/src/types/index.d.ts +5 -0
- package/dist/vue-components.css +1 -1
- package/package.json +1 -1
- package/src/components/DatametriaSortableTable.vue +204 -14
- package/src/types/index.ts +2 -0
package/README.md
CHANGED
|
@@ -20,7 +20,7 @@
|
|
|
20
20
|
|
|
21
21
|
</div>
|
|
22
22
|
|
|
23
|
-
**Versão**: 2.
|
|
23
|
+
**Versão**: 2.2.0
|
|
24
24
|
**Data**: 20/11/2025
|
|
25
25
|
**Autor**: Vander Loto - CTO DATAMETRIA
|
|
26
26
|
|
|
@@ -60,7 +60,7 @@ Biblioteca completa de componentes Vue.js 3 com suporte a **theming multi-brand/
|
|
|
60
60
|
|
|
61
61
|
### Benefícios
|
|
62
62
|
|
|
63
|
-
- ✅ **
|
|
63
|
+
- ✅ **32 Componentes**: Com theming integrado
|
|
64
64
|
- ✅ **TypeScript**: Type safety completo
|
|
65
65
|
- ✅ **Responsive**: Mobile-first design
|
|
66
66
|
- ✅ **Dark Mode**: Suporte nativo
|
|
@@ -78,6 +78,14 @@ Biblioteca completa de componentes Vue.js 3 com suporte a **theming multi-brand/
|
|
|
78
78
|
- 🏢 **Multi-Tenant**: Suporte a múltiplas marcas simultaneamente
|
|
79
79
|
- 📱 **Backward Compatible**: 100% compatível com v1.x
|
|
80
80
|
|
|
81
|
+
### Novidades v2.2.0
|
|
82
|
+
|
|
83
|
+
- 🔍 **Filtros Avançados DatametriaSortableTable**
|
|
84
|
+
- 4 tipos de filtro: text, date, select, multiselect
|
|
85
|
+
- filterOptions: 'auto' para geração automática
|
|
86
|
+
- Detecção automática de Date objects
|
|
87
|
+
- Correção: espaços no filtro de texto
|
|
88
|
+
|
|
81
89
|
### Novidades v2.1.0
|
|
82
90
|
|
|
83
91
|
- 🏗️ **Novos Componentes de Navegação**
|
|
@@ -356,7 +364,7 @@ const temas = {
|
|
|
356
364
|
|
|
357
365
|
### Data Display (5 componentes)
|
|
358
366
|
- `DatametriaTable` - Tabela básica + theming
|
|
359
|
-
- `DatametriaSortableTable` - Tabela com ordenação + theming
|
|
367
|
+
- `DatametriaSortableTable` - Tabela com ordenação e filtros avançados + theming ✨ **MELHORADO v2.2**
|
|
360
368
|
- `DatametriaAvatar` - Avatar de usuário + theming
|
|
361
369
|
- `DatametriaBadge` - Badge de status + theming
|
|
362
370
|
- `DatametriaChip` - Chip removível + theming
|