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

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.
@@ -1,6 +1,4 @@
1
1
  import { TGenericVariants, TPositions, TSizes } from '../../types';
2
- export type TJoyDefaultButtonVariants = TGenericVariants | 'main' | 'admin' | 'ghost' | 'white';
3
- export type TJoyAIButtonVariants = `${TJoyDefaultButtonVariants}-ai`;
4
- export type TJoyButtonVariants = TJoyDefaultButtonVariants | Exclude<TJoyAIButtonVariants, 'admin-ai'>;
2
+ export type TJoyButtonVariants = TGenericVariants | 'main' | 'admin' | 'ghost' | 'white' | 'main-ai';
5
3
  export type TJoyButtonSizes = Exclude<TSizes, 'xlarge'>;
6
4
  export type TJoyButtonIconPositions = TPositions;
@@ -40,7 +40,7 @@ declare const _default: __VLS_WithTemplateSlots<import("vue").DefineComponent<im
40
40
  default: string;
41
41
  };
42
42
  }>, {
43
- randomId: string;
43
+ randomId: import("vue").Ref<string | undefined, string | undefined>;
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.
@@ -0,0 +1,6 @@
1
+ /**
2
+ * TEMP: maybe we can make it a shared composable. No need for now
3
+ */
4
+ export declare function useRandomId(): {
5
+ randomId: import("vue").Ref<string | undefined, string | undefined>;
6
+ };
@@ -0,0 +1,13 @@
1
+ declare const _default: __VLS_WithTemplateSlots<import("vue").DefineComponent<{}, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<{}> & Readonly<{}>, {}, {}, {}, {}, string, import("vue").ComponentProvideOptions, true, {}, any>, Readonly<{
2
+ 'footer-left': () => any;
3
+ 'footer-right': () => any;
4
+ }> & {
5
+ 'footer-left': () => any;
6
+ 'footer-right': () => any;
7
+ }>;
8
+ export default _default;
9
+ type __VLS_WithTemplateSlots<T, S> = T & {
10
+ new (): {
11
+ $slots: S;
12
+ };
13
+ };
@@ -57,16 +57,16 @@ declare const _default: __VLS_WithTemplateSlots<import("vue").DefineComponent<im
57
57
  /** Main content of the highlight */
58
58
  default(): any;
59
59
  /** Use it if you want to customize the default icon associated with the highlight. You can inject whatever you want here */
60
- 'highlight-decorator'(): any;
60
+ 'highlight-decorator': () => any;
61
61
  /** Not mandatory, renders a bold title above the main content */
62
- 'highlight-title'(): any;
62
+ 'highlight-title': () => any;
63
63
  }> & {
64
64
  /** Main content of the highlight */
65
65
  default(): any;
66
66
  /** Use it if you want to customize the default icon associated with the highlight. You can inject whatever you want here */
67
- 'highlight-decorator'(): any;
67
+ 'highlight-decorator': () => any;
68
68
  /** Not mandatory, renders a bold title above the main content */
69
- 'highlight-title'(): any;
69
+ 'highlight-title': () => any;
70
70
  }>;
71
71
  export default _default;
72
72
  type __VLS_WithTemplateSlots<T, S> = T & {
@@ -1,81 +1,93 @@
1
+ import { PropType } from 'vue';
1
2
  import { TJoyLabelSizes } from '../JoyLabel/JoyLabel.types';
2
3
  import { TJoySelectableItemOption } from '../JoySelectableItem/VJoySelectableItem.types';
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;
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;
23
9
  };
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;
10
+ id: StringConstructor;
11
+ value: {
12
+ type: (StringConstructor | ArrayConstructor)[];
13
+ default: null;
47
14
  };
48
- emit: (e: 'update:value', value: string | any[]) => void;
49
- }>) => import("vue").VNode<import("vue").RendererNode, import("vue").RendererElement, {
50
- [key: string]: any;
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;
51
84
  }> & {
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;
77
- };
85
+ /** Customize the inner HTML of each VJoySelectableItem */
86
+ item: (option: TJoySelectableItemOption) => any;
87
+ }>;
78
88
  export default _default;
79
- type __VLS_PrettifyLocal<T> = {
80
- [K in keyof T]: T[K];
81
- } & {};
89
+ type __VLS_WithTemplateSlots<T, S> = T & {
90
+ new (): {
91
+ $slots: S;
92
+ };
93
+ };
@@ -23,6 +23,7 @@ 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';
26
27
  import { default as VJoyFormError } from './JoyFormError/VJoyFormError.vue';
27
28
  import { default as VJoyFormFieldSkeleton } from './JoyFormFieldSkeleton/VJoyFormFieldSkeleton.vue';
