@getlupa/client 0.8.2 → 0.9.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.
@@ -14834,7 +14834,8 @@ let TermFacet = class TermFacet extends Vue$1 {
14834
14834
  : `${this.sliderRange[0]}`;
14835
14835
  }
14836
14836
  set fromValue(stringValue) {
14837
- let value = +stringValue;
14837
+ const numberString = stringValue.replace(/[^0-9,.]/, "");
14838
+ let value = +numberString;
14838
14839
  if (value < this.facetMin) {
14839
14840
  value = this.facetMin;
14840
14841
  }
@@ -14850,7 +14851,8 @@ let TermFacet = class TermFacet extends Vue$1 {
14850
14851
  : `${this.sliderRange[1]}`;
14851
14852
  }
14852
14853
  set toValue(stringValue) {
14853
- let value = +stringValue;
14854
+ const numberString = stringValue.replace(/[^0-9,.]/, "");
14855
+ let value = +numberString;
14854
14856
  if (value > this.facetMax) {
14855
14857
  value = this.facetMax;
14856
14858
  }
@@ -15006,6 +15008,7 @@ var __vue_render__$N = function () {
15006
15008
  ],
15007
15009
  attrs: {
15008
15010
  type: "text",
15011
+ maxlength: "8",
15009
15012
  max: _vm.facetMax,
15010
15013
  min: _vm.facetMin,
15011
15014
  pattern: _vm.sliderInputFormat,
@@ -15046,6 +15049,7 @@ var __vue_render__$N = function () {
15046
15049
  ],
15047
15050
  attrs: {
15048
15051
  type: "text",
15052
+ maxlength: "8",
15049
15053
  max: _vm.facetMax,
15050
15054
  min: _vm.facetMin,
15051
15055
  pattern: _vm.sliderInputFormat,
@@ -14830,7 +14830,8 @@ let TermFacet = class TermFacet extends Vue$1 {
14830
14830
  : `${this.sliderRange[0]}`;
14831
14831
  }
14832
14832
  set fromValue(stringValue) {
14833
- let value = +stringValue;
14833
+ const numberString = stringValue.replace(/[^0-9,.]/, "");
14834
+ let value = +numberString;
14834
14835
  if (value < this.facetMin) {
14835
14836
  value = this.facetMin;
14836
14837
  }
@@ -14846,7 +14847,8 @@ let TermFacet = class TermFacet extends Vue$1 {
14846
14847
  : `${this.sliderRange[1]}`;
14847
14848
  }
14848
14849
  set toValue(stringValue) {
14849
- let value = +stringValue;
14850
+ const numberString = stringValue.replace(/[^0-9,.]/, "");
14851
+ let value = +numberString;
14850
14852
  if (value > this.facetMax) {
14851
14853
  value = this.facetMax;
14852
14854
  }
@@ -15002,6 +15004,7 @@ var __vue_render__$N = function () {
15002
15004
  ],
15003
15005
  attrs: {
15004
15006
  type: "text",
15007
+ maxlength: "8",
15005
15008
  max: _vm.facetMax,
15006
15009
  min: _vm.facetMin,
15007
15010
  pattern: _vm.sliderInputFormat,
@@ -15042,6 +15045,7 @@ var __vue_render__$N = function () {
15042
15045
  ],
15043
15046
  attrs: {
15044
15047
  type: "text",
15048
+ maxlength: "8",
15045
15049
  max: _vm.facetMax,
15046
15050
  min: _vm.facetMin,
15047
15051
  pattern: _vm.sliderInputFormat,