From d7d9d2b19c255f8af8cc2b17f0d023afc6ca836e Mon Sep 17 00:00:00 2001 From: valerio como Date: Mon, 4 Nov 2024 15:51:04 +0000 Subject: [PATCH] fix: bug 400 --- .../navigation/navscroll/navscroll.component.ts | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/projects/design-angular-kit/src/lib/components/navigation/navscroll/navscroll.component.ts b/projects/design-angular-kit/src/lib/components/navigation/navscroll/navscroll.component.ts index 41a1016c..0e766a45 100644 --- a/projects/design-angular-kit/src/lib/components/navigation/navscroll/navscroll.component.ts +++ b/projects/design-angular-kit/src/lib/components/navigation/navscroll/navscroll.component.ts @@ -44,27 +44,27 @@ export class ItNavscrollComponent implements OnInit { /** * Header of the Navscroll */ - @Input() readonly header = ''; + @Input() header = ''; /** * A list of links */ - @Input() readonly items!: Array; + @Input() items!: Array; /** * Border position * @default left */ - @Input() readonly borderPosition: 'left' | 'right' = 'left'; + @Input() borderPosition: 'left' | 'right' = 'left'; /** * Alignment * @default top */ - @Input() readonly alignment: 'top' | 'bottom' = 'top'; + @Input() alignment: 'top' | 'bottom' = 'top'; /** * Theme * @default light */ - @Input() readonly theme: 'light' | 'dark' = 'light'; + @Input() theme: 'light' | 'dark' = 'light'; /** * Custom template for the content section