diff --git a/lib/core/src/lib/card-view/components/card-view-item-dispatcher/card-view-item-dispatcher.component.ts b/lib/core/src/lib/card-view/components/card-view-item-dispatcher/card-view-item-dispatcher.component.ts index 2b953df5c0..f8ac2d9062 100644 --- a/lib/core/src/lib/card-view/components/card-view-item-dispatcher/card-view-item-dispatcher.component.ts +++ b/lib/core/src/lib/card-view/components/card-view-item-dispatcher/card-view-item-dispatcher.component.ts @@ -57,6 +57,9 @@ export class CardViewItemDispatcherComponent implements OnChanges { @Input() multiValueSeparator: string = DEFAULT_SEPARATOR; + @Input() + destinationPath: string; + @ViewChild(CardViewContentProxyDirective, { static: true }) private content: CardViewContentProxyDirective; @@ -110,6 +113,7 @@ export class CardViewItemDispatcherComponent implements OnChanges { this.componentReference.instance.copyToClipboardAction = this.copyToClipboardAction; this.componentReference.instance.useChipsForMultiValueProperty = this.useChipsForMultiValueProperty; this.componentReference.instance.multiValueSeparator = this.multiValueSeparator; + this.componentReference.instance.destinationPath = this.destinationPath; } private proxy(methodName, ...args) { diff --git a/lib/core/src/lib/card-view/components/card-view-textitem/card-view-textitem.component.html b/lib/core/src/lib/card-view/components/card-view-textitem/card-view-textitem.component.html index 5e7faaef5b..9c7664946d 100644 --- a/lib/core/src/lib/card-view/components/card-view-textitem/card-view-textitem.component.html +++ b/lib/core/src/lib/card-view/components/card-view-textitem/card-view-textitem.component.html @@ -98,11 +98,11 @@ + [multiValueSeparator]="multiValueSeparator" + [destinationPath]="destinationPath"> diff --git a/lib/core/src/lib/card-view/components/card-view/card-view.component.ts b/lib/core/src/lib/card-view/components/card-view/card-view.component.ts index 78a41fcb92..f7ecd48bc6 100644 --- a/lib/core/src/lib/card-view/components/card-view/card-view.component.ts +++ b/lib/core/src/lib/card-view/components/card-view/card-view.component.ts @@ -57,4 +57,7 @@ export class CardViewComponent { /** String separator between multi-value property items. */ @Input() multiValueSeparator: string = DEFAULT_SEPARATOR; + + @Input() + destinationPath: string; }