@provoly/dashboard 0.22.10 → 0.22.12

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.
@@ -12332,7 +12332,7 @@ function widgetLoader(module, prop) {
12332
12332
  return moduleRefCache$2[prop].getComponent();
12333
12333
  }
12334
12334
  else {
12335
- if (module.hasOwnProperty(prop)) {
12335
+ if (!!module[prop]) {
12336
12336
  const moduleRef = createNgModule(module[prop], Injector.create({ parent: injector, providers: [] }));
12337
12337
  moduleRefCache$2[prop] = moduleRef.instance;
12338
12338
  return moduleRefCache$2[prop].getComponent();
@@ -12365,7 +12365,7 @@ function tooltipLoader(module, prop) {
12365
12365
  return moduleRefCache$1[prop].getComponent();
12366
12366
  }
12367
12367
  else {
12368
- if (module.hasOwnProperty(prop)) {
12368
+ if (!!module[prop]) {
12369
12369
  const moduleRef = createNgModule(module[prop], Injector.create({ parent: injector, providers: [] }));
12370
12370
  moduleRefCache$1[prop] = moduleRef.instance;
12371
12371
  return moduleRefCache$1[prop].getComponent();
@@ -12398,7 +12398,7 @@ function filterLoader(module, prop) {
12398
12398
  return moduleRefCache[prop].getComponent();
12399
12399
  }
12400
12400
  else {
12401
- if (module.hasOwnProperty(prop)) {
12401
+ if (!!module[prop]) {
12402
12402
  const moduleRef = createNgModule(module[prop], Injector.create({ parent: injector, providers: [] }));
12403
12403
  moduleRefCache[prop] = moduleRef.instance;
12404
12404
  return moduleRefCache[prop].getComponent();