@xosue-utils/actions 0.2.1 → 0.2.4
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 +2 -1
- package/fesm2022/xosue-utils-actions.mjs +222 -36
- package/fesm2022/xosue-utils-actions.mjs.map +1 -1
- package/index.d.ts +13 -1
- package/lib/capsule/capsule.component.d.ts +3 -3
- package/lib/copy-btn/copy-btn.component.d.ts +17 -0
- package/lib/lucide-icon/lucide-icon.component.d.ts +2 -2
- package/lib/text-link/text-link.component.d.ts +12 -0
- package/lib/ui-interactive.model.d.ts +4 -1
- package/package.json +1 -1
- package/public-api.d.ts +15 -1
- package/lib/index.d.ts +0 -12
- package/xosue-utils-actions-0.2.1.tgz +0 -0
package/README.md
CHANGED
|
@@ -30,6 +30,7 @@ import {
|
|
|
30
30
|
```html
|
|
31
31
|
<text-btn label="Guardar" icon="save" color="primary"></text-btn>
|
|
32
32
|
<capsule label="Pagado" tone="paid"></capsule>
|
|
33
|
+
<capsule label="Pagado" tone="paid" size="md"></capsule>
|
|
33
34
|
<chip label="Tag" removable (removed)="..."></chip>
|
|
34
35
|
<segmented-control [options]="opts" [(value)]="tab"></segmented-control>
|
|
35
36
|
```
|
|
@@ -37,7 +38,7 @@ import {
|
|
|
37
38
|
## Diseño
|
|
38
39
|
|
|
39
40
|
- Rounded por defecto botones: `medium` (`var(--radius-xl)`).
|
|
40
|
-
- Capsule: `full` + tonos soft.
|
|
41
|
+
- Capsule: `full` + tonos soft. Tamaño **sm** (pequeño, default, fuente 12px) o **md** (normal, fuente 14px).
|
|
41
42
|
- Soft press `scale(0.98)` + ripple suave.
|
|
42
43
|
- Colores **solo** CSS vars / `color-mix` (sin `#hex`).
|
|
43
44
|
|