@maltjoy/core-vue 3.38.4 → 4.0.0-beta.1

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.
@@ -40,7 +40,7 @@ declare const _default: __VLS_WithTemplateSlots<import("vue").DefineComponent<im
40
40
  default: string;
41
41
  };
42
42
  }>, {
43
- randomId: import("vue").Ref<string | undefined, string | undefined>;
43
+ randomId: string;
44
44
  }, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<import("vue").ExtractPropTypes<{
45
45
  /**
46
46
  * If you only need a button with an icon. To keep your component accessible, you can give a text as slot, it will be used as title and aria-label.
@@ -1,93 +1,81 @@
1
- import { PropType } from 'vue';
2
1
  import { TJoyLabelSizes } from '../JoyLabel/JoyLabel.types';
3
2
  import { TJoySelectableItemOption } from '../JoySelectableItem/VJoySelectableItem.types';
4
- declare const _default: __VLS_WithTemplateSlots<import("vue").DefineComponent<import("vue").ExtractPropTypes<{
5
- options: {
6
- type: PropType<TJoySelectableItemOption[]>;
7
- required: true;
8
- validator(value: TJoySelectableItemOption[]): boolean;
3
+ declare const _default: <T extends TJoySelectableItemOption>(__VLS_props: {
4
+ readonly label?: string | undefined;
5
+ required?: boolean | undefined;
6
+ readonly id?: string | undefined;
7
+ readonly options: T[];
8
+ value?: string | unknown[] | undefined;
9
+ multiple?: boolean | undefined;
10
+ readonly optionalLabel?: string | undefined;
11
+ labelSize?: TJoyLabelSizes | undefined;
12
+ requiredMark?: boolean | undefined;
13
+ readonly "onUpdate:value"?: ((value: string | any[]) => any) | undefined;
14
+ fullWidth?: boolean | undefined;
15
+ } & import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, __VLS_ctx?: {
16
+ attrs: any;
17
+ slots: Readonly<{
18
+ /** Customize the inner HTML of each VJoySelectableItem */
19
+ item: (option: T) => any;
20
+ }> & {
21
+ /** Customize the inner HTML of each VJoySelectableItem */
22
+ item: (option: T) => any;
9
23
  };
10
- id: StringConstructor;
11
- value: {
12
- type: (StringConstructor | ArrayConstructor)[];
13
- default: null;
24
+ emit: (e: 'update:value', value: string | any[]) => void;
25
+ } | undefined, __VLS_expose?: ((exposed: import('vue').ShallowUnwrapRef<{}>) => void) | undefined, __VLS_setup?: Promise<{
26
+ props: {
27
+ readonly label?: string | undefined;
28
+ required?: boolean | undefined;
29
+ readonly id?: string | undefined;
30
+ readonly options: T[];
31
+ value?: string | unknown[] | undefined;
32
+ multiple?: boolean | undefined;
33
+ readonly optionalLabel?: string | undefined;
34
+ labelSize?: TJoyLabelSizes | undefined;
35
+ requiredMark?: boolean | undefined;
36
+ readonly "onUpdate:value"?: ((value: string | any[]) => any) | undefined;
37
+ fullWidth?: boolean | undefined;
38
+ } & import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps;
39
+ expose(exposed: import('vue').ShallowUnwrapRef<{}>): void;
40
+ attrs: any;
41
+ slots: Readonly<{
42
+ /** Customize the inner HTML of each VJoySelectableItem */
43
+ item: (option: T) => any;
44
+ }> & {
45
+ /** Customize the inner HTML of each VJoySelectableItem */
46
+ item: (option: T) => any;
14
47
  };
15
- multiple: {
16
- type: BooleanConstructor;
17
- default: boolean;
18
- };
19
- fullWidth: {
20
- type: BooleanConstructor;
21
- default: boolean;
22
- };
23
- required: {
24
- type: BooleanConstructor;
25
- default: boolean;
26
- };
27
- label: StringConstructor;
28
- labelSize: {
29
- type: PropType<TJoyLabelSizes>;
30
- default: string;
31
- };
32
- optionalLabel: StringConstructor;
33
- requiredMark: {
34
- type: BooleanConstructor;
35
- default: boolean;
36
- };
37
- }>, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {} & {
38
- "update:value": (value: string | any[]) => any;
39
- }, string, import("vue").PublicProps, Readonly<import("vue").ExtractPropTypes<{
40
- options: {
41
- type: PropType<TJoySelectableItemOption[]>;
42
- required: true;
43
- validator(value: TJoySelectableItemOption[]): boolean;
44
- };
45
- id: StringConstructor;
46
- value: {
47
- type: (StringConstructor | ArrayConstructor)[];
48
- default: null;
49
- };
50
- multiple: {
51
- type: BooleanConstructor;
52
- default: boolean;
53
- };
54
- fullWidth: {
55
- type: BooleanConstructor;
56
- default: boolean;
57
- };
58
- required: {
59
- type: BooleanConstructor;
60
- default: boolean;
61
- };
62
- label: StringConstructor;
63
- labelSize: {
64
- type: PropType<TJoyLabelSizes>;
65
- default: string;
66
- };
67
- optionalLabel: StringConstructor;
68
- requiredMark: {
69
- type: BooleanConstructor;
70
- default: boolean;
71
- };
72
- }>> & Readonly<{
73
- "onUpdate:value"?: ((value: string | any[]) => any) | undefined;
74
- }>, {
75
- required: boolean;
76
- value: string | unknown[];
77
- multiple: boolean;
78
- labelSize: TJoyLabelSizes;
79
- requiredMark: boolean;
80
- fullWidth: boolean;
81
- }, {}, {}, {}, string, import("vue").ComponentProvideOptions, true, {}, any>, Readonly<{
82
- /** Customize the inner HTML of each VJoySelectableItem */
83
- item: (option: TJoySelectableItemOption) => any;
48
+ emit: (e: 'update:value', value: string | any[]) => void;
49
+ }>) => import("vue").VNode<import("vue").RendererNode, import("vue").RendererElement, {
50
+ [key: string]: any;
84
51
  }> & {
85
- /** Customize the inner HTML of each VJoySelectableItem */
86
- item: (option: TJoySelectableItemOption) => any;
87
- }>;
88
- export default _default;
89
- type __VLS_WithTemplateSlots<T, S> = T & {
90
- new (): {
91
- $slots: S;
92
- };
52
+ __ctx?: {
53
+ props: {
54
+ readonly label?: string | undefined;
55
+ required?: boolean | undefined;
56
+ readonly id?: string | undefined;
57
+ readonly options: T[];
58
+ value?: string | unknown[] | undefined;
59
+ multiple?: boolean | undefined;
60
+ readonly optionalLabel?: string | undefined;
61
+ labelSize?: TJoyLabelSizes | undefined;
62
+ requiredMark?: boolean | undefined;
63
+ readonly "onUpdate:value"?: ((value: string | any[]) => any) | undefined;
64
+ fullWidth?: boolean | undefined;
65
+ } & import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps;
66
+ expose(exposed: import('vue').ShallowUnwrapRef<{}>): void;
67
+ attrs: any;
68
+ slots: Readonly<{
69
+ /** Customize the inner HTML of each VJoySelectableItem */
70
+ item: (option: T) => any;
71
+ }> & {
72
+ /** Customize the inner HTML of each VJoySelectableItem */
73
+ item: (option: T) => any;
74
+ };
75
+ emit: (e: 'update:value', value: string | any[]) => void;
76
+ } | undefined;
93
77
  };
