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
1414
1515/** The type a source or target is given as a marker for 'you supplied null as a type',
1616 * 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}.
1818 */
1919export 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";
1212 styleUrls : [ "./kanban-list.component.scss" ]
1313} )
1414export class KanbanListComponent {
15- @Input ( ) list : Card [ ] ;
15+ @Input ( ) list : { id : any , title : string , cards : Card [ ] } ;
1616 @Input ( ) source : DragSource ;
1717 @Input ( ) dragging = false ;
1818 @Output ( ) dropCard = new EventEmitter < DropEvent > ( ) ;
You can’t perform that action at this time.
0 commit comments