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