Hi, I'm trying to use `kendoButton` directive as a hostDirectives, but only support standalone directives., any plan to update kendo directives to standalone ?
@Component({
selector: 'wrapper-button',
standalone: true,
hostDirectives: [
kendoButton,
//other directives
],
template: `
<button></button> `,
imports: [
ButtonModule
]
})
selector: 'wrapper-button',
standalone: true,
hostDirectives: [
kendoButton,
//other directives
],
template: `
<button></button> `,
imports: [
ButtonModule
]
})