@sumaris-net/ngx-components 2.6.6-rc6 → 2.6.6
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/esm2020/src/environments/environment.mjs +18 -16
- package/fesm2015/sumaris-net.ngx-components.mjs +17 -15
- package/fesm2015/sumaris-net.ngx-components.mjs.map +1 -1
- package/fesm2020/sumaris-net.ngx-components.mjs +17 -15
- package/fesm2020/sumaris-net.ngx-components.mjs.map +1 -1
- package/package.json +1 -1
- package/src/assets/environments/environment-test.json +6 -0
- package/src/assets/manifest.json +1 -1
|
@@ -13814,6 +13814,8 @@ const environment = Object.freeze({
|
|
|
13814
13814
|
name: '@sumaris-net/ngx-components',
|
|
13815
13815
|
version: undefined,
|
|
13816
13816
|
production: true,
|
|
13817
|
+
// Do NOT set here - because used by packager
|
|
13818
|
+
//externalEnvironmentUrl: null,
|
|
13817
13819
|
baseUrl: '/',
|
|
13818
13820
|
defaultLocale: 'fr',
|
|
13819
13821
|
defaultLatLongFormat: 'DDMM',
|
|
@@ -13825,51 +13827,51 @@ const environment = Object.freeze({
|
|
|
13825
13827
|
peerMinVersion: '1.8.0',
|
|
13826
13828
|
defaultPeer: {
|
|
13827
13829
|
host: '192.168.0.45',
|
|
13828
|
-
port: 8080
|
|
13830
|
+
port: 8080,
|
|
13829
13831
|
},
|
|
13830
13832
|
defaultPeers: [
|
|
13831
13833
|
{
|
|
13832
13834
|
host: 'localhost',
|
|
13833
|
-
port: 8080
|
|
13835
|
+
port: 8080,
|
|
13834
13836
|
},
|
|
13835
13837
|
{
|
|
13836
13838
|
host: 'localhost',
|
|
13837
|
-
port: 8081
|
|
13839
|
+
port: 8081,
|
|
13838
13840
|
},
|
|
13839
13841
|
{
|
|
13840
13842
|
host: '192.168.0.45',
|
|
13841
|
-
port: 8080
|
|
13843
|
+
port: 8080,
|
|
13842
13844
|
},
|
|
13843
13845
|
{
|
|
13844
13846
|
host: '192.168.0.24',
|
|
13845
|
-
port: 8080
|
|
13847
|
+
port: 8080,
|
|
13846
13848
|
},
|
|
13847
13849
|
{
|
|
13848
13850
|
host: '192.168.0.29',
|
|
13849
|
-
port: 8080
|
|
13851
|
+
port: 8080,
|
|
13850
13852
|
},
|
|
13851
13853
|
{
|
|
13852
13854
|
host: 'sih.sfa.sc',
|
|
13853
|
-
port: 443
|
|
13855
|
+
port: 443,
|
|
13854
13856
|
},
|
|
13855
13857
|
{
|
|
13856
13858
|
host: 'test.sumaris.net',
|
|
13857
|
-
port: 443
|
|
13859
|
+
port: 443,
|
|
13858
13860
|
},
|
|
13859
13861
|
{
|
|
13860
13862
|
host: 'open.sumaris.net',
|
|
13861
|
-
port: 443
|
|
13863
|
+
port: 443,
|
|
13862
13864
|
},
|
|
13863
13865
|
{
|
|
13864
13866
|
host: 'server.e-is.pro',
|
|
13865
|
-
port: 443
|
|
13866
|
-
}
|
|
13867
|
+
port: 443,
|
|
13868
|
+
},
|
|
13867
13869
|
],
|
|
13868
13870
|
defaultAppName: 'SUMARiS',
|
|
13869
13871
|
defaultAndroidInstallUrl: 'https://play.google.com/store/apps/details?id=net.sumaris.app',
|
|
13870
13872
|
// Storage
|
|
13871
13873
|
storage: {
|
|
13872
|
-
driverOrder: [StorageDrivers.SQLLite, StorageDrivers.IndexedDB, StorageDrivers.WebSQL, StorageDrivers.LocalStorage]
|
|
13874
|
+
driverOrder: [StorageDrivers.SQLLite, StorageDrivers.IndexedDB, StorageDrivers.WebSQL, StorageDrivers.LocalStorage],
|
|
13873
13875
|
},
|
|
13874
13876
|
// About
|
|
13875
13877
|
sourceUrl: 'https://gitlab.ifremer.fr/sih-public/sumaris/ngx-sumaris-components',
|
|
@@ -13885,12 +13887,12 @@ const environment = Object.freeze({
|
|
|
13885
13887
|
},
|
|
13886
13888
|
account: {
|
|
13887
13889
|
enableListenChanges: true,
|
|
13888
|
-
listenIntervalInSeconds: 60
|
|
13890
|
+
listenIntervalInSeconds: 60,
|
|
13889
13891
|
},
|
|
13890
13892
|
entityEditor: {
|
|
13891
13893
|
enableListenChanges: true,
|
|
13892
|
-
listenIntervalInSeconds: 60
|
|
13893
|
-
}
|
|
13894
|
+
listenIntervalInSeconds: 60,
|
|
13895
|
+
},
|
|
13894
13896
|
});
|
|
13895
13897
|
|
|
13896
13898
|
class EntityClasses {
|