maz-ui 4.3.2-beta.2 → 4.3.3

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 (51) hide show
  1. package/dist/assets/MazAnimatedText.DwSVjclZ.css +1 -0
  2. package/dist/assets/MazAvatar.DuuEqNTd.css +1 -0
  3. package/dist/assets/{MazBtn.Dsb_1R1w.css → MazBtn.Dk675mx2.css} +1 -1
  4. package/dist/assets/MazCard.DbmD9Zbl.css +1 -0
  5. package/dist/assets/MazIcon.3HqpAIna.css +1 -0
  6. package/dist/assets/MazInput.BSmkNTOh.css +1 -0
  7. package/dist/assets/MazLink.D-fVSh3z.css +1 -0
  8. package/dist/assets/MazPopover.DU4IHV-5.css +1 -0
  9. package/dist/assets/MazSelect.uFknehxz.css +1 -0
  10. package/dist/assets/{MazStepper.Dg9khVJG.css → MazStepper.lKRkBZZK.css} +1 -1
  11. package/dist/assets/MazTable.AfDvicwj.css +1 -0
  12. package/dist/assets/{MazTabsContentItem.C84SDmj0.css → MazTabsContentItem.B1dilH-w.css} +1 -1
  13. package/dist/assets/{toast.ClbXOwsL.css → toast.DRXp_3fJ.css} +1 -1
  14. package/dist/chunks/{MazDropdown.vue_vue_type_style_index_0_lang.BnTHMdrm.js → MazDropdown.vue_vue_type_style_index_0_lang.Cym3Pk2B.js} +12 -4
  15. package/dist/chunks/{MazTable.vue_vue_type_script_setup_true_lang.F9DFa_6O.js → MazTable.vue_vue_type_script_setup_true_lang.C2UTYkLu.js} +3 -3
  16. package/dist/components/MazAnimatedText.js +2 -2
  17. package/dist/components/MazAvatar.js +2 -2
  18. package/dist/components/MazBtn.js +2 -2
  19. package/dist/components/MazCard.js +2 -2
  20. package/dist/components/MazDatePicker.vue.d.ts +6 -2
  21. package/dist/components/MazDropdown.js +1 -1
  22. package/dist/components/MazDropdown.vue.d.ts +268 -2
  23. package/dist/components/MazIcon.js +2 -2
  24. package/dist/components/MazInput.js +2 -2
  25. package/dist/components/MazLink.js +2 -2
  26. package/dist/components/MazPopover.js +10 -3
  27. package/dist/components/MazPopover.vue.d.ts +7 -0
  28. package/dist/components/MazSelect.js +6 -4
  29. package/dist/components/MazStepper.js +2 -2
  30. package/dist/components/MazTable.js +3 -3
  31. package/dist/components/MazTableCell.js +1 -1
  32. package/dist/components/MazTableRow.js +1 -1
  33. package/dist/components/MazTableTitle.js +1 -1
  34. package/dist/components/MazTabsContentItem.js +8 -10
  35. package/dist/components/MazTabsContentItem.vue.d.ts +2 -6
  36. package/dist/components/index.js +1 -1
  37. package/dist/plugins/toast.js +2 -2
  38. package/dist/types/components/MazDatePicker.vue.d.ts +6 -2
  39. package/dist/types/components/MazDropdown.vue.d.ts +268 -2
  40. package/dist/types/components/MazPopover.vue.d.ts +7 -0
  41. package/dist/types/components/MazTabsContentItem.vue.d.ts +2 -6
  42. package/package.json +21 -21
  43. package/dist/assets/MazAnimatedText.DFwgvVgF.css +0 -1
  44. package/dist/assets/MazAvatar.DTiCyWfl.css +0 -1
  45. package/dist/assets/MazCard.CV__I-ku.css +0 -1
  46. package/dist/assets/MazIcon.Cl1pfRbK.css +0 -1
  47. package/dist/assets/MazInput.CHYQSgY8.css +0 -1
  48. package/dist/assets/MazLink.CXeMXonQ.css +0 -1
  49. package/dist/assets/MazPopover.DQ6XHvaR.css +0 -1
  50. package/dist/assets/MazSelect.HKw9qRZV.css +0 -1
  51. package/dist/assets/MazTable.BKlwCDt4.css +0 -1
@@ -224,7 +224,140 @@ declare function __VLS_template(): {
224
224
  toggle: () => void;
225
225
  }): any;
226
226
  };
