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-btn.js CHANGED
@@ -219,7 +219,7 @@ function normalizeComponent (
219
219
  __webpack_require__.r(__webpack_exports__);
220
220
 
221
221
  // CONCATENATED MODULE: ./node_modules/vue-loader/lib/loaders/templateLoader.js??vue-loader-options!./node_modules/vue-loader/lib??vue-loader-options!./packages/components/MazBtn/_main.vue?vue&type=template&id=247f3a44&
222
- var render = function() {
222
+ var render = function () {
223
223
  var _vm = this
224
224
  var _h = _vm.$createElement
225
225
  var _c = _vm._self._c || _h
@@ -232,31 +232,31 @@ var render = function() {
232
232
  class: [
233
233
  _vm.classes,
234
234
  {
235
- "maz-text-hidden": _vm.loading
236
- }
235
+ "maz-text-hidden": _vm.loading,
236
+ },
237
237
  ],
238
238
  attrs: {
239
239
  id: _vm.uniqueId,
240
240
  type: _vm.isLink ? null : _vm.type,
241
- disabled: _vm.isLink ? null : _vm.isDisabled
241
+ disabled: _vm.isLink ? null : _vm.isDisabled,
242
242
  },
243
243
  on: {
244
- click: function($event) {
244
+ click: function ($event) {
245
245
  return _vm.handleClick($event)
246
246
  },
247
- mouseenter: function($event) {
247
+ mouseenter: function ($event) {
248
248
  return _vm.emitMouseEnter($event)
249
249
  },
250
- mouseleave: function($event) {
250
+ mouseleave: function ($event) {
251
251
  return _vm.emitMouseLeave($event)
252
252
  },
253
- focus: function($event) {
253
+ focus: function ($event) {
254
254
  return _vm.emitFocus($event)
255
255
  },
256
- blur: function($event) {
256
+ blur: function ($event) {
257
257
  return _vm.emitBlur($event)
258
- }
259
- }
258
+ },
259
+ },
260
260
  },
261
261
  "component",
262
262
  _vm.$attrs,
@@ -269,15 +269,17 @@ var render = function() {
269
269
  {
270
270
  staticClass: "maz-flex maz-flex-center maz-btn__icon-left",
271
271
  class: {
272
- "maz-mr-2": !_vm.fab && _vm.hasSlotDefault()
273
- }
272
+ "maz-mr-2": !_vm.fab && _vm.hasSlotDefault(),
273
+ },
274
274
  },
275
275
  [
276
- _vm._t("icon-left" || false, [
277
- _c("i", { staticClass: "material-icons" }, [
278
- _vm._v(_vm._s(_vm.leftIconName || _vm.iconName))
279
- ])
280
- ])
276
+ _vm._t("icon-left" || false, function () {
277
+ return [
278
+ _c("i", { staticClass: "material-icons" }, [
279
+ _vm._v(_vm._s(_vm.leftIconName || _vm.iconName)),
280
+ ]),
281
+ ]
282
+ }),
281
283
  ],
282
284
  2
283
285
  )
@@ -287,7 +289,7 @@ var render = function() {
287
289
  {
288
290
  staticClass:
289
291
  "maz-flex maz-align-center maz-h-100 maz-overflow-hidden",
290
- class: [_vm.textClasses, { "maz-flex-1": _vm.hasSlotDefault() }]
292
+ class: [_vm.textClasses, { "maz-flex-1": _vm.hasSlotDefault() }],
291
293
  },
292
294
  [_vm._t("default")],
293
295
  2
@@ -298,15 +300,17 @@ var render = function() {
298
300
  {
299
301
  staticClass: "maz-flex maz-flex-center maz-btn__icon-right",
300
302
  class: {
301
- "maz-ml-2": !_vm.fab && _vm.hasSlotDefault()
302
- }
303
+ "maz-ml-2": !_vm.fab && _vm.hasSlotDefault(),
304
+ },
303
305
  },
304
306
  [
305
- _vm._t("icon-right", [
306
- _c("i", { staticClass: "material-icons" }, [
307
- _vm._v(_vm._s(_vm.rightIconName))
308
- ])
309
- ])
307
+ _vm._t("icon-right", function () {
308
+ return [
309
+ _c("i", { staticClass: "material-icons" }, [
310
+ _vm._v(_vm._s(_vm.rightIconName)),
311
+ ]),
312
+ ]
313
+ }),
310
314
  ],
311
315
  2
312
316
  )
@@ -318,7 +322,7 @@ var render = function() {
318
322
  [_c("MazSpinner", { attrs: { size: 25, color: _vm.color } })],
319
323
  1
320
324
  )
321
- : _vm._e()
325
+ : _vm._e(),
322
326
  ]
323
327
  )
324
328
  }
@@ -341,7 +345,7 @@ function _nonIterableSpread() { throw new TypeError("Invalid attempt to spread n
341
345
 
342
346
  function _unsupportedIterableToArray(o, minLen) { if (!o) return; if (typeof o === "string") return _arrayLikeToArray(o, minLen); var n = Object.prototype.toString.call(o).slice(8, -1); if (n === "Object" && o.constructor) n = o.constructor.name; if (n === "Map" || n === "Set") return Array.from(o); if (n === "Arguments" || /^(?:Ui|I)nt(?:8|16|32)(?:Clamped)?Array$/.test(n)) return _arrayLikeToArray(o, minLen); }
343
347
 
344
- function _iterableToArray(iter) { if (typeof Symbol !== "undefined" && Symbol.iterator in Object(iter)) return Array.from(iter); }
348
+ function _iterableToArray(iter) { if (typeof Symbol !== "undefined" && iter[Symbol.iterator] != null || iter["@@iterator"] != null) return Array.from(iter); }
345
349
 
346
350
  function _arrayWithoutHoles(arr) { if (Array.isArray(arr)) return _arrayLikeToArray(arr); }
347
351
 
@@ -635,7 +639,7 @@ _main.install = function (Vue) {
635
639
  __webpack_require__.r(__webpack_exports__);
636
640
 
637
641
  // CONCATENATED MODULE: ./node_modules/vue-loader/lib/loaders/templateLoader.js??vue-loader-options!./node_modules/vue-loader/lib??vue-loader-options!./packages/components/MazSpinner/_main.vue?vue&type=template&id=67a8ca41&
638
- var render = function() {
642
+ var render = function () {
639
643
  var _vm = this
640
644
  var _h = _vm.$createElement
641
645
  var _c = _vm._self._c || _h
@@ -645,9 +649,9 @@ var render = function() {
645
649
  staticClass: "maz-base-component maz-spinner maz-spinner-anim",
646
650
  class: [
647
651
  {
648
- "spinner-anim__white": _vm.dark
652
+ "spinner-anim__white": _vm.dark,
649
653
  },
650
- _vm.fillColorClass
654
+ _vm.fillColorClass,
651
655
  ],
652
656
  staticStyle: { "enable-background": "new 0 0 50 50" },
653
657
  attrs: {
@@ -658,16 +662,15 @@ var render = function() {
658
662
  x: "0px",
659
663
  y: "0px",
660
664
  viewBox: "0 0 50 50",
661
- "xml:space": "preserve"
662
- }
665
+ "xml:space": "preserve",
666
+ },
663
667
  },
664
668
  [
665
669
  _c("path", {
666
670
  attrs: {
667
- d:
668
- "M43.935,25.145c0-10.318-8.364-18.683-18.683-18.683c-10.318,0-18.683,8.365-18.683,18.683h4.068c0-8.071,6.543-14.615,14.615-14.615c8.072,0,14.615,6.543,14.615,14.615H43.935z"
669
- }
670
- })
671
+ d: "M43.935,25.145c0-10.318-8.364-18.683-18.683-18.683c-10.318,0-18.683,8.365-18.683,18.683h4.068c0-8.071,6.543-14.615,14.615-14.615c8.072,0,14.615,6.543,14.615,14.615H43.935z",
672
+ },
673
+ }),
671
674
  ]
672
675
  )
673
676
  }
package/lib/maz-card.js CHANGED
@@ -202,7 +202,7 @@ function normalizeComponent (
202
202
  __webpack_require__.r(__webpack_exports__);
203
203
 
204
204
  // CONCATENATED MODULE: ./node_modules/vue-loader/lib/loaders/templateLoader.js??vue-loader-options!./node_modules/vue-loader/lib??vue-loader-options!./packages/components/MazCard/_main.vue?vue&type=template&id=573c466c&
205
- var render = function() {
205
+ var render = function () {
206
206
  var _vm = this
207
207
  var _h = _vm.$createElement
208
208
  var _c = _vm._self._c || _h
@@ -215,9 +215,9 @@ var render = function() {
215
215
  "maz-card--no-scale": !_vm.scale,
216
216
  "maz-elevation": _vm.elevation,
217
217
  "maz-border-radius": _vm.radius,
218
- "maz-border maz-border-solid maz-border-color": _vm.bordered
218
+ "maz-border maz-border-solid maz-border-color": _vm.bordered,
219
219
  },
220
- style: [_vm.cardStyle]
220
+ style: [_vm.cardStyle],
221
221
  },
222
222
  [
223
223
  _c(
@@ -227,9 +227,9 @@ var render = function() {
227
227
  staticClass: "maz-card__wrapper maz-flex maz-flex-1",
228
228
  class: [
229
229
  "maz-direction-" + _vm.variant,
230
- { "maz-card__link": _vm.href }
230
+ { "maz-card__link": _vm.href },
231
231
  ],
232
- attrs: { href: _vm.href, target: _vm.href ? _vm.hrefTarget : null }
232
+ attrs: { href: _vm.href, target: _vm.href ? _vm.hrefTarget : null },
233
233
  },
234
234
  [
235
235
  _c(
@@ -248,10 +248,10 @@ var render = function() {
248
248
  zoom: _vm.zoom,
249
249
  "no-width": _vm.isColumnVariant,
250
250
  "no-height": !_vm.isColumnVariant && _vm.haveSomeContent,
251
- "no-remaining": _vm.noRemaining
252
- }
251
+ "no-remaining": _vm.noRemaining,
252
+ },
253
253
  })
254
- : _vm._e()
254
+ : _vm._e(),
255
255
  ],
256
256
  1
257
257
  ),
@@ -261,39 +261,42 @@ var render = function() {
261
261
  "div",
262
262
  { staticClass: "maz-card__content__wrapper maz-p-3" },
263
263
  [
264
- _vm._t("default", [
265
- _vm.$slots["title"]
266
- ? _c(
267
- "div",
268
- { staticClass: "maz-card__title" },
269
- [_vm._t("title")],
270
- 2
271
- )
272
- : _vm._e(),
273
- _vm.$slots["subtitle"]
274
- ? _c(
275
- "div",
276
- {
277
- staticClass: "maz-card__subtitle maz-text-muted"
278
- },
279
- [_vm._t("subtitle")],
280
- 2
281
- )
282
- : _vm._e(),
283
- _vm.$slots["content"]
284
- ? _c(
285
- "div",
286
- { staticClass: "maz-card__content maz-pt-2" },
287
- [_vm._t("content")],
288
- 2
289
- )
290
- : _vm._e()
291
- ])
264
+ _vm._t("default", function () {
265
+ return [
266
+ _vm.$slots["title"]
267
+ ? _c(
268
+ "div",
269
+ { staticClass: "maz-card__title" },
270
+ [_vm._t("title")],
271
+ 2
272
+ )
273
+ : _vm._e(),
274
+ _vm.$slots["subtitle"]
275
+ ? _c(
276
+ "div",
277
+ {
278
+ staticClass:
279
+ "maz-card__subtitle maz-text-muted",
280
+ },
281
+ [_vm._t("subtitle")],
282
+ 2
283
+ )
284
+ : _vm._e(),
285
+ _vm.$slots["content"]
286
+ ? _c(
287
+ "div",
288
+ { staticClass: "maz-card__content maz-pt-2" },
289
+ [_vm._t("content")],
290
+ 2
291
+ )
292
+ : _vm._e(),
293
+ ]
294
+ }),
292
295
  ],
293
296
  2
294
- )
297
+ ),
295
298
  ])
