Skip to content

Commit

Permalink
fix: bug 400
Browse files Browse the repository at this point in the history
valeriocomo committed Nov 4, 2024
1 parent e068958 commit d7d9d2b
Showing 1 changed file with 5 additions and 5 deletions.
Original file line number Diff line number Diff line change
@@ -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<NavscrollItem>;
@Input() items!: Array<NavscrollItem>;
/**
* 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

0 comments on commit d7d9d2b

Please sign in to comment.