227
- refs: {};
227
+ refs: {
228
+ mazPopoverRef: ({
229
+ $: import('vue').ComponentInternalInstance;
230
+ $data: {};
231
+ $props: {
232
+ readonly modelValue?: boolean | undefined;
233
+ readonly position?: import('./MazPopover.vue').MazPopoverPosition | undefined;
234
+ readonly preferPosition?: import('./MazPopover.vue').MazPopoverPreferPosition | undefined;
235
+ readonly fallbackPosition?: import('./MazPopover.vue').MazPopoverFallbackPosition | undefined;
236
+ readonly trigger?: import('./MazPopover.vue').MazPopoverTrigger | undefined;
237
+ readonly role?: import('./MazPopover.vue').MazPopoverRole | undefined;
238
+ readonly ariaLabel?: string | undefined;
239
+ readonly announceChanges?: boolean | undefined;
240
+ readonly disabled?: boolean | undefined;
241
+ readonly offset?: number | undefined;
242
+ readonly delay?: number | undefined;
243
+ readonly hoverDelay?: number | undefined;
244
+ readonly transition?: "scale-pop" | "scale-fade" | string | undefined;
245
+ readonly teleportTo?: string | undefined;
246
+ readonly overlayClass?: HTMLAttributes["class"];
247
+ readonly panelClass?: HTMLAttributes["class"];
248
+ readonly panelStyle?: import('vue').StyleValue;
249
+ readonly closeOnClickOutside?: boolean | undefined;
250
+ readonly closeOnEscape?: boolean | undefined;
251
+ readonly persistent?: boolean | undefined;
252
+ readonly id?: string | undefined;
253
+ readonly ariaLabelledby?: string | undefined;
254
+ readonly ariaDescribedby?: string | undefined;
255
+ readonly color?: (MazColor | "background") | undefined;
256
+ readonly trapFocus?: boolean | undefined;
257
+ readonly keepOpenOnHover?: boolean | undefined;
258
+ readonly block?: boolean | undefined;
259
+ readonly positionReference?: (string | HTMLElement) | undefined;
260
+ readonly onClose?: (() => any) | undefined;
261
+ readonly onToggle?: ((value: boolean) => any) | undefined;
262
+ readonly onOpen?: (() => any) | undefined;
263
+ readonly "onUpdate:model-value"?: ((value: boolean) => any) | undefined;
264
+ readonly "onUpdate:modelValue"?: ((value: boolean) => any) | undefined;
265
+ readonly "onAfter-close-animation"?: (() => any) | undefined;
266
+ } & import('vue').VNodeProps & import('vue').AllowedComponentProps & import('vue').ComponentCustomProps;
267
+ $attrs: {
268
+ [x: string]: unknown;
269
+ };
270
+ $refs: {
271
+ [x: string]: unknown;
272
+ } & {
273
+ trigger: HTMLDivElement;
274
+ panel: HTMLDivElement;
275
+ };
276
+ $slots: Readonly<{
277
+ [name: string]: import('vue').Slot<any> | undefined;
278
+ }>;
279
+ $root: import('vue').ComponentPublicInstance | null;
280
+ $parent: import('vue').ComponentPublicInstance | null;
281
+ $host: Element | null;
282
+ $emit: ((event: "close") => void) & ((event: "toggle", value: boolean) => void) & ((event: "open") => void) & ((event: "update:model-value", value: boolean) => void) & ((event: "update:modelValue", value: boolean) => void) & ((event: "after-close-animation") => void);
283
+ $el: any;
284
+ $options: import('vue').ComponentOptionsBase<Readonly<{
285
+ modelValue?: boolean;
286
+ } & MazPopoverProps> & Readonly<{
287
+ onClose?: (() => any) | undefined;
288
+ onToggle?: ((value: boolean) => any) | undefined;
289
+ onOpen?: (() => any) | undefined;
290
+ "onUpdate:model-value"?: ((value: boolean) => any) | undefined;
291
+ "onUpdate:modelValue"?: ((value: boolean) => any) | undefined;
292
+ "onAfter-close-animation"?: (() => any) | undefined;
293
+ }>, {
294
+ open: () => void;
295
+ close: () => void;
296
+ toggle: () => void;
297
+ isOpen: import('vue').ModelRef<boolean, string, boolean, boolean>;
298
+ updatePosition: () => void;
299
+ panelRef: Readonly<import('vue').ShallowRef<HTMLElement | null>>;
300
+ }, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {
301
+ close: () => any;
302
+ toggle: (value: boolean) => any;
303
+ open: () => any;
304
+ "update:model-value": (value: boolean) => any;
305
+ "update:modelValue": (value: boolean) => any;
306
+ "after-close-animation": () => any;
307
+ }, string, {}, {}, string, {}, import('vue').GlobalComponents, import('vue').GlobalDirectives, string, import('vue').ComponentProvideOptions> & {
308
+ beforeCreate?: (() => void) | (() => void)[];
309
+ created?: (() => void) | (() => void)[];
310
+ beforeMount?: (() => void) | (() => void)[];
311
+ mounted?: (() => void) | (() => void)[];
312
+ beforeUpdate?: (() => void) | (() => void)[];
313
+ updated?: (() => void) | (() => void)[];
314
+ activated?: (() => void) | (() => void)[];
315
+ deactivated?: (() => void) | (() => void)[];
316
+ beforeDestroy?: (() => void) | (() => void)[];
317
+ beforeUnmount?: (() => void) | (() => void)[];
318
+ destroyed?: (() => void) | (() => void)[];
319
+ unmounted?: (() => void) | (() => void)[];
320
+ renderTracked?: ((e: import('vue').DebuggerEvent) => void) | ((e: import('vue').DebuggerEvent) => void)[];
321
+ renderTriggered?: ((e: import('vue').DebuggerEvent) => void) | ((e: import('vue').DebuggerEvent) => void)[];
322
+ errorCaptured?: ((err: unknown, instance: import('vue').ComponentPublicInstance | null, info: string) => boolean | void) | ((err: unknown, instance: import('vue').ComponentPublicInstance | null, info: string) => boolean | void)[];
323
+ };
324
+ $forceUpdate: () => void;
325
+ $nextTick: typeof import('vue').nextTick;
326
+ $watch<T extends string | ((...args: any) => any)>(source: T, cb: T extends (...args: any) => infer R ? (...args: [R, R, import('@vue/reactivity').OnCleanup]) => any : (...args: [any, any, import('@vue/reactivity').OnCleanup]) => any, options?: import('vue').WatchOptions): import('vue').WatchStopHandle;
327
+ } & Readonly<{}> & Omit<Readonly<{
328
+ modelValue?: boolean;
329
+ } & MazPopoverProps> & Readonly<{
330
+ onClose?: (() => any) | undefined;
331
+ onToggle?: ((value: boolean) => any) | undefined;
332
+ onOpen?: (() => any) | undefined;
333
+ "onUpdate:model-value"?: ((value: boolean) => any) | undefined;
334
+ "onUpdate:modelValue"?: ((value: boolean) => any) | undefined;
335
+ "onAfter-close-animation"?: (() => any) | undefined;
336
+ }>, "close" | "toggle" | "open" | "isOpen" | "updatePosition" | "panelRef"> & import('vue').ShallowUnwrapRef<{
337
+ open: () => void;
338
+ close: () => void;
339
+ toggle: () => void;
340
+ isOpen: import('vue').ModelRef<boolean, string, boolean, boolean>;
341
+ updatePosition: () => void;
342
+ panelRef: Readonly<import('vue').ShallowRef<HTMLElement | null>>;
343
+ }> & {} & import('vue').ComponentCustomProperties & {} & {
344
+ $slots: {
345
+ trigger?(_: {
346
+ open: () => void;
347
+ close: () => void;
348
+ toggle: () => void;
349
+ isOpen: boolean;
350
+ trigger: "click" | "hover" | "manual";
351
+ }): any;
352
+ default?(_: {
353
+ open: () => void;
354
+ close: () => void;
355
+ toggle: () => void;
356
+ isOpen: true;
357
+ }): any;
358
+ };
359
+ }) | null;
360
+ };
228
361
  rootEl: any;
