@builder.io/react 1.1.47-0 → 1.1.47-4

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -361,6 +361,18 @@ export class BuilderBlock extends React.Component<
361
361
  InnerComponent = componentInfo.class;
362
362
  } else if (componentInfo && componentInfo.tag) {
363
363
  InnerComponent = componentInfo.tag;
364
+ } else {
365
+ if (componentName.startsWith('Builder:')) {
366
+ console.warn(
367
+ `Missing @builder.io/widgets installation, please install and import @builder.io/widgets to use ${
368
+ componentName.split(':')[1]
369
+ } in your content, more info here: https://github.com/BuilderIO/builder/tree/main/packages/widgets`
370
+ );
371
+ } else {
372
+ console.warn(
373
+ `Missing registration for ${componentName}, have you included the registration in your bundle?`
374
+ );
375
+ }
364
376
  }
365
377
  }
366
378
  }