@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.
- package/bundles/sumaris-net.ngx-components.umd.js +7 -4
- package/bundles/sumaris-net.ngx-components.umd.js.map +1 -1
- package/bundles/sumaris-net.ngx-components.umd.min.js +1 -1
- package/bundles/sumaris-net.ngx-components.umd.min.js.map +1 -1
- package/esm2015/src/app/core/core.module.js +7 -3
- package/esm2015/src/environments/environment.js +3 -3
- package/fesm2015/sumaris-net.ngx-components.js +7 -4
- package/fesm2015/sumaris-net.ngx-components.js.map +1 -1
- package/package.json +1 -1
- package/src/app/core/core.module.d.ts +2 -1
- package/sumaris-net.ngx-components.metadata.json +1 -1
|
@@ -10672,11 +10672,11 @@
|
|
|
10672
10672
|
},
|
|
10673
10673
|
account: {
|
|
10674
10674
|
enableListenChanges: true,
|
|
10675
|
-
listenIntervalInSeconds:
|
|
10675
|
+
listenIntervalInSeconds: 60
|
|
10676
10676
|
},
|
|
10677
10677
|
entityEditor: {
|
|
10678
10678
|
enableListenChanges: true,
|
|
10679
|
-
listenIntervalInSeconds:
|
|
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: [
|
|
23633
|
+
providers: [
|
|
23634
|
+
PlatformService,
|
|
23635
|
+
{ provide: ENVIRONMENT, useValue: environment }
|
|
23636
|
+
]
|
|
23634
23637
|
};
|
|
23635
23638
|
};
|
|
23636
23639
|
return CoreModule;
|