@gen3/core 0.10.98 → 0.11.0
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.
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"gen3AppRegistry.d.ts","sourceRoot":"","sources":["../../../../src/features/gen3Apps/gen3AppRegistry.ts"],"names":[],"mappings":"AAAA;;GAEG;AACH,eAAO,MAAM,QAAQ,EAAE,MAAM,CAAC,MAAM,EAAE,KAAK,CAAC,SAAS,CAAM,CAAC;AAE5D,eAAO,MAAM,eAAe,GAAI,IAAI,MAAM,EAAE,SAAS,KAAK,CAAC,SAAS,KAAG,IAEtE,CAAC;AAEF,eAAO,MAAM,aAAa,GAAI,IAAI,MAAM,KAAG,KAAK,CAAC,
|
|
1
|
+
{"version":3,"file":"gen3AppRegistry.d.ts","sourceRoot":"","sources":["../../../../src/features/gen3Apps/gen3AppRegistry.ts"],"names":[],"mappings":"AAAA;;GAEG;AACH,eAAO,MAAM,QAAQ,EAAE,MAAM,CAAC,MAAM,EAAE,KAAK,CAAC,SAAS,CAAM,CAAC;AAE5D,eAAO,MAAM,eAAe,GAAI,IAAI,MAAM,EAAE,SAAS,KAAK,CAAC,SAAS,KAAG,IAEtE,CAAC;AAEF,eAAO,MAAM,aAAa,GAAI,IAAI,MAAM,KAAG,KAAK,CAAC,SAGhD,CAAC;AAEF,eAAO,MAAM,gBAAgB,GAAI,MAAM,MAAM,EAAE,SAAS,MAAM,KAAG,MAEhE,CAAC"}
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"processing.d.ts","sourceRoot":"","sources":["../../../../src/features/guppy/processing.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,gBAAgB,EAAE,MAAM,aAAa,CAAC;AAG/C;;;;;GAKG;AACH,eAAO,MAAM,wBAAwB,GACnC,MAAM,MAAM,CAAC,MAAM,EAAE,OAAO,CAAC,KAC5B,gBA2BF,CAAC;AAEF;;;;;;;;;GASG;AACH,eAAO,MAAM,sBAAsB,GACjC,UAAU,MAAM,CAAC,MAAM,EAAE,OAAO,CAAC,EACjC,WAAU,MAAY,KACrB,MAAM,CAAC,MAAM,EAAE,OAAO,
|
|
1
|
+
{"version":3,"file":"processing.d.ts","sourceRoot":"","sources":["../../../../src/features/guppy/processing.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,gBAAgB,EAAE,MAAM,aAAa,CAAC;AAG/C;;;;;GAKG;AACH,eAAO,MAAM,wBAAwB,GACnC,MAAM,MAAM,CAAC,MAAM,EAAE,OAAO,CAAC,KAC5B,gBA2BF,CAAC;AAEF;;;;;;;;;GASG;AACH,eAAO,MAAM,sBAAsB,GACjC,UAAU,MAAM,CAAC,MAAM,EAAE,OAAO,CAAC,EACjC,WAAU,MAAY,KACrB,MAAM,CAAC,MAAM,EAAE,OAAO,CA8BxB,CAAC"}
|
package/dist/esm/index.js
CHANGED
|
@@ -582,7 +582,8 @@ const registerGen3App = (id, gen3App)=>{
|
|
|
582
582
|
REGISTRY[id] = gen3App;
|
|
583
583
|
};
|
|
584
584
|
const lookupGen3App = (id)=>{
|
|
585
|
-
return REGISTRY[id];
|
|
585
|
+
if (id in REGISTRY) return REGISTRY[id];
|
|
586
|
+
else return null;
|
|
586
587
|
};
|
|
587
588
|
|
|
588
589
|
const initialState$6 = {
|
|
@@ -3618,6 +3619,9 @@ const groupSharedFields = (data)=>{
|
|
|
3618
3619
|
path: '$..histogram',
|
|
3619
3620
|
resultType: 'pointer'
|
|
3620
3621
|
});
|
|
3622
|
+
if (!pointerData) {
|
|
3623
|
+
return {};
|
|
3624
|
+
}
|
|
3621
3625
|
if (pointerData.length === 0) {
|
|
3622
3626
|
return {};
|
|
3623
3627
|
}
|
|
@@ -3628,7 +3632,7 @@ const groupSharedFields = (data)=>{
|
|
|
3628
3632
|
path: key,
|
|
3629
3633
|
resultType: 'value'
|
|
3630
3634
|
});
|
|
3631
|
-
histogramData[0]
|
|
3635
|
+
histogramData?.[0]?.forEach((x)=>{
|
|
3632
3636
|
x.count = x.count < minValue ? -1 : x.count;
|
|
3633
3637
|
});
|
|
3634
3638
|
});
|