78
+ export default _default;
79
+ type __VLS_PrettifyLocal<T> = {
80
+ [K in keyof T]: T[K];
81
+ } & {};
@@ -23,7 +23,6 @@ import { default as VJoyDropdownList } from './JoyDropdownList/VJoyDropdownList.
23
23
  import { default as VJoyDropzone } from './JoyDropzone/VJoyDropzone.vue';
24
24
  import { default as VJoyFilterBar } from './JoyFilterBar/VJoyFilterBar.vue';
25
25
  import { default as VJoyFilterBarButton } from './JoyFilterBarButton/VJoyFilterBarButton.vue';
26
- import { default as VJoyFooter } from './JoyFooter/VJoyFooter.vue';
27
26
  import { default as VJoyFormError } from './JoyFormError/VJoyFormError.vue';
28
27
  import { default as VJoyFormFieldSkeleton } from './JoyFormFieldSkeleton/VJoyFormFieldSkeleton.vue';
29
28
  import { default as VJoyFunnel } from './JoyFunnel/VJoyFunnel.vue';
@@ -72,4 +71,4 @@ import { default as VJoyUserCard } from './JoyUserCard/VJoyUserCard.vue';
72
71
  import { default as VJoyWalkthrough } from './JoyWalkthrough/VJoyWalkthrough.vue';
73
72
  import { default as VJoyWalkthroughTrigger } from './JoyWalkthroughTrigger/VJoyWalkthroughTrigger.vue';
74
73
  import { default as VJoyWrapper } from './JoyWrapper/VJoyWrapper.vue';
