@sumaris-net/ngx-components 1.10.2 → 1.10.3

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.
@@ -10672,11 +10672,11 @@
10672
10672
  },
10673
10673
  account: {
10674
10674
  enableListenChanges: true,
10675
- listenIntervalInSeconds: 30
10675
+ listenIntervalInSeconds: 60
10676
10676
  },
10677
10677
  entityEditor: {
10678
10678
  enableListenChanges: true,
10679
- listenIntervalInSeconds: 30
10679
+ listenIntervalInSeconds: 60
10680
10680
  }
10681
10681
  });
10682
10682
 
@@ -23626,11 +23626,14 @@
23626
23626
  var CoreModule = /** @class */ (function () {
23627
23627
  function CoreModule() {
23628
23628
  }
23629
- CoreModule.forRoot = function () {
23629
+ CoreModule.forRoot = function (environment) {
23630
23630
  console.info('[core] Creating module (root)');
23631
23631
  return {
23632
23632
  ngModule: CoreModule,
23633
- providers: [PlatformService]
23633
+ providers: [
23634
+ PlatformService,
23635
+ { provide: ENVIRONMENT, useValue: environment }
23636
+ ]
23634
23637
  };
23635
23638
  };
23636
23639
  return CoreModule;