@vizzly/dashboard 0.15.1-dev-a5ec7c800259618d61c53cad1cc968c092a22019 → 0.15.1
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/dist/dashboard.esm.js
CHANGED
|
@@ -11415,6 +11415,11 @@ function filterFields(originalFields, options) {
|
|
|
11415
11415
|
return !isCustomBuildMetric(field);
|
|
11416
11416
|
});
|
|
11417
11417
|
}
|
|
11418
|
+
if (options != null && options.removeRoundedNumbers) {
|
|
11419
|
+
fields = fields.filter(function (field) {
|
|
11420
|
+
return !isRoundedNumberField(field);
|
|
11421
|
+
});
|
|
11422
|
+
}
|
|
11418
11423
|
if (options != null && options.removeAggregateCustomBuildMetric) {
|
|
11419
11424
|
fields = fields.filter(function (field) {
|
|
11420
11425
|
return !isCustomBuildMetric(field) || field.metric.type === PropertyType.Field || field.metric.type === PropertyType.NumberInput;
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@vizzly/dashboard",
|
|
3
3
|
"author": "james@vizzly.co",
|
|
4
|
-
"version": "0.15.1
|
|
4
|
+
"version": "0.15.1",
|
|
5
5
|
"source": "src/index.tsx",
|
|
6
6
|
"types": "./dist/dashboard/src/index.d.ts",
|
|
7
7
|
"module": "./dist/dashboard.esm.js",
|