@vizzly/dashboard 0.15.1-dev-bf37af9c56e45d64667fdf7b5c96aa2a9c2b02e4 → 0.15.1-dev-4be82de5be616716638ec038c659b02345e97513

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.
@@ -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;
@@ -11912,7 +11917,6 @@ function prepareStoredFilters(response, globalFilters, validateFilters, checkApp
11912
11917
  var VIZZLY_LOG_LEVEL_STORED = '__VIZZLY__LOG_LEVEL_STORED';
11913
11918
  var RUNTIME_DEVELOPER_TOOLS = '__VIZZLY_RUNTIME_DEVELOPER_TOOLS';
11914
11919
  var VIZZLY_SERVER_LOG_LEVEL_STORED = '__VIZZLY__SERVER_LOG_LEVEL_STORED';
11915
- var packageJson = /*#__PURE__*/require("../package.json");
11916
11920
  if (typeof window !== 'undefined' && typeof localStorage !== 'undefined') {
11917
11921
  var previousLogLevel = /*#__PURE__*/localStorage.getItem(VIZZLY_LOG_LEVEL_STORED);
11918
11922
  if (previousLogLevel) {
@@ -11920,7 +11924,7 @@ if (typeof window !== 'undefined' && typeof localStorage !== 'undefined') {
11920
11924
  }
11921
11925
  // @ts-ignore
11922
11926
  window.VizzlyDev = {
11923
- version: (packageJson == null ? void 0 : packageJson['version']) || 'dev',
11927
+ version: '0.15.1 (hardcoded)',
11924
11928
  getServerLogLevel: function getServerLogLevel() {
11925
11929
  return localStorage.getItem(VIZZLY_SERVER_LOG_LEVEL_STORED);
11926
11930
  },
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-dev-bf37af9c56e45d64667fdf7b5c96aa2a9c2b02e4",
4
+ "version": "0.15.1-dev-4be82de5be616716638ec038c659b02345e97513",
5
5
  "source": "src/index.tsx",
6
6
  "types": "./dist/dashboard/src/index.d.ts",
7
7
  "module": "./dist/dashboard.esm.js",