229
362
  };
230
363
  type __VLS_TemplateResult = ReturnType<typeof __VLS_template>;
@@ -236,7 +369,140 @@ declare const __VLS_component: import('vue').DefineComponent<__VLS_PublicProps,
236
369
  "onUpdate:model-value"?: ((value: boolean) => any) | undefined;
237
370
  "onUpdate:modelValue"?: ((value: boolean) => any) | undefined;
238
371
  "onMenuitem-clicked"?: ((event: Event) => any) | undefined;
239
- }>, {}, {}, {}, {}, string, import('vue').ComponentProvideOptions, false, {}, any>;
372
+ }>, {}, {}, {}, {}, string, import('vue').ComponentProvideOptions, false, {
373
+ mazPopoverRef: ({
374
+ $: import('vue').ComponentInternalInstance;
375
+ $data: {};
376
+ $props: {
377
+ readonly modelValue?: boolean | undefined;
378
+ readonly position?: import('./MazPopover.vue').MazPopoverPosition | undefined;
379
+ readonly preferPosition?: import('./MazPopover.vue').MazPopoverPreferPosition | undefined;
380
+ readonly fallbackPosition?: import('./MazPopover.vue').MazPopoverFallbackPosition | undefined;
381
+ readonly trigger?: import('./MazPopover.vue').MazPopoverTrigger | undefined;
382
+ readonly role?: import('./MazPopover.vue').MazPopoverRole | undefined;
383
+ readonly ariaLabel?: string | undefined;
384
+ readonly announceChanges?: boolean | undefined;
385
+ readonly disabled?: boolean | undefined;
386
+ readonly offset?: number | undefined;
387
+ readonly delay?: number | undefined;
388
+ readonly hoverDelay?: number | undefined;
389
+ readonly transition?: "scale-pop" | "scale-fade" | string | undefined;
390
+ readonly teleportTo?: string | undefined;
391
+ readonly overlayClass?: HTMLAttributes["class"];
392
+ readonly panelClass?: HTMLAttributes["class"];
393
+ readonly panelStyle?: import('vue').StyleValue;
394
+ readonly closeOnClickOutside?: boolean | undefined;
395
+ readonly closeOnEscape?: boolean | undefined;
396
+ readonly persistent?: boolean | undefined;
397
+ readonly id?: string | undefined;
398
+ readonly ariaLabelledby?: string | undefined;
399
+ readonly ariaDescribedby?: string | undefined;
400
+ readonly color?: (MazColor | "background") | undefined;
401
+ readonly trapFocus?: boolean | undefined;
402
+ readonly keepOpenOnHover?: boolean | undefined;
403
+ readonly block?: boolean | undefined;
404
+ readonly positionReference?: (string | HTMLElement) | undefined;
405
+ readonly onClose?: (() => any) | undefined;
406
+ readonly onToggle?: ((value: boolean) => any) | undefined;
407
+ readonly onOpen?: (() => any) | undefined;
408
+ readonly "onUpdate:model-value"?: ((value: boolean) => any) | undefined;
409
+ readonly "onUpdate:modelValue"?: ((value: boolean) => any) | undefined;
410
+ readonly "onAfter-close-animation"?: (() => any) | undefined;
411
+ } & import('vue').VNodeProps & import('vue').AllowedComponentProps & import('vue').ComponentCustomProps;
412
+ $attrs: {
413
+ [x: string]: unknown;
414
+ };
415
+ $refs: {
416
+ [x: string]: unknown;
417
+ } & {
418
+ trigger: HTMLDivElement;
419
+ panel: HTMLDivElement;
420
+ };
421
+ $slots: Readonly<{
422
+ [name: string]: import('vue').Slot<any> | undefined;
423
+ }>;
424
+ $root: import('vue').ComponentPublicInstance | null;
425
+ $parent: import('vue').ComponentPublicInstance | null;
426
+ $host: Element | null;
427
+ $emit: ((event: "close") => void) & ((event: "toggle", value: boolean) => void) & ((event: "open") => void) & ((event: "update:model-value", value: boolean) => void) & ((event: "update:modelValue", value: boolean) => void) & ((event: "after-close-animation") => void);
428
+ $el: any;
429
+ $options: import('vue').ComponentOptionsBase<Readonly<{
430
+ modelValue?: boolean;
431
+ } & MazPopoverProps> & Readonly<{
432
+ onClose?: (() => any) | undefined;
433
+ onToggle?: ((value: boolean) => any) | undefined;
434
+ onOpen?: (() => any) | undefined;
435
+ "onUpdate:model-value"?: ((value: boolean) => any) | undefined;
436
+ "onUpdate:modelValue"?: ((value: boolean) => any) | undefined;
437
+ "onAfter-close-animation"?: (() => any) | undefined;
438
+ }>, {
439
+ open: () => void;
440
+ close: () => void;
441
+ toggle: () => void;
442
+ isOpen: import('vue').ModelRef<boolean, string, boolean, boolean>;
443
+ updatePosition: () => void;
444
+ panelRef: Readonly<import('vue').ShallowRef<HTMLElement | null>>;
445
+ }, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {
446
+ close: () => any;
447
+ toggle: (value: boolean) => any;
448
+ open: () => any;
449
+ "update:model-value": (value: boolean) => any;
450
+ "update:modelValue": (value: boolean) => any;
451
+ "after-close-animation": () => any;
452
+ }, string, {}, {}, string, {}, import('vue').GlobalComponents, import('vue').GlobalDirectives, string, import('vue').ComponentProvideOptions> & {
453
+ beforeCreate?: (() => void) | (() => void)[];
454
+ created?: (() => void) | (() => void)[];
455
+ beforeMount?: (() => void) | (() => void)[];
456
+ mounted?: (() => void) | (() => void)[];
457
+ beforeUpdate?: (() => void) | (() => void)[];
458
+ updated?: (() => void) | (() => void)[];
459
+ activated?: (() => void) | (() => void)[];
460
+ deactivated?: (() => void) | (() => void)[];
461
+ beforeDestroy?: (() => void) | (() => void)[];
462
+ beforeUnmount?: (() => void) | (() => void)[];
463
+ destroyed?: (() => void) | (() => void)[];
464
+ unmounted?: (() => void) | (() => void)[];
465
+ renderTracked?: ((e: import('vue').DebuggerEvent) => void) | ((e: import('vue').DebuggerEvent) => void)[];
466
+ renderTriggered?: ((e: import('vue').DebuggerEvent) => void) | ((e: import('vue').DebuggerEvent) => void)[];
467
+ errorCaptured?: ((err: unknown, instance: import('vue').ComponentPublicInstance | null, info: string) => boolean | void) | ((err: unknown, instance: import('vue').ComponentPublicInstance | null, info: string) => boolean | void)[];
468
+ };
469
+ $forceUpdate: () => void;
470
+ $nextTick: typeof import('vue').nextTick;
471
+ $watch<T extends string | ((...args: any) => any)>(source: T, cb: T extends (...args: any) => infer R ? (...args: [R, R, import('@vue/reactivity').OnCleanup]) => any : (...args: [any, any, import('@vue/reactivity').OnCleanup]) => any, options?: import('vue').WatchOptions): import('vue').WatchStopHandle;
472
+ } & Readonly<{}> & Omit<Readonly<{
473
+ modelValue?: boolean;
474
+ } & MazPopoverProps> & Readonly<{
475
+ onClose?: (() => any) | undefined;
476
+ onToggle?: ((value: boolean) => any) | undefined;
477
+ onOpen?: (() => any) | undefined;
478
+ "onUpdate:model-value"?: ((value: boolean) => any) | undefined;
479
+ "onUpdate:modelValue"?: ((value: boolean) => any) | undefined;
480
+ "onAfter-close-animation"?: (() => any) | undefined;
481
+ }>, "close" | "toggle" | "open" | "isOpen" | "updatePosition" | "panelRef"> & import('vue').ShallowUnwrapRef<{
482
+ open: () => void;
483
+ close: () => void;
484
+ toggle: () => void;
485
+ isOpen: import('vue').ModelRef<boolean, string, boolean, boolean>;
486
+ updatePosition: () => void;
487
+ panelRef: Readonly<import('vue').ShallowRef<HTMLElement | null>>;
488
+ }> & {} & import('vue').ComponentCustomProperties & {} & {
489
+ $slots: {
490
+ trigger?(_: {
491
+ open: () => void;
492
+ close: () => void;
493
+ toggle: () => void;
494
+ isOpen: boolean;
495
+ trigger: "click" | "hover" | "manual";
496
+ }): any;
497
+ default?(_: {
498
+ open: () => void;
499
+ close: () => void;
500
+ toggle: () => void;
501
+ isOpen: true;
502
+ }): any;
503
+ };
504
+ }) | null;
505
+ }, any>;
240
506
  declare const _default: __VLS_WithTemplateSlots<typeof __VLS_component, __VLS_TemplateResult["slots"]>;
