Skip to content

Commit 7839131

Browse files
authored
Merge pull request #136 from retejs/angular-19
fix: context menu subitems for v19
2 parents 93bcedb + 1e0abed commit 7839131

File tree

2 files changed

+7
-0
lines changed

2 files changed

+7
-0
lines changed
Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
// [imports]
2+
import { CommonModule } from '@angular/common';
3+
4+
// [component-directive]
5+
imports: [CommonModule],

src/presets/context-menu/components/item/item.component.ts

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,10 @@
11
import { ChangeDetectorRef, Component, EventEmitter, HostBinding, HostListener, Input, Output } from '@angular/core';
22
import { Item } from '../../types';
33
import { debounce } from '../../debounce';
4+
// [imports]
45

56
@Component({
7+
// [component-directive]
68
selector: 'context-menu-item',
79
templateUrl: './item.component.html',
810
styleUrls: ['./item.component.sass', '../../block.sass'],

0 commit comments

Comments
 (0)