75
- export { VJoyAvailability, VJoyAvatar, VJoyAvatarsList, VJoyBadge, VJoyBadgeLevel, VJoyBlockSkeleton, VJoyBottomSheet, VJoyBottomSheetTrigger, VJoyButton, VJoyCheckbox, VJoyCollapse, VJoyCollapseItem, VJoyCompanyAvatar, VJoyCounter, VJoyDialog, VJoyDialogTrigger, VJoyDividerCta, VJoyDot, VJoyDrawer, VJoyDrawerTrigger, VJoyDropdown, VJoyDropdownList, VJoyDropzone, VJoyFilterBar, VJoyFilterBarButton, VJoyFooter, VJoyFormError, VJoyFormFieldSkeleton, VJoyFunnel, VJoyFunnelFooter, VJoyHeader, VJoyHighlight, VJoyIcon, VJoyIndicator, VJoyIndicators, VJoyInput, VJoyLabel, VJoyLink, VJoyListItem, VJoyMenu, VJoyMultiCheckbox, VJoyPagination, VJoyPanel, VJoyPanelSection, VJoyProductTour, VJoyProductTourTrigger, VJoyProgressBar, VJoyRadio, VJoyRadioGroup, VJoyRatingStars, VJoyScreenLoader, VJoySelect, VJoySelectableItem, VJoySelectableItemGroup, VJoySeparator, VJoySnackbar, VJoySpinner, VJoyStep, VJoyStepper, VJoyTab, VJoyTabs, VJoyTag, VJoyTagsInput, VJoyTagsList, VJoyTemplate, VJoyTemplateShape, VJoyText, VJoyTextarea, VJoyToggle, VJoyTooltip, VJoyUserCard, VJoyWalkthrough, VJoyWalkthroughTrigger, VJoyWrapper, };
74
+ export { VJoyAvailability, VJoyAvatar, VJoyAvatarsList, VJoyBadge, VJoyBadgeLevel, VJoyBlockSkeleton, VJoyBottomSheet, VJoyBottomSheetTrigger, VJoyButton, VJoyCheckbox, VJoyCollapse, VJoyCollapseItem, VJoyCompanyAvatar, VJoyCounter, VJoyDialog, VJoyDialogTrigger, VJoyDividerCta, VJoyDot, VJoyDrawer, VJoyDrawerTrigger, VJoyDropdown, VJoyDropdownList, VJoyDropzone, VJoyFilterBar, VJoyFilterBarButton, VJoyFormError, VJoyFormFieldSkeleton, VJoyFunnel, VJoyFunnelFooter, VJoyHeader, VJoyHighlight, VJoyIcon, VJoyIndicator, VJoyIndicators, VJoyInput, VJoyLabel, VJoyLink, VJoyListItem, VJoyMenu, VJoyMultiCheckbox, VJoyPagination, VJoyPanel, VJoyPanelSection, VJoyProductTour, VJoyProductTourTrigger, VJoyProgressBar, VJoyRadio, VJoyRadioGroup, VJoyRatingStars, VJoyScreenLoader, VJoySelect, VJoySelectableItem, VJoySelectableItemGroup, VJoySeparator, VJoySnackbar, VJoySpinner, VJoyStep, VJoyStepper, VJoyTab, VJoyTabs, VJoyTag, VJoyTagsInput, VJoyTagsList, VJoyTemplate, VJoyTemplateShape, VJoyText, VJoyTextarea, VJoyToggle, VJoyTooltip, VJoyUserCard, VJoyWalkthrough, VJoyWalkthroughTrigger, VJoyWrapper, };
@@ -1 +1 @@
1
- "use strict";Object.defineProperty(exports,Symbol.toStringTag,{value:"Module"});const o=require("./style-PpLJlUke.cjs"),y={install:e=>{typeof window<"u"&&o.createAllSnackbarsContainer(),e.directive("joy-ripple",o.vJoyRipple)}};exports.VJoyAvailability=o.VJoyAvailability;exports.VJoyAvatar=o.VJoyAvatar;exports.VJoyAvatarsList=o.VJoyAvatarsList;exports.VJoyBadge=o.VJoyBadge;exports.VJoyBadgeLevel=o.VJoyBadgeLevel;exports.VJoyBlockSkeleton=o.VJoyBlockSkeleton;exports.VJoyBottomSheet=o.VJoyBottomSheet;exports.VJoyBottomSheetTrigger=o._sfc_main;exports.VJoyButton=o.VJoyButton;exports.VJoyCheckbox=o.VJoyCheckbox;exports.VJoyCollapse=o.VJoyCollapse;exports.VJoyCollapseItem=o.VJoyCollapseItem;exports.VJoyCompanyAvatar=o.VJoyCompanyAvatar;exports.VJoyCounter=o.VJoyCounter;exports.VJoyDialog=o.VJoyDialog;exports.VJoyDialogTrigger=o._sfc_main$1;exports.VJoyDividerCta=o.VJoyDividerCta;exports.VJoyDot=o.VJoyDot;exports.VJoyDrawer=o.VJoyDrawer;exports.VJoyDrawerTrigger=o._sfc_main$2;exports.VJoyDropdown=o.VJoyDropdown;exports.VJoyDropdownList=o.JoyDropdownList;exports.VJoyDropzone=o.VJoyDropzone;exports.VJoyFilterBar=o.VJoyFilterBar;exports.VJoyFilterBarButton=o.VJoyFilterBarButton;exports.VJoyFooter=o.VJoyFooter;exports.VJoyFormError=o.VJoyFormError;exports.VJoyFormFieldSkeleton=o.VJoyFormFieldSkeleton;exports.VJoyFunnel=o.VJoyFunnel;exports.VJoyFunnelFooter=o.VJoyFunnelFooter;exports.VJoyHeader=o.VJoyHeader;exports.VJoyHighlight=o.VJoyHighlight;exports.VJoyIcon=o._sfc_main$3;exports.VJoyIndicator=o.VJoyIndicator;exports.VJoyIndicators=o.VJoyIndicators;exports.VJoyInput=o.VJoyInput;exports.VJoyLabel=o.VJoyLabel;exports.VJoyLink=o.VJoyLink;exports.VJoyListItem=o.VJoyListItem;exports.VJoyMenu=o.VJoyMenu;exports.VJoyMultiCheckbox=o.VJoyMultiCheckbox;exports.VJoyPagination=o.VJoyPagination;exports.VJoyPanel=o.VJoyPanel;exports.VJoyPanelSection=o.VJoyPanelSection;exports.VJoyProductTour=o._sfc_main$4;exports.VJoyProductTourTrigger=o._sfc_main$5;exports.VJoyProgressBar=o.VJoyProgressBar;exports.VJoyRadio=o.VJoyRadio;exports.VJoyRadioGroup=o.VJoyRadioGroup;exports.VJoyRatingStars=o.VJoyRatingStars;exports.VJoyScreenLoader=o.VJoyScreenLoader;exports.VJoySelect=o.VJoySelect;exports.VJoySelectableItem=o.VJoySelectableItem;exports.VJoySelectableItemGroup=o.VJoySelectableItemGroup;exports.VJoySeparator=o.VJoySeparator;exports.VJoySnackbar=o.VJoySnackbar;exports.VJoySpinner=o.VJoySpinner;exports.VJoyStep=o.VJoyStep;exports.VJoyStepper=o.VJoyStepper;exports.VJoyTab=o.VJoyTab;exports.VJoyTabs=o.VJoyTabs;exports.VJoyTag=o.VJoyTag;exports.VJoyTagsInput=o.VJoyTagsInput;exports.VJoyTagsList=o.VJoyTagsList;exports.VJoyTemplate=o.VJoyTemplate;exports.VJoyTemplateShape=o.VJoyTemplateShape;exports.VJoyText=o.VJoyText;exports.VJoyTextarea=o.VJoyTextarea;exports.VJoyToggle=o.VJoyToggle;exports.VJoyTooltip=o.VJoyTooltip;exports.VJoyUserCard=o.VJoyUserCard;exports.VJoyWalkthrough=o.VJoyWalkthrough;exports.VJoyWalkthroughTrigger=o.VJoyWalkthroughTrigger;exports.VJoyWrapper=o.VJoyWrapper;exports.createAllSnackbarsContainer=o.createAllSnackbarsContainer;exports.pushVJoySnackbar=o.pushVJoySnackbar;exports.resetCount=o.resetCount;exports.vJoyRipple=o.vJoyRipple;exports.JoyVueLightPlugin=y;
1
+ "use strict";Object.defineProperty(exports,Symbol.toStringTag,{value:"Module"});const o=require("./style-C28KlN2W.cjs"),y={install:e=>{typeof window<"u"&&o.createAllSnackbarsContainer(),e.directive("joy-ripple",o.vJoyRipple),e.directive("bind-once",o.BindOnceDirective)}};exports.VJoyAvailability=o.VJoyAvailability;exports.VJoyAvatar=o.VJoyAvatar;exports.VJoyAvatarsList=o.VJoyAvatarsList;exports.VJoyBadge=o.VJoyBadge;exports.VJoyBadgeLevel=o.VJoyBadgeLevel;exports.VJoyBlockSkeleton=o.VJoyBlockSkeleton;exports.VJoyBottomSheet=o.VJoyBottomSheet;exports.VJoyBottomSheetTrigger=o._sfc_main;exports.VJoyButton=o.VJoyButton;exports.VJoyCheckbox=o.VJoyCheckbox;exports.VJoyCollapse=o.VJoyCollapse;exports.VJoyCollapseItem=o.VJoyCollapseItem;exports.VJoyCompanyAvatar=o.VJoyCompanyAvatar;exports.VJoyCounter=o.VJoyCounter;exports.VJoyDialog=o.VJoyDialog;exports.VJoyDialogTrigger=o._sfc_main$1;exports.VJoyDividerCta=o.VJoyDividerCta;exports.VJoyDot=o.VJoyDot;exports.VJoyDrawer=o.VJoyDrawer;exports.VJoyDrawerTrigger=o._sfc_main$2;exports.VJoyDropdown=o.VJoyDropdown;exports.VJoyDropdownList=o.JoyDropdownList;exports.VJoyDropzone=o.VJoyDropzone;exports.VJoyFilterBar=o.VJoyFilterBar;exports.VJoyFilterBarButton=o.VJoyFilterBarButton;exports.VJoyFormError=o.VJoyFormError;exports.VJoyFormFieldSkeleton=o.VJoyFormFieldSkeleton;exports.VJoyFunnel=o.VJoyFunnel;exports.VJoyFunnelFooter=o.VJoyFunnelFooter;exports.VJoyHeader=o.VJoyHeader;exports.VJoyHighlight=o.VJoyHighlight;exports.VJoyIcon=o._sfc_main$3;exports.VJoyIndicator=o.VJoyIndicator;exports.VJoyIndicators=o.VJoyIndicators;exports.VJoyInput=o.VJoyInput;exports.VJoyLabel=o.VJoyLabel;exports.VJoyLink=o.VJoyLink;exports.VJoyListItem=o.VJoyListItem;exports.VJoyMenu=o.VJoyMenu;exports.VJoyMultiCheckbox=o.VJoyMultiCheckbox;exports.VJoyPagination=o.VJoyPagination;exports.VJoyPanel=o.VJoyPanel;exports.VJoyPanelSection=o.VJoyPanelSection;exports.VJoyProductTour=o._sfc_main$4;exports.VJoyProductTourTrigger=o._sfc_main$5;exports.VJoyProgressBar=o.VJoyProgressBar;exports.VJoyRadio=o.VJoyRadio;exports.VJoyRadioGroup=o.VJoyRadioGroup;exports.VJoyRatingStars=o.VJoyRatingStars;exports.VJoyScreenLoader=o.VJoyScreenLoader;exports.VJoySelect=o.VJoySelect;exports.VJoySelectableItem=o.VJoySelectableItem;exports.VJoySelectableItemGroup=o.VJoySelectableItemGroup;exports.VJoySeparator=o.VJoySeparator;exports.VJoySnackbar=o.VJoySnackbar;exports.VJoySpinner=o.VJoySpinner;exports.VJoyStep=o.VJoyStep;exports.VJoyStepper=o.VJoyStepper;exports.VJoyTab=o.VJoyTab;exports.VJoyTabs=o.VJoyTabs;exports.VJoyTag=o.VJoyTag;exports.VJoyTagsInput=o.VJoyTagsInput;exports.VJoyTagsList=o.VJoyTagsList;exports.VJoyTemplate=o.VJoyTemplate;exports.VJoyTemplateShape=o.VJoyTemplateShape;exports.VJoyText=o.VJoyText;exports.VJoyTextarea=o.VJoyTextarea;exports.VJoyToggle=o.VJoyToggle;exports.VJoyTooltip=o.VJoyTooltip;exports.VJoyUserCard=o.VJoyUserCard;exports.VJoyWalkthrough=o.VJoyWalkthrough;exports.VJoyWalkthroughTrigger=o.VJoyWalkthroughTrigger;exports.VJoyWrapper=o.VJoyWrapper;exports.createAllSnackbarsContainer=o.createAllSnackbarsContainer;exports.pushVJoySnackbar=o.pushVJoySnackbar;exports.resetCount=o.resetCount;exports.vJoyRipple=o.vJoyRipple;exports.JoyVueLightPlugin=y;
@@ -1,38 +1,37 @@
1
- import { ak as o, al as s } from "./style-ChThEVbr.js";
2
- import { V as r, a as t, b as i, c as n, d as l, e as p, f as g, _ as u, g as c, h as d, i as S, j as T, k as m, l as h, m as b, n as k, o as B, p as C, q as D, r as F, s as I, J as L, t as v, u as P, v as f, w, x, y as A, z as R, A as W, B as j, C as G, D as H, E as M, F as z, G as E, H as U, I as q, K, L as N, M as O, N as Q, O as X, P as Y, Q as Z, R as _, S as $, T as aa, U as oa, W as sa, X as ea, Y as ya, Z as Ja, $ as Va, a0 as ra, a1 as ta, a2 as ia, a3 as na, a4 as la, a5 as pa, a6 as ga, a7 as ua, a8 as ca, a9 as da, aa as Sa, ab as Ta, ac as ma, ad as ha, ae as ba, af as ka, ag as Ba, ah as Ca, ai as Da, aj as Fa, am as Ia, an as La } from "./style-ChThEVbr.js";
3
- const y = {
1
+ import { aj as o, ak as s, al as e } from "./style-BQpAWKFv.js";
2
+ import { V as t, a as i, b as n, c as l, d as g, e as p, f as c, _ as d, g as u, h as S, i as T, j as m, k as h, l as b, m as k, n as B, o as v, p as C, q as D, r as I, s as L, J as F, t as P, u as f, v as w, w as x, x as A, y as R, z as W, A as j, B as G, C as H, D as M, E as z, F as E, G as O, H as U, I as q, K, L as N, M as Q, N as X, O as Y, P as Z, Q as _, R as $, S as aa, T as oa, U as sa, W as ea, X as ya, Y as Ja, Z as Va, $ as ra, a0 as ta, a1 as ia, a2 as na, a3 as la, a4 as ga, a5 as pa, a6 as ca, a7 as da, a8 as ua, a9 as Sa, aa as Ta, ab as ma, ac as ha, ad as ba, ae as ka, af as Ba, ag as va, ah as Ca, ai as Da, am as Ia, an as La } from "./style-BQpAWKFv.js";
3
+ const J = {
4
4
  install: (a) => {
5
- typeof window < "u" && o(), a.directive("joy-ripple", s);
5
+ typeof window < "u" && o(), a.directive("joy-ripple", s), a.directive("bind-once", e);
6
6
  }
7
7
  };
8
8
  export {
9
- y as JoyVueLightPlugin,
10
- r as VJoyAvailability,
11
- t as VJoyAvatar,
12
- i as VJoyAvatarsList,
13
- n as VJoyBadge,
14
- l as VJoyBadgeLevel,
9
+ J as JoyVueLightPlugin,
10
+ t as VJoyAvailability,
11
+ i as VJoyAvatar,
12
+ n as VJoyAvatarsList,
13
+ l as VJoyBadge,
14
+ g as VJoyBadgeLevel,
15
15
  p as VJoyBlockSkeleton,
16
- g as VJoyBottomSheet,
17
- u as VJoyBottomSheetTrigger,
18
- c as VJoyButton,
19
- d as VJoyCheckbox,
20
- S as VJoyCollapse,
21
- T as VJoyCollapseItem,
22
- m as VJoyCompanyAvatar,
23
- h as VJoyCounter,
24
- b as VJoyDialog,
25
- k as VJoyDialogTrigger,
26
- B as VJoyDividerCta,
16
+ c as VJoyBottomSheet,
17
+ d as VJoyBottomSheetTrigger,
18
+ u as VJoyButton,
19
+ S as VJoyCheckbox,
20
+ T as VJoyCollapse,
21
+ m as VJoyCollapseItem,
22
+ h as VJoyCompanyAvatar,
23
+ b as VJoyCounter,
24
+ k as VJoyDialog,
25
+ B as VJoyDialogTrigger,
26
+ v as VJoyDividerCta,
27
27
  C as VJoyDot,
28
28
  D as VJoyDrawer,
29
- F as VJoyDrawerTrigger,
30
- I as VJoyDropdown,
31
- L as VJoyDropdownList,
32
- v as VJoyDropzone,
33
- P as VJoyFilterBar,
34
- f as VJoyFilterBarButton,
35
- w as VJoyFooter,
29
+ I as VJoyDrawerTrigger,
30
+ L as VJoyDropdown,
31
+ F as VJoyDropdownList,
32
+ P as VJoyDropzone,
33
+ f as VJoyFilterBar,
34
+ w as VJoyFilterBarButton,
36
35
  x as VJoyFormError,
37
36
  A as VJoyFormFieldSkeleton,
38
37
  R as VJoyFunnel,
@@ -43,11 +42,11 @@ export {
43
42
  M as VJoyIndicator,
44
43
  z as VJoyIndicators,
45
44
  E as VJoyInput,
46
- U as VJoyLabel,
47
- q as VJoyLink,
48
- K as VJoyListItem,
49
- N as VJoyMenu,
50
- O as VJoyMultiCheckbox,
45
+ O as VJoyLabel,
46
+ U as VJoyLink,
47
+ q as VJoyListItem,
48
+ K as VJoyMenu,
49
+ N as VJoyMultiCheckbox,
51
50
  Q as VJoyPagination,
52
51
  X as VJoyPanel,
53
52
  Y as VJoyPanelSection,
@@ -66,11 +65,11 @@ export {
66
65
  ia as VJoySpinner,
67
66
  na as VJoyStep,
68
67
  la as VJoyStepper,
69
- pa as VJoyTab,
70
- ga as VJoyTabs,
71
- ua as VJoyTag,
72
- ca as VJoyTagsInput,
73
- da as VJoyTagsList,
68
+ ga as VJoyTab,
69
+ pa as VJoyTabs,
70
+ ca as VJoyTag,
71
+ da as VJoyTagsInput,
72
+ ua as VJoyTagsList,
74
73
  Sa as VJoyTemplate,
75
74
  Ta as VJoyTemplateShape,
76
75
  ma as VJoyText,
@@ -78,9 +77,9 @@ export {
78
77
  ba as VJoyToggle,
79
78
  ka as VJoyTooltip,
80
79
  Ba as VJoyUserCard,
81
- Ca as VJoyWalkthrough,
82
- Da as VJoyWalkthroughTrigger,
83
- Fa as VJoyWrapper,
80
+ va as VJoyWalkthrough,
81
+ Ca as VJoyWalkthroughTrigger,
82
+ Da as VJoyWrapper,
84
83
  o as createAllSnackbarsContainer,
85
84
  Ia as pushVJoySnackbar,
86
85
  La as resetCount,
@@ -1,3 +1,3 @@
1
1
  {
2
- "version": "3.38.4"
2
+ "version": "4.0.0-beta.1"
3
3
  }
package/dist/main.cjs CHANGED
@@ -1 +1 @@
1
- "use strict";Object.defineProperty(exports,Symbol.toStringTag,{value:"Module"});const o=require("./style-PpLJlUke.cjs"),V=Object.freeze(Object.defineProperty({__proto__:null,VJoyAvailability:o.VJoyAvailability,VJoyAvatar:o.VJoyAvatar,VJoyAvatarsList:o.VJoyAvatarsList,VJoyBadge:o.VJoyBadge,VJoyBadgeLevel:o.VJoyBadgeLevel,VJoyBlockSkeleton:o.VJoyBlockSkeleton,VJoyBottomSheet:o.VJoyBottomSheet,VJoyBottomSheetTrigger:o._sfc_main,VJoyButton:o.VJoyButton,VJoyCheckbox:o.VJoyCheckbox,VJoyCollapse:o.VJoyCollapse,VJoyCollapseItem:o.VJoyCollapseItem,VJoyCompanyAvatar:o.VJoyCompanyAvatar,VJoyCounter:o.VJoyCounter,VJoyDialog:o.VJoyDialog,VJoyDialogTrigger:o._sfc_main$1,VJoyDividerCta:o.VJoyDividerCta,VJoyDot:o.VJoyDot,VJoyDrawer:o.VJoyDrawer,VJoyDrawerTrigger:o._sfc_main$2,VJoyDropdown:o.VJoyDropdown,VJoyDropdownList:o.JoyDropdownList,VJoyDropzone:o.VJoyDropzone,VJoyFilterBar:o.VJoyFilterBar,VJoyFilterBarButton:o.VJoyFilterBarButton,VJoyFooter:o.VJoyFooter,VJoyFormError:o.VJoyFormError,VJoyFormFieldSkeleton:o.VJoyFormFieldSkeleton,VJoyFunnel:o.VJoyFunnel,VJoyFunnelFooter:o.VJoyFunnelFooter,VJoyHeader:o.VJoyHeader,VJoyHighlight:o.VJoyHighlight,VJoyIcon:o._sfc_main$3,VJoyIndicator:o.VJoyIndicator,VJoyIndicators:o.VJoyIndicators,VJoyInput:o.VJoyInput,VJoyLabel:o.VJoyLabel,VJoyLink:o.VJoyLink,VJoyListItem:o.VJoyListItem,VJoyMenu:o.VJoyMenu,VJoyMultiCheckbox:o.VJoyMultiCheckbox,VJoyPagination:o.VJoyPagination,VJoyPanel:o.VJoyPanel,VJoyPanelSection:o.VJoyPanelSection,VJoyProductTour:o._sfc_main$4,VJoyProductTourTrigger:o._sfc_main$5,VJoyProgressBar:o.VJoyProgressBar,VJoyRadio:o.VJoyRadio,VJoyRadioGroup:o.VJoyRadioGroup,VJoyRatingStars:o.VJoyRatingStars,VJoyScreenLoader:o.VJoyScreenLoader,VJoySelect:o.VJoySelect,VJoySelectableItem:o.VJoySelectableItem,VJoySelectableItemGroup:o.VJoySelectableItemGroup,VJoySeparator:o.VJoySeparator,VJoySnackbar:o.VJoySnackbar,VJoySpinner:o.VJoySpinner,VJoyStep:o.VJoyStep,VJoyStepper:o.VJoyStepper,VJoyTab:o.VJoyTab,VJoyTabs:o.VJoyTabs,VJoyTag:o.VJoyTag,VJoyTagsInput:o.VJoyTagsInput,VJoyTagsList:o.VJoyTagsList,VJoyTemplate:o.VJoyTemplate,VJoyTemplateShape:o.VJoyTemplateShape,VJoyText:o.VJoyText,VJoyTextarea:o.VJoyTextarea,VJoyToggle:o.VJoyToggle,VJoyTooltip:o.VJoyTooltip,VJoyUserCard:o.VJoyUserCard,VJoyWalkthrough:o.VJoyWalkthrough,VJoyWalkthroughTrigger:o.VJoyWalkthroughTrigger,VJoyWrapper:o.VJoyWrapper},Symbol.toStringTag,{value:"Module"})),t={install:e=>{Object.entries(V).forEach(([y,J])=>{e.component(y,J)}),typeof window<"u"&&o.createAllSnackbarsContainer(),e.directive("joy-ripple",o.vJoyRipple)}};exports.VJoyAvailability=o.VJoyAvailability;exports.VJoyAvatar=o.VJoyAvatar;exports.VJoyAvatarsList=o.VJoyAvatarsList;exports.VJoyBadge=o.VJoyBadge;exports.VJoyBadgeLevel=o.VJoyBadgeLevel;exports.VJoyBlockSkeleton=o.VJoyBlockSkeleton;exports.VJoyBottomSheet=o.VJoyBottomSheet;exports.VJoyBottomSheetTrigger=o._sfc_main;exports.VJoyButton=o.VJoyButton;exports.VJoyCheckbox=o.VJoyCheckbox;exports.VJoyCollapse=o.VJoyCollapse;exports.VJoyCollapseItem=o.VJoyCollapseItem;exports.VJoyCompanyAvatar=o.VJoyCompanyAvatar;exports.VJoyCounter=o.VJoyCounter;exports.VJoyDialog=o.VJoyDialog;exports.VJoyDialogTrigger=o._sfc_main$1;exports.VJoyDividerCta=o.VJoyDividerCta;exports.VJoyDot=o.VJoyDot;exports.VJoyDrawer=o.VJoyDrawer;exports.VJoyDrawerTrigger=o._sfc_main$2;exports.VJoyDropdown=o.VJoyDropdown;exports.VJoyDropdownList=o.JoyDropdownList;exports.VJoyDropzone=o.VJoyDropzone;exports.VJoyFilterBar=o.VJoyFilterBar;exports.VJoyFilterBarButton=o.VJoyFilterBarButton;exports.VJoyFooter=o.VJoyFooter;exports.VJoyFormError=o.VJoyFormError;exports.VJoyFormFieldSkeleton=o.VJoyFormFieldSkeleton;exports.VJoyFunnel=o.VJoyFunnel;exports.VJoyFunnelFooter=o.VJoyFunnelFooter;exports.VJoyHeader=o.VJoyHeader;exports.VJoyHighlight=o.VJoyHighlight;exports.VJoyIcon=o._sfc_main$3;exports.VJoyIndicator=o.VJoyIndicator;exports.VJoyIndicators=o.VJoyIndicators;exports.VJoyInput=o.VJoyInput;exports.VJoyLabel=o.VJoyLabel;exports.VJoyLink=o.VJoyLink;exports.VJoyListItem=o.VJoyListItem;exports.VJoyMenu=o.VJoyMenu;exports.VJoyMultiCheckbox=o.VJoyMultiCheckbox;exports.VJoyPagination=o.VJoyPagination;exports.VJoyPanel=o.VJoyPanel;exports.VJoyPanelSection=o.VJoyPanelSection;exports.VJoyProductTour=o._sfc_main$4;exports.VJoyProductTourTrigger=o._sfc_main$5;exports.VJoyProgressBar=o.VJoyProgressBar;exports.VJoyRadio=o.VJoyRadio;exports.VJoyRadioGroup=o.VJoyRadioGroup;exports.VJoyRatingStars=o.VJoyRatingStars;exports.VJoyScreenLoader=o.VJoyScreenLoader;exports.VJoySelect=o.VJoySelect;exports.VJoySelectableItem=o.VJoySelectableItem;exports.VJoySelectableItemGroup=o.VJoySelectableItemGroup;exports.VJoySeparator=o.VJoySeparator;exports.VJoySnackbar=o.VJoySnackbar;exports.VJoySpinner=o.VJoySpinner;exports.VJoyStep=o.VJoyStep;exports.VJoyStepper=o.VJoyStepper;exports.VJoyTab=o.VJoyTab;exports.VJoyTabs=o.VJoyTabs;exports.VJoyTag=o.VJoyTag;exports.VJoyTagsInput=o.VJoyTagsInput;exports.VJoyTagsList=o.VJoyTagsList;exports.VJoyTemplate=o.VJoyTemplate;exports.VJoyTemplateShape=o.VJoyTemplateShape;exports.VJoyText=o.VJoyText;exports.VJoyTextarea=o.VJoyTextarea;exports.VJoyToggle=o.VJoyToggle;exports.VJoyTooltip=o.VJoyTooltip;exports.VJoyUserCard=o.VJoyUserCard;exports.VJoyWalkthrough=o.VJoyWalkthrough;exports.VJoyWalkthroughTrigger=o.VJoyWalkthroughTrigger;exports.VJoyWrapper=o.VJoyWrapper;exports.createAllSnackbarsContainer=o.createAllSnackbarsContainer;exports.pushVJoySnackbar=o.pushVJoySnackbar;exports.resetCount=o.resetCount;exports.vJoyRipple=o.vJoyRipple;exports.JoyVuePlugin=t;
1
+ "use strict";Object.defineProperty(exports,Symbol.toStringTag,{value:"Module"});const o=require("./style-C28KlN2W.cjs"),V=Object.freeze(Object.defineProperty({__proto__:null,VJoyAvailability:o.VJoyAvailability,VJoyAvatar:o.VJoyAvatar,VJoyAvatarsList:o.VJoyAvatarsList,VJoyBadge:o.VJoyBadge,VJoyBadgeLevel:o.VJoyBadgeLevel,VJoyBlockSkeleton:o.VJoyBlockSkeleton,VJoyBottomSheet:o.VJoyBottomSheet,VJoyBottomSheetTrigger:o._sfc_main,VJoyButton:o.VJoyButton,VJoyCheckbox:o.VJoyCheckbox,VJoyCollapse:o.VJoyCollapse,VJoyCollapseItem:o.VJoyCollapseItem,VJoyCompanyAvatar:o.VJoyCompanyAvatar,VJoyCounter:o.VJoyCounter,VJoyDialog:o.VJoyDialog,VJoyDialogTrigger:o._sfc_main$1,VJoyDividerCta:o.VJoyDividerCta,VJoyDot:o.VJoyDot,VJoyDrawer:o.VJoyDrawer,VJoyDrawerTrigger:o._sfc_main$2,VJoyDropdown:o.VJoyDropdown,VJoyDropdownList:o.JoyDropdownList,VJoyDropzone:o.VJoyDropzone,VJoyFilterBar:o.VJoyFilterBar,VJoyFilterBarButton:o.VJoyFilterBarButton,VJoyFormError:o.VJoyFormError,VJoyFormFieldSkeleton:o.VJoyFormFieldSkeleton,VJoyFunnel:o.VJoyFunnel,VJoyFunnelFooter:o.VJoyFunnelFooter,VJoyHeader:o.VJoyHeader,VJoyHighlight:o.VJoyHighlight,VJoyIcon:o._sfc_main$3,VJoyIndicator:o.VJoyIndicator,VJoyIndicators:o.VJoyIndicators,VJoyInput:o.VJoyInput,VJoyLabel:o.VJoyLabel,VJoyLink:o.VJoyLink,VJoyListItem:o.VJoyListItem,VJoyMenu:o.VJoyMenu,VJoyMultiCheckbox:o.VJoyMultiCheckbox,VJoyPagination:o.VJoyPagination,VJoyPanel:o.VJoyPanel,VJoyPanelSection:o.VJoyPanelSection,VJoyProductTour:o._sfc_main$4,VJoyProductTourTrigger:o._sfc_main$5,VJoyProgressBar:o.VJoyProgressBar,VJoyRadio:o.VJoyRadio,VJoyRadioGroup:o.VJoyRadioGroup,VJoyRatingStars:o.VJoyRatingStars,VJoyScreenLoader:o.VJoyScreenLoader,VJoySelect:o.VJoySelect,VJoySelectableItem:o.VJoySelectableItem,VJoySelectableItemGroup:o.VJoySelectableItemGroup,VJoySeparator:o.VJoySeparator,VJoySnackbar:o.VJoySnackbar,VJoySpinner:o.VJoySpinner,VJoyStep:o.VJoyStep,VJoyStepper:o.VJoyStepper,VJoyTab:o.VJoyTab,VJoyTabs:o.VJoyTabs,VJoyTag:o.VJoyTag,VJoyTagsInput:o.VJoyTagsInput,VJoyTagsList:o.VJoyTagsList,VJoyTemplate:o.VJoyTemplate,VJoyTemplateShape:o.VJoyTemplateShape,VJoyText:o.VJoyText,VJoyTextarea:o.VJoyTextarea,VJoyToggle:o.VJoyToggle,VJoyTooltip:o.VJoyTooltip,VJoyUserCard:o.VJoyUserCard,VJoyWalkthrough:o.VJoyWalkthrough,VJoyWalkthroughTrigger:o.VJoyWalkthroughTrigger,VJoyWrapper:o.VJoyWrapper},Symbol.toStringTag,{value:"Module"})),t={install:e=>{Object.entries(V).forEach(([y,J])=>{e.component(y,J)}),typeof window<"u"&&o.createAllSnackbarsContainer(),e.directive("joy-ripple",o.vJoyRipple),e.directive("bind-once",o.BindOnceDirective)}};exports.VJoyAvailability=o.VJoyAvailability;exports.VJoyAvatar=o.VJoyAvatar;exports.VJoyAvatarsList=o.VJoyAvatarsList;exports.VJoyBadge=o.VJoyBadge;exports.VJoyBadgeLevel=o.VJoyBadgeLevel;exports.VJoyBlockSkeleton=o.VJoyBlockSkeleton;exports.VJoyBottomSheet=o.VJoyBottomSheet;exports.VJoyBottomSheetTrigger=o._sfc_main;exports.VJoyButton=o.VJoyButton;exports.VJoyCheckbox=o.VJoyCheckbox;exports.VJoyCollapse=o.VJoyCollapse;exports.VJoyCollapseItem=o.VJoyCollapseItem;exports.VJoyCompanyAvatar=o.VJoyCompanyAvatar;exports.VJoyCounter=o.VJoyCounter;exports.VJoyDialog=o.VJoyDialog;exports.VJoyDialogTrigger=o._sfc_main$1;exports.VJoyDividerCta=o.VJoyDividerCta;exports.VJoyDot=o.VJoyDot;exports.VJoyDrawer=o.VJoyDrawer;exports.VJoyDrawerTrigger=o._sfc_main$2;exports.VJoyDropdown=o.VJoyDropdown;exports.VJoyDropdownList=o.JoyDropdownList;exports.VJoyDropzone=o.VJoyDropzone;exports.VJoyFilterBar=o.VJoyFilterBar;exports.VJoyFilterBarButton=o.VJoyFilterBarButton;exports.VJoyFormError=o.VJoyFormError;exports.VJoyFormFieldSkeleton=o.VJoyFormFieldSkeleton;exports.VJoyFunnel=o.VJoyFunnel;exports.VJoyFunnelFooter=o.VJoyFunnelFooter;exports.VJoyHeader=o.VJoyHeader;exports.VJoyHighlight=o.VJoyHighlight;exports.VJoyIcon=o._sfc_main$3;exports.VJoyIndicator=o.VJoyIndicator;exports.VJoyIndicators=o.VJoyIndicators;exports.VJoyInput=o.VJoyInput;exports.VJoyLabel=o.VJoyLabel;exports.VJoyLink=o.VJoyLink;exports.VJoyListItem=o.VJoyListItem;exports.VJoyMenu=o.VJoyMenu;exports.VJoyMultiCheckbox=o.VJoyMultiCheckbox;exports.VJoyPagination=o.VJoyPagination;exports.VJoyPanel=o.VJoyPanel;exports.VJoyPanelSection=o.VJoyPanelSection;exports.VJoyProductTour=o._sfc_main$4;exports.VJoyProductTourTrigger=o._sfc_main$5;exports.VJoyProgressBar=o.VJoyProgressBar;exports.VJoyRadio=o.VJoyRadio;exports.VJoyRadioGroup=o.VJoyRadioGroup;exports.VJoyRatingStars=o.VJoyRatingStars;exports.VJoyScreenLoader=o.VJoyScreenLoader;exports.VJoySelect=o.VJoySelect;exports.VJoySelectableItem=o.VJoySelectableItem;exports.VJoySelectableItemGroup=o.VJoySelectableItemGroup;exports.VJoySeparator=o.VJoySeparator;exports.VJoySnackbar=o.VJoySnackbar;exports.VJoySpinner=o.VJoySpinner;exports.VJoyStep=o.VJoyStep;exports.VJoyStepper=o.VJoyStepper;exports.VJoyTab=o.VJoyTab;exports.VJoyTabs=o.VJoyTabs;exports.VJoyTag=o.VJoyTag;exports.VJoyTagsInput=o.VJoyTagsInput;exports.VJoyTagsList=o.VJoyTagsList;exports.VJoyTemplate=o.VJoyTemplate;exports.VJoyTemplateShape=o.VJoyTemplateShape;exports.VJoyText=o.VJoyText;exports.VJoyTextarea=o.VJoyTextarea;exports.VJoyToggle=o.VJoyToggle;exports.VJoyTooltip=o.VJoyTooltip;exports.VJoyUserCard=o.VJoyUserCard;exports.VJoyWalkthrough=o.VJoyWalkthrough;exports.VJoyWalkthroughTrigger=o.VJoyWalkthroughTrigger;exports.VJoyWrapper=o.VJoyWrapper;exports.createAllSnackbarsContainer=o.createAllSnackbarsContainer;exports.pushVJoySnackbar=o.pushVJoySnackbar;exports.resetCount=o.resetCount;exports.vJoyRipple=o.vJoyRipple;exports.JoyVuePlugin=t;
package/dist/main.js CHANGED
@@ -1,21 +1,21 @@
1
- import { V as e, a as r, b as y, c as J, d as t, e as V, f as i, _ as n, g as l, h as g, i as c, j as p, k as u, l as d, m, n as T, o as S, p as b, q as _, r as f, s as h, J as D, t as k, u as B, v as C, w as I, x as L, y as P, z as v, A as w, B as F, C as x, D as j, E as A, F as $, G as R, H as M, I as O, K as W, L as z, M as E, N as G, O as H, P as U, Q as q, R as K, S as N, T as Q, U as X, W as Y, X as Z, Y as aa, Z as oa, $ as sa, a0 as ea, a1 as ra, a2 as ya, a3 as Ja, a4 as ta, a5 as Va, a6 as ia, a7 as na, a8 as la, a9 as ga, aa as ca, ab as pa, ac as ua, ad as da, ae as ma, af as Ta, ag as Sa, ah as ba, ai as _a, aj as fa, ak as ha, al as Da } from "./style-ChThEVbr.js";
2
- import { am as Pa, an as va } from "./style-ChThEVbr.js";
1
+ import { V as e, a as r, b as y, c as t, d as J, e as V, f as i, _ as n, g as l, h as c, i as g, j as p, k as d, l as u, m, n as T, o as S, p as b, q as _, r as f, s as h, J as D, t as k, u as B, v, w as C, x as I, y as L, z as P, A as w, B as F, C as x, D as j, E as A, F as $, G as O, H as R, I as M, K as W, L as z, M as E, N as G, O as H, P as U, Q as q, R as K, S as N, T as Q, U as X, W as Y, X as Z, Y as aa, Z as oa, $ as sa, a0 as ea, a1 as ra, a2 as ya, a3 as ta, a4 as Ja, a5 as Va, a6 as ia, a7 as na, a8 as la, a9 as ca, aa as ga, ab as pa, ac as da, ad as ua, ae as ma, af as Ta, ag as Sa, ah as ba, ai as _a, aj as fa, ak as ha, al as Da } from "./style-BQpAWKFv.js";
2
+ import { am as La, an as Pa } from "./style-BQpAWKFv.js";
3
3
  const ka = /* @__PURE__ */ Object.freeze(/* @__PURE__ */ Object.defineProperty({
4
4
  __proto__: null,
5
5
  VJoyAvailability: e,
6
6
  VJoyAvatar: r,
7
7
  VJoyAvatarsList: y,
8
- VJoyBadge: J,
9
- VJoyBadgeLevel: t,
8
+ VJoyBadge: t,
9
+ VJoyBadgeLevel: J,
10
10
  VJoyBlockSkeleton: V,
11
11
  VJoyBottomSheet: i,
12
12
  VJoyBottomSheetTrigger: n,
13
13
  VJoyButton: l,
14
- VJoyCheckbox: g,
15
- VJoyCollapse: c,
14
+ VJoyCheckbox: c,
15
+ VJoyCollapse: g,
16
16
  VJoyCollapseItem: p,
17
- VJoyCompanyAvatar: u,
18
- VJoyCounter: d,
17
+ VJoyCompanyAvatar: d,
18
+ VJoyCounter: u,
19
19
  VJoyDialog: m,
20
20
  VJoyDialogTrigger: T,
21
21
  VJoyDividerCta: S,
@@ -26,79 +26,78 @@ const ka = /* @__PURE__ */ Object.freeze(/* @__PURE__ */ Object.defineProperty({
26
26
  VJoyDropdownList: D,
27
27
  VJoyDropzone: k,
28
28
  VJoyFilterBar: B,
29
- VJoyFilterBarButton: C,
30
- VJoyFooter: I,
31
- VJoyFormError: L,
32
- VJoyFormFieldSkeleton: P,
33
- VJoyFunnel: v,
34
- VJoyFunnelFooter: w,
35
- VJoyHeader: F,
36
- VJoyHighlight: x,
37
- VJoyIcon: j,
38
- VJoyIndicator: A,
39
- VJoyIndicators: $,
40
- VJoyInput: R,
41
- VJoyLabel: M,
42
- VJoyLink: O,
43
- VJoyListItem: W,
44
- VJoyMenu: z,
45
- VJoyMultiCheckbox: E,
46
- VJoyPagination: G,
47
- VJoyPanel: H,
48
- VJoyPanelSection: U,
49
- VJoyProductTour: q,
50
- VJoyProductTourTrigger: K,
51
- VJoyProgressBar: N,
52
- VJoyRadio: Q,
53
- VJoyRadioGroup: X,
54
- VJoyRatingStars: Y,
55
- VJoyScreenLoader: Z,
56
- VJoySelect: aa,
57
- VJoySelectableItem: oa,
58
- VJoySelectableItemGroup: sa,
59
- VJoySeparator: ea,
60
- VJoySnackbar: ra,
61
- VJoySpinner: ya,
62
- VJoyStep: Ja,
29
+ VJoyFilterBarButton: v,
30
+ VJoyFormError: C,
31
+ VJoyFormFieldSkeleton: I,
32
+ VJoyFunnel: L,
33
+ VJoyFunnelFooter: P,
34
+ VJoyHeader: w,
35
+ VJoyHighlight: F,
36
+ VJoyIcon: x,
37
+ VJoyIndicator: j,
38
+ VJoyIndicators: A,
39
+ VJoyInput: $,
40
+ VJoyLabel: O,
41
+ VJoyLink: R,
42
+ VJoyListItem: M,
43
+ VJoyMenu: W,
44
+ VJoyMultiCheckbox: z,
45
+ VJoyPagination: E,
46
+ VJoyPanel: G,
47
+ VJoyPanelSection: H,
48
+ VJoyProductTour: U,
49
+ VJoyProductTourTrigger: q,
50
+ VJoyProgressBar: K,
51
+ VJoyRadio: N,
52
+ VJoyRadioGroup: Q,
53
+ VJoyRatingStars: X,
54
+ VJoyScreenLoader: Y,
55
+ VJoySelect: Z,
56
+ VJoySelectableItem: aa,
57
+ VJoySelectableItemGroup: oa,
58
+ VJoySeparator: sa,
59
+ VJoySnackbar: ea,
60
+ VJoySpinner: ra,
61
+ VJoyStep: ya,
63
62
  VJoyStepper: ta,
64
- VJoyTab: Va,
65
- VJoyTabs: ia,
66
- VJoyTag: na,
67
- VJoyTagsInput: la,
68
- VJoyTagsList: ga,
63
+ VJoyTab: Ja,
64
+ VJoyTabs: Va,
65
+ VJoyTag: ia,
66
+ VJoyTagsInput: na,
67
+ VJoyTagsList: la,
69
68
  VJoyTemplate: ca,
70
- VJoyTemplateShape: pa,
71
- VJoyText: ua,
69
+ VJoyTemplateShape: ga,
70
+ VJoyText: pa,
72
71
  VJoyTextarea: da,
73
- VJoyToggle: ma,
74
- VJoyTooltip: Ta,
75
- VJoyUserCard: Sa,
76
- VJoyWalkthrough: ba,
77
- VJoyWalkthroughTrigger: _a,
78
- VJoyWrapper: fa
79
- }, Symbol.toStringTag, { value: "Module" })), Ca = {
72
+ VJoyToggle: ua,
73
+ VJoyTooltip: ma,
74
+ VJoyUserCard: Ta,
75
+ VJoyWalkthrough: Sa,
76
+ VJoyWalkthroughTrigger: ba,
77
+ VJoyWrapper: _a
78
+ }, Symbol.toStringTag, { value: "Module" })), va = {
80
79
  install: (a) => {
81
80
  Object.entries(ka).forEach(([o, s]) => {
82
81
  a.component(o, s);
83
- }), typeof window < "u" && ha(), a.directive("joy-ripple", Da);
82
+ }), typeof window < "u" && fa(), a.directive("joy-ripple", ha), a.directive("bind-once", Da);
84
83
  }
85
84
  };
86
85
  export {
87
- Ca as JoyVuePlugin,
86
+ va as JoyVuePlugin,
88
87
  e as VJoyAvailability,
89
88
  r as VJoyAvatar,
90
89
  y as VJoyAvatarsList,
91
- J as VJoyBadge,
92
- t as VJoyBadgeLevel,
90
+ t as VJoyBadge,
91
+ J as VJoyBadgeLevel,
93
92
  V as VJoyBlockSkeleton,
94
93
  i as VJoyBottomSheet,
95
94
  n as VJoyBottomSheetTrigger,
96
95
  l as VJoyButton,
97
- g as VJoyCheckbox,
98
- c as VJoyCollapse,
96
+ c as VJoyCheckbox,
97
+ g as VJoyCollapse,
99
98
  p as VJoyCollapseItem,
100
- u as VJoyCompanyAvatar,
101
- d as VJoyCounter,
99
+ d as VJoyCompanyAvatar,
100
+ u as VJoyCounter,
102
101
  m as VJoyDialog,
103
102
  T as VJoyDialogTrigger,
104
103
  S as VJoyDividerCta,
@@ -109,58 +108,57 @@ export {
109
108
  D as VJoyDropdownList,
110
109
  k as VJoyDropzone,
111
110
  B as VJoyFilterBar,
112
- C as VJoyFilterBarButton,
113
- I as VJoyFooter,
114
- L as VJoyFormError,
115
- P as VJoyFormFieldSkeleton,
116
- v as VJoyFunnel,
117
- w as VJoyFunnelFooter,
118
- F as VJoyHeader,
119
- x as VJoyHighlight,
120
- j as VJoyIcon,
121
- A as VJoyIndicator,
122
- $ as VJoyIndicators,
123
- R as VJoyInput,
124
- M as VJoyLabel,
125
- O as VJoyLink,
126
- W as VJoyListItem,
127
- z as VJoyMenu,
128
- E as VJoyMultiCheckbox,
129
- G as VJoyPagination,
130
- H as VJoyPanel,
131
- U as VJoyPanelSection,
132
- q as VJoyProductTour,
133
- K as VJoyProductTourTrigger,
134
- N as VJoyProgressBar,
135
- Q as VJoyRadio,
136
- X as VJoyRadioGroup,
137
- Y as VJoyRatingStars,
138
- Z as VJoyScreenLoader,
139
- aa as VJoySelect,
140
- oa as VJoySelectableItem,
141
- sa as VJoySelectableItemGroup,
142
- ea as VJoySeparator,
143
- ra as VJoySnackbar,
144
- ya as VJoySpinner,
145
- Ja as VJoyStep,
111
+ v as VJoyFilterBarButton,
112
+ C as VJoyFormError,
113
+ I as VJoyFormFieldSkeleton,
114
+ L as VJoyFunnel,
115
+ P as VJoyFunnelFooter,
116
+ w as VJoyHeader,
117
+ F as VJoyHighlight,
118
+ x as VJoyIcon,
119
+ j as VJoyIndicator,
120
+ A as VJoyIndicators,
121
+ $ as VJoyInput,
122
+ O as VJoyLabel,
123
+ R as VJoyLink,
124
+ M as VJoyListItem,
125
+ W as VJoyMenu,
126
+ z as VJoyMultiCheckbox,
127
+ E as VJoyPagination,
128
+ G as VJoyPanel,
129
+ H as VJoyPanelSection,
130
+ U as VJoyProductTour,
131
+ q as VJoyProductTourTrigger,
132
+ K as VJoyProgressBar,
133
+ N as VJoyRadio,
134
+ Q as VJoyRadioGroup,
135
+ X as VJoyRatingStars,
136
+ Y as VJoyScreenLoader,
137
+ Z as VJoySelect,
138
+ aa as VJoySelectableItem,
139
+ oa as VJoySelectableItemGroup,
140
+ sa as VJoySeparator,
141
+ ea as VJoySnackbar,
142
+ ra as VJoySpinner,
143
+ ya as VJoyStep,
146
144
  ta as VJoyStepper,
147
- Va as VJoyTab,
148
- ia as VJoyTabs,
149
- na as VJoyTag,
150
- la as VJoyTagsInput,
151
- ga as VJoyTagsList,
145
+ Ja as VJoyTab,
146
+ Va as VJoyTabs,
147
+ ia as VJoyTag,
148
+ na as VJoyTagsInput,
149
+ la as VJoyTagsList,
152
150
  ca as VJoyTemplate,
153
- pa as VJoyTemplateShape,
154
- ua as VJoyText,
151
+ ga as VJoyTemplateShape,
152
+ pa as VJoyText,
155
153
  da as VJoyTextarea,
156
- ma as VJoyToggle,
157
- Ta as VJoyTooltip,
158
- Sa as VJoyUserCard,
159
- ba as VJoyWalkthrough,
160
- _a as VJoyWalkthroughTrigger,
161
- fa as VJoyWrapper,
162
- ha as createAllSnackbarsContainer,
163
- Pa as pushVJoySnackbar,
164
- va as resetCount,
165
- Da as vJoyRipple
154
+ ua as VJoyToggle,
155
+ ma as VJoyTooltip,
156
+ Ta as VJoyUserCard,
157
+ Sa as VJoyWalkthrough,
158
+ ba as VJoyWalkthroughTrigger,
159
+ _a as VJoyWrapper,
160
+ fa as createAllSnackbarsContainer,
161
+ La as pushVJoySnackbar,
162
+ Pa as resetCount,
163
+ ha as vJoyRipple
166
164
  };