@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.
@@ -11424,6 +11424,11 @@ function filterFields(originalFields, options) {
11424
11424
  return !isCustomBuildMetric(field);
11425
11425
  });
11426
11426
  }
11427
+ if (options != null && options.removeRoundedNumbers) {
11428
+ fields = fields.filter(function (field) {
11429
+ return !isRoundedNumberField(field);
11430
+ });
11431
+ }
11427
11432
  if (options != null && options.removeAggregateCustomBuildMetric) {
11428
11433
  fields = fields.filter(function (field) {
11429
11434
  return !isCustomBuildMetric(field) || field.metric.type === PropertyType.Field || field.metric.type === PropertyType.NumberInput;
@@ -11918,7 +11923,6 @@ function prepareStoredFilters(response, globalFilters, validateFilters, checkApp
11918
11923
  var VIZZLY_LOG_LEVEL_STORED = '__VIZZLY__LOG_LEVEL_STORED';
11919
11924
  var RUNTIME_DEVELOPER_TOOLS = '__VIZZLY_RUNTIME_DEVELOPER_TOOLS';
11920
11925
  var VIZZLY_SERVER_LOG_LEVEL_STORED = '__VIZZLY__SERVER_LOG_LEVEL_STORED';
11921
- var packageJson = /*#__PURE__*/require("../package.json");
11922
11926
  if (typeof window !== 'undefined' && typeof localStorage !== 'undefined') {
11923
11927
  var previousLogLevel = /*#__PURE__*/localStorage.getItem(VIZZLY_LOG_LEVEL_STORED);
11924
11928
  if (previousLogLevel) {
@@ -11926,7 +11930,7 @@ if (typeof window !== 'undefined' && typeof localStorage !== 'undefined') {
11926
11930
  }
11927
11931
  // @ts-ignore
11928
11932
  window.VizzlyDev = {
11929
- version: (packageJson == null ? void 0 : packageJson['version']) || 'dev',
11933
+ version: '0.15.1 (hardcoded)',
11930
11934
  getServerLogLevel: function getServerLogLevel() {
11931
11935
  return localStorage.getItem(VIZZLY_SERVER_LOG_LEVEL_STORED);
11932
11936
  },