28
29
  import { default as VJoyFunnel } from './JoyFunnel/VJoyFunnel.vue';
@@ -71,4 +72,4 @@ import { default as VJoyUserCard } from './JoyUserCard/VJoyUserCard.vue';
71
72
  import { default as VJoyWalkthrough } from './JoyWalkthrough/VJoyWalkthrough.vue';
72
73
  import { default as VJoyWalkthroughTrigger } from './JoyWalkthroughTrigger/VJoyWalkthroughTrigger.vue';
73
74
  import { default as VJoyWrapper } from './JoyWrapper/VJoyWrapper.vue';
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, };
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, };
@@ -1 +1 @@
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
+ "use strict";Object.defineProperty(exports,Symbol.toStringTag,{value:"Module"});const o=require("./style-5r5kgKhD.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,37 +1,38 @@
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 = {
1
+ import { ak as o, al as s } from "./style-CyY04g9F.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-CyY04g9F.js";
3
+ const y = {
4
4
  install: (a) => {
5
- typeof window < "u" && o(), a.directive("joy-ripple", s), a.directive("bind-once", e);
5
+ typeof window < "u" && o(), a.directive("joy-ripple", s);
6
6
  }
7
7
  };
8
8
  export {
9
- J as JoyVueLightPlugin,
10
- t as VJoyAvailability,
11
- i as VJoyAvatar,
12
- n as VJoyAvatarsList,
13
- l as VJoyBadge,
14
- g as VJoyBadgeLevel,
9
+ y as JoyVueLightPlugin,
10
+ r as VJoyAvailability,
11
+ t as VJoyAvatar,
12
+ i as VJoyAvatarsList,
13
+ n as VJoyBadge,
14
+ l as VJoyBadgeLevel,
15
15
  p as VJoyBlockSkeleton,
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,
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,
27
27
  C as VJoyDot,
28
28
  D as VJoyDrawer,
29
- I as VJoyDrawerTrigger,
30
- L as VJoyDropdown,
31
- F as VJoyDropdownList,
32
- P as VJoyDropzone,
33
- f as VJoyFilterBar,
34
- w as VJoyFilterBarButton,
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,
35
36
  x as VJoyFormError,
36
37
  A as VJoyFormFieldSkeleton,
37
38
  R as VJoyFunnel,
@@ -42,11 +43,11 @@ export {
42
43
  M as VJoyIndicator,
43
44
  z as VJoyIndicators,
44
45
  E as VJoyInput,
45
- O as VJoyLabel,
46
- U as VJoyLink,
47
- q as VJoyListItem,
48
- K as VJoyMenu,
49
- N as VJoyMultiCheckbox,
46
+ U as VJoyLabel,
47
+ q as VJoyLink,
48
+ K as VJoyListItem,
49
+ N as VJoyMenu,
50
+ O as VJoyMultiCheckbox,
50
51
  Q as VJoyPagination,
51
52
  X as VJoyPanel,
52
53
  Y as VJoyPanelSection,
@@ -65,11 +66,11 @@ export {
65
66
  ia as VJoySpinner,
66
67
  na as VJoyStep,
67
68
  la as VJoyStepper,
68
- ga as VJoyTab,
69
- pa as VJoyTabs,
70
- ca as VJoyTag,
71
- da as VJoyTagsInput,
72
- ua as VJoyTagsList,
69
+ pa as VJoyTab,
70
+ ga as VJoyTabs,
71
+ ua as VJoyTag,
72
+ ca as VJoyTagsInput,
73
+ da as VJoyTagsList,
73
74
  Sa as VJoyTemplate,
74
75
  Ta as VJoyTemplateShape,
75
76
  ma as VJoyText,
@@ -77,9 +78,9 @@ export {
77
78
  ba as VJoyToggle,
78
79
  ka as VJoyTooltip,
79
80
  Ba as VJoyUserCard,
80
- va as VJoyWalkthrough,
81
- Ca as VJoyWalkthroughTrigger,
82
- Da as VJoyWrapper,
81
+ Ca as VJoyWalkthrough,
82
+ Da as VJoyWalkthroughTrigger,
83
+ Fa as VJoyWrapper,
83
84
  o as createAllSnackbarsContainer,
84
85
  Ia as pushVJoySnackbar,
85
86
  La as resetCount,
@@ -1,3 +1,3 @@
1
1
  {
2
- "version": "4.0.0-beta.1"
2
+ "version": "3.37.0-next"
3
3
  }
package/dist/main.cjs CHANGED
@@ -1 +1 @@
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;
1
+ "use strict";Object.defineProperty(exports,Symbol.toStringTag,{value:"Module"});const o=require("./style-5r5kgKhD.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;