maz-ui 2.3.10 → 2.3.11

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.
@@ -2792,7 +2792,7 @@ var render = function() {
2792
2792
  value: _vm.countryCode,
2793
2793
  options: _vm.countriesSorted,
2794
2794
  placeholder: _vm.t.countrySelectorLabel,
2795
- search: "",
2795
+ search: !_vm.noSearch,
2796
2796
  position: _vm.position,
2797
2797
  "search-placeholder": _vm.t.countrySelectorSearchPlaceholder,
2798
2798
  "items-height": _vm.countriesHeight,
@@ -3358,6 +3358,11 @@ function _typeof(obj) { "@babel/helpers - typeof"; if (typeof Symbol === "functi
3358
3358
  type: Boolean,
3359
3359
  default: false
3360
3360
  },
3361
+ // Remove the search countries functionality
3362
+ noSearch: {
3363
+ type: Boolean,
3364
+ default: false
3365
+ },
3361
3366
  // Change the height of country item in list
3362
3367
  countriesHeight: {
3363
3368
  type: Number,
@@ -126,7 +126,7 @@ module.exports = require("vue-zoom-img");
126
126
  /* 6 */
127
127
  /***/ (function(module) {
128
128
 
129
- module.exports = JSON.parse("{\"a\":\"2.3.10\"}");
129
+ module.exports = JSON.parse("{\"a\":\"2.3.11\"}");
130
130
 
131
131
  /***/ }),
132
132
  /* 7 */
@@ -12182,7 +12182,7 @@ var _mainvue_type_template_id_0022c02d_render = function() {
12182
12182
  value: _vm.countryCode,
12183
12183
  options: _vm.countriesSorted,
12184
12184
  placeholder: _vm.t.countrySelectorLabel,
12185
- search: "",
12185
+ search: !_vm.noSearch,
12186
12186
  position: _vm.position,
12187
12187
  "search-placeholder": _vm.t.countrySelectorSearchPlaceholder,
12188
12188
  "items-height": _vm.countriesHeight,
@@ -13810,6 +13810,11 @@ function MazPhoneNumberInput_mainvue_type_script_lang_js_typeof(obj) { "@babel/h
13810
13810
  type: Boolean,
13811
13811
  default: false
13812
13812
  },
13813
+ // Remove the search countries functionality
13814
+ noSearch: {
13815
+ type: Boolean,
13816
+ default: false
13817
+ },
13813
13818
  // Change the height of country item in list
13814
13819
  countriesHeight: {
13815
13820
  type: Number,
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "maz-ui",
3
- "version": "2.3.10",
3
+ "version": "2.3.11",
4
4
  "main": "lib/maz-ui.common.js",
5
5
  "description": "A stand-alone components library for Vue.Js & Nuxt.Js",
6
6
  "author": "Louis Mazel <me@loicmazuel.com>",