maz-ui 2.3.8 → 2.3.12

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.
Files changed (74) hide show
  1. package/lib/css/base.css +1 -1
  2. package/lib/css/index.css +1 -1
  3. package/lib/css/maz-avatar.css +1 -1
  4. package/lib/css/maz-bottom-sheet.css +1 -1
  5. package/lib/css/maz-btn-group.css +1 -1
  6. package/lib/css/maz-card.css +1 -1
  7. package/lib/css/maz-carousel.css +1 -1
  8. package/lib/css/maz-checkbox.css +1 -1
  9. package/lib/css/maz-collapse.css +1 -1
  10. package/lib/css/maz-dialog.css +1 -1
  11. package/lib/css/maz-draggable-list.css +1 -1
  12. package/lib/css/maz-dropdown.css +1 -1
  13. package/lib/css/maz-dropzone.css +1 -1
  14. package/lib/css/maz-img.css +1 -1
  15. package/lib/css/maz-input-tags.css +1 -1
  16. package/lib/css/maz-list-item.css +1 -1
  17. package/lib/css/maz-list.css +1 -1
  18. package/lib/css/maz-pagination.css +1 -1
  19. package/lib/css/maz-phone-number-input.css +1 -1
  20. package/lib/css/maz-picker.css +1 -1
  21. package/lib/css/maz-progress-bar.css +1 -1
  22. package/lib/css/maz-radio.css +1 -1
  23. package/lib/css/maz-read-more.css +1 -1
  24. package/lib/css/maz-responsive-menu.css +1 -1
  25. package/lib/css/maz-search.css +1 -1
  26. package/lib/css/maz-sidebar.css +1 -1
  27. package/lib/css/maz-slider.css +1 -1
  28. package/lib/css/maz-stepper.css +1 -1
  29. package/lib/css/maz-switch.css +1 -1
  30. package/lib/css/maz-tabs-bar.css +1 -1
  31. package/lib/css/maz-tabs-content-item.css +1 -1
  32. package/lib/css/maz-tabs-content.css +1 -1
  33. package/lib/index.js +1 -1
  34. package/lib/maz-avatar.js +15 -15
  35. package/lib/maz-bottom-sheet.js +71 -66
  36. package/lib/maz-btn-group.js +47 -44
  37. package/lib/maz-btn.js +40 -37
  38. package/lib/maz-card.js +45 -42
  39. package/lib/maz-carousel.js +97 -91
  40. package/lib/maz-checkbox.js +7 -7
  41. package/lib/maz-collapse.js +68 -59
  42. package/lib/maz-dialog.js +124 -110
  43. package/lib/maz-draggable-list.js +25 -21
  44. package/lib/maz-dropdown.js +19 -19
  45. package/lib/maz-dropzone.js +9 -9
  46. package/lib/maz-flex.js +1 -1
  47. package/lib/maz-gallery.js +30 -31
  48. package/lib/maz-img.js +19 -20
  49. package/lib/maz-input-tags.js +75 -72
  50. package/lib/maz-input.js +73 -69
  51. package/lib/maz-list-item.js +5 -5
  52. package/lib/maz-list.js +5 -5
  53. package/lib/maz-loader.js +6 -6
  54. package/lib/maz-pagination.js +69 -66
  55. package/lib/maz-phone-number-input.js +300 -276
  56. package/lib/maz-picker.js +363 -336
  57. package/lib/maz-plotly.js +4 -4
  58. package/lib/maz-progress-bar.js +13 -13
  59. package/lib/maz-radio.js +8 -8
  60. package/lib/maz-read-more.js +7 -7
  61. package/lib/maz-responsive-menu.js +17 -17
  62. package/lib/maz-search.js +136 -126
  63. package/lib/maz-select.js +248 -231
  64. package/lib/maz-sidebar.js +44 -38
  65. package/lib/maz-slider.js +27 -27
  66. package/lib/maz-spinner.js +8 -9
  67. package/lib/maz-stepper.js +53 -50
  68. package/lib/maz-switch.js +5 -5
  69. package/lib/maz-tabs-bar.js +10 -10
  70. package/lib/maz-tabs-content-item.js +5 -5
  71. package/lib/maz-tabs-content.js +2 -2
  72. package/lib/maz-transition-expand.js +2 -2
  73. package/lib/maz-ui.common.js +1228 -1141
  74. package/package.json +31 -30
