@telcomdev/ui 0.1.21 → 0.1.23
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 +13 -0
- package/fesm2022/telcomdev-ui.mjs +532 -14
- package/fesm2022/telcomdev-ui.mjs.map +1 -1
- package/package.json +1 -1
- package/types/telcomdev-ui.d.ts +114 -4
package/README.md
CHANGED
|
@@ -184,6 +184,19 @@ adjuntos: File[] = [];
|
|
|
184
184
|
Cuando `multiple` está desactivado el valor del formulario es `File | null`.
|
|
185
185
|
Cuando `multiple` está activado el valor es `File[]`.
|
|
186
186
|
|
|
187
|
+
## Badge
|
|
188
|
+
|
|
189
|
+
Indicadores compactos para estados, conteos y etiquetas de producto.
|
|
190
|
+
|
|
191
|
+
```html
|
|
192
|
+
<td-badge tone="success" icon="check">Activo</td-badge>
|
|
193
|
+
<td-badge tone="warning" icon="alert">Pendiente</td-badge>
|
|
194
|
+
<td-badge tone="danger" variant="solid">Vencido</td-badge>
|
|
195
|
+
<td-badge tone="danger" dot aria-label="Tiene alertas" />
|
|
196
|
+
```
|
|
197
|
+
|
|
198
|
+
Soporta `tone`, `variant`, `size`, `icon`, `dot` y `pill`.
|
|
199
|
+
|
|
187
200
|
## Tabs
|
|
188
201
|
|
|
189
202
|
```html
|