296
- : _vm._e()
299
+ : _vm._e(),
297
300
  ]
298
301
  ),
299
302
  _vm.$slots["footer"]
@@ -304,10 +307,10 @@ var render = function() {
304
307
  class: [
305
308
  {
306
309
  "maz-border-top maz-border-color maz-border-top-solid":
307
- _vm.isColumnVariant && _vm.haveSomeContent
310
+ _vm.isColumnVariant && _vm.haveSomeContent,
308
311
  },
309
- "maz-text-" + _vm.footerAlign
310
- ]
312
+ "maz-text-" + _vm.footerAlign,
313
+ ],
311
314
  },
312
315
  [_vm._t("footer")],
313
316
  2
@@ -320,7 +323,7 @@ var render = function() {
320
323
  [_vm._t("actions")],
321
324
  2
322
325
  )
323
- : _vm._e()
326
+ : _vm._e(),
324
327
  ],
325
328
  1
326
329
  )
@@ -202,7 +202,7 @@ function normalizeComponent (
202
202
  __webpack_require__.r(__webpack_exports__);
203
203
 
204
204
  // CONCATENATED MODULE: ./node_modules/vue-loader/lib/loaders/templateLoader.js??vue-loader-options!./node_modules/vue-loader/lib??vue-loader-options!./packages/components/MazCarousel/_main.vue?vue&type=template&id=69c48a9a&
205
- var render = function() {
205
+ var render = function () {
206
206
  var _vm = this
207
207
  var _h = _vm.$createElement
208
208
  var _c = _vm._self._c || _h
@@ -221,7 +221,7 @@ var render = function() {
221
221
  "div",
222
222
  {
223
223
  staticClass:
224
- "maz-carousel__header__actions maz-flex-1 maz-text-right"
224
+ "maz-carousel__header__actions maz-flex-1 maz-text-right",
225
225
  },
226
226
  [
227
227
  _c(
@@ -229,58 +229,61 @@ var render = function() {
229
229
  {
230
230
  staticClass: "maz-carousel__btn",
231
231
  class: {
232
- "maz-carousel__btn--muted": !_vm.isScrolled
232
+ "maz-carousel__btn--muted": !_vm.isScrolled,
233
233
  },
234
234
  attrs: {
235
235
  color: "transparent",
236
236
  outline: "",
237
237
  fab: "",
238
- size: "sm"
238
+ size: "sm",
239
239
  },
240
- on: { click: _vm.previous }
240
+ on: { click: _vm.previous },
241
241
  },
242
242
  [
243
- _vm._t("previous-icon", [
244
- _c(
245
- "svg",
246
- {
247
- staticClass: "display:inline-block",
248
- attrs: {
249
- width: "20px",
250
- height: "20px",
251
- viewBox: "0 0 20 20",
252
- version: "1.1",
253
- xmlns: "http://www.w3.org/2000/svg",
254
- "xmlns:xlink": "http://www.w3.org/1999/xlink",
255
- accent: "#03A89D"
256
- }
257
- },
258
- [
259
- _c(
260
- "g",
261
- {
262
- attrs: {
263
- id: "ChevronLeft",
264
- stroke: "none",
265
- "stroke-width": "1",
266
- fill: "none",
267
- "fill-rule": "evenodd"
268
- }
243
+ _vm._t("previous-icon", function () {
244
+ return [
245
+ _c(
246
+ "svg",
247
+ {
248
+ staticClass: "display:inline-block",
249
+ attrs: {
250
+ width: "20px",
251
+ height: "20px",
252
+ viewBox: "0 0 20 20",
253
+ version: "1.1",
254
+ xmlns: "http://www.w3.org/2000/svg",
255
+ "xmlns:xlink":
256
+ "http://www.w3.org/1999/xlink",
257
+ accent: "#03A89D",
269
258
  },
270
- [
271
- _c("polygon", {
259
+ },
260
+ [
261
+ _c(
262
+ "g",
263
+ {
272
264
  attrs: {
273
- id: "Fill",
274
- fill: "currentColor",
275
- points:
276
- "6.25 10 12.5 3.75 13.375 4.625 8 10 13.375 15.375 12.5 16.25"
277
- }
278
- })
279
- ]
280
- )
281
- ]
282
- )
283
- ])
265
+ id: "ChevronLeft",
266
+ stroke: "none",
267
+ "stroke-width": "1",
268
+ fill: "none",
269
+ "fill-rule": "evenodd",
270
+ },
271
+ },
272
+ [
273
+ _c("polygon", {
274
+ attrs: {
275
+ id: "Fill",
276
+ fill: "currentColor",
277
+ points:
278
+ "6.25 10 12.5 3.75 13.375 4.625 8 10 13.375 15.375 12.5 16.25",
279
+ },
280
+ }),
281
+ ]
282
+ ),
283
+ ]
284
+ ),
285
+ ]
286
+ }),
284
287
  ],
285
288
  2
286
289
  ),
@@ -289,65 +292,68 @@ var render = function() {
289
292
  {
290
293
  staticClass: "maz-carousel__btn",
291
294
  class: {
292
- "maz-carousel__btn--muted": _vm.isScrolledMax
295
+ "maz-carousel__btn--muted": _vm.isScrolledMax,
293
296
  },
294
297
  attrs: {
295
298
  color: "transparent",
296
299
  outline: "",
297
300
  fab: "",
298
- size: "sm"
301
+ size: "sm",
299
302
  },
300
- on: { click: _vm.next }
303
+ on: { click: _vm.next },
301
304
  },
302
305
  [
303
- _vm._t("next-icon", [
304
- _c(
305
- "svg",
306
- {
307
- staticClass: "display:inline-block",
308
- attrs: {
309
- width: "20px",
310
- height: "20px",
311
- viewBox: "0 0 20 20",
312
- version: "1.1",
313
- xmlns: "http://www.w3.org/2000/svg",
314
- "xmlns:xlink": "http://www.w3.org/1999/xlink",
315
- accent: "#03A89D"
316
- }
317
- },
318
- [
319
- _c(
320
- "g",
321
- {
322
- attrs: {
323
- id: "ChevronRight",
324
- stroke: "none",
325
- "stroke-width": "1",
326
- fill: "none",
327
- "fill-rule": "evenodd"
328
- }
306
+ _vm._t("next-icon", function () {
307
+ return [
308
+ _c(
309
+ "svg",
310
+ {
311
+ staticClass: "display:inline-block",
312
+ attrs: {
313
+ width: "20px",
314
+ height: "20px",
315
+ viewBox: "0 0 20 20",
316
+ version: "1.1",
317
+ xmlns: "http://www.w3.org/2000/svg",
318
+ "xmlns:xlink":
319
+ "http://www.w3.org/1999/xlink",
320
+ accent: "#03A89D",
329
321
  },
330
- [
331
- _c("polygon", {
322
+ },
323
+ [
324
+ _c(
325
+ "g",
326
+ {
332
327
  attrs: {
333
- id: "Fill",
334
- fill: "currentColor",
335
- points:
336
- "13.75 10 7.5 16.25 6.625 15.375 12 10 6.625 4.625 7.5 3.75"
337
- }
338
- })
339
- ]
340
- )
341
- ]
342
- )
343
- ])
328
+ id: "ChevronRight",
329
+ stroke: "none",
330
+ "stroke-width": "1",
331
+ fill: "none",
332
+ "fill-rule": "evenodd",
333
+ },
334
+ },
335
+ [
336
+ _c("polygon", {
337
+ attrs: {
338
+ id: "Fill",
339
+ fill: "currentColor",
340
+ points:
341
+ "13.75 10 7.5 16.25 6.625 15.375 12 10 6.625 4.625 7.5 3.75",
342
+ },
343
+ }),
344
+ ]
345
+ ),
346
+ ]
347
+ ),
348
+ ]
349
+ }),
344
350
  ],
345
351
  2
346
- )
352
+ ),
347
353
  ],
348
354
  1
349
355
  )
350
- : _vm._e()
356
+ : _vm._e(),
351
357
  ],
352
358
  2
353
359
  )
@@ -358,14 +364,14 @@ var render = function() {
358
364
  ref: "MazCarouselItems",
359
365
  staticClass:
360
366
  "maz-carousel__items maz-flex maz-align-center maz-flex-1 maz-py-4 maz-pl-3",
361
- on: { scroll: _vm.setScrollState }
367
+ on: { scroll: _vm.setScrollState },
362
368
  },
363
369
  [
364
370
  _vm._t("default"),
365
- _c("div", { staticClass: "maz-carousel__items__spacer" })
371
+ _c("div", { staticClass: "maz-carousel__items__spacer" }),
366
372
  ],
367
373
  2
368
- )
374
+ ),
369
375
  ]