241
507
  export default _default;
242
508
  type __VLS_WithTemplateSlots<T, S> = T & {
@@ -1,7 +1,7 @@
1
1
  import { defineComponent, ref, computed, onMounted, watchEffect, createElementBlock, createBlock, openBlock, mergeProps, resolveDynamicComponent, normalizeStyle, normalizeClass, nextTick } from "vue";
2
2
  import { useInjectStrict } from "../composables/useInjectStrict.js";
3
3
  import { _ as _export_sfc } from "../chunks/_plugin-vue_export-helper.B--vMWp3.js";
4
- import '../assets/MazIcon.Cl1pfRbK.css';const _hoisted_1 = ["innerHTML"], _sfc_main = /* @__PURE__ */ defineComponent({
4
+ import '../assets/MazIcon.3HqpAIna.css';const _hoisted_1 = ["innerHTML"], _sfc_main = /* @__PURE__ */ defineComponent({
5
5
  __name: "MazIcon",
6
6
  props: {
7
7
  icon: { type: [Function, Object] },
@@ -108,7 +108,7 @@ import '../assets/MazIcon.Cl1pfRbK.css';const _hoisted_1 = ["innerHTML"], _sfc_m
108
108
  style: normalizeStyle(svgStyle.value)
109
109
  }, null, 8, ["class", "style"]));
110
110
  }
111
- }), MazIcon = /* @__PURE__ */ _export_sfc(_sfc_main, [["__scopeId", "data-v-ab2a19f1"]]);
111
+ }), MazIcon = /* @__PURE__ */ _export_sfc(_sfc_main, [["__scopeId", "data-v-2f172666"]]);
112
112
  export {
113
113
  MazIcon as default
114
114
  };
@@ -3,7 +3,7 @@ import { MazEyeSlash, MazEye } from "@maz-ui/icons";
3
3
  import { d as debounce } from "../chunks/debounce.Brzkn9pm.js";
4
4
  import { useInstanceUniqId } from "../composables/useInstanceUniqId.js";
5
5
  import { _ as _export_sfc } from "../chunks/_plugin-vue_export-helper.B--vMWp3.js";
6
- import '../assets/MazInput.CHYQSgY8.css';const _hoisted_1 = ["for"], _hoisted_2 = {
6
+ import '../assets/MazInput.BSmkNTOh.css';const _hoisted_1 = ["for"], _hoisted_2 = {
7
7
  key: 0,
8
8
  class: "m-input-wrapper-left"
9
9
  }, _hoisted_3 = ["id", "placeholder", "aria-label", "type", "inputmode", "name", "autocomplete", "disabled", "readonly", "required"], _hoisted_4 = {
@@ -250,7 +250,7 @@ import '../assets/MazInput.CHYQSgY8.css';const _hoisted_1 = ["for"], _hoisted_2
250
250
  }, toDisplayString(__props.assistiveText), 3)) : createCommentVNode("", !0)
