in libs/core/src/lib/components/wrapper-component.ts [204:222]
private _passAttributesAsProps() {
const hostAttributes = Array.from((this.elementRef.nativeElement as HTMLElement).attributes);
if (!this.reactNodeRef || !isReactNode(this.reactNodeRef.nativeElement)) {
throw new Error('reactNodeRef must hold a reference to a ReactNode');
}
// Ensure there are no blacklisted props. Suggest alternative as error if there is any
hostAttributes.forEach(attr => {
const [forbidden, alternativeAttrName] = this._isForbiddenAttribute(attr);
if (forbidden) {
throw new Error(
`[${(this.elementRef
.nativeElement as HTMLElement).tagName.toLowerCase()}] React wrapper components cannot have the '${
attr.name
}' attribute set. Use the following alternative: ${alternativeAttrName || ''}`
);
}
});