angular-tailwind-components 1.2.0 → 1.2.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.
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "angular-tailwind-components",
3
- "version": "1.2.0",
3
+ "version": "1.2.1",
4
4
  "files": [
5
5
  "fesm2022",
6
6
  "types",
@@ -187,7 +187,7 @@ declare class TailwindUpload extends TailwindComponent implements ControlValueAc
187
187
  private readonly fallbackFileId;
188
188
  readonly fileInput: _angular_core.Signal<ElementRef<HTMLInputElement>>;
189
189
  /** Visual layout: compact button or drop zone */
190
- readonly variant: _angular_core.InputSignal<"button" | "area">;
190
+ readonly variant: _angular_core.InputSignal<"area" | "button">;
191
191
  /** Field label */
192
192
  readonly label: _angular_core.InputSignal<string>;
193
193
  /** Button label when `variant` is `button` */
@@ -708,7 +708,11 @@ declare class TailwindDrawer extends TailwindComponent {
708
708
 
709
709
  interface TailwindBreadcrumbItem {
710
710
  label: string;
711
+ /** URL del crumb intermedio (se assente si può usare `href`) */
712
+ link?: string;
711
713
  href?: string;
714
+ /** Icona Solar Line Duotone opzionale prima del `label` */
715
+ icon?: TailwindSolarIcon;
712
716
  }
713
717
 
714
718
  declare class TailwindBreadcrumb extends TailwindComponent {