251
251
  ], 6));
252
252
  }
253
- }), MazInput = /* @__PURE__ */ _export_sfc(_sfc_main, [["__scopeId", "data-v-aa5abc1f"]]);
253
+ }), MazInput = /* @__PURE__ */ _export_sfc(_sfc_main, [["__scopeId", "data-v-7034f80b"]]);
254
254
  export {
255
255
  MazInput as default
256
256
  };
@@ -3,7 +3,7 @@ import { MazArrowTopRightOnSquare } from "@maz-ui/icons";
3
3
  import { g as getColor } from "../chunks/types.D0Bp_UhS.js";
4
4
  import { useInstanceUniqId } from "../composables/useInstanceUniqId.js";
5
5
  import { _ as _export_sfc } from "../chunks/_plugin-vue_export-helper.B--vMWp3.js";
6
- import '../assets/MazLink.CXeMXonQ.css';const _sfc_main = /* @__PURE__ */ defineComponent({
6
+ import '../assets/MazLink.D-fVSh3z.css';const _sfc_main = /* @__PURE__ */ defineComponent({
7
7
  inheritAttrs: !1,
8
8
  __name: "MazLink",
9
9
  props: {
@@ -73,7 +73,7 @@ import '../assets/MazLink.CXeMXonQ.css';const _sfc_main = /* @__PURE__ */ define
73
73
  _: 3
74
74
  }, 16, ["id", "class", "to", "href", "title", "target", "rel", "download", "aria-label", "type", "disabled", "style"]));
75
75
  }
76
- }), MazLink = /* @__PURE__ */ _export_sfc(_sfc_main, [["__scopeId", "data-v-c52f6967"]]);
76
+ }), MazLink = /* @__PURE__ */ _export_sfc(_sfc_main, [["__scopeId", "data-v-4f0a4e08"]]);
77
77
  export {
78
78
  MazLink as default
79
79
  };
@@ -5,7 +5,7 @@ import { useInstanceUniqId } from "../composables/useInstanceUniqId.js";
5
5
  import { d as directive } from "../chunks/vClickOutside.DIOiluy0.js";
6
6
  import { g as getColor } from "../chunks/types.D0Bp_UhS.js";
7
7
  import { _ as _export_sfc } from "../chunks/_plugin-vue_export-helper.B--vMWp3.js";
8
- import '../assets/MazPopover.DQ6XHvaR.css';const _hoisted_1 = ["id", "aria-expanded", "aria-haspopup", "aria-describedby", "aria-labelledby"], _hoisted_2 = ["id", "role", "aria-label", "aria-labelledby", "aria-describedby", "aria-modal", "tabindex", "aria-live"], _sfc_main = /* @__PURE__ */ defineComponent({
8
+ import '../assets/MazPopover.DU4IHV-5.css';const _hoisted_1 = ["id", "aria-expanded", "aria-haspopup", "aria-describedby", "aria-labelledby"], _hoisted_2 = ["id", "role", "aria-label", "aria-labelledby", "aria-describedby", "aria-modal", "tabindex", "aria-live"], _sfc_main = /* @__PURE__ */ defineComponent({
9
9
  name: "MazPopover",
10
10
  inheritAttrs: !1,
11
11
  __name: "MazPopover",
@@ -236,7 +236,14 @@ import '../assets/MazPopover.DQ6XHvaR.css';const _hoisted_1 = ["id", "aria-expan
236
236
  * @description Manually recalculate and update the popover position
237
237
  * @usage `mazPopoverInstance.value?.updatePosition()`
238
238
  */
239
- updatePosition: update
239
+ updatePosition: update,
240
+ /**
241
+ * Panel reference
242
+ * @type {Ref<HTMLElement>}
243
+ * @description Reference to the popover panel element
244
+ * @usage `mazPopoverInstance.value?.panelRef`
245
+ */
246
+ panelRef
240
247
  }), (_ctx, _cache) => (openBlock(), createElementBlock(Fragment, null, [
241
248
  _ctx.$slots.trigger ? (openBlock(), createElementBlock("div", {
242
249
  key: 0,
@@ -312,7 +319,7 @@ import '../assets/MazPopover.DQ6XHvaR.css';const _hoisted_1 = ["id", "aria-expan
312
319
  ], 8, ["to"]))
313
320
  ], 64));
314
321
  }
315
- }), MazPopover = /* @__PURE__ */ _export_sfc(_sfc_main, [["__scopeId", "data-v-141e3fb8"]]);
322
+ }), MazPopover = /* @__PURE__ */ _export_sfc(_sfc_main, [["__scopeId", "data-v-641d39cb"]]);
316
323
  export {
317
324
  MazPopover as default
318
325
  };
@@ -231,6 +231,13 @@ declare const __VLS_component: import('vue').DefineComponent<__VLS_PublicProps,
231
231
  * @usage `mazPopoverInstance.value?.updatePosition()`
232
232
  */
233
233
  updatePosition: () => void;
