File tree Expand file tree Collapse file tree 2 files changed +2
-2
lines changed
examples/src/app/kanban/kanban-list Expand file tree Collapse file tree 2 files changed +2
-2
lines changed Original file line number Diff line number Diff line change @@ -14,6 +14,6 @@ export const DRAG_DROP_MANAGER = new InjectionToken<DragDropManager<any>>('dnd-c
14
14
15
15
/** The type a source or target is given as a marker for 'you supplied null as a type',
16
16
* so that library consumers can be reminded to use setType/setTypes manually.
17
- * See @{ link DragSource#setType}, @{ link DropTarget#setTypes}.
17
+ * See { @ link DragSource#setType}, { @ link DropTarget#setTypes}.
18
18
*/
19
19
export const TYPE_DYNAMIC = Symbol ( 'no type specified, you must provide one with setType/setTypes' ) ;
Original file line number Diff line number Diff line change @@ -12,7 +12,7 @@ import { ItemTypes } from "../item-types";
12
12
styleUrls : [ "./kanban-list.component.scss" ]
13
13
} )
14
14
export class KanbanListComponent {
15
- @Input ( ) list : Card [ ] ;
15
+ @Input ( ) list : { id : any , title : string , cards : Card [ ] } ;
16
16
@Input ( ) source : DragSource ;
17
17
@Input ( ) dragging = false ;
18
18
@Output ( ) dropCard = new EventEmitter < DropEvent > ( ) ;
You can’t perform that action at this time.
0 commit comments