I have a custom component for checkbox.
const CheckboxValue = new Provider(
NG_VALUE_ACCESSOR, {
useExisting: forwardRef(() => CheckboxComponent),
multi: true
});
@Component({
...
providers: [CheckboxValue]
})
export class CheckboxComponent implements ControlValueAccessor {
...
}
As I understood in RC3 Provider was marked as deprecated. How I must rewrite my Component so that he working after next update?