234
+ /**
235
+ * Panel reference
236
+ * @type {Ref<HTMLElement>}
237
+ * @description Reference to the popover panel element
238
+ * @usage `mazPopoverInstance.value?.panelRef`
239
+ */
240
+ panelRef: Readonly<import('vue').ShallowRef<HTMLElement | null>>;
234
241
  }, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {
235
242
  close: () => any;
236
243
  toggle: (value: boolean) => any;
@@ -7,11 +7,11 @@ import { useInstanceUniqId } from "../composables/useInstanceUniqId.js";
7
7
  import MazInput from "./MazInput.js";
8
8
  import MazPopover from "./MazPopover.js";
9
9
  import { _ as _export_sfc } from "../chunks/_plugin-vue_export-helper.B--vMWp3.js";
10
- import '../assets/MazSelect.HKw9qRZV.css';let timeout = null;
10
+ import '../assets/MazSelect.uFknehxz.css';let timeout = null;
11
11
  function debounceCallback(callback, delay) {
12
12
  timeout && clearTimeout(timeout), timeout = setTimeout(callback, delay);
13
13
  }
14
- const _hoisted_1 = ["aria-label"], _hoisted_2 = ["id"], _hoisted_3 = {
14
+ const _hoisted_1 = ["disabled", "aria-label"], _hoisted_2 = ["id"], _hoisted_3 = {
15
15
  key: 0,
16
16
  class: "m-select-list__search-wrapper"
17
17
  }, _hoisted_4 = { class: "m-select-list__no-results" }, _hoisted_5 = {
@@ -261,6 +261,7 @@ const _hoisted_1 = ["aria-label"], _hoisted_2 = ["id"], _hoisted_3 = {
261
261
  transition: __props.transition,
262
262
  offset: 0,
263
263
  position: __props.listPosition,
264
+ disabled: __props.disabled,
264
265
  "prefer-position": __props.preferPosition,
265
266
  "fallback-position": __props.fallbackPosition,
266
267
  "position-reference": `#${unref(instanceId)}-popover .m-input-wrapper`,
@@ -299,6 +300,7 @@ const _hoisted_1 = ["aria-label"], _hoisted_2 = ["id"], _hoisted_3 = {
299
300
  }, () => [
300
301
  createElementVNode("button", {
301
302
  tabindex: "-1",
303
+ disabled: __props.disabled,
302
304
  type: "button",
303
305
  class: "m-select-input__toggle-button maz-custom",
304
306
  "aria-label": `${isOpen.value ? "collapse" : "expand"} list of options`
@@ -403,9 +405,9 @@ const _hoisted_1 = ["aria-label"], _hoisted_2 = ["id"], _hoisted_3 = {
403
405
  ], 14, _hoisted_2)
404
406
  ]),
405
407
  _: 3
406
- }, 8, ["id", "modelValue", "class", "style", "block", "transition", "position", "prefer-position", "fallback-position", "position-reference"]));
408
+ }, 8, ["id", "modelValue", "class", "style", "block", "transition", "position", "disabled", "prefer-position", "fallback-position", "position-reference"]));
407
409
  }
408
- }), MazSelect = /* @__PURE__ */ _export_sfc(_sfc_main, [["__scopeId", "data-v-7a14967b"]]);
410
+ }), MazSelect = /* @__PURE__ */ _export_sfc(_sfc_main, [["__scopeId", "data-v-021953e9"]]);
409
411
  export {
410
412
  MazSelect as default
411
413
  };
@@ -3,7 +3,7 @@ import { MazCheckCircle, MazExclamationTriangle, MazExclamationCircle } from "@m
3
3
  import MazExpandAnimation from "./MazExpandAnimation.js";
4
4
  import MazIcon from "./MazIcon.js";
5
5
  import { _ as _export_sfc } from "../chunks/_plugin-vue_export-helper.B--vMWp3.js";
6
- import '../assets/MazStepper.Dg9khVJG.css';const _hoisted_1 = ["id", "disabled", "onClick"], _hoisted_2 = { class: "m-stepper__header__wrapper" }, _hoisted_3 = { class: "m-stepper__count --primary" }, _hoisted_4 = { class: "m-stepper__count__circle" }, _hoisted_5 = { class: "m-stepper__header__content" }, _hoisted_6 = { class: "m-stepper__title" }, _hoisted_7 = {
6
+ import '../assets/MazStepper.lKRkBZZK.css';const _hoisted_1 = ["id", "disabled", "onClick"], _hoisted_2 = { class: "m-stepper__header__wrapper" }, _hoisted_3 = { class: "m-stepper__count --primary" }, _hoisted_4 = { class: "m-stepper__count__circle" }, _hoisted_5 = { class: "m-stepper__header__content" }, _hoisted_6 = { class: "m-stepper__title" }, _hoisted_7 = {
7
7
  key: 0,
8
8
  class: "m-stepper__subtitle"
9
9
  }, _hoisted_8 = {
@@ -148,7 +148,7 @@ import '../assets/MazStepper.Dg9khVJG.css';const _hoisted_1 = ["id", "disabled",
148
148
  ], 64))), 128))
149
149
  ], 4));
150
150
  }
151
- }), MazStepper = /* @__PURE__ */ _export_sfc(_sfc_main, [["__scopeId", "data-v-e28f54a1"]]);
151
+ }), MazStepper = /* @__PURE__ */ _export_sfc(_sfc_main, [["__scopeId", "data-v-99251223"]]);
152
152
  export {
153
153
  MazStepper as default
154
154
  };
@@ -1,7 +1,7 @@
1
- import { _ as _sfc_main } from "../chunks/MazTable.vue_vue_type_script_setup_true_lang.F9DFa_6O.js";
2
- import { m } from "../chunks/MazTable.vue_vue_type_script_setup_true_lang.F9DFa_6O.js";
1
+ import { _ as _sfc_main } from "../chunks/MazTable.vue_vue_type_script_setup_true_lang.C2UTYkLu.js";
2
+ import { m } from "../chunks/MazTable.vue_vue_type_script_setup_true_lang.C2UTYkLu.js";
3
3
  import { _ as _export_sfc } from "../chunks/_plugin-vue_export-helper.B--vMWp3.js";