package/lib/maz-search.js CHANGED
@@ -220,7 +220,7 @@ function normalizeComponent (
220
220
  __webpack_require__.r(__webpack_exports__);
221
221
 
222
222
  // CONCATENATED MODULE: ./node_modules/vue-loader/lib/loaders/templateLoader.js??vue-loader-options!./node_modules/vue-loader/lib??vue-loader-options!./packages/components/MazSearch/_main.vue?vue&type=template&id=c5d051bc&
223
- var render = function() {
223
+ var render = function () {
224
224
  var _vm = this
225
225
  var _h = _vm.$createElement
226
226
  var _c = _vm._self._c || _h
@@ -231,13 +231,13 @@ var render = function() {
231
231
  class: [
232
232
  { "maz-is-dark": _vm.dark },
233
233
  "maz-search--" + _vm.color,
234
- "maz-search--" + _vm.size
234
+ "maz-search--" + _vm.size,
235
235
  ],
236
236
  on: {
237
- "!blur": function($event) {
238
- return _vm.closeList($event)
239
- }
240
- }
237
+ "!blur": function ($event) {
238
+ return _vm.closeList.apply(null, arguments)
239
+ },
240
+ },
241
241
  },
242
242
  [
243
243
  _c(
@@ -249,38 +249,38 @@ var render = function() {
249
249
  color: _vm.color,
250
250
  loading: _vm.loading,
251
251
  debounce: _vm.debounce,
252
- size: _vm.size
252
+ size: _vm.size,
253
253
  },
254
254
  on: {
255
255
  input: _vm.inputEvent,
256
256
  keydown: _vm.keyboardNav,
257
257
  focus: _vm.openList,
258
- keyup: function($event) {
258
+ keyup: function ($event) {
259
259
  return _vm.$emit("keyup", $event)
260
260
  },
261
- change: function($event) {
261
+ change: function ($event) {
262
262
  return _vm.$emit("change", $event)
263
263
  },
264
- clear: function($event) {
264
+ clear: function ($event) {
265
265
  return _vm.$emit("clear", $event)
266
266
  },
267
- blur: function($event) {
267
+ blur: function ($event) {
268
268
  return _vm.$emit("blur", $event)
269
269
  },
270
- paste: function($event) {
270
+ paste: function ($event) {
271
271
  return _vm.$emit("paste", $event)
272
272
  },
273
- click: function($event) {
273
+ click: function ($event) {
274
274
  return _vm.$emit("click", $event)
275
- }
275
+ },
276
276
  },
277
277
  model: {
278
278
  value: _vm.query,
279
- callback: function($$v) {
279
+ callback: function ($$v) {
280
280
  _vm.query = $$v
281
281
  },
282
- expression: "query"
283
- }
282
+ expression: "query",
283
+ },
284
284
  },
285
285
  "MazInput",
286
286
  _vm.$attrs,
@@ -288,7 +288,7 @@ var render = function() {
288
288
  ),
289
289
  [
290
290
  _vm._t("icon-left", null, { slot: "icon-left" }),
291
- _vm._t("icon-right", null, { slot: "icon-right" })
291
+ _vm._t("icon-right", null, { slot: "icon-right" }),
292
292
  ],
293
293
  2
294
294
  ),
@@ -298,10 +298,10 @@ var render = function() {
298
298
  "div",
299
299
  {
300
300
  ref: "itemsList",
301
- staticClass: "maz-search__items maz-elevation"
301
+ staticClass: "maz-search__items maz-elevation",
302
302
  },
303
303
  [
304
- _vm._l(_vm.items, function(item, i) {
304
+ _vm._l(_vm.items, function (item, i) {
305
305
  return _c(
306
306
  "button",
307
307
  {
@@ -315,34 +315,36 @@ var render = function() {
315
315
  _vm.value ===
316
316
  (_vm.itemValue
317
317
  ? _vm.getItemQuery(_vm.itemValue, item)
318
- : item)
318
+ : item),
319
319
  },
320
- { "keyboard-selected": _vm.tmpValue === item }
320
+ { "keyboard-selected": _vm.tmpValue === item },
321
321
  ],
322
322
  attrs: { type: "button", tabindex: "-1" },
323
323
  on: {
324
- click: function($event) {
324
+ click: function ($event) {
325
325
  $event.stopPropagation()
326
326
  return _vm.updateValue(item)
327
- }
328
- }
327
+ },
328
+ },
329
329
  },
330
330
  [
331
331
  _vm._t(
332
332
  "default",
333
- [
334
- _c("p", [
335
- _vm._v(
336
- _vm._s(
337
- _vm.itemText
338
- ? _vm.getItemQuery(_vm.itemText, item)
339
- : item
340
- )
341
- )
342
- ])
343
- ],
333
+ function () {
334
+ return [
335
+ _c("p", [
336
+ _vm._v(
337
+ _vm._s(
338
+ _vm.itemText
339
+ ? _vm.getItemQuery(_vm.itemText, item)
340
+ : item
341
+ )
342
+ ),
343
+ ]),
344
+ ]
345
+ },
344
346
  { item: item, tag: "div" }
345
- )
347
+ ),
346
348
  ],
347
349
  2
348
350
  )
@@ -350,30 +352,34 @@ var render = function() {
350
352
  _vm.hasNoDataSlot
351
353
  ? _vm._t(
352
354
  "no-data",
353
- [
354
- _c(
355
- "div",
356
- {
357
- staticClass:
358
- "maz-search__no-data maz-p-2 maz-flex maz-flex-center"
359
- },
360
- [
361
- _c(
362
- "i",
363
- { staticClass: "material-icons maz-text-danger" },
364
- [_vm._v("\n search_off\n ")]
365
- )
366
- ]
367
- )
368
- ],
355
+ function () {
356
+ return [
357
+ _c(
358
+ "div",
359
+ {
360
+ staticClass:
361
+ "maz-search__no-data maz-p-2 maz-flex maz-flex-center",
362
+ },
363
+ [
364
+ _c(
365
+ "i",
366
+ {
367
+ staticClass: "material-icons maz-text-danger",
368
+ },
369
+ [_vm._v("\n search_off\n ")]
370
+ ),
371
+ ]
372
+ ),
373
+ ]
374
+ },
369
375
  { tag: "div" }
370
376
  )
371
- : _vm._e()
377
+ : _vm._e(),
372
378
  ],
373
379
  2
374
380
  )
375
- : _vm._e()
376
- ])
381
+ : _vm._e(),
382
+ ]),
377
383
  ],
378
384
  1
379
385
  )
@@ -388,7 +394,7 @@ render._withStripped = true
388
394
  var MazInput = __webpack_require__(8);
389
395
 
390
396
  // CONCATENATED MODULE: ./node_modules/babel-loader/lib!./node_modules/vue-loader/lib??vue-loader-options!./packages/components/MazSearch/_main.vue?vue&type=script&lang=js&
391
- function _typeof(obj) { "@babel/helpers - typeof"; if (typeof Symbol === "function" && typeof Symbol.iterator === "symbol") { _typeof = function _typeof(obj) { return typeof obj; }; } else { _typeof = function _typeof(obj) { return obj && typeof Symbol === "function" && obj.constructor === Symbol && obj !== Symbol.prototype ? "symbol" : typeof obj; }; } return _typeof(obj); }
397
+ function _typeof(obj) { "@babel/helpers - typeof"; return _typeof = "function" == typeof Symbol && "symbol" == typeof Symbol.iterator ? function (obj) { return typeof obj; } : function (obj) { return obj && "function" == typeof Symbol && obj.constructor === Symbol && obj !== Symbol.prototype ? "symbol" : typeof obj; }, _typeof(obj); }
392
398
 
393
399
  //
394
400
  //
@@ -759,7 +765,7 @@ __webpack_require__.d(__webpack_exports__, "b", function() { return /* reexport
759
765
  __webpack_require__.r(__webpack_exports__);
760
766
 
761
767
  // CONCATENATED MODULE: ./node_modules/vue-loader/lib/loaders/templateLoader.js??vue-loader-options!./node_modules/vue-loader/lib??vue-loader-options!./packages/components/MazInput/_main.vue?vue&type=template&id=5b617c72&
762
- var render = function() {
768
+ var render = function () {
763
769
  var _vm = this
764
770
  var _h = _vm.$createElement
765
771
  var _c = _vm._self._c || _h
@@ -781,13 +787,13 @@ var render = function() {
781
787
  "maz-is-dark": _vm.dark,
782
788
  "has-hint": _vm.hint,
783
789
  "has-no-label": !_vm.hasLabel && !_vm.hint,
784
- "has-left-icon": _vm.hasLeftIcon()
790
+ "has-left-icon": _vm.hasLeftIcon(),
785
791
  },
786
792
  "maz-input--" + _vm.size,
787
793
  "has-" + _vm.leftNumberIcon + "-right-icon",
788
- "maz-input--" + _vm.color
794
+ "maz-input--" + _vm.color,
789
795
  ],
790
- on: { click: _vm.focusInput }
796
+ on: { click: _vm.focusInput },
791
797
  },
792
798
  [
793
799
  _vm.hasLeftIcon()
@@ -796,15 +802,17 @@ var render = function() {
796
802
  {
797
803
  staticClass: "maz-input__icon maz-flex left",
798
804
  class: [
799
- _vm.textarea ? "maz-align-start maz-pt-2" : "maz-align-center"
800
- ]
805
+ _vm.textarea ? "maz-align-start maz-pt-2" : "maz-align-center",
806
+ ],
801
807
  },
802
808
  [
803
- _vm._t("icon-left", [
804
- _c("i", { staticClass: "material-icons" }, [
805
- _vm._v(_vm._s(_vm.leftIconName))
806
- ])
807
- ])
809
+ _vm._t("icon-left", function () {
810
+ return [
811
+ _c("i", { staticClass: "material-icons" }, [
812
+ _vm._v(_vm._s(_vm.leftIconName)),
813
+ ]),
814
+ ]
815
+ }),
808
816
  ],
809
817
  2
810
818
  )
@@ -815,15 +823,17 @@ var render = function() {
815
823
  {
816
824
  staticClass: "maz-input__icon maz-flex right",
817
825
  class: [
818
- _vm.textarea ? "maz-align-start maz-pt-2" : "maz-align-center"
819
- ]
826
+ _vm.textarea ? "maz-align-start maz-pt-2" : "maz-align-center",
827
+ ],
820
828
  },
821
829
  [
822
- _vm._t("icon-right", [
823
- _c("i", { staticClass: "material-icons" }, [
824
- _vm._v(_vm._s(_vm.rightIconName))
825
- ])
826
- ])
830
+ _vm._t("icon-right", function () {
831
+ return [
832
+ _c("i", { staticClass: "material-icons" }, [
833
+ _vm._v(_vm._s(_vm.rightIconName)),
834
+ ]),
835
+ ]
836
+ }),
827
837
  ],
828
838
  2
829
839
  )
@@ -838,14 +848,14 @@ var render = function() {
838
848
  name: "model",
839
849
  rawName: "v-model",
840
850
  value: _vm.inputValue,
841
- expression: "inputValue"
842
- }
851
+ expression: "inputValue",
852
+ },
843
853
  ],
844
854
  ref: "MazInput",
845
855
  staticClass: "maz-input__input maz-border-radius",
846
856
  class: {
847
857
  "has-right-icon":
848
- _vm.hasClearBtn || _vm.hasPasswordBtn || _vm.hasRightIcon()
858
+ _vm.hasClearBtn || _vm.hasPasswordBtn || _vm.hasRightIcon(),
849
859
  },
850
860
  attrs: {
851
861
  id: _vm.uniqueId,
@@ -854,12 +864,12 @@ var render = function() {
854
864
  disabled: _vm.disabled,
855
865
  required: _vm.required,
856
866
  readonly: _vm.readonly,
857
- type: "checkbox"
867
+ type: "checkbox",
858
868
  },
859
869
  domProps: {
860
870
  checked: Array.isArray(_vm.inputValue)
861
871
  ? _vm._i(_vm.inputValue, null) > -1
862
- : _vm.inputValue
872
+ : _vm.inputValue,
863
873
  },
864
874
  on: {
865
875
  keydown: _vm.keyDown,
@@ -868,7 +878,7 @@ var render = function() {
868
878
  blur: _vm.onBlur,
869
879
  paste: _vm.onPaste,
870
880
  change: [
871
- function($event) {
881
+ function ($event) {
872
882
  var $$a = _vm.inputValue,
873
883
  $$el = $event.target,
874
884
  $$c = $$el.checked ? true : false
@@ -887,12 +897,12 @@ var render = function() {
887
897
  _vm.inputValue = $$c
888
898
  }
889
899
  },
890
- _vm.onChange
900
+ _vm.onChange,
891
901
  ],
892
- click: function($event) {
902
+ click: function ($event) {
893
903
  return _vm.$emit("click", $event)
894
- }
895
- }
904
+ },
905
+ },
896
906
  },
897
907
  "input",
898
908
  _vm.$attrs,
@@ -909,14 +919,14 @@ var render = function() {
909
919
  name: "model",
910
920
  rawName: "v-model",
911
921
  value: _vm.inputValue,
912
- expression: "inputValue"
913
- }
922
+ expression: "inputValue",
923
+ },
914
924
  ],
915
925
  ref: "MazInput",
916
926
  staticClass: "maz-input__input maz-border-radius",
917
927
  class: {
918
928
  "has-right-icon":
919
- _vm.hasClearBtn || _vm.hasPasswordBtn || _vm.hasRightIcon()
929
+ _vm.hasClearBtn || _vm.hasPasswordBtn || _vm.hasRightIcon(),
920
930
  },
921
931
  attrs: {
922
932
  id: _vm.uniqueId,
@@ -925,7 +935,7 @@ var render = function() {
925
935
  disabled: _vm.disabled,
926
936
  required: _vm.required,
927
937
  readonly: _vm.readonly,
928
- type: "radio"
938
+ type: "radio",
929
939
  },
930
940
  domProps: { checked: _vm._q(_vm.inputValue, null) },
931
941
  on: {
@@ -935,15 +945,15 @@ var render = function() {
935
945
  blur: _vm.onBlur,
936
946
  paste: _vm.onPaste,
937
947
  change: [
938
- function($event) {
948
+ function ($event) {
939
949
  _vm.inputValue = null
940
950
  },
941
- _vm.onChange
951
+ _vm.onChange,
942
952
  ],
943
- click: function($event) {
953
+ click: function ($event) {
944
954
  return _vm.$emit("click", $event)
945
- }
946
- }
955
+ },
956
+ },
947
957
  },
948
958
  "input",
949
959
  _vm.$attrs,
@@ -960,14 +970,14 @@ var render = function() {
960
970
  name: "model",
961
971
  rawName: "v-model",
962
972
  value: _vm.inputValue,
963
- expression: "inputValue"
964
- }
973
+ expression: "inputValue",
974
+ },
965
975
  ],
966
976
  ref: "MazInput",
967
977
  staticClass: "maz-input__input maz-border-radius",
968
978
  class: {
969
979
  "has-right-icon":
970
- _vm.hasClearBtn || _vm.hasPasswordBtn || _vm.hasRightIcon()
980
+ _vm.hasClearBtn || _vm.hasPasswordBtn || _vm.hasRightIcon(),
971
981
  },
972
982
  attrs: {
973
983
  id: _vm.uniqueId,
@@ -976,7 +986,7 @@ var render = function() {
976
986
  disabled: _vm.disabled,
977
987
  required: _vm.required,
978
988
  readonly: _vm.readonly,
979
- type: _vm.getType
989
+ type: _vm.getType,
980
990
  },
981
991
  domProps: { value: _vm.inputValue },
982
992
  on: {
@@ -986,16 +996,16 @@ var render = function() {
986
996
  blur: _vm.onBlur,
987
997
  paste: _vm.onPaste,
988
998
  change: _vm.onChange,
989
- click: function($event) {
999
+ click: function ($event) {
990
1000
  return _vm.$emit("click", $event)
991
1001
  },
992
- input: function($event) {
1002
+ input: function ($event) {
993
1003
  if ($event.target.composing) {
994
1004
  return
995
1005
  }
996
1006
  _vm.inputValue = $event.target.value
997
- }
998
- }
1007
+ },
1008
+ },
999
1009
  },
1000
1010
  "input",
1001
1011
  _vm.$attrs,
@@ -1011,8 +1021,8 @@ var render = function() {
1011
1021
  name: "model",
1012
1022
  rawName: "v-model",
1013
1023
  value: _vm.inputValue,
1014
- expression: "inputValue"
1015
- }
1024
+ expression: "inputValue",
1025
+ },
1016
1026
  ],
1017
1027
  ref: "MazInput",
1018
1028
  staticClass: "maz-input__input maz-textarea",
@@ -1021,7 +1031,7 @@ var render = function() {
1021
1031
  placeholder: _vm.placeholderValue,
1022
1032
  type: _vm.type,
1023
1033
  required: _vm.required,
1024
- readonly: _vm.readonly
1034
+ readonly: _vm.readonly,
1025
1035
  },
1026
1036
  domProps: { value: _vm.inputValue },
1027
1037
  on: {
@@ -1031,16 +1041,16 @@ var render = function() {
1031
1041
  blur: _vm.onBlur,
1032
1042
  paste: _vm.onPaste,
1033
1043
  change: _vm.onChange,
1034
- click: function($event) {
1044
+ click: function ($event) {
1035
1045
  return _vm.$emit("click", $event)
1036
1046
  },
1037
- input: function($event) {
1047
+ input: function ($event) {
1038
1048
  if ($event.target.composing) {
1039
1049
  return
1040
1050
  }
1041
1051
  _vm.inputValue = $event.target.value
1042
- }
1043
- }
1052
+ },
1053
+ },
1044
1054
  },
1045
1055
  "textarea",
1046
1056
  _vm.$attrs,
@@ -1055,14 +1065,14 @@ var render = function() {
1055
1065
  staticClass: "maz-input__label",
1056
1066
  class: _vm.error ? "maz-text-danger" : null,
1057
1067
  attrs: { for: _vm.uniqueId, tabindex: "-1" },
1058
- on: { click: _vm.focusInput }
1068
+ on: { click: _vm.focusInput },
1059
1069
  },
1060
1070
  [
1061
1071
  _vm._v(
1062
1072
  "\n " +
1063
1073
  _vm._s(_vm.hintValue || _vm.placeholderValue) +
1064
1074
  "\n "
1065
- )
1075
+ ),
1066
1076
  ]
1067
1077
  )
1068
1078
  : _vm._e(),
@@ -1077,18 +1087,18 @@ var render = function() {
1077
1087
  class: { "has-right-icon": _vm.hasRightIcon() },
1078
1088
  attrs: { title: "clear", type: "button", tabindex: "-1" },
1079
1089
  on: {
1080
- click: function($event) {
1090
+ click: function ($event) {
1081
1091
  $event.stopPropagation()
1082
- return _vm.clear($event)
1083
- }
1084
- }
1092
+ return _vm.clear.apply(null, arguments)
1093
+ },
1094
+ },
1085
1095
  },
1086
1096
  [
1087
1097
  _c(
1088
1098
  "i",
1089
1099
  { staticClass: "maz-input__toggle-btn__icon material-icons" },
1090
1100
  [_vm._v("\n close\n ")]
1091
- )
1101
+ ),
1092
1102
  ]
1093
1103
  )
1094
1104
  : _vm._e(),
@@ -1101,14 +1111,14 @@ var render = function() {
1101
1111
  "maz-input__toggle-btn password maz-flex maz-flex-center",
1102
1112
  class: {
1103
1113
  "has-clear-btn": _vm.hasClearBtn,
1104
- "has-right-icon": _vm.hasRightIcon()
1114
+ "has-right-icon": _vm.hasRightIcon(),
1105
1115
  },
1106
1116
  attrs: { title: "clear", type: "button", tabindex: "-1" },
1107
1117
  on: {
1108
- click: function($event) {
1118
+ click: function ($event) {
1109
1119
  _vm.showPassword = !_vm.showPassword
1110
- }
1111
- }
1120
+ },
1121
+ },
1112
1122
  },
1113
1123
  [
1114
1124
  _c(
@@ -1121,23 +1131,23 @@ var render = function() {
1121
1131
  _vm.showPassword ? "visibility_off" : "visibility"
1122
1132
  ) +
1123
1133
  "\n "
1124
- )
1134
+ ),
1125
1135
  ]
1126
- )
1136
+ ),
1127
1137
  ]
1128
1138
  )
1129
- : _vm._e()
1139
+ : _vm._e(),
1130
1140
  ]),
1131
1141
  _vm.loading
1132
1142
  ? _c(
1133
1143
  "div",
1134
1144
  {
1135
1145
  staticClass: "maz-input__loader",
1136
- class: { textarea: _vm.textarea }
1146
+ class: { textarea: _vm.textarea },
1137
1147
  },
1138
1148
  [_c("div", { staticClass: "maz-input__loader__progress-bar" })]
1139
1149
  )
1140
- : _vm._e()
1150
+ : _vm._e(),
1141
1151
  ],
1142
1152
  1
1143
1153
  )
@@ -1155,7 +1165,7 @@ var uniqueId = __webpack_require__(2);
1155
1165
  var utils = __webpack_require__(6);
1156
1166
 
1157
1167
  // CONCATENATED MODULE: ./node_modules/babel-loader/lib!./node_modules/vue-loader/lib??vue-loader-options!./packages/components/MazInput/_main.vue?vue&type=script&lang=js&
1158
- function _typeof(obj) { "@babel/helpers - typeof"; if (typeof Symbol === "function" && typeof Symbol.iterator === "symbol") { _typeof = function _typeof(obj) { return typeof obj; }; } else { _typeof = function _typeof(obj) { return obj && typeof Symbol === "function" && obj.constructor === Symbol && obj !== Symbol.prototype ? "symbol" : typeof obj; }; } return _typeof(obj); }
1168
+ function _typeof(obj) { "@babel/helpers - typeof"; return _typeof = "function" == typeof Symbol && "symbol" == typeof Symbol.iterator ? function (obj) { return typeof obj; } : function (obj) { return obj && "function" == typeof Symbol && obj.constructor === Symbol && obj !== Symbol.prototype ? "symbol" : typeof obj; }, _typeof(obj); }
1159
1169
 
1160
1170
  //
1161
1171
  //