370
376
  )
371
377
  }
@@ -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/MazCheckbox/_main.vue?vue&type=template&id=dbf83586&
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
@@ -228,7 +228,7 @@ var render = function() {
228
228
  "div",
229
229
  {
230
230
  staticClass: "maz-base-component maz-checkbox",
231
- class: ["maz-checkbox--" + _vm.color]
231
+ class: ["maz-checkbox--" + _vm.color],
232
232
  },
233
233
  [
234
234
  _c(
@@ -239,10 +239,10 @@ var render = function() {
239
239
  attrs: { id: _vm.uniqueId, name: _vm.name, type: "checkbox" },
240
240
  domProps: { checked: _vm.value },
241
241
  on: {
242
- change: function($event) {
242
+ change: function ($event) {
243
243
  return _vm.$emit("input", $event.target.checked)
244
- }
245
- }
244
+ },
245
+ },
246
246
  },
247
247
  "input",
248
248
  _vm.$attrs,
@@ -253,11 +253,11 @@ var render = function() {
253
253
  "label",
254
254
  {
255
255
  staticClass: "maz-m-0 maz-flex maz-align-center",
256
- attrs: { for: _vm.uniqueId }
256
+ attrs: { for: _vm.uniqueId },
257
257
  },
258
258
  [_vm._t("default")],
259
259
  2
260
- )
260
+ ),
261
261
  ]
262
262
  )
263
263
  }