4
- import '../assets/MazTable.BKlwCDt4.css';const MazTable = /* @__PURE__ */ _export_sfc(_sfc_main, [["__scopeId", "data-v-1ea14f3d"]]);
4
+ import '../assets/MazTable.AfDvicwj.css';const MazTable = /* @__PURE__ */ _export_sfc(_sfc_main, [["__scopeId", "data-v-3206d73d"]]);
5
5
  export {
6
6
  MazTable as default,
7
7
  m as mazTableKey
@@ -1,6 +1,6 @@
1
1
  import { defineComponent, createElementBlock, openBlock, normalizeClass, unref, renderSlot } from "vue";
2
2
  import { useInjectStrict } from "../composables/useInjectStrict.js";
3
- import { m as mazTableKey } from "../chunks/MazTable.vue_vue_type_script_setup_true_lang.F9DFa_6O.js";
3
+ import { m as mazTableKey } from "../chunks/MazTable.vue_vue_type_script_setup_true_lang.C2UTYkLu.js";
4
4
  import { _ as _export_sfc } from "../chunks/_plugin-vue_export-helper.B--vMWp3.js";
5
5
  import '../assets/MazTableCell.BPgmqAMD.css';const _sfc_main = /* @__PURE__ */ defineComponent({
6
6
  __name: "MazTableCell",
@@ -1,6 +1,6 @@
1
1
  import { defineComponent, createElementBlock, openBlock, normalizeClass, unref, renderSlot } from "vue";
2
2
  import { useInjectStrict } from "../composables/useInjectStrict.js";
3
- import { m as mazTableKey } from "../chunks/MazTable.vue_vue_type_script_setup_true_lang.F9DFa_6O.js";
3
+ import { m as mazTableKey } from "../chunks/MazTable.vue_vue_type_script_setup_true_lang.C2UTYkLu.js";
4
4
  import { _ as _export_sfc } from "../chunks/_plugin-vue_export-helper.B--vMWp3.js";
5
5
  import '../assets/MazTableRow.C0Ko4yDk.css';const _sfc_main = /* @__PURE__ */ defineComponent({
6
6
  __name: "MazTableRow",
@@ -1,6 +1,6 @@
1
1
  import { defineComponent, createElementBlock, openBlock, normalizeClass, unref, renderSlot } from "vue";
2
2
  import { useInjectStrict } from "../composables/useInjectStrict.js";
3
- import { m as mazTableKey } from "../chunks/MazTable.vue_vue_type_script_setup_true_lang.F9DFa_6O.js";
3
+ import { m as mazTableKey } from "../chunks/MazTable.vue_vue_type_script_setup_true_lang.C2UTYkLu.js";
4
4
  import { _ as _export_sfc } from "../chunks/_plugin-vue_export-helper.B--vMWp3.js";
5
5
  import '../assets/MazTableTitle.BjJMgQFY.css';const _sfc_main = /* @__PURE__ */ defineComponent({
6
6
  __name: "MazTableTitle",
@@ -1,13 +1,16 @@
1
1
  import { defineComponent, ref, watch, computed, createBlock, openBlock, Transition, withCtx, createElementBlock, createCommentVNode, renderSlot } from "vue";
2
2
  import { useInjectStrict } from "../composables/useInjectStrict.js";
3
3
  import { _ as _export_sfc } from "../chunks/_plugin-vue_export-helper.B--vMWp3.js";
4
- import '../assets/MazTabsContentItem.C84SDmj0.css';const _sfc_main = /* @__PURE__ */ defineComponent({
4
+ import '../assets/MazTabsContentItem.B1dilH-w.css';const _hoisted_1 = {
5
+ key: 0,
6
+ class: "m-tabs-content-item m-reset-css"
7
+ }, _sfc_main = /* @__PURE__ */ defineComponent({
5
8
  __name: "MazTabsContentItem",
6
9
  props: {
7
10
  tab: { type: Number, required: !0 }
8
11
  },
9
12
  setup(__props) {
10
- const props = __props, transitionName = ref("maz-tab-transition"), MazTabsContentItem2 = ref(), { currentTab } = useInjectStrict("maz-tabs");
13
+ const props = __props, transitionName = ref("maz-tab-transition"), { currentTab } = useInjectStrict("maz-tabs");
11
14
  watch(
12
15
  () => currentTab.value,
13
16
  (value, oldValue) => {
@@ -21,19 +24,14 @@ import '../assets/MazTabsContentItem.C84SDmj0.css';const _sfc_main = /* @__PURE_
21
24
  const itemTabNumber = computed(() => props.tab - 1), isCurrentTab = computed(() => currentTab.value - 1 === itemTabNumber.value);
22
25
  return (_ctx, _cache) => (openBlock(), createBlock(Transition, { name: transitionName.value }, {
23
26
  default: withCtx(() => [
24
- isCurrentTab.value ? (openBlock(), createElementBlock("div", {
25
- key: 0,
26
- ref_key: "MazTabsContentItem",
27
- ref: MazTabsContentItem2,
28
- class: "m-tabs-content-item m-reset-css"
29
- }, [
27
+ isCurrentTab.value ? (openBlock(), createElementBlock("div", _hoisted_1, [
30
28
  renderSlot(_ctx.$slots, "default", {}, void 0, !0)
31
- ], 512)) : createCommentVNode("", !0)
29
+ ])) : createCommentVNode("", !0)
32
30
  ]),
33
31
  _: 3
34
32
  }, 8, ["name"]));
35
33
  }
36
- }), MazTabsContentItem = /* @__PURE__ */ _export_sfc(_sfc_main, [["__scopeId", "data-v-36798058"]]);
34
+ }), MazTabsContentItem = /* @__PURE__ */ _export_sfc(_sfc_main, [["__scopeId", "data-v-87e5244d"]]);
37
35
  export {
38
36
  MazTabsContentItem as default
39
37
  };
@@ -3,9 +3,7 @@ declare function __VLS_template(): {
3
3
  slots: {
4
4
  default?(_: {}): any;
5
5
  };
6
- refs: {
7
- MazTabsContentItem: HTMLDivElement;
8
- };
6
+ refs: {};
9
7
  rootEl: any;
10
8
  };
11
9
  type __VLS_TemplateResult = ReturnType<typeof __VLS_template>;
@@ -19,9 +17,7 @@ declare const __VLS_component: import('vue').DefineComponent<import('vue').Extra
19
17
  type: NumberConstructor;
20
18
  required: true;
21
19
  };
22
- }>> & Readonly<{}>, {}, {}, {}, {}, string, import('vue').ComponentProvideOptions, true, {
23
- MazTabsContentItem: HTMLDivElement;
24
- }, any>;
20
+ }>> & Readonly<{}>, {}, {}, {}, {}, string, import('vue').ComponentProvideOptions, true, {}, any>;
25
21
  declare const _default: __VLS_WithTemplateSlots<typeof __VLS_component, __VLS_TemplateResult["slots"]>;
26
22
  export default _default;
27
23
  type __VLS_WithTemplateSlots<T, S> = T & {
@@ -18,7 +18,7 @@ import { M } from "../chunks/MazDatePicker.DmPXmc_M.js";
18
18
  import { default as default17 } from "./MazDialog.js";
19
19
  import { _ as _2, u } from "../chunks/MazDialogConfirm.vue_vue_type_script_setup_true_lang.BaOg5MoP.js";
20
20
  import { default as default18 } from "./MazDrawer.js";
21
- import { _ as _3 } from "../chunks/MazDropdown.vue_vue_type_style_index_0_lang.BnTHMdrm.js";
21
+ import { _ as _3 } from "../chunks/MazDropdown.vue_vue_type_style_index_0_lang.Cym3Pk2B.js";
22
22
  import { default as default19 } from "./MazDropzone.js";
23
23
  import { default as default20 } from "./MazExpandAnimation.js";
24
24
  import { default as default21 } from "./MazFullscreenLoader.js";
@@ -3,7 +3,7 @@ import { defineComponent, defineAsyncComponent, ref, computed, watch, onMounted,
3
3
  import { MazExclamationCircle, MazCheckCircle, MazInformationCircle, MazExclamationTriangle, MazXMark, MazArrowTopRightOnSquare, MazLinkIcon } from "@maz-ui/icons";
4
4
  import { useTimer } from "../composables/useTimer.js";
5
5
  import { _ as _export_sfc } from "../chunks/_plugin-vue_export-helper.B--vMWp3.js";
6
- import '../assets/toast.ClbXOwsL.css';const _hoisted_1 = ["textContent", "innerHTML"], _hoisted_2 = {
6
+ import '../assets/toast.DRXp_3fJ.css';const _hoisted_1 = ["textContent", "innerHTML"], _hoisted_2 = {
7
7
  key: 1,
8
8
  class: "m-toast__progress-bar"
9
9
  }, _sfc_main = /* @__PURE__ */ defineComponent({
@@ -190,7 +190,7 @@ import '../assets/toast.ClbXOwsL.css';const _hoisted_1 = ["textContent", "innerH
190
190
  _: 1
191
191
  }, 8, ["name"]));
192
192
  }
193
- }), MazToast = /* @__PURE__ */ _export_sfc(_sfc_main, [["__scopeId", "data-v-156c6100"]]), DEFAULT_OPTIONS = {
193
+ }), MazToast = /* @__PURE__ */ _export_sfc(_sfc_main, [["__scopeId", "data-v-d1646cf7"]]), DEFAULT_OPTIONS = {
194
194
  position: "bottom-right",
195
195
  timeout: 1e4,
196
196
  persistent: !1
@@ -325,6 +325,7 @@ declare function __VLS_template(): {
325
325
  toggle: () => void;
326
326
  isOpen: import('vue').ModelRef<boolean, string, boolean, boolean>;
327
327
  updatePosition: () => void;
328
+ panelRef: Readonly<import('vue').ShallowRef<HTMLElement | null>>;
328
329
  }, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {
329
330
  close: () => any;
330
331
  toggle: (value: boolean) => any;
@@ -361,12 +362,13 @@ declare function __VLS_template(): {
361
362
  "onUpdate:model-value"?: ((value: boolean) => any) | undefined;
362
363
  "onUpdate:modelValue"?: ((value: boolean) => any) | undefined;
363
364
  "onAfter-close-animation"?: (() => any) | undefined;
364
- }>, "close" | "toggle" | "open" | "isOpen" | "updatePosition"> & import('vue').ShallowUnwrapRef<{
365
+ }>, "close" | "toggle" | "open" | "isOpen" | "updatePosition" | "panelRef"> & import('vue').ShallowUnwrapRef<{
365
366
  open: () => void;
366
367
  close: () => void;
367
368
  toggle: () => void;
368
369
  isOpen: import('vue').ModelRef<boolean, string, boolean, boolean>;
369
370
  updatePosition: () => void;
371
+ panelRef: Readonly<import('vue').ShallowRef<HTMLElement | null>>;
370
372
  }> & {} & import('vue').ComponentCustomProperties & {} & {
371
373
  $slots: {
372
374
  trigger?(_: {
@@ -498,6 +500,7 @@ declare const __VLS_component: import('vue').DefineComponent<__VLS_PublicProps,
498
500
  toggle: () => void;
499
501
  isOpen: import('vue').ModelRef<boolean, string, boolean, boolean>;
500
502
  updatePosition: () => void;
503
+ panelRef: Readonly<import('vue').ShallowRef<HTMLElement | null>>;
501
504
  }, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {
502
505
  close: () => any;
503
506
  toggle: (value: boolean) => any;
@@ -534,12 +537,13 @@ declare const __VLS_component: import('vue').DefineComponent<__VLS_PublicProps,
534
537
  "onUpdate:model-value"?: ((value: boolean) => any) | undefined;
535
538
  "onUpdate:modelValue"?: ((value: boolean) => any) | undefined;
536
539
  "onAfter-close-animation"?: (() => any) | undefined;
537
- }>, "close" | "toggle" | "open" | "isOpen" | "updatePosition"> & import('vue').ShallowUnwrapRef<{
540
+ }>, "close" | "toggle" | "open" | "isOpen" | "updatePosition" | "panelRef"> & import('vue').ShallowUnwrapRef<{
538
541
  open: () => void;
539
542
  close: () => void;
540
543
  toggle: () => void;
541
544
  isOpen: import('vue').ModelRef<boolean, string, boolean, boolean>;
542
545
  updatePosition: () => void;
546
+ panelRef: Readonly<import('vue').ShallowRef<HTMLElement | null>>;
543
547
  }> & {} & import('vue').ComponentCustomProperties & {} & {
544
548
  $slots: {
545
549